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.
 
 
 

56564 line
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. },
  143. tiger: {
  144. name: "Tiger",
  145. parents: [
  146. "cat"
  147. ]
  148. },
  149. cat: {
  150. name: "Cat",
  151. parents: [
  152. "feliform"
  153. ]
  154. },
  155. "blue-jay": {
  156. name: "Blue Jay",
  157. parents: [
  158. "corvid"
  159. ]
  160. },
  161. wolf: {
  162. name: "Wolf",
  163. parents: [
  164. "mammal"
  165. ]
  166. },
  167. coyote: {
  168. name: "Coyote",
  169. parents: [
  170. "mammal"
  171. ]
  172. },
  173. raccoon: {
  174. name: "Raccoon",
  175. parents: [
  176. "mammal"
  177. ]
  178. },
  179. weasel: {
  180. name: "Weasel",
  181. parents: [
  182. "mustelid"
  183. ]
  184. },
  185. "red-panda": {
  186. name: "Red Panda",
  187. parents: [
  188. "mammal"
  189. ]
  190. },
  191. dolphin: {
  192. name: "Dolphin",
  193. parents: [
  194. "mammal"
  195. ]
  196. },
  197. "african-wild-dog": {
  198. name: "African Wild Dog",
  199. parents: [
  200. "canine"
  201. ]
  202. },
  203. "hyena": {
  204. name: "Hyena",
  205. parents: [
  206. "feliform"
  207. ]
  208. },
  209. "carbuncle": {
  210. name: "Carbuncle",
  211. parents: [
  212. "animal"
  213. ]
  214. },
  215. bat: {
  216. name: "Bat",
  217. parents: [
  218. "mammal"
  219. ]
  220. },
  221. "leaf-nosed-bat": {
  222. name: "Leaf-Nosed Bat",
  223. parents: [
  224. "bat"
  225. ]
  226. },
  227. "fish": {
  228. name: "Fish",
  229. parents: [
  230. "animal"
  231. ]
  232. },
  233. "ram": {
  234. name: "Ram",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "demon": {
  240. name: "Demon",
  241. parents: [
  242. "supernatural"
  243. ]
  244. },
  245. "cougar": {
  246. name: "Cougar",
  247. parents: [
  248. "cat"
  249. ]
  250. },
  251. "goat": {
  252. name: "Goat",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "lion": {
  258. name: "Lion",
  259. parents: [
  260. "cat"
  261. ]
  262. },
  263. "harpy-eager": {
  264. name: "Harpy Eagle",
  265. parents: [
  266. "avian"
  267. ]
  268. },
  269. "deer": {
  270. name: "Deer",
  271. parents: [
  272. "mammal"
  273. ]
  274. },
  275. "phoenix": {
  276. name: "Phoenix",
  277. parents: [
  278. "avian"
  279. ]
  280. },
  281. "aeromorph": {
  282. name: "Aeromorph",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "machine": {
  288. name: "Machine",
  289. },
  290. "android": {
  291. name: "Android",
  292. parents: [
  293. "machine"
  294. ]
  295. },
  296. "jackal": {
  297. name: "Jackal",
  298. parents: [
  299. "canine"
  300. ]
  301. },
  302. "corvid": {
  303. name: "Corvid",
  304. parents: [
  305. "passerine"
  306. ]
  307. },
  308. "pharaoh-hound": {
  309. name: "Pharaoh Hound",
  310. parents: [
  311. "dog"
  312. ]
  313. },
  314. "skunk": {
  315. name: "Skunk",
  316. parents: [
  317. "mammal"
  318. ]
  319. },
  320. "shark": {
  321. name: "Shark",
  322. parents: [
  323. "fish"
  324. ]
  325. },
  326. "black-panther": {
  327. name: "Black Panther",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "umbra": {
  333. name: "Umbra",
  334. parents: [
  335. "animal"
  336. ]
  337. },
  338. "raven": {
  339. name: "Raven",
  340. parents: [
  341. "corvid"
  342. ]
  343. },
  344. "snow-leopard": {
  345. name: "Snow Leopard",
  346. parents: [
  347. "cat"
  348. ]
  349. },
  350. "barbary-lion": {
  351. name: "Barbary Lion",
  352. parents: [
  353. "lion"
  354. ]
  355. },
  356. "dra'gal": {
  357. name: "Dra'Gal",
  358. parents: [
  359. "mammal"
  360. ]
  361. },
  362. "german-shepherd": {
  363. name: "German Shepherd",
  364. parents: [
  365. "dog"
  366. ]
  367. },
  368. "bayleef": {
  369. name: "Bayleef",
  370. parents: [
  371. "pokemon",
  372. "plant",
  373. "animal"
  374. ]
  375. },
  376. "mouse": {
  377. name: "Mouse",
  378. parents: [
  379. "rodent"
  380. ]
  381. },
  382. "rat": {
  383. name: "Rat",
  384. parents: [
  385. "mammal"
  386. ]
  387. },
  388. "hoshiko-beast": {
  389. name: "Hoshiko Beast",
  390. parents: ["animal"]
  391. },
  392. "snow-jugani": {
  393. name: "Snow Jugani",
  394. parents: ["cat"]
  395. },
  396. "patamon": {
  397. name: "Patamon",
  398. parents: ["digimon", "guinea-pig"]
  399. },
  400. "digimon": {
  401. name: "Digimon",
  402. },
  403. "jugani": {
  404. name: "Jugani",
  405. parents: ["cat"]
  406. },
  407. "luxray": {
  408. name: "Luxray",
  409. parents: ["pokemon", "lion"]
  410. },
  411. "mech": {
  412. name: "Mech",
  413. parents: ["machine"]
  414. },
  415. "zoid": {
  416. name: "Zoid",
  417. parents: ["mech"]
  418. },
  419. "monster": {
  420. name: "Monster",
  421. parents: ["animal"]
  422. },
  423. "foo-dog": {
  424. name: "Foo Dog",
  425. parents: ["mammal"]
  426. },
  427. "elephant": {
  428. name: "Elephant",
  429. parents: ["mammal"]
  430. },
  431. "eagle": {
  432. name: "Eagle",
  433. parents: ["bird-of-prey"]
  434. },
  435. "cow": {
  436. name: "Cow",
  437. parents: ["mammal"]
  438. },
  439. "crocodile": {
  440. name: "Crocodile",
  441. parents: ["reptile"]
  442. },
  443. "borzoi": {
  444. name: "Borzoi",
  445. parents: ["dog"]
  446. },
  447. "snake": {
  448. name: "Snake",
  449. parents: ["reptile"]
  450. },
  451. "horned-bush-viper": {
  452. name: "Horned Bush Viper",
  453. parents: ["viper"]
  454. },
  455. "cobra": {
  456. name: "Cobra",
  457. parents: ["snake"]
  458. },
  459. "harpy-eagle": {
  460. name: "Harpy Eagle",
  461. parents: ["eagle"]
  462. },
  463. "raptor": {
  464. name: "Raptor",
  465. parents: ["dinosaur"]
  466. },
  467. "dinosaur": {
  468. name: "Dinosaur",
  469. parents: ["reptile"]
  470. },
  471. "veilhound": {
  472. name: "Veilhound",
  473. parents: ["hellhound"]
  474. },
  475. "hellhound": {
  476. name: "Hellhound",
  477. parents: ["canine", "demon"]
  478. },
  479. "insect": {
  480. name: "Insect",
  481. parents: ["animal"]
  482. },
  483. "beetle": {
  484. name: "Beetle",
  485. parents: ["insect"]
  486. },
  487. "moth": {
  488. name: "Moth",
  489. parents: ["insect"]
  490. },
  491. "eastern-dragon": {
  492. name: "Eastern Dragon",
  493. parents: ["dragon"]
  494. },
  495. "jaguar": {
  496. name: "Jaguar",
  497. parents: ["cat"]
  498. },
  499. "horse": {
  500. name: "Horse",
  501. parents: ["mammal"]
  502. },
  503. "sergal": {
  504. name: "Sergal",
  505. parents: ["mammal", "avian", "vilous"]
  506. },
  507. "gryphon": {
  508. name: "Gryphon",
  509. parents: ["lion", "eagle"]
  510. },
  511. "robot": {
  512. name: "Robot",
  513. parents: ["machine"]
  514. },
  515. "medihound": {
  516. name: "Medihound",
  517. parents: ["robot", "dog"]
  518. },
  519. "sylveon": {
  520. name: "Sylveon",
  521. parents: ["pokemon"]
  522. },
  523. "catgirl": {
  524. name: "Catgirl",
  525. parents: ["mammal"]
  526. },
  527. "cowgirl": {
  528. name: "Cowgirl",
  529. parents: ["mammal"]
  530. },
  531. "pony": {
  532. name: "Pony",
  533. parents: ["horse"]
  534. },
  535. "rabbit": {
  536. name: "Rabbit",
  537. parents: ["leporidae"]
  538. },
  539. "fennec-fox": {
  540. name: "Fennec Fox",
  541. parents: ["fox"]
  542. },
  543. "azodian": {
  544. name: "Azodian",
  545. parents: ["mouse"]
  546. },
  547. "shiba-inu": {
  548. name: "Shiba Inu",
  549. parents: ["dog"]
  550. },
  551. "changeling": {
  552. name: "Changeling",
  553. parents: ["insect"]
  554. },
  555. "cheetah": {
  556. name: "Cheetah",
  557. parents: ["cat"]
  558. },
  559. "golden-jackal": {
  560. name: "Golden Jackal",
  561. parents: ["jackal"]
  562. },
  563. "manectric": {
  564. name: "Manectric",
  565. parents: ["pokemon", "wolf"]
  566. },
  567. "rat": {
  568. name: "Rat",
  569. parents: ["rodent"]
  570. },
  571. "rodent": {
  572. name: "Rodent",
  573. parents: ["mammal"]
  574. },
  575. "octocoon": {
  576. name: "Octocoon",
  577. parents: ["raccoon", "octopus"]
  578. },
  579. "octopus": {
  580. name: "Octopus",
  581. parents: ["fish"]
  582. },
  583. "werewolf": {
  584. name: "Werewolf",
  585. parents: ["wolf", "werebeast"]
  586. },
  587. "werebeast": {
  588. name: "Werebeast",
  589. parents: ["monster"]
  590. },
  591. "meerkat": {
  592. name: "Meerkat",
  593. parents: ["mammal"]
  594. },
  595. "human": {
  596. name: "Human",
  597. parents: ["mammal"]
  598. },
  599. "geth": {
  600. name: "Geth",
  601. parents: ["android"]
  602. },
  603. "husky": {
  604. name: "Husky",
  605. parents: ["dog"]
  606. },
  607. "long-eared-bat": {
  608. name: "Long Eared Bat",
  609. parents: ["bat"]
  610. },
  611. "lizard": {
  612. name: "Lizard",
  613. parents: ["reptile"]
  614. },
  615. "salamander": {
  616. name: "Salamander",
  617. parents: ["lizard"]
  618. },
  619. "chameleon": {
  620. name: "Chameleon",
  621. parents: ["lizard"]
  622. },
  623. "gecko": {
  624. name: "Gecko",
  625. parents: ["lizard"]
  626. },
  627. "kobold": {
  628. name: "Kobold",
  629. parents: ["reptile"]
  630. },
  631. "charizard": {
  632. name: "Charizard",
  633. parents: ["pokemon", "dragon"]
  634. },
  635. "lugia": {
  636. name: "Lugia",
  637. parents: ["pokemon", "avian"]
  638. },
  639. "cerberus": {
  640. name: "Cerberus",
  641. parents: ["dog"]
  642. },
  643. "tyrantrum": {
  644. name: "Tyrantrum",
  645. parents: ["pokemon"]
  646. },
  647. "lemur": {
  648. name: "Lemur",
  649. parents: ["mammal"]
  650. },
  651. "kelpie": {
  652. name: "Kelpie",
  653. parents: ["horse", "monster"]
  654. },
  655. "labrador": {
  656. name: "Labrador",
  657. parents: ["dog"]
  658. },
  659. "sylveon": {
  660. name: "Sylveon",
  661. parents: ["eeveelution"]
  662. },
  663. "eeveelution": {
  664. name: "Eeveelution",
  665. parents: ["pokemon", "cat"]
  666. },
  667. "polar-bear": {
  668. name: "Polar Bear",
  669. parents: ["bear"]
  670. },
  671. "bear": {
  672. name: "Bear",
  673. parents: ["mammal"]
  674. },
  675. "absol": {
  676. name: "Absol",
  677. parents: ["pokemon", "cat"]
  678. },
  679. "wolver": {
  680. name: "Wolver",
  681. parents: ["mammal"]
  682. },
  683. "rottweiler": {
  684. name: "Rottweiler",
  685. parents: ["dog"]
  686. },
  687. "zebra": {
  688. name: "Zebra",
  689. parents: ["horse"]
  690. },
  691. "yoshi": {
  692. name: "Yoshi",
  693. parents: ["lizard"]
  694. },
  695. "lynx": {
  696. name: "Lynx",
  697. parents: ["cat"]
  698. },
  699. "unknown": {
  700. name: "Unknown",
  701. parents: []
  702. },
  703. "thylacine": {
  704. name: "Thylacine",
  705. parents: ["mammal"]
  706. },
  707. "gabumon": {
  708. name: "Gabumon",
  709. parents: ["digimon"]
  710. },
  711. "border-collie": {
  712. name: "Border Collie",
  713. parents: ["dog"]
  714. },
  715. "imp": {
  716. name: "Imp",
  717. parents: ["demon"]
  718. },
  719. "kangaroo": {
  720. name: "Kangaroo",
  721. parents: ["marsupial"]
  722. },
  723. "renamon": {
  724. name: "Renamon",
  725. parents: ["digimon", "fox"]
  726. },
  727. "candy-orca-dragon": {
  728. name: "Candy Orca Dragon",
  729. parents: ["fish", "dragon", "candy"]
  730. },
  731. "sabertooth-tiger": {
  732. name: "Sabertooth Tiger",
  733. parents: ["cat"]
  734. },
  735. "espurr": {
  736. name: "Espurr",
  737. parents: ["pokemon", "cat"]
  738. },
  739. "otter": {
  740. name: "Otter",
  741. parents: ["mustelid"]
  742. },
  743. "elemental": {
  744. name: "Elemental",
  745. parents: ["mammal"]
  746. },
  747. "mew": {
  748. name: "Mew",
  749. parents: ["pokemon"]
  750. },
  751. "goodra": {
  752. name: "Goodra",
  753. parents: ["pokemon"]
  754. },
  755. "fairy": {
  756. name: "Fairy",
  757. parents: ["magical"]
  758. },
  759. "typhlosion": {
  760. name: "Typhlosion",
  761. parents: ["pokemon"]
  762. },
  763. "magical": {
  764. name: "Magical",
  765. parents: []
  766. },
  767. "xenomorph": {
  768. name: "Xenomorph",
  769. parents: ["monster", "alien"]
  770. },
  771. "charr": {
  772. name: "Charr",
  773. parents: ["cat"]
  774. },
  775. "siberian-husky": {
  776. name: "Siberian Husky",
  777. parents: ["husky"]
  778. },
  779. "alligator": {
  780. name: "Alligator",
  781. parents: ["reptile"]
  782. },
  783. "bernese-mountain-dog": {
  784. name: "Bernese Mountain Dog",
  785. parents: ["dog"]
  786. },
  787. "reshiram": {
  788. name: "Reshiram",
  789. parents: ["pokemon", "dragon"]
  790. },
  791. "grizzly-bear": {
  792. name: "Grizzly Bear",
  793. parents: ["bear"]
  794. },
  795. "water-monitor": {
  796. name: "Water Monitor",
  797. parents: ["lizard"]
  798. },
  799. "banchofossa": {
  800. name: "Banchofossa",
  801. parents: ["mammal"]
  802. },
  803. "kirin": {
  804. name: "Kirin",
  805. parents: ["monster"]
  806. },
  807. "quilava": {
  808. name: "Quilava",
  809. parents: ["pokemon"]
  810. },
  811. "seviper": {
  812. name: "Seviper",
  813. parents: ["pokemon", "viper"]
  814. },
  815. "flying-fox": {
  816. name: "Flying Fox",
  817. parents: ["bat"]
  818. },
  819. "keynain": {
  820. name: "Keynain",
  821. parents: ["avian"]
  822. },
  823. "lucario": {
  824. name: "Lucario",
  825. parents: ["pokemon", "jackal"]
  826. },
  827. "siamese-cat": {
  828. name: "Siamese Cat",
  829. parents: ["cat"]
  830. },
  831. "spider": {
  832. name: "Spider",
  833. parents: ["insect"]
  834. },
  835. "samurott": {
  836. name: "Samurott",
  837. parents: ["pokemon", "otter"]
  838. },
  839. "megalodon": {
  840. name: "Megalodon",
  841. parents: ["shark"]
  842. },
  843. "unicorn": {
  844. name: "Unicorn",
  845. parents: ["horse"]
  846. },
  847. "greninja": {
  848. name: "Greninja",
  849. parents: ["pokemon", "frog"]
  850. },
  851. "water-dragon": {
  852. name: "Water Dragon",
  853. parents: ["dragon"]
  854. },
  855. "cross-fox": {
  856. name: "Cross Fox",
  857. parents: ["fox"]
  858. },
  859. "synth": {
  860. name: "Synth",
  861. parents: ["machine"]
  862. },
  863. "construct": {
  864. name: "Construct",
  865. parents: []
  866. },
  867. "mexican-wolf": {
  868. name: "Mexican Wolf",
  869. parents: ["wolf"]
  870. },
  871. "leopard": {
  872. name: "Leopard",
  873. parents: ["cat"]
  874. },
  875. "pig": {
  876. name: "Pig",
  877. parents: ["mammal"]
  878. },
  879. "ampharos": {
  880. name: "Ampharos",
  881. parents: ["pokemon", "sheep"]
  882. },
  883. "orca": {
  884. name: "Orca",
  885. parents: ["fish"]
  886. },
  887. "lycanroc": {
  888. name: "Lycanroc",
  889. parents: ["pokemon", "wolf"]
  890. },
  891. "surkanu": {
  892. name: "Surkanu",
  893. parents: ["monster"]
  894. },
  895. "seal": {
  896. name: "Seal",
  897. parents: ["mammal"]
  898. },
  899. "keldeo": {
  900. name: "Keldeo",
  901. parents: ["pokemon"]
  902. },
  903. "great-dane": {
  904. name: "Great Dane",
  905. parents: ["dog"]
  906. },
  907. "black-backed-jackal": {
  908. name: "Black Backed Jackal",
  909. parents: ["jackal"]
  910. },
  911. "sheep": {
  912. name: "Sheep",
  913. parents: ["mammal"]
  914. },
  915. "leopard-seal": {
  916. name: "Leopard Seal",
  917. parents: ["seal"]
  918. },
  919. "zoroark": {
  920. name: "Zoroark",
  921. parents: ["pokemon", "fox"]
  922. },
  923. "maned-wolf": {
  924. name: "Maned Wolf",
  925. parents: ["canine"]
  926. },
  927. "dracha": {
  928. name: "Dracha",
  929. parents: ["dragon"]
  930. },
  931. "wolxi": {
  932. name: "Wolxi",
  933. parents: ["mammal", "alien"]
  934. },
  935. "dratini": {
  936. name: "Dratini",
  937. parents: ["pokemon", "dragon"]
  938. },
  939. "skaven": {
  940. name: "Skaven",
  941. parents: ["rat"]
  942. },
  943. "mongoose": {
  944. name: "Mongoose",
  945. parents: ["mammal"]
  946. },
  947. "lopunny": {
  948. name: "Lopunny",
  949. parents: ["pokemon", "rabbit"]
  950. },
  951. "feraligatr": {
  952. name: "Feraligatr",
  953. parents: ["pokemon", "alligator"]
  954. },
  955. "houndoom": {
  956. name: "Houndoom",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "protogen": {
  960. name: "Protogen",
  961. parents: ["machine"]
  962. },
  963. "saint-bernard": {
  964. name: "Saint Bernard",
  965. parents: ["dog"]
  966. },
  967. "crow": {
  968. name: "Crow",
  969. parents: ["corvid"]
  970. },
  971. "delphox": {
  972. name: "Delphox",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "moose": {
  976. name: "Moose",
  977. parents: ["mammal"]
  978. },
  979. "joraxian": {
  980. name: "Joraxian",
  981. parents: ["monster", "canine", "demon"]
  982. },
  983. "nimbat": {
  984. name: "Nimbat",
  985. parents: ["mammal"]
  986. },
  987. "aardwolf": {
  988. name: "Aardwolf",
  989. parents: ["canine"]
  990. },
  991. "fluudrani": {
  992. name: "Fluudrani",
  993. parents: ["animal"]
  994. },
  995. "arcanine": {
  996. name: "Arcanine",
  997. parents: ["pokemon", "dog"]
  998. },
  999. "inteleon": {
  1000. name: "Inteleon",
  1001. parents: ["pokemon", "fish"]
  1002. },
  1003. "ninetales": {
  1004. name: "Ninetales",
  1005. parents: ["pokemon", "kitsune"]
  1006. },
  1007. "tigrex": {
  1008. name: "Tigrex",
  1009. parents: ["tiger"]
  1010. },
  1011. "zorua": {
  1012. name: "Zorua",
  1013. parents: ["pokemon", "fox"]
  1014. },
  1015. "vulpix": {
  1016. name: "Vulpix",
  1017. parents: ["pokemon", "fox"]
  1018. },
  1019. "barghest": {
  1020. name: "Barghest",
  1021. parents: ["monster"]
  1022. },
  1023. "gray-wolf": {
  1024. name: "Gray Wolf",
  1025. parents: ["wolf"]
  1026. },
  1027. "ruppells-fox": {
  1028. name: "Rüppell's Fox",
  1029. parents: ["fox"]
  1030. },
  1031. "bull-terrier": {
  1032. name: "Bull Terrier",
  1033. parents: ["dog"]
  1034. },
  1035. "european-honey-buzzard": {
  1036. name: "European Honey Buzzard",
  1037. parents: ["avian"]
  1038. },
  1039. "t-rex": {
  1040. name: "Tyrannosaurus Rex",
  1041. parents: ["dinosaur"]
  1042. },
  1043. "mactarian": {
  1044. name: "Mactarian",
  1045. parents: ["shark", "monster"]
  1046. },
  1047. "mewtwo-y": {
  1048. name: "Mewtwo Y",
  1049. parents: ["mewtwo"]
  1050. },
  1051. "mewtwo": {
  1052. name: "Mewtwo",
  1053. parents: ["pokemon"]
  1054. },
  1055. "eevee": {
  1056. name: "Eevee",
  1057. parents: ["eeveelution"]
  1058. },
  1059. "mienshao": {
  1060. name: "Mienshao",
  1061. parents: ["pokemon"]
  1062. },
  1063. "sugar-glider": {
  1064. name: "Sugar Glider",
  1065. parents: ["opossum"]
  1066. },
  1067. "spectral-bat": {
  1068. name: "Spectral Bat",
  1069. parents: ["bat"]
  1070. },
  1071. "scolipede": {
  1072. name: "Scolipede",
  1073. parents: ["pokemon", "insect"]
  1074. },
  1075. "jackalope": {
  1076. name: "Jackalope",
  1077. parents: ["rabbit", "antelope"]
  1078. },
  1079. "caracal": {
  1080. name: "Caracal",
  1081. parents: ["cat"]
  1082. },
  1083. "stoat": {
  1084. name: "Stoat",
  1085. parents: ["mammal"]
  1086. },
  1087. "african-golden-cat": {
  1088. name: "African Golden Cat",
  1089. parents: ["cat"]
  1090. },
  1091. "gigantosaurus": {
  1092. name: "Gigantosaurus",
  1093. parents: ["dinosaur"]
  1094. },
  1095. "zorgoia": {
  1096. name: "Zorgoia",
  1097. parents: ["mammal"]
  1098. },
  1099. "monitor-lizard": {
  1100. name: "Monitor Lizard",
  1101. parents: ["lizard"]
  1102. },
  1103. "ziralkia": {
  1104. name: "Ziralkia",
  1105. parents: ["mammal"]
  1106. },
  1107. "kiiasi": {
  1108. name: "Kiiasi",
  1109. parents: ["animal"]
  1110. },
  1111. "synx": {
  1112. name: "Synx",
  1113. parents: ["monster"]
  1114. },
  1115. "panther": {
  1116. name: "Panther",
  1117. parents: ["cat"]
  1118. },
  1119. "azumarill": {
  1120. name: "Azumarill",
  1121. parents: ["pokemon"]
  1122. },
  1123. "river-snaptail": {
  1124. name: "River Snaptail",
  1125. parents: ["otter", "crocodile"]
  1126. },
  1127. "great-blue-heron": {
  1128. name: "Great Blue Heron",
  1129. parents: ["avian"]
  1130. },
  1131. "smeargle": {
  1132. name: "Smeargle",
  1133. parents: ["pokemon"]
  1134. },
  1135. "vendeilen": {
  1136. name: "Vendeilen",
  1137. parents: ["monster"]
  1138. },
  1139. "ventura": {
  1140. name: "Ventura",
  1141. parents: ["canine"]
  1142. },
  1143. "clouded-leopard": {
  1144. name: "Clouded Leopard",
  1145. parents: ["leopard"]
  1146. },
  1147. "argonian": {
  1148. name: "Argonian",
  1149. parents: ["lizard"]
  1150. },
  1151. "salazzle": {
  1152. name: "Salazzle",
  1153. parents: ["pokemon", "lizard"]
  1154. },
  1155. "je-stoff-drachen": {
  1156. name: "Je-Stoff Drachen",
  1157. parents: ["dragon"]
  1158. },
  1159. "finnish-spitz-dog": {
  1160. name: "Finnish Spitz Dog",
  1161. parents: ["dog"]
  1162. },
  1163. "gray-fox": {
  1164. name: "Gray Fox",
  1165. parents: ["fox"]
  1166. },
  1167. "opossum": {
  1168. name: "Opossum",
  1169. parents: ["mammal"]
  1170. },
  1171. "antelope": {
  1172. name: "Antelope",
  1173. parents: ["mammal"]
  1174. },
  1175. "weavile": {
  1176. name: "Weavile",
  1177. parents: ["pokemon"]
  1178. },
  1179. "pikachu": {
  1180. name: "Pikachu",
  1181. parents: ["pokemon", "mouse"]
  1182. },
  1183. "grovyle": {
  1184. name: "Grovyle",
  1185. parents: ["pokemon", "plant"]
  1186. },
  1187. "sthara": {
  1188. name: "Sthara",
  1189. parents: ["snow-leopard", "reptile"]
  1190. },
  1191. "star-warrior": {
  1192. name: "Star Warrior",
  1193. parents: ["magical"]
  1194. },
  1195. "dragonoid": {
  1196. name: "Dragonoid",
  1197. parents: ["dragon"]
  1198. },
  1199. "suicune": {
  1200. name: "Suicune",
  1201. parents: ["pokemon"]
  1202. },
  1203. "vole": {
  1204. name: "Vole",
  1205. parents: ["mammal"]
  1206. },
  1207. "blaziken": {
  1208. name: "Blaziken",
  1209. parents: ["pokemon", "avian"]
  1210. },
  1211. "buizel": {
  1212. name: "Buizel",
  1213. parents: ["pokemon", "fish"]
  1214. },
  1215. "floatzel": {
  1216. name: "Floatzel",
  1217. parents: ["pokemon", "fish"]
  1218. },
  1219. "umok": {
  1220. name: "Umok",
  1221. parents: ["avian"]
  1222. },
  1223. "sea-monster": {
  1224. name: "Sea Monster",
  1225. parents: ["monster", "fish"]
  1226. },
  1227. "egyptian-vulture": {
  1228. name: "Egyptian Vulture",
  1229. parents: ["avian"]
  1230. },
  1231. "doberman": {
  1232. name: "Doberman",
  1233. parents: ["dog"]
  1234. },
  1235. "zangoose": {
  1236. name: "Zangoose",
  1237. parents: ["pokemon", "mongoose"]
  1238. },
  1239. "mongoose": {
  1240. name: "Mongoose",
  1241. parents: ["mammal"]
  1242. },
  1243. "wickerbeast": {
  1244. name: "Wickerbeast",
  1245. parents: ["monster"]
  1246. },
  1247. "zenari": {
  1248. name: "Zenari",
  1249. parents: ["lizard"]
  1250. },
  1251. "plant": {
  1252. name: "Plant",
  1253. parents: []
  1254. },
  1255. "raskatox": {
  1256. name: "Raskatox",
  1257. parents: ["raccoon", "skunk", "cat", "fox"]
  1258. },
  1259. "mikromare": {
  1260. name: "mikromare",
  1261. parents: ["alien"]
  1262. },
  1263. "alien": {
  1264. name: "Alien",
  1265. parents: ["animal"]
  1266. },
  1267. "deity": {
  1268. name: "Deity",
  1269. parents: []
  1270. },
  1271. "skarlan": {
  1272. name: "Skarlan",
  1273. parents: ["slug", "dragon"]
  1274. },
  1275. "slug": {
  1276. name: "Slug",
  1277. parents: ["mollusk"]
  1278. },
  1279. "mollusk": {
  1280. name: "Mollusk",
  1281. parents: ["animal"]
  1282. },
  1283. "chimera": {
  1284. name: "Chimera",
  1285. parents: ["monster"]
  1286. },
  1287. "gestalt": {
  1288. name: "Gestalt",
  1289. parents: ["construct"]
  1290. },
  1291. "mimic": {
  1292. name: "Mimic",
  1293. parents: ["monster"]
  1294. },
  1295. "calico-rat": {
  1296. name: "Calico Rat",
  1297. parents: ["rat"]
  1298. },
  1299. "panda": {
  1300. name: "Panda",
  1301. parents: ["mammal"]
  1302. },
  1303. "oni": {
  1304. name: "Oni",
  1305. parents: ["monster"]
  1306. },
  1307. "pegasus": {
  1308. name: "Pegasus",
  1309. parents: ["horse"]
  1310. },
  1311. "vulpera": {
  1312. name: "Vulpera",
  1313. parents: ["fennec-fox"]
  1314. },
  1315. "ceratosaurus": {
  1316. name: "Ceratosaurus",
  1317. parents: ["dinosaur"]
  1318. },
  1319. "nykur": {
  1320. name: "Nykur",
  1321. parents: ["horse", "monster"]
  1322. },
  1323. "giraffe": {
  1324. name: "Giraffe",
  1325. parents: ["mammal"]
  1326. },
  1327. "tauren": {
  1328. name: "Tauren",
  1329. parents: ["cow"]
  1330. },
  1331. "draconi": {
  1332. name: "Draconi",
  1333. parents: ["alien", "cat", "cyborg"]
  1334. },
  1335. "dire-wolf": {
  1336. name: "Dire Wolf",
  1337. parents: ["wolf"]
  1338. },
  1339. "ferromorph": {
  1340. name: "Ferromorph",
  1341. parents: ["construct"]
  1342. },
  1343. "meowth": {
  1344. name: "Meowth",
  1345. parents: ["cat", "pokemon"]
  1346. },
  1347. "pavodragon": {
  1348. name: "Pavodragon",
  1349. parents: ["dragon"]
  1350. },
  1351. "aaltranae": {
  1352. name: "Aaltranae",
  1353. parents: ["dragon"]
  1354. },
  1355. "cyborg": {
  1356. name: "Cyborg",
  1357. parents: ["machine"]
  1358. },
  1359. "draptor": {
  1360. name: "Draptor",
  1361. parents: ["dragon"]
  1362. },
  1363. "candy": {
  1364. name: "Candy",
  1365. parents: []
  1366. },
  1367. "drenath": {
  1368. name: "Drenath",
  1369. parents: ["dragon", "snake", "rabbit"]
  1370. },
  1371. "coyju": {
  1372. name: "Coyju",
  1373. parents: ["coyote", "kaiju"]
  1374. },
  1375. "kaiju": {
  1376. name: "Kaiju",
  1377. parents: ["monster"]
  1378. },
  1379. "nickit": {
  1380. name: "Nickit",
  1381. parents: ["pokemon", "cat"]
  1382. },
  1383. "lopunny": {
  1384. name: "Lopunny",
  1385. parents: ["pokemon", "rabbit"]
  1386. },
  1387. "korean-jindo-dog": {
  1388. name: "Korean Jindo Dog",
  1389. parents: ["dog"]
  1390. },
  1391. "naga": {
  1392. name: "Naga",
  1393. parents: ["snake", "monster"]
  1394. },
  1395. "undead": {
  1396. name: "Undead",
  1397. parents: ["monster"]
  1398. },
  1399. "whale": {
  1400. name: "Whale",
  1401. parents: ["fish"]
  1402. },
  1403. "gelato-bee": {
  1404. name: "Gelato Bee",
  1405. parents: ["bee"]
  1406. },
  1407. "bee": {
  1408. name: "Bee",
  1409. parents: ["insect"]
  1410. },
  1411. "gardevoir": {
  1412. name: "Gardevoir",
  1413. parents: ["pokemon"]
  1414. },
  1415. "ant": {
  1416. name: "Ant",
  1417. parents: ["insect"]
  1418. },
  1419. "frog": {
  1420. name: "Frog",
  1421. parents: ["amphibian"]
  1422. },
  1423. "amphibian": {
  1424. name: "Amphibian",
  1425. parents: ["animal"]
  1426. },
  1427. "pangolin": {
  1428. name: "Pangolin",
  1429. parents: ["mammal"]
  1430. },
  1431. "uragi'viidorn": {
  1432. name: "Uragi'viidorn",
  1433. parents: ["avian", "bear"]
  1434. },
  1435. "gryphdelphais": {
  1436. name: "Gryphdelphais",
  1437. parents: ["dolphin", "gryphon"]
  1438. },
  1439. "plush": {
  1440. name: "Plush",
  1441. parents: ["construct"]
  1442. },
  1443. "draiger": {
  1444. name: "Draiger",
  1445. parents: ["dragon","tiger"]
  1446. },
  1447. "foxsky": {
  1448. name: "Foxsky",
  1449. parents: ["fox", "husky"]
  1450. },
  1451. "umbreon": {
  1452. name: "Umbreon",
  1453. parents: ["eeveelution"]
  1454. },
  1455. "slime-dragon": {
  1456. name: "Slime Dragon",
  1457. parents: ["dragon", "goo"]
  1458. },
  1459. "enderman": {
  1460. name: "Enderman",
  1461. parents: ["monster"]
  1462. },
  1463. "gremlin": {
  1464. name: "Gremlin",
  1465. parents: ["monster"]
  1466. },
  1467. "dragonsune": {
  1468. name: "Dragonsune",
  1469. parents: ["dragon", "kitsune"]
  1470. },
  1471. "ghost": {
  1472. name: "Ghost",
  1473. parents: ["supernatural"]
  1474. },
  1475. "false-vampire-bat": {
  1476. name: "False Vampire Bat",
  1477. parents: ["bat"]
  1478. },
  1479. "succubus": {
  1480. name: "Succubus",
  1481. parents: ["demon"]
  1482. },
  1483. "mia": {
  1484. name: "Mia",
  1485. parents: ["canine"]
  1486. },
  1487. "rainbow": {
  1488. name: "Rainbow",
  1489. parents: ["monster"]
  1490. },
  1491. "solgaleo": {
  1492. name: "Solgaleo",
  1493. parents: ["pokemon"]
  1494. },
  1495. "lucent-nargacuga": {
  1496. name: "Lucent Nargacuga",
  1497. parents: ["nargacuga"]
  1498. },
  1499. "monster-hunter": {
  1500. name: "Monster Hunter",
  1501. parents: ["monster"]
  1502. },
  1503. "leviathan": {
  1504. "name": "Leviathan",
  1505. "url": "sea-monster"
  1506. },
  1507. "bull": {
  1508. name: "Bull",
  1509. parents: ["mammal"]
  1510. },
  1511. "tanuki": {
  1512. name: "Tanuki",
  1513. parents: ["monster"]
  1514. },
  1515. "chakat": {
  1516. name: "Chakat",
  1517. parents: ["cat"]
  1518. },
  1519. "hydra": {
  1520. name: "Hydra",
  1521. parents: ["monster"]
  1522. },
  1523. "zigzagoon": {
  1524. name: "Zigzagoon",
  1525. parents: ["raccoon", "pokemon"]
  1526. },
  1527. "vulture": {
  1528. name: "Vulture",
  1529. parents: ["avian"]
  1530. },
  1531. "eastern-dragon": {
  1532. name: "Eastern Dragon",
  1533. parents: ["dragon"]
  1534. },
  1535. "gryffon": {
  1536. name: "Gryffon",
  1537. parents: ["phoenix", "red-panda"]
  1538. },
  1539. "amtsvane": {
  1540. name: "Amtsvane",
  1541. parents: ["reptile"]
  1542. },
  1543. "kigavi": {
  1544. name: "Kigavi",
  1545. parents: ["avian"]
  1546. },
  1547. "turian": {
  1548. name: "Turian",
  1549. parents: ["avian"]
  1550. },
  1551. "zeraora": {
  1552. name: "Zeraora",
  1553. parents: ["pokemon", "cat"]
  1554. },
  1555. "sandshrew": {
  1556. name: "Sandshrew",
  1557. parents: ["pokemon", "pangolin"]
  1558. },
  1559. "valais-blacknose-sheep": {
  1560. name: "Valais Blacknose Sheep",
  1561. parents: ["sheep"]
  1562. },
  1563. "novaleit": {
  1564. name: "Novaleit",
  1565. parents: ["mammal"]
  1566. },
  1567. "dunnoh": {
  1568. name: "Dunnoh",
  1569. parents: ["mammal"]
  1570. },
  1571. "lunaral-dragon": {
  1572. name: "Lunaral Dragon",
  1573. parents: ["dragon"]
  1574. },
  1575. "arctic-wolf": {
  1576. name: "Arctic Wolf",
  1577. parents: ["wolf"]
  1578. },
  1579. "donkey": {
  1580. name: "Donkey",
  1581. parents: ["horse"]
  1582. },
  1583. "chinchilla": {
  1584. name: "Chinchilla",
  1585. parents: ["rodent"]
  1586. },
  1587. "felkin": {
  1588. name: "Felkin",
  1589. parents: ["dragon"]
  1590. },
  1591. "tykeriel": {
  1592. name: "Tykeriel",
  1593. parents: ["avian"]
  1594. },
  1595. "folf": {
  1596. name: "Folf",
  1597. parents: ["fox", "wolf"]
  1598. },
  1599. "pooltoy": {
  1600. name: "Pooltoy",
  1601. parents: ["construct"]
  1602. },
  1603. "demi": {
  1604. name: "Demi",
  1605. parents: ["human"]
  1606. },
  1607. "stegosaurus": {
  1608. name: "Stegosaurus",
  1609. parents: ["dinosaur"]
  1610. },
  1611. "computer-virus": {
  1612. name: "Computer Virus",
  1613. parents: ["program"]
  1614. },
  1615. "program": {
  1616. name: "Program",
  1617. parents: ["construct"]
  1618. },
  1619. "space-springhare": {
  1620. name: "Space Springhare",
  1621. parents: ["hare"]
  1622. },
  1623. "river-drake": {
  1624. name: "River Drake",
  1625. parents: ["dragon"]
  1626. },
  1627. "djinn": {
  1628. "name": "Djinn",
  1629. "url": "supernatural"
  1630. },
  1631. "supernatural": {
  1632. name: "Supernatural",
  1633. parents: ["monster"]
  1634. },
  1635. "grasshopper-mouse": {
  1636. name: "Grasshopper Mouse",
  1637. parents: ["mouse"]
  1638. },
  1639. "somali-cat": {
  1640. name: "Somali Cat",
  1641. parents: ["cat"]
  1642. },
  1643. "minccino": {
  1644. name: "Minccino",
  1645. parents: ["pokemon", "chinchilla"]
  1646. },
  1647. "pine-marten": {
  1648. name: "Pine Marten",
  1649. parents: ["marten"]
  1650. },
  1651. "marten": {
  1652. name: "Marten",
  1653. parents: ["mustelid"]
  1654. },
  1655. "mustelid": {
  1656. name: "Mustelid",
  1657. parents: ["mammal"]
  1658. },
  1659. "caribou": {
  1660. name: "Caribou",
  1661. parents: ["deer"]
  1662. },
  1663. "gnoll": {
  1664. name: "Gnoll",
  1665. parents: ["hyena", "monster"]
  1666. },
  1667. "peacekeeper": {
  1668. name: "Peacekeeper",
  1669. parents: ["human"]
  1670. },
  1671. "river-otter": {
  1672. name: "River Otter",
  1673. parents: ["otter"]
  1674. },
  1675. "dhole": {
  1676. name: "Dhole",
  1677. parents: ["canine"]
  1678. },
  1679. "springbok": {
  1680. name: "Springbok",
  1681. parents: ["antelope"]
  1682. },
  1683. "marsupial": {
  1684. name: "Marsupial",
  1685. parents: ["mammal"]
  1686. },
  1687. "townsend-big-eared-bat": {
  1688. name: "Townsend Big-eared Bat",
  1689. parents: ["bat"]
  1690. },
  1691. "squirrel": {
  1692. name: "Squirrel",
  1693. parents: ["rodent"]
  1694. },
  1695. "magpie": {
  1696. name: "Magpie",
  1697. parents: ["corvid"]
  1698. },
  1699. "civet": {
  1700. name: "Civet",
  1701. parents: ["feliform"]
  1702. },
  1703. "feliform": {
  1704. name: "Feliform",
  1705. parents: ["mammal"]
  1706. },
  1707. "tiefling": {
  1708. name: "Tiefling",
  1709. parents: ["devil"]
  1710. },
  1711. "devil": {
  1712. name: "Devil",
  1713. parents: ["supernatural"]
  1714. },
  1715. "sika-deer": {
  1716. name: "Sika Deer",
  1717. parents: ["deer"]
  1718. },
  1719. "vaporeon": {
  1720. name: "Vaporeon",
  1721. parents: ["eeveelution"]
  1722. },
  1723. "leafeon": {
  1724. name: "Leafeon",
  1725. parents: ["eeveelution"]
  1726. },
  1727. "jolteon": {
  1728. name: "Jolteon",
  1729. parents: ["eeveelution"]
  1730. },
  1731. "spireborn": {
  1732. name: "Spireborn",
  1733. parents: ["zorgoia"]
  1734. },
  1735. "vampire": {
  1736. name: "Vampire",
  1737. parents: ["monster"]
  1738. },
  1739. "extraplanar": {
  1740. name: "Extraplanar",
  1741. parents: []
  1742. },
  1743. "goo": {
  1744. name: "Goo",
  1745. parents: []
  1746. },
  1747. "skink": {
  1748. name: "Skink",
  1749. parents: ["lizard"]
  1750. },
  1751. "bat-eared-fox": {
  1752. name: "Bat-eared Fox",
  1753. parents: ["fox"]
  1754. },
  1755. "belted-kingfisher": {
  1756. name: "Belted Kingfisher",
  1757. parents: ["avian"]
  1758. },
  1759. "omnifalcon": {
  1760. name: "Omnifalcon",
  1761. parents: ["gryphon", "falcon", "harpy-eagle"]
  1762. },
  1763. "falcon": {
  1764. name: "Falcon",
  1765. parents: ["bird-of-prey"]
  1766. },
  1767. "avali": {
  1768. name: "Avali",
  1769. parents: ["avian", "alien"]
  1770. },
  1771. "arctic-fox": {
  1772. name: "Arctic Fox",
  1773. parents: ["fox"]
  1774. },
  1775. "snow-tiger": {
  1776. name: "Snow Tiger",
  1777. parents: ["tiger"]
  1778. },
  1779. "marble-fox": {
  1780. name: "Marble Fox",
  1781. parents: ["fox"]
  1782. },
  1783. "king-wickerbeast": {
  1784. name: "King Wickerbeast",
  1785. parents: ["wickerbeast"]
  1786. },
  1787. "wickerbeast": {
  1788. name: "Wickerbeast",
  1789. parents: ["mammal"]
  1790. },
  1791. "european-polecat": {
  1792. name: "European Polecat",
  1793. parents: ["mustelid"]
  1794. },
  1795. "teshari": {
  1796. name: "Teshari",
  1797. parents: ["avian", "raptor"]
  1798. },
  1799. "alicorn": {
  1800. name: "Alicorn",
  1801. parents: ["horse"]
  1802. },
  1803. "atlas-moth": {
  1804. name: "Atlas Moth",
  1805. parents: ["moth"]
  1806. },
  1807. "owlbear": {
  1808. name: "Owlbear",
  1809. parents: ["owl", "bear", "monster"]
  1810. },
  1811. "owl": {
  1812. name: "Owl",
  1813. parents: ["avian"]
  1814. },
  1815. "silvertongue": {
  1816. name: "Silvertongue",
  1817. parents: ["reptile"]
  1818. },
  1819. "ahuizotl": {
  1820. name: "Ahuizotl",
  1821. parents: ["monster"]
  1822. },
  1823. "ender-dragon": {
  1824. name: "Ender Dragon",
  1825. parents: ["dragon"]
  1826. },
  1827. "bruhathkayosaurus": {
  1828. name: "Bruhathkayosaurus",
  1829. parents: ["sauropod"]
  1830. },
  1831. "sauropod": {
  1832. name: "Sauropod",
  1833. parents: ["dinosaur"]
  1834. },
  1835. "black-sable-antelope": {
  1836. name: "Black Sable Antelope",
  1837. parents: ["antelope"]
  1838. },
  1839. "slime": {
  1840. name: "Slime",
  1841. parents: ["goo"]
  1842. },
  1843. "utahraptor": {
  1844. name: "Utahraptor",
  1845. parents: ["raptor"]
  1846. },
  1847. "indian-giant-squirrel": {
  1848. name: "Indian Giant Squirrel",
  1849. parents: ["squirrel"]
  1850. },
  1851. "golden-retriever": {
  1852. name: "Golden Retriever",
  1853. parents: ["dog"]
  1854. },
  1855. "triceratops": {
  1856. name: "Triceratops",
  1857. parents: ["dinosaur"]
  1858. },
  1859. "drake": {
  1860. name: "Drake",
  1861. parents: ["dragon"]
  1862. },
  1863. "okapi": {
  1864. name: "Okapi",
  1865. parents: ["giraffe"]
  1866. },
  1867. "arctic-hare": {
  1868. name: "Arctic Hare",
  1869. parents: ["hare"]
  1870. },
  1871. "hare": {
  1872. name: "Hare",
  1873. parents: ["leporidae"]
  1874. },
  1875. "leporidae": {
  1876. name: "Leporidae",
  1877. parents: ["mammal"]
  1878. },
  1879. "leopard-gecko": {
  1880. name: "Leopard Gecko",
  1881. parents: ["gecko"]
  1882. },
  1883. "dreamspawn": {
  1884. name: "Dreamspawn",
  1885. parents: ["illusion"]
  1886. },
  1887. "illusion": {
  1888. name: "Illusion",
  1889. parents: []
  1890. },
  1891. "purrloin": {
  1892. name: "Purrloin",
  1893. parents: ["cat", "pokemon"]
  1894. },
  1895. "noivern": {
  1896. name: "Noivern",
  1897. parents: ["bat", "dragon", "pokemon"]
  1898. },
  1899. "hedgehog": {
  1900. name: "Hedgehog",
  1901. parents: ["mammal"]
  1902. },
  1903. "liger": {
  1904. name: "Liger",
  1905. parents: ["lion", "tiger", "hybrid"]
  1906. },
  1907. "hybrid": {
  1908. name: "Hybrid",
  1909. parents: []
  1910. },
  1911. "drider": {
  1912. name: "Drider",
  1913. parents: ["spider"]
  1914. },
  1915. "sabresune": {
  1916. name: "Sabresune",
  1917. parents: ["kitsune", "sabertooth-tiger"]
  1918. },
  1919. "ditto": {
  1920. name: "Ditto",
  1921. parents: ["pokemon", "goo"]
  1922. },
  1923. "amogus": {
  1924. name: "Amogus",
  1925. parents: ["deity"]
  1926. },
  1927. "ferret": {
  1928. name: "Ferret",
  1929. parents: ["mustelid"]
  1930. },
  1931. "guinea-pig": {
  1932. name: "Guinea Pig",
  1933. parents: ["rodent"]
  1934. },
  1935. "viper": {
  1936. name: "Viper",
  1937. parents: ["snake"]
  1938. },
  1939. "cinderace": {
  1940. name: "Cinderace",
  1941. parents: ["pokemon", "rabbit"]
  1942. },
  1943. "caudin": {
  1944. name: "Caudin",
  1945. parents: ["dragon"]
  1946. },
  1947. "red-winged-blackbird": {
  1948. name: "Red-Winged Blackbird",
  1949. parents: ["avian"]
  1950. },
  1951. "hooded-wheater": {
  1952. name: "Hooded Wheater",
  1953. parents: ["passerine"]
  1954. },
  1955. "passerine": {
  1956. name: "Passerine",
  1957. parents: ["avian"]
  1958. },
  1959. "gieeg": {
  1960. name: "Gieeg",
  1961. parents: ["alien"]
  1962. },
  1963. "ringtail": {
  1964. name: "Ringtail",
  1965. parents: ["raccoon"]
  1966. },
  1967. "hisuian-zoroark": {
  1968. name: "Hisuian Zoroark",
  1969. parents: ["zoroark", "hisuian"]
  1970. },
  1971. "hisuian": {
  1972. name: "Hisuian",
  1973. parents: ["regional-pokemon"]
  1974. },
  1975. "regional-pokemon": {
  1976. name: "Regional Pokemon",
  1977. parents: ["pokemon"]
  1978. },
  1979. "cybeast": {
  1980. name: "Cybeast",
  1981. parents: ["computer-virus"]
  1982. },
  1983. "javira-dragon": {
  1984. name: "Javira Dragon",
  1985. parents: ["dragon"]
  1986. },
  1987. "koopew": {
  1988. name: "Koopew",
  1989. parents: ["dragon", "alien"]
  1990. },
  1991. "nevrean": {
  1992. name: "Nevrean",
  1993. parents: ["avian", "vilous"]
  1994. },
  1995. "vilous": {
  1996. name: "Vilous Species",
  1997. parents: []
  1998. },
  1999. "titanoboa": {
  2000. name: "Titanoboa",
  2001. parents: ["snake"]
  2002. },
  2003. "raichu": {
  2004. name: "Raichu",
  2005. parents: ["pikachu"]
  2006. },
  2007. "taur": {
  2008. name: "Taur",
  2009. parents: []
  2010. },
  2011. "continental-giant-rabbit": {
  2012. name: "Continental Giant Rabbit",
  2013. parents: ["rabbit"]
  2014. },
  2015. "demigryph": {
  2016. name: "Demigryph",
  2017. parents: ["lion", "eagle"]
  2018. },
  2019. "bald-eagle": {
  2020. name: "Bald Eagle",
  2021. parents: ["eagle"]
  2022. },
  2023. "kestrel": {
  2024. name: "Kestrel",
  2025. parents: ["falcon"]
  2026. },
  2027. "mockingbird": {
  2028. name: "Mockingbird",
  2029. parents: ["songbird"]
  2030. },
  2031. "songbird": {
  2032. name: "Songbird",
  2033. parents: ["avian"]
  2034. },
  2035. "bird-of-prey": {
  2036. name: "Bird of Prey",
  2037. parents: ["avian"]
  2038. },
  2039. "marowak": {
  2040. name: "Marowak",
  2041. parents: ["pokemon", "reptile"]
  2042. },
  2043. "joltik": {
  2044. name: "Joltik",
  2045. parents: ["pokemon", "insect"]
  2046. },
  2047. "mink": {
  2048. name: "Mink",
  2049. parents: ["mustelid"]
  2050. },
  2051. "sandcat": {
  2052. name: "Sandcat",
  2053. parents: ["cat"]
  2054. },
  2055. "hrothgar": {
  2056. name: "Hrothgar",
  2057. parents: ["cat"]
  2058. },
  2059. "garchomp": {
  2060. name: "Garchomp",
  2061. parents: ["dragon", "pokemon"]
  2062. },
  2063. "nargacuga": {
  2064. name: "Nargacuga",
  2065. parents: ["monster-hunter"]
  2066. },
  2067. "sable": {
  2068. name: "Sable",
  2069. parents: ["marten"]
  2070. },
  2071. "deino": {
  2072. name: "Deino",
  2073. parents: ["pokemon", "dinosaur"]
  2074. },
  2075. "housecat": {
  2076. name: "Housecat",
  2077. parents: ["cat"]
  2078. },
  2079. "bombay-cat": {
  2080. name: "Bombay Cat",
  2081. parents: ["housecat"]
  2082. },
  2083. "maine-coon": {
  2084. name: "Maine Coon",
  2085. parents: ["housecat"]
  2086. },
  2087. "coelacanth": {
  2088. name: "Coelacanth",
  2089. parents: ["fish"]
  2090. },
  2091. "silvally": {
  2092. name: "Silvally",
  2093. parents: ["legendary-pokemon"]
  2094. },
  2095. "legendary-pokemon": {
  2096. name: "Legendary Pokemon",
  2097. parents: ["pokemon"]
  2098. },
  2099. "great-maccao": {
  2100. name: "Great Maccao",
  2101. parents: ["monster-hunter", "raptor"]
  2102. },
  2103. "shapeshifter": {
  2104. name: "shapeshifter",
  2105. parents: []
  2106. },
  2107. "obstagoon": {
  2108. name: "Obstagoon",
  2109. parents: ["zigzagoon"]
  2110. },
  2111. "thomsons-gazelle": {
  2112. name: "Thomsons Gazelle",
  2113. parents: ["gazelle"]
  2114. },
  2115. "gazelle": {
  2116. name: "Gazelle",
  2117. parents: ["antelope"]
  2118. },
  2119. "monkey": {
  2120. name: "Monkey",
  2121. parents: ["mammal"]
  2122. },
  2123. "serval": {
  2124. name: "Serval",
  2125. parents: ["cat"]
  2126. },
  2127. "swampert": {
  2128. name: "Swampert",
  2129. parents: ["pokemon"]
  2130. },
  2131. }
  2132. //species
  2133. function getSpeciesInfo(speciesList) {
  2134. let result = new Set();
  2135. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2136. result.add(entry)
  2137. });
  2138. return Array.from(result);
  2139. };
  2140. function getSpeciesInfoHelper(species) {
  2141. if (!speciesData[species]) {
  2142. console.warn(species + " doesn't exist");
  2143. return [];
  2144. }
  2145. if (speciesData[species].parents) {
  2146. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2147. } else {
  2148. return [species];
  2149. }
  2150. }
  2151. characterMakers.push(() => makeCharacter(
  2152. {
  2153. name: "Fen",
  2154. species: ["crux"],
  2155. description: {
  2156. title: "Bio",
  2157. text: "Very furry. Sheds on everything."
  2158. },
  2159. tags: [
  2160. "anthro",
  2161. "goo"
  2162. ]
  2163. },
  2164. {
  2165. front: {
  2166. height: math.unit(12, "feet"),
  2167. weight: math.unit(2400, "lb"),
  2168. preyCapacity: math.unit(1, "people"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/fen/front.svg",
  2172. extra: 1804/1562,
  2173. bottom: 205/2009
  2174. },
  2175. extraAttributes: {
  2176. pawSize: {
  2177. name: "Paw Size",
  2178. power: 2,
  2179. type: "area",
  2180. base: math.unit(0.35, "m^2")
  2181. }
  2182. }
  2183. },
  2184. diving: {
  2185. height: math.unit(4.9, "meters"),
  2186. weight: math.unit(2400, "lb"),
  2187. name: "Diving",
  2188. image: {
  2189. source: "./media/characters/fen/diving.svg"
  2190. }
  2191. },
  2192. sleeby: {
  2193. height: math.unit(3.45, "meters"),
  2194. weight: math.unit(2400, "lb"),
  2195. name: "Sleeby",
  2196. image: {
  2197. source: "./media/characters/fen/sleeby.svg"
  2198. }
  2199. },
  2200. goo: {
  2201. height: math.unit(12, "feet"),
  2202. weight: math.unit(3600, "lb"),
  2203. volume: math.unit(1000, "liters"),
  2204. preyCapacity: math.unit(6, "people"),
  2205. name: "Goo",
  2206. image: {
  2207. source: "./media/characters/fen/goo.svg",
  2208. extra: 1307/1071,
  2209. bottom: 134/1441
  2210. }
  2211. },
  2212. gooNsfw: {
  2213. height: math.unit(12, "feet"),
  2214. weight: math.unit(3750, "lb"),
  2215. volume: math.unit(1000, "liters"),
  2216. preyCapacity: math.unit(6, "people"),
  2217. name: "Goo (NSFW)",
  2218. image: {
  2219. source: "./media/characters/fen/goo-nsfw.svg",
  2220. extra: 1875/1734,
  2221. bottom: 122/1997
  2222. }
  2223. },
  2224. maw: {
  2225. height: math.unit(5.03, "feet"),
  2226. name: "Maw",
  2227. image: {
  2228. source: "./media/characters/fen/maw.svg"
  2229. }
  2230. },
  2231. gooCeiling: {
  2232. height: math.unit(6.6, "feet"),
  2233. weight: math.unit(3000, "lb"),
  2234. volume: math.unit(1000, "liters"),
  2235. preyCapacity: math.unit(6, "people"),
  2236. name: "Goo (Ceiling)",
  2237. image: {
  2238. source: "./media/characters/fen/goo-ceiling.svg"
  2239. }
  2240. },
  2241. paw: {
  2242. height: math.unit(3.77, "feet"),
  2243. name: "Paw",
  2244. image: {
  2245. source: "./media/characters/fen/paw.svg"
  2246. },
  2247. extraAttributes: {
  2248. "toeSize": {
  2249. name: "Toe Size",
  2250. power: 2,
  2251. type: "area",
  2252. base: math.unit(0.02875, "m^2")
  2253. },
  2254. "pawSize": {
  2255. name: "Paw Size",
  2256. power: 2,
  2257. type: "area",
  2258. base: math.unit(0.378, "m^2")
  2259. },
  2260. }
  2261. },
  2262. tail: {
  2263. height: math.unit(12.1, "feet"),
  2264. name: "Tail",
  2265. image: {
  2266. source: "./media/characters/fen/tail.svg"
  2267. }
  2268. },
  2269. tailFull: {
  2270. height: math.unit(12.1, "feet"),
  2271. name: "Full Tail",
  2272. image: {
  2273. source: "./media/characters/fen/tail-full.svg"
  2274. }
  2275. },
  2276. back: {
  2277. height: math.unit(12, "feet"),
  2278. weight: math.unit(2400, "lb"),
  2279. name: "Back",
  2280. image: {
  2281. source: "./media/characters/fen/back.svg",
  2282. },
  2283. info: {
  2284. description: {
  2285. mode: "append",
  2286. text: "\n\nHe is not currently looking at you."
  2287. }
  2288. }
  2289. },
  2290. full: {
  2291. height: math.unit(1.85, "meter"),
  2292. weight: math.unit(3200, "lb"),
  2293. name: "Full",
  2294. image: {
  2295. source: "./media/characters/fen/full.svg",
  2296. extra: 1133/859,
  2297. bottom: 145/1278
  2298. },
  2299. info: {
  2300. description: {
  2301. mode: "append",
  2302. text: "\n\nMunch."
  2303. }
  2304. }
  2305. },
  2306. gooLounging: {
  2307. height: math.unit(4.53, "feet"),
  2308. weight: math.unit(3000, "lb"),
  2309. preyCapacity: math.unit(6, "people"),
  2310. name: "Goo (Lounging)",
  2311. image: {
  2312. source: "./media/characters/fen/goo-lounging.svg",
  2313. bottom: 116 / 613
  2314. }
  2315. },
  2316. lounging: {
  2317. height: math.unit(10.52, "feet"),
  2318. weight: math.unit(2400, "lb"),
  2319. name: "Lounging",
  2320. image: {
  2321. source: "./media/characters/fen/lounging.svg"
  2322. }
  2323. },
  2324. },
  2325. [
  2326. {
  2327. name: "Small",
  2328. height: math.unit(2.2428, "meter")
  2329. },
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(12, "feet"),
  2333. default: true,
  2334. },
  2335. {
  2336. name: "Big",
  2337. height: math.unit(20, "feet")
  2338. },
  2339. {
  2340. name: "Minimacro",
  2341. height: math.unit(40, "feet"),
  2342. info: {
  2343. description: {
  2344. mode: "append",
  2345. text: "\n\nTOO DAMN BIG"
  2346. }
  2347. }
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(100, "feet"),
  2352. info: {
  2353. description: {
  2354. mode: "append",
  2355. text: "\n\nTOO DAMN BIG"
  2356. }
  2357. }
  2358. },
  2359. {
  2360. name: "Megamacro",
  2361. height: math.unit(2, "miles")
  2362. },
  2363. {
  2364. name: "Gigamacro",
  2365. height: math.unit(10, "earths")
  2366. },
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2371. {
  2372. front: {
  2373. height: math.unit(183, "cm"),
  2374. weight: math.unit(80, "kg"),
  2375. name: "Front",
  2376. image: {
  2377. source: "./media/characters/sofia-fluttertail/front.svg",
  2378. bottom: 0.01,
  2379. extra: 2154 / 2081
  2380. }
  2381. },
  2382. frontAlt: {
  2383. height: math.unit(183, "cm"),
  2384. weight: math.unit(80, "kg"),
  2385. name: "Front (alt)",
  2386. image: {
  2387. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2388. }
  2389. },
  2390. back: {
  2391. height: math.unit(183, "cm"),
  2392. weight: math.unit(80, "kg"),
  2393. name: "Back",
  2394. image: {
  2395. source: "./media/characters/sofia-fluttertail/back.svg"
  2396. }
  2397. },
  2398. kneeling: {
  2399. height: math.unit(125, "cm"),
  2400. weight: math.unit(80, "kg"),
  2401. name: "Kneeling",
  2402. image: {
  2403. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2404. extra: 1033 / 977,
  2405. bottom: 23.7 / 1057
  2406. }
  2407. },
  2408. maw: {
  2409. height: math.unit(183 / 5, "cm"),
  2410. name: "Maw",
  2411. image: {
  2412. source: "./media/characters/sofia-fluttertail/maw.svg"
  2413. }
  2414. },
  2415. mawcloseup: {
  2416. height: math.unit(183 / 5 * 0.41, "cm"),
  2417. name: "Maw (Closeup)",
  2418. image: {
  2419. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2420. }
  2421. },
  2422. paws: {
  2423. height: math.unit(1.17, "feet"),
  2424. name: "Paws",
  2425. image: {
  2426. source: "./media/characters/sofia-fluttertail/paws.svg",
  2427. extra: 851 / 851,
  2428. bottom: 17 / 868
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(1.83, "meter")
  2436. },
  2437. {
  2438. name: "Size Thief",
  2439. height: math.unit(18, "feet")
  2440. },
  2441. {
  2442. name: "50 Foot Collie",
  2443. height: math.unit(50, "feet")
  2444. },
  2445. {
  2446. name: "Macro",
  2447. height: math.unit(96, "feet"),
  2448. default: true
  2449. },
  2450. {
  2451. name: "Megamerger",
  2452. height: math.unit(650, "feet")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(7, "feet"),
  2461. weight: math.unit(100, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/march/front.svg",
  2465. extra: 1992/1851,
  2466. bottom: 39/2031
  2467. }
  2468. },
  2469. foot: {
  2470. height: math.unit(0.9, "feet"),
  2471. name: "Foot",
  2472. image: {
  2473. source: "./media/characters/march/foot.svg"
  2474. }
  2475. },
  2476. },
  2477. [
  2478. {
  2479. name: "Normal",
  2480. height: math.unit(7.9, "feet")
  2481. },
  2482. {
  2483. name: "Macro",
  2484. height: math.unit(220, "meters")
  2485. },
  2486. {
  2487. name: "Megamacro",
  2488. height: math.unit(2.98, "km"),
  2489. default: true
  2490. },
  2491. {
  2492. name: "Gigamacro",
  2493. height: math.unit(15963, "km")
  2494. },
  2495. {
  2496. name: "Teramacro",
  2497. height: math.unit(2980000000, "km")
  2498. },
  2499. {
  2500. name: "Examacro",
  2501. height: math.unit(250, "parsecs")
  2502. },
  2503. ]
  2504. ))
  2505. characterMakers.push(() => makeCharacter(
  2506. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2507. {
  2508. front: {
  2509. height: math.unit(6, "feet"),
  2510. weight: math.unit(60, "kg"),
  2511. name: "Front",
  2512. image: {
  2513. source: "./media/characters/noir/front.svg",
  2514. extra: 1,
  2515. bottom: 0.032
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(6.6, "feet")
  2523. },
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(500, "feet")
  2527. },
  2528. {
  2529. name: "Megamacro",
  2530. height: math.unit(2.5, "km"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(22500, "km")
  2536. },
  2537. {
  2538. name: "Teramacro",
  2539. height: math.unit(2500000000, "km")
  2540. },
  2541. {
  2542. name: "Examacro",
  2543. height: math.unit(200, "parsecs")
  2544. },
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2549. {
  2550. front: {
  2551. height: math.unit(7, "feet"),
  2552. weight: math.unit(100, "kg"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/okuri/front.svg",
  2556. extra: 739/665,
  2557. bottom: 39/778
  2558. }
  2559. },
  2560. back: {
  2561. height: math.unit(7, "feet"),
  2562. weight: math.unit(100, "kg"),
  2563. name: "Back",
  2564. image: {
  2565. source: "./media/characters/okuri/back.svg",
  2566. extra: 734/653,
  2567. bottom: 13/747
  2568. }
  2569. },
  2570. sitting: {
  2571. height: math.unit(2.95, "feet"),
  2572. weight: math.unit(100, "kg"),
  2573. name: "Sitting",
  2574. image: {
  2575. source: "./media/characters/okuri/sitting.svg",
  2576. extra: 370/318,
  2577. bottom: 99/469
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Smallest",
  2584. height: math.unit(5 + 2/12, "feet")
  2585. },
  2586. {
  2587. name: "Smaller",
  2588. height: math.unit(300, "feet")
  2589. },
  2590. {
  2591. name: "Small",
  2592. height: math.unit(1000, "feet")
  2593. },
  2594. {
  2595. name: "Macro",
  2596. height: math.unit(1, "mile")
  2597. },
  2598. {
  2599. name: "Mega Macro (Small)",
  2600. height: math.unit(20, "km")
  2601. },
  2602. {
  2603. name: "Mega Macro (Large)",
  2604. height: math.unit(600, "km")
  2605. },
  2606. {
  2607. name: "Giga Macro",
  2608. height: math.unit(10000, "km")
  2609. },
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(577560, "km"),
  2613. default: true
  2614. },
  2615. {
  2616. name: "Large",
  2617. height: math.unit(4, "galaxies")
  2618. },
  2619. {
  2620. name: "Largest",
  2621. height: math.unit(15, "multiverses")
  2622. },
  2623. ]
  2624. ))
  2625. characterMakers.push(() => makeCharacter(
  2626. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2627. {
  2628. front: {
  2629. height: math.unit(7, "feet"),
  2630. weight: math.unit(100, "kg"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/manny/front.svg",
  2634. extra: 1,
  2635. bottom: 0.06
  2636. }
  2637. },
  2638. back: {
  2639. height: math.unit(7, "feet"),
  2640. weight: math.unit(100, "kg"),
  2641. name: "Back",
  2642. image: {
  2643. source: "./media/characters/manny/back.svg",
  2644. extra: 1,
  2645. bottom: 0.014
  2646. }
  2647. },
  2648. },
  2649. [
  2650. {
  2651. name: "Normal",
  2652. height: math.unit(7, "feet"),
  2653. },
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(78, "feet"),
  2657. default: true
  2658. },
  2659. {
  2660. name: "Macro+",
  2661. height: math.unit(300, "meters")
  2662. },
  2663. {
  2664. name: "Macro++",
  2665. height: math.unit(2400, "meters")
  2666. },
  2667. {
  2668. name: "Megamacro",
  2669. height: math.unit(5167, "meters")
  2670. },
  2671. {
  2672. name: "Gigamacro",
  2673. height: math.unit(41769, "miles")
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2679. {
  2680. front: {
  2681. height: math.unit(7, "feet"),
  2682. weight: math.unit(100, "kg"),
  2683. name: "Front",
  2684. image: {
  2685. source: "./media/characters/adake/front-1.svg"
  2686. }
  2687. },
  2688. frontAlt: {
  2689. height: math.unit(7, "feet"),
  2690. weight: math.unit(100, "kg"),
  2691. name: "Front (Alt)",
  2692. image: {
  2693. source: "./media/characters/adake/front-2.svg",
  2694. extra: 1,
  2695. bottom: 0.01
  2696. }
  2697. },
  2698. back: {
  2699. height: math.unit(7, "feet"),
  2700. weight: math.unit(100, "kg"),
  2701. name: "Back",
  2702. image: {
  2703. source: "./media/characters/adake/back.svg",
  2704. }
  2705. },
  2706. kneel: {
  2707. height: math.unit(5.385, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Kneeling",
  2710. image: {
  2711. source: "./media/characters/adake/kneel.svg",
  2712. bottom: 0.052
  2713. }
  2714. },
  2715. },
  2716. [
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(7, "feet"),
  2720. },
  2721. {
  2722. name: "Macro",
  2723. height: math.unit(78, "feet"),
  2724. default: true
  2725. },
  2726. {
  2727. name: "Macro+",
  2728. height: math.unit(300, "meters")
  2729. },
  2730. {
  2731. name: "Macro++",
  2732. height: math.unit(2400, "meters")
  2733. },
  2734. {
  2735. name: "Megamacro",
  2736. height: math.unit(5167, "meters")
  2737. },
  2738. {
  2739. name: "Gigamacro",
  2740. height: math.unit(41769, "miles")
  2741. },
  2742. ]
  2743. ))
  2744. characterMakers.push(() => makeCharacter(
  2745. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2746. {
  2747. front: {
  2748. height: math.unit(1.65, "meters"),
  2749. weight: math.unit(50, "kg"),
  2750. name: "Front",
  2751. image: {
  2752. source: "./media/characters/elijah/front.svg",
  2753. extra: 858 / 830,
  2754. bottom: 95.5 / 953.8559
  2755. }
  2756. },
  2757. back: {
  2758. height: math.unit(1.65, "meters"),
  2759. weight: math.unit(50, "kg"),
  2760. name: "Back",
  2761. image: {
  2762. source: "./media/characters/elijah/back.svg",
  2763. extra: 895 / 850,
  2764. bottom: 5.3 / 897.956
  2765. }
  2766. },
  2767. frontNsfw: {
  2768. height: math.unit(1.65, "meters"),
  2769. weight: math.unit(50, "kg"),
  2770. name: "Front (NSFW)",
  2771. image: {
  2772. source: "./media/characters/elijah/front-nsfw.svg",
  2773. extra: 858 / 830,
  2774. bottom: 95.5 / 953.8559
  2775. }
  2776. },
  2777. backNsfw: {
  2778. height: math.unit(1.65, "meters"),
  2779. weight: math.unit(50, "kg"),
  2780. name: "Back (NSFW)",
  2781. image: {
  2782. source: "./media/characters/elijah/back-nsfw.svg",
  2783. extra: 895 / 850,
  2784. bottom: 5.3 / 897.956
  2785. }
  2786. },
  2787. dick: {
  2788. height: math.unit(1, "feet"),
  2789. name: "Dick",
  2790. image: {
  2791. source: "./media/characters/elijah/dick.svg"
  2792. }
  2793. },
  2794. beakOpen: {
  2795. height: math.unit(1.25, "feet"),
  2796. name: "Beak (Open)",
  2797. image: {
  2798. source: "./media/characters/elijah/beak-open.svg"
  2799. }
  2800. },
  2801. beakShut: {
  2802. height: math.unit(1.25, "feet"),
  2803. name: "Beak (Shut)",
  2804. image: {
  2805. source: "./media/characters/elijah/beak-shut.svg"
  2806. }
  2807. },
  2808. footFlexing: {
  2809. height: math.unit(1.61, "feet"),
  2810. name: "Foot (Flexing)",
  2811. image: {
  2812. source: "./media/characters/elijah/foot-flexing.svg"
  2813. }
  2814. },
  2815. footStepping: {
  2816. height: math.unit(1.44, "feet"),
  2817. name: "Foot (Stepping)",
  2818. image: {
  2819. source: "./media/characters/elijah/foot-stepping.svg"
  2820. }
  2821. },
  2822. plantigradeLeg: {
  2823. height: math.unit(2.34, "feet"),
  2824. name: "Plantigrade Leg",
  2825. image: {
  2826. source: "./media/characters/elijah/plantigrade-leg.svg"
  2827. }
  2828. },
  2829. plantigradeFootLeft: {
  2830. height: math.unit(0.9, "feet"),
  2831. name: "Plantigrade Foot (Left)",
  2832. image: {
  2833. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2834. }
  2835. },
  2836. plantigradeFootRight: {
  2837. height: math.unit(0.9, "feet"),
  2838. name: "Plantigrade Foot (Right)",
  2839. image: {
  2840. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(1.65, "meters")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(55, "meters"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro+",
  2856. height: math.unit(105, "meters")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(7 + 2/12, "feet"),
  2865. weight: math.unit(320, "kg"),
  2866. preyCapacity: math.unit(0.276549935, "people"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/rai/front.svg",
  2870. extra: 1802/1696,
  2871. bottom: 68/1870
  2872. },
  2873. form: "anthro",
  2874. default: true
  2875. },
  2876. frontDressed: {
  2877. height: math.unit(7 + 2/12, "feet"),
  2878. weight: math.unit(320, "kg"),
  2879. preyCapacity: math.unit(0.276549935, "people"),
  2880. name: "Front (Dressed)",
  2881. image: {
  2882. source: "./media/characters/rai/front-dressed.svg",
  2883. extra: 1802/1696,
  2884. bottom: 68/1870
  2885. },
  2886. form: "anthro"
  2887. },
  2888. side: {
  2889. height: math.unit(7 + 2/12, "feet"),
  2890. weight: math.unit(320, "kg"),
  2891. preyCapacity: math.unit(0.276549935, "people"),
  2892. name: "Side",
  2893. image: {
  2894. source: "./media/characters/rai/side.svg",
  2895. extra: 1789/1710,
  2896. bottom: 115/1904
  2897. },
  2898. form: "anthro"
  2899. },
  2900. back: {
  2901. height: math.unit(7 + 2/12, "feet"),
  2902. weight: math.unit(320, "kg"),
  2903. preyCapacity: math.unit(0.276549935, "people"),
  2904. name: "Back",
  2905. image: {
  2906. source: "./media/characters/rai/back.svg",
  2907. extra: 1770/1707,
  2908. bottom: 28/1798
  2909. },
  2910. form: "anthro"
  2911. },
  2912. feral: {
  2913. height: math.unit(9.5, "feet"),
  2914. weight: math.unit(640, "kg"),
  2915. preyCapacity: math.unit(4, "people"),
  2916. name: "Feral",
  2917. image: {
  2918. source: "./media/characters/rai/feral.svg",
  2919. extra: 945/553,
  2920. bottom: 176/1121
  2921. },
  2922. form: "feral",
  2923. default: true
  2924. },
  2925. dragon: {
  2926. height: math.unit(23, "feet"),
  2927. weight: math.unit(50000, "lb"),
  2928. name: "Dragon",
  2929. image: {
  2930. source: "./media/characters/rai/dragon.svg",
  2931. extra: 2498 / 2030,
  2932. bottom: 85.2 / 2584
  2933. },
  2934. form: "dragon",
  2935. default: true
  2936. },
  2937. maw: {
  2938. height: math.unit(1.69, "feet"),
  2939. name: "Maw",
  2940. image: {
  2941. source: "./media/characters/rai/maw.svg"
  2942. },
  2943. form: "anthro"
  2944. },
  2945. },
  2946. [
  2947. {
  2948. name: "Normal",
  2949. height: math.unit(7 + 2/12, "feet"),
  2950. form: "anthro"
  2951. },
  2952. {
  2953. name: "Big",
  2954. height: math.unit(11, "feet"),
  2955. form: "anthro"
  2956. },
  2957. {
  2958. name: "Minimacro",
  2959. height: math.unit(77, "feet"),
  2960. form: "anthro"
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(302, "feet"),
  2965. default: true,
  2966. form: "anthro"
  2967. },
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(9.5, "feet"),
  2971. form: "feral",
  2972. default: true
  2973. },
  2974. {
  2975. name: "Normal",
  2976. height: math.unit(23, "feet"),
  2977. form: "dragon",
  2978. default: true
  2979. }
  2980. ],
  2981. {
  2982. "anthro": {
  2983. name: "Anthro",
  2984. default: true
  2985. },
  2986. "feral": {
  2987. name: "Feral",
  2988. },
  2989. "dragon": {
  2990. name: "Dragon",
  2991. },
  2992. }
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2996. {
  2997. frontDressed: {
  2998. height: math.unit(216, "feet"),
  2999. weight: math.unit(7000000, "lb"),
  3000. preyCapacity: math.unit(1321, "people"),
  3001. name: "Front (Dressed)",
  3002. image: {
  3003. source: "./media/characters/jazzy/front-dressed.svg",
  3004. extra: 2738 / 2651,
  3005. bottom: 41.8 / 2786
  3006. }
  3007. },
  3008. backDressed: {
  3009. height: math.unit(216, "feet"),
  3010. weight: math.unit(7000000, "lb"),
  3011. preyCapacity: math.unit(1321, "people"),
  3012. name: "Back (Dressed)",
  3013. image: {
  3014. source: "./media/characters/jazzy/back-dressed.svg",
  3015. extra: 2775 / 2673,
  3016. bottom: 36.8 / 2817
  3017. }
  3018. },
  3019. front: {
  3020. height: math.unit(216, "feet"),
  3021. weight: math.unit(7000000, "lb"),
  3022. preyCapacity: math.unit(1321, "people"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/jazzy/front.svg",
  3026. extra: 2738 / 2651,
  3027. bottom: 41.8 / 2786
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(216, "feet"),
  3032. weight: math.unit(7000000, "lb"),
  3033. preyCapacity: math.unit(1321, "people"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/jazzy/back.svg",
  3037. extra: 2775 / 2673,
  3038. bottom: 36.8 / 2817
  3039. }
  3040. },
  3041. maw: {
  3042. height: math.unit(20, "feet"),
  3043. name: "Maw",
  3044. image: {
  3045. source: "./media/characters/jazzy/maw.svg"
  3046. }
  3047. },
  3048. paws: {
  3049. height: math.unit(27.5, "feet"),
  3050. name: "Paws",
  3051. image: {
  3052. source: "./media/characters/jazzy/paws.svg"
  3053. }
  3054. },
  3055. eye: {
  3056. height: math.unit(4.4, "feet"),
  3057. name: "Eye",
  3058. image: {
  3059. source: "./media/characters/jazzy/eye.svg"
  3060. }
  3061. },
  3062. droneOffense: {
  3063. height: math.unit(9.5, "inches"),
  3064. name: "Drone (Offense)",
  3065. image: {
  3066. source: "./media/characters/jazzy/drone-offense.svg"
  3067. }
  3068. },
  3069. droneRecon: {
  3070. height: math.unit(9.5, "inches"),
  3071. name: "Drone (Recon)",
  3072. image: {
  3073. source: "./media/characters/jazzy/drone-recon.svg"
  3074. }
  3075. },
  3076. droneDefense: {
  3077. height: math.unit(9.5, "inches"),
  3078. name: "Drone (Defense)",
  3079. image: {
  3080. source: "./media/characters/jazzy/drone-defense.svg"
  3081. }
  3082. },
  3083. },
  3084. [
  3085. {
  3086. name: "Macro",
  3087. height: math.unit(216, "feet"),
  3088. default: true
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3094. {
  3095. front: {
  3096. height: math.unit(9 + 6/12, "feet"),
  3097. weight: math.unit(700, "lb"),
  3098. name: "Front",
  3099. image: {
  3100. source: "./media/characters/flamm/front.svg",
  3101. extra: 1751/1632,
  3102. bottom: 46/1797
  3103. }
  3104. },
  3105. buff: {
  3106. height: math.unit(9 + 6/12, "feet"),
  3107. weight: math.unit(950, "lb"),
  3108. name: "Buff",
  3109. image: {
  3110. source: "./media/characters/flamm/buff.svg",
  3111. extra: 3018/2874,
  3112. bottom: 221/3239
  3113. }
  3114. },
  3115. },
  3116. [
  3117. {
  3118. name: "Normal",
  3119. height: math.unit(9.5, "feet")
  3120. },
  3121. {
  3122. name: "Macro",
  3123. height: math.unit(200, "feet"),
  3124. default: true
  3125. },
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3130. {
  3131. front: {
  3132. height: math.unit(5 + 3/12, "feet"),
  3133. weight: math.unit(60, "kg"),
  3134. name: "Front",
  3135. image: {
  3136. source: "./media/characters/zephiro/front.svg",
  3137. extra: 1873/1761,
  3138. bottom: 147/2020
  3139. }
  3140. },
  3141. side: {
  3142. height: math.unit(5 + 3/12, "feet"),
  3143. weight: math.unit(60, "kg"),
  3144. name: "Side",
  3145. image: {
  3146. source: "./media/characters/zephiro/side.svg",
  3147. extra: 1929/1827,
  3148. bottom: 65/1994
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(5 + 3/12, "feet"),
  3153. weight: math.unit(60, "kg"),
  3154. name: "Back",
  3155. image: {
  3156. source: "./media/characters/zephiro/back.svg",
  3157. extra: 1926/1816,
  3158. bottom: 41/1967
  3159. }
  3160. },
  3161. hand: {
  3162. height: math.unit(0.68, "feet"),
  3163. name: "Hand",
  3164. image: {
  3165. source: "./media/characters/zephiro/hand.svg"
  3166. }
  3167. },
  3168. paw: {
  3169. height: math.unit(1, "feet"),
  3170. name: "Paw",
  3171. image: {
  3172. source: "./media/characters/zephiro/paw.svg"
  3173. }
  3174. },
  3175. beans: {
  3176. height: math.unit(0.93, "feet"),
  3177. name: "Beans",
  3178. image: {
  3179. source: "./media/characters/zephiro/beans.svg"
  3180. }
  3181. },
  3182. },
  3183. [
  3184. {
  3185. name: "Micro",
  3186. height: math.unit(3, "inches")
  3187. },
  3188. {
  3189. name: "Normal",
  3190. height: math.unit(5 + 3 / 12, "feet"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro",
  3195. height: math.unit(118, "feet")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(5, "feet"),
  3204. weight: math.unit(90, "kg"),
  3205. preyCapacity: math.unit(14, "people"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/fory/front.svg",
  3209. extra: 2862 / 2674,
  3210. bottom: 180 / 3043.8
  3211. },
  3212. form: "weaselbun",
  3213. default: true,
  3214. extraAttributes: {
  3215. "pawSize": {
  3216. name: "Paw Size",
  3217. power: 2,
  3218. type: "area",
  3219. base: math.unit(0.1596, "m^2")
  3220. },
  3221. "pawLength": {
  3222. name: "Paw Length",
  3223. power: 1,
  3224. type: "length",
  3225. base: math.unit(0.7, "m")
  3226. }
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(5, "feet"),
  3231. weight: math.unit(90, "kg"),
  3232. preyCapacity: math.unit(14, "people"),
  3233. name: "Back",
  3234. image: {
  3235. source: "./media/characters/fory/back.svg",
  3236. extra: 1790/1672,
  3237. bottom: 84/1874
  3238. },
  3239. form: "weaselbun",
  3240. extraAttributes: {
  3241. "pawSize": {
  3242. name: "Paw Size",
  3243. power: 2,
  3244. type: "area",
  3245. base: math.unit(0.1596, "m^2")
  3246. },
  3247. "pawLength": {
  3248. name: "Paw Length",
  3249. power: 1,
  3250. type: "length",
  3251. base: math.unit(0.7, "m")
  3252. }
  3253. }
  3254. },
  3255. paw: {
  3256. height: math.unit(2.14, "feet"),
  3257. name: "Paw",
  3258. image: {
  3259. source: "./media/characters/fory/paw.svg"
  3260. },
  3261. form: "weaselbun",
  3262. extraAttributes: {
  3263. "pawSize": {
  3264. name: "Paw Size",
  3265. power: 2,
  3266. type: "area",
  3267. base: math.unit(0.1596, "m^2")
  3268. },
  3269. "pawLength": {
  3270. name: "Paw Length",
  3271. power: 1,
  3272. type: "length",
  3273. base: math.unit(0.48, "m")
  3274. }
  3275. }
  3276. },
  3277. bunBack: {
  3278. height: math.unit(3, "feet"),
  3279. weight: math.unit(20, "kg"),
  3280. preyCapacity: math.unit(3, "people"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/fory/bun-back.svg",
  3284. extra: 1749/1564,
  3285. bottom: 246/1995
  3286. },
  3287. form: "bun",
  3288. default: true,
  3289. extraAttributes: {
  3290. "pawSize": {
  3291. name: "Paw Size",
  3292. power: 2,
  3293. type: "area",
  3294. base: math.unit(0.072, "m^2")
  3295. },
  3296. "pawLength": {
  3297. name: "Paw Length",
  3298. power: 1,
  3299. type: "length",
  3300. base: math.unit(0.45, "m")
  3301. }
  3302. }
  3303. },
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(5, "feet"),
  3309. form: "weaselbun"
  3310. },
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(50, "feet"),
  3314. default: true,
  3315. form: "weaselbun"
  3316. },
  3317. {
  3318. name: "Megamacro",
  3319. height: math.unit(10, "miles"),
  3320. form: "weaselbun"
  3321. },
  3322. {
  3323. name: "Gigamacro",
  3324. height: math.unit(5, "earths"),
  3325. form: "weaselbun"
  3326. },
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(3, "feet"),
  3330. default: true,
  3331. form: "bun"
  3332. },
  3333. {
  3334. name: "Fun-Size",
  3335. height: math.unit(12, "feet"),
  3336. form: "bun"
  3337. },
  3338. {
  3339. name: "Macro",
  3340. height: math.unit(100, "feet"),
  3341. form: "bun"
  3342. },
  3343. {
  3344. name: "Planetary",
  3345. height: math.unit(3, "earths"),
  3346. form: "bun"
  3347. },
  3348. ],
  3349. {
  3350. "weaselbun": {
  3351. name: "Weaselbun",
  3352. default: true
  3353. },
  3354. "bun": {
  3355. name: "Bun",
  3356. },
  3357. }
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(7, "feet"),
  3364. weight: math.unit(90, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/kurrikage/front.svg",
  3368. extra: 1845/1733,
  3369. bottom: 119/1964
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(7, "feet"),
  3374. weight: math.unit(90, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/kurrikage/back.svg",
  3378. extra: 1790/1677,
  3379. bottom: 61/1851
  3380. }
  3381. },
  3382. dressed: {
  3383. height: math.unit(7, "feet"),
  3384. weight: math.unit(90, "kg"),
  3385. name: "Dressed",
  3386. image: {
  3387. source: "./media/characters/kurrikage/dressed.svg",
  3388. extra: 1845/1733,
  3389. bottom: 119/1964
  3390. }
  3391. },
  3392. foot: {
  3393. height: math.unit(1.5, "feet"),
  3394. name: "Foot",
  3395. image: {
  3396. source: "./media/characters/kurrikage/foot.svg"
  3397. }
  3398. },
  3399. staff: {
  3400. height: math.unit(6.7, "feet"),
  3401. name: "Staff",
  3402. image: {
  3403. source: "./media/characters/kurrikage/staff.svg"
  3404. }
  3405. },
  3406. peek: {
  3407. height: math.unit(1.05, "feet"),
  3408. name: "Peeking",
  3409. image: {
  3410. source: "./media/characters/kurrikage/peek.svg",
  3411. bottom: 0.08
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(12, "feet"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Big",
  3423. height: math.unit(20, "feet")
  3424. },
  3425. {
  3426. name: "Macro",
  3427. height: math.unit(500, "feet")
  3428. },
  3429. {
  3430. name: "Megamacro",
  3431. height: math.unit(20, "miles")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/shingo/front.svg",
  3444. extra: 1900/1825,
  3445. bottom: 82/1982
  3446. }
  3447. },
  3448. side: {
  3449. height: math.unit(6, "feet"),
  3450. weight: math.unit(75, "kg"),
  3451. name: "Side",
  3452. image: {
  3453. source: "./media/characters/shingo/side.svg",
  3454. extra: 1930/1865,
  3455. bottom: 16/1946
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/shingo/back.svg",
  3464. extra: 1922/1852,
  3465. bottom: 16/1938
  3466. }
  3467. },
  3468. frontDressed: {
  3469. height: math.unit(6, "feet"),
  3470. weight: math.unit(150, "lb"),
  3471. name: "Front-dressed",
  3472. image: {
  3473. source: "./media/characters/shingo/front-dressed.svg",
  3474. extra: 1900/1825,
  3475. bottom: 82/1982
  3476. }
  3477. },
  3478. paw: {
  3479. height: math.unit(1.29, "feet"),
  3480. name: "Paw",
  3481. image: {
  3482. source: "./media/characters/shingo/paw.svg"
  3483. }
  3484. },
  3485. hand: {
  3486. height: math.unit(1.07, "feet"),
  3487. name: "Hand",
  3488. image: {
  3489. source: "./media/characters/shingo/hand.svg"
  3490. }
  3491. },
  3492. frontAlt: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Front (Alt)",
  3496. image: {
  3497. source: "./media/characters/shingo/front-alt.svg",
  3498. extra: 3511 / 3338,
  3499. bottom: 0.005
  3500. }
  3501. },
  3502. frontAlt2: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Front (Alt 2)",
  3506. image: {
  3507. source: "./media/characters/shingo/front-alt-2.svg",
  3508. extra: 706/681,
  3509. bottom: 11/717
  3510. }
  3511. },
  3512. pawAlt: {
  3513. height: math.unit(1, "feet"),
  3514. name: "Paw (Alt)",
  3515. image: {
  3516. source: "./media/characters/shingo/paw-alt.svg"
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Micro",
  3523. height: math.unit(4, "inches")
  3524. },
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(6, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(108, "feet")
  3533. },
  3534. {
  3535. name: "Macro+",
  3536. height: math.unit(1500, "feet")
  3537. },
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3542. {
  3543. side: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Side",
  3547. image: {
  3548. source: "./media/characters/aigey/side.svg"
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Macro",
  3555. height: math.unit(200, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Megamacro",
  3560. height: math.unit(100, "miles")
  3561. },
  3562. ]
  3563. )
  3564. )
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(5 + 5 / 12, "feet"),
  3570. weight: math.unit(75, "kg"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/natasha/front.svg",
  3574. extra: 859 / 824,
  3575. bottom: 23 / 879.6
  3576. }
  3577. },
  3578. frontNsfw: {
  3579. height: math.unit(5 + 5 / 12, "feet"),
  3580. weight: math.unit(75, "kg"),
  3581. name: "Front (NSFW)",
  3582. image: {
  3583. source: "./media/characters/natasha/front-nsfw.svg",
  3584. extra: 859 / 824,
  3585. bottom: 23 / 879.6
  3586. }
  3587. },
  3588. frontErect: {
  3589. height: math.unit(5 + 5 / 12, "feet"),
  3590. weight: math.unit(75, "kg"),
  3591. name: "Front (Erect)",
  3592. image: {
  3593. source: "./media/characters/natasha/front-erect.svg",
  3594. extra: 859 / 824,
  3595. bottom: 23 / 879.6
  3596. }
  3597. },
  3598. back: {
  3599. height: math.unit(5 + 5 / 12, "feet"),
  3600. weight: math.unit(75, "kg"),
  3601. name: "Back",
  3602. image: {
  3603. source: "./media/characters/natasha/back.svg",
  3604. extra: 887.9 / 852.6,
  3605. bottom: 9.7 / 896.4
  3606. }
  3607. },
  3608. backAlt: {
  3609. height: math.unit(5 + 5 / 12, "feet"),
  3610. weight: math.unit(75, "kg"),
  3611. name: "Back (Alt)",
  3612. image: {
  3613. source: "./media/characters/natasha/back-alt.svg",
  3614. extra: 1236.7 / 1192,
  3615. bottom: 22.3 / 1258.2
  3616. }
  3617. },
  3618. dick: {
  3619. height: math.unit(1.772, "feet"),
  3620. name: "Dick",
  3621. image: {
  3622. source: "./media/characters/natasha/dick.svg"
  3623. }
  3624. },
  3625. paw: {
  3626. height: math.unit(0.250, "meters"),
  3627. name: "Paw",
  3628. image: {
  3629. source: "./media/characters/natasha/paw.svg"
  3630. },
  3631. extraAttributes: {
  3632. "toeSize": {
  3633. name: "Toe Size",
  3634. power: 2,
  3635. type: "area",
  3636. base: math.unit(0.0024, "m^2")
  3637. },
  3638. "padSize": {
  3639. name: "Pad Size",
  3640. power: 2,
  3641. type: "area",
  3642. base: math.unit(0.00889, "m^2")
  3643. },
  3644. "pawSize": {
  3645. name: "Paw Size",
  3646. power: 2,
  3647. type: "area",
  3648. base: math.unit(0.023667, "m^2")
  3649. },
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Shortstack",
  3656. height: math.unit(3, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(5 + 5 / 12, "feet")
  3662. },
  3663. {
  3664. name: "Large",
  3665. height: math.unit(12, "feet")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(100, "feet")
  3670. },
  3671. {
  3672. name: "Macro+",
  3673. height: math.unit(260, "feet")
  3674. },
  3675. {
  3676. name: "Macro++",
  3677. height: math.unit(1, "mile")
  3678. },
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(6, "feet"),
  3686. weight: math.unit(75, "kg"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/malik/front.svg",
  3690. extra: 1750/1561,
  3691. bottom: 80/1830
  3692. },
  3693. extraAttributes: {
  3694. "toeSize": {
  3695. name: "Toe Size",
  3696. power: 2,
  3697. type: "area",
  3698. base: math.unit(0.0159, "m^2")
  3699. },
  3700. "pawSize": {
  3701. name: "Paw Size",
  3702. power: 2,
  3703. type: "area",
  3704. base: math.unit(0.09834, "m^2")
  3705. },
  3706. }
  3707. },
  3708. side: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(75, "kg"),
  3711. name: "Side",
  3712. image: {
  3713. source: "./media/characters/malik/side.svg",
  3714. extra: 1802/1685,
  3715. bottom: 42/1844
  3716. },
  3717. extraAttributes: {
  3718. "toeSize": {
  3719. name: "Toe Size",
  3720. power: 2,
  3721. type: "area",
  3722. base: math.unit(0.0159, "m^2")
  3723. },
  3724. "pawSize": {
  3725. name: "Paw Size",
  3726. power: 2,
  3727. type: "area",
  3728. base: math.unit(0.09834, "m^2")
  3729. },
  3730. }
  3731. },
  3732. back: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(75, "kg"),
  3735. name: "Back",
  3736. image: {
  3737. source: "./media/characters/malik/back.svg",
  3738. extra: 1803/1607,
  3739. bottom: 33/1836
  3740. },
  3741. extraAttributes: {
  3742. "toeSize": {
  3743. name: "Toe Size",
  3744. power: 2,
  3745. type: "area",
  3746. base: math.unit(0.0159, "m^2")
  3747. },
  3748. "pawSize": {
  3749. name: "Paw Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.09834, "m^2")
  3753. },
  3754. }
  3755. },
  3756. },
  3757. [
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(156, "feet"),
  3761. default: true
  3762. },
  3763. {
  3764. name: "Macro+",
  3765. height: math.unit(1188, "feet")
  3766. },
  3767. ]
  3768. ))
  3769. characterMakers.push(() => makeCharacter(
  3770. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3771. {
  3772. front: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(75, "kg"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/sefer/front.svg",
  3778. extra: 848 / 659,
  3779. bottom: 28.3 / 876.442
  3780. }
  3781. },
  3782. back: {
  3783. height: math.unit(6, "feet"),
  3784. weight: math.unit(75, "kg"),
  3785. name: "Back",
  3786. image: {
  3787. source: "./media/characters/sefer/back.svg",
  3788. extra: 864 / 695,
  3789. bottom: 10 / 871
  3790. }
  3791. },
  3792. frontDressed: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(75, "kg"),
  3795. name: "Dressed",
  3796. image: {
  3797. source: "./media/characters/sefer/dressed.svg",
  3798. extra: 839 / 653,
  3799. bottom: 37.6 / 878
  3800. }
  3801. },
  3802. },
  3803. [
  3804. {
  3805. name: "Normal",
  3806. height: math.unit(6, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Big",
  3811. height: math.unit(8, "meters")
  3812. },
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3817. {
  3818. body: {
  3819. height: math.unit(2.2428, "meter"),
  3820. weight: math.unit(124.738, "kg"),
  3821. name: "Body",
  3822. image: {
  3823. extra: 1225 / 1050,
  3824. source: "./media/characters/north/front.svg"
  3825. }
  3826. }
  3827. },
  3828. [
  3829. {
  3830. name: "Micro",
  3831. height: math.unit(4, "inches")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(63, "meters")
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(101, "miles"),
  3840. default: true
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3846. {
  3847. angled: {
  3848. height: math.unit(4, "meter"),
  3849. weight: math.unit(150, "kg"),
  3850. name: "Angled",
  3851. image: {
  3852. source: "./media/characters/talan/angled-sfw.svg",
  3853. bottom: 29 / 3734
  3854. }
  3855. },
  3856. angledNsfw: {
  3857. height: math.unit(4, "meter"),
  3858. weight: math.unit(150, "kg"),
  3859. name: "Angled (NSFW)",
  3860. image: {
  3861. source: "./media/characters/talan/angled-nsfw.svg",
  3862. bottom: 29 / 3734
  3863. }
  3864. },
  3865. frontNsfw: {
  3866. height: math.unit(4, "meter"),
  3867. weight: math.unit(150, "kg"),
  3868. name: "Front (NSFW)",
  3869. image: {
  3870. source: "./media/characters/talan/front-nsfw.svg",
  3871. bottom: 29 / 3734
  3872. }
  3873. },
  3874. sideNsfw: {
  3875. height: math.unit(4, "meter"),
  3876. weight: math.unit(150, "kg"),
  3877. name: "Side (NSFW)",
  3878. image: {
  3879. source: "./media/characters/talan/side-nsfw.svg",
  3880. bottom: 29 / 3734
  3881. }
  3882. },
  3883. back: {
  3884. height: math.unit(4, "meter"),
  3885. weight: math.unit(150, "kg"),
  3886. name: "Back",
  3887. image: {
  3888. source: "./media/characters/talan/back.svg"
  3889. }
  3890. },
  3891. dickBottom: {
  3892. height: math.unit(0.621, "meter"),
  3893. name: "Dick (Bottom)",
  3894. image: {
  3895. source: "./media/characters/talan/dick-bottom.svg"
  3896. }
  3897. },
  3898. dickTop: {
  3899. height: math.unit(0.621, "meter"),
  3900. name: "Dick (Top)",
  3901. image: {
  3902. source: "./media/characters/talan/dick-top.svg"
  3903. }
  3904. },
  3905. dickSide: {
  3906. height: math.unit(0.305, "meter"),
  3907. name: "Dick (Side)",
  3908. image: {
  3909. source: "./media/characters/talan/dick-side.svg"
  3910. }
  3911. },
  3912. dickFront: {
  3913. height: math.unit(0.305, "meter"),
  3914. name: "Dick (Front)",
  3915. image: {
  3916. source: "./media/characters/talan/dick-front.svg"
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(4, "meters")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(100, "meters")
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(2, "miles"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Gigamacro",
  3936. height: math.unit(5000, "miles")
  3937. },
  3938. {
  3939. name: "Teramacro",
  3940. height: math.unit(100, "parsecs")
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(2, "meter"),
  3949. weight: math.unit(90, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/gael'rathus/front.svg"
  3953. }
  3954. },
  3955. frontAlt: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(90, "kg"),
  3958. name: "Front (alt)",
  3959. image: {
  3960. source: "./media/characters/gael'rathus/front-alt.svg"
  3961. }
  3962. },
  3963. frontAlt2: {
  3964. height: math.unit(2, "meter"),
  3965. weight: math.unit(90, "kg"),
  3966. name: "Front (alt 2)",
  3967. image: {
  3968. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3969. }
  3970. }
  3971. },
  3972. [
  3973. {
  3974. name: "Normal",
  3975. height: math.unit(9, "feet"),
  3976. default: true
  3977. },
  3978. {
  3979. name: "Large",
  3980. height: math.unit(25, "feet")
  3981. },
  3982. {
  3983. name: "Macro",
  3984. height: math.unit(0.25, "miles")
  3985. },
  3986. {
  3987. name: "Megamacro",
  3988. height: math.unit(10, "miles")
  3989. }
  3990. ]
  3991. ))
  3992. characterMakers.push(() => makeCharacter(
  3993. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3994. {
  3995. side: {
  3996. height: math.unit(2, "meter"),
  3997. weight: math.unit(140, "kg"),
  3998. name: "Side",
  3999. image: {
  4000. source: "./media/characters/sosha/side.svg",
  4001. extra: 1170/1006,
  4002. bottom: 94/1264
  4003. }
  4004. },
  4005. maw: {
  4006. height: math.unit(2.87, "feet"),
  4007. name: "Maw",
  4008. image: {
  4009. source: "./media/characters/sosha/maw.svg",
  4010. extra: 966/865,
  4011. bottom: 0/966
  4012. }
  4013. },
  4014. cooch: {
  4015. height: math.unit(5.6, "feet"),
  4016. name: "Cooch",
  4017. image: {
  4018. source: "./media/characters/sosha/cooch.svg"
  4019. }
  4020. },
  4021. },
  4022. [
  4023. {
  4024. name: "Normal",
  4025. height: math.unit(12, "feet"),
  4026. default: true
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4032. {
  4033. side: {
  4034. height: math.unit(5 + 5 / 12, "feet"),
  4035. weight: math.unit(170, "kg"),
  4036. name: "Side",
  4037. image: {
  4038. source: "./media/characters/runnola/side.svg",
  4039. extra: 741 / 448,
  4040. bottom: 0.05
  4041. }
  4042. },
  4043. },
  4044. [
  4045. {
  4046. name: "Small",
  4047. height: math.unit(3, "feet")
  4048. },
  4049. {
  4050. name: "Normal",
  4051. height: math.unit(5 + 5 / 12, "feet"),
  4052. default: true
  4053. },
  4054. {
  4055. name: "Big",
  4056. height: math.unit(10, "feet")
  4057. },
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(2, "meter"),
  4065. weight: math.unit(50, "kg"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/kurribird/front.svg",
  4069. bottom: 0.015
  4070. }
  4071. },
  4072. frontAlt: {
  4073. height: math.unit(1.5, "meter"),
  4074. weight: math.unit(50, "kg"),
  4075. name: "Front (Alt)",
  4076. image: {
  4077. source: "./media/characters/kurribird/front-alt.svg",
  4078. extra: 1.45
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(7, "feet")
  4086. },
  4087. {
  4088. name: "Big",
  4089. height: math.unit(12, "feet"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Macro",
  4094. height: math.unit(1500, "feet")
  4095. },
  4096. {
  4097. name: "Megamacro",
  4098. height: math.unit(2, "miles")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(2, "meter"),
  4107. weight: math.unit(80, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/elbial/front.svg",
  4111. extra: 1643 / 1556,
  4112. bottom: 60.2 / 1696
  4113. }
  4114. },
  4115. side: {
  4116. height: math.unit(2, "meter"),
  4117. weight: math.unit(80, "kg"),
  4118. name: "Side",
  4119. image: {
  4120. source: "./media/characters/elbial/side.svg",
  4121. extra: 1601/1528,
  4122. bottom: 97/1698
  4123. }
  4124. },
  4125. back: {
  4126. height: math.unit(2, "meter"),
  4127. weight: math.unit(80, "kg"),
  4128. name: "Back",
  4129. image: {
  4130. source: "./media/characters/elbial/back.svg",
  4131. extra: 1653/1569,
  4132. bottom: 20/1673
  4133. }
  4134. },
  4135. frontDressed: {
  4136. height: math.unit(2, "meter"),
  4137. weight: math.unit(80, "kg"),
  4138. name: "Front (Dressed)",
  4139. image: {
  4140. source: "./media/characters/elbial/front-dressed.svg",
  4141. extra: 1638/1569,
  4142. bottom: 70/1708
  4143. }
  4144. },
  4145. genitals: {
  4146. height: math.unit(2 / 3.367, "meter"),
  4147. name: "Genitals",
  4148. image: {
  4149. source: "./media/characters/elbial/genitals.svg"
  4150. }
  4151. },
  4152. },
  4153. [
  4154. {
  4155. name: "Large",
  4156. height: math.unit(100, "feet")
  4157. },
  4158. {
  4159. name: "Macro",
  4160. height: math.unit(500, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Megamacro",
  4165. height: math.unit(10, "miles")
  4166. },
  4167. {
  4168. name: "Gigamacro",
  4169. height: math.unit(25000, "miles")
  4170. },
  4171. {
  4172. name: "Full-Size",
  4173. height: math.unit(8000000, "gigaparsecs")
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(2, "meter"),
  4182. weight: math.unit(60, "kg"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/noah/front.svg"
  4186. }
  4187. },
  4188. talons: {
  4189. height: math.unit(0.315, "meter"),
  4190. name: "Talons",
  4191. image: {
  4192. source: "./media/characters/noah/talons.svg"
  4193. }
  4194. }
  4195. },
  4196. [
  4197. {
  4198. name: "Large",
  4199. height: math.unit(50, "feet")
  4200. },
  4201. {
  4202. name: "Macro",
  4203. height: math.unit(750, "feet"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Megamacro",
  4208. height: math.unit(50, "miles")
  4209. },
  4210. {
  4211. name: "Gigamacro",
  4212. height: math.unit(100000, "miles")
  4213. },
  4214. {
  4215. name: "Full-Size",
  4216. height: math.unit(3000000000, "miles")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(2, "meter"),
  4225. weight: math.unit(80, "kg"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/natalya/front.svg"
  4229. }
  4230. },
  4231. back: {
  4232. height: math.unit(2, "meter"),
  4233. weight: math.unit(80, "kg"),
  4234. name: "Back",
  4235. image: {
  4236. source: "./media/characters/natalya/back.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Normal",
  4243. height: math.unit(150, "feet"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Megamacro",
  4248. height: math.unit(5, "miles")
  4249. },
  4250. {
  4251. name: "Full-Size",
  4252. height: math.unit(600, "kiloparsecs")
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(2, "meter"),
  4261. weight: math.unit(50, "kg"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/erestrebah/front.svg",
  4265. extra: 1262/1162,
  4266. bottom: 96/1358
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(50, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/erestrebah/back.svg",
  4275. extra: 1257/1139,
  4276. bottom: 13/1270
  4277. }
  4278. },
  4279. wing: {
  4280. height: math.unit(2, "meter"),
  4281. weight: math.unit(50, "kg"),
  4282. name: "Wing",
  4283. image: {
  4284. source: "./media/characters/erestrebah/wing.svg",
  4285. extra: 1262/1162,
  4286. bottom: 96/1358
  4287. }
  4288. },
  4289. mouth: {
  4290. height: math.unit(0.39, "feet"),
  4291. name: "Mouth",
  4292. image: {
  4293. source: "./media/characters/erestrebah/mouth.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(10, "feet")
  4301. },
  4302. {
  4303. name: "Large",
  4304. height: math.unit(50, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro",
  4309. height: math.unit(300, "feet")
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(750, "feet")
  4314. },
  4315. {
  4316. name: "Megamacro",
  4317. height: math.unit(3, "miles")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4323. {
  4324. front: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Front",
  4328. image: {
  4329. source: "./media/characters/jennifer/front.svg",
  4330. bottom: 0.11,
  4331. extra: 1.16
  4332. }
  4333. },
  4334. frontAlt: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Front (Alt)",
  4338. image: {
  4339. source: "./media/characters/jennifer/front-alt.svg"
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Canon Height",
  4346. height: math.unit(120, "feet"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Macro+",
  4351. height: math.unit(300, "feet")
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(20000, "feet")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(50, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/kalista/front.svg",
  4368. extra: 1314/1145,
  4369. bottom: 101/1415
  4370. }
  4371. },
  4372. back: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(50, "kg"),
  4375. name: "Back",
  4376. image: {
  4377. source: "./media/characters/kalista/back.svg",
  4378. extra: 1366 / 1156,
  4379. bottom: 33.9 / 1362.78
  4380. }
  4381. }
  4382. },
  4383. [
  4384. {
  4385. name: "Uncomfortably Small",
  4386. height: math.unit(10, "feet")
  4387. },
  4388. {
  4389. name: "Small",
  4390. height: math.unit(30, "feet")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(100, "feet"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Macro+",
  4399. height: math.unit(2000, "feet")
  4400. },
  4401. {
  4402. name: "True Form",
  4403. height: math.unit(8924, "miles")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(2, "meter"),
  4412. weight: math.unit(120, "kg"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/ggv/front.svg"
  4416. }
  4417. },
  4418. side: {
  4419. height: math.unit(2, "meter"),
  4420. weight: math.unit(120, "kg"),
  4421. name: "Side",
  4422. image: {
  4423. source: "./media/characters/ggv/side.svg"
  4424. }
  4425. }
  4426. },
  4427. [
  4428. {
  4429. name: "Extremely Puny",
  4430. height: math.unit(9 + 5 / 12, "feet")
  4431. },
  4432. {
  4433. name: "Horribly Small",
  4434. height: math.unit(47.7, "miles"),
  4435. default: true
  4436. },
  4437. {
  4438. name: "Reasonably Sized",
  4439. height: math.unit(25000, "parsecs")
  4440. },
  4441. {
  4442. name: "Slightly Uncompressed",
  4443. height: math.unit(7.77e31, "parsecs")
  4444. },
  4445. {
  4446. name: "Omniversal",
  4447. height: math.unit(1e300, "meters")
  4448. },
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4453. {
  4454. front: {
  4455. height: math.unit(2, "meter"),
  4456. weight: math.unit(75, "lb"),
  4457. name: "Front",
  4458. image: {
  4459. source: "./media/characters/napalm/front.svg"
  4460. }
  4461. },
  4462. back: {
  4463. height: math.unit(2, "meter"),
  4464. weight: math.unit(75, "lb"),
  4465. name: "Back",
  4466. image: {
  4467. source: "./media/characters/napalm/back.svg"
  4468. }
  4469. }
  4470. },
  4471. [
  4472. {
  4473. name: "Standard",
  4474. height: math.unit(55, "feet"),
  4475. default: true
  4476. }
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(7 + 5 / 6, "feet"),
  4484. weight: math.unit(325, "lb"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/asana/front.svg",
  4488. extra: 1133 / 1060,
  4489. bottom: 15.2 / 1148.6
  4490. }
  4491. },
  4492. back: {
  4493. height: math.unit(7 + 5 / 6, "feet"),
  4494. weight: math.unit(325, "lb"),
  4495. name: "Back",
  4496. image: {
  4497. source: "./media/characters/asana/back.svg",
  4498. extra: 1114 / 1043,
  4499. bottom: 5 / 1120
  4500. }
  4501. },
  4502. dressedDark: {
  4503. height: math.unit(7 + 5 / 6, "feet"),
  4504. weight: math.unit(325, "lb"),
  4505. name: "Dressed (Dark)",
  4506. image: {
  4507. source: "./media/characters/asana/dressed-dark.svg",
  4508. extra: 1133 / 1060,
  4509. bottom: 15.2 / 1148.6
  4510. }
  4511. },
  4512. dressedLight: {
  4513. height: math.unit(7 + 5 / 6, "feet"),
  4514. weight: math.unit(325, "lb"),
  4515. name: "Dressed (Light)",
  4516. image: {
  4517. source: "./media/characters/asana/dressed-light.svg",
  4518. extra: 1133 / 1060,
  4519. bottom: 15.2 / 1148.6
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Standard",
  4526. height: math.unit(7 + 5 / 6, "feet"),
  4527. default: true
  4528. },
  4529. {
  4530. name: "Large",
  4531. height: math.unit(10, "meters")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(2500, "meters")
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(5e6, "meters")
  4540. },
  4541. {
  4542. name: "Examacro",
  4543. height: math.unit(5e12, "lightyears")
  4544. },
  4545. {
  4546. name: "Max Size",
  4547. height: math.unit(1e31, "lightyears")
  4548. }
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4553. {
  4554. front: {
  4555. height: math.unit(2, "meter"),
  4556. weight: math.unit(60, "kg"),
  4557. name: "Front",
  4558. image: {
  4559. source: "./media/characters/ebony/front.svg",
  4560. bottom: 0.03,
  4561. extra: 1045 / 810 + 0.03
  4562. }
  4563. },
  4564. side: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(60, "kg"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/ebony/side.svg",
  4570. bottom: 0.03,
  4571. extra: 1045 / 810 + 0.03
  4572. }
  4573. },
  4574. back: {
  4575. height: math.unit(2, "meter"),
  4576. weight: math.unit(60, "kg"),
  4577. name: "Back",
  4578. image: {
  4579. source: "./media/characters/ebony/back.svg",
  4580. bottom: 0.01,
  4581. extra: 1045 / 810 + 0.01
  4582. }
  4583. },
  4584. },
  4585. [
  4586. // TODO check why I did this lol
  4587. {
  4588. name: "Standard",
  4589. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4590. default: true
  4591. },
  4592. {
  4593. name: "Macro",
  4594. height: math.unit(200, "feet")
  4595. },
  4596. {
  4597. name: "Gigamacro",
  4598. height: math.unit(13000, "km")
  4599. }
  4600. ]
  4601. ))
  4602. characterMakers.push(() => makeCharacter(
  4603. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4604. {
  4605. front: {
  4606. height: math.unit(6, "feet"),
  4607. weight: math.unit(175, "lb"),
  4608. name: "Front",
  4609. image: {
  4610. source: "./media/characters/mountain/front.svg",
  4611. extra: 972 / 955,
  4612. bottom: 64 / 1036.6
  4613. }
  4614. },
  4615. back: {
  4616. height: math.unit(6, "feet"),
  4617. weight: math.unit(175, "lb"),
  4618. name: "Back",
  4619. image: {
  4620. source: "./media/characters/mountain/back.svg",
  4621. extra: 970 / 950,
  4622. bottom: 28.25 / 999
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Large",
  4629. height: math.unit(20, "meters")
  4630. },
  4631. {
  4632. name: "Macro",
  4633. height: math.unit(300, "meters")
  4634. },
  4635. {
  4636. name: "Gigamacro",
  4637. height: math.unit(10000, "km"),
  4638. default: true
  4639. },
  4640. {
  4641. name: "Examacro",
  4642. height: math.unit(10e9, "lightyears")
  4643. }
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4648. {
  4649. front: {
  4650. height: math.unit(8, "feet"),
  4651. weight: math.unit(500, "lb"),
  4652. name: "Front",
  4653. image: {
  4654. source: "./media/characters/rick/front.svg"
  4655. }
  4656. }
  4657. },
  4658. [
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(8, "feet"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(5, "km")
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(8, "feet"),
  4675. weight: math.unit(120, "lb"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/ona/front.svg"
  4679. }
  4680. },
  4681. frontAlt: {
  4682. height: math.unit(8, "feet"),
  4683. weight: math.unit(120, "lb"),
  4684. name: "Front (Alt)",
  4685. image: {
  4686. source: "./media/characters/ona/front-alt.svg"
  4687. }
  4688. },
  4689. back: {
  4690. height: math.unit(8, "feet"),
  4691. weight: math.unit(120, "lb"),
  4692. name: "Back",
  4693. image: {
  4694. source: "./media/characters/ona/back.svg"
  4695. }
  4696. },
  4697. foot: {
  4698. height: math.unit(1.1, "feet"),
  4699. name: "Foot",
  4700. image: {
  4701. source: "./media/characters/ona/foot.svg"
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Megamacro",
  4708. height: math.unit(70, "km"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Gigamacro",
  4713. height: math.unit(681818, "miles")
  4714. },
  4715. {
  4716. name: "Examacro",
  4717. height: math.unit(3800000, "lightyears")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(12, "feet"),
  4726. weight: math.unit(3000, "lb"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/mech/front.svg",
  4730. extra: 2900 / 2770,
  4731. bottom: 110 / 3010
  4732. }
  4733. },
  4734. back: {
  4735. height: math.unit(12, "feet"),
  4736. weight: math.unit(3000, "lb"),
  4737. name: "Back",
  4738. image: {
  4739. source: "./media/characters/mech/back.svg",
  4740. extra: 3011 / 2890,
  4741. bottom: 94 / 3105
  4742. }
  4743. },
  4744. maw: {
  4745. height: math.unit(3.07, "feet"),
  4746. name: "Maw",
  4747. image: {
  4748. source: "./media/characters/mech/maw.svg"
  4749. }
  4750. },
  4751. head: {
  4752. height: math.unit(3.07, "feet"),
  4753. name: "Head",
  4754. image: {
  4755. source: "./media/characters/mech/head.svg"
  4756. }
  4757. },
  4758. dick: {
  4759. height: math.unit(1.43, "feet"),
  4760. name: "Dick",
  4761. image: {
  4762. source: "./media/characters/mech/dick.svg"
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(12, "feet")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(300, "feet"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Macro+",
  4778. height: math.unit(1500, "feet")
  4779. },
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4784. {
  4785. front: {
  4786. height: math.unit(1.3, "meter"),
  4787. weight: math.unit(30, "kg"),
  4788. name: "Front",
  4789. image: {
  4790. source: "./media/characters/gregory/front.svg",
  4791. }
  4792. }
  4793. },
  4794. [
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(1.3, "meter"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Macro",
  4802. height: math.unit(20, "meter")
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4808. {
  4809. front: {
  4810. height: math.unit(2.8, "meter"),
  4811. weight: math.unit(200, "kg"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/elory/front.svg",
  4815. }
  4816. }
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(2.8, "meter"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Macro",
  4826. height: math.unit(38, "meter")
  4827. }
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4832. {
  4833. front: {
  4834. height: math.unit(470, "feet"),
  4835. weight: math.unit(924, "tons"),
  4836. name: "Front",
  4837. image: {
  4838. source: "./media/characters/angelpatamon/front.svg",
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(470, "feet"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Deity Size I",
  4850. height: math.unit(28651.2, "km")
  4851. },
  4852. {
  4853. name: "Deity Size II",
  4854. height: math.unit(171907.2, "km")
  4855. }
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4860. {
  4861. side: {
  4862. height: math.unit(7.2, "meter"),
  4863. weight: math.unit(8.2, "tons"),
  4864. name: "Side",
  4865. image: {
  4866. source: "./media/characters/cryae/side.svg",
  4867. extra: 3500 / 1500
  4868. }
  4869. }
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(7.2, "meter"),
  4875. default: true
  4876. }
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4881. {
  4882. front: {
  4883. height: math.unit(6, "feet"),
  4884. weight: math.unit(175, "lb"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/xera/front.svg",
  4888. extra: 2377 / 1972,
  4889. bottom: 75.5 / 2452
  4890. }
  4891. },
  4892. side: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(175, "lb"),
  4895. name: "Side",
  4896. image: {
  4897. source: "./media/characters/xera/side.svg",
  4898. extra: 2345 / 2019,
  4899. bottom: 39.7 / 2384
  4900. }
  4901. },
  4902. back: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(175, "lb"),
  4905. name: "Back",
  4906. image: {
  4907. source: "./media/characters/xera/back.svg",
  4908. extra: 2095 / 1984,
  4909. bottom: 67 / 2166
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Small",
  4916. height: math.unit(10, "feet")
  4917. },
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(500, "meters"),
  4921. default: true
  4922. },
  4923. {
  4924. name: "Macro+",
  4925. height: math.unit(10, "km")
  4926. },
  4927. {
  4928. name: "Gigamacro",
  4929. height: math.unit(25000, "km")
  4930. },
  4931. {
  4932. name: "Teramacro",
  4933. height: math.unit(3e6, "km")
  4934. }
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(175, "lb"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/nebula/front.svg",
  4946. extra: 2566 / 2362,
  4947. bottom: 81 / 2644
  4948. }
  4949. }
  4950. },
  4951. [
  4952. {
  4953. name: "Small",
  4954. height: math.unit(4.5, "meters")
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(1500, "meters"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Megamacro",
  4963. height: math.unit(150, "km")
  4964. },
  4965. {
  4966. name: "Gigamacro",
  4967. height: math.unit(27000, "km")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(225, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/abysgar/front.svg",
  4980. extra: 1739/1614,
  4981. bottom: 71/1810
  4982. }
  4983. },
  4984. frontNsfw: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(225, "lb"),
  4987. name: "Front (NSFW)",
  4988. image: {
  4989. source: "./media/characters/abysgar/front-nsfw.svg",
  4990. extra: 1739/1614,
  4991. bottom: 71/1810
  4992. }
  4993. },
  4994. back: {
  4995. height: math.unit(4.6, "feet"),
  4996. weight: math.unit(225, "lb"),
  4997. name: "Back",
  4998. image: {
  4999. source: "./media/characters/abysgar/back.svg",
  5000. extra: 1384/1327,
  5001. bottom: 0/1384
  5002. }
  5003. },
  5004. head: {
  5005. height: math.unit(1.25, "feet"),
  5006. name: "Head",
  5007. image: {
  5008. source: "./media/characters/abysgar/head.svg",
  5009. extra: 669/569,
  5010. bottom: 0/669
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Small",
  5017. height: math.unit(4.5, "meters")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(1250, "meters"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Megamacro",
  5026. height: math.unit(125, "km")
  5027. },
  5028. {
  5029. name: "Gigamacro",
  5030. height: math.unit(26000, "km")
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(180, "lb"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/yakuz/front.svg"
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Small",
  5049. height: math.unit(5, "meters")
  5050. },
  5051. {
  5052. name: "Macro",
  5053. height: math.unit(1500, "meters"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Megamacro",
  5058. height: math.unit(200, "km")
  5059. },
  5060. {
  5061. name: "Gigamacro",
  5062. height: math.unit(100000, "km")
  5063. }
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(175, "lb"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/mirova/front.svg",
  5075. extra: 3334 / 3071,
  5076. bottom: 42 / 3375.6
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Small",
  5083. height: math.unit(5, "meters")
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(900, "meters"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Megamacro",
  5092. height: math.unit(135, "km")
  5093. },
  5094. {
  5095. name: "Gigamacro",
  5096. height: math.unit(20000, "km")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5102. {
  5103. side: {
  5104. height: math.unit(28.35, "feet"),
  5105. weight: math.unit(99.75, "tons"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/asana-mech/side.svg",
  5109. extra: 923 / 699,
  5110. bottom: 50 / 975
  5111. }
  5112. },
  5113. chaingun: {
  5114. height: math.unit(7, "feet"),
  5115. weight: math.unit(2400, "lb"),
  5116. name: "Chaingun",
  5117. image: {
  5118. source: "./media/characters/asana-mech/chaingun.svg"
  5119. }
  5120. },
  5121. laser: {
  5122. height: math.unit(7.12, "feet"),
  5123. weight: math.unit(2000, "lb"),
  5124. name: "Laser",
  5125. image: {
  5126. source: "./media/characters/asana-mech/laser.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(28.35, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(2500, "feet")
  5139. },
  5140. {
  5141. name: "Megamacro",
  5142. height: math.unit(25, "miles")
  5143. },
  5144. {
  5145. name: "Examacro",
  5146. height: math.unit(6e8, "lightyears")
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(5, "meters"),
  5155. weight: math.unit(1000, "kg"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/asche/front.svg",
  5159. extra: 1258 / 1190,
  5160. bottom: 47 / 1305
  5161. }
  5162. },
  5163. frontUnderwear: {
  5164. height: math.unit(5, "meters"),
  5165. weight: math.unit(1000, "kg"),
  5166. name: "Front (Underwear)",
  5167. image: {
  5168. source: "./media/characters/asche/front-underwear.svg",
  5169. extra: 1258 / 1190,
  5170. bottom: 47 / 1305
  5171. }
  5172. },
  5173. frontDressed: {
  5174. height: math.unit(5, "meters"),
  5175. weight: math.unit(1000, "kg"),
  5176. name: "Front (Dressed)",
  5177. image: {
  5178. source: "./media/characters/asche/front-dressed.svg",
  5179. extra: 1258 / 1190,
  5180. bottom: 47 / 1305
  5181. }
  5182. },
  5183. frontArmor: {
  5184. height: math.unit(5, "meters"),
  5185. weight: math.unit(1000, "kg"),
  5186. name: "Front (Armored)",
  5187. image: {
  5188. source: "./media/characters/asche/front-armored.svg",
  5189. extra: 1374 / 1308,
  5190. bottom: 23 / 1397
  5191. }
  5192. },
  5193. mp724: {
  5194. height: math.unit(0.96, "meters"),
  5195. weight: math.unit(38, "kg"),
  5196. name: "H&K MP724",
  5197. image: {
  5198. source: "./media/characters/asche/h&k-mp724.svg"
  5199. }
  5200. },
  5201. side: {
  5202. height: math.unit(5, "meters"),
  5203. weight: math.unit(1000, "kg"),
  5204. name: "Side",
  5205. image: {
  5206. source: "./media/characters/asche/side.svg",
  5207. extra: 1717 / 1609,
  5208. bottom: 0.005
  5209. }
  5210. },
  5211. back: {
  5212. height: math.unit(5, "meters"),
  5213. weight: math.unit(1000, "kg"),
  5214. name: "Back",
  5215. image: {
  5216. source: "./media/characters/asche/back.svg",
  5217. extra: 1570 / 1501
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "DEFCON 5",
  5224. height: math.unit(5, "meters")
  5225. },
  5226. {
  5227. name: "DEFCON 4",
  5228. height: math.unit(500, "meters"),
  5229. default: true
  5230. },
  5231. {
  5232. name: "DEFCON 3",
  5233. height: math.unit(5, "km")
  5234. },
  5235. {
  5236. name: "DEFCON 2",
  5237. height: math.unit(500, "km")
  5238. },
  5239. {
  5240. name: "DEFCON 1",
  5241. height: math.unit(500000, "km")
  5242. },
  5243. {
  5244. name: "DEFCON 0",
  5245. height: math.unit(3, "gigaparsecs")
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5251. {
  5252. front: {
  5253. height: math.unit(2, "meters"),
  5254. weight: math.unit(76, "kg"),
  5255. name: "Front",
  5256. image: {
  5257. source: "./media/characters/gale/front.svg"
  5258. }
  5259. },
  5260. frontAlt1: {
  5261. height: math.unit(2, "meters"),
  5262. weight: math.unit(76, "kg"),
  5263. name: "Front (Alt 1)",
  5264. image: {
  5265. source: "./media/characters/gale/front-alt-1.svg"
  5266. }
  5267. },
  5268. frontAlt2: {
  5269. height: math.unit(2, "meters"),
  5270. weight: math.unit(76, "kg"),
  5271. name: "Front (Alt 2)",
  5272. image: {
  5273. source: "./media/characters/gale/front-alt-2.svg"
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(7, "feet")
  5281. },
  5282. {
  5283. name: "Macro",
  5284. height: math.unit(150, "feet"),
  5285. default: true
  5286. },
  5287. {
  5288. name: "Macro+",
  5289. height: math.unit(300, "feet")
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5295. {
  5296. front: {
  5297. height: math.unit(5 + 10/12, "feet"),
  5298. weight: math.unit(67, "kg"),
  5299. name: "Front",
  5300. image: {
  5301. source: "./media/characters/draylen/front.svg",
  5302. extra: 832/777,
  5303. bottom: 85/917
  5304. }
  5305. }
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(5 + 10/12, "feet")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(150, "feet"),
  5315. default: true
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(7 + 9 / 12, "feet"),
  5324. weight: math.unit(379, "lbs"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/chez/front.svg"
  5328. }
  5329. },
  5330. side: {
  5331. height: math.unit(7 + 9 / 12, "feet"),
  5332. weight: math.unit(379, "lbs"),
  5333. name: "Side",
  5334. image: {
  5335. source: "./media/characters/chez/side.svg"
  5336. }
  5337. }
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(7 + 9 / 12, "feet"),
  5343. default: true
  5344. },
  5345. {
  5346. name: "God King",
  5347. height: math.unit(9750000, "meters")
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(275, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/kaylum/front.svg",
  5360. bottom: 0.01,
  5361. extra: 1166 / 1031
  5362. }
  5363. },
  5364. frontWingless: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(275, "lbs"),
  5367. name: "Front (Wingless)",
  5368. image: {
  5369. source: "./media/characters/kaylum/front-wingless.svg",
  5370. bottom: 0.01,
  5371. extra: 1117 / 1031
  5372. }
  5373. }
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(3.05, "meters")
  5379. },
  5380. {
  5381. name: "Master",
  5382. height: math.unit(5.5, "meters")
  5383. },
  5384. {
  5385. name: "Rampage",
  5386. height: math.unit(19, "meters")
  5387. },
  5388. {
  5389. name: "Macro Lite",
  5390. height: math.unit(37, "meters")
  5391. },
  5392. {
  5393. name: "Hyper Predator",
  5394. height: math.unit(61, "meters")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(138, "meters"),
  5399. default: true
  5400. }
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5405. {
  5406. front: {
  5407. height: math.unit(5 + 5 / 12, "feet"),
  5408. weight: math.unit(120, "lbs"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/geta/front.svg",
  5412. extra: 1003/933,
  5413. bottom: 21/1024
  5414. }
  5415. },
  5416. paw: {
  5417. height: math.unit(0.35, "feet"),
  5418. name: "Paw",
  5419. image: {
  5420. source: "./media/characters/geta/paw.svg"
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Micro",
  5427. height: math.unit(3, "inches"),
  5428. default: true
  5429. },
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(5 + 5 / 12, "feet")
  5433. }
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(300, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/tyrnn/front.svg"
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Main Height",
  5451. height: math.unit(355, "feet"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "Fave. Height",
  5456. height: math.unit(2400, "feet")
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(300, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/appledectomy/front.svg"
  5469. }
  5470. }
  5471. },
  5472. [
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(2500, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(50, "miles"),
  5480. default: true
  5481. },
  5482. {
  5483. name: "Gigamacro",
  5484. height: math.unit(5000, "miles")
  5485. },
  5486. {
  5487. name: "Teramacro",
  5488. height: math.unit(250000, "miles")
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(200, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/vulpes/front.svg",
  5501. extra: 573 / 543,
  5502. bottom: 0.033
  5503. }
  5504. },
  5505. side: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(200, "lbs"),
  5508. name: "Side",
  5509. image: {
  5510. source: "./media/characters/vulpes/side.svg",
  5511. extra: 577 / 549,
  5512. bottom: 11 / 588
  5513. }
  5514. },
  5515. back: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(200, "lbs"),
  5518. name: "Back",
  5519. image: {
  5520. source: "./media/characters/vulpes/back.svg",
  5521. extra: 573 / 549,
  5522. bottom: 20 / 593
  5523. }
  5524. },
  5525. feet: {
  5526. height: math.unit(1.276, "feet"),
  5527. name: "Feet",
  5528. image: {
  5529. source: "./media/characters/vulpes/feet.svg"
  5530. }
  5531. },
  5532. maw: {
  5533. height: math.unit(1.18, "feet"),
  5534. name: "Maw",
  5535. image: {
  5536. source: "./media/characters/vulpes/maw.svg"
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Micro",
  5543. height: math.unit(2, "inches")
  5544. },
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(6.3, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(850, "feet")
  5552. },
  5553. {
  5554. name: "Megamacro",
  5555. height: math.unit(7500, "feet"),
  5556. default: true
  5557. },
  5558. {
  5559. name: "Gigamacro",
  5560. height: math.unit(570000, "miles")
  5561. }
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(210, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/rain-fallen/front.svg"
  5573. }
  5574. },
  5575. side: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(210, "lbs"),
  5578. name: "Side",
  5579. image: {
  5580. source: "./media/characters/rain-fallen/side.svg"
  5581. }
  5582. },
  5583. back: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(210, "lbs"),
  5586. name: "Back",
  5587. image: {
  5588. source: "./media/characters/rain-fallen/back.svg"
  5589. }
  5590. },
  5591. feral: {
  5592. height: math.unit(9, "feet"),
  5593. weight: math.unit(700, "lbs"),
  5594. name: "Feral",
  5595. image: {
  5596. source: "./media/characters/rain-fallen/feral.svg"
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Meddling with Mortals",
  5603. height: math.unit(8 + 8/12, "feet")
  5604. },
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(5, "meter")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(150, "meter"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Megamacro",
  5616. height: math.unit(278e6, "meter")
  5617. },
  5618. {
  5619. name: "Gigamacro",
  5620. height: math.unit(2e9, "meter")
  5621. },
  5622. {
  5623. name: "Teramacro",
  5624. height: math.unit(8e12, "meter")
  5625. },
  5626. {
  5627. name: "Devourer",
  5628. height: math.unit(14, "zettameters")
  5629. },
  5630. {
  5631. name: "Scarlet King",
  5632. height: math.unit(18, "yottameters")
  5633. },
  5634. {
  5635. name: "Void",
  5636. height: math.unit(1e88, "yottameters")
  5637. }
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5642. {
  5643. standing: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Standing",
  5647. image: {
  5648. source: "./media/characters/zaakira/standing.svg",
  5649. extra: 1599/1504,
  5650. bottom: 39/1638
  5651. }
  5652. },
  5653. laying: {
  5654. height: math.unit(3.3, "feet"),
  5655. weight: math.unit(180, "lbs"),
  5656. name: "Laying",
  5657. image: {
  5658. source: "./media/characters/zaakira/laying.svg"
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(12, "feet")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(279, "feet"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5676. {
  5677. femSfw: {
  5678. height: math.unit(8, "feet"),
  5679. weight: math.unit(350, "lb"),
  5680. name: "Fem",
  5681. image: {
  5682. source: "./media/characters/sigvald/fem-sfw.svg",
  5683. extra: 182 / 164,
  5684. bottom: 8.7 / 190.5
  5685. }
  5686. },
  5687. femNsfw: {
  5688. height: math.unit(8, "feet"),
  5689. weight: math.unit(350, "lb"),
  5690. name: "Fem (NSFW)",
  5691. image: {
  5692. source: "./media/characters/sigvald/fem-nsfw.svg",
  5693. extra: 182 / 164,
  5694. bottom: 8.7 / 190.5
  5695. }
  5696. },
  5697. maleNsfw: {
  5698. height: math.unit(8, "feet"),
  5699. weight: math.unit(350, "lb"),
  5700. name: "Male (NSFW)",
  5701. image: {
  5702. source: "./media/characters/sigvald/male-nsfw.svg",
  5703. extra: 182 / 164,
  5704. bottom: 8.7 / 190.5
  5705. }
  5706. },
  5707. hermNsfw: {
  5708. height: math.unit(8, "feet"),
  5709. weight: math.unit(350, "lb"),
  5710. name: "Herm (NSFW)",
  5711. image: {
  5712. source: "./media/characters/sigvald/herm-nsfw.svg",
  5713. extra: 182 / 164,
  5714. bottom: 8.7 / 190.5
  5715. }
  5716. },
  5717. dick: {
  5718. height: math.unit(2.36, "feet"),
  5719. name: "Dick",
  5720. image: {
  5721. source: "./media/characters/sigvald/dick.svg"
  5722. }
  5723. },
  5724. eye: {
  5725. height: math.unit(0.31, "feet"),
  5726. name: "Eye",
  5727. image: {
  5728. source: "./media/characters/sigvald/eye.svg"
  5729. }
  5730. },
  5731. mouth: {
  5732. height: math.unit(0.92, "feet"),
  5733. name: "Mouth",
  5734. image: {
  5735. source: "./media/characters/sigvald/mouth.svg"
  5736. }
  5737. },
  5738. paws: {
  5739. height: math.unit(2.2, "feet"),
  5740. name: "Paws",
  5741. image: {
  5742. source: "./media/characters/sigvald/paws.svg"
  5743. }
  5744. }
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(8, "feet")
  5750. },
  5751. {
  5752. name: "Large",
  5753. height: math.unit(12, "feet")
  5754. },
  5755. {
  5756. name: "Larger",
  5757. height: math.unit(20, "feet")
  5758. },
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(150, "feet")
  5762. },
  5763. {
  5764. name: "Macro+",
  5765. height: math.unit(200, "feet"),
  5766. default: true
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5772. {
  5773. side: {
  5774. height: math.unit(12, "feet"),
  5775. weight: math.unit(2000, "kg"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/scott/side.svg",
  5779. extra: 754 / 724,
  5780. bottom: 0.069
  5781. }
  5782. },
  5783. upright: {
  5784. height: math.unit(12, "feet"),
  5785. weight: math.unit(2000, "kg"),
  5786. name: "Upright",
  5787. image: {
  5788. source: "./media/characters/scott/upright.svg",
  5789. extra: 3881 / 3722,
  5790. bottom: 0.05
  5791. }
  5792. },
  5793. },
  5794. [
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(12, "feet"),
  5798. default: true
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5804. {
  5805. side: {
  5806. height: math.unit(8, "meters"),
  5807. weight: math.unit(84755, "lbs"),
  5808. name: "Side",
  5809. image: {
  5810. source: "./media/characters/tobias/side.svg",
  5811. extra: 1474 / 1096,
  5812. bottom: 38.9 / 1513.1235
  5813. }
  5814. },
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(8, "meters"),
  5820. default: true
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5826. {
  5827. front: {
  5828. height: math.unit(5.5, "feet"),
  5829. weight: math.unit(400, "lbs"),
  5830. name: "Front",
  5831. image: {
  5832. source: "./media/characters/kieran/front.svg",
  5833. extra: 2694 / 2364,
  5834. bottom: 217 / 2908
  5835. }
  5836. },
  5837. side: {
  5838. height: math.unit(5.5, "feet"),
  5839. weight: math.unit(400, "lbs"),
  5840. name: "Side",
  5841. image: {
  5842. source: "./media/characters/kieran/side.svg",
  5843. extra: 875 / 777,
  5844. bottom: 84.6 / 959
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(5.5, "feet"),
  5852. default: true
  5853. },
  5854. ]
  5855. ))
  5856. characterMakers.push(() => makeCharacter(
  5857. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5858. {
  5859. side: {
  5860. height: math.unit(2, "meters"),
  5861. weight: math.unit(70, "kg"),
  5862. name: "Side",
  5863. image: {
  5864. source: "./media/characters/sanya/side.svg",
  5865. bottom: 0.02,
  5866. extra: 1.02
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Small",
  5873. height: math.unit(2, "meters")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(3, "meters")
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(16, "meters"),
  5882. default: true
  5883. },
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5888. {
  5889. front: {
  5890. height: math.unit(2, "meters"),
  5891. weight: math.unit(120, "kg"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/miranda/front.svg",
  5895. extra: 195 / 185,
  5896. bottom: 10.9 / 206.5
  5897. }
  5898. },
  5899. back: {
  5900. height: math.unit(2, "meters"),
  5901. weight: math.unit(120, "kg"),
  5902. name: "Back",
  5903. image: {
  5904. source: "./media/characters/miranda/back.svg",
  5905. extra: 201 / 193,
  5906. bottom: 2.3 / 203.7
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Normal",
  5913. height: math.unit(10, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "James", species: ["deer"], tags: ["anthro"] },
  5920. {
  5921. side: {
  5922. height: math.unit(2, "meters"),
  5923. weight: math.unit(100, "kg"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/james/front.svg",
  5927. extra: 10 / 8.5
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(8.5, "feet"),
  5935. default: true
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5941. {
  5942. side: {
  5943. height: math.unit(9.5, "feet"),
  5944. weight: math.unit(2500, "lbs"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/heather/side.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(9.5, "feet"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5961. {
  5962. side: {
  5963. height: math.unit(6.5, "feet"),
  5964. weight: math.unit(400, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/lukas/side.svg",
  5968. extra: 7.25 / 6.5
  5969. }
  5970. },
  5971. },
  5972. [
  5973. {
  5974. name: "Normal",
  5975. height: math.unit(6.5, "feet"),
  5976. default: true
  5977. }
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5982. {
  5983. side: {
  5984. height: math.unit(5, "feet"),
  5985. weight: math.unit(3000, "lbs"),
  5986. name: "Side",
  5987. image: {
  5988. source: "./media/characters/louise/side.svg"
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(5, "feet"),
  5996. default: true
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6002. {
  6003. side: {
  6004. height: math.unit(6, "feet"),
  6005. weight: math.unit(150, "lbs"),
  6006. name: "Side",
  6007. image: {
  6008. source: "./media/characters/ramona/side.svg",
  6009. extra: 871/854,
  6010. bottom: 41/912
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(6 + 4/12, "feet")
  6018. },
  6019. {
  6020. name: "Minimacro",
  6021. height: math.unit(5.3, "meters"),
  6022. default: true
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(20, "stories")
  6027. },
  6028. {
  6029. name: "Macro+",
  6030. height: math.unit(50, "stories")
  6031. },
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6036. {
  6037. standing: {
  6038. height: math.unit(5.75, "feet"),
  6039. weight: math.unit(160, "lbs"),
  6040. name: "Standing",
  6041. image: {
  6042. source: "./media/characters/deerpuff/standing.svg",
  6043. extra: 682 / 624
  6044. }
  6045. },
  6046. sitting: {
  6047. height: math.unit(5.75 / 1.79, "feet"),
  6048. weight: math.unit(160, "lbs"),
  6049. name: "Sitting",
  6050. image: {
  6051. source: "./media/characters/deerpuff/sitting.svg",
  6052. bottom: 44 / 400,
  6053. extra: 1
  6054. }
  6055. },
  6056. taurLaying: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(400, "lbs"),
  6059. name: "Taur (Laying)",
  6060. image: {
  6061. source: "./media/characters/deerpuff/taur-laying.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Puffball",
  6068. height: math.unit(6, "inches")
  6069. },
  6070. {
  6071. name: "Normalpuff",
  6072. height: math.unit(5.75, "feet")
  6073. },
  6074. {
  6075. name: "Macropuff",
  6076. height: math.unit(1500, "feet"),
  6077. default: true
  6078. },
  6079. {
  6080. name: "Megapuff",
  6081. height: math.unit(500, "miles")
  6082. },
  6083. {
  6084. name: "Gigapuff",
  6085. height: math.unit(250000, "miles")
  6086. },
  6087. {
  6088. name: "Omegapuff",
  6089. height: math.unit(1000, "lightyears")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6095. {
  6096. stomping: {
  6097. height: math.unit(6, "feet"),
  6098. weight: math.unit(170, "lbs"),
  6099. name: "Stomping",
  6100. image: {
  6101. source: "./media/characters/vivian/stomping.svg"
  6102. }
  6103. },
  6104. sitting: {
  6105. height: math.unit(6 / 1.75, "feet"),
  6106. weight: math.unit(170, "lbs"),
  6107. name: "Sitting",
  6108. image: {
  6109. source: "./media/characters/vivian/sitting.svg",
  6110. bottom: 1 / 6.4,
  6111. extra: 1,
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(7, "feet"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(10, "stories")
  6124. },
  6125. {
  6126. name: "Macro+",
  6127. height: math.unit(30, "stories")
  6128. },
  6129. {
  6130. name: "Megamacro",
  6131. height: math.unit(10, "miles")
  6132. },
  6133. {
  6134. name: "Megamacro+",
  6135. height: math.unit(2750000, "meters")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(160, "lbs"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/prince/front.svg",
  6148. extra: 1938/1682,
  6149. bottom: 45/1983
  6150. }
  6151. },
  6152. back: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(160, "lbs"),
  6155. name: "Back",
  6156. image: {
  6157. source: "./media/characters/prince/back.svg",
  6158. extra: 1955/1726,
  6159. bottom: 6/1961
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(7.75, "feet"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Not cute",
  6171. height: math.unit(17, "feet")
  6172. },
  6173. {
  6174. name: "I said NOT",
  6175. height: math.unit(91, "feet")
  6176. },
  6177. {
  6178. name: "Please stop",
  6179. height: math.unit(560, "feet")
  6180. },
  6181. {
  6182. name: "What have you done",
  6183. height: math.unit(2200, "feet")
  6184. },
  6185. {
  6186. name: "Deer God",
  6187. height: math.unit(3.6, "miles")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6193. {
  6194. standing: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(300, "lbs"),
  6197. name: "Standing",
  6198. image: {
  6199. source: "./media/characters/psymon/standing.svg",
  6200. extra: 1888 / 1810,
  6201. bottom: 0.05
  6202. }
  6203. },
  6204. slithering: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(300, "lbs"),
  6207. name: "Slithering",
  6208. image: {
  6209. source: "./media/characters/psymon/slithering.svg",
  6210. extra: 1330 / 1224
  6211. }
  6212. },
  6213. slitheringAlt: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(300, "lbs"),
  6216. name: "Slithering (Alt)",
  6217. image: {
  6218. source: "./media/characters/psymon/slithering-alt.svg",
  6219. extra: 1330 / 1224
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(11.25, "feet"),
  6227. default: true
  6228. },
  6229. {
  6230. name: "Large",
  6231. height: math.unit(27, "feet")
  6232. },
  6233. {
  6234. name: "Giant",
  6235. height: math.unit(87, "feet")
  6236. },
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(365, "feet")
  6240. },
  6241. {
  6242. name: "Megamacro",
  6243. height: math.unit(3, "miles")
  6244. },
  6245. {
  6246. name: "World Serpent",
  6247. height: math.unit(8000, "miles")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(180, "lbs"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/daimos/front.svg",
  6260. extra: 4160 / 3897,
  6261. bottom: 0.021
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(8, "feet"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Big Dog",
  6273. height: math.unit(22, "feet")
  6274. },
  6275. {
  6276. name: "Macro",
  6277. height: math.unit(127, "feet")
  6278. },
  6279. {
  6280. name: "Megamacro",
  6281. height: math.unit(3600, "feet")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6287. {
  6288. side: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(180, "lbs"),
  6291. name: "Side",
  6292. image: {
  6293. source: "./media/characters/blake/side.svg",
  6294. extra: 1212 / 1120,
  6295. bottom: 0.05
  6296. }
  6297. },
  6298. crouched: {
  6299. height: math.unit(6 * 0.57, "feet"),
  6300. weight: math.unit(180, "lbs"),
  6301. name: "Crouched",
  6302. image: {
  6303. source: "./media/characters/blake/crouched.svg",
  6304. extra: 840 / 587,
  6305. bottom: 0.04
  6306. }
  6307. },
  6308. bent: {
  6309. height: math.unit(6 * 0.75, "feet"),
  6310. weight: math.unit(180, "lbs"),
  6311. name: "Bent",
  6312. image: {
  6313. source: "./media/characters/blake/bent.svg",
  6314. extra: 592 / 544,
  6315. bottom: 0.035
  6316. }
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(8 + 1 / 6, "feet"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Big Backside",
  6327. height: math.unit(37, "feet")
  6328. },
  6329. {
  6330. name: "Subway Shredder",
  6331. height: math.unit(72, "feet")
  6332. },
  6333. {
  6334. name: "City Carver",
  6335. height: math.unit(1675, "feet")
  6336. },
  6337. {
  6338. name: "Tectonic Tweaker",
  6339. height: math.unit(2300, "miles")
  6340. },
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6345. {
  6346. front: {
  6347. height: math.unit(6, "feet"),
  6348. weight: math.unit(180, "lbs"),
  6349. name: "Front",
  6350. image: {
  6351. source: "./media/characters/guisetto/front.svg",
  6352. extra: 856 / 817,
  6353. bottom: 0.06
  6354. }
  6355. },
  6356. airborne: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(180, "lbs"),
  6359. name: "Airborne",
  6360. image: {
  6361. source: "./media/characters/guisetto/airborne.svg",
  6362. extra: 584 / 525
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(10 + 11 / 12, "feet"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Large",
  6374. height: math.unit(35, "feet")
  6375. },
  6376. {
  6377. name: "Macro",
  6378. height: math.unit(475, "feet")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(180, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/luxor/front.svg",
  6391. extra: 2940 / 2152
  6392. }
  6393. },
  6394. back: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(180, "lbs"),
  6397. name: "Back",
  6398. image: {
  6399. source: "./media/characters/luxor/back.svg",
  6400. extra: 1083 / 960
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(5 + 5 / 6, "feet"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Lamp",
  6412. height: math.unit(50, "feet")
  6413. },
  6414. {
  6415. name: "Lämp",
  6416. height: math.unit(300, "feet")
  6417. },
  6418. {
  6419. name: "The sun is a lamp",
  6420. height: math.unit(250000, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(50, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/huoyan/front.svg"
  6433. }
  6434. },
  6435. side: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(180, "lbs"),
  6438. name: "Side",
  6439. image: {
  6440. source: "./media/characters/huoyan/side.svg"
  6441. }
  6442. },
  6443. },
  6444. [
  6445. {
  6446. name: "Chef",
  6447. height: math.unit(9, "feet")
  6448. },
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(65, "feet"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(780, "feet")
  6457. },
  6458. {
  6459. name: "Flaming Mountain",
  6460. height: math.unit(4.8, "miles")
  6461. },
  6462. {
  6463. name: "Celestial",
  6464. height: math.unit(765000, "miles")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(5 + 3 / 4, "feet"),
  6473. weight: math.unit(120, "lbs"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/tails/front.svg"
  6477. }
  6478. }
  6479. },
  6480. [
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(5 + 3 / 4, "feet"),
  6484. default: true
  6485. }
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6490. {
  6491. front: {
  6492. height: math.unit(4, "feet"),
  6493. weight: math.unit(50, "lbs"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/rainy/front.svg"
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(800, "feet"),
  6504. default: true
  6505. }
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(150, "lbs"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/rainier/front.svg"
  6517. }
  6518. }
  6519. },
  6520. [
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(2, "mm"),
  6524. default: true
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(8 + 4/12, "feet"),
  6533. weight: math.unit(450, "kilograms"),
  6534. volume: math.unit(5, "cups"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/andy-renard/front.svg",
  6538. extra: 1839/1726,
  6539. bottom: 134/1973
  6540. }
  6541. },
  6542. back: {
  6543. height: math.unit(8 + 4/12, "feet"),
  6544. weight: math.unit(450, "kilograms"),
  6545. volume: math.unit(5, "cups"),
  6546. name: "Back",
  6547. image: {
  6548. source: "./media/characters/andy-renard/back.svg",
  6549. extra: 1838/1710,
  6550. bottom: 105/1943
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Tall",
  6557. height: math.unit(8 + 4/12, "feet")
  6558. },
  6559. {
  6560. name: "Mini Macro",
  6561. height: math.unit(15, "feet"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Macro",
  6566. height: math.unit(100, "feet")
  6567. },
  6568. {
  6569. name: "Mega Macro",
  6570. height: math.unit(1000, "feet")
  6571. },
  6572. {
  6573. name: "Giga Macro",
  6574. height: math.unit(10, "miles")
  6575. },
  6576. {
  6577. name: "God Macro",
  6578. height: math.unit(1, "multiverse")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(210, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/cimmaron/front-sfw.svg",
  6591. extra: 701 / 676,
  6592. bottom: 0.046
  6593. }
  6594. },
  6595. back: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(210, "lbs"),
  6598. name: "Back",
  6599. image: {
  6600. source: "./media/characters/cimmaron/back-sfw.svg",
  6601. extra: 701 / 676,
  6602. bottom: 0.046
  6603. }
  6604. },
  6605. frontNsfw: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(210, "lbs"),
  6608. name: "Front (NSFW)",
  6609. image: {
  6610. source: "./media/characters/cimmaron/front-nsfw.svg",
  6611. extra: 701 / 676,
  6612. bottom: 0.046
  6613. }
  6614. },
  6615. backNsfw: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(210, "lbs"),
  6618. name: "Back (NSFW)",
  6619. image: {
  6620. source: "./media/characters/cimmaron/back-nsfw.svg",
  6621. extra: 701 / 676,
  6622. bottom: 0.046
  6623. }
  6624. },
  6625. dick: {
  6626. height: math.unit(1.714, "feet"),
  6627. name: "Dick",
  6628. image: {
  6629. source: "./media/characters/cimmaron/dick.svg"
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(6, "feet"),
  6637. default: true
  6638. },
  6639. {
  6640. name: "Macro Mayor",
  6641. height: math.unit(350, "meters")
  6642. },
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6647. {
  6648. front: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(200, "lbs"),
  6651. name: "Front",
  6652. image: {
  6653. source: "./media/characters/akari/front.svg",
  6654. extra: 962 / 901,
  6655. bottom: 0.04
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(5, "inches"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(7, "feet")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(140, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/cynosura/front.svg",
  6680. extra: 437/410,
  6681. bottom: 9/446
  6682. }
  6683. },
  6684. back: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(140, "lbs"),
  6687. name: "Back",
  6688. image: {
  6689. source: "./media/characters/cynosura/back.svg",
  6690. extra: 1304/1160,
  6691. bottom: 71/1375
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Micro",
  6698. height: math.unit(4, "inches")
  6699. },
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(5.75, "feet"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Tall",
  6707. height: math.unit(10, "feet")
  6708. },
  6709. {
  6710. name: "Big",
  6711. height: math.unit(20, "feet")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(50, "feet")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(13 + 2/12, "feet"),
  6724. weight: math.unit(800, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/gin/front.svg",
  6728. extra: 1312/1191,
  6729. bottom: 45/1357
  6730. }
  6731. },
  6732. mouth: {
  6733. height: math.unit(2.39 * 1.8, "feet"),
  6734. name: "Mouth",
  6735. image: {
  6736. source: "./media/characters/gin/mouth.svg"
  6737. }
  6738. },
  6739. hand: {
  6740. height: math.unit(1.57 * 2.19, "feet"),
  6741. name: "Hand",
  6742. image: {
  6743. source: "./media/characters/gin/hand.svg"
  6744. }
  6745. },
  6746. foot: {
  6747. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6748. name: "Foot",
  6749. image: {
  6750. source: "./media/characters/gin/foot.svg"
  6751. }
  6752. },
  6753. sole: {
  6754. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6755. name: "Sole",
  6756. image: {
  6757. source: "./media/characters/gin/sole.svg"
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Very Small",
  6764. height: math.unit(13 + 2 / 12, "feet")
  6765. },
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(600, "miles")
  6769. },
  6770. {
  6771. name: "Regular",
  6772. height: math.unit(20, "earths"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Macro",
  6777. height: math.unit(2.2, "solarradii")
  6778. },
  6779. {
  6780. name: "Teramacro",
  6781. height: math.unit(1.2, "galaxies")
  6782. },
  6783. {
  6784. name: "Omegamacro",
  6785. height: math.unit(200, "universes")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(6 + 1 / 6, "feet"),
  6794. weight: math.unit(178, "lbs"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/guy/front.svg"
  6798. }
  6799. }
  6800. },
  6801. [
  6802. {
  6803. name: "Normal",
  6804. height: math.unit(6 + 1 / 6, "feet"),
  6805. default: true
  6806. },
  6807. {
  6808. name: "Large",
  6809. height: math.unit(25 + 7 / 12, "feet")
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(60 + 9 / 12, "feet")
  6814. },
  6815. {
  6816. name: "Macro+",
  6817. height: math.unit(246, "feet")
  6818. },
  6819. {
  6820. name: "Macro++",
  6821. height: math.unit(878, "feet")
  6822. }
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6827. {
  6828. front: {
  6829. height: math.unit(9, "feet"),
  6830. weight: math.unit(800, "lbs"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/tiberius/front.svg",
  6834. extra: 2295 / 2071
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(9, "feet"),
  6839. weight: math.unit(800, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/tiberius/back.svg",
  6843. extra: 2373 / 2160
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(9, "feet"),
  6851. default: true
  6852. }
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(600, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/surgo/front.svg",
  6864. extra: 3591 / 2227
  6865. }
  6866. },
  6867. back: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(600, "lbs"),
  6870. name: "Back",
  6871. image: {
  6872. source: "./media/characters/surgo/back.svg",
  6873. extra: 3557 / 2228
  6874. }
  6875. },
  6876. laying: {
  6877. height: math.unit(6 * 0.85, "feet"),
  6878. weight: math.unit(600, "lbs"),
  6879. name: "Laying",
  6880. image: {
  6881. source: "./media/characters/surgo/laying.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(6, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6895. {
  6896. side: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(150, "lbs"),
  6899. name: "Side",
  6900. image: {
  6901. source: "./media/characters/cibus/side.svg",
  6902. extra: 800 / 400
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(6, "feet"),
  6910. default: true
  6911. }
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(240, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/nibbles/front.svg"
  6923. }
  6924. },
  6925. side: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(240, "lbs"),
  6928. name: "Side",
  6929. image: {
  6930. source: "./media/characters/nibbles/side.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(9, "feet"),
  6938. default: true
  6939. }
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6944. {
  6945. side: {
  6946. height: math.unit(5 + 1 / 6, "feet"),
  6947. weight: math.unit(130, "lbs"),
  6948. name: "Side",
  6949. image: {
  6950. source: "./media/characters/rikky/side.svg",
  6951. extra: 851 / 801
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(5 + 1 / 6, "feet")
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(152, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Megamacro",
  6967. height: math.unit(7, "miles")
  6968. }
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6973. {
  6974. side: {
  6975. height: math.unit(370, "cm"),
  6976. weight: math.unit(350, "lbs"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/malfressa/side.svg"
  6980. }
  6981. },
  6982. walking: {
  6983. height: math.unit(370, "cm"),
  6984. weight: math.unit(350, "lbs"),
  6985. name: "Walking",
  6986. image: {
  6987. source: "./media/characters/malfressa/walking.svg"
  6988. }
  6989. },
  6990. feral: {
  6991. height: math.unit(2500, "cm"),
  6992. weight: math.unit(100000, "lbs"),
  6993. name: "Feral",
  6994. image: {
  6995. source: "./media/characters/malfressa/feral.svg",
  6996. extra: 2108 / 837,
  6997. bottom: 0.02
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(370, "cm")
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(300, "meters"),
  7009. default: true
  7010. }
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7015. {
  7016. front: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(60, "kg"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/jaro/front.svg",
  7022. extra: 845/817,
  7023. bottom: 45/890
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(60, "kg"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/jaro/back.svg",
  7032. extra: 847/817,
  7033. bottom: 34/881
  7034. }
  7035. },
  7036. },
  7037. [
  7038. {
  7039. name: "Micro",
  7040. height: math.unit(7, "inches")
  7041. },
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(5.5, "feet"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Minimacro",
  7049. height: math.unit(20, "feet")
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(200, "meters")
  7054. }
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(195, "lb"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/rogue/front.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(90, "feet"),
  7073. default: true
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7079. {
  7080. standing: {
  7081. height: math.unit(5 + 8 / 12, "feet"),
  7082. weight: math.unit(140, "lb"),
  7083. name: "Standing",
  7084. image: {
  7085. source: "./media/characters/piper/standing.svg",
  7086. extra: 1440/1284,
  7087. bottom: 66/1506
  7088. }
  7089. },
  7090. running: {
  7091. height: math.unit(5 + 8 / 12, "feet"),
  7092. weight: math.unit(140, "lb"),
  7093. name: "Running",
  7094. image: {
  7095. source: "./media/characters/piper/running.svg",
  7096. extra: 3948/3655,
  7097. bottom: 0/3948
  7098. }
  7099. },
  7100. sole: {
  7101. height: math.unit(0.81, "feet"),
  7102. weight: math.unit(2, "kg"),
  7103. name: "Sole",
  7104. image: {
  7105. source: "./media/characters/piper/sole.svg"
  7106. }
  7107. },
  7108. nipple: {
  7109. height: math.unit(0.25, "feet"),
  7110. weight: math.unit(1.5, "lb"),
  7111. name: "Nipple",
  7112. image: {
  7113. source: "./media/characters/piper/nipple.svg"
  7114. }
  7115. },
  7116. head: {
  7117. height: math.unit(1.1, "feet"),
  7118. name: "Head",
  7119. image: {
  7120. source: "./media/characters/piper/head.svg"
  7121. }
  7122. },
  7123. },
  7124. [
  7125. {
  7126. name: "Micro",
  7127. height: math.unit(2, "inches")
  7128. },
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(5 + 8 / 12, "feet")
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(250, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Megamacro",
  7140. height: math.unit(7, "miles")
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7146. {
  7147. front: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(220, "lb"),
  7150. name: "Front",
  7151. image: {
  7152. source: "./media/characters/gemini/front.svg"
  7153. }
  7154. },
  7155. back: {
  7156. height: math.unit(6, "feet"),
  7157. weight: math.unit(220, "lb"),
  7158. name: "Back",
  7159. image: {
  7160. source: "./media/characters/gemini/back.svg"
  7161. }
  7162. },
  7163. kneeling: {
  7164. height: math.unit(6 / 1.5, "feet"),
  7165. weight: math.unit(220, "lb"),
  7166. name: "Kneeling",
  7167. image: {
  7168. source: "./media/characters/gemini/kneeling.svg",
  7169. bottom: 0.02
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(300, "meters"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Megamacro",
  7181. height: math.unit(6900, "meters")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7187. {
  7188. anthro: {
  7189. height: math.unit(2.35, "meters"),
  7190. weight: math.unit(73, "kg"),
  7191. name: "Anthro",
  7192. image: {
  7193. source: "./media/characters/alicia/anthro.svg",
  7194. extra: 2571 / 2385,
  7195. bottom: 75 / 2648
  7196. }
  7197. },
  7198. paw: {
  7199. height: math.unit(1.32, "feet"),
  7200. name: "Paw",
  7201. image: {
  7202. source: "./media/characters/alicia/paw.svg"
  7203. }
  7204. },
  7205. feral: {
  7206. height: math.unit(1.69, "meters"),
  7207. weight: math.unit(73, "kg"),
  7208. name: "Feral",
  7209. image: {
  7210. source: "./media/characters/alicia/feral.svg",
  7211. extra: 2123 / 1715,
  7212. bottom: 222 / 2349
  7213. }
  7214. },
  7215. },
  7216. [
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(2.35, "meters")
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(60, "meters"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(10000, "kilometers")
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(7, "feet"),
  7237. weight: math.unit(250, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/archy/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(1, "inch")
  7248. },
  7249. {
  7250. name: "Shorty",
  7251. height: math.unit(5, "feet")
  7252. },
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(7, "feet")
  7256. },
  7257. {
  7258. name: "Macro",
  7259. height: math.unit(600, "meters"),
  7260. default: true
  7261. },
  7262. {
  7263. name: "Megamacro",
  7264. height: math.unit(1, "mile")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(1.65, "meters"),
  7273. weight: math.unit(74, "kg"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/berri/front.svg",
  7277. extra: 857 / 837,
  7278. bottom: 18 / 877
  7279. }
  7280. },
  7281. bum: {
  7282. height: math.unit(1.46, "feet"),
  7283. name: "Bum",
  7284. image: {
  7285. source: "./media/characters/berri/bum.svg"
  7286. }
  7287. },
  7288. mouth: {
  7289. height: math.unit(0.44, "feet"),
  7290. name: "Mouth",
  7291. image: {
  7292. source: "./media/characters/berri/mouth.svg"
  7293. }
  7294. },
  7295. paw: {
  7296. height: math.unit(0.826, "feet"),
  7297. name: "Paw",
  7298. image: {
  7299. source: "./media/characters/berri/paw.svg"
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(1.65, "meters")
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(60, "m"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Megamacro",
  7315. height: math.unit(9.213, "km")
  7316. },
  7317. {
  7318. name: "Planet Eater",
  7319. height: math.unit(489, "megameters")
  7320. },
  7321. {
  7322. name: "Teramacro",
  7323. height: math.unit(2471635000000, "meters")
  7324. },
  7325. {
  7326. name: "Examacro",
  7327. height: math.unit(8.0624e+26, "meters")
  7328. }
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(1.72, "meters"),
  7336. weight: math.unit(68, "kg"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/lexi/front.svg"
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Very Smol",
  7346. height: math.unit(10, "mm")
  7347. },
  7348. {
  7349. name: "Micro",
  7350. height: math.unit(6.8, "cm"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(1.72, "m")
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(1.69, "meters"),
  7364. weight: math.unit(68, "kg"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/martin/front.svg",
  7368. extra: 596 / 581
  7369. }
  7370. }
  7371. },
  7372. [
  7373. {
  7374. name: "Micro",
  7375. height: math.unit(6.85, "cm"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(1.69, "m")
  7381. }
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(1.69, "meters"),
  7389. weight: math.unit(68, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/juno/front.svg"
  7393. }
  7394. }
  7395. },
  7396. [
  7397. {
  7398. name: "Micro",
  7399. height: math.unit(7, "cm")
  7400. },
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(1.89, "m")
  7404. },
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(353, "meters"),
  7408. default: true
  7409. }
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(1.93, "meters"),
  7417. weight: math.unit(83, "kg"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/samantha/front.svg"
  7421. }
  7422. },
  7423. frontClothed: {
  7424. height: math.unit(1.93, "meters"),
  7425. weight: math.unit(83, "kg"),
  7426. name: "Front (Clothed)",
  7427. image: {
  7428. source: "./media/characters/samantha/front-clothed.svg"
  7429. }
  7430. },
  7431. back: {
  7432. height: math.unit(1.93, "meters"),
  7433. weight: math.unit(83, "kg"),
  7434. name: "Back",
  7435. image: {
  7436. source: "./media/characters/samantha/back.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(1.93, "m")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(74, "meters"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro+",
  7452. height: math.unit(223, "meters"),
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(8381, "meters"),
  7457. },
  7458. {
  7459. name: "Megamacro+",
  7460. height: math.unit(12000, "kilometers")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(1.92, "meters"),
  7469. weight: math.unit(80, "kg"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/dr-clay/front.svg"
  7473. }
  7474. },
  7475. frontClothed: {
  7476. height: math.unit(1.92, "meters"),
  7477. weight: math.unit(80, "kg"),
  7478. name: "Front (Clothed)",
  7479. image: {
  7480. source: "./media/characters/dr-clay/front-clothed.svg"
  7481. }
  7482. }
  7483. },
  7484. [
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(1.92, "m")
  7488. },
  7489. {
  7490. name: "Macro",
  7491. height: math.unit(214, "meters"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro+",
  7496. height: math.unit(12.237, "meters"),
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(557, "megameters"),
  7501. },
  7502. {
  7503. name: "Unimaginable",
  7504. height: math.unit(120e9, "lightyears")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(2, "meters"),
  7513. weight: math.unit(80, "kg"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7517. }
  7518. }
  7519. },
  7520. [
  7521. {
  7522. name: "Teramacro",
  7523. height: math.unit(500000, "lightyears"),
  7524. default: true
  7525. },
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7530. {
  7531. crux: {
  7532. height: math.unit(2, "meters"),
  7533. weight: math.unit(150, "kg"),
  7534. name: "Crux",
  7535. image: {
  7536. source: "./media/characters/vemus/crux.svg",
  7537. extra: 1074/936,
  7538. bottom: 23/1097
  7539. }
  7540. },
  7541. skunkTanuki: {
  7542. height: math.unit(2, "meters"),
  7543. weight: math.unit(150, "kg"),
  7544. name: "Skunk-Tanuki",
  7545. image: {
  7546. source: "./media/characters/vemus/skunk-tanuki.svg",
  7547. extra: 926/893,
  7548. bottom: 20/946
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(4, "meters"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Big",
  7560. height: math.unit(8, "meters")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(100, "meters")
  7565. },
  7566. {
  7567. name: "Macro+",
  7568. height: math.unit(1500, "meters")
  7569. },
  7570. {
  7571. name: "Stellar",
  7572. height: math.unit(14e8, "meters")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(2, "meters"),
  7581. weight: math.unit(70, "kg"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/beherit/front.svg",
  7585. extra: 1234/1109,
  7586. bottom: 55/1289
  7587. }
  7588. }
  7589. },
  7590. [
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(6, "feet")
  7594. },
  7595. {
  7596. name: "Lorg",
  7597. height: math.unit(25, "feet"),
  7598. default: true
  7599. },
  7600. {
  7601. name: "Lorger",
  7602. height: math.unit(75, "feet")
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(200, "meters")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(2, "meters"),
  7615. weight: math.unit(150, "kg"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/everett/front.svg",
  7619. extra: 1017/866,
  7620. bottom: 86/1103
  7621. }
  7622. },
  7623. paw: {
  7624. height: math.unit(2 / 3.6, "meters"),
  7625. name: "Paw",
  7626. image: {
  7627. source: "./media/characters/everett/paw.svg"
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(15, "feet"),
  7635. default: true
  7636. },
  7637. {
  7638. name: "Lorg",
  7639. height: math.unit(70, "feet"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Lorger",
  7644. height: math.unit(250, "feet")
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(500, "meters")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(2, "meters"),
  7657. weight: math.unit(86, "kg"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/rose/front.svg",
  7661. extra: 1785/1636,
  7662. bottom: 30/1815
  7663. },
  7664. form: "liom",
  7665. default: true
  7666. },
  7667. frontSporty: {
  7668. height: math.unit(2, "meters"),
  7669. weight: math.unit(86, "kg"),
  7670. name: "Front (Sporty)",
  7671. image: {
  7672. source: "./media/characters/rose/front-sporty.svg",
  7673. extra: 350/335,
  7674. bottom: 10/360
  7675. },
  7676. form: "liom"
  7677. },
  7678. frontAlt: {
  7679. height: math.unit(1.6, "meters"),
  7680. weight: math.unit(86, "kg"),
  7681. name: "Front (Alt)",
  7682. image: {
  7683. source: "./media/characters/rose/front-alt.svg",
  7684. extra: 299/283,
  7685. bottom: 3/302
  7686. },
  7687. form: "liom"
  7688. },
  7689. plush: {
  7690. height: math.unit(2, "meters"),
  7691. weight: math.unit(86/3, "kg"),
  7692. name: "Plush",
  7693. image: {
  7694. source: "./media/characters/rose/plush.svg",
  7695. extra: 361/337,
  7696. bottom: 11/372
  7697. },
  7698. form: "plush",
  7699. default: true
  7700. },
  7701. faeStanding: {
  7702. height: math.unit(10, "cm"),
  7703. weight: math.unit(10, "grams"),
  7704. name: "Standing",
  7705. image: {
  7706. source: "./media/characters/rose/fae-standing.svg",
  7707. extra: 1189/1060,
  7708. bottom: 27/1216
  7709. },
  7710. form: "fae",
  7711. default: true
  7712. },
  7713. faeSitting: {
  7714. height: math.unit(5, "cm"),
  7715. weight: math.unit(10, "grams"),
  7716. name: "Sitting",
  7717. image: {
  7718. source: "./media/characters/rose/fae-sitting.svg",
  7719. extra: 737/577,
  7720. bottom: 356/1093
  7721. },
  7722. form: "fae"
  7723. },
  7724. faePaw: {
  7725. height: math.unit(1.35, "cm"),
  7726. name: "Paw",
  7727. image: {
  7728. source: "./media/characters/rose/fae-paw.svg"
  7729. },
  7730. form: "fae"
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "True Micro",
  7736. height: math.unit(9, "cm"),
  7737. form: "liom"
  7738. },
  7739. {
  7740. name: "Micro",
  7741. height: math.unit(16, "cm"),
  7742. form: "liom"
  7743. },
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(1.85, "meters"),
  7747. default: true,
  7748. form: "liom"
  7749. },
  7750. {
  7751. name: "Mini-Macro",
  7752. height: math.unit(5, "meters"),
  7753. form: "liom"
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(15, "meters"),
  7758. form: "liom"
  7759. },
  7760. {
  7761. name: "True Macro",
  7762. height: math.unit(40, "meters"),
  7763. form: "liom"
  7764. },
  7765. {
  7766. name: "City Scale",
  7767. height: math.unit(1, "km"),
  7768. form: "liom"
  7769. },
  7770. {
  7771. name: "Plushie",
  7772. height: math.unit(9, "cm"),
  7773. form: "plush",
  7774. default: true
  7775. },
  7776. {
  7777. name: "Fae",
  7778. height: math.unit(10, "cm"),
  7779. form: "fae",
  7780. default: true
  7781. },
  7782. ],
  7783. {
  7784. "liom": {
  7785. name: "Liom"
  7786. },
  7787. "plush": {
  7788. name: "Plush"
  7789. },
  7790. "fae": {
  7791. name: "Fae Fox",
  7792. default: true
  7793. }
  7794. }
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(2, "meters"),
  7801. weight: math.unit(350, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/regal/front.svg"
  7805. }
  7806. },
  7807. back: {
  7808. height: math.unit(2, "meters"),
  7809. weight: math.unit(350, "lbs"),
  7810. name: "Back",
  7811. image: {
  7812. source: "./media/characters/regal/back.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(350, "feet"),
  7820. default: true
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(4 + 11 / 12, "feet"),
  7829. weight: math.unit(100, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/opal/front.svg"
  7833. }
  7834. },
  7835. frontAlt: {
  7836. height: math.unit(4 + 11 / 12, "feet"),
  7837. weight: math.unit(100, "lbs"),
  7838. name: "Front (Alt)",
  7839. image: {
  7840. source: "./media/characters/opal/front-alt.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Small",
  7847. height: math.unit(4 + 11 / 12, "feet")
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(20, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(120, "feet")
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(80, "miles")
  7861. },
  7862. {
  7863. name: "True Size",
  7864. height: math.unit(100000, "lightyears")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(6, "feet"),
  7873. weight: math.unit(200, "lbs"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/vector-wuff/front.svg"
  7877. }
  7878. }
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(2.8, "meters")
  7884. },
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(450, "meters"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(15, "kilometers")
  7893. }
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(256, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/dannik/front.svg"
  7905. }
  7906. }
  7907. },
  7908. [
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(69.57, "meters"),
  7912. default: true
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(120, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/azura-saharah/front.svg"
  7925. }
  7926. },
  7927. back: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(120, "lbs"),
  7930. name: "Back",
  7931. image: {
  7932. source: "./media/characters/azura-saharah/back.svg"
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(100, "feet"),
  7940. default: true
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7946. {
  7947. side: {
  7948. height: math.unit(5 + 4 / 12, "feet"),
  7949. weight: math.unit(163, "lbs"),
  7950. name: "Side",
  7951. image: {
  7952. source: "./media/characters/kennedy/side.svg"
  7953. }
  7954. }
  7955. },
  7956. [
  7957. {
  7958. name: "Standard Doggo",
  7959. height: math.unit(5 + 4 / 12, "feet")
  7960. },
  7961. {
  7962. name: "Big Doggo",
  7963. height: math.unit(25 + 3 / 12, "feet"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(5 + 5/12, "feet"),
  7973. weight: math.unit(100, "lbs"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/odios-de-lunar/front.svg",
  7977. extra: 1468/1323,
  7978. bottom: 22/1490
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Micro",
  7985. height: math.unit(3, "inches")
  7986. },
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(5.5, "feet"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Macro",
  7994. height: math.unit(100, "feet")
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8000. {
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(220, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/mandake/back.svg"
  8007. }
  8008. }
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(7, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Macro",
  8018. height: math.unit(78, "feet")
  8019. },
  8020. {
  8021. name: "Macro+",
  8022. height: math.unit(300, "meters")
  8023. },
  8024. {
  8025. name: "Macro++",
  8026. height: math.unit(2400, "feet")
  8027. },
  8028. {
  8029. name: "Megamacro",
  8030. height: math.unit(5167, "meters")
  8031. },
  8032. {
  8033. name: "Gigamacro",
  8034. height: math.unit(41769, "miles")
  8035. },
  8036. ]
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(120, "lbs"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/yozey/front.svg"
  8047. }
  8048. },
  8049. frontAlt: {
  8050. height: math.unit(6, "feet"),
  8051. weight: math.unit(120, "lbs"),
  8052. name: "Front (Alt)",
  8053. image: {
  8054. source: "./media/characters/yozey/front-alt.svg"
  8055. }
  8056. },
  8057. side: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(120, "lbs"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/yozey/side.svg"
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(3, "inches"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(6, "feet")
  8075. }
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(103, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/valeska-voss/front.svg"
  8087. }
  8088. }
  8089. },
  8090. [
  8091. {
  8092. name: "Mini-Sized Sub",
  8093. height: math.unit(3.1, "inches")
  8094. },
  8095. {
  8096. name: "Mid-Sized Sub",
  8097. height: math.unit(6.2, "inches")
  8098. },
  8099. {
  8100. name: "Full-Sized Sub",
  8101. height: math.unit(9.3, "inches")
  8102. },
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(5 + 2 / 12, "foot"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(160, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/gene-zeta/front.svg",
  8119. extra: 3006 / 2826,
  8120. bottom: 182 / 3188
  8121. }
  8122. }
  8123. },
  8124. [
  8125. {
  8126. name: "Micro",
  8127. height: math.unit(6, "inches")
  8128. },
  8129. {
  8130. name: "Normal",
  8131. height: math.unit(5 + 11 / 12, "foot"),
  8132. default: true
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(140, "feet")
  8137. },
  8138. {
  8139. name: "Supercharged",
  8140. height: math.unit(2500, "feet")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(350, "lbs"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/razinox/front.svg",
  8153. extra: 1686 / 1548,
  8154. bottom: 28.2 / 1868
  8155. }
  8156. },
  8157. back: {
  8158. height: math.unit(6, "feet"),
  8159. weight: math.unit(350, "lbs"),
  8160. name: "Back",
  8161. image: {
  8162. source: "./media/characters/razinox/back.svg",
  8163. extra: 1660 / 1590,
  8164. bottom: 15 / 1665
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(10 + 8 / 12, "foot")
  8172. },
  8173. {
  8174. name: "Minimacro",
  8175. height: math.unit(15, "foot")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(60, "foot"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(5, "miles")
  8185. },
  8186. {
  8187. name: "Gigamacro",
  8188. height: math.unit(6000, "miles")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(6, "feet"),
  8197. weight: math.unit(150, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/cobalt/front.svg"
  8201. }
  8202. }
  8203. },
  8204. [
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(8 + 1 / 12, "foot")
  8208. },
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(111, "foot"),
  8212. default: true
  8213. },
  8214. {
  8215. name: "Supracosmic",
  8216. height: math.unit(1e42, "feet")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(5, "inches"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/amanda/front.svg",
  8228. extra: 926/791,
  8229. bottom: 38/964
  8230. }
  8231. },
  8232. back: {
  8233. height: math.unit(5, "inches"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/amanda/back.svg",
  8237. extra: 909/805,
  8238. bottom: 43/952
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Micro",
  8245. height: math.unit(5, "inches"),
  8246. default: true
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(2.75, "meters"),
  8255. weight: math.unit(1200, "lb"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/teal/front.svg",
  8259. extra: 2463 / 2320,
  8260. bottom: 166 / 2629
  8261. }
  8262. },
  8263. back: {
  8264. height: math.unit(2.75, "meters"),
  8265. weight: math.unit(1200, "lb"),
  8266. name: "Back",
  8267. image: {
  8268. source: "./media/characters/teal/back.svg",
  8269. extra: 2580 / 2489,
  8270. bottom: 151 / 2731
  8271. }
  8272. },
  8273. sitting: {
  8274. height: math.unit(1.9, "meters"),
  8275. weight: math.unit(1200, "lb"),
  8276. name: "Sitting",
  8277. image: {
  8278. source: "./media/characters/teal/sitting.svg",
  8279. extra: 623 / 590,
  8280. bottom: 121 / 744
  8281. }
  8282. },
  8283. standing: {
  8284. height: math.unit(2.75, "meters"),
  8285. weight: math.unit(1200, "lb"),
  8286. name: "Standing",
  8287. image: {
  8288. source: "./media/characters/teal/standing.svg",
  8289. extra: 923 / 893,
  8290. bottom: 60 / 983
  8291. }
  8292. },
  8293. stretching: {
  8294. height: math.unit(3.65, "meters"),
  8295. weight: math.unit(1200, "lb"),
  8296. name: "Stretching",
  8297. image: {
  8298. source: "./media/characters/teal/stretching.svg",
  8299. extra: 1276 / 1244,
  8300. bottom: 0 / 1276
  8301. }
  8302. },
  8303. legged: {
  8304. height: math.unit(1.3, "meters"),
  8305. weight: math.unit(100, "lb"),
  8306. name: "Legged",
  8307. image: {
  8308. source: "./media/characters/teal/legged.svg",
  8309. extra: 462 / 437,
  8310. bottom: 24 / 486
  8311. }
  8312. },
  8313. naga: {
  8314. height: math.unit(5.4, "meters"),
  8315. weight: math.unit(4000, "lb"),
  8316. name: "Naga",
  8317. image: {
  8318. source: "./media/characters/teal/naga.svg",
  8319. extra: 1902 / 1858,
  8320. bottom: 0 / 1902
  8321. }
  8322. },
  8323. hand: {
  8324. height: math.unit(0.52, "meters"),
  8325. name: "Hand",
  8326. image: {
  8327. source: "./media/characters/teal/hand.svg"
  8328. }
  8329. },
  8330. maw: {
  8331. height: math.unit(0.43, "meters"),
  8332. name: "Maw",
  8333. image: {
  8334. source: "./media/characters/teal/maw.svg"
  8335. }
  8336. },
  8337. slit: {
  8338. height: math.unit(0.25, "meters"),
  8339. name: "Slit",
  8340. image: {
  8341. source: "./media/characters/teal/slit.svg"
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Normal",
  8348. height: math.unit(2.75, "meters"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Macro",
  8353. height: math.unit(300, "feet")
  8354. },
  8355. {
  8356. name: "Macro+",
  8357. height: math.unit(2000, "feet")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8363. {
  8364. frontCat: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(180, "lbs"),
  8367. name: "Front (Cat)",
  8368. image: {
  8369. source: "./media/characters/ravin-amulet/front-cat.svg"
  8370. }
  8371. },
  8372. frontCatAlt: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(180, "lbs"),
  8375. name: "Front (Alt, Cat)",
  8376. image: {
  8377. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8378. }
  8379. },
  8380. frontWerewolf: {
  8381. height: math.unit(6 * 1.2, "feet"),
  8382. weight: math.unit(225, "lbs"),
  8383. name: "Front (Werewolf)",
  8384. image: {
  8385. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8386. }
  8387. },
  8388. backWerewolf: {
  8389. height: math.unit(6 * 1.2, "feet"),
  8390. weight: math.unit(225, "lbs"),
  8391. name: "Back (Werewolf)",
  8392. image: {
  8393. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Nano",
  8400. height: math.unit(1, "micrometer")
  8401. },
  8402. {
  8403. name: "Micro",
  8404. height: math.unit(1, "inch")
  8405. },
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(6, "feet"),
  8409. default: true
  8410. },
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(60, "feet")
  8414. }
  8415. ]
  8416. ))
  8417. characterMakers.push(() => makeCharacter(
  8418. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8419. {
  8420. front: {
  8421. height: math.unit(6, "feet"),
  8422. weight: math.unit(165, "lbs"),
  8423. name: "Front",
  8424. image: {
  8425. source: "./media/characters/fluoresce/front.svg"
  8426. }
  8427. }
  8428. },
  8429. [
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(6, "cm")
  8433. },
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(5 + 7 / 12, "feet"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Macro",
  8441. height: math.unit(56, "feet")
  8442. },
  8443. {
  8444. name: "Megamacro",
  8445. height: math.unit(1.9, "miles")
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(9 + 6 / 12, "feet"),
  8454. weight: math.unit(523, "lbs"),
  8455. name: "Side",
  8456. image: {
  8457. source: "./media/characters/aurora/side.svg",
  8458. extra: 474/393,
  8459. bottom: 5/479
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(9 + 6 / 12, "feet")
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(96, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Macro+",
  8475. height: math.unit(243, "feet")
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(194, "cm"),
  8484. weight: math.unit(90, "kg"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/ranek/front.svg",
  8488. extra: 1862/1791,
  8489. bottom: 80/1942
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(194, "cm"),
  8494. weight: math.unit(90, "kg"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/ranek/back.svg",
  8498. extra: 1853/1787,
  8499. bottom: 74/1927
  8500. }
  8501. },
  8502. feral: {
  8503. height: math.unit(30, "cm"),
  8504. weight: math.unit(1.6, "lbs"),
  8505. name: "Feral",
  8506. image: {
  8507. source: "./media/characters/ranek/feral.svg",
  8508. extra: 990/631,
  8509. bottom: 29/1019
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(194, "cm"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Macro",
  8521. height: math.unit(100, "meters")
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(5 + 6 / 12, "feet"),
  8530. weight: math.unit(153, "lbs"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/andrew-cooper/front.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Nano",
  8540. height: math.unit(1, "mm")
  8541. },
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(2, "inches")
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 6 / 12, "feet"),
  8549. default: true
  8550. }
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(6, "feet"),
  8558. weight: math.unit(180, "lbs"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/akane-sato/front.svg",
  8562. extra: 1219 / 1140
  8563. }
  8564. },
  8565. back: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(180, "lbs"),
  8568. name: "Back",
  8569. image: {
  8570. source: "./media/characters/akane-sato/back.svg",
  8571. extra: 1219 / 1170
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(2.5, "meters")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(250, "meters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Megamacro",
  8587. height: math.unit(25, "km")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(6, "feet"),
  8596. weight: math.unit(65, "kg"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/rook/front.svg",
  8600. extra: 960 / 950
  8601. }
  8602. }
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(8.8, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(88, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Megamacro",
  8616. height: math.unit(8, "miles")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(12 + 2 / 12, "feet"),
  8625. weight: math.unit(808, "lbs"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/prodigy/front.svg"
  8629. }
  8630. }
  8631. },
  8632. [
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(12 + 2 / 12, "feet"),
  8636. default: true
  8637. },
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(143, "feet")
  8641. },
  8642. {
  8643. name: "Macro+",
  8644. height: math.unit(400, "feet")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(6, "feet"),
  8653. weight: math.unit(225, "lbs"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/daniel/front.svg"
  8657. }
  8658. },
  8659. leaning: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(225, "lbs"),
  8662. name: "Leaning",
  8663. image: {
  8664. source: "./media/characters/daniel/leaning.svg"
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(1000, "feet"),
  8672. default: true
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(88, "lbs"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/chiros/front.svg",
  8685. extra: 306 / 226
  8686. }
  8687. },
  8688. side: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(88, "lbs"),
  8691. name: "Side",
  8692. image: {
  8693. source: "./media/characters/chiros/side.svg",
  8694. extra: 306 / 226
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(6, "cm"),
  8702. default: true
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8708. {
  8709. front: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(100, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/selka/front.svg",
  8715. extra: 947 / 887
  8716. }
  8717. }
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(5, "cm"),
  8723. default: true
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(8 + 3 / 12, "feet"),
  8732. weight: math.unit(424, "lbs"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/verin/front.svg",
  8736. extra: 1845 / 1550
  8737. }
  8738. },
  8739. frontArmored: {
  8740. height: math.unit(8 + 3 / 12, "feet"),
  8741. weight: math.unit(424, "lbs"),
  8742. name: "Front (Armored)",
  8743. image: {
  8744. source: "./media/characters/verin/front-armor.svg",
  8745. extra: 1845 / 1550,
  8746. bottom: 0.01
  8747. }
  8748. },
  8749. back: {
  8750. height: math.unit(8 + 3 / 12, "feet"),
  8751. weight: math.unit(424, "lbs"),
  8752. name: "Back",
  8753. image: {
  8754. source: "./media/characters/verin/back.svg",
  8755. bottom: 0.1,
  8756. extra: 1
  8757. }
  8758. },
  8759. foot: {
  8760. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8761. name: "Foot",
  8762. image: {
  8763. source: "./media/characters/verin/foot.svg"
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(8 + 3 / 12, "feet")
  8771. },
  8772. {
  8773. name: "Minimacro",
  8774. height: math.unit(21, "feet"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(626, "feet")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(2.718, "meters"),
  8788. weight: math.unit(150, "lbs"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/sovrim-terraquian/front.svg",
  8792. extra: 1752/1689,
  8793. bottom: 36/1788
  8794. }
  8795. },
  8796. back: {
  8797. height: math.unit(2.718, "meters"),
  8798. weight: math.unit(150, "lbs"),
  8799. name: "Back",
  8800. image: {
  8801. source: "./media/characters/sovrim-terraquian/back.svg",
  8802. extra: 1698/1657,
  8803. bottom: 58/1756
  8804. }
  8805. },
  8806. tongue: {
  8807. height: math.unit(2.865, "feet"),
  8808. name: "Tongue",
  8809. image: {
  8810. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8811. }
  8812. },
  8813. hand: {
  8814. height: math.unit(1.61, "feet"),
  8815. name: "Hand",
  8816. image: {
  8817. source: "./media/characters/sovrim-terraquian/hand.svg"
  8818. }
  8819. },
  8820. foot: {
  8821. height: math.unit(1.05, "feet"),
  8822. name: "Foot",
  8823. image: {
  8824. source: "./media/characters/sovrim-terraquian/foot.svg"
  8825. }
  8826. },
  8827. footAlt: {
  8828. height: math.unit(0.88, "feet"),
  8829. name: "Foot (Alt)",
  8830. image: {
  8831. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Micro",
  8838. height: math.unit(2, "inches")
  8839. },
  8840. {
  8841. name: "Small",
  8842. height: math.unit(1, "meter")
  8843. },
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(Math.E, "meters"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(20, "meters")
  8852. },
  8853. {
  8854. name: "Macro+",
  8855. height: math.unit(400, "meters")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(7, "feet"),
  8864. weight: math.unit(489, "lbs"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/reece-silvermane/front.svg",
  8868. bottom: 0.02,
  8869. extra: 1
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(1.5, "miles"),
  8877. default: true
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(78, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/kane/front.svg",
  8890. extra: 978 / 899
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(2.1, "m"),
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(1, "km"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(200, "kg"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/tegon/front.svg",
  8915. bottom: 0.01,
  8916. extra: 1
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Micro",
  8923. height: math.unit(1, "inch")
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(6 + 3 / 12, "feet"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(300, "feet")
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(69, "miles")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8942. {
  8943. side: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(2304, "lbs"),
  8946. name: "Side",
  8947. image: {
  8948. source: "./media/characters/arcturax/side.svg",
  8949. extra: 790 / 376,
  8950. bottom: 0.01
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(2, "inch")
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(6, "feet")
  8962. },
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(39, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(7, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(50, "lbs"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/sentri/front.svg",
  8983. extra: 1750 / 1570,
  8984. bottom: 0.025
  8985. }
  8986. },
  8987. frontAlt: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(50, "lbs"),
  8990. name: "Front (Alt)",
  8991. image: {
  8992. source: "./media/characters/sentri/front-alt.svg",
  8993. extra: 1750 / 1570,
  8994. bottom: 0.025
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(15, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(2500, "feet")
  9007. }
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(5 + 8 / 12, "feet"),
  9015. weight: math.unit(130, "lbs"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/corvin/front.svg",
  9019. extra: 1803 / 1629
  9020. }
  9021. },
  9022. frontShirt: {
  9023. height: math.unit(5 + 8 / 12, "feet"),
  9024. weight: math.unit(130, "lbs"),
  9025. name: "Front (Shirt)",
  9026. image: {
  9027. source: "./media/characters/corvin/front-shirt.svg",
  9028. extra: 1803 / 1629
  9029. }
  9030. },
  9031. frontPoncho: {
  9032. height: math.unit(5 + 8 / 12, "feet"),
  9033. weight: math.unit(130, "lbs"),
  9034. name: "Front (Poncho)",
  9035. image: {
  9036. source: "./media/characters/corvin/front-poncho.svg",
  9037. extra: 1803 / 1629
  9038. }
  9039. },
  9040. side: {
  9041. height: math.unit(5 + 8 / 12, "feet"),
  9042. weight: math.unit(130, "lbs"),
  9043. name: "Side",
  9044. image: {
  9045. source: "./media/characters/corvin/side.svg",
  9046. extra: 1012 / 945
  9047. }
  9048. },
  9049. back: {
  9050. height: math.unit(5 + 8 / 12, "feet"),
  9051. weight: math.unit(130, "lbs"),
  9052. name: "Back",
  9053. image: {
  9054. source: "./media/characters/corvin/back.svg",
  9055. extra: 1803 / 1629
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Micro",
  9062. height: math.unit(3, "inches")
  9063. },
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(5 + 8 / 12, "feet")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(300, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Megamacro",
  9075. height: math.unit(500, "miles")
  9076. }
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(135, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/q/front.svg",
  9088. extra: 854 / 752,
  9089. bottom: 0.005
  9090. }
  9091. },
  9092. back: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(130, "lbs"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/q/back.svg",
  9098. extra: 854 / 752
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Macro",
  9105. height: math.unit(90, "feet"),
  9106. default: true
  9107. },
  9108. {
  9109. name: "Extra Macro",
  9110. height: math.unit(300, "feet"),
  9111. },
  9112. {
  9113. name: "BIG WALF",
  9114. height: math.unit(750, "feet"),
  9115. },
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9120. {
  9121. front: {
  9122. height: math.unit(3, "feet"),
  9123. weight: math.unit(28, "lbs"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/citrine/front.svg"
  9127. }
  9128. }
  9129. },
  9130. [
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(3, "feet"),
  9134. default: true
  9135. }
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9140. {
  9141. front: {
  9142. height: math.unit(14, "feet"),
  9143. weight: math.unit(1450, "kg"),
  9144. preyCapacity: math.unit(15, "people"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/aura-starwind/front.svg",
  9148. extra: 1440/1327,
  9149. bottom: 11/1451
  9150. }
  9151. },
  9152. side: {
  9153. height: math.unit(14, "feet"),
  9154. weight: math.unit(1450, "kg"),
  9155. preyCapacity: math.unit(15, "people"),
  9156. name: "Side",
  9157. image: {
  9158. source: "./media/characters/aura-starwind/side.svg",
  9159. extra: 1654 / 1497
  9160. }
  9161. },
  9162. taur: {
  9163. height: math.unit(18, "feet"),
  9164. weight: math.unit(5500, "kg"),
  9165. preyCapacity: math.unit(50, "people"),
  9166. name: "Taur",
  9167. image: {
  9168. source: "./media/characters/aura-starwind/taur.svg",
  9169. extra: 1760 / 1650
  9170. }
  9171. },
  9172. feral: {
  9173. height: math.unit(46, "feet"),
  9174. weight: math.unit(25000, "kg"),
  9175. preyCapacity: math.unit(120, "people"),
  9176. name: "Feral",
  9177. image: {
  9178. source: "./media/characters/aura-starwind/feral.svg"
  9179. }
  9180. },
  9181. },
  9182. [
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(14, "feet"),
  9186. default: true
  9187. },
  9188. {
  9189. name: "Macro",
  9190. height: math.unit(50, "meters")
  9191. },
  9192. {
  9193. name: "Megamacro",
  9194. height: math.unit(5000, "meters")
  9195. },
  9196. {
  9197. name: "Gigamacro",
  9198. height: math.unit(100000, "kilometers")
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9204. {
  9205. front: {
  9206. height: math.unit(2 + 7 / 12, "feet"),
  9207. weight: math.unit(32, "lbs"),
  9208. name: "Front",
  9209. image: {
  9210. source: "./media/characters/rivet/front.svg",
  9211. extra: 1716 / 1658,
  9212. bottom: 0.03
  9213. }
  9214. },
  9215. foot: {
  9216. height: math.unit(0.551, "feet"),
  9217. name: "Rivet's Foot",
  9218. image: {
  9219. source: "./media/characters/rivet/foot.svg"
  9220. },
  9221. rename: true
  9222. }
  9223. },
  9224. [
  9225. {
  9226. name: "Micro",
  9227. height: math.unit(1.5, "inches"),
  9228. },
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(2 + 7 / 12, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(85, "feet")
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(2.2, "km")
  9241. }
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(5 + 9 / 12, "feet"),
  9249. weight: math.unit(150, "lbs"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/coffee/front.svg",
  9253. extra: 946/880,
  9254. bottom: 66/1012
  9255. }
  9256. },
  9257. foot: {
  9258. height: math.unit(1.29, "feet"),
  9259. name: "Foot",
  9260. image: {
  9261. source: "./media/characters/coffee/foot.svg"
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Micro",
  9268. height: math.unit(2, "inches"),
  9269. },
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(5 + 9 / 12, "feet"),
  9273. default: true
  9274. },
  9275. {
  9276. name: "Macro",
  9277. height: math.unit(800, "feet")
  9278. },
  9279. {
  9280. name: "Megamacro",
  9281. height: math.unit(25, "miles")
  9282. }
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(200, "lbs"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/chari-gal/front.svg",
  9294. extra: 1568 / 1385,
  9295. bottom: 0.047
  9296. }
  9297. },
  9298. gigantamax: {
  9299. height: math.unit(6 * 16, "feet"),
  9300. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9301. name: "Gigantamax",
  9302. image: {
  9303. source: "./media/characters/chari-gal/gigantamax.svg",
  9304. extra: 1124 / 888,
  9305. bottom: 0.03
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(5 + 7 / 12, "feet")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(200, "feet"),
  9317. default: true
  9318. }
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(6, "feet"),
  9326. weight: math.unit(150, "lbs"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/nova/front.svg",
  9330. extra: 5000 / 4722,
  9331. bottom: 0.02
  9332. }
  9333. }
  9334. },
  9335. [
  9336. {
  9337. name: "Micro-",
  9338. height: math.unit(0.8, "inches")
  9339. },
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. default: true
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9349. {
  9350. koboldFront: {
  9351. height: math.unit(3 + 1 / 12, "feet"),
  9352. weight: math.unit(21.7, "lbs"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/argent/kobold-front.svg",
  9356. extra: 1471 / 1331,
  9357. bottom: 100.8 / 1575.5
  9358. },
  9359. form: "kobold",
  9360. default: true
  9361. },
  9362. dragonFront: {
  9363. height: math.unit(75, "inches"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/argent/dragon-front.svg",
  9367. extra: 1389/1248,
  9368. bottom: 54/1443
  9369. },
  9370. form: "dragon",
  9371. },
  9372. dragonBack: {
  9373. height: math.unit(75, "inches"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/argent/dragon-back.svg",
  9377. extra: 1399/1271,
  9378. bottom: 23/1422
  9379. },
  9380. form: "dragon",
  9381. },
  9382. dragonDressed: {
  9383. height: math.unit(75, "inches"),
  9384. name: "Dressed",
  9385. image: {
  9386. source: "./media/characters/argent/dragon-dressed.svg",
  9387. extra: 1350/1215,
  9388. bottom: 26/1376
  9389. },
  9390. form: "dragon"
  9391. },
  9392. dragonHead: {
  9393. height: math.unit(23.5, "inches"),
  9394. name: "Head",
  9395. image: {
  9396. source: "./media/characters/argent/dragon-head.svg"
  9397. },
  9398. form: "dragon",
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Micro",
  9404. height: math.unit(2, "inches"),
  9405. form: "kobold",
  9406. },
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(3 + 1 / 12, "feet"),
  9410. form: "kobold",
  9411. default: true
  9412. },
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(120, "feet"),
  9416. form: "kobold",
  9417. },
  9418. {
  9419. name: "Speck",
  9420. height: math.unit(1, "mm"),
  9421. form: "dragon",
  9422. },
  9423. {
  9424. name: "Tiny",
  9425. height: math.unit(1, "cm"),
  9426. form: "dragon",
  9427. },
  9428. {
  9429. name: "Micro",
  9430. height: math.unit(5, "cm"),
  9431. form: "dragon",
  9432. },
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(75, "inches"),
  9436. form: "dragon",
  9437. default: true
  9438. },
  9439. {
  9440. name: "Extra Tall",
  9441. height: math.unit(9, "feet"),
  9442. form: "dragon",
  9443. },
  9444. {
  9445. name: "Inconvenient",
  9446. height: math.unit(5, "meters"),
  9447. form: "dragon",
  9448. },
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(70, "meters"),
  9452. form: "dragon",
  9453. },
  9454. {
  9455. name: "Macro+",
  9456. height: math.unit(250, "meters"),
  9457. form: "dragon",
  9458. },
  9459. {
  9460. name: "Megamacro",
  9461. height: math.unit(20, "km"),
  9462. form: "dragon",
  9463. },
  9464. {
  9465. name: "Mountainous",
  9466. height: math.unit(100, "km"),
  9467. form: "dragon",
  9468. },
  9469. {
  9470. name: "Continental",
  9471. height: math.unit(2, "megameters"),
  9472. form: "dragon",
  9473. },
  9474. {
  9475. name: "Too Big",
  9476. height: math.unit(900, "megameters"),
  9477. form: "dragon",
  9478. },
  9479. ],
  9480. {
  9481. "kobold": {
  9482. name: "Kobold",
  9483. default: true
  9484. },
  9485. "dragon": {
  9486. name: "Dragon",
  9487. },
  9488. }
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9492. {
  9493. lamp: {
  9494. height: math.unit(7 * 1559 / 989, "feet"),
  9495. name: "Magic Lamp",
  9496. image: {
  9497. source: "./media/characters/mira-al-cul/lamp.svg",
  9498. extra: 1617 / 1559
  9499. }
  9500. },
  9501. front: {
  9502. height: math.unit(7, "feet"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/mira-al-cul/front.svg",
  9506. extra: 1044 / 990
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Heavily Restricted",
  9513. height: math.unit(7 * 1559 / 989, "feet")
  9514. },
  9515. {
  9516. name: "Freshly Freed",
  9517. height: math.unit(50 * 1559 / 989, "feet")
  9518. },
  9519. {
  9520. name: "World Encompassing",
  9521. height: math.unit(10000 * 1559 / 989, "miles")
  9522. },
  9523. {
  9524. name: "Galactic",
  9525. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9526. },
  9527. {
  9528. name: "Palmed Universe",
  9529. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9530. default: true
  9531. },
  9532. {
  9533. name: "Multiversal Matriarch",
  9534. height: math.unit(8.87e10, "yottameters")
  9535. },
  9536. {
  9537. name: "Void Mother",
  9538. height: math.unit(3.14e110, "yottaparsecs")
  9539. },
  9540. {
  9541. name: "Toying with Transcendence",
  9542. height: math.unit(1e307, "meters")
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9548. {
  9549. front: {
  9550. height: math.unit(17 + 1 / 12, "feet"),
  9551. weight: math.unit(476.2 * 5, "lbs"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/kuro-shi-uchū/front.svg",
  9555. extra: 2329 / 1835,
  9556. bottom: 0.02
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(2, "inches")
  9564. },
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(12, "meters")
  9568. },
  9569. {
  9570. name: "Planetary",
  9571. height: math.unit(0.00929, "AU"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Universal",
  9576. height: math.unit(20, "gigaparsecs")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(5 + 2 / 12, "feet"),
  9585. weight: math.unit(120, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/katherine/front.svg",
  9589. extra: 2075 / 1969
  9590. }
  9591. },
  9592. dress: {
  9593. height: math.unit(5 + 2 / 12, "feet"),
  9594. weight: math.unit(120, "lbs"),
  9595. name: "Dress",
  9596. image: {
  9597. source: "./media/characters/katherine/dress.svg",
  9598. extra: 2258 / 2064
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Micro",
  9605. height: math.unit(1, "inches"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(5 + 2 / 12, "feet")
  9611. },
  9612. {
  9613. name: "Macro",
  9614. height: math.unit(100, "meters")
  9615. },
  9616. {
  9617. name: "Megamacro",
  9618. height: math.unit(80, "miles")
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9624. {
  9625. front: {
  9626. height: math.unit(7 + 8 / 12, "feet"),
  9627. weight: math.unit(250, "lbs"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/yevis/front.svg",
  9631. extra: 1938 / 1755
  9632. }
  9633. }
  9634. },
  9635. [
  9636. {
  9637. name: "Mortal",
  9638. height: math.unit(7 + 8 / 12, "feet")
  9639. },
  9640. {
  9641. name: "Battle",
  9642. height: math.unit(25 + 11 / 12, "feet")
  9643. },
  9644. {
  9645. name: "Wrath",
  9646. height: math.unit(1654 + 11 / 12, "feet")
  9647. },
  9648. {
  9649. name: "Planet Destroyer",
  9650. height: math.unit(12000, "miles")
  9651. },
  9652. {
  9653. name: "Galaxy Conqueror",
  9654. height: math.unit(1.45, "zettameters"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Universal War",
  9659. height: math.unit(184, "gigaparsecs")
  9660. },
  9661. {
  9662. name: "Eternity War",
  9663. height: math.unit(1.98e55, "yottaparsecs")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(5 + 8 / 12, "feet"),
  9672. weight: math.unit(63, "kg"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/xavier/front.svg",
  9676. extra: 944 / 883
  9677. }
  9678. },
  9679. frontStretch: {
  9680. height: math.unit(5 + 8 / 12, "feet"),
  9681. weight: math.unit(63, "kg"),
  9682. name: "Stretching",
  9683. image: {
  9684. source: "./media/characters/xavier/front-stretch.svg",
  9685. extra: 962 / 820
  9686. }
  9687. },
  9688. },
  9689. [
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(5 + 8 / 12, "feet")
  9693. },
  9694. {
  9695. name: "Macro",
  9696. height: math.unit(100, "meters"),
  9697. default: true
  9698. },
  9699. {
  9700. name: "McLargeHuge",
  9701. height: math.unit(10, "miles")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(5 + 5 / 12, "feet"),
  9710. weight: math.unit(150, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/joshii/front.svg",
  9714. extra: 765 / 653,
  9715. bottom: 51 / 816
  9716. }
  9717. },
  9718. foot: {
  9719. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9720. name: "Foot",
  9721. image: {
  9722. source: "./media/characters/joshii/foot.svg"
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Micro",
  9729. height: math.unit(2, "inches")
  9730. },
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5 + 5 / 12, "feet")
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(785, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(24.5, "miles")
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(150, "lb"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/goddess-elizabeth/front.svg",
  9755. extra: 1800 / 1525,
  9756. bottom: 0.005
  9757. }
  9758. },
  9759. foot: {
  9760. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9761. name: "Foot",
  9762. image: {
  9763. source: "./media/characters/goddess-elizabeth/foot.svg"
  9764. }
  9765. },
  9766. mouth: {
  9767. height: math.unit(6, "feet"),
  9768. name: "Mouth",
  9769. image: {
  9770. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(12, "feet")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(80, "miles"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(15000, "parsecs")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(5 + 9 / 12, "feet"),
  9795. weight: math.unit(144, "lb"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/kara/front.svg"
  9799. }
  9800. },
  9801. feet: {
  9802. height: math.unit(6 / 6.765, "feet"),
  9803. name: "Kara's Feet",
  9804. rename: true,
  9805. image: {
  9806. source: "./media/characters/kara/feet.svg"
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(5 + 9 / 12, "feet")
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(174, "feet"),
  9818. default: true
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(18, "feet"),
  9827. weight: math.unit(4050, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/tyrone/front.svg",
  9831. extra: 2405 / 2270,
  9832. bottom: 182 / 2587
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(18, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(300, "feet")
  9845. },
  9846. {
  9847. name: "Megamacro",
  9848. height: math.unit(15, "km")
  9849. },
  9850. {
  9851. name: "Gigamacro",
  9852. height: math.unit(500, "km")
  9853. },
  9854. {
  9855. name: "Teramacro",
  9856. height: math.unit(0.5, "gigameters")
  9857. },
  9858. {
  9859. name: "Omnimacro",
  9860. height: math.unit(1e252, "yottauniverse")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(7 + 8 / 12, "feet"),
  9869. weight: math.unit(120, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/danny/front.svg",
  9873. extra: 1490 / 1350
  9874. }
  9875. },
  9876. back: {
  9877. height: math.unit(7 + 8 / 12, "feet"),
  9878. weight: math.unit(120, "lb"),
  9879. name: "Back",
  9880. image: {
  9881. source: "./media/characters/danny/back.svg",
  9882. extra: 1490 / 1350
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(7 + 8 / 12, "feet"),
  9890. default: true
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(3.5, "inches"),
  9899. weight: math.unit(19, "grams"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/mallow/front.svg",
  9903. extra: 471 / 431
  9904. }
  9905. },
  9906. back: {
  9907. height: math.unit(3.5, "inches"),
  9908. weight: math.unit(19, "grams"),
  9909. name: "Back",
  9910. image: {
  9911. source: "./media/characters/mallow/back.svg",
  9912. extra: 471 / 431
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(3.5, "inches"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(9, "feet"),
  9929. weight: math.unit(230, "kg"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/starry-aqua/front.svg"
  9933. }
  9934. },
  9935. back: {
  9936. height: math.unit(9, "feet"),
  9937. weight: math.unit(230, "kg"),
  9938. name: "Back",
  9939. image: {
  9940. source: "./media/characters/starry-aqua/back.svg"
  9941. }
  9942. },
  9943. hand: {
  9944. height: math.unit(9 * 0.1168, "feet"),
  9945. name: "Hand",
  9946. image: {
  9947. source: "./media/characters/starry-aqua/hand.svg"
  9948. }
  9949. },
  9950. foot: {
  9951. height: math.unit(9 * 0.18, "feet"),
  9952. name: "Foot",
  9953. image: {
  9954. source: "./media/characters/starry-aqua/foot.svg"
  9955. }
  9956. }
  9957. },
  9958. [
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(3, "inches")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(9, "feet")
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(300, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(3200, "feet")
  9975. }
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(15, "feet"),
  9983. weight: math.unit(5026, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/luka-towers/front.svg",
  9987. extra: 1269/1133,
  9988. bottom: 51/1320
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(15, "feet"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Minimacro",
  10000. height: math.unit(25, "feet")
  10001. },
  10002. {
  10003. name: "Macro",
  10004. height: math.unit(320, "feet")
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(35000, "feet")
  10009. },
  10010. {
  10011. name: "Gigamacro",
  10012. height: math.unit(4000, "miles")
  10013. },
  10014. {
  10015. name: "Teramacro",
  10016. height: math.unit(15000, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/natalie-nightring/front.svg",
  10029. extra: 1,
  10030. bottom: 0.06
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Uh Oh",
  10037. height: math.unit(0.1, "mm")
  10038. },
  10039. {
  10040. name: "Small",
  10041. height: math.unit(3, "inches")
  10042. },
  10043. {
  10044. name: "Human Scale",
  10045. height: math.unit(6, "feet")
  10046. },
  10047. {
  10048. name: "Librarian",
  10049. height: math.unit(50, "feet"),
  10050. default: true
  10051. },
  10052. {
  10053. name: "Immense",
  10054. height: math.unit(200, "miles")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(180, "lbs"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/danni-rosie/front.svg",
  10067. extra: 1260 / 1128,
  10068. bottom: 0.022
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Micro",
  10075. height: math.unit(2, "inches"),
  10076. default: true
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(5 + 9 / 12, "feet"),
  10085. weight: math.unit(220, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/samantha-kruse/front.svg",
  10089. extra: (985 / 935),
  10090. bottom: 0.03
  10091. }
  10092. },
  10093. frontUndressed: {
  10094. height: math.unit(5 + 9 / 12, "feet"),
  10095. weight: math.unit(220, "lb"),
  10096. name: "Front (Undressed)",
  10097. image: {
  10098. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10099. extra: (973 / 923),
  10100. bottom: 0.025
  10101. }
  10102. },
  10103. fat: {
  10104. height: math.unit(5 + 9 / 12, "feet"),
  10105. weight: math.unit(900, "lb"),
  10106. name: "Front (Fat)",
  10107. image: {
  10108. source: "./media/characters/samantha-kruse/fat.svg",
  10109. extra: 2688 / 2561
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(5 + 9 / 12, "feet"),
  10117. default: true
  10118. }
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10123. {
  10124. back: {
  10125. height: math.unit(5 + 4 / 12, "feet"),
  10126. weight: math.unit(4963, "lb"),
  10127. name: "Back",
  10128. image: {
  10129. source: "./media/characters/amelia-rosie/back.svg",
  10130. extra: 1113 / 963,
  10131. bottom: 0.01
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Level 0",
  10138. height: math.unit(5 + 4 / 12, "feet")
  10139. },
  10140. {
  10141. name: "Level 1",
  10142. height: math.unit(164597, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Level 2",
  10147. height: math.unit(956243, "miles")
  10148. },
  10149. {
  10150. name: "Level 3",
  10151. height: math.unit(29421709423, "miles")
  10152. },
  10153. {
  10154. name: "Level 4",
  10155. height: math.unit(154, "lightyears")
  10156. },
  10157. {
  10158. name: "Level 5",
  10159. height: math.unit(4738272, "lightyears")
  10160. },
  10161. {
  10162. name: "Level 6",
  10163. height: math.unit(145787152896, "lightyears")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(5 + 11 / 12, "feet"),
  10172. weight: math.unit(65, "kg"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/rook-kitara/front.svg",
  10176. extra: 1347 / 1274,
  10177. bottom: 0.005
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Totally Unfair",
  10184. height: math.unit(1.8, "mm")
  10185. },
  10186. {
  10187. name: "Lap Rookie",
  10188. height: math.unit(1.4, "feet")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 11 / 12, "feet"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "How Did This Happen",
  10197. height: math.unit(80, "miles")
  10198. }
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(7, "feet"),
  10206. weight: math.unit(300, "lb"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/pisces/front.svg",
  10210. extra: 2255 / 2115,
  10211. bottom: 0.03
  10212. }
  10213. },
  10214. back: {
  10215. height: math.unit(7, "feet"),
  10216. weight: math.unit(300, "lb"),
  10217. name: "Back",
  10218. image: {
  10219. source: "./media/characters/pisces/back.svg",
  10220. extra: 2146 / 2055,
  10221. bottom: 0.04
  10222. }
  10223. },
  10224. },
  10225. [
  10226. {
  10227. name: "Normal",
  10228. height: math.unit(7, "feet"),
  10229. default: true
  10230. },
  10231. {
  10232. name: "Swimming Pool",
  10233. height: math.unit(12.2, "meters")
  10234. },
  10235. {
  10236. name: "Olympic Swimming Pool",
  10237. height: math.unit(56.3, "meters")
  10238. },
  10239. {
  10240. name: "Lake Superior",
  10241. height: math.unit(93900, "meters")
  10242. },
  10243. {
  10244. name: "Mediterranean Sea",
  10245. height: math.unit(644457, "meters")
  10246. },
  10247. {
  10248. name: "World's Oceans",
  10249. height: math.unit(4567491, "meters")
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(2.3, "meters"),
  10258. weight: math.unit(120, "kg"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/zelas/front.svg"
  10262. }
  10263. },
  10264. side: {
  10265. height: math.unit(2.3, "meters"),
  10266. weight: math.unit(120, "kg"),
  10267. name: "Side",
  10268. image: {
  10269. source: "./media/characters/zelas/side.svg"
  10270. }
  10271. },
  10272. back: {
  10273. height: math.unit(2.3, "meters"),
  10274. weight: math.unit(120, "kg"),
  10275. name: "Back",
  10276. image: {
  10277. source: "./media/characters/zelas/back.svg"
  10278. }
  10279. },
  10280. foot: {
  10281. height: math.unit(1.116, "feet"),
  10282. name: "Foot",
  10283. image: {
  10284. source: "./media/characters/zelas/foot.svg"
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(2.3, "meters")
  10292. },
  10293. {
  10294. name: "Macro",
  10295. height: math.unit(30, "meters"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(1, "inch"),
  10305. weight: math.unit(0.21, "grams"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/talbot/front.svg",
  10309. extra: 594 / 544
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Micro",
  10316. height: math.unit(1, "inch"),
  10317. default: true
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10323. {
  10324. front: {
  10325. height: math.unit(3 + 3 / 12, "feet"),
  10326. weight: math.unit(51.8, "lb"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/fliss/front.svg",
  10330. extra: 840 / 640
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Teeny Tiny",
  10337. height: math.unit(1, "mm")
  10338. },
  10339. {
  10340. name: "Small",
  10341. height: math.unit(1, "inch"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Standard Sylveon",
  10346. height: math.unit(3 + 3 / 12, "feet")
  10347. },
  10348. {
  10349. name: "Large Nuisance",
  10350. height: math.unit(33, "feet")
  10351. },
  10352. {
  10353. name: "City Filler",
  10354. height: math.unit(3000, "feet")
  10355. },
  10356. {
  10357. name: "New Horizon",
  10358. height: math.unit(6000, "miles")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(5, "cm"),
  10367. weight: math.unit(1.94, "g"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/fleta/front.svg",
  10371. extra: 835 / 803
  10372. }
  10373. },
  10374. back: {
  10375. height: math.unit(5, "cm"),
  10376. weight: math.unit(1.94, "g"),
  10377. name: "Back",
  10378. image: {
  10379. source: "./media/characters/fleta/back.svg",
  10380. extra: 835 / 803
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Micro",
  10387. height: math.unit(5, "cm"),
  10388. default: true
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(225, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/dominic/front.svg",
  10401. extra: 1770 / 1620,
  10402. bottom: 0.025
  10403. }
  10404. },
  10405. back: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(225, "lb"),
  10408. name: "Back",
  10409. image: {
  10410. source: "./media/characters/dominic/back.svg",
  10411. extra: 1745 / 1620,
  10412. bottom: 0.065
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Nano",
  10419. height: math.unit(0.1, "mm")
  10420. },
  10421. {
  10422. name: "Micro-",
  10423. height: math.unit(1, "mm")
  10424. },
  10425. {
  10426. name: "Micro",
  10427. height: math.unit(4, "inches")
  10428. },
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(6 + 4 / 12, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Macro",
  10436. height: math.unit(115, "feet")
  10437. },
  10438. {
  10439. name: "Macro+",
  10440. height: math.unit(955, "feet")
  10441. },
  10442. {
  10443. name: "Megamacro",
  10444. height: math.unit(8990, "feet")
  10445. },
  10446. {
  10447. name: "Gigmacro",
  10448. height: math.unit(9310, "miles")
  10449. },
  10450. {
  10451. name: "Teramacro",
  10452. height: math.unit(1567005010, "miles")
  10453. },
  10454. {
  10455. name: "Examacro",
  10456. height: math.unit(1425, "parsecs")
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10462. {
  10463. front: {
  10464. height: math.unit(400, "feet"),
  10465. weight: math.unit(44444444, "lb"),
  10466. name: "Front",
  10467. image: {
  10468. source: "./media/characters/major-colonel/front.svg"
  10469. }
  10470. },
  10471. back: {
  10472. height: math.unit(400, "feet"),
  10473. weight: math.unit(44444444, "lb"),
  10474. name: "Back",
  10475. image: {
  10476. source: "./media/characters/major-colonel/back.svg"
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(400, "feet"),
  10484. default: true
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10490. {
  10491. catFront: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(120, "lb"),
  10494. name: "Front (Cat Side)",
  10495. image: {
  10496. source: "./media/characters/axel-lycan/cat-front.svg",
  10497. extra: 430 / 402,
  10498. bottom: 43 / 472.35
  10499. }
  10500. },
  10501. catBack: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(120, "lb"),
  10504. name: "Back (Cat Side)",
  10505. image: {
  10506. source: "./media/characters/axel-lycan/cat-back.svg",
  10507. extra: 447 / 419,
  10508. bottom: 23.3 / 469
  10509. }
  10510. },
  10511. wolfFront: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(120, "lb"),
  10514. name: "Front (Wolf Side)",
  10515. image: {
  10516. source: "./media/characters/axel-lycan/wolf-front.svg",
  10517. extra: 485 / 456,
  10518. bottom: 19 / 504
  10519. }
  10520. },
  10521. wolfBack: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(120, "lb"),
  10524. name: "Back (Wolf Side)",
  10525. image: {
  10526. source: "./media/characters/axel-lycan/wolf-back.svg",
  10527. extra: 475 / 438,
  10528. bottom: 39.2 / 514
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Macro",
  10535. height: math.unit(1, "km"),
  10536. default: true
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(5 + 9 / 12, "feet"),
  10545. weight: math.unit(175, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/vanrel-hyena/front.svg",
  10549. extra: 1086 / 1010,
  10550. bottom: 0.04
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(5 + 9 / 12, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10564. {
  10565. front: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(103, "lb"),
  10568. name: "Front",
  10569. image: {
  10570. source: "./media/characters/abbott-absol/front.svg",
  10571. extra: 2010 / 1842
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Megamicro",
  10578. height: math.unit(0.1, "mm")
  10579. },
  10580. {
  10581. name: "Micro",
  10582. height: math.unit(1, "inch")
  10583. },
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(6, "feet"),
  10587. default: true
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(264, "lb"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/hector/front.svg",
  10600. extra: 2280 / 2130,
  10601. bottom: 0.07
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(12.25, "foot"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(160, "feet")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/sal/front.svg",
  10626. extra: 1846 / 1699,
  10627. bottom: 0.04
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(10, "miles"),
  10635. default: true
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10641. {
  10642. front: {
  10643. height: math.unit(3, "meters"),
  10644. weight: math.unit(450, "kg"),
  10645. name: "front",
  10646. image: {
  10647. source: "./media/characters/ranger/front.svg",
  10648. extra: 2401 / 2243,
  10649. bottom: 0.05
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(3, "meters"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(14, "feet"),
  10666. weight: math.unit(800, "kg"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/theresa/front.svg",
  10670. extra: 3575 / 3346,
  10671. bottom: 0.03
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(14, "feet"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(3, "kg"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/ine/front.svg",
  10692. extra: 678 / 539,
  10693. bottom: 0.023
  10694. }
  10695. },
  10696. },
  10697. [
  10698. {
  10699. name: "Normal",
  10700. height: math.unit(2.265, "feet"),
  10701. default: true
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(5, "feet"),
  10710. weight: math.unit(30, "kg"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/vial/front.svg",
  10714. extra: 1365 / 1277,
  10715. bottom: 0.04
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(5, "feet"),
  10723. default: true
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10729. {
  10730. side: {
  10731. height: math.unit(3.4, "meters"),
  10732. weight: math.unit(1000, "lb"),
  10733. name: "Side",
  10734. image: {
  10735. source: "./media/characters/rovoska/side.svg",
  10736. extra: 4403 / 1515
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(3.4, "meters"),
  10744. default: true
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(8, "feet"),
  10753. weight: math.unit(315, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/gunner-rotthbauer/front.svg"
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(8, "feet"),
  10761. weight: math.unit(315, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/gunner-rotthbauer/back.svg"
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Micro",
  10771. height: math.unit(3.5, "inches")
  10772. },
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(8, "feet"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(250, "feet")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(1, "AU")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(5 + 5 / 12, "feet"),
  10793. weight: math.unit(140, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/allatia/front.svg",
  10797. extra: 1227 / 1180,
  10798. bottom: 0.027
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(5 + 5 / 12, "feet")
  10806. },
  10807. {
  10808. name: "Macro",
  10809. height: math.unit(250, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(8, "miles")
  10815. }
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(120, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/tene/front.svg",
  10827. extra: 814/750,
  10828. bottom: 36/850
  10829. }
  10830. },
  10831. stomping: {
  10832. height: math.unit(2.025, "meters"),
  10833. weight: math.unit(120, "lb"),
  10834. name: "Stomping",
  10835. image: {
  10836. source: "./media/characters/tene/stomping.svg",
  10837. extra: 885/821,
  10838. bottom: 15/900
  10839. }
  10840. },
  10841. sitting: {
  10842. height: math.unit(1, "meter"),
  10843. weight: math.unit(120, "lb"),
  10844. name: "Sitting",
  10845. image: {
  10846. source: "./media/characters/tene/sitting.svg",
  10847. extra: 396/366,
  10848. bottom: 79/475
  10849. }
  10850. },
  10851. smiling: {
  10852. height: math.unit(1.2, "feet"),
  10853. name: "Smiling",
  10854. image: {
  10855. source: "./media/characters/tene/smiling.svg",
  10856. extra: 1364/1071,
  10857. bottom: 0/1364
  10858. }
  10859. },
  10860. smug: {
  10861. height: math.unit(1.3, "feet"),
  10862. name: "Smug",
  10863. image: {
  10864. source: "./media/characters/tene/smug.svg",
  10865. extra: 1323/1082,
  10866. bottom: 0/1323
  10867. }
  10868. },
  10869. feral: {
  10870. height: math.unit(3.9, "feet"),
  10871. weight: math.unit(250, "lb"),
  10872. name: "Feral",
  10873. image: {
  10874. source: "./media/characters/tene/feral.svg",
  10875. extra: 717 / 458,
  10876. bottom: 0.179
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(6, "feet")
  10884. },
  10885. {
  10886. name: "Macro",
  10887. height: math.unit(300, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(5, "miles")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10898. {
  10899. side: {
  10900. height: math.unit(6, "feet"),
  10901. name: "Side",
  10902. image: {
  10903. source: "./media/characters/evander/side.svg",
  10904. extra: 877 / 477
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(0.83, "meters"),
  10912. default: true
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(12, "feet"),
  10921. weight: math.unit(1000, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10925. extra: 1762 / 1611
  10926. }
  10927. },
  10928. back: {
  10929. height: math.unit(12, "feet"),
  10930. weight: math.unit(1000, "lb"),
  10931. name: "Back",
  10932. image: {
  10933. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10934. extra: 1762 / 1611
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(12, "feet"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Kaiju",
  10946. height: math.unit(150, "feet")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/zero-alurus/front.svg"
  10959. }
  10960. },
  10961. back: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Back",
  10965. image: {
  10966. source: "./media/characters/zero-alurus/back.svg"
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(5 + 10 / 12, "feet")
  10974. },
  10975. {
  10976. name: "Macro",
  10977. height: math.unit(60, "feet"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Macro+",
  10982. height: math.unit(450, "feet")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(200, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/mega-shi/front.svg",
  10995. extra: 1279 / 1250,
  10996. bottom: 0.02
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(200, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/mega-shi/back.svg",
  11005. extra: 1279 / 1250,
  11006. bottom: 0.02
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Micro",
  11013. height: math.unit(16 + 6 / 12, "feet")
  11014. },
  11015. {
  11016. name: "Third Dimension",
  11017. height: math.unit(40, "meters")
  11018. },
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(660, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Megamacro",
  11026. height: math.unit(10, "miles")
  11027. },
  11028. {
  11029. name: "Planetary Launch",
  11030. height: math.unit(500, "miles")
  11031. },
  11032. {
  11033. name: "Interstellar",
  11034. height: math.unit(1e9, "miles")
  11035. },
  11036. {
  11037. name: "Leaving the Universe",
  11038. height: math.unit(1, "gigaparsec")
  11039. },
  11040. {
  11041. name: "Travelling Universes",
  11042. height: math.unit(30e15, "parsecs")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5 + 4/12, "feet"),
  11051. weight: math.unit(120, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/odyssey/front.svg",
  11055. extra: 1747/1571,
  11056. bottom: 47/1794
  11057. }
  11058. },
  11059. side: {
  11060. height: math.unit(5.1, "feet"),
  11061. weight: math.unit(120, "lb"),
  11062. name: "Side",
  11063. image: {
  11064. source: "./media/characters/odyssey/side.svg",
  11065. extra: 1847/1619,
  11066. bottom: 47/1894
  11067. }
  11068. },
  11069. lounging: {
  11070. height: math.unit(1.464, "feet"),
  11071. weight: math.unit(120, "lb"),
  11072. name: "Lounging",
  11073. image: {
  11074. source: "./media/characters/odyssey/lounging.svg",
  11075. extra: 1235/837,
  11076. bottom: 551/1786
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Normal",
  11083. height: math.unit(5 + 4 / 12, "feet")
  11084. },
  11085. {
  11086. name: "Macro",
  11087. height: math.unit(1, "km")
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(3000, "km")
  11092. },
  11093. {
  11094. name: "Gigamacro",
  11095. height: math.unit(1, "AU"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Omniversal",
  11100. height: math.unit(100e14, "lightyears")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(300, "lb"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/mekuto/front.svg",
  11113. extra: 921 / 832,
  11114. bottom: 0.03
  11115. }
  11116. },
  11117. hand: {
  11118. height: math.unit(6 / 10.24, "feet"),
  11119. name: "Hand",
  11120. image: {
  11121. source: "./media/characters/mekuto/hand.svg"
  11122. }
  11123. },
  11124. foot: {
  11125. height: math.unit(6 / 5.05, "feet"),
  11126. name: "Foot",
  11127. image: {
  11128. source: "./media/characters/mekuto/foot.svg"
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Minimicro",
  11135. height: math.unit(0.2, "inches")
  11136. },
  11137. {
  11138. name: "Micro",
  11139. height: math.unit(1.5, "inches")
  11140. },
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(5 + 11 / 12, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Minimacro",
  11148. height: math.unit(17 + 9 / 12, "feet")
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(177.5, "feet")
  11153. },
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(152, "miles")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6.5, "inches"),
  11165. weight: math.unit(13, "oz"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/dafydd-tomos/front.svg",
  11169. extra: 2990 / 2603,
  11170. bottom: 0.03
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Micro",
  11177. height: math.unit(6.5, "inches"),
  11178. default: true
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(150, "lb"),
  11188. name: "Front",
  11189. image: {
  11190. source: "./media/characters/splinter/front.svg",
  11191. extra: 2990 / 2882,
  11192. bottom: 0.04
  11193. }
  11194. },
  11195. back: {
  11196. height: math.unit(6, "feet"),
  11197. weight: math.unit(150, "lb"),
  11198. name: "Back",
  11199. image: {
  11200. source: "./media/characters/splinter/back.svg",
  11201. extra: 2990 / 2882,
  11202. bottom: 0.04
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(6, "feet")
  11210. },
  11211. {
  11212. name: "Macro",
  11213. height: math.unit(230, "meters"),
  11214. default: true
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(4 + 10 / 12, "feet"),
  11223. weight: math.unit(480, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/snow-gabumon/front.svg",
  11227. extra: 1140 / 963,
  11228. bottom: 0.058
  11229. }
  11230. },
  11231. back: {
  11232. height: math.unit(4 + 10 / 12, "feet"),
  11233. weight: math.unit(480, "lb"),
  11234. name: "Back",
  11235. image: {
  11236. source: "./media/characters/snow-gabumon/back.svg",
  11237. extra: 1115 / 962,
  11238. bottom: 0.041
  11239. }
  11240. },
  11241. frontUndresed: {
  11242. height: math.unit(4 + 10 / 12, "feet"),
  11243. weight: math.unit(480, "lb"),
  11244. name: "Front (Undressed)",
  11245. image: {
  11246. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11247. extra: 1061 / 960,
  11248. bottom: 0.045
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Micro",
  11255. height: math.unit(1, "inch")
  11256. },
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(4 + 10 / 12, "feet"),
  11260. default: true
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(200, "feet")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(120, "miles")
  11269. },
  11270. {
  11271. name: "Gigamacro",
  11272. height: math.unit(9800, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(1.7, "meters"),
  11281. weight: math.unit(140, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/moody/front.svg",
  11285. extra: 3226 / 3007,
  11286. bottom: 0.087
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(1, "mm")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(1.7, "meters"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(80, "meters")
  11303. },
  11304. {
  11305. name: "Macro+",
  11306. height: math.unit(500, "meters")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/zyas/front.svg",
  11319. extra: 1180 / 1120,
  11320. bottom: 0.045
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(10, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(500, "feet")
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(5, "miles")
  11337. },
  11338. {
  11339. name: "Teramacro",
  11340. height: math.unit(150000, "miles")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(150, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/cuon/front.svg",
  11353. extra: 1390 / 1320,
  11354. bottom: 0.008
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(3, "inches")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(18 + 9 / 12, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(360, "feet")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(360, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(2.4, "meters"),
  11383. weight: math.unit(70, "kg"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/nyanuxk/front.svg",
  11387. extra: 1172 / 1084,
  11388. bottom: 0.065
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(2.4, "meters"),
  11393. weight: math.unit(70, "kg"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/nyanuxk/side.svg",
  11397. extra: 1190 / 1132,
  11398. bottom: 0.007
  11399. }
  11400. },
  11401. back: {
  11402. height: math.unit(2.4, "meters"),
  11403. weight: math.unit(70, "kg"),
  11404. name: "Back",
  11405. image: {
  11406. source: "./media/characters/nyanuxk/back.svg",
  11407. extra: 1200 / 1141,
  11408. bottom: 0.015
  11409. }
  11410. },
  11411. foot: {
  11412. height: math.unit(0.52, "meters"),
  11413. name: "Foot",
  11414. image: {
  11415. source: "./media/characters/nyanuxk/foot.svg"
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Micro",
  11422. height: math.unit(2, "cm")
  11423. },
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(2.4, "meters"),
  11427. default: true
  11428. },
  11429. {
  11430. name: "Smaller Macro",
  11431. height: math.unit(120, "meters")
  11432. },
  11433. {
  11434. name: "Bigger Macro",
  11435. height: math.unit(1.2, "km")
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(15, "kilometers")
  11440. },
  11441. {
  11442. name: "Gigamacro",
  11443. height: math.unit(2000, "km")
  11444. },
  11445. {
  11446. name: "Teramacro",
  11447. height: math.unit(500000, "km")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11453. {
  11454. side: {
  11455. height: math.unit(6, "feet"),
  11456. name: "Side",
  11457. image: {
  11458. source: "./media/characters/ailbhe/side.svg",
  11459. extra: 757 / 464,
  11460. bottom: 0.041
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(1.07, "meters"),
  11468. default: true
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(6, "feet"),
  11477. weight: math.unit(120, "kg"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/zevulfius/front.svg",
  11481. extra: 965 / 903
  11482. }
  11483. },
  11484. side: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(120, "kg"),
  11487. name: "Side",
  11488. image: {
  11489. source: "./media/characters/zevulfius/side.svg",
  11490. extra: 939 / 900
  11491. }
  11492. },
  11493. back: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(120, "kg"),
  11496. name: "Back",
  11497. image: {
  11498. source: "./media/characters/zevulfius/back.svg",
  11499. extra: 918 / 854,
  11500. bottom: 0.005
  11501. }
  11502. },
  11503. foot: {
  11504. height: math.unit(6 / 3.72, "feet"),
  11505. name: "Foot",
  11506. image: {
  11507. source: "./media/characters/zevulfius/foot.svg"
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(750, "meters")
  11515. },
  11516. {
  11517. name: "Megamacro",
  11518. height: math.unit(20, "km"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Gigamacro",
  11523. height: math.unit(2000, "km")
  11524. },
  11525. {
  11526. name: "Teramacro",
  11527. height: math.unit(250000, "km")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(100, "feet"),
  11536. weight: math.unit(350, "kg"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/rikes/front.svg",
  11540. extra: 1565 / 1483,
  11541. bottom: 0.017
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(100, "feet"),
  11549. default: true
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(8, "feet"),
  11558. weight: math.unit(356, "lb"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/adam-silver-mane/front.svg",
  11562. extra: 1036/937,
  11563. bottom: 63/1099
  11564. }
  11565. },
  11566. side: {
  11567. height: math.unit(8, "feet"),
  11568. weight: math.unit(356, "lb"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/adam-silver-mane/side.svg",
  11572. extra: 997/901,
  11573. bottom: 59/1056
  11574. }
  11575. },
  11576. frontNsfw: {
  11577. height: math.unit(8, "feet"),
  11578. weight: math.unit(356, "lb"),
  11579. name: "Front (NSFW)",
  11580. image: {
  11581. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11582. extra: 1036/937,
  11583. bottom: 63/1099
  11584. }
  11585. },
  11586. sideNsfw: {
  11587. height: math.unit(8, "feet"),
  11588. weight: math.unit(356, "lb"),
  11589. name: "Side (NSFW)",
  11590. image: {
  11591. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11592. extra: 997/901,
  11593. bottom: 59/1056
  11594. }
  11595. },
  11596. dick: {
  11597. height: math.unit(2.1, "feet"),
  11598. name: "Dick",
  11599. image: {
  11600. source: "./media/characters/adam-silver-mane/dick.svg"
  11601. }
  11602. },
  11603. taur: {
  11604. height: math.unit(16, "feet"),
  11605. weight: math.unit(1500, "kg"),
  11606. name: "Taur",
  11607. image: {
  11608. source: "./media/characters/adam-silver-mane/taur.svg",
  11609. extra: 1713 / 1571,
  11610. bottom: 0.01
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(8, "feet")
  11618. },
  11619. {
  11620. name: "Minimacro",
  11621. height: math.unit(80, "feet")
  11622. },
  11623. {
  11624. name: "MDA",
  11625. height: math.unit(80, "meters")
  11626. },
  11627. {
  11628. name: "Macro",
  11629. height: math.unit(800, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(8000, "feet")
  11635. },
  11636. {
  11637. name: "Gigamacro",
  11638. height: math.unit(800, "miles")
  11639. },
  11640. {
  11641. name: "Teramacro",
  11642. height: math.unit(80000, "miles")
  11643. },
  11644. {
  11645. name: "Celestial",
  11646. height: math.unit(8e6, "miles")
  11647. },
  11648. {
  11649. name: "Star Dragon",
  11650. height: math.unit(800000, "parsecs")
  11651. },
  11652. {
  11653. name: "Godly",
  11654. height: math.unit(800, "teraparsecs")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(150, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/ky'owin/front.svg",
  11667. extra: 3862/3053,
  11668. bottom: 74/3936
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(6 + 8 / 12, "feet")
  11676. },
  11677. {
  11678. name: "Large",
  11679. height: math.unit(68, "feet")
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(132, "feet")
  11684. },
  11685. {
  11686. name: "Macro+",
  11687. height: math.unit(340, "feet")
  11688. },
  11689. {
  11690. name: "Macro++",
  11691. height: math.unit(680, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(1, "mile")
  11697. },
  11698. {
  11699. name: "Megamacro+",
  11700. height: math.unit(10, "miles")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(4, "feet"),
  11709. weight: math.unit(50, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/mal/front.svg",
  11713. extra: 785 / 724,
  11714. bottom: 0.07
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Micro",
  11721. height: math.unit(4, "inches")
  11722. },
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(4, "feet"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(200, "feet")
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(6, "feet"),
  11739. weight: math.unit(150, "lb"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/jordan-deware/front.svg",
  11743. extra: 1191 / 1012
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Nano",
  11750. height: math.unit(0.01, "mm")
  11751. },
  11752. {
  11753. name: "Minimicro",
  11754. height: math.unit(1, "mm")
  11755. },
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(0.5, "inches")
  11759. },
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(4, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Minimacro",
  11767. height: math.unit(40, "meters")
  11768. },
  11769. {
  11770. name: "Small Macro",
  11771. height: math.unit(400, "meters")
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(4, "miles")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(40, "miles")
  11780. },
  11781. {
  11782. name: "Megamacro+",
  11783. height: math.unit(400, "miles")
  11784. },
  11785. {
  11786. name: "Gigamacro",
  11787. height: math.unit(400000, "miles")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11793. {
  11794. side: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Side",
  11798. image: {
  11799. source: "./media/characters/kimiko/side.svg",
  11800. extra: 600 / 358
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(15, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(220, "feet")
  11813. },
  11814. {
  11815. name: "Macro+",
  11816. height: math.unit(1450, "feet")
  11817. },
  11818. {
  11819. name: "Megamacro",
  11820. height: math.unit(11500, "feet")
  11821. },
  11822. {
  11823. name: "Gigamacro",
  11824. height: math.unit(9500, "miles")
  11825. },
  11826. {
  11827. name: "Teramacro",
  11828. height: math.unit(2208005005, "miles")
  11829. },
  11830. {
  11831. name: "Examacro",
  11832. height: math.unit(2750, "parsecs")
  11833. },
  11834. {
  11835. name: "Zettamacro",
  11836. height: math.unit(101500, "parsecs")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(70, "kg"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/andrew-sleepy/front.svg"
  11849. }
  11850. },
  11851. side: {
  11852. height: math.unit(6, "feet"),
  11853. weight: math.unit(70, "kg"),
  11854. name: "Side",
  11855. image: {
  11856. source: "./media/characters/andrew-sleepy/side.svg"
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Micro",
  11863. height: math.unit(1, "mm"),
  11864. default: true
  11865. },
  11866. ]
  11867. ))
  11868. characterMakers.push(() => makeCharacter(
  11869. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11870. {
  11871. front: {
  11872. height: math.unit(6, "feet"),
  11873. weight: math.unit(150, "lb"),
  11874. name: "Front",
  11875. image: {
  11876. source: "./media/characters/judio/front.svg",
  11877. extra: 1258 / 1110
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(5 + 6 / 12, "feet")
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(1000, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(10, "miles")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11899. {
  11900. frontDressed: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(68, "kg"),
  11903. name: "Front (Dressed)",
  11904. image: {
  11905. source: "./media/characters/nomaxice/front-dressed.svg",
  11906. extra: 1137/824,
  11907. bottom: 74/1211
  11908. }
  11909. },
  11910. frontShorts: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(68, "kg"),
  11913. name: "Front (Shorts)",
  11914. image: {
  11915. source: "./media/characters/nomaxice/front-shorts.svg",
  11916. extra: 1137/824,
  11917. bottom: 74/1211
  11918. }
  11919. },
  11920. back: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(68, "kg"),
  11923. name: "Back",
  11924. image: {
  11925. source: "./media/characters/nomaxice/back.svg",
  11926. extra: 822/786,
  11927. bottom: 39/861
  11928. }
  11929. },
  11930. hand: {
  11931. height: math.unit(0.565, "feet"),
  11932. name: "Hand",
  11933. image: {
  11934. source: "./media/characters/nomaxice/hand.svg"
  11935. }
  11936. },
  11937. foot: {
  11938. height: math.unit(1, "feet"),
  11939. name: "Foot",
  11940. image: {
  11941. source: "./media/characters/nomaxice/foot.svg"
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Micro",
  11948. height: math.unit(8, "cm")
  11949. },
  11950. {
  11951. name: "Norm",
  11952. height: math.unit(1.82, "m")
  11953. },
  11954. {
  11955. name: "Norm+",
  11956. height: math.unit(8.8, "feet"),
  11957. default: true
  11958. },
  11959. {
  11960. name: "Big",
  11961. height: math.unit(8, "meters")
  11962. },
  11963. {
  11964. name: "Macro",
  11965. height: math.unit(18, "meters")
  11966. },
  11967. {
  11968. name: "Macro+",
  11969. height: math.unit(88, "meters")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(12, "feet"),
  11978. weight: math.unit(1.5, "tons"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/dydros/front.svg",
  11982. extra: 863 / 800,
  11983. bottom: 0.015
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(12, "feet"),
  11988. weight: math.unit(1.5, "tons"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/dydros/back.svg",
  11992. extra: 900 / 843,
  11993. bottom: 0.005
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(12, "feet"),
  12001. default: true
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(100, "kg"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/riggi/front.svg",
  12014. extra: 5787 / 5303
  12015. }
  12016. },
  12017. hyper: {
  12018. height: math.unit(6 * 5 / 3, "feet"),
  12019. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12020. name: "Hyper",
  12021. image: {
  12022. source: "./media/characters/riggi/hyper.svg",
  12023. extra: 3595 / 3485
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Small Macro",
  12030. height: math.unit(50, "feet")
  12031. },
  12032. {
  12033. name: "Default",
  12034. height: math.unit(200, "feet"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Loom",
  12039. height: math.unit(10000, "feet")
  12040. },
  12041. {
  12042. name: "Cruising Altitude",
  12043. height: math.unit(30000, "feet")
  12044. },
  12045. {
  12046. name: "Megamacro",
  12047. height: math.unit(100, "miles")
  12048. },
  12049. {
  12050. name: "Continent Sized",
  12051. height: math.unit(2800, "miles")
  12052. },
  12053. {
  12054. name: "Earth Sized",
  12055. height: math.unit(8000, "miles")
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12061. {
  12062. front: {
  12063. height: math.unit(6, "feet"),
  12064. weight: math.unit(250, "lb"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/alexi/front.svg",
  12068. extra: 3483 / 3291,
  12069. bottom: 0.04
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(6, "feet"),
  12074. weight: math.unit(250, "lb"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/alexi/back.svg",
  12078. extra: 3533 / 3356,
  12079. bottom: 0.021
  12080. }
  12081. },
  12082. frontTransforming: {
  12083. height: math.unit(8.58, "feet"),
  12084. weight: math.unit(1300, "lb"),
  12085. name: "Transforming",
  12086. image: {
  12087. source: "./media/characters/alexi/front-transforming.svg",
  12088. extra: 437 / 409,
  12089. bottom: 19 / 458.66
  12090. }
  12091. },
  12092. frontTransformed: {
  12093. height: math.unit(12.5, "feet"),
  12094. weight: math.unit(4000, "lb"),
  12095. name: "Transformed",
  12096. image: {
  12097. source: "./media/characters/alexi/front-transformed.svg",
  12098. extra: 639 / 614,
  12099. bottom: 30.55 / 671
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(14, "feet"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Minimacro",
  12111. height: math.unit(30, "meters")
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(500, "meters")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(9000, "km")
  12120. },
  12121. {
  12122. name: "Teramacro",
  12123. height: math.unit(384000, "km")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/kayroo/front.svg",
  12136. extra: 1153 / 1038,
  12137. bottom: 0.06
  12138. }
  12139. },
  12140. foot: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(150, "lb"),
  12143. name: "Foot",
  12144. image: {
  12145. source: "./media/characters/kayroo/foot.svg"
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(8, "feet"),
  12153. default: true
  12154. },
  12155. {
  12156. name: "Minimacro",
  12157. height: math.unit(250, "feet")
  12158. },
  12159. {
  12160. name: "Macro",
  12161. height: math.unit(2800, "feet")
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(5200, "feet")
  12166. },
  12167. {
  12168. name: "Gigamacro",
  12169. height: math.unit(27000, "feet")
  12170. },
  12171. {
  12172. name: "Omega",
  12173. height: math.unit(45000, "feet")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(18, "feet"),
  12182. weight: math.unit(5800, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/rhys/front.svg",
  12186. extra: 3386 / 3090,
  12187. bottom: 0.07
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(18, "feet"),
  12195. default: true
  12196. },
  12197. {
  12198. name: "Working Size",
  12199. height: math.unit(200, "feet")
  12200. },
  12201. {
  12202. name: "Demolition Size",
  12203. height: math.unit(2000, "feet")
  12204. },
  12205. {
  12206. name: "Maximum Licensed Size",
  12207. height: math.unit(5, "miles")
  12208. },
  12209. {
  12210. name: "Maximum Observed Size",
  12211. height: math.unit(10, "yottameters")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12217. {
  12218. front: {
  12219. height: math.unit(6, "feet"),
  12220. weight: math.unit(250, "lb"),
  12221. name: "Front",
  12222. image: {
  12223. source: "./media/characters/toto/front.svg",
  12224. extra: 527 / 479,
  12225. bottom: 0.05
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(3, "feet")
  12233. },
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(10, "feet")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(150, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(1200, "feet")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "King", species: ["lion"], tags: ["anthro"] },
  12251. {
  12252. back: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/king/back.svg"
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(2, "inches")
  12265. },
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(8, "feet")
  12269. },
  12270. {
  12271. name: "Macro",
  12272. height: math.unit(200, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Megamacro",
  12277. height: math.unit(50, "miles")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(11, "feet"),
  12286. weight: math.unit(1400, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/cordite/front.svg",
  12290. extra: 1919/1827,
  12291. bottom: 40/1959
  12292. }
  12293. },
  12294. side: {
  12295. height: math.unit(11, "feet"),
  12296. weight: math.unit(1400, "lb"),
  12297. name: "Side",
  12298. image: {
  12299. source: "./media/characters/cordite/side.svg",
  12300. extra: 1908/1793,
  12301. bottom: 38/1946
  12302. }
  12303. },
  12304. back: {
  12305. height: math.unit(11, "feet"),
  12306. weight: math.unit(1400, "lb"),
  12307. name: "Back",
  12308. image: {
  12309. source: "./media/characters/cordite/back.svg",
  12310. extra: 1938/1837,
  12311. bottom: 10/1948
  12312. }
  12313. },
  12314. feral: {
  12315. height: math.unit(2, "feet"),
  12316. weight: math.unit(90, "lb"),
  12317. name: "Feral",
  12318. image: {
  12319. source: "./media/characters/cordite/feral.svg",
  12320. extra: 1260 / 755,
  12321. bottom: 0.05
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(11, "feet"),
  12329. default: true
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/pianostrong/front.svg",
  12342. extra: 6577 / 6254,
  12343. bottom: 0.02
  12344. }
  12345. },
  12346. side: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Side",
  12350. image: {
  12351. source: "./media/characters/pianostrong/side.svg",
  12352. extra: 6106 / 5730
  12353. }
  12354. },
  12355. back: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Back",
  12359. image: {
  12360. source: "./media/characters/pianostrong/back.svg",
  12361. extra: 6085 / 5733,
  12362. bottom: 0.01
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(100, "feet")
  12370. },
  12371. {
  12372. name: "Macro+",
  12373. height: math.unit(300, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Macro++",
  12378. height: math.unit(1000, "feet")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/kona/front.svg",
  12391. extra: 2960 / 2629,
  12392. bottom: 0.005
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(11 + 8 / 12, "feet")
  12400. },
  12401. {
  12402. name: "Macro",
  12403. height: math.unit(850, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Macro+",
  12408. height: math.unit(1.5, "km"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Megamacro",
  12413. height: math.unit(80, "miles")
  12414. },
  12415. {
  12416. name: "Gigamacro",
  12417. height: math.unit(3500, "miles")
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12423. {
  12424. side: {
  12425. height: math.unit(1.9, "meters"),
  12426. weight: math.unit(326, "kg"),
  12427. name: "Side",
  12428. image: {
  12429. source: "./media/characters/levi/side.svg",
  12430. extra: 1704 / 1334,
  12431. bottom: 0.02
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(1.9, "meters"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(20, "meters")
  12444. },
  12445. {
  12446. name: "Macro+",
  12447. height: math.unit(200, "meters")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(2, "km")
  12452. },
  12453. {
  12454. name: "Megamacro+",
  12455. height: math.unit(20, "km")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(2500, "km")
  12460. },
  12461. {
  12462. name: "Gigamacro+",
  12463. height: math.unit(120000, "km")
  12464. },
  12465. {
  12466. name: "Teramacro",
  12467. height: math.unit(7.77e6, "km")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6 + 4/12, "feet"),
  12476. weight: math.unit(190, "lb"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/bmc/front.svg",
  12480. extra: 1626/1472,
  12481. bottom: 79/1705
  12482. }
  12483. },
  12484. back: {
  12485. height: math.unit(6 + 4/12, "feet"),
  12486. weight: math.unit(190, "lb"),
  12487. name: "Back",
  12488. image: {
  12489. source: "./media/characters/bmc/back.svg",
  12490. extra: 1640/1479,
  12491. bottom: 45/1685
  12492. }
  12493. },
  12494. frontArmor: {
  12495. height: math.unit(6 + 4/12, "feet"),
  12496. weight: math.unit(190, "lb"),
  12497. name: "Front-armor",
  12498. image: {
  12499. source: "./media/characters/bmc/front-armor.svg",
  12500. extra: 1538/1468,
  12501. bottom: 79/1617
  12502. }
  12503. },
  12504. },
  12505. [
  12506. {
  12507. name: "Human-sized",
  12508. height: math.unit(6 + 4 / 12, "feet")
  12509. },
  12510. {
  12511. name: "Interactive Size",
  12512. height: math.unit(25, "feet")
  12513. },
  12514. {
  12515. name: "Small",
  12516. height: math.unit(250, "feet")
  12517. },
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(1250, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Good Day",
  12525. height: math.unit(88, "miles")
  12526. },
  12527. {
  12528. name: "Largest Measured Size",
  12529. height: math.unit(105.960, "galaxies")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(20, "feet"),
  12538. weight: math.unit(2016, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/sven-the-kaiju/front.svg",
  12542. extra: 1277/1250,
  12543. bottom: 35/1312
  12544. }
  12545. },
  12546. mouth: {
  12547. height: math.unit(1.85, "feet"),
  12548. name: "Mouth",
  12549. image: {
  12550. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Fairy",
  12557. height: math.unit(6, "inches")
  12558. },
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(20, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Rampage",
  12566. height: math.unit(200, "feet")
  12567. },
  12568. {
  12569. name: "Archfey Forest Guardian",
  12570. height: math.unit(1, "mile")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(4, "meters"),
  12579. weight: math.unit(2, "tons"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/marik/front.svg",
  12583. extra: 1057 / 1003,
  12584. bottom: 0.08
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(4, "meters"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(20, "meters")
  12597. },
  12598. {
  12599. name: "Megamacro",
  12600. height: math.unit(50, "km")
  12601. },
  12602. {
  12603. name: "Gigamacro",
  12604. height: math.unit(100, "km")
  12605. },
  12606. {
  12607. name: "Alpha Macro",
  12608. height: math.unit(7.88e7, "yottameters")
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(110, "lb"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/mel/front.svg",
  12621. extra: 736 / 617,
  12622. bottom: 0.017
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Pico",
  12629. height: math.unit(3, "pm")
  12630. },
  12631. {
  12632. name: "Nano",
  12633. height: math.unit(3, "nm")
  12634. },
  12635. {
  12636. name: "Micro",
  12637. height: math.unit(0.3, "mm"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Micro+",
  12642. height: math.unit(3, "mm")
  12643. },
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(5 + 10.5 / 12, "feet")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12652. {
  12653. kaiju: {
  12654. height: math.unit(1.75, "meters"),
  12655. weight: math.unit(55, "kg"),
  12656. name: "Kaiju",
  12657. image: {
  12658. source: "./media/characters/lykonous/kaiju.svg",
  12659. extra: 1055 / 946,
  12660. bottom: 0.135
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(2.5, "meters"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Kaiju Dragon",
  12672. height: math.unit(60, "meters")
  12673. },
  12674. {
  12675. name: "Mega Kaiju",
  12676. height: math.unit(120, "km")
  12677. },
  12678. {
  12679. name: "Giga Kaiju",
  12680. height: math.unit(200, "megameters")
  12681. },
  12682. {
  12683. name: "Terra Kaiju",
  12684. height: math.unit(400, "gigameters")
  12685. },
  12686. {
  12687. name: "Kaiju Dragon God",
  12688. height: math.unit(13000, "exaparsecs")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/blü/front.svg",
  12701. extra: 1883 / 1564,
  12702. bottom: 0.031
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(13, "feet"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Big Boi",
  12714. height: math.unit(150, "meters")
  12715. },
  12716. {
  12717. name: "Mini Stomper",
  12718. height: math.unit(300, "meters")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(1000, "meters")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(11000, "meters")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(11000, "km")
  12731. },
  12732. {
  12733. name: "Teramacro",
  12734. height: math.unit(420000, "km")
  12735. },
  12736. {
  12737. name: "Examacro",
  12738. height: math.unit(120, "parsecs")
  12739. },
  12740. {
  12741. name: "God Tho",
  12742. height: math.unit(98000000000, "parsecs")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12748. {
  12749. taurFront: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(200, "lb"),
  12752. name: "Taur (Front)",
  12753. image: {
  12754. source: "./media/characters/scales/taur-front.svg",
  12755. extra: 1,
  12756. bottom: 0.05
  12757. }
  12758. },
  12759. taurBack: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(200, "lb"),
  12762. name: "Taur (Back)",
  12763. image: {
  12764. source: "./media/characters/scales/taur-back.svg",
  12765. extra: 1,
  12766. bottom: 0.08
  12767. }
  12768. },
  12769. anthro: {
  12770. height: math.unit(6 * 7 / 12, "feet"),
  12771. weight: math.unit(100, "lb"),
  12772. name: "Anthro",
  12773. image: {
  12774. source: "./media/characters/scales/anthro.svg",
  12775. extra: 1,
  12776. bottom: 0.06
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(12, "feet"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/koragos/front.svg",
  12797. extra: 841 / 794,
  12798. bottom: 0.035
  12799. }
  12800. },
  12801. back: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/koragos/back.svg",
  12807. extra: 841 / 810,
  12808. bottom: 0.022
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(6 + 11 / 12, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(490, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(10, "miles")
  12825. },
  12826. {
  12827. name: "Gigamacro",
  12828. height: math.unit(50, "miles")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(250, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/xylrem/front.svg",
  12841. extra: 3323 / 3050,
  12842. bottom: 0.065
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Micro",
  12849. height: math.unit(4, "feet")
  12850. },
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(16, "feet"),
  12854. default: true
  12855. },
  12856. {
  12857. name: "Macro",
  12858. height: math.unit(2720, "feet")
  12859. },
  12860. {
  12861. name: "Megamacro",
  12862. height: math.unit(25000, "miles")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(8, "feet"),
  12871. weight: math.unit(250, "kg"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/ikideru/front.svg",
  12875. extra: 930 / 870,
  12876. bottom: 0.087
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(8, "feet"),
  12881. weight: math.unit(250, "kg"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/ikideru/back.svg",
  12885. extra: 919 / 852,
  12886. bottom: 0.055
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Rare",
  12893. height: math.unit(8, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Playful Loom",
  12898. height: math.unit(80, "feet")
  12899. },
  12900. {
  12901. name: "City Leaner",
  12902. height: math.unit(230, "feet")
  12903. },
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(2500, "feet")
  12907. },
  12908. {
  12909. name: "Gigamacro",
  12910. height: math.unit(26400, "feet")
  12911. },
  12912. {
  12913. name: "Tectonic Shifter",
  12914. height: math.unit(1.7, "megameters")
  12915. },
  12916. {
  12917. name: "Planet Carer",
  12918. height: math.unit(21, "megameters")
  12919. },
  12920. {
  12921. name: "God",
  12922. height: math.unit(11157.22, "parsecs")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6, "feet"),
  12931. weight: math.unit(120, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/neo/front.svg"
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Micro",
  12941. height: math.unit(2, "inches"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Human Size",
  12946. height: math.unit(5 + 8 / 12, "feet")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(13 + 10 / 12, "feet"),
  12955. weight: math.unit(5320, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/chauncey-chantz/front.svg",
  12959. extra: 1587 / 1435,
  12960. bottom: 0.02
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(13 + 10 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Macro",
  12972. height: math.unit(45, "feet")
  12973. },
  12974. {
  12975. name: "Megamacro",
  12976. height: math.unit(250, "miles")
  12977. },
  12978. {
  12979. name: "Planetary",
  12980. height: math.unit(10000, "miles")
  12981. },
  12982. {
  12983. name: "Galactic",
  12984. height: math.unit(40000, "parsecs")
  12985. },
  12986. {
  12987. name: "Universal",
  12988. height: math.unit(1, "yottameter")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/epifox/front.svg",
  13001. extra: 1,
  13002. bottom: 0.075
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(6, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(12, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(3810, "feet")
  13019. },
  13020. {
  13021. name: "Megamacro",
  13022. height: math.unit(500, "miles")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(1.8796, "m"),
  13031. weight: math.unit(230, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/colin-t/front.svg",
  13035. extra: 1272 / 1193,
  13036. bottom: 0.07
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Micro",
  13043. height: math.unit(0.571, "meters")
  13044. },
  13045. {
  13046. name: "Normal",
  13047. height: math.unit(1.8796, "meters"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Tall",
  13052. height: math.unit(4, "meters")
  13053. },
  13054. {
  13055. name: "Macro",
  13056. height: math.unit(67.241, "meters")
  13057. },
  13058. {
  13059. name: "Megamacro",
  13060. height: math.unit(371.856, "meters")
  13061. },
  13062. {
  13063. name: "Planetary",
  13064. height: math.unit(12631.5689, "km")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(1.85, "meters"),
  13073. weight: math.unit(80, "kg"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/matvei/front.svg",
  13077. extra: 456/447,
  13078. bottom: 8/464
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(1.85, "meters"),
  13083. weight: math.unit(80, "kg"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/matvei/back.svg",
  13087. extra: 434/427,
  13088. bottom: 11/445
  13089. }
  13090. },
  13091. },
  13092. [
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(1.85, "meters"),
  13096. default: true
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(5 + 9 / 12, "feet"),
  13105. weight: math.unit(70, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/quincy/front.svg",
  13109. extra: 3041 / 2751
  13110. }
  13111. },
  13112. back: {
  13113. height: math.unit(5 + 9 / 12, "feet"),
  13114. weight: math.unit(70, "lb"),
  13115. name: "Back",
  13116. image: {
  13117. source: "./media/characters/quincy/back.svg",
  13118. extra: 3041 / 2751
  13119. }
  13120. },
  13121. flying: {
  13122. height: math.unit(5 + 4 / 12, "feet"),
  13123. weight: math.unit(70, "lb"),
  13124. name: "Flying",
  13125. image: {
  13126. source: "./media/characters/quincy/flying.svg",
  13127. extra: 1044 / 930
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Micro",
  13134. height: math.unit(3, "cm")
  13135. },
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(5 + 9 / 12, "feet")
  13139. },
  13140. {
  13141. name: "Macro",
  13142. height: math.unit(200, "meters"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Megamacro",
  13147. height: math.unit(1000, "meters")
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(3 + 11/12, "feet"),
  13156. weight: math.unit(50, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/vanrel/front.svg",
  13160. extra: 1104/949,
  13161. bottom: 52/1156
  13162. }
  13163. },
  13164. back: {
  13165. height: math.unit(3 + 11/12, "feet"),
  13166. weight: math.unit(50, "lb"),
  13167. name: "Back",
  13168. image: {
  13169. source: "./media/characters/vanrel/back.svg",
  13170. extra: 1119/976,
  13171. bottom: 37/1156
  13172. }
  13173. },
  13174. tome: {
  13175. height: math.unit(1.35, "feet"),
  13176. weight: math.unit(10, "lb"),
  13177. name: "Vanrel's Tome",
  13178. rename: true,
  13179. image: {
  13180. source: "./media/characters/vanrel/tome.svg"
  13181. }
  13182. },
  13183. beans: {
  13184. height: math.unit(0.89, "feet"),
  13185. name: "Beans",
  13186. image: {
  13187. source: "./media/characters/vanrel/beans.svg"
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(3 + 11/12, "feet"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(7 + 5 / 12, "feet"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/kuiper-vanrel/front.svg",
  13207. extra: 1219/1169,
  13208. bottom: 69/1288
  13209. }
  13210. },
  13211. back: {
  13212. height: math.unit(7 + 5 / 12, "feet"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/kuiper-vanrel/back.svg",
  13216. extra: 1236/1193,
  13217. bottom: 27/1263
  13218. }
  13219. },
  13220. foot: {
  13221. height: math.unit(0.55, "meters"),
  13222. name: "Foot",
  13223. image: {
  13224. source: "./media/characters/kuiper-vanrel/foot.svg",
  13225. }
  13226. },
  13227. battle: {
  13228. height: math.unit(6.824, "feet"),
  13229. name: "Battle",
  13230. image: {
  13231. source: "./media/characters/kuiper-vanrel/battle.svg",
  13232. extra: 1466 / 1327,
  13233. bottom: 29 / 1492.5
  13234. }
  13235. },
  13236. meerkui: {
  13237. height: math.unit(18, "inches"),
  13238. name: "Meerkui",
  13239. image: {
  13240. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13241. extra: 1354/1289,
  13242. bottom: 69/1423
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Normal",
  13249. height: math.unit(7 + 5 / 12, "feet"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(8 + 5 / 12, "feet"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/keset-vanrel/front.svg",
  13262. extra: 1231/1148,
  13263. bottom: 82/1313
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(8 + 5 / 12, "feet"),
  13268. name: "Back",
  13269. image: {
  13270. source: "./media/characters/keset-vanrel/back.svg",
  13271. extra: 1240/1174,
  13272. bottom: 33/1273
  13273. }
  13274. },
  13275. hand: {
  13276. height: math.unit(0.6, "meters"),
  13277. name: "Hand",
  13278. image: {
  13279. source: "./media/characters/keset-vanrel/hand.svg"
  13280. }
  13281. },
  13282. foot: {
  13283. height: math.unit(0.94978, "meters"),
  13284. name: "Foot",
  13285. image: {
  13286. source: "./media/characters/keset-vanrel/foot.svg"
  13287. }
  13288. },
  13289. battle: {
  13290. height: math.unit(7.408, "feet"),
  13291. name: "Battle",
  13292. image: {
  13293. source: "./media/characters/keset-vanrel/battle.svg",
  13294. extra: 1890 / 1386,
  13295. bottom: 73.28 / 1970
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(8 + 5 / 12, "feet"),
  13303. default: true
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13309. {
  13310. front: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Front",
  13314. image: {
  13315. source: "./media/characters/neos/front.svg",
  13316. extra: 1696 / 992,
  13317. bottom: 0.14
  13318. }
  13319. },
  13320. },
  13321. [
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(54, "cm"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(100, "m")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(10, "km")
  13334. },
  13335. {
  13336. name: "Megamacro+",
  13337. height: math.unit(100, "km")
  13338. },
  13339. {
  13340. name: "Gigamacro",
  13341. height: math.unit(100, "Mm")
  13342. },
  13343. {
  13344. name: "Teramacro",
  13345. height: math.unit(100, "Gm")
  13346. },
  13347. {
  13348. name: "Examacro",
  13349. height: math.unit(100, "Em")
  13350. },
  13351. {
  13352. name: "Godly",
  13353. height: math.unit(10000, "Ym")
  13354. },
  13355. {
  13356. name: "Beyond Godly",
  13357. height: math.unit(25, "multiverses")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13363. {
  13364. feminine: {
  13365. height: math.unit(5, "feet"),
  13366. weight: math.unit(100, "lb"),
  13367. name: "Feminine",
  13368. image: {
  13369. source: "./media/characters/sammy-mouse/feminine.svg",
  13370. extra: 2526 / 2425,
  13371. bottom: 0.123
  13372. }
  13373. },
  13374. masculine: {
  13375. height: math.unit(5, "feet"),
  13376. weight: math.unit(100, "lb"),
  13377. name: "Masculine",
  13378. image: {
  13379. source: "./media/characters/sammy-mouse/masculine.svg",
  13380. extra: 2526 / 2425,
  13381. bottom: 0.123
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Micro",
  13388. height: math.unit(5, "inches")
  13389. },
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(5, "feet"),
  13393. default: true
  13394. },
  13395. {
  13396. name: "Macro",
  13397. height: math.unit(60, "feet")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(4, "feet"),
  13406. weight: math.unit(50, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/kole/front.svg",
  13410. extra: 1423 / 1303,
  13411. bottom: 0.025
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(4, "feet"),
  13416. weight: math.unit(50, "lb"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/kole/back.svg",
  13420. extra: 1426 / 1280,
  13421. bottom: 0.02
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(4, "feet"),
  13429. default: true
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(2.5, "feet"),
  13438. weight: math.unit(32, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/rufran/front.svg",
  13442. extra: 1313/885,
  13443. bottom: 94/1407
  13444. }
  13445. },
  13446. side: {
  13447. height: math.unit(2.5, "feet"),
  13448. weight: math.unit(32, "lb"),
  13449. name: "Side",
  13450. image: {
  13451. source: "./media/characters/rufran/side.svg",
  13452. extra: 1109/852,
  13453. bottom: 118/1227
  13454. }
  13455. },
  13456. back: {
  13457. height: math.unit(2.5, "feet"),
  13458. weight: math.unit(32, "lb"),
  13459. name: "Back",
  13460. image: {
  13461. source: "./media/characters/rufran/back.svg",
  13462. extra: 1280/878,
  13463. bottom: 131/1411
  13464. }
  13465. },
  13466. mouth: {
  13467. height: math.unit(1.13, "feet"),
  13468. name: "Mouth",
  13469. image: {
  13470. source: "./media/characters/rufran/mouth.svg"
  13471. }
  13472. },
  13473. foot: {
  13474. height: math.unit(1.33, "feet"),
  13475. name: "Foot",
  13476. image: {
  13477. source: "./media/characters/rufran/foot.svg"
  13478. }
  13479. },
  13480. koboldFront: {
  13481. height: math.unit(2 + 6 / 12, "feet"),
  13482. weight: math.unit(20, "lb"),
  13483. name: "Front (Kobold)",
  13484. image: {
  13485. source: "./media/characters/rufran/kobold-front.svg",
  13486. extra: 2041 / 1839,
  13487. bottom: 0.055
  13488. }
  13489. },
  13490. koboldBack: {
  13491. height: math.unit(2 + 6 / 12, "feet"),
  13492. weight: math.unit(20, "lb"),
  13493. name: "Back (Kobold)",
  13494. image: {
  13495. source: "./media/characters/rufran/kobold-back.svg",
  13496. extra: 2054 / 1839,
  13497. bottom: 0.01
  13498. }
  13499. },
  13500. koboldHand: {
  13501. height: math.unit(0.2166, "meters"),
  13502. name: "Hand (Kobold)",
  13503. image: {
  13504. source: "./media/characters/rufran/kobold-hand.svg"
  13505. }
  13506. },
  13507. koboldFoot: {
  13508. height: math.unit(0.185, "meters"),
  13509. name: "Foot (Kobold)",
  13510. image: {
  13511. source: "./media/characters/rufran/kobold-foot.svg"
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Micro",
  13518. height: math.unit(1, "inch")
  13519. },
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(2 + 6 / 12, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Big",
  13527. height: math.unit(60, "feet")
  13528. },
  13529. {
  13530. name: "Macro",
  13531. height: math.unit(325, "feet")
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(0.3, "meters"),
  13540. weight: math.unit(3.5, "kg"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/chip/front.svg",
  13544. extra: 748 / 674
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(1, "inch"),
  13552. default: true
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13558. {
  13559. side: {
  13560. height: math.unit(2.3, "meters"),
  13561. weight: math.unit(3500, "lb"),
  13562. name: "Side",
  13563. image: {
  13564. source: "./media/characters/torvid/side.svg",
  13565. extra: 1972 / 722,
  13566. bottom: 0.035
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(2.3, "meters"),
  13574. default: true
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(2, "meters"),
  13583. weight: math.unit(150.5, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/susan/front.svg",
  13587. extra: 693 / 635,
  13588. bottom: 0.05
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(505, "miles"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/raindrops/front.svg",
  13609. extra: 2655 / 2461,
  13610. bottom: 49 / 2705
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/raindrops/back.svg",
  13619. extra: 2574 / 2400,
  13620. bottom: 65 / 2634
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Micro",
  13627. height: math.unit(6, "inches")
  13628. },
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(6 + 2 / 12, "feet")
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(131, "feet"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Megamacro",
  13640. height: math.unit(15, "miles")
  13641. },
  13642. {
  13643. name: "Gigamacro",
  13644. height: math.unit(4000, "miles")
  13645. },
  13646. {
  13647. name: "Teramacro",
  13648. height: math.unit(315000, "miles")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(2.794, "meters"),
  13657. weight: math.unit(325, "kg"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/tezwa/front.svg",
  13661. extra: 2083 / 1906,
  13662. bottom: 0.031
  13663. }
  13664. },
  13665. foot: {
  13666. height: math.unit(0.687, "meters"),
  13667. name: "Foot",
  13668. image: {
  13669. source: "./media/characters/tezwa/foot.svg"
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Normal",
  13676. height: math.unit(9 + 2 / 12, "feet"),
  13677. default: true
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(58, "feet"),
  13686. weight: math.unit(89000, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/typhus/front.svg",
  13690. extra: 816 / 800,
  13691. bottom: 0.065
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Macro",
  13698. height: math.unit(58, "feet"),
  13699. default: true
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(12, "feet"),
  13708. weight: math.unit(6, "tonnes"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/lyra-von-wulf/front.svg",
  13712. extra: 1,
  13713. bottom: 0.10
  13714. }
  13715. },
  13716. frontMecha: {
  13717. height: math.unit(12, "feet"),
  13718. weight: math.unit(12, "tonnes"),
  13719. name: "Front (Mecha)",
  13720. image: {
  13721. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13722. extra: 1,
  13723. bottom: 0.042
  13724. }
  13725. },
  13726. maw: {
  13727. height: math.unit(2.2, "feet"),
  13728. name: "Maw",
  13729. image: {
  13730. source: "./media/characters/lyra-von-wulf/maw.svg"
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Normal",
  13737. height: math.unit(12, "feet"),
  13738. default: true
  13739. },
  13740. {
  13741. name: "Classic",
  13742. height: math.unit(50, "feet")
  13743. },
  13744. {
  13745. name: "Macro",
  13746. height: math.unit(500, "feet")
  13747. },
  13748. {
  13749. name: "Megamacro",
  13750. height: math.unit(1, "mile")
  13751. },
  13752. {
  13753. name: "Gigamacro",
  13754. height: math.unit(400, "miles")
  13755. },
  13756. {
  13757. name: "Teramacro",
  13758. height: math.unit(22000, "miles")
  13759. },
  13760. {
  13761. name: "Solarmacro",
  13762. height: math.unit(8600000, "miles")
  13763. },
  13764. {
  13765. name: "Galactic",
  13766. height: math.unit(1057000, "lightyears")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(6 + 10 / 12, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/dixon/front.svg",
  13779. extra: 3361 / 3209,
  13780. bottom: 0.01
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(6 + 10 / 12, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Big",
  13792. height: math.unit(12, "meters")
  13793. },
  13794. {
  13795. name: "Macro",
  13796. height: math.unit(500, "meters")
  13797. },
  13798. {
  13799. name: "Megamacro",
  13800. height: math.unit(2, "km")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(185, "cm"),
  13809. weight: math.unit(68, "kg"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/kauko/front.svg",
  13813. extra: 1455 / 1421,
  13814. bottom: 0.03
  13815. }
  13816. },
  13817. back: {
  13818. height: math.unit(185, "cm"),
  13819. weight: math.unit(68, "kg"),
  13820. name: "Back",
  13821. image: {
  13822. source: "./media/characters/kauko/back.svg",
  13823. extra: 1455 / 1421,
  13824. bottom: 0.004
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(185, "cm"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13838. {
  13839. frontSfw: {
  13840. height: math.unit(5, "meters"),
  13841. weight: math.unit(4250, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/varg/front-sfw.svg",
  13845. extra: 1103/1010,
  13846. bottom: 50/1153
  13847. },
  13848. form: "anthro",
  13849. default: true
  13850. },
  13851. backSfw: {
  13852. height: math.unit(5, "meters"),
  13853. weight: math.unit(4250, "lb"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/varg/back-sfw.svg",
  13857. extra: 1038/1022,
  13858. bottom: 36/1074
  13859. },
  13860. form: "anthro"
  13861. },
  13862. frontNsfw: {
  13863. height: math.unit(5, "meters"),
  13864. weight: math.unit(4250, "lb"),
  13865. name: "Front (NSFW)",
  13866. image: {
  13867. source: "./media/characters/varg/front-nsfw.svg",
  13868. extra: 1103/1010,
  13869. bottom: 50/1153
  13870. },
  13871. form: "anthro"
  13872. },
  13873. sheath: {
  13874. height: math.unit(3.8, "feet"),
  13875. weight: math.unit(90, "kilograms"),
  13876. name: "Sheath",
  13877. image: {
  13878. source: "./media/characters/varg/sheath.svg"
  13879. },
  13880. form: "anthro"
  13881. },
  13882. dick: {
  13883. height: math.unit(4.6, "feet"),
  13884. weight: math.unit(451, "kilograms"),
  13885. name: "Dick",
  13886. image: {
  13887. source: "./media/characters/varg/dick.svg"
  13888. },
  13889. form: "anthro"
  13890. },
  13891. feralSfw: {
  13892. height: math.unit(5, "meters"),
  13893. weight: math.unit(100000, "lb"),
  13894. name: "Side",
  13895. image: {
  13896. source: "./media/characters/varg/feral-sfw.svg",
  13897. extra: 1065/511,
  13898. bottom: 211/1276
  13899. },
  13900. form: "feral",
  13901. default: true
  13902. },
  13903. feralNsfw: {
  13904. height: math.unit(5, "meters"),
  13905. weight: math.unit(100000, "lb"),
  13906. name: "Side (NSFW)",
  13907. image: {
  13908. source: "./media/characters/varg/feral-nsfw.svg",
  13909. extra: 1065/511,
  13910. bottom: 211/1276
  13911. },
  13912. form: "feral",
  13913. },
  13914. feralSheath: {
  13915. height: math.unit(9.8, "feet"),
  13916. weight: math.unit(2000, "kilograms"),
  13917. name: "Sheath",
  13918. image: {
  13919. source: "./media/characters/varg/sheath.svg"
  13920. },
  13921. form: "feral"
  13922. },
  13923. feralDick: {
  13924. height: math.unit(13.11, "feet"),
  13925. weight: math.unit(10440, "kilograms"),
  13926. name: "Dick",
  13927. image: {
  13928. source: "./media/characters/varg/dick.svg"
  13929. },
  13930. form: "feral"
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(5, "meters"),
  13937. form: "anthro"
  13938. },
  13939. {
  13940. name: "Macro",
  13941. height: math.unit(200, "meters"),
  13942. form: "anthro"
  13943. },
  13944. {
  13945. name: "Megamacro",
  13946. height: math.unit(20, "kilometers"),
  13947. form: "anthro"
  13948. },
  13949. {
  13950. name: "True Size",
  13951. height: math.unit(211, "km"),
  13952. form: "anthro",
  13953. default: true
  13954. },
  13955. {
  13956. name: "Gigamacro",
  13957. height: math.unit(1000, "km"),
  13958. form: "anthro"
  13959. },
  13960. {
  13961. name: "Gigamacro+",
  13962. height: math.unit(8000, "km"),
  13963. form: "anthro"
  13964. },
  13965. {
  13966. name: "Teramacro",
  13967. height: math.unit(1000000, "km"),
  13968. form: "anthro"
  13969. },
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(5, "meters"),
  13973. form: "feral"
  13974. },
  13975. {
  13976. name: "Macro",
  13977. height: math.unit(200, "meters"),
  13978. form: "feral"
  13979. },
  13980. {
  13981. name: "Megamacro",
  13982. height: math.unit(20, "kilometers"),
  13983. form: "feral"
  13984. },
  13985. {
  13986. name: "True Size",
  13987. height: math.unit(211, "km"),
  13988. form: "feral",
  13989. default: true
  13990. },
  13991. {
  13992. name: "Gigamacro",
  13993. height: math.unit(1000, "km"),
  13994. form: "feral"
  13995. },
  13996. {
  13997. name: "Gigamacro+",
  13998. height: math.unit(8000, "km"),
  13999. form: "feral"
  14000. },
  14001. {
  14002. name: "Teramacro",
  14003. height: math.unit(1000000, "km"),
  14004. form: "feral"
  14005. },
  14006. ],
  14007. {
  14008. "anthro": {
  14009. name: "Anthro",
  14010. default: true
  14011. },
  14012. "feral": {
  14013. name: "Feral",
  14014. },
  14015. }
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(7 + 7 / 12, "feet"),
  14022. weight: math.unit(267, "lb"),
  14023. name: "Front",
  14024. image: {
  14025. source: "./media/characters/dayza/front.svg",
  14026. extra: 1262 / 1200,
  14027. bottom: 0.035
  14028. }
  14029. },
  14030. side: {
  14031. height: math.unit(7 + 7 / 12, "feet"),
  14032. weight: math.unit(267, "lb"),
  14033. name: "Side",
  14034. image: {
  14035. source: "./media/characters/dayza/side.svg",
  14036. extra: 1295 / 1245,
  14037. bottom: 0.05
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(7 + 7 / 12, "feet"),
  14042. weight: math.unit(267, "lb"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/dayza/back.svg",
  14046. extra: 1241 / 1170
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(7 + 7 / 12, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(155, "feet")
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(6 + 5 / 12, "feet"),
  14067. weight: math.unit(160, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/xanthos/front.svg",
  14071. extra: 1,
  14072. bottom: 0.04
  14073. }
  14074. },
  14075. back: {
  14076. height: math.unit(6 + 5 / 12, "feet"),
  14077. weight: math.unit(160, "lb"),
  14078. name: "Back",
  14079. image: {
  14080. source: "./media/characters/xanthos/back.svg",
  14081. extra: 1,
  14082. bottom: 0.03
  14083. }
  14084. },
  14085. hand: {
  14086. height: math.unit(0.928, "feet"),
  14087. name: "Hand",
  14088. image: {
  14089. source: "./media/characters/xanthos/hand.svg"
  14090. }
  14091. },
  14092. foot: {
  14093. height: math.unit(1.286, "feet"),
  14094. name: "Foot",
  14095. image: {
  14096. source: "./media/characters/xanthos/foot.svg"
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(6 + 5 / 12, "feet"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Normal+",
  14108. height: math.unit(6, "meters")
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(40, "feet")
  14113. },
  14114. {
  14115. name: "Macro+",
  14116. height: math.unit(200, "meters")
  14117. },
  14118. {
  14119. name: "Megamacro",
  14120. height: math.unit(20, "km")
  14121. },
  14122. {
  14123. name: "Megamacro+",
  14124. height: math.unit(100, "km")
  14125. },
  14126. {
  14127. name: "Gigamacro",
  14128. height: math.unit(200, "megameters")
  14129. },
  14130. {
  14131. name: "Gigamacro+",
  14132. height: math.unit(1.5, "gigameters")
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(6 + 3 / 12, "feet"),
  14141. weight: math.unit(215, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/grynn/front.svg",
  14145. extra: 4627 / 4209,
  14146. bottom: 0.047
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Micro",
  14153. height: math.unit(6, "inches")
  14154. },
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(6 + 3 / 12, "feet"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Big",
  14162. height: math.unit(104, "feet")
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(944, "feet")
  14167. },
  14168. {
  14169. name: "Macro+",
  14170. height: math.unit(9480, "feet")
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(78752, "feet")
  14175. },
  14176. {
  14177. name: "Megamacro+",
  14178. height: math.unit(630128, "feet")
  14179. },
  14180. {
  14181. name: "Megamacro++",
  14182. height: math.unit(3150695, "feet")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(7 + 5 / 12, "feet"),
  14191. weight: math.unit(450, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/mocha-aura/front.svg",
  14195. extra: 1907 / 1817,
  14196. bottom: 0.04
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(7 + 5 / 12, "feet"),
  14201. weight: math.unit(450, "lb"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/mocha-aura/back.svg",
  14205. extra: 1900 / 1825,
  14206. bottom: 0.045
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Nano",
  14213. height: math.unit(1, "nm")
  14214. },
  14215. {
  14216. name: "Megamicro",
  14217. height: math.unit(1, "mm")
  14218. },
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(3, "inches")
  14222. },
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(7 + 5 / 12, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(30, "feet")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(3500, "feet")
  14235. },
  14236. {
  14237. name: "Teramacro",
  14238. height: math.unit(500000, "miles")
  14239. },
  14240. {
  14241. name: "Petamacro",
  14242. height: math.unit(50000000000000000, "parsecs")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/ilisha-devya/front.svg",
  14255. extra: 1053/1049,
  14256. bottom: 270/1323
  14257. }
  14258. },
  14259. back: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Back",
  14263. image: {
  14264. source: "./media/characters/ilisha-devya/back.svg",
  14265. extra: 1131/1128,
  14266. bottom: 39/1170
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(500, "feet"),
  14274. default: true
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(10, "miles")
  14279. },
  14280. {
  14281. name: "Gigamacro",
  14282. height: math.unit(100000, "miles")
  14283. },
  14284. {
  14285. name: "Examacro",
  14286. height: math.unit(1e9, "lightyears")
  14287. },
  14288. {
  14289. name: "Omniversal",
  14290. height: math.unit(1e33, "lightyears")
  14291. },
  14292. {
  14293. name: "Beyond Infinite",
  14294. height: math.unit(1e100, "lightyears")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14300. {
  14301. Side: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(150, "lb"),
  14304. name: "Side",
  14305. image: {
  14306. source: "./media/characters/mira/side.svg",
  14307. extra: 900 / 799,
  14308. bottom: 0.02
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Human Size",
  14315. height: math.unit(6, "feet")
  14316. },
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(100, "feet"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(10, "miles")
  14325. },
  14326. {
  14327. name: "Gigamacro",
  14328. height: math.unit(25000, "miles")
  14329. },
  14330. {
  14331. name: "Teramacro",
  14332. height: math.unit(300, "AU")
  14333. },
  14334. {
  14335. name: "Full Size",
  14336. height: math.unit(4.5e10, "lightyears")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/holly/front.svg",
  14349. extra: 639 / 606
  14350. }
  14351. },
  14352. back: {
  14353. height: math.unit(6, "feet"),
  14354. weight: math.unit(150, "lb"),
  14355. name: "Back",
  14356. image: {
  14357. source: "./media/characters/holly/back.svg",
  14358. extra: 623 / 598
  14359. }
  14360. },
  14361. frontWorking: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Front (Working)",
  14365. image: {
  14366. source: "./media/characters/holly/front-working.svg",
  14367. extra: 607 / 577,
  14368. bottom: 0.048
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(12 + 3 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(6, "feet"),
  14385. weight: math.unit(150, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/porter/front.svg",
  14389. extra: 1,
  14390. bottom: 0.01
  14391. }
  14392. },
  14393. frontRobes: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(150, "lb"),
  14396. name: "Front (Robes)",
  14397. image: {
  14398. source: "./media/characters/porter/front-robes.svg",
  14399. extra: 1.01,
  14400. bottom: 0.01
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(11 + 9 / 12, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14414. {
  14415. legendary: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Legendary",
  14419. image: {
  14420. source: "./media/characters/lucy/legendary.svg",
  14421. extra: 1355 / 1100,
  14422. bottom: 0.045
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Legendary",
  14429. height: math.unit(86882 * 2, "miles"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/drusilla/front.svg",
  14443. extra: 678 / 635,
  14444. bottom: 0.03
  14445. }
  14446. },
  14447. back: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(150, "lb"),
  14450. name: "Back",
  14451. image: {
  14452. source: "./media/characters/drusilla/back.svg",
  14453. extra: 678 / 635,
  14454. bottom: 0.005
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(100, "feet")
  14462. },
  14463. {
  14464. name: "Canon Height",
  14465. height: math.unit(2000, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(6, "feet"),
  14475. weight: math.unit(180, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/renard-thatch/front.svg",
  14479. extra: 2411 / 2275,
  14480. bottom: 0.01
  14481. }
  14482. },
  14483. frontPosing: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(180, "lb"),
  14486. name: "Front (Posing)",
  14487. image: {
  14488. source: "./media/characters/renard-thatch/front-posing.svg",
  14489. extra: 2381 / 2261,
  14490. bottom: 0.01
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(180, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/renard-thatch/back.svg",
  14499. extra: 2428 / 2288
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Micro",
  14506. height: math.unit(3, "inches")
  14507. },
  14508. {
  14509. name: "Default",
  14510. height: math.unit(6, "feet"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(75, "feet")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(1450, "feet"),
  14524. weight: math.unit(1.21e6, "tons"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/sekvra/front.svg",
  14528. extra: 1193/1190,
  14529. bottom: 78/1271
  14530. }
  14531. },
  14532. side: {
  14533. height: math.unit(1450, "feet"),
  14534. weight: math.unit(1.21e6, "tons"),
  14535. name: "Side",
  14536. image: {
  14537. source: "./media/characters/sekvra/side.svg",
  14538. extra: 1193/1190,
  14539. bottom: 52/1245
  14540. }
  14541. },
  14542. back: {
  14543. height: math.unit(1450, "feet"),
  14544. weight: math.unit(1.21e6, "tons"),
  14545. name: "Back",
  14546. image: {
  14547. source: "./media/characters/sekvra/back.svg",
  14548. extra: 1219/1216,
  14549. bottom: 21/1240
  14550. }
  14551. },
  14552. frontClothed: {
  14553. height: math.unit(1450, "feet"),
  14554. weight: math.unit(1.21e6, "tons"),
  14555. name: "Front (Clothed)",
  14556. image: {
  14557. source: "./media/characters/sekvra/front-clothed.svg",
  14558. extra: 1192/1189,
  14559. bottom: 79/1271
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(1450, "feet"),
  14567. default: true
  14568. },
  14569. {
  14570. name: "Megamacro",
  14571. height: math.unit(15000, "feet")
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(6, "feet"),
  14580. weight: math.unit(150, "lb"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/carmine/front.svg",
  14584. extra: 1,
  14585. bottom: 0.035
  14586. }
  14587. },
  14588. frontArmor: {
  14589. height: math.unit(6, "feet"),
  14590. weight: math.unit(150, "lb"),
  14591. name: "Front (Armor)",
  14592. image: {
  14593. source: "./media/characters/carmine/front-armor.svg",
  14594. extra: 1,
  14595. bottom: 0.035
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Large",
  14602. height: math.unit(1, "mile")
  14603. },
  14604. {
  14605. name: "Huge",
  14606. height: math.unit(40, "miles"),
  14607. default: true
  14608. },
  14609. {
  14610. name: "Colossal",
  14611. height: math.unit(2500, "miles")
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/elyssia/front.svg",
  14624. extra: 2201 / 2035,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. frontClothed: {
  14629. height: math.unit(6, "feet"),
  14630. weight: math.unit(150, "lb"),
  14631. name: "Front (Clothed)",
  14632. image: {
  14633. source: "./media/characters/elyssia/front-clothed.svg",
  14634. extra: 2201 / 2035,
  14635. bottom: 0.05
  14636. }
  14637. },
  14638. back: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Back",
  14642. image: {
  14643. source: "./media/characters/elyssia/back.svg",
  14644. extra: 2201 / 2035,
  14645. bottom: 0.013
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Smaller",
  14652. height: math.unit(150, "feet")
  14653. },
  14654. {
  14655. name: "Standard",
  14656. height: math.unit(1400, "feet"),
  14657. default: true
  14658. },
  14659. {
  14660. name: "Distracted",
  14661. height: math.unit(15000, "feet")
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(7 + 4/12, "feet"),
  14670. weight: math.unit(690, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/geno-maxwell/front.svg",
  14674. extra: 984/856,
  14675. bottom: 87/1071
  14676. }
  14677. },
  14678. back: {
  14679. height: math.unit(7 + 4/12, "feet"),
  14680. weight: math.unit(690, "lb"),
  14681. name: "Back",
  14682. image: {
  14683. source: "./media/characters/geno-maxwell/back.svg",
  14684. extra: 981/854,
  14685. bottom: 57/1038
  14686. }
  14687. },
  14688. frontCostume: {
  14689. height: math.unit(7 + 4/12, "feet"),
  14690. weight: math.unit(690, "lb"),
  14691. name: "Front (Costume)",
  14692. image: {
  14693. source: "./media/characters/geno-maxwell/front-costume.svg",
  14694. extra: 984/856,
  14695. bottom: 87/1071
  14696. }
  14697. },
  14698. backcostume: {
  14699. height: math.unit(7 + 4/12, "feet"),
  14700. weight: math.unit(690, "lb"),
  14701. name: "Back (Costume)",
  14702. image: {
  14703. source: "./media/characters/geno-maxwell/back-costume.svg",
  14704. extra: 981/854,
  14705. bottom: 57/1038
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Micro",
  14712. height: math.unit(3, "inches")
  14713. },
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(7 + 4 / 12, "feet"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(220, "feet")
  14722. },
  14723. {
  14724. name: "Megamacro",
  14725. height: math.unit(11, "miles")
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14731. {
  14732. front: {
  14733. height: math.unit(7 + 4/12, "feet"),
  14734. weight: math.unit(750, "lb"),
  14735. name: "Front",
  14736. image: {
  14737. source: "./media/characters/regena-maxwell/front.svg",
  14738. extra: 984/856,
  14739. bottom: 87/1071
  14740. }
  14741. },
  14742. back: {
  14743. height: math.unit(7 + 4/12, "feet"),
  14744. weight: math.unit(750, "lb"),
  14745. name: "Back",
  14746. image: {
  14747. source: "./media/characters/regena-maxwell/back.svg",
  14748. extra: 981/854,
  14749. bottom: 57/1038
  14750. }
  14751. },
  14752. frontCostume: {
  14753. height: math.unit(7 + 4/12, "feet"),
  14754. weight: math.unit(750, "lb"),
  14755. name: "Front (Costume)",
  14756. image: {
  14757. source: "./media/characters/regena-maxwell/front-costume.svg",
  14758. extra: 984/856,
  14759. bottom: 87/1071
  14760. }
  14761. },
  14762. backcostume: {
  14763. height: math.unit(7 + 4/12, "feet"),
  14764. weight: math.unit(750, "lb"),
  14765. name: "Back (Costume)",
  14766. image: {
  14767. source: "./media/characters/regena-maxwell/back-costume.svg",
  14768. extra: 981/854,
  14769. bottom: 57/1038
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(7 + 4 / 12, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(220, "feet")
  14782. },
  14783. {
  14784. name: "Megamacro",
  14785. height: math.unit(11, "miles")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(6, "feet"),
  14794. weight: math.unit(150, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14798. extra: 860 / 690,
  14799. bottom: 0.03
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(1.7, "meters"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(150, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/quilly/front.svg",
  14820. extra: 890 / 776
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Gigamacro",
  14827. height: math.unit(404090, "miles"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(7 + 8 / 12, "feet"),
  14837. weight: math.unit(350, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/tempest/front.svg",
  14841. extra: 1175 / 1086,
  14842. bottom: 0.02
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(7 + 8 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14856. {
  14857. side: {
  14858. height: math.unit(4 + 5 / 12, "feet"),
  14859. weight: math.unit(80, "lb"),
  14860. name: "Side",
  14861. image: {
  14862. source: "./media/characters/rodger/side.svg",
  14863. extra: 1235 / 1118
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Micro",
  14870. height: math.unit(1, "inch")
  14871. },
  14872. {
  14873. name: "Normal",
  14874. height: math.unit(4 + 5 / 12, "feet"),
  14875. default: true
  14876. },
  14877. {
  14878. name: "Macro",
  14879. height: math.unit(120, "feet")
  14880. },
  14881. ]
  14882. ))
  14883. characterMakers.push(() => makeCharacter(
  14884. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14885. {
  14886. front: {
  14887. height: math.unit(6, "feet"),
  14888. weight: math.unit(150, "lb"),
  14889. name: "Front",
  14890. image: {
  14891. source: "./media/characters/danyel/front.svg",
  14892. extra: 1185 / 1123,
  14893. bottom: 0.05
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Shrunken",
  14900. height: math.unit(0.5, "mm")
  14901. },
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(1, "mm"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Upsized",
  14909. height: math.unit(5 + 5 / 12, "feet")
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(5 + 6 / 12, "feet"),
  14918. weight: math.unit(200, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/vivian-bijoux/front.svg",
  14922. extra: 1217/1209,
  14923. bottom: 76/1293
  14924. }
  14925. },
  14926. back: {
  14927. height: math.unit(5 + 6 / 12, "feet"),
  14928. weight: math.unit(200, "lb"),
  14929. name: "Back",
  14930. image: {
  14931. source: "./media/characters/vivian-bijoux/back.svg",
  14932. extra: 1214/1208,
  14933. bottom: 51/1265
  14934. }
  14935. },
  14936. dressed: {
  14937. height: math.unit(5 + 6 / 12, "feet"),
  14938. weight: math.unit(200, "lb"),
  14939. name: "Dressed",
  14940. image: {
  14941. source: "./media/characters/vivian-bijoux/dressed.svg",
  14942. extra: 1217/1209,
  14943. bottom: 76/1293
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(5 + 6 / 12, "feet"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Bad Dream",
  14955. height: math.unit(500, "feet")
  14956. },
  14957. {
  14958. name: "Nightmare",
  14959. height: math.unit(500, "miles")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(6 + 1 / 12, "feet"),
  14968. weight: math.unit(260, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/zeta/front.svg",
  14972. extra: 1968 / 1889,
  14973. bottom: 0.06
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(6 + 1 / 12, "feet"),
  14978. weight: math.unit(260, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/zeta/back.svg",
  14982. extra: 1944 / 1858,
  14983. bottom: 0.03
  14984. }
  14985. },
  14986. hand: {
  14987. height: math.unit(1.112, "feet"),
  14988. name: "Hand",
  14989. image: {
  14990. source: "./media/characters/zeta/hand.svg"
  14991. }
  14992. },
  14993. foot: {
  14994. height: math.unit(1.48, "feet"),
  14995. name: "Foot",
  14996. image: {
  14997. source: "./media/characters/zeta/foot.svg"
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Micro",
  15004. height: math.unit(6, "inches")
  15005. },
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(6 + 1 / 12, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Macro",
  15013. height: math.unit(20, "feet")
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15019. {
  15020. front: {
  15021. height: math.unit(6, "feet"),
  15022. weight: math.unit(150, "lb"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/jamie-larsen/front.svg",
  15026. extra: 962 / 933,
  15027. bottom: 0.02
  15028. }
  15029. },
  15030. back: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Back",
  15034. image: {
  15035. source: "./media/characters/jamie-larsen/back.svg",
  15036. extra: 997 / 946
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Macro",
  15043. height: math.unit(28 + 7 / 12, "feet"),
  15044. default: true
  15045. },
  15046. {
  15047. name: "Macro+",
  15048. height: math.unit(180, "feet")
  15049. },
  15050. {
  15051. name: "Megamacro",
  15052. height: math.unit(10, "miles")
  15053. },
  15054. {
  15055. name: "Gigamacro",
  15056. height: math.unit(200000, "miles")
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(120, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/vance/front.svg",
  15069. extra: 1980 / 1890,
  15070. bottom: 0.09
  15071. }
  15072. },
  15073. back: {
  15074. height: math.unit(6, "feet"),
  15075. weight: math.unit(120, "lb"),
  15076. name: "Back",
  15077. image: {
  15078. source: "./media/characters/vance/back.svg",
  15079. extra: 2081 / 1994,
  15080. bottom: 0.014
  15081. }
  15082. },
  15083. hand: {
  15084. height: math.unit(0.88, "feet"),
  15085. name: "Hand",
  15086. image: {
  15087. source: "./media/characters/vance/hand.svg"
  15088. }
  15089. },
  15090. foot: {
  15091. height: math.unit(0.64, "feet"),
  15092. name: "Foot",
  15093. image: {
  15094. source: "./media/characters/vance/foot.svg"
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Small",
  15101. height: math.unit(90, "feet"),
  15102. default: true
  15103. },
  15104. {
  15105. name: "Macro",
  15106. height: math.unit(100, "meters")
  15107. },
  15108. {
  15109. name: "Megamacro",
  15110. height: math.unit(15, "miles")
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15116. {
  15117. front: {
  15118. height: math.unit(6, "feet"),
  15119. weight: math.unit(180, "lb"),
  15120. name: "Front",
  15121. image: {
  15122. source: "./media/characters/xochitl/front.svg",
  15123. extra: 2297 / 2261,
  15124. bottom: 0.065
  15125. }
  15126. },
  15127. back: {
  15128. height: math.unit(6, "feet"),
  15129. weight: math.unit(180, "lb"),
  15130. name: "Back",
  15131. image: {
  15132. source: "./media/characters/xochitl/back.svg",
  15133. extra: 2386 / 2354,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. foot: {
  15138. height: math.unit(6 / 5 * 1.15, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Foot",
  15141. image: {
  15142. source: "./media/characters/xochitl/foot.svg"
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Macro",
  15149. height: math.unit(80, "feet")
  15150. },
  15151. {
  15152. name: "Macro+",
  15153. height: math.unit(400, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Gigamacro",
  15158. height: math.unit(80000, "miles")
  15159. },
  15160. {
  15161. name: "Gigamacro+",
  15162. height: math.unit(400000, "miles")
  15163. },
  15164. {
  15165. name: "Teramacro",
  15166. height: math.unit(300, "AU")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/vincent/front.svg",
  15179. extra: 1130 / 1080,
  15180. bottom: 0.055
  15181. }
  15182. },
  15183. beak: {
  15184. height: math.unit(6 * 0.1, "feet"),
  15185. name: "Beak",
  15186. image: {
  15187. source: "./media/characters/vincent/beak.svg"
  15188. }
  15189. },
  15190. hand: {
  15191. height: math.unit(6 * 0.85, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Hand",
  15194. image: {
  15195. source: "./media/characters/vincent/hand.svg"
  15196. }
  15197. },
  15198. foot: {
  15199. height: math.unit(6 * 0.19, "feet"),
  15200. weight: math.unit(150, "lb"),
  15201. name: "Foot",
  15202. image: {
  15203. source: "./media/characters/vincent/foot.svg"
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Base",
  15210. height: math.unit(6 + 5 / 12, "feet"),
  15211. default: true
  15212. },
  15213. {
  15214. name: "Macro",
  15215. height: math.unit(300, "feet")
  15216. },
  15217. {
  15218. name: "Megamacro",
  15219. height: math.unit(2, "miles")
  15220. },
  15221. {
  15222. name: "Gigamacro",
  15223. height: math.unit(1000, "miles")
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(2, "meters"),
  15232. weight: math.unit(500, "kg"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/coatl/front.svg",
  15236. extra: 3948 / 3500,
  15237. bottom: 0.082
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(4, "meters")
  15245. },
  15246. {
  15247. name: "Macro",
  15248. height: math.unit(100, "meters"),
  15249. default: true
  15250. },
  15251. {
  15252. name: "Macro+",
  15253. height: math.unit(300, "meters")
  15254. },
  15255. {
  15256. name: "Megamacro",
  15257. height: math.unit(3, "gigameters")
  15258. },
  15259. {
  15260. name: "Megamacro+",
  15261. height: math.unit(300, "terameters")
  15262. },
  15263. {
  15264. name: "Megamacro++",
  15265. height: math.unit(3, "lightyears")
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(50, "kg"),
  15275. name: "front",
  15276. image: {
  15277. source: "./media/characters/shiroryu/front.svg",
  15278. extra: 1990 / 1935
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Mortal Mingling",
  15285. height: math.unit(3, "meters")
  15286. },
  15287. {
  15288. name: "Kaiju-ish",
  15289. height: math.unit(250, "meters")
  15290. },
  15291. {
  15292. name: "Somewhat Godly",
  15293. height: math.unit(400, "km"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Planetary",
  15298. height: math.unit(300, "megameters")
  15299. },
  15300. {
  15301. name: "Galaxy-dwarfing",
  15302. height: math.unit(450, "kiloparsecs")
  15303. },
  15304. {
  15305. name: "Universe Eater",
  15306. height: math.unit(150, "gigaparsecs")
  15307. },
  15308. {
  15309. name: "Almost Immeasurable",
  15310. height: math.unit(1.3e266, "yottaparsecs")
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(150, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/umeko/front.svg",
  15323. extra: 1,
  15324. bottom: 0.019
  15325. }
  15326. },
  15327. frontArmored: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Front (Armored)",
  15331. image: {
  15332. source: "./media/characters/umeko/front-armored.svg",
  15333. extra: 1,
  15334. bottom: 0.021
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Macro",
  15341. height: math.unit(220, "feet"),
  15342. default: true
  15343. },
  15344. {
  15345. name: "Guardian Dragon",
  15346. height: math.unit(50, "miles")
  15347. },
  15348. {
  15349. name: "Cosmic",
  15350. height: math.unit(800000, "miles")
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(150, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/cassidy/front.svg",
  15363. extra: 810/808,
  15364. bottom: 41/851
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Canon Height",
  15371. height: math.unit(120, "feet"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Macro+",
  15376. height: math.unit(400, "feet")
  15377. },
  15378. {
  15379. name: "Macro++",
  15380. height: math.unit(4000, "feet")
  15381. },
  15382. {
  15383. name: "Megamacro",
  15384. height: math.unit(3, "miles")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/isaac/front.svg",
  15397. extra: 896 / 815,
  15398. bottom: 0.11
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Human Size",
  15405. height: math.unit(8, "feet"),
  15406. default: true
  15407. },
  15408. {
  15409. name: "Macro",
  15410. height: math.unit(400, "feet")
  15411. },
  15412. {
  15413. name: "Megamacro",
  15414. height: math.unit(50, "miles")
  15415. },
  15416. {
  15417. name: "Canon Height",
  15418. height: math.unit(200, "AU")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(72, "kg"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/sleekit/front.svg",
  15431. extra: 4693 / 4487,
  15432. bottom: 0.012
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Minimum Height",
  15439. height: math.unit(10, "meters")
  15440. },
  15441. {
  15442. name: "Smaller",
  15443. height: math.unit(25, "meters")
  15444. },
  15445. {
  15446. name: "Larger",
  15447. height: math.unit(38, "meters"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Maximum height",
  15452. height: math.unit(100, "meters")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(150, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/nillia/front.svg",
  15465. extra: 2195 / 2037,
  15466. bottom: 0.005
  15467. }
  15468. },
  15469. back: {
  15470. height: math.unit(6, "feet"),
  15471. weight: math.unit(150, "lb"),
  15472. name: "Back",
  15473. image: {
  15474. source: "./media/characters/nillia/back.svg",
  15475. extra: 2195 / 2037,
  15476. bottom: 0.005
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Canon Height",
  15483. height: math.unit(489, "feet"),
  15484. default: true
  15485. }
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/mesmyriza/front.svg",
  15497. extra: 2067 / 1784,
  15498. bottom: 0.035
  15499. }
  15500. },
  15501. foot: {
  15502. height: math.unit(6 / (250 / 35), "feet"),
  15503. name: "Foot",
  15504. image: {
  15505. source: "./media/characters/mesmyriza/foot.svg"
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(457, "meters"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(8, "megameters")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(250, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/saudade/front.svg",
  15530. extra: 1172 / 1139,
  15531. bottom: 0.035
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Micro",
  15538. height: math.unit(3, "inches")
  15539. },
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(6, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macro",
  15547. height: math.unit(50, "feet")
  15548. },
  15549. {
  15550. name: "Megamacro",
  15551. height: math.unit(2800, "feet")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(5 + 4 / 12, "feet"),
  15560. weight: math.unit(100, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/keireer/front.svg",
  15564. extra: 716 / 666,
  15565. bottom: 0.05
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(5 + 4 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(5.5, "feet"),
  15582. weight: math.unit(90, "kg"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/mirja/front.svg",
  15586. extra: 1452/1262,
  15587. bottom: 67/1519
  15588. }
  15589. },
  15590. frontDressed: {
  15591. height: math.unit(5.5, "feet"),
  15592. weight: math.unit(90, "lb"),
  15593. name: "Front (Dressed)",
  15594. image: {
  15595. source: "./media/characters/mirja/dressed.svg",
  15596. extra: 1452/1262,
  15597. bottom: 67/1519
  15598. }
  15599. },
  15600. back: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(90, "lb"),
  15603. name: "Back",
  15604. image: {
  15605. source: "./media/characters/mirja/back.svg",
  15606. extra: 1892/1795,
  15607. bottom: 48/1940
  15608. }
  15609. },
  15610. maw: {
  15611. height: math.unit(1.312, "feet"),
  15612. name: "Maw",
  15613. image: {
  15614. source: "./media/characters/mirja/maw.svg"
  15615. }
  15616. },
  15617. paw: {
  15618. height: math.unit(1.15, "feet"),
  15619. name: "Paw",
  15620. image: {
  15621. source: "./media/characters/mirja/paw.svg"
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "\"Incognito\"",
  15628. height: math.unit(3, "meters")
  15629. },
  15630. {
  15631. name: "Strolling Size",
  15632. height: math.unit(15, "km")
  15633. },
  15634. {
  15635. name: "Larger Strolling Size",
  15636. height: math.unit(400, "km")
  15637. },
  15638. {
  15639. name: "Preferred Size",
  15640. height: math.unit(5000, "km"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "True Size",
  15645. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(15, "feet"),
  15654. weight: math.unit(880, "kg"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/nightraver/front.svg",
  15658. extra: 2444 / 2160,
  15659. bottom: 0.027
  15660. }
  15661. },
  15662. back: {
  15663. height: math.unit(15, "feet"),
  15664. weight: math.unit(880, "kg"),
  15665. name: "Back",
  15666. image: {
  15667. source: "./media/characters/nightraver/back.svg",
  15668. extra: 2309 / 2180,
  15669. bottom: 0.005
  15670. }
  15671. },
  15672. sole: {
  15673. height: math.unit(2.878, "feet"),
  15674. name: "Sole",
  15675. image: {
  15676. source: "./media/characters/nightraver/sole.svg"
  15677. }
  15678. },
  15679. foot: {
  15680. height: math.unit(2.285, "feet"),
  15681. name: "Foot",
  15682. image: {
  15683. source: "./media/characters/nightraver/foot.svg"
  15684. }
  15685. },
  15686. maw: {
  15687. height: math.unit(2.67, "feet"),
  15688. name: "Maw",
  15689. image: {
  15690. source: "./media/characters/nightraver/maw.svg"
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Micro",
  15697. height: math.unit(1, "cm")
  15698. },
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(15, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Macro",
  15706. height: math.unit(300, "feet")
  15707. },
  15708. {
  15709. name: "Megamacro",
  15710. height: math.unit(300, "miles")
  15711. },
  15712. {
  15713. name: "Gigamacro",
  15714. height: math.unit(10000, "miles")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15720. {
  15721. side: {
  15722. height: math.unit(2, "inches"),
  15723. weight: math.unit(5, "grams"),
  15724. name: "Side",
  15725. image: {
  15726. source: "./media/characters/arc/side.svg"
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Micro",
  15733. height: math.unit(2, "inches"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(1.1938, "meters"),
  15743. weight: math.unit(54, "kg"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/nebula-shahar/front.svg",
  15747. extra: 1642 / 1436,
  15748. bottom: 0.06
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Megamicro",
  15755. height: math.unit(0.3, "mm")
  15756. },
  15757. {
  15758. name: "Micro",
  15759. height: math.unit(3, "cm")
  15760. },
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(138, "cm"),
  15764. default: true
  15765. },
  15766. {
  15767. name: "Macro",
  15768. height: math.unit(30, "m")
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(5.24, "feet"),
  15777. weight: math.unit(150, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/shayla/front.svg",
  15781. extra: 1512 / 1414,
  15782. bottom: 0.01
  15783. }
  15784. },
  15785. back: {
  15786. height: math.unit(5.24, "feet"),
  15787. weight: math.unit(150, "lb"),
  15788. name: "Back",
  15789. image: {
  15790. source: "./media/characters/shayla/back.svg",
  15791. extra: 1512 / 1414
  15792. }
  15793. },
  15794. hand: {
  15795. height: math.unit(0.7781496062992126, "feet"),
  15796. name: "Hand",
  15797. image: {
  15798. source: "./media/characters/shayla/hand.svg"
  15799. }
  15800. },
  15801. foot: {
  15802. height: math.unit(1.4206036745406823, "feet"),
  15803. name: "Foot",
  15804. image: {
  15805. source: "./media/characters/shayla/foot.svg"
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Micro",
  15812. height: math.unit(0.32, "feet")
  15813. },
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(5.24, "feet"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Macro",
  15821. height: math.unit(492.12, "feet")
  15822. },
  15823. {
  15824. name: "Megamacro",
  15825. height: math.unit(186.41, "miles")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(2.2, "m"),
  15834. weight: math.unit(120, "kg"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/pia-jr/front.svg",
  15838. extra: 1000 / 970,
  15839. bottom: 0.035
  15840. }
  15841. },
  15842. hand: {
  15843. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15844. name: "Hand",
  15845. image: {
  15846. source: "./media/characters/pia-jr/hand.svg"
  15847. }
  15848. },
  15849. paw: {
  15850. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15851. name: "Paw",
  15852. image: {
  15853. source: "./media/characters/pia-jr/paw.svg"
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Micro",
  15860. height: math.unit(1.2, "cm")
  15861. },
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(2.2, "m"),
  15865. default: true
  15866. },
  15867. {
  15868. name: "Macro",
  15869. height: math.unit(180, "m")
  15870. },
  15871. {
  15872. name: "Megamacro",
  15873. height: math.unit(420, "km")
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(2, "m"),
  15882. weight: math.unit(115, "kg"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/pia-sr/front.svg",
  15886. extra: 760 / 730,
  15887. bottom: 0.015
  15888. }
  15889. },
  15890. back: {
  15891. height: math.unit(2, "m"),
  15892. weight: math.unit(115, "kg"),
  15893. name: "Back",
  15894. image: {
  15895. source: "./media/characters/pia-sr/back.svg",
  15896. extra: 760 / 730,
  15897. bottom: 0.01
  15898. }
  15899. },
  15900. hand: {
  15901. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15902. name: "Hand",
  15903. image: {
  15904. source: "./media/characters/pia-sr/hand.svg"
  15905. }
  15906. },
  15907. foot: {
  15908. height: math.unit(1.83, "feet"),
  15909. name: "Foot",
  15910. image: {
  15911. source: "./media/characters/pia-sr/foot.svg"
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Micro",
  15918. height: math.unit(88, "mm")
  15919. },
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(2, "m"),
  15923. default: true
  15924. },
  15925. {
  15926. name: "Macro",
  15927. height: math.unit(200, "m")
  15928. },
  15929. {
  15930. name: "Megamacro",
  15931. height: math.unit(420, "km")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(8 + 2 / 12, "feet"),
  15940. weight: math.unit(300, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/kibibyte/front.svg",
  15944. extra: 2221 / 2098,
  15945. bottom: 0.04
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(8 + 2 / 12, "feet"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Socialable Macro",
  15957. height: math.unit(50, "feet")
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(300, "feet")
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(500, "miles")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/felix/front.svg",
  15978. extra: 762 / 722,
  15979. bottom: 0.02
  15980. }
  15981. },
  15982. frontClothed: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Front (Clothed)",
  15986. image: {
  15987. source: "./media/characters/felix/front-clothed.svg",
  15988. extra: 762 / 722,
  15989. bottom: 0.02
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(6 + 8 / 12, "feet"),
  15997. default: true
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(2600, "feet")
  16002. },
  16003. {
  16004. name: "Megamacro",
  16005. height: math.unit(450, "miles")
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(6 + 1 / 12, "feet"),
  16014. weight: math.unit(250, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/tobo/front.svg",
  16018. extra: 608 / 586,
  16019. bottom: 0.023
  16020. }
  16021. },
  16022. back: {
  16023. height: math.unit(6 + 1 / 12, "feet"),
  16024. weight: math.unit(250, "lb"),
  16025. name: "Back",
  16026. image: {
  16027. source: "./media/characters/tobo/back.svg",
  16028. extra: 608 / 586
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Nano",
  16035. height: math.unit(2, "nm")
  16036. },
  16037. {
  16038. name: "Megamicro",
  16039. height: math.unit(0.1, "mm")
  16040. },
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(1, "inch"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Human-sized",
  16048. height: math.unit(6 + 1 / 12, "feet")
  16049. },
  16050. {
  16051. name: "Macro",
  16052. height: math.unit(250, "feet")
  16053. },
  16054. {
  16055. name: "Megamacro",
  16056. height: math.unit(75, "miles")
  16057. },
  16058. {
  16059. name: "Texas-sized",
  16060. height: math.unit(750, "miles")
  16061. },
  16062. {
  16063. name: "Teramacro",
  16064. height: math.unit(50000, "miles")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6, "feet"),
  16073. weight: math.unit(269, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/danny-kapowsky/front.svg",
  16077. extra: 766 / 736,
  16078. bottom: 0.044
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(6, "feet"),
  16083. weight: math.unit(269, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/danny-kapowsky/back.svg",
  16087. extra: 797 / 760,
  16088. bottom: 0.025
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(150, "feet"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Macro+",
  16100. height: math.unit(200, "feet")
  16101. },
  16102. {
  16103. name: "Macro++",
  16104. height: math.unit(300, "feet")
  16105. },
  16106. {
  16107. name: "Macro+++",
  16108. height: math.unit(400, "feet")
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16114. {
  16115. side: {
  16116. height: math.unit(6, "feet"),
  16117. weight: math.unit(170, "lb"),
  16118. name: "Side",
  16119. image: {
  16120. source: "./media/characters/finn/side.svg",
  16121. extra: 1953 / 1807,
  16122. bottom: 0.057
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Megamacro",
  16129. height: math.unit(14445, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(5 + 6 / 12, "feet"),
  16139. weight: math.unit(125, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/roy/front.svg",
  16143. extra: 1,
  16144. bottom: 0.11
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Micro",
  16151. height: math.unit(3, "inches"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(5 + 6 / 12, "feet")
  16157. },
  16158. {
  16159. name: "Lesser Macro",
  16160. height: math.unit(60, "feet")
  16161. },
  16162. {
  16163. name: "Greater Macro",
  16164. height: math.unit(120, "feet")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(6, "feet"),
  16173. weight: math.unit(100, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/aevsivs/front.svg",
  16177. extra: 1,
  16178. bottom: 0.03
  16179. }
  16180. },
  16181. back: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(100, "lb"),
  16184. name: "Back",
  16185. image: {
  16186. source: "./media/characters/aevsivs/back.svg"
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(2, "inches"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(5, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(5 + 7 / 12, "feet"),
  16207. weight: math.unit(159, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/hildegard/front.svg",
  16211. extra: 289 / 269,
  16212. bottom: 7.63 / 297.8
  16213. }
  16214. },
  16215. back: {
  16216. height: math.unit(5 + 7 / 12, "feet"),
  16217. weight: math.unit(159, "lb"),
  16218. name: "Back",
  16219. image: {
  16220. source: "./media/characters/hildegard/back.svg",
  16221. extra: 280 / 260,
  16222. bottom: 2.3 / 282
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(5 + 7 / 12, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16236. {
  16237. bernard: {
  16238. height: math.unit(2 + 7 / 12, "feet"),
  16239. weight: math.unit(66, "lb"),
  16240. name: "Bernard",
  16241. rename: true,
  16242. image: {
  16243. source: "./media/characters/bernard-wilder/bernard.svg",
  16244. extra: 192 / 128,
  16245. bottom: 0.05
  16246. }
  16247. },
  16248. wilder: {
  16249. height: math.unit(5 + 8 / 12, "feet"),
  16250. weight: math.unit(143, "lb"),
  16251. name: "Wilder",
  16252. rename: true,
  16253. image: {
  16254. source: "./media/characters/bernard-wilder/wilder.svg",
  16255. extra: 361 / 312,
  16256. bottom: 0.02
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(2 + 7 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16270. {
  16271. anthro: {
  16272. height: math.unit(6 + 1 / 12, "feet"),
  16273. weight: math.unit(155, "lb"),
  16274. name: "Anthro",
  16275. image: {
  16276. source: "./media/characters/hearth/anthro.svg",
  16277. extra: 1178/1136,
  16278. bottom: 28/1206
  16279. }
  16280. },
  16281. feral: {
  16282. height: math.unit(3.78, "feet"),
  16283. weight: math.unit(35, "kg"),
  16284. name: "Feral",
  16285. image: {
  16286. source: "./media/characters/hearth/feral.svg",
  16287. extra: 153 / 135,
  16288. bottom: 0.03
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(6 + 1 / 12, "feet"),
  16296. default: true
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(6, "feet"),
  16305. weight: math.unit(182, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/ingrid/front.svg",
  16309. extra: 294 / 268,
  16310. bottom: 0.027
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(6, "feet"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16324. {
  16325. eevee: {
  16326. height: math.unit(2 + 10 / 12, "feet"),
  16327. weight: math.unit(86, "lb"),
  16328. name: "Malgam",
  16329. image: {
  16330. source: "./media/characters/malgam/eevee.svg",
  16331. extra: 952/784,
  16332. bottom: 38/990
  16333. }
  16334. },
  16335. sylveon: {
  16336. height: math.unit(4, "feet"),
  16337. weight: math.unit(101, "lb"),
  16338. name: "Future Malgam",
  16339. rename: true,
  16340. image: {
  16341. source: "./media/characters/malgam/sylveon.svg",
  16342. extra: 371 / 325,
  16343. bottom: 0.015
  16344. }
  16345. },
  16346. gigantamax: {
  16347. height: math.unit(50, "feet"),
  16348. name: "Gigantamax Malgam",
  16349. rename: true,
  16350. image: {
  16351. source: "./media/characters/malgam/gigantamax.svg"
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(2 + 10 / 12, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(5 + 11 / 12, "feet"),
  16368. weight: math.unit(188, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/fleur/front.svg",
  16372. extra: 309 / 283,
  16373. bottom: 0.007
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(5 + 11 / 12, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(5 + 4 / 12, "feet"),
  16390. weight: math.unit(122, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/jude/front.svg",
  16394. extra: 288 / 273,
  16395. bottom: 0.03
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(5 + 4 / 12, "feet"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(5 + 11 / 12, "feet"),
  16412. weight: math.unit(190, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/seara/front.svg",
  16416. extra: 1,
  16417. bottom: 0.05
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Normal",
  16424. height: math.unit(5 + 11 / 12, "feet"),
  16425. default: true
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(16 + 5 / 12, "feet"),
  16434. weight: math.unit(524, "lb"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/caspian-lugia/front.svg",
  16438. extra: 1,
  16439. bottom: 0.04
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(16 + 5 / 12, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(5 + 7 / 12, "feet"),
  16456. weight: math.unit(170, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/mika/front.svg",
  16460. extra: 1,
  16461. bottom: 0.016
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Normal",
  16468. height: math.unit(5 + 7 / 12, "feet"),
  16469. default: true
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(6 + 2 / 12, "feet"),
  16478. weight: math.unit(268, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/sol/front.svg",
  16482. extra: 247 / 231,
  16483. bottom: 0.05
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(6 + 2 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16497. {
  16498. buizel: {
  16499. height: math.unit(2 + 5 / 12, "feet"),
  16500. weight: math.unit(87, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/umiko/buizel.svg",
  16504. extra: 172 / 157,
  16505. bottom: 0.01
  16506. },
  16507. form: "buizel",
  16508. default: true
  16509. },
  16510. floatzel: {
  16511. height: math.unit(5 + 9 / 12, "feet"),
  16512. weight: math.unit(250, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/umiko/floatzel.svg",
  16516. extra: 1076/1006,
  16517. bottom: 15/1091
  16518. },
  16519. form: "floatzel",
  16520. default: true
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(2 + 5 / 12, "feet"),
  16527. form: "buizel",
  16528. default: true
  16529. },
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(5 + 9 / 12, "feet"),
  16533. form: "floatzel",
  16534. default: true
  16535. },
  16536. ],
  16537. {
  16538. "buizel": {
  16539. name: "Buizel"
  16540. },
  16541. "floatzel": {
  16542. name: "Floatzel",
  16543. default: true
  16544. }
  16545. }
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(6 + 2 / 12, "feet"),
  16552. weight: math.unit(146, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/iliac/front.svg",
  16556. extra: 389 / 365,
  16557. bottom: 0.035
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(6 + 2 / 12, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(170, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/topaz/front.svg",
  16578. extra: 317 / 303,
  16579. bottom: 0.055
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(6, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(5 + 11 / 12, "feet"),
  16596. weight: math.unit(144, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/gabriel/front.svg",
  16600. extra: 285 / 262,
  16601. bottom: 0.004
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(5 + 11 / 12, "feet"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16615. {
  16616. side: {
  16617. height: math.unit(6 + 5 / 12, "feet"),
  16618. weight: math.unit(300, "lb"),
  16619. name: "Side",
  16620. image: {
  16621. source: "./media/characters/tempest-suicune/side.svg",
  16622. extra: 195 / 154,
  16623. bottom: 0.04
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(6 + 5 / 12, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(7 + 2 / 12, "feet"),
  16640. weight: math.unit(322, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/vulcan/front.svg",
  16644. extra: 154 / 147,
  16645. bottom: 0.04
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(7 + 2 / 12, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(5 + 10 / 12, "feet"),
  16662. weight: math.unit(264, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/gault/front.svg",
  16666. extra: 161 / 140,
  16667. bottom: 0.028
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(5 + 10 / 12, "feet"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/shard/front.svg",
  16688. extra: 273 / 238,
  16689. bottom: 0.02
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(3 + 6 / 12, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 11 / 12, "feet"),
  16706. weight: math.unit(146, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/ashe/front.svg",
  16710. extra: 400 / 373,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(5 + 11 / 12, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(5 + 5 / 12, "feet"),
  16728. weight: math.unit(135, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/beatrix/front.svg",
  16732. extra: 392 / 379,
  16733. bottom: 0.01
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(6, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(6 + 2/12, "feet"),
  16750. weight: math.unit(135, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/ignatius/front.svg",
  16754. extra: 1380/1259,
  16755. bottom: 27/1407
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(6 + 2/12, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(6 + 2 / 12, "feet"),
  16772. weight: math.unit(138, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/mei-li/front.svg",
  16776. extra: 237 / 229,
  16777. bottom: 0.03
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(6 + 2 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(2 + 4 / 12, "feet"),
  16794. weight: math.unit(62, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/puru/front.svg",
  16798. extra: 206 / 149,
  16799. bottom: 0.06
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(2 + 4 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16813. {
  16814. anthro: {
  16815. height: math.unit(5 + 8/12, "feet"),
  16816. weight: math.unit(200, "lb"),
  16817. energyNeed: math.unit(2000, "kcal"),
  16818. name: "Anthro",
  16819. image: {
  16820. source: "./media/characters/kee/anthro.svg",
  16821. extra: 3251/3184,
  16822. bottom: 250/3501
  16823. }
  16824. },
  16825. taur: {
  16826. height: math.unit(11, "feet"),
  16827. weight: math.unit(500, "lb"),
  16828. energyNeed: math.unit(5000, "kcal"),
  16829. name: "Taur",
  16830. image: {
  16831. source: "./media/characters/kee/taur.svg",
  16832. extra: 1362/1320,
  16833. bottom: 83/1445
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(5 + 8/12, "feet"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(35, "feet")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16851. {
  16852. anthro: {
  16853. height: math.unit(7, "feet"),
  16854. weight: math.unit(190, "lb"),
  16855. name: "Anthro",
  16856. image: {
  16857. source: "./media/characters/cobalt-dracha/anthro.svg",
  16858. extra: 231 / 225,
  16859. bottom: 0.04
  16860. }
  16861. },
  16862. feral: {
  16863. height: math.unit(9 + 7 / 12, "feet"),
  16864. weight: math.unit(294, "lb"),
  16865. name: "Feral",
  16866. image: {
  16867. source: "./media/characters/cobalt-dracha/feral.svg",
  16868. extra: 692 / 633,
  16869. bottom: 0.05
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(7, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16883. {
  16884. fallen: {
  16885. height: math.unit(11 + 8 / 12, "feet"),
  16886. weight: math.unit(485, "lb"),
  16887. name: "Java (Fallen)",
  16888. rename: true,
  16889. image: {
  16890. source: "./media/characters/java/fallen.svg",
  16891. extra: 226 / 208,
  16892. bottom: 0.005
  16893. }
  16894. },
  16895. godkin: {
  16896. height: math.unit(10 + 6 / 12, "feet"),
  16897. weight: math.unit(328, "lb"),
  16898. name: "Java (Godkin)",
  16899. rename: true,
  16900. image: {
  16901. source: "./media/characters/java/godkin.svg",
  16902. extra: 1104/1068,
  16903. bottom: 36/1140
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(11 + 8 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(5 + 9 / 12, "feet"),
  16920. weight: math.unit(170, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/purna/front.svg",
  16924. extra: 239 / 229,
  16925. bottom: 0.01
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(5 + 9 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(5 + 9 / 12, "feet"),
  16942. weight: math.unit(142, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/kuva/front.svg",
  16946. extra: 281 / 271,
  16947. bottom: 0.006
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(5 + 9 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16961. {
  16962. anthro: {
  16963. height: math.unit(9 + 2 / 12, "feet"),
  16964. weight: math.unit(270, "lb"),
  16965. name: "Anthro",
  16966. image: {
  16967. source: "./media/characters/embra/anthro.svg",
  16968. extra: 200 / 187,
  16969. bottom: 0.02
  16970. }
  16971. },
  16972. feral: {
  16973. height: math.unit(18 + 8 / 12, "feet"),
  16974. weight: math.unit(576, "lb"),
  16975. name: "Feral",
  16976. image: {
  16977. source: "./media/characters/embra/feral.svg",
  16978. extra: 152 / 137,
  16979. bottom: 0.037
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(9 + 2 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16993. {
  16994. anthro: {
  16995. height: math.unit(10 + 9 / 12, "feet"),
  16996. weight: math.unit(224, "lb"),
  16997. name: "Anthro",
  16998. image: {
  16999. source: "./media/characters/grottos/anthro.svg",
  17000. extra: 350 / 332,
  17001. bottom: 0.045
  17002. }
  17003. },
  17004. feral: {
  17005. height: math.unit(20 + 7 / 12, "feet"),
  17006. weight: math.unit(629, "lb"),
  17007. name: "Feral",
  17008. image: {
  17009. source: "./media/characters/grottos/feral.svg",
  17010. extra: 207 / 190,
  17011. bottom: 0.05
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(10 + 9 / 12, "feet"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17025. {
  17026. anthro: {
  17027. height: math.unit(9 + 6 / 12, "feet"),
  17028. weight: math.unit(298, "lb"),
  17029. name: "Anthro",
  17030. image: {
  17031. source: "./media/characters/frifna/anthro.svg",
  17032. extra: 282 / 269,
  17033. bottom: 0.015
  17034. }
  17035. },
  17036. feral: {
  17037. height: math.unit(16 + 2 / 12, "feet"),
  17038. weight: math.unit(624, "lb"),
  17039. name: "Feral",
  17040. image: {
  17041. source: "./media/characters/frifna/feral.svg"
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(9 + 6 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(6 + 2 / 12, "feet"),
  17058. weight: math.unit(168, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/elise/front.svg",
  17062. extra: 276 / 271
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(6 + 2 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(5 + 10 / 12, "feet"),
  17079. weight: math.unit(210, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/glade/front.svg",
  17083. extra: 258 / 247,
  17084. bottom: 0.008
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(5 + 10 / 12, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(5 + 10 / 12, "feet"),
  17101. weight: math.unit(129, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/rina/front.svg",
  17105. extra: 266 / 255,
  17106. bottom: 0.005
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(5 + 10 / 12, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(6 + 1 / 12, "feet"),
  17123. weight: math.unit(192, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/veronica/front.svg",
  17127. extra: 319 / 309,
  17128. bottom: 0.005
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(6 + 1 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(9 + 3 / 12, "feet"),
  17145. weight: math.unit(1100, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/braxton/front.svg",
  17149. extra: 1057 / 984,
  17150. bottom: 0.05
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(9 + 3 / 12, "feet")
  17158. },
  17159. {
  17160. name: "Giant",
  17161. height: math.unit(300, "feet"),
  17162. default: true
  17163. },
  17164. {
  17165. name: "Macro",
  17166. height: math.unit(700, "feet")
  17167. },
  17168. {
  17169. name: "Megamacro",
  17170. height: math.unit(6000, "feet")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(6 + 7 / 12, "feet"),
  17179. weight: math.unit(150, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/blue-feyonics/front.svg",
  17183. extra: 1403 / 1306,
  17184. bottom: 0.047
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 7 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(1.8, "meters"),
  17201. weight: math.unit(60, "kg"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/maxwell/front.svg",
  17205. extra: 2060 / 1873
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Micro",
  17212. height: math.unit(1, "mm")
  17213. },
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(1.8, "meter"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(30, "meters")
  17222. },
  17223. {
  17224. name: "Megamacro",
  17225. height: math.unit(10, "km")
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(6, "feet"),
  17234. weight: math.unit(150, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/jack/front.svg",
  17238. extra: 1754 / 1640,
  17239. bottom: 0.01
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(80000, "feet"),
  17247. default: true
  17248. },
  17249. {
  17250. name: "Max size",
  17251. height: math.unit(10, "lightyears")
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17257. {
  17258. urban: {
  17259. height: math.unit(5, "feet"),
  17260. weight: math.unit(240, "lb"),
  17261. name: "Urban",
  17262. image: {
  17263. source: "./media/characters/cafat/urban.svg",
  17264. extra: 1223/1126,
  17265. bottom: 205/1428
  17266. }
  17267. },
  17268. summer: {
  17269. height: math.unit(5, "feet"),
  17270. weight: math.unit(240, "lb"),
  17271. name: "Summer",
  17272. image: {
  17273. source: "./media/characters/cafat/summer.svg",
  17274. extra: 1223/1126,
  17275. bottom: 205/1428
  17276. }
  17277. },
  17278. winter: {
  17279. height: math.unit(5, "feet"),
  17280. weight: math.unit(240, "lb"),
  17281. name: "Winter",
  17282. image: {
  17283. source: "./media/characters/cafat/winter.svg",
  17284. extra: 1223/1126,
  17285. bottom: 205/1428
  17286. }
  17287. },
  17288. lingerie: {
  17289. height: math.unit(5, "feet"),
  17290. weight: math.unit(240, "lb"),
  17291. name: "Lingerie",
  17292. image: {
  17293. source: "./media/characters/cafat/lingerie.svg",
  17294. extra: 1223/1126,
  17295. bottom: 205/1428
  17296. }
  17297. },
  17298. upright: {
  17299. height: math.unit(6.3, "feet"),
  17300. weight: math.unit(240, "lb"),
  17301. name: "Upright",
  17302. image: {
  17303. source: "./media/characters/cafat/upright.svg",
  17304. bottom: 0.01
  17305. }
  17306. },
  17307. uprightFull: {
  17308. height: math.unit(6.3, "feet"),
  17309. weight: math.unit(240, "lb"),
  17310. name: "Upright (Full)",
  17311. image: {
  17312. source: "./media/characters/cafat/upright-full.svg",
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Small",
  17320. height: math.unit(5, "feet"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Large",
  17325. height: math.unit(13, "feet")
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(6, "feet"),
  17334. weight: math.unit(150, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/verin-raharra/front.svg",
  17338. extra: 5019 / 4835,
  17339. bottom: 0.023
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(7 + 5 / 12, "feet"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Upsized",
  17351. height: math.unit(20, "feet")
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(7, "feet"),
  17360. weight: math.unit(230, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/nakata/front.svg",
  17364. extra: 1.005,
  17365. bottom: 0.01
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(7, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Big",
  17377. height: math.unit(14, "feet")
  17378. },
  17379. {
  17380. name: "Macro",
  17381. height: math.unit(400, "feet")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(4.91, "feet"),
  17390. weight: math.unit(100, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/lily/front.svg",
  17394. extra: 1585 / 1415,
  17395. bottom: 0.02
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(4.91, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17409. {
  17410. laying: {
  17411. height: math.unit(4 + 4 / 12, "feet"),
  17412. weight: math.unit(600, "lb"),
  17413. name: "Laying",
  17414. image: {
  17415. source: "./media/characters/sheila/laying.svg",
  17416. extra: 1333 / 1265,
  17417. bottom: 0.16
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(4 + 4 / 12, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(6, "feet"),
  17434. weight: math.unit(190, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/sax/front.svg",
  17438. extra: 1187 / 973,
  17439. bottom: 0.042
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Micro",
  17446. height: math.unit(4, "inches"),
  17447. default: true
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(6, "feet"),
  17456. weight: math.unit(150, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/pandora/front.svg",
  17460. extra: 2720 / 2556,
  17461. bottom: 0.015
  17462. }
  17463. },
  17464. back: {
  17465. height: math.unit(6, "feet"),
  17466. weight: math.unit(150, "lb"),
  17467. name: "Back",
  17468. image: {
  17469. source: "./media/characters/pandora/back.svg",
  17470. extra: 2720 / 2556,
  17471. bottom: 0.01
  17472. }
  17473. },
  17474. beans: {
  17475. height: math.unit(6 / 8, "feet"),
  17476. name: "Beans",
  17477. image: {
  17478. source: "./media/characters/pandora/beans.svg"
  17479. }
  17480. },
  17481. collar: {
  17482. height: math.unit(0.31, "feet"),
  17483. name: "Collar",
  17484. image: {
  17485. source: "./media/characters/pandora/collar.svg"
  17486. }
  17487. },
  17488. skirt: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Skirt",
  17492. image: {
  17493. source: "./media/characters/pandora/skirt.svg",
  17494. extra: 1622 / 1525,
  17495. bottom: 0.015
  17496. }
  17497. },
  17498. hoodie: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Hoodie",
  17502. image: {
  17503. source: "./media/characters/pandora/hoodie.svg",
  17504. extra: 1622 / 1525,
  17505. bottom: 0.015
  17506. }
  17507. },
  17508. casual: {
  17509. height: math.unit(6, "feet"),
  17510. weight: math.unit(150, "lb"),
  17511. name: "Casual",
  17512. image: {
  17513. source: "./media/characters/pandora/casual.svg",
  17514. extra: 1622 / 1525,
  17515. bottom: 0.015
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(6, "feet")
  17523. },
  17524. {
  17525. name: "Big Steppy",
  17526. height: math.unit(1, "km"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Galactic Steppy",
  17531. height: math.unit(2, "gigameters")
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17537. {
  17538. side: {
  17539. height: math.unit(10, "feet"),
  17540. weight: math.unit(800, "kg"),
  17541. name: "Side",
  17542. image: {
  17543. source: "./media/characters/venio-darcony/side.svg",
  17544. extra: 1373 / 1003,
  17545. bottom: 0.037
  17546. }
  17547. },
  17548. front: {
  17549. height: math.unit(19, "feet"),
  17550. weight: math.unit(800, "kg"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/venio-darcony/front.svg"
  17554. }
  17555. },
  17556. back: {
  17557. height: math.unit(19, "feet"),
  17558. weight: math.unit(800, "kg"),
  17559. name: "Back",
  17560. image: {
  17561. source: "./media/characters/venio-darcony/back.svg"
  17562. }
  17563. },
  17564. sideNsfw: {
  17565. height: math.unit(10, "feet"),
  17566. weight: math.unit(800, "kg"),
  17567. name: "Side (NSFW)",
  17568. image: {
  17569. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17570. extra: 1373 / 1003,
  17571. bottom: 0.037
  17572. }
  17573. },
  17574. frontNsfw: {
  17575. height: math.unit(19, "feet"),
  17576. weight: math.unit(800, "kg"),
  17577. name: "Front (NSFW)",
  17578. image: {
  17579. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17580. }
  17581. },
  17582. backNsfw: {
  17583. height: math.unit(19, "feet"),
  17584. weight: math.unit(800, "kg"),
  17585. name: "Back (NSFW)",
  17586. image: {
  17587. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17588. }
  17589. },
  17590. sideArmored: {
  17591. height: math.unit(10, "feet"),
  17592. weight: math.unit(800, "kg"),
  17593. name: "Side (Armored)",
  17594. image: {
  17595. source: "./media/characters/venio-darcony/side-armored.svg",
  17596. extra: 1373 / 1003,
  17597. bottom: 0.037
  17598. }
  17599. },
  17600. frontArmored: {
  17601. height: math.unit(19, "feet"),
  17602. weight: math.unit(900, "kg"),
  17603. name: "Front (Armored)",
  17604. image: {
  17605. source: "./media/characters/venio-darcony/front-armored.svg"
  17606. }
  17607. },
  17608. backArmored: {
  17609. height: math.unit(19, "feet"),
  17610. weight: math.unit(900, "kg"),
  17611. name: "Back (Armored)",
  17612. image: {
  17613. source: "./media/characters/venio-darcony/back-armored.svg"
  17614. }
  17615. },
  17616. sword: {
  17617. height: math.unit(10, "feet"),
  17618. weight: math.unit(50, "lb"),
  17619. name: "Sword",
  17620. image: {
  17621. source: "./media/characters/venio-darcony/sword.svg"
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(10, "feet")
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(130, "feet"),
  17633. default: true
  17634. },
  17635. {
  17636. name: "Macro+",
  17637. height: math.unit(240, "feet")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17643. {
  17644. front: {
  17645. height: math.unit(6, "feet"),
  17646. weight: math.unit(150, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/veski/front.svg",
  17650. extra: 1299 / 1225,
  17651. bottom: 0.04
  17652. }
  17653. },
  17654. back: {
  17655. height: math.unit(6, "feet"),
  17656. weight: math.unit(150, "lb"),
  17657. name: "Back",
  17658. image: {
  17659. source: "./media/characters/veski/back.svg",
  17660. extra: 1299 / 1225,
  17661. bottom: 0.008
  17662. }
  17663. },
  17664. maw: {
  17665. height: math.unit(1.5 * 1.21, "feet"),
  17666. name: "Maw",
  17667. image: {
  17668. source: "./media/characters/veski/maw.svg"
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Macro",
  17675. height: math.unit(2, "km"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(5 + 7 / 12, "feet"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/isabelle/front.svg",
  17688. extra: 2130 / 1976,
  17689. bottom: 0.05
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Supermicro",
  17696. height: math.unit(10, "micrometers")
  17697. },
  17698. {
  17699. name: "Micro",
  17700. height: math.unit(1, "inch")
  17701. },
  17702. {
  17703. name: "Tiny",
  17704. height: math.unit(5, "inches")
  17705. },
  17706. {
  17707. name: "Standard",
  17708. height: math.unit(5 + 7 / 12, "inches")
  17709. },
  17710. {
  17711. name: "Macro",
  17712. height: math.unit(80, "meters"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Megamacro",
  17717. height: math.unit(250, "meters")
  17718. },
  17719. {
  17720. name: "Gigamacro",
  17721. height: math.unit(5, "km")
  17722. },
  17723. {
  17724. name: "Cosmic",
  17725. height: math.unit(2.5e6, "miles")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(6, "feet"),
  17734. weight: math.unit(150, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/hanzo/front.svg",
  17738. extra: 374 / 344,
  17739. bottom: 0.02
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(8, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(7, "feet"),
  17756. weight: math.unit(130, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/anna/front.svg",
  17760. extra: 169 / 145,
  17761. bottom: 0.06
  17762. }
  17763. },
  17764. full: {
  17765. height: math.unit(4.96, "feet"),
  17766. weight: math.unit(220, "lb"),
  17767. name: "Full",
  17768. image: {
  17769. source: "./media/characters/anna/full.svg",
  17770. extra: 138 / 114,
  17771. bottom: 0.15
  17772. }
  17773. },
  17774. tongue: {
  17775. height: math.unit(2.53, "feet"),
  17776. name: "Tongue",
  17777. image: {
  17778. source: "./media/characters/anna/tongue.svg"
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(7, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(7, "feet"),
  17795. weight: math.unit(150, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/ian-corvid/front.svg",
  17799. extra: 150 / 142,
  17800. bottom: 0.02
  17801. }
  17802. },
  17803. back: {
  17804. height: math.unit(7, "feet"),
  17805. weight: math.unit(150, "lb"),
  17806. name: "Back",
  17807. image: {
  17808. source: "./media/characters/ian-corvid/back.svg",
  17809. extra: 150 / 143,
  17810. bottom: 0.01
  17811. }
  17812. },
  17813. stomping: {
  17814. height: math.unit(7, "feet"),
  17815. weight: math.unit(150, "lb"),
  17816. name: "Stomping",
  17817. image: {
  17818. source: "./media/characters/ian-corvid/stomping.svg",
  17819. extra: 76 / 72
  17820. }
  17821. },
  17822. sitting: {
  17823. height: math.unit(7 / 1.8, "feet"),
  17824. weight: math.unit(150, "lb"),
  17825. name: "Sitting",
  17826. image: {
  17827. source: "./media/characters/ian-corvid/sitting.svg",
  17828. extra: 1400 / 1269,
  17829. bottom: 0.15
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Tiny Microw",
  17836. height: math.unit(1, "inch")
  17837. },
  17838. {
  17839. name: "Microw",
  17840. height: math.unit(6, "inches")
  17841. },
  17842. {
  17843. name: "Crow",
  17844. height: math.unit(7 + 1 / 12, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Macrow",
  17849. height: math.unit(176, "feet")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(5 + 7 / 12, "feet"),
  17858. weight: math.unit(147, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/natalie-kellon/front.svg",
  17862. extra: 1214 / 1141,
  17863. bottom: 0.02
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(1 / 16, "inch")
  17871. },
  17872. {
  17873. name: "Tiny",
  17874. height: math.unit(4, "inches")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(5 + 7 / 12, "feet"),
  17879. default: true
  17880. },
  17881. {
  17882. name: "Amazon",
  17883. height: math.unit(12, "feet")
  17884. },
  17885. {
  17886. name: "Giantess",
  17887. height: math.unit(160, "meters")
  17888. },
  17889. {
  17890. name: "Titaness",
  17891. height: math.unit(800, "meters")
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(6, "feet"),
  17900. weight: math.unit(150, "lb"),
  17901. name: "Front",
  17902. image: {
  17903. source: "./media/characters/alluria/front.svg",
  17904. extra: 806 / 738,
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. side: {
  17909. height: math.unit(6, "feet"),
  17910. weight: math.unit(150, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/alluria/side.svg",
  17914. extra: 800 / 750,
  17915. }
  17916. },
  17917. back: {
  17918. height: math.unit(6, "feet"),
  17919. weight: math.unit(150, "lb"),
  17920. name: "Back",
  17921. image: {
  17922. source: "./media/characters/alluria/back.svg",
  17923. extra: 806 / 738,
  17924. }
  17925. },
  17926. frontMaid: {
  17927. height: math.unit(6, "feet"),
  17928. weight: math.unit(150, "lb"),
  17929. name: "Front (Maid)",
  17930. image: {
  17931. source: "./media/characters/alluria/front-maid.svg",
  17932. extra: 806 / 738,
  17933. bottom: 0.01
  17934. }
  17935. },
  17936. sideMaid: {
  17937. height: math.unit(6, "feet"),
  17938. weight: math.unit(150, "lb"),
  17939. name: "Side (Maid)",
  17940. image: {
  17941. source: "./media/characters/alluria/side-maid.svg",
  17942. extra: 800 / 750,
  17943. bottom: 0.005
  17944. }
  17945. },
  17946. backMaid: {
  17947. height: math.unit(6, "feet"),
  17948. weight: math.unit(150, "lb"),
  17949. name: "Back (Maid)",
  17950. image: {
  17951. source: "./media/characters/alluria/back-maid.svg",
  17952. extra: 806 / 738,
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Micro",
  17959. height: math.unit(6, "inches"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/kyle/front.svg",
  17973. extra: 1069 / 962,
  17974. bottom: 77.228 / 1727.45
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Macro",
  17981. height: math.unit(150, "feet"),
  17982. default: true
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17988. {
  17989. front: {
  17990. height: math.unit(6, "feet"),
  17991. weight: math.unit(300, "lb"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/duncan/front.svg",
  17995. extra: 1650 / 1482,
  17996. bottom: 0.05
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(100, "feet"),
  18004. default: true
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(5 + 4 / 12, "feet"),
  18013. weight: math.unit(220, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/memory/front.svg",
  18017. extra: 3641 / 3545,
  18018. bottom: 0.03
  18019. }
  18020. },
  18021. back: {
  18022. height: math.unit(5 + 4 / 12, "feet"),
  18023. weight: math.unit(220, "lb"),
  18024. name: "Back",
  18025. image: {
  18026. source: "./media/characters/memory/back.svg",
  18027. extra: 3641 / 3545,
  18028. bottom: 0.025
  18029. }
  18030. },
  18031. frontSkirt: {
  18032. height: math.unit(5 + 4 / 12, "feet"),
  18033. weight: math.unit(220, "lb"),
  18034. name: "Front (Skirt)",
  18035. image: {
  18036. source: "./media/characters/memory/front-skirt.svg",
  18037. extra: 3641 / 3545,
  18038. bottom: 0.03
  18039. }
  18040. },
  18041. frontDress: {
  18042. height: math.unit(5 + 4 / 12, "feet"),
  18043. weight: math.unit(220, "lb"),
  18044. name: "Front (Dress)",
  18045. image: {
  18046. source: "./media/characters/memory/front-dress.svg",
  18047. extra: 3641 / 3545,
  18048. bottom: 0.03
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Micro",
  18055. height: math.unit(6, "inches"),
  18056. default: true
  18057. },
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(5 + 4 / 12, "feet")
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18066. {
  18067. front: {
  18068. height: math.unit(4 + 11 / 12, "feet"),
  18069. weight: math.unit(100, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/luno/front.svg",
  18073. extra: 1535 / 1487,
  18074. bottom: 0.03
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Micro",
  18081. height: math.unit(3, "inches")
  18082. },
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(4 + 11 / 12, "feet"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Macro",
  18090. height: math.unit(300, "feet")
  18091. },
  18092. {
  18093. name: "Megamacro",
  18094. height: math.unit(700, "miles")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6 + 2 / 12, "feet"),
  18103. weight: math.unit(170, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/jamesy/front.svg",
  18107. extra: 440 / 382,
  18108. bottom: 0.005
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(3, "inches")
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(6 + 2 / 12, "feet"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(300, "feet")
  18125. },
  18126. {
  18127. name: "Megamacro",
  18128. height: math.unit(700, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6, "feet"),
  18137. weight: math.unit(160, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/mark/front.svg",
  18141. extra: 3300 / 3100,
  18142. bottom: 136.42 / 3440.47
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(120, "meters")
  18150. },
  18151. {
  18152. name: "Bigger Macro",
  18153. height: math.unit(350, "meters")
  18154. },
  18155. {
  18156. name: "Megamacro",
  18157. height: math.unit(8, "km"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Continental",
  18162. height: math.unit(4550, "km")
  18163. },
  18164. {
  18165. name: "Planetary",
  18166. height: math.unit(65000, "km")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(6, "feet"),
  18175. weight: math.unit(400, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/mac/front.svg",
  18179. extra: 1048 / 987.7,
  18180. bottom: 60 / 1107.6,
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(500, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(5 + 2 / 12, "feet"),
  18197. weight: math.unit(190, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/bari/front.svg",
  18201. extra: 3156 / 2880,
  18202. bottom: 0.03
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(5 + 2 / 12, "feet"),
  18207. weight: math.unit(190, "lb"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/bari/back.svg",
  18211. extra: 3260 / 2834,
  18212. bottom: 0.025
  18213. }
  18214. },
  18215. frontPlush: {
  18216. height: math.unit(5 + 2 / 12, "feet"),
  18217. weight: math.unit(190, "lb"),
  18218. name: "Front (Plush)",
  18219. image: {
  18220. source: "./media/characters/bari/front-plush.svg",
  18221. extra: 1112 / 1061,
  18222. bottom: 0.002
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(3, "inches")
  18230. },
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(5 + 2 / 12, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Macro",
  18238. height: math.unit(20, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6 + 1 / 12, "feet"),
  18247. weight: math.unit(275, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/hunter-misha-raven/front.svg"
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Mortal",
  18257. height: math.unit(6 + 1 / 12, "feet")
  18258. },
  18259. {
  18260. name: "Divine",
  18261. height: math.unit(1.12134e34, "parsecs"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(6 + 3 / 12, "feet"),
  18271. weight: math.unit(220, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/max-calore/front.svg",
  18275. extra: 1700 / 1648,
  18276. bottom: 0.01
  18277. }
  18278. },
  18279. back: {
  18280. height: math.unit(6 + 3 / 12, "feet"),
  18281. weight: math.unit(220, "lb"),
  18282. name: "Back",
  18283. image: {
  18284. source: "./media/characters/max-calore/back.svg",
  18285. extra: 1700 / 1648,
  18286. bottom: 0.01
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(6 + 3 / 12, "feet"),
  18294. default: true
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18300. {
  18301. side: {
  18302. height: math.unit(2 + 8 / 12, "feet"),
  18303. weight: math.unit(99, "lb"),
  18304. name: "Side",
  18305. image: {
  18306. source: "./media/characters/aspen/side.svg",
  18307. extra: 152 / 138,
  18308. bottom: 0.032
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(2 + 8 / 12, "feet"),
  18316. default: true
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18322. {
  18323. side: {
  18324. height: math.unit(3 + 2 / 12, "feet"),
  18325. weight: math.unit(224, "lb"),
  18326. name: "Side",
  18327. image: {
  18328. source: "./media/characters/sheila-feral-wolf/side.svg",
  18329. extra: 179 / 166,
  18330. bottom: 0.03
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(3 + 2 / 12, "feet"),
  18338. default: true
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18344. {
  18345. side: {
  18346. height: math.unit(1 + 9 / 12, "feet"),
  18347. weight: math.unit(38, "lb"),
  18348. name: "Side",
  18349. image: {
  18350. source: "./media/characters/michelle/side.svg",
  18351. extra: 147 / 136.7,
  18352. bottom: 0.03
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(1 + 9 / 12, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(1.54, "feet"),
  18369. weight: math.unit(50, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/nino/front.svg"
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(1.54, "feet"),
  18380. default: true
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18386. {
  18387. front: {
  18388. height: math.unit(1.49, "feet"),
  18389. weight: math.unit(45, "lb"),
  18390. name: "Front",
  18391. image: {
  18392. source: "./media/characters/viola/front.svg"
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(1.49, "feet"),
  18400. default: true
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18406. {
  18407. front: {
  18408. height: math.unit(6 + 5 / 12, "feet"),
  18409. weight: math.unit(580, "lb"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/atlas/front.svg",
  18413. extra: 298.5 / 290,
  18414. bottom: 0.015
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(6 + 5 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18428. {
  18429. side: {
  18430. height: math.unit(15.6, "inches"),
  18431. weight: math.unit(10, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/davy/side.svg",
  18435. extra: 200 / 170,
  18436. bottom: 0.01
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(15.6, "inches"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18450. {
  18451. side: {
  18452. height: math.unit(4 + 8 / 12, "feet"),
  18453. weight: math.unit(166, "lb"),
  18454. name: "Side",
  18455. image: {
  18456. source: "./media/characters/fiona/side.svg",
  18457. extra: 232 / 220,
  18458. bottom: 0.03
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(4 + 8 / 12, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18472. {
  18473. front: {
  18474. height: math.unit(26, "inches"),
  18475. weight: math.unit(35, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/lyla/front.svg",
  18479. bottom: 0.1
  18480. }
  18481. },
  18482. },
  18483. [
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(3, "feet"),
  18487. default: true
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18493. {
  18494. side: {
  18495. height: math.unit(1.8, "feet"),
  18496. weight: math.unit(44, "lb"),
  18497. name: "Side",
  18498. image: {
  18499. source: "./media/characters/perseus/side.svg",
  18500. bottom: 0.21
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(1.8, "feet"),
  18508. default: true
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18514. {
  18515. side: {
  18516. height: math.unit(4 + 2 / 12, "feet"),
  18517. weight: math.unit(20, "lb"),
  18518. name: "Side",
  18519. image: {
  18520. source: "./media/characters/remus/side.svg"
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(4 + 2 / 12, "feet"),
  18528. default: true
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18534. {
  18535. front: {
  18536. height: math.unit(4 + 11 / 12, "feet"),
  18537. weight: math.unit(114, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/raf/front.svg",
  18541. extra: 1504/1339,
  18542. bottom: 26/1530
  18543. }
  18544. },
  18545. side: {
  18546. height: math.unit(4 + 11 / 12, "feet"),
  18547. weight: math.unit(114, "lb"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/raf/side.svg",
  18551. extra: 1466/1316,
  18552. bottom: 29/1495
  18553. }
  18554. },
  18555. paw: {
  18556. height: math.unit(1.45, "feet"),
  18557. name: "Paw",
  18558. image: {
  18559. source: "./media/characters/raf/paw.svg"
  18560. },
  18561. extraAttributes: {
  18562. "toeSize": {
  18563. name: "Toe Size",
  18564. power: 2,
  18565. type: "area",
  18566. base: math.unit(0.004, "m^2")
  18567. },
  18568. "padSize": {
  18569. name: "Pad Size",
  18570. power: 2,
  18571. type: "area",
  18572. base: math.unit(0.04, "m^2")
  18573. },
  18574. "footSize": {
  18575. name: "Foot Size",
  18576. power: 2,
  18577. type: "area",
  18578. base: math.unit(0.08, "m^2")
  18579. },
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Micro",
  18586. height: math.unit(2, "inches")
  18587. },
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(4 + 11 / 12, "feet"),
  18591. default: true
  18592. },
  18593. {
  18594. name: "Macro",
  18595. height: math.unit(70, "feet")
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18601. {
  18602. front: {
  18603. height: math.unit(1.5, "meters"),
  18604. weight: math.unit(68, "kg"),
  18605. name: "Front",
  18606. image: {
  18607. source: "./media/characters/liam-einarr/front.svg",
  18608. extra: 2822 / 2666
  18609. }
  18610. },
  18611. back: {
  18612. height: math.unit(1.5, "meters"),
  18613. weight: math.unit(68, "kg"),
  18614. name: "Back",
  18615. image: {
  18616. source: "./media/characters/liam-einarr/back.svg",
  18617. extra: 2822 / 2666,
  18618. bottom: 0.015
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(1.5, "meters"),
  18626. default: true
  18627. },
  18628. {
  18629. name: "Macro",
  18630. height: math.unit(150, "meters")
  18631. },
  18632. {
  18633. name: "Megamacro",
  18634. height: math.unit(35, "km")
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(6, "feet"),
  18643. weight: math.unit(75, "kg"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/linda/front.svg",
  18647. extra: 930 / 874,
  18648. bottom: 0.004
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(6, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(6 + 8 / 12, "feet"),
  18665. weight: math.unit(220, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/caylex/front.svg",
  18669. extra: 821 / 772,
  18670. bottom: 0.07
  18671. }
  18672. },
  18673. back: {
  18674. height: math.unit(6 + 8 / 12, "feet"),
  18675. weight: math.unit(220, "lb"),
  18676. name: "Back",
  18677. image: {
  18678. source: "./media/characters/caylex/back.svg",
  18679. extra: 821 / 772,
  18680. bottom: 0.022
  18681. }
  18682. },
  18683. hand: {
  18684. height: math.unit(1.25, "feet"),
  18685. name: "Hand",
  18686. image: {
  18687. source: "./media/characters/caylex/hand.svg"
  18688. }
  18689. },
  18690. foot: {
  18691. height: math.unit(1.6, "feet"),
  18692. name: "Foot",
  18693. image: {
  18694. source: "./media/characters/caylex/foot.svg"
  18695. }
  18696. },
  18697. armored: {
  18698. height: math.unit(6 + 8 / 12, "feet"),
  18699. weight: math.unit(250, "lb"),
  18700. name: "Armored",
  18701. image: {
  18702. source: "./media/characters/caylex/armored.svg",
  18703. extra: 1420 / 1310,
  18704. bottom: 0.045
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(6 + 8 / 12, "feet"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Normal+",
  18716. height: math.unit(12, "feet")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(7 + 6 / 12, "feet"),
  18725. weight: math.unit(288, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/alana/front.svg",
  18729. extra: 679 / 653,
  18730. bottom: 22.5 / 701
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(7 + 6 / 12, "feet")
  18738. },
  18739. {
  18740. name: "Large",
  18741. height: math.unit(50, "feet")
  18742. },
  18743. {
  18744. name: "Macro",
  18745. height: math.unit(100, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Macro+",
  18750. height: math.unit(200, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(6 + 1 / 12, "feet"),
  18759. weight: math.unit(210, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/hasani/front.svg",
  18763. extra: 244 / 232,
  18764. bottom: 0.01
  18765. }
  18766. },
  18767. back: {
  18768. height: math.unit(6 + 1 / 12, "feet"),
  18769. weight: math.unit(210, "lb"),
  18770. name: "Back",
  18771. image: {
  18772. source: "./media/characters/hasani/back.svg",
  18773. extra: 244 / 232,
  18774. bottom: 0.01
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(6 + 1 / 12, "feet")
  18782. },
  18783. {
  18784. name: "Macro",
  18785. height: math.unit(175, "feet"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(1.82, "meters"),
  18795. weight: math.unit(140, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/nita/front.svg",
  18799. extra: 2473 / 2363,
  18800. bottom: 0.01
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(1.82, "m")
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(300, "m")
  18812. },
  18813. {
  18814. name: "Mistake Canon",
  18815. height: math.unit(0.5, "miles"),
  18816. default: true
  18817. },
  18818. {
  18819. name: "Big Mistake",
  18820. height: math.unit(13, "miles")
  18821. },
  18822. {
  18823. name: "Playing God",
  18824. height: math.unit(2450, "miles")
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(4, "feet"),
  18833. weight: math.unit(120, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/shiriko/front.svg",
  18837. extra: 970/934,
  18838. bottom: 5/975
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(4, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(6, "feet"),
  18855. name: "front",
  18856. image: {
  18857. source: "./media/characters/deja/front.svg",
  18858. extra: 926 / 840,
  18859. bottom: 0.07
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Planck Length",
  18866. height: math.unit(1.6e-35, "meters")
  18867. },
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(30.48, "meters"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Universal",
  18875. height: math.unit(8.8e26, "meters")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18881. {
  18882. side: {
  18883. height: math.unit(8, "feet"),
  18884. weight: math.unit(6300, "lb"),
  18885. name: "Side",
  18886. image: {
  18887. source: "./media/characters/anima/side.svg",
  18888. bottom: 0.035
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(8, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(8, "feet"),
  18905. weight: math.unit(350, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/bianca/front.svg",
  18909. extra: 234 / 225,
  18910. bottom: 0.03
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(8, "feet"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(11 + 5/12, "feet"),
  18927. weight: math.unit(1200, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/adinia/front.svg",
  18931. extra: 1767/1641,
  18932. bottom: 44/1811
  18933. },
  18934. extraAttributes: {
  18935. "energyIntake": {
  18936. name: "Energy Intake",
  18937. power: 3,
  18938. type: "energy",
  18939. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18940. },
  18941. }
  18942. },
  18943. back: {
  18944. height: math.unit(11 + 5/12, "feet"),
  18945. weight: math.unit(1200, "lb"),
  18946. name: "Back",
  18947. image: {
  18948. source: "./media/characters/adinia/back.svg",
  18949. extra: 1834/1684,
  18950. bottom: 14/1848
  18951. },
  18952. extraAttributes: {
  18953. "energyIntake": {
  18954. name: "Energy Intake",
  18955. power: 3,
  18956. type: "energy",
  18957. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18958. },
  18959. }
  18960. },
  18961. maw: {
  18962. height: math.unit(3.79, "feet"),
  18963. name: "Maw",
  18964. image: {
  18965. source: "./media/characters/adinia/maw.svg"
  18966. }
  18967. },
  18968. rump: {
  18969. height: math.unit(4.6, "feet"),
  18970. name: "Rump",
  18971. image: {
  18972. source: "./media/characters/adinia/rump.svg"
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(11 + 5 / 12, "feet"),
  18980. default: true
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(3, "meters"),
  18989. weight: math.unit(200, "kg"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/lykasa/front.svg",
  18993. extra: 1076 / 976,
  18994. bottom: 0.06
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(3, "meters")
  19002. },
  19003. {
  19004. name: "Kaiju",
  19005. height: math.unit(120, "meters"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Mega Kaiju",
  19010. height: math.unit(240, "km")
  19011. },
  19012. {
  19013. name: "Giga Kaiju",
  19014. height: math.unit(400, "megameters")
  19015. },
  19016. {
  19017. name: "Tera Kaiju",
  19018. height: math.unit(800, "gigameters")
  19019. },
  19020. {
  19021. name: "Kaiju Dragon Goddess",
  19022. height: math.unit(26, "zettaparsecs")
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19028. {
  19029. side: {
  19030. height: math.unit(283 / 124 * 6, "feet"),
  19031. weight: math.unit(35000, "lb"),
  19032. name: "Side",
  19033. image: {
  19034. source: "./media/characters/malfaren/side.svg",
  19035. extra: 1310/529,
  19036. bottom: 24/1334
  19037. }
  19038. },
  19039. front: {
  19040. height: math.unit(22.36, "feet"),
  19041. weight: math.unit(35000, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/malfaren/front.svg",
  19045. extra: 1237/1115,
  19046. bottom: 32/1269
  19047. }
  19048. },
  19049. maw: {
  19050. height: math.unit(6.9, "feet"),
  19051. name: "Maw",
  19052. image: {
  19053. source: "./media/characters/malfaren/maw.svg"
  19054. }
  19055. },
  19056. dick: {
  19057. height: math.unit(6.19, "feet"),
  19058. name: "Dick",
  19059. image: {
  19060. source: "./media/characters/malfaren/dick.svg"
  19061. }
  19062. },
  19063. eye: {
  19064. height: math.unit(0.69, "feet"),
  19065. name: "Eye",
  19066. image: {
  19067. source: "./media/characters/malfaren/eye.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Big",
  19074. height: math.unit(283 / 162 * 6, "feet"),
  19075. },
  19076. {
  19077. name: "Bigger",
  19078. height: math.unit(283 / 124 * 6, "feet")
  19079. },
  19080. {
  19081. name: "Massive",
  19082. height: math.unit(283 / 92 * 6, "feet"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "👀💦",
  19087. height: math.unit(283 / 73 * 6, "feet"),
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(1.7, "m"),
  19096. weight: math.unit(70, "kg"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/kernel/front.svg",
  19100. extra: 222 / 210,
  19101. bottom: 0.007
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Nano",
  19108. height: math.unit(17, "micrometers")
  19109. },
  19110. {
  19111. name: "Micro",
  19112. height: math.unit(1.7, "mm")
  19113. },
  19114. {
  19115. name: "Small",
  19116. height: math.unit(1.7, "cm")
  19117. },
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(1.7, "m"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(1.75, "meters"),
  19130. weight: math.unit(65, "kg"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/jayne-folest/front.svg",
  19134. extra: 2115 / 2007,
  19135. bottom: 0.02
  19136. }
  19137. },
  19138. back: {
  19139. height: math.unit(1.75, "meters"),
  19140. weight: math.unit(65, "kg"),
  19141. name: "Back",
  19142. image: {
  19143. source: "./media/characters/jayne-folest/back.svg",
  19144. extra: 2115 / 2007,
  19145. bottom: 0.005
  19146. }
  19147. },
  19148. frontClothed: {
  19149. height: math.unit(1.75, "meters"),
  19150. weight: math.unit(65, "kg"),
  19151. name: "Front (Clothed)",
  19152. image: {
  19153. source: "./media/characters/jayne-folest/front-clothed.svg",
  19154. extra: 2115 / 2007,
  19155. bottom: 0.035
  19156. }
  19157. },
  19158. hand: {
  19159. height: math.unit(1 / 1.260, "feet"),
  19160. name: "Hand",
  19161. image: {
  19162. source: "./media/characters/jayne-folest/hand.svg"
  19163. }
  19164. },
  19165. foot: {
  19166. height: math.unit(1 / 0.918, "feet"),
  19167. name: "Foot",
  19168. image: {
  19169. source: "./media/characters/jayne-folest/foot.svg"
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Micro",
  19176. height: math.unit(4, "cm")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(1.75, "meters")
  19181. },
  19182. {
  19183. name: "Macro",
  19184. height: math.unit(47.5, "meters"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(180, "cm"),
  19194. weight: math.unit(70, "kg"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/algier/front.svg",
  19198. extra: 596 / 572,
  19199. bottom: 0.04
  19200. }
  19201. },
  19202. back: {
  19203. height: math.unit(180, "cm"),
  19204. weight: math.unit(70, "kg"),
  19205. name: "Back",
  19206. image: {
  19207. source: "./media/characters/algier/back.svg",
  19208. extra: 596 / 572,
  19209. bottom: 0.025
  19210. }
  19211. },
  19212. frontdressed: {
  19213. height: math.unit(180, "cm"),
  19214. weight: math.unit(150, "kg"),
  19215. name: "Front-dressed",
  19216. image: {
  19217. source: "./media/characters/algier/front-dressed.svg",
  19218. extra: 596 / 572,
  19219. bottom: 0.038
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Micro",
  19226. height: math.unit(5, "cm")
  19227. },
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(180, "cm"),
  19231. default: true
  19232. },
  19233. {
  19234. name: "Macro",
  19235. height: math.unit(64, "m")
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19241. {
  19242. upright: {
  19243. height: math.unit(7, "feet"),
  19244. weight: math.unit(300, "lb"),
  19245. name: "Upright",
  19246. image: {
  19247. source: "./media/characters/pretzel/upright.svg",
  19248. extra: 534 / 522,
  19249. bottom: 0.065
  19250. }
  19251. },
  19252. sprawling: {
  19253. height: math.unit(3.75, "feet"),
  19254. weight: math.unit(300, "lb"),
  19255. name: "Sprawling",
  19256. image: {
  19257. source: "./media/characters/pretzel/sprawling.svg",
  19258. extra: 314 / 281,
  19259. bottom: 0.1
  19260. }
  19261. },
  19262. tongue: {
  19263. height: math.unit(2, "feet"),
  19264. name: "Tongue",
  19265. image: {
  19266. source: "./media/characters/pretzel/tongue.svg"
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(7, "feet"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Oversized",
  19278. height: math.unit(15, "feet")
  19279. },
  19280. {
  19281. name: "Huge",
  19282. height: math.unit(30, "feet")
  19283. },
  19284. {
  19285. name: "Macro",
  19286. height: math.unit(250, "feet")
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19292. {
  19293. sideFront: {
  19294. height: math.unit(5 + 2 / 12, "feet"),
  19295. weight: math.unit(120, "lb"),
  19296. name: "Front Side",
  19297. image: {
  19298. source: "./media/characters/roxi/side-front.svg",
  19299. extra: 2924 / 2717,
  19300. bottom: 0.08
  19301. }
  19302. },
  19303. sideBack: {
  19304. height: math.unit(5 + 2 / 12, "feet"),
  19305. weight: math.unit(120, "lb"),
  19306. name: "Back Side",
  19307. image: {
  19308. source: "./media/characters/roxi/side-back.svg",
  19309. extra: 2904 / 2693,
  19310. bottom: 0.06
  19311. }
  19312. },
  19313. front: {
  19314. height: math.unit(5 + 2 / 12, "feet"),
  19315. weight: math.unit(120, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/roxi/front.svg",
  19319. extra: 2028 / 1907,
  19320. bottom: 0.01
  19321. }
  19322. },
  19323. frontAlt: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(120, "lb"),
  19326. name: "Front (Alt)",
  19327. image: {
  19328. source: "./media/characters/roxi/front-alt.svg",
  19329. extra: 1828 / 1798,
  19330. bottom: 0.01
  19331. }
  19332. },
  19333. sitting: {
  19334. height: math.unit(2.8, "feet"),
  19335. weight: math.unit(120, "lb"),
  19336. name: "Sitting",
  19337. image: {
  19338. source: "./media/characters/roxi/sitting.svg",
  19339. extra: 2660 / 2462,
  19340. bottom: 0.1
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(5 + 2 / 12, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19354. {
  19355. side: {
  19356. height: math.unit(55, "feet"),
  19357. weight: math.unit(153, "tons"),
  19358. name: "Side",
  19359. image: {
  19360. source: "./media/characters/shadow/side.svg",
  19361. extra: 701 / 628,
  19362. bottom: 0.02
  19363. }
  19364. },
  19365. flying: {
  19366. height: math.unit(145, "feet"),
  19367. weight: math.unit(153, "tons"),
  19368. name: "Flying",
  19369. image: {
  19370. source: "./media/characters/shadow/flying.svg"
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(55, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6, "feet"),
  19387. weight: math.unit(200, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/marcie/front.svg",
  19391. extra: 960 / 876,
  19392. bottom: 58 / 1017.87
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(1, "mile"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(7, "feet"),
  19409. weight: math.unit(200, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/kachina/front.svg",
  19413. extra: 1290.68 / 1119,
  19414. bottom: 36.5 / 1327.18
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(7, "feet"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19428. {
  19429. looking: {
  19430. height: math.unit(2, "meters"),
  19431. weight: math.unit(300, "kg"),
  19432. name: "Looking",
  19433. image: {
  19434. source: "./media/characters/kash/looking.svg",
  19435. extra: 474 / 344,
  19436. bottom: 0.03
  19437. }
  19438. },
  19439. side: {
  19440. height: math.unit(2, "meters"),
  19441. weight: math.unit(300, "kg"),
  19442. name: "Side",
  19443. image: {
  19444. source: "./media/characters/kash/side.svg",
  19445. extra: 302 / 251,
  19446. bottom: 0.03
  19447. }
  19448. },
  19449. front: {
  19450. height: math.unit(2, "meters"),
  19451. weight: math.unit(300, "kg"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/kash/front.svg",
  19455. extra: 495 / 360,
  19456. bottom: 0.015
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(2, "meters"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Big",
  19468. height: math.unit(3, "meters")
  19469. },
  19470. {
  19471. name: "Large",
  19472. height: math.unit(5, "meters")
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19478. {
  19479. feeding: {
  19480. height: math.unit(6.7, "feet"),
  19481. weight: math.unit(350, "lb"),
  19482. name: "Feeding",
  19483. image: {
  19484. source: "./media/characters/lalim/feeding.svg",
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(6.7, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(9.5, "feet"),
  19501. weight: math.unit(600, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/de'vout/front.svg",
  19505. extra: 1443 / 1328,
  19506. bottom: 0.025
  19507. }
  19508. },
  19509. back: {
  19510. height: math.unit(9.5, "feet"),
  19511. weight: math.unit(600, "lb"),
  19512. name: "Back",
  19513. image: {
  19514. source: "./media/characters/de'vout/back.svg",
  19515. extra: 1443 / 1328
  19516. }
  19517. },
  19518. frontDressed: {
  19519. height: math.unit(9.5, "feet"),
  19520. weight: math.unit(600, "lb"),
  19521. name: "Front (Dressed",
  19522. image: {
  19523. source: "./media/characters/de'vout/front-dressed.svg",
  19524. extra: 1443 / 1328,
  19525. bottom: 0.025
  19526. }
  19527. },
  19528. backDressed: {
  19529. height: math.unit(9.5, "feet"),
  19530. weight: math.unit(600, "lb"),
  19531. name: "Back (Dressed",
  19532. image: {
  19533. source: "./media/characters/de'vout/back-dressed.svg",
  19534. extra: 1443 / 1328
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(9.5, "feet"),
  19542. default: true
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(8, "feet"),
  19551. weight: math.unit(225, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/talana/front.svg",
  19555. extra: 1410 / 1300,
  19556. bottom: 0.015
  19557. }
  19558. },
  19559. frontDressed: {
  19560. height: math.unit(8, "feet"),
  19561. weight: math.unit(225, "lb"),
  19562. name: "Front (Dressed",
  19563. image: {
  19564. source: "./media/characters/talana/front-dressed.svg",
  19565. extra: 1410 / 1300,
  19566. bottom: 0.015
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(8, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19580. {
  19581. side: {
  19582. height: math.unit(7.2, "feet"),
  19583. weight: math.unit(150, "lb"),
  19584. name: "Side",
  19585. image: {
  19586. source: "./media/characters/xeauvok/side.svg",
  19587. extra: 1975 / 1523,
  19588. bottom: 0.07
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(7.2, "feet"),
  19596. default: true
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19602. {
  19603. side: {
  19604. height: math.unit(4, "meters"),
  19605. weight: math.unit(2200, "kg"),
  19606. name: "Side",
  19607. image: {
  19608. source: "./media/characters/zara/side.svg",
  19609. extra: 765/744,
  19610. bottom: 156/921
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(4, "meters"),
  19618. default: true
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19624. {
  19625. side: {
  19626. height: math.unit(6, "feet"),
  19627. weight: math.unit(150, "lb"),
  19628. name: "Side",
  19629. image: {
  19630. source: "./media/characters/richard-dragon/side.svg",
  19631. extra: 845 / 340,
  19632. bottom: 0.017
  19633. }
  19634. },
  19635. maw: {
  19636. height: math.unit(2.97, "feet"),
  19637. name: "Maw",
  19638. image: {
  19639. source: "./media/characters/richard-dragon/maw.svg"
  19640. }
  19641. },
  19642. },
  19643. [
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(4, "feet"),
  19651. weight: math.unit(100, "lb"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/richard-smeargle/front.svg",
  19655. extra: 2952 / 2820,
  19656. bottom: 0.028
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(4, "feet"),
  19664. default: true
  19665. },
  19666. {
  19667. name: "Dynamax",
  19668. height: math.unit(20, "meters")
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(6, "feet"),
  19677. weight: math.unit(110, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/klay/front.svg",
  19681. extra: 962 / 883,
  19682. bottom: 0.04
  19683. }
  19684. },
  19685. back: {
  19686. height: math.unit(6, "feet"),
  19687. weight: math.unit(110, "lb"),
  19688. name: "Back",
  19689. image: {
  19690. source: "./media/characters/klay/back.svg",
  19691. extra: 962 / 883
  19692. }
  19693. },
  19694. beans: {
  19695. height: math.unit(1.15, "feet"),
  19696. name: "Beans",
  19697. image: {
  19698. source: "./media/characters/klay/beans.svg"
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Micro",
  19705. height: math.unit(6, "inches")
  19706. },
  19707. {
  19708. name: "Mini",
  19709. height: math.unit(3, "feet")
  19710. },
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(6, "feet"),
  19714. default: true
  19715. },
  19716. {
  19717. name: "Big",
  19718. height: math.unit(25, "feet")
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(100, "feet")
  19723. },
  19724. {
  19725. name: "Megamacro",
  19726. height: math.unit(400, "feet")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(6, "feet"),
  19735. weight: math.unit(160, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/marcus/front.svg",
  19739. extra: 734 / 676,
  19740. bottom: 0.03
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Little",
  19747. height: math.unit(6, "feet")
  19748. },
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(110, "feet"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(250, "feet")
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(1000, "feet")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(7, "feet"),
  19769. weight: math.unit(275, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/claude-delroute/front.svg",
  19773. extra: 902/827,
  19774. bottom: 26/928
  19775. }
  19776. },
  19777. side: {
  19778. height: math.unit(7, "feet"),
  19779. weight: math.unit(275, "lb"),
  19780. name: "Side",
  19781. image: {
  19782. source: "./media/characters/claude-delroute/side.svg",
  19783. extra: 908/853,
  19784. bottom: 16/924
  19785. }
  19786. },
  19787. back: {
  19788. height: math.unit(7, "feet"),
  19789. weight: math.unit(275, "lb"),
  19790. name: "Back",
  19791. image: {
  19792. source: "./media/characters/claude-delroute/back.svg",
  19793. extra: 911/829,
  19794. bottom: 18/929
  19795. }
  19796. },
  19797. maw: {
  19798. height: math.unit(0.6407, "meters"),
  19799. name: "Maw",
  19800. image: {
  19801. source: "./media/characters/claude-delroute/maw.svg"
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(7, "feet"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Lorge",
  19813. height: math.unit(20, "feet")
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(8 + 4 / 12, "feet"),
  19822. weight: math.unit(600, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/dragonien/front.svg",
  19826. extra: 100 / 94,
  19827. bottom: 3.3 / 103.3445
  19828. }
  19829. },
  19830. back: {
  19831. height: math.unit(8 + 4 / 12, "feet"),
  19832. weight: math.unit(600, "lb"),
  19833. name: "Back",
  19834. image: {
  19835. source: "./media/characters/dragonien/back.svg",
  19836. extra: 776 / 746,
  19837. bottom: 6.4 / 782.0616
  19838. }
  19839. },
  19840. foot: {
  19841. height: math.unit(1.54, "feet"),
  19842. name: "Foot",
  19843. image: {
  19844. source: "./media/characters/dragonien/foot.svg",
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(8 + 4 / 12, "feet"),
  19852. default: true
  19853. },
  19854. {
  19855. name: "Macro",
  19856. height: math.unit(200, "feet")
  19857. },
  19858. {
  19859. name: "Megamacro",
  19860. height: math.unit(1, "mile")
  19861. },
  19862. {
  19863. name: "Gigamacro",
  19864. height: math.unit(1000, "miles")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(5 + 2 / 12, "feet"),
  19873. weight: math.unit(110, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/desta/front.svg",
  19877. extra: 767 / 726,
  19878. bottom: 11.7 / 779
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(5 + 2 / 12, "feet"),
  19883. weight: math.unit(110, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/desta/back.svg",
  19887. extra: 777 / 728,
  19888. bottom: 6 / 784
  19889. }
  19890. },
  19891. frontAlt: {
  19892. height: math.unit(5 + 2 / 12, "feet"),
  19893. weight: math.unit(110, "lb"),
  19894. name: "Front",
  19895. image: {
  19896. source: "./media/characters/desta/front-alt.svg",
  19897. extra: 1482 / 1417
  19898. }
  19899. },
  19900. side: {
  19901. height: math.unit(5 + 2 / 12, "feet"),
  19902. weight: math.unit(110, "lb"),
  19903. name: "Side",
  19904. image: {
  19905. source: "./media/characters/desta/side.svg",
  19906. extra: 2579 / 2491,
  19907. bottom: 0.053
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Micro",
  19914. height: math.unit(6, "inches")
  19915. },
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(5 + 2 / 12, "feet"),
  19919. default: true
  19920. },
  19921. {
  19922. name: "Macro",
  19923. height: math.unit(62, "feet")
  19924. },
  19925. {
  19926. name: "Megamacro",
  19927. height: math.unit(1800, "feet")
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(10, "feet"),
  19936. weight: math.unit(700, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/storm-alystar/front.svg",
  19940. extra: 2112 / 1898,
  19941. bottom: 0.034
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Micro",
  19948. height: math.unit(3.5, "inches")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(10, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(400, "feet")
  19958. },
  19959. {
  19960. name: "Deific",
  19961. height: math.unit(60, "miles")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(2.35, "meters"),
  19970. weight: math.unit(119, "kg"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/ilia/front.svg",
  19974. extra: 1285 / 1255,
  19975. bottom: 0.06
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(2.35, "meters")
  19983. },
  19984. {
  19985. name: "Macro",
  19986. height: math.unit(140, "meters"),
  19987. default: true
  19988. },
  19989. {
  19990. name: "Megamacro",
  19991. height: math.unit(100, "miles")
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(6 + 5 / 12, "feet"),
  20000. weight: math.unit(190, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/kingdead/front.svg",
  20004. extra: 1228 / 1177
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Micro",
  20011. height: math.unit(7, "inches")
  20012. },
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(6 + 5 / 12, "feet")
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(150, "feet"),
  20020. default: true
  20021. },
  20022. {
  20023. name: "Megamacro",
  20024. height: math.unit(200, "miles")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(8, "feet"),
  20033. weight: math.unit(600, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/kyrehx/front.svg",
  20037. extra: 1195 / 1095,
  20038. bottom: 0.034
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Micro",
  20045. height: math.unit(2, "inches")
  20046. },
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(8, "feet"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Macro",
  20054. height: math.unit(255, "feet")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20063. weight: math.unit(184, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/xang/front.svg",
  20067. extra: 845 / 755
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20075. default: true
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(0.935 * 146, "feet")
  20080. },
  20081. {
  20082. name: "Megamacro",
  20083. height: math.unit(0.935 * 3, "miles")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20089. {
  20090. frontDressed: {
  20091. height: math.unit(5 + 7 / 12, "feet"),
  20092. weight: math.unit(140, "lb"),
  20093. name: "Front (Dressed)",
  20094. image: {
  20095. source: "./media/characters/doc-weardno/front-dressed.svg",
  20096. extra: 263 / 234
  20097. }
  20098. },
  20099. backDressed: {
  20100. height: math.unit(5 + 7 / 12, "feet"),
  20101. weight: math.unit(140, "lb"),
  20102. name: "Back (Dressed)",
  20103. image: {
  20104. source: "./media/characters/doc-weardno/back-dressed.svg",
  20105. extra: 266 / 238
  20106. }
  20107. },
  20108. front: {
  20109. height: math.unit(5 + 7 / 12, "feet"),
  20110. weight: math.unit(140, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/doc-weardno/front.svg",
  20114. extra: 254 / 233
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Micro",
  20121. height: math.unit(3, "inches")
  20122. },
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(5 + 7 / 12, "feet"),
  20126. default: true
  20127. },
  20128. {
  20129. name: "Macro",
  20130. height: math.unit(25, "feet")
  20131. },
  20132. {
  20133. name: "Megamacro",
  20134. height: math.unit(2, "miles")
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(6 + 2 / 12, "feet"),
  20143. weight: math.unit(153, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/seth-whilst/front.svg",
  20147. bottom: 0.07
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Micro",
  20154. height: math.unit(5, "inches")
  20155. },
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 2 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(3, "inches"),
  20168. weight: math.unit(8, "grams"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/pocket-jabari/front.svg",
  20172. extra: 1024 / 974,
  20173. bottom: 0.039
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Minimicro",
  20180. height: math.unit(8, "mm")
  20181. },
  20182. {
  20183. name: "Micro",
  20184. height: math.unit(3, "inches"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(3, "feet")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20195. {
  20196. frontDressed: {
  20197. height: math.unit(15, "feet"),
  20198. weight: math.unit(3280, "lb"),
  20199. name: "Front (Dressed)",
  20200. image: {
  20201. source: "./media/characters/sapphy/front-dressed.svg",
  20202. extra: 1951/1654,
  20203. bottom: 194/2145
  20204. },
  20205. form: "anthro",
  20206. default: true
  20207. },
  20208. backDressed: {
  20209. height: math.unit(15, "feet"),
  20210. weight: math.unit(3280, "lb"),
  20211. name: "Back (Dressed)",
  20212. image: {
  20213. source: "./media/characters/sapphy/back-dressed.svg",
  20214. extra: 2058/1918,
  20215. bottom: 125/2183
  20216. },
  20217. form: "anthro"
  20218. },
  20219. frontNude: {
  20220. height: math.unit(15, "feet"),
  20221. weight: math.unit(3280, "lb"),
  20222. name: "Front (Nude)",
  20223. image: {
  20224. source: "./media/characters/sapphy/front-nude.svg",
  20225. extra: 1951/1654,
  20226. bottom: 194/2145
  20227. },
  20228. form: "anthro"
  20229. },
  20230. backNude: {
  20231. height: math.unit(15, "feet"),
  20232. weight: math.unit(3280, "lb"),
  20233. name: "Back (Nude)",
  20234. image: {
  20235. source: "./media/characters/sapphy/back-nude.svg",
  20236. extra: 2058/1918,
  20237. bottom: 125/2183
  20238. },
  20239. form: "anthro"
  20240. },
  20241. full: {
  20242. height: math.unit(15, "feet"),
  20243. weight: math.unit(3280, "lb"),
  20244. name: "Full",
  20245. image: {
  20246. source: "./media/characters/sapphy/full.svg",
  20247. extra: 1396/1317,
  20248. bottom: 44/1440
  20249. },
  20250. form: "anthro"
  20251. },
  20252. dick: {
  20253. height: math.unit(3.8, "feet"),
  20254. name: "Dick",
  20255. image: {
  20256. source: "./media/characters/sapphy/dick.svg"
  20257. },
  20258. form: "anthro"
  20259. },
  20260. feral: {
  20261. height: math.unit(35, "feet"),
  20262. weight: math.unit(160, "tons"),
  20263. name: "Feral",
  20264. image: {
  20265. source: "./media/characters/sapphy/feral.svg",
  20266. extra: 1050/573,
  20267. bottom: 60/1110
  20268. },
  20269. form: "feral",
  20270. default: true
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Normal",
  20276. height: math.unit(15, "feet"),
  20277. form: "anthro"
  20278. },
  20279. {
  20280. name: "Casual Macro",
  20281. height: math.unit(120, "feet"),
  20282. form: "anthro"
  20283. },
  20284. {
  20285. name: "Macro",
  20286. height: math.unit(2150, "feet"),
  20287. default: true,
  20288. form: "anthro"
  20289. },
  20290. {
  20291. name: "Megamacro",
  20292. height: math.unit(8, "miles"),
  20293. form: "anthro"
  20294. },
  20295. {
  20296. name: "Galaxy Mom",
  20297. height: math.unit(6, "megalightyears"),
  20298. form: "anthro"
  20299. },
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(35, "feet"),
  20303. form: "feral",
  20304. default: true
  20305. },
  20306. {
  20307. name: "Macro",
  20308. height: math.unit(300, "feet"),
  20309. form: "feral"
  20310. },
  20311. {
  20312. name: "Galaxy Mom",
  20313. height: math.unit(10, "megalightyears"),
  20314. form: "feral"
  20315. },
  20316. ],
  20317. {
  20318. "anthro": {
  20319. name: "Anthro",
  20320. default: true
  20321. },
  20322. "feral": {
  20323. name: "Feral"
  20324. }
  20325. }
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20329. {
  20330. hyenaFront: {
  20331. height: math.unit(6, "feet"),
  20332. weight: math.unit(190, "lb"),
  20333. name: "Front",
  20334. image: {
  20335. source: "./media/characters/kiro/hyena-front.svg",
  20336. extra: 927/839,
  20337. bottom: 91/1018
  20338. },
  20339. form: "hyena",
  20340. default: true
  20341. },
  20342. front: {
  20343. height: math.unit(6, "feet"),
  20344. weight: math.unit(170, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/kiro/front.svg",
  20348. extra: 1064 / 1012,
  20349. bottom: 0.052
  20350. },
  20351. form: "folf",
  20352. default: true
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Micro",
  20358. height: math.unit(6, "inches"),
  20359. form: "folf"
  20360. },
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(6, "feet"),
  20364. form: "folf",
  20365. default: true
  20366. },
  20367. {
  20368. name: "Macro",
  20369. height: math.unit(72, "feet"),
  20370. form: "folf"
  20371. },
  20372. {
  20373. name: "Micro",
  20374. height: math.unit(6, "inches"),
  20375. form: "hyena"
  20376. },
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(6, "feet"),
  20380. form: "hyena",
  20381. default: true
  20382. },
  20383. {
  20384. name: "Macro",
  20385. height: math.unit(72, "feet"),
  20386. form: "hyena"
  20387. },
  20388. ],
  20389. {
  20390. "hyena": {
  20391. name: "Hyena",
  20392. default: true
  20393. },
  20394. "folf": {
  20395. name: "Folf",
  20396. },
  20397. }
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20401. {
  20402. front: {
  20403. height: math.unit(5 + 9 / 12, "feet"),
  20404. weight: math.unit(175, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/irishfox/front.svg",
  20408. extra: 1912 / 1680,
  20409. bottom: 0.02
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Nano",
  20416. height: math.unit(1, "mm")
  20417. },
  20418. {
  20419. name: "Micro",
  20420. height: math.unit(2, "inches")
  20421. },
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(5 + 9 / 12, "feet"),
  20425. default: true
  20426. },
  20427. {
  20428. name: "Macro",
  20429. height: math.unit(45, "feet")
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(6 + 1 / 12, "feet"),
  20438. weight: math.unit(75, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/aronai-sieyes/front.svg",
  20442. extra: 1532/1450,
  20443. bottom: 42/1574
  20444. }
  20445. },
  20446. side: {
  20447. height: math.unit(6 + 1 / 12, "feet"),
  20448. weight: math.unit(75, "lb"),
  20449. name: "Side",
  20450. image: {
  20451. source: "./media/characters/aronai-sieyes/side.svg",
  20452. extra: 1422/1365,
  20453. bottom: 148/1570
  20454. }
  20455. },
  20456. back: {
  20457. height: math.unit(6 + 1 / 12, "feet"),
  20458. weight: math.unit(75, "lb"),
  20459. name: "Back",
  20460. image: {
  20461. source: "./media/characters/aronai-sieyes/back.svg",
  20462. extra: 1526/1464,
  20463. bottom: 51/1577
  20464. }
  20465. },
  20466. dressed: {
  20467. height: math.unit(6 + 1 / 12, "feet"),
  20468. weight: math.unit(75, "lb"),
  20469. name: "Dressed",
  20470. image: {
  20471. source: "./media/characters/aronai-sieyes/dressed.svg",
  20472. extra: 1559/1483,
  20473. bottom: 39/1598
  20474. }
  20475. },
  20476. slit: {
  20477. height: math.unit(1.3, "feet"),
  20478. name: "Slit",
  20479. image: {
  20480. source: "./media/characters/aronai-sieyes/slit.svg"
  20481. }
  20482. },
  20483. slitSpread: {
  20484. height: math.unit(0.9, "feet"),
  20485. name: "Slit (Spread)",
  20486. image: {
  20487. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20488. }
  20489. },
  20490. rump: {
  20491. height: math.unit(1.3, "feet"),
  20492. name: "Rump",
  20493. image: {
  20494. source: "./media/characters/aronai-sieyes/rump.svg"
  20495. }
  20496. },
  20497. maw: {
  20498. height: math.unit(1.25, "feet"),
  20499. name: "Maw",
  20500. image: {
  20501. source: "./media/characters/aronai-sieyes/maw.svg"
  20502. }
  20503. },
  20504. feral: {
  20505. height: math.unit(18, "feet"),
  20506. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20507. name: "Feral",
  20508. image: {
  20509. source: "./media/characters/aronai-sieyes/feral.svg",
  20510. extra: 1530 / 1240,
  20511. bottom: 0.035
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Micro",
  20518. height: math.unit(2, "inches")
  20519. },
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(6 + 1 / 12, "feet"),
  20523. default: true
  20524. }
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(12, "feet"),
  20532. weight: math.unit(410, "kg"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/xuna/front.svg",
  20536. extra: 2184 / 1980
  20537. }
  20538. },
  20539. side: {
  20540. height: math.unit(12, "feet"),
  20541. weight: math.unit(410, "kg"),
  20542. name: "Side",
  20543. image: {
  20544. source: "./media/characters/xuna/side.svg",
  20545. extra: 2184 / 1980
  20546. }
  20547. },
  20548. back: {
  20549. height: math.unit(12, "feet"),
  20550. weight: math.unit(410, "kg"),
  20551. name: "Back",
  20552. image: {
  20553. source: "./media/characters/xuna/back.svg",
  20554. extra: 2184 / 1980
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Nano glow",
  20561. height: math.unit(10, "nm")
  20562. },
  20563. {
  20564. name: "Micro floof",
  20565. height: math.unit(0.3, "m")
  20566. },
  20567. {
  20568. name: "Huggable softy boi",
  20569. height: math.unit(3.6576, "m"),
  20570. default: true
  20571. },
  20572. {
  20573. name: "Admirable floof",
  20574. height: math.unit(80, "meters")
  20575. },
  20576. {
  20577. name: "Gentle macro",
  20578. height: math.unit(300, "meters")
  20579. },
  20580. {
  20581. name: "Very careful floof",
  20582. height: math.unit(3200, "meters")
  20583. },
  20584. {
  20585. name: "The mega floof",
  20586. height: math.unit(36000, "meters")
  20587. },
  20588. {
  20589. name: "Giga-fur-Wicker",
  20590. height: math.unit(4800000, "meters")
  20591. },
  20592. {
  20593. name: "Licky world",
  20594. height: math.unit(20000000, "meters")
  20595. },
  20596. {
  20597. name: "Floofy cyan sun",
  20598. height: math.unit(1500000000, "meters")
  20599. },
  20600. {
  20601. name: "Milky Wicker",
  20602. height: math.unit(1000000000000000000000, "meters")
  20603. },
  20604. {
  20605. name: "The observing Wicker",
  20606. height: math.unit(999999999999999999999999999, "meters")
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(5 + 9 / 12, "feet"),
  20615. weight: math.unit(150, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/arokha-sieyes/front.svg",
  20619. extra: 1425 / 1284,
  20620. bottom: 0.05
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 9 / 12, "feet")
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(30, "meters"),
  20632. default: true
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(6, "feet"),
  20641. weight: math.unit(180, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/arokh-sieyes/front.svg",
  20645. extra: 1830 / 1769,
  20646. bottom: 0.01
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(6, "feet")
  20654. },
  20655. {
  20656. name: "Macro",
  20657. height: math.unit(30, "meters"),
  20658. default: true
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20664. {
  20665. side: {
  20666. height: math.unit(13 + 1 / 12, "feet"),
  20667. weight: math.unit(8.5, "tonnes"),
  20668. preyCapacity: math.unit(36, "people"),
  20669. name: "Side",
  20670. image: {
  20671. source: "./media/characters/goldeneye/side.svg",
  20672. extra: 1139/741,
  20673. bottom: 98/1237
  20674. }
  20675. },
  20676. front: {
  20677. height: math.unit(5.1, "feet"),
  20678. weight: math.unit(8.5, "tonnes"),
  20679. preyCapacity: math.unit(36, "people"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/goldeneye/front.svg",
  20683. extra: 635/365,
  20684. bottom: 598/1233
  20685. }
  20686. },
  20687. maw: {
  20688. height: math.unit(6.6, "feet"),
  20689. name: "Maw",
  20690. image: {
  20691. source: "./media/characters/goldeneye/maw.svg"
  20692. }
  20693. },
  20694. headFront: {
  20695. height: math.unit(8, "feet"),
  20696. name: "Head (Front)",
  20697. image: {
  20698. source: "./media/characters/goldeneye/head-front.svg"
  20699. }
  20700. },
  20701. headSide: {
  20702. height: math.unit(6, "feet"),
  20703. name: "Head (Side)",
  20704. image: {
  20705. source: "./media/characters/goldeneye/head-side.svg"
  20706. }
  20707. },
  20708. headBack: {
  20709. height: math.unit(8, "feet"),
  20710. name: "Head (Back)",
  20711. image: {
  20712. source: "./media/characters/goldeneye/head-back.svg"
  20713. }
  20714. },
  20715. paw: {
  20716. height: math.unit(3.4, "feet"),
  20717. name: "Paw",
  20718. image: {
  20719. source: "./media/characters/goldeneye/paw.svg"
  20720. }
  20721. },
  20722. toering: {
  20723. height: math.unit(0.45, "feet"),
  20724. name: "Toering",
  20725. image: {
  20726. source: "./media/characters/goldeneye/toering.svg"
  20727. }
  20728. },
  20729. eyes: {
  20730. height: math.unit(0.5, "feet"),
  20731. name: "Eyes",
  20732. image: {
  20733. source: "./media/characters/goldeneye/eyes.svg"
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(13 + 1 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20747. {
  20748. front: {
  20749. height: math.unit(6 + 1 / 12, "feet"),
  20750. weight: math.unit(210, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/leonardo-lycheborne/front.svg",
  20754. extra: 776/723,
  20755. bottom: 34/810
  20756. }
  20757. },
  20758. side: {
  20759. height: math.unit(6 + 1 / 12, "feet"),
  20760. weight: math.unit(210, "lb"),
  20761. name: "Side",
  20762. image: {
  20763. source: "./media/characters/leonardo-lycheborne/side.svg",
  20764. extra: 780/728,
  20765. bottom: 12/792
  20766. }
  20767. },
  20768. back: {
  20769. height: math.unit(6 + 1 / 12, "feet"),
  20770. weight: math.unit(210, "lb"),
  20771. name: "Back",
  20772. image: {
  20773. source: "./media/characters/leonardo-lycheborne/back.svg",
  20774. extra: 775/721,
  20775. bottom: 17/792
  20776. }
  20777. },
  20778. hand: {
  20779. height: math.unit(1.08, "feet"),
  20780. name: "Hand",
  20781. image: {
  20782. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20783. }
  20784. },
  20785. foot: {
  20786. height: math.unit(1.32, "feet"),
  20787. name: "Foot",
  20788. image: {
  20789. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20790. }
  20791. },
  20792. maw: {
  20793. height: math.unit(1, "feet"),
  20794. name: "Maw",
  20795. image: {
  20796. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20797. }
  20798. },
  20799. were: {
  20800. height: math.unit(20, "feet"),
  20801. weight: math.unit(7800, "lb"),
  20802. name: "Were",
  20803. image: {
  20804. source: "./media/characters/leonardo-lycheborne/were.svg",
  20805. extra: 1224/1165,
  20806. bottom: 72/1296
  20807. }
  20808. },
  20809. feral: {
  20810. height: math.unit(7.5, "feet"),
  20811. weight: math.unit(600, "lb"),
  20812. name: "Feral",
  20813. image: {
  20814. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20815. extra: 797/702,
  20816. bottom: 139/936
  20817. }
  20818. },
  20819. taur: {
  20820. height: math.unit(11, "feet"),
  20821. weight: math.unit(3300, "lb"),
  20822. name: "Taur",
  20823. image: {
  20824. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20825. extra: 1271/1197,
  20826. bottom: 47/1318
  20827. }
  20828. },
  20829. barghest: {
  20830. height: math.unit(11, "feet"),
  20831. weight: math.unit(1300, "lb"),
  20832. name: "Barghest",
  20833. image: {
  20834. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20835. extra: 1291/1204,
  20836. bottom: 37/1328
  20837. }
  20838. },
  20839. dick: {
  20840. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20841. name: "Dick",
  20842. image: {
  20843. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20844. }
  20845. },
  20846. dickWere: {
  20847. height: math.unit((20) / 3.8, "feet"),
  20848. name: "Dick (Were)",
  20849. image: {
  20850. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20851. }
  20852. },
  20853. },
  20854. [
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(6 + 1 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(10, "feet"),
  20867. weight: math.unit(350, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/jet/front.svg",
  20871. extra: 2050 / 1980,
  20872. bottom: 0.013
  20873. }
  20874. },
  20875. back: {
  20876. height: math.unit(10, "feet"),
  20877. weight: math.unit(350, "lb"),
  20878. name: "Back",
  20879. image: {
  20880. source: "./media/characters/jet/back.svg",
  20881. extra: 2050 / 1980,
  20882. bottom: 0.013
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Micro",
  20889. height: math.unit(6, "inches")
  20890. },
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(10, "feet"),
  20894. default: true
  20895. },
  20896. {
  20897. name: "Macro",
  20898. height: math.unit(100, "feet")
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(15, "feet"),
  20907. weight: math.unit(2800, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/tanarath/front.svg",
  20911. extra: 2392 / 2220,
  20912. bottom: 0.03
  20913. }
  20914. },
  20915. back: {
  20916. height: math.unit(15, "feet"),
  20917. weight: math.unit(2800, "lb"),
  20918. name: "Back",
  20919. image: {
  20920. source: "./media/characters/tanarath/back.svg",
  20921. extra: 2392 / 2220,
  20922. bottom: 0.03
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(15, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(7 + 1 / 12, "feet"),
  20939. weight: math.unit(175, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/patty-cattybatty/front.svg",
  20943. extra: 908 / 874,
  20944. bottom: 0.025
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Micro",
  20951. height: math.unit(1, "inch")
  20952. },
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(7 + 1 / 12, "feet")
  20956. },
  20957. {
  20958. name: "Mini Macro",
  20959. height: math.unit(155, "feet")
  20960. },
  20961. {
  20962. name: "Macro",
  20963. height: math.unit(1077, "feet")
  20964. },
  20965. {
  20966. name: "Mega Macro",
  20967. height: math.unit(47650, "feet"),
  20968. default: true
  20969. },
  20970. {
  20971. name: "Giga Macro",
  20972. height: math.unit(440, "miles")
  20973. },
  20974. {
  20975. name: "Tera Macro",
  20976. height: math.unit(8700, "miles")
  20977. },
  20978. {
  20979. name: "Planetary Macro",
  20980. height: math.unit(32700, "miles")
  20981. },
  20982. {
  20983. name: "Solar Macro",
  20984. height: math.unit(550000, "miles")
  20985. },
  20986. {
  20987. name: "Celestial Macro",
  20988. height: math.unit(2.5, "AU")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(4 + 5 / 12, "feet"),
  20997. weight: math.unit(90, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/cappu/front.svg",
  21001. extra: 1247 / 1152,
  21002. bottom: 0.012
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(4 + 5 / 12, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21016. {
  21017. frontDressed: {
  21018. height: math.unit(70, "cm"),
  21019. weight: math.unit(6, "kg"),
  21020. name: "Front (Dressed)",
  21021. image: {
  21022. source: "./media/characters/sebi/front-dressed.svg",
  21023. extra: 713.5 / 686.5,
  21024. bottom: 0.003
  21025. }
  21026. },
  21027. front: {
  21028. height: math.unit(70, "cm"),
  21029. weight: math.unit(5, "kg"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/sebi/front.svg",
  21033. extra: 713.5 / 686.5,
  21034. bottom: 0.003
  21035. }
  21036. }
  21037. },
  21038. [
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(70, "cm"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(8, "meters")
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(6, "feet"),
  21055. weight: math.unit(150, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/typhek/front.svg",
  21059. extra: 1948 / 1929,
  21060. bottom: 0.025
  21061. }
  21062. },
  21063. side: {
  21064. height: math.unit(6, "feet"),
  21065. weight: math.unit(150, "lb"),
  21066. name: "Side",
  21067. image: {
  21068. source: "./media/characters/typhek/side.svg",
  21069. extra: 2034 / 2010,
  21070. bottom: 0.003
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(6, "feet"),
  21075. weight: math.unit(150, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/typhek/back.svg",
  21079. extra: 2005 / 1978,
  21080. bottom: 0.004
  21081. }
  21082. },
  21083. palm: {
  21084. height: math.unit(1.2, "feet"),
  21085. name: "Palm",
  21086. image: {
  21087. source: "./media/characters/typhek/palm.svg"
  21088. }
  21089. },
  21090. fist: {
  21091. height: math.unit(1.1, "feet"),
  21092. name: "Fist",
  21093. image: {
  21094. source: "./media/characters/typhek/fist.svg"
  21095. }
  21096. },
  21097. foot: {
  21098. height: math.unit(1.57, "feet"),
  21099. name: "Foot",
  21100. image: {
  21101. source: "./media/characters/typhek/foot.svg"
  21102. }
  21103. },
  21104. sole: {
  21105. height: math.unit(2.05, "feet"),
  21106. name: "Sole",
  21107. image: {
  21108. source: "./media/characters/typhek/sole.svg"
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(40, "stories"),
  21116. default: true
  21117. },
  21118. {
  21119. name: "Megamacro",
  21120. height: math.unit(1, "mile")
  21121. },
  21122. {
  21123. name: "Gigamacro",
  21124. height: math.unit(4000, "solarradii")
  21125. },
  21126. {
  21127. name: "Universal",
  21128. height: math.unit(1.1, "universes")
  21129. }
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21134. {
  21135. side: {
  21136. height: math.unit(5 + 7 / 12, "feet"),
  21137. weight: math.unit(150, "lb"),
  21138. name: "Side",
  21139. image: {
  21140. source: "./media/characters/kassy/side.svg",
  21141. extra: 1280 / 1225,
  21142. bottom: 0.002
  21143. }
  21144. },
  21145. front: {
  21146. height: math.unit(5 + 7 / 12, "feet"),
  21147. weight: math.unit(150, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/kassy/front.svg",
  21151. extra: 1280 / 1225,
  21152. bottom: 0.025
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(5 + 7 / 12, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/kassy/back.svg",
  21161. extra: 1280 / 1225,
  21162. bottom: 0.002
  21163. }
  21164. },
  21165. foot: {
  21166. height: math.unit(1.266, "feet"),
  21167. name: "Foot",
  21168. image: {
  21169. source: "./media/characters/kassy/foot.svg"
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(5 + 7 / 12, "feet")
  21177. },
  21178. {
  21179. name: "Macro",
  21180. height: math.unit(137, "feet"),
  21181. default: true
  21182. },
  21183. {
  21184. name: "Megamacro",
  21185. height: math.unit(1, "mile")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21191. {
  21192. front: {
  21193. height: math.unit(6 + 1 / 12, "feet"),
  21194. weight: math.unit(200, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/neil/front.svg",
  21198. extra: 1326 / 1250,
  21199. bottom: 0.023
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(6 + 1 / 12, "feet"),
  21207. default: true
  21208. },
  21209. {
  21210. name: "Macro",
  21211. height: math.unit(200, "feet")
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. weight: math.unit(190, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/atticus/front.svg",
  21224. extra: 2934 / 2785,
  21225. bottom: 0.025
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(5 + 9 / 12, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(180, "feet")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21243. {
  21244. side: {
  21245. height: math.unit(9, "feet"),
  21246. weight: math.unit(650, "lb"),
  21247. name: "Side",
  21248. image: {
  21249. source: "./media/characters/milo/side.svg",
  21250. extra: 2644 / 2310,
  21251. bottom: 0.032
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(9, "feet"),
  21259. default: true
  21260. },
  21261. {
  21262. name: "Macro",
  21263. height: math.unit(300, "feet")
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21269. {
  21270. side: {
  21271. height: math.unit(8, "meters"),
  21272. weight: math.unit(90000, "kg"),
  21273. name: "Side",
  21274. image: {
  21275. source: "./media/characters/ijzer/side.svg",
  21276. extra: 2756 / 1600,
  21277. bottom: 0.01
  21278. }
  21279. },
  21280. },
  21281. [
  21282. {
  21283. name: "Small",
  21284. height: math.unit(3, "meters")
  21285. },
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(8, "meters"),
  21289. default: true
  21290. },
  21291. {
  21292. name: "Normal+",
  21293. height: math.unit(10, "meters")
  21294. },
  21295. {
  21296. name: "Bigger",
  21297. height: math.unit(24, "meters")
  21298. },
  21299. {
  21300. name: "Huge",
  21301. height: math.unit(80, "meters")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21307. {
  21308. front: {
  21309. height: math.unit(6 + 2 / 12, "feet"),
  21310. weight: math.unit(153, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/luca-cervicum/front.svg",
  21314. extra: 370 / 327,
  21315. bottom: 0.015
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(6 + 2 / 12, "feet"),
  21320. weight: math.unit(153, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/luca-cervicum/back.svg",
  21324. extra: 367 / 333,
  21325. bottom: 0.005
  21326. }
  21327. },
  21328. frontGear: {
  21329. height: math.unit(6 + 2 / 12, "feet"),
  21330. weight: math.unit(173, "lb"),
  21331. name: "Front (Gear)",
  21332. image: {
  21333. source: "./media/characters/luca-cervicum/front-gear.svg",
  21334. extra: 377 / 333,
  21335. bottom: 0.006
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(6 + 2 / 12, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(6 + 1 / 12, "feet"),
  21352. weight: math.unit(304, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/oliver/front.svg",
  21356. extra: 157 / 143,
  21357. bottom: 0.08
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(6 + 1 / 12, "feet"),
  21365. default: true
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21371. {
  21372. front: {
  21373. height: math.unit(5 + 7 / 12, "feet"),
  21374. weight: math.unit(140, "lb"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/shane/front.svg",
  21378. extra: 304 / 289,
  21379. bottom: 0.005
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(5 + 7 / 12, "feet"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(5 + 9 / 12, "feet"),
  21396. weight: math.unit(178, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/shin/front.svg",
  21400. extra: 159 / 151,
  21401. bottom: 0.015
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(5 + 9 / 12, "feet"),
  21409. default: true
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21415. {
  21416. front: {
  21417. height: math.unit(5 + 10 / 12, "feet"),
  21418. weight: math.unit(168, "lb"),
  21419. name: "Front",
  21420. image: {
  21421. source: "./media/characters/xerxes/front.svg",
  21422. extra: 282 / 260,
  21423. bottom: 0.045
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(5 + 10 / 12, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(6 + 7 / 12, "feet"),
  21440. weight: math.unit(208, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/chaska/front.svg",
  21444. extra: 332 / 319,
  21445. bottom: 0.015
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(6 + 7 / 12, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(5 + 8 / 12, "feet"),
  21462. weight: math.unit(208, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/enuk/front.svg",
  21466. extra: 437 / 406,
  21467. bottom: 0.02
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(5 + 8 / 12, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(5 + 10 / 12, "feet"),
  21484. weight: math.unit(252, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/bruun/front.svg",
  21488. extra: 197 / 187,
  21489. bottom: 0.012
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(5 + 10 / 12, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(6 + 10 / 12, "feet"),
  21506. weight: math.unit(255, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/alexeev/front.svg",
  21510. extra: 213 / 200,
  21511. bottom: 0.05
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(6 + 10 / 12, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(2 + 8 / 12, "feet"),
  21528. weight: math.unit(22, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/evelyn/front.svg",
  21532. extra: 208 / 180
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(2 + 8 / 12, "feet"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(5 + 9 / 12, "feet"),
  21549. weight: math.unit(139, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/inca/front.svg",
  21553. extra: 294 / 291,
  21554. bottom: 0.03
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(5 + 9 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21568. {
  21569. front: {
  21570. height: math.unit(6 + 3 / 12, "feet"),
  21571. weight: math.unit(185, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/mera/front.svg",
  21575. extra: 291 / 277,
  21576. bottom: 0.03
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(6 + 3 / 12, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(6 + 7 / 12, "feet"),
  21593. weight: math.unit(160, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/ceres/front.svg",
  21597. extra: 1023 / 950,
  21598. bottom: 0.027
  21599. }
  21600. },
  21601. back: {
  21602. height: math.unit(6 + 7 / 12, "feet"),
  21603. weight: math.unit(160, "lb"),
  21604. name: "Back",
  21605. image: {
  21606. source: "./media/characters/ceres/back.svg",
  21607. extra: 1023 / 950
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(6 + 7 / 12, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(5 + 10 / 12, "feet"),
  21624. weight: math.unit(150, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/kris/front.svg",
  21628. extra: 885 / 803,
  21629. bottom: 0.03
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(5 + 10 / 12, "feet"),
  21637. default: true
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(7, "feet"),
  21646. weight: math.unit(120, "kg"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/taluthus/front.svg",
  21650. extra: 903 / 833,
  21651. bottom: 0.015
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(7, "feet"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(300, "feet")
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(5 + 9 / 12, "feet"),
  21672. weight: math.unit(145, "lb"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/dawn/front.svg",
  21676. extra: 2094 / 2016,
  21677. bottom: 0.025
  21678. }
  21679. },
  21680. back: {
  21681. height: math.unit(5 + 9 / 12, "feet"),
  21682. weight: math.unit(160, "lb"),
  21683. name: "Back",
  21684. image: {
  21685. source: "./media/characters/dawn/back.svg",
  21686. extra: 2112 / 2080,
  21687. bottom: 0.005
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(6 + 7 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21701. {
  21702. anthro: {
  21703. height: math.unit(8 + 3 / 12, "feet"),
  21704. weight: math.unit(450, "lb"),
  21705. name: "Anthro",
  21706. image: {
  21707. source: "./media/characters/arador/anthro.svg",
  21708. extra: 1835 / 1718,
  21709. bottom: 0.025
  21710. }
  21711. },
  21712. feral: {
  21713. height: math.unit(4, "feet"),
  21714. weight: math.unit(200, "lb"),
  21715. name: "Feral",
  21716. image: {
  21717. source: "./media/characters/arador/feral.svg",
  21718. extra: 1683 / 1514,
  21719. bottom: 0.07
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(8 + 3 / 12, "feet")
  21727. },
  21728. {
  21729. name: "Macro",
  21730. height: math.unit(82.5, "feet"),
  21731. default: true
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(5 + 10 / 12, "feet"),
  21740. weight: math.unit(125, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/dharsi/front.svg",
  21744. extra: 716 / 630,
  21745. bottom: 0.035
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Nano",
  21752. height: math.unit(100, "nm")
  21753. },
  21754. {
  21755. name: "Micro",
  21756. height: math.unit(2, "inches")
  21757. },
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 10 / 12, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Macro",
  21765. height: math.unit(1000, "feet")
  21766. },
  21767. {
  21768. name: "Megamacro",
  21769. height: math.unit(10, "miles")
  21770. },
  21771. {
  21772. name: "Gigamacro",
  21773. height: math.unit(3000, "miles")
  21774. },
  21775. {
  21776. name: "Teramacro",
  21777. height: math.unit(500000, "miles")
  21778. },
  21779. {
  21780. name: "Teramacro+",
  21781. height: math.unit(30, "galaxies")
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(6, "feet"),
  21790. weight: math.unit(150, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/deathy/front.svg",
  21794. extra: 1552 / 1463,
  21795. bottom: 0.025
  21796. }
  21797. },
  21798. side: {
  21799. height: math.unit(6, "feet"),
  21800. weight: math.unit(150, "lb"),
  21801. name: "Side",
  21802. image: {
  21803. source: "./media/characters/deathy/side.svg",
  21804. extra: 1604 / 1455,
  21805. bottom: 0.025
  21806. }
  21807. },
  21808. back: {
  21809. height: math.unit(6, "feet"),
  21810. weight: math.unit(150, "lb"),
  21811. name: "Back",
  21812. image: {
  21813. source: "./media/characters/deathy/back.svg",
  21814. extra: 1580 / 1463,
  21815. bottom: 0.005
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Micro",
  21822. height: math.unit(5, "millimeters")
  21823. },
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(6 + 5 / 12, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21833. {
  21834. front: {
  21835. height: math.unit(16, "feet"),
  21836. weight: math.unit(4000, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/juniper/front.svg",
  21840. bottom: 0.04
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Normal",
  21847. height: math.unit(16, "feet"),
  21848. default: true
  21849. },
  21850. ]
  21851. ))
  21852. characterMakers.push(() => makeCharacter(
  21853. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21854. {
  21855. front: {
  21856. height: math.unit(6, "feet"),
  21857. weight: math.unit(150, "lb"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/hipster/front.svg",
  21861. extra: 1312 / 1209,
  21862. bottom: 0.025
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(6, "feet"),
  21867. weight: math.unit(150, "lb"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/hipster/back.svg",
  21871. extra: 1281 / 1196,
  21872. bottom: 0.01
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Micro",
  21879. height: math.unit(1, "mm")
  21880. },
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(4, "inches"),
  21884. default: true
  21885. },
  21886. {
  21887. name: "Macro",
  21888. height: math.unit(500, "feet")
  21889. },
  21890. {
  21891. name: "Megamacro",
  21892. height: math.unit(1000, "miles")
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/tendirmuldr/front.svg",
  21905. extra: 1878 / 1772,
  21906. bottom: 0.015
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Megamacro",
  21913. height: math.unit(1500, "miles"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21920. {
  21921. front: {
  21922. height: math.unit(14, "feet"),
  21923. weight: math.unit(12000, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/mort/front.svg",
  21927. extra: 365 / 318,
  21928. bottom: 0.01
  21929. }
  21930. },
  21931. side: {
  21932. height: math.unit(14, "feet"),
  21933. weight: math.unit(12000, "lb"),
  21934. name: "Side",
  21935. image: {
  21936. source: "./media/characters/mort/side.svg",
  21937. extra: 365 / 318,
  21938. bottom: 0.052
  21939. },
  21940. default: true
  21941. },
  21942. back: {
  21943. height: math.unit(14, "feet"),
  21944. weight: math.unit(12000, "lb"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/mort/back.svg",
  21948. extra: 371 / 332,
  21949. bottom: 0.18
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(14, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21963. {
  21964. front: {
  21965. height: math.unit(8, "feet"),
  21966. weight: math.unit(1, "ton"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/lycoa/front.svg",
  21970. extra: 1836/1728,
  21971. bottom: 81/1917
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(8, "feet"),
  21976. weight: math.unit(1, "ton"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/lycoa/back.svg",
  21980. extra: 1785/1720,
  21981. bottom: 91/1876
  21982. }
  21983. },
  21984. head: {
  21985. height: math.unit(1.6243, "feet"),
  21986. name: "Head",
  21987. image: {
  21988. source: "./media/characters/lycoa/head.svg",
  21989. extra: 1011/782,
  21990. bottom: 0/1011
  21991. }
  21992. },
  21993. tailmaw: {
  21994. height: math.unit(1.9, "feet"),
  21995. name: "Tailmaw",
  21996. image: {
  21997. source: "./media/characters/lycoa/tailmaw.svg"
  21998. }
  21999. },
  22000. tentacles: {
  22001. height: math.unit(2.1, "feet"),
  22002. name: "Tentacles",
  22003. image: {
  22004. source: "./media/characters/lycoa/tentacles.svg"
  22005. }
  22006. },
  22007. dick: {
  22008. height: math.unit(1.73, "feet"),
  22009. name: "Dick",
  22010. image: {
  22011. source: "./media/characters/lycoa/dick.svg"
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(8, "feet"),
  22019. default: true
  22020. },
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(30, "feet")
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22029. {
  22030. front: {
  22031. height: math.unit(4 + 2 / 12, "feet"),
  22032. weight: math.unit(70, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/naldara/front.svg",
  22036. extra: 1664/1387,
  22037. bottom: 81/1745
  22038. },
  22039. form: "anthro",
  22040. default: true
  22041. },
  22042. naga: {
  22043. height: math.unit(20, "feet"),
  22044. weight: math.unit(15000, "kg"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/naldara/naga.svg",
  22048. extra: 1590/1396,
  22049. bottom: 285/1875
  22050. },
  22051. form: "naga",
  22052. default: true
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(4 + 2 / 12, "feet"),
  22059. form: "anthro",
  22060. default: true
  22061. },
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(20, "feet"),
  22065. form: "naga",
  22066. default: true
  22067. },
  22068. ],
  22069. {
  22070. "anthro": {
  22071. name: "Anthro",
  22072. default: true
  22073. },
  22074. "naga": {
  22075. name: "Naga"
  22076. }
  22077. }
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(13 + 7 / 12, "feet"),
  22084. weight: math.unit(1500, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/briar/front.svg",
  22088. extra: 1223/1157,
  22089. bottom: 123/1346
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(13 + 7 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22103. {
  22104. side: {
  22105. height: math.unit(16, "feet"),
  22106. weight: math.unit(500, "lb"),
  22107. name: "Side",
  22108. image: {
  22109. source: "./media/characters/vanguard/side.svg",
  22110. extra: 1022/914,
  22111. bottom: 30/1052
  22112. }
  22113. },
  22114. sideAlt: {
  22115. height: math.unit(10, "feet"),
  22116. weight: math.unit(500, "lb"),
  22117. name: "Side (Alt)",
  22118. image: {
  22119. source: "./media/characters/vanguard/side-alt.svg",
  22120. extra: 502 / 425,
  22121. bottom: 0.087
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(17.71, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(7.5, "feet"),
  22138. weight: math.unit(2, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/artemis/work-safe-front.svg",
  22142. extra: 1192 / 1075,
  22143. bottom: 0.07
  22144. },
  22145. form: "work-safe",
  22146. default: true
  22147. },
  22148. frontNsfw: {
  22149. height: math.unit(7.5, "feet"),
  22150. weight: math.unit(2, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/artemis/calibrating-front.svg",
  22154. extra: 1192 / 1075,
  22155. bottom: 0.07
  22156. },
  22157. form: "calibrating",
  22158. default: true
  22159. },
  22160. frontNsfwer: {
  22161. height: math.unit(7.5, "feet"),
  22162. weight: math.unit(2, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/artemis/oversize-load-front.svg",
  22166. extra: 1192 / 1075,
  22167. bottom: 0.07
  22168. },
  22169. form: "oversize-load",
  22170. default: true
  22171. },
  22172. side: {
  22173. height: math.unit(7.5, "feet"),
  22174. weight: math.unit(2, "lb"),
  22175. name: "Side",
  22176. image: {
  22177. source: "./media/characters/artemis/work-safe-side.svg",
  22178. extra: 1192 / 1075,
  22179. bottom: 0.07
  22180. },
  22181. form: "work-safe"
  22182. },
  22183. sideNsfw: {
  22184. height: math.unit(7.5, "feet"),
  22185. weight: math.unit(2, "lb"),
  22186. name: "Side",
  22187. image: {
  22188. source: "./media/characters/artemis/calibrating-side.svg",
  22189. extra: 1192 / 1075,
  22190. bottom: 0.07
  22191. },
  22192. form: "calibrating"
  22193. },
  22194. sideNsfwer: {
  22195. height: math.unit(7.5, "feet"),
  22196. weight: math.unit(2, "lb"),
  22197. name: "Side",
  22198. image: {
  22199. source: "./media/characters/artemis/oversize-load-side.svg",
  22200. extra: 1192 / 1075,
  22201. bottom: 0.07
  22202. },
  22203. form: "oversize-load"
  22204. },
  22205. maw: {
  22206. height: math.unit(1.1, "feet"),
  22207. name: "Maw",
  22208. image: {
  22209. source: "./media/characters/artemis/maw.svg"
  22210. },
  22211. form: "work-safe"
  22212. },
  22213. stomach: {
  22214. height: math.unit(0.95, "feet"),
  22215. name: "Stomach",
  22216. image: {
  22217. source: "./media/characters/artemis/stomach.svg"
  22218. },
  22219. form: "work-safe"
  22220. },
  22221. dickCanine: {
  22222. height: math.unit(1, "feet"),
  22223. name: "Dick (Canine)",
  22224. image: {
  22225. source: "./media/characters/artemis/dick-canine.svg"
  22226. },
  22227. form: "calibrating"
  22228. },
  22229. dickEquine: {
  22230. height: math.unit(0.85, "feet"),
  22231. name: "Dick (Equine)",
  22232. image: {
  22233. source: "./media/characters/artemis/dick-equine.svg"
  22234. },
  22235. form: "calibrating"
  22236. },
  22237. dickExotic: {
  22238. height: math.unit(0.85, "feet"),
  22239. name: "Dick (Exotic)",
  22240. image: {
  22241. source: "./media/characters/artemis/dick-exotic.svg"
  22242. },
  22243. form: "calibrating"
  22244. },
  22245. dickCanineBigger: {
  22246. height: math.unit(1 * 1.33, "feet"),
  22247. name: "Dick (Canine)",
  22248. image: {
  22249. source: "./media/characters/artemis/dick-canine.svg"
  22250. },
  22251. form: "oversize-load"
  22252. },
  22253. dickEquineBigger: {
  22254. height: math.unit(0.85 * 1.33, "feet"),
  22255. name: "Dick (Equine)",
  22256. image: {
  22257. source: "./media/characters/artemis/dick-equine.svg"
  22258. },
  22259. form: "oversize-load"
  22260. },
  22261. dickExoticBigger: {
  22262. height: math.unit(0.85 * 1.33, "feet"),
  22263. name: "Dick (Exotic)",
  22264. image: {
  22265. source: "./media/characters/artemis/dick-exotic.svg"
  22266. },
  22267. form: "oversize-load"
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(7.5, "feet"),
  22274. form: "work-safe",
  22275. default: true
  22276. },
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(7.5, "feet"),
  22280. form: "calibrating",
  22281. default: true
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(7.5, "feet"),
  22286. form: "oversize-load",
  22287. default: true
  22288. },
  22289. {
  22290. name: "Enlarged",
  22291. height: math.unit(12, "feet"),
  22292. form: "work-safe",
  22293. },
  22294. {
  22295. name: "Enlarged",
  22296. height: math.unit(12, "feet"),
  22297. form: "calibrating",
  22298. },
  22299. {
  22300. name: "Enlarged",
  22301. height: math.unit(12, "feet"),
  22302. form: "oversize-load",
  22303. },
  22304. ],
  22305. {
  22306. "work-safe": {
  22307. name: "Work-Safe",
  22308. default: true
  22309. },
  22310. "calibrating": {
  22311. name: "Calibrating"
  22312. },
  22313. "oversize-load": {
  22314. name: "Oversize Load"
  22315. }
  22316. }
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(5 + 3 / 12, "feet"),
  22323. weight: math.unit(160, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/kira/front.svg",
  22327. extra: 906 / 786,
  22328. bottom: 0.01
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(5 + 3 / 12, "feet"),
  22333. weight: math.unit(160, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/kira/back.svg",
  22337. extra: 882 / 757,
  22338. bottom: 0.005
  22339. }
  22340. },
  22341. frontDressed: {
  22342. height: math.unit(5 + 3 / 12, "feet"),
  22343. weight: math.unit(160, "lb"),
  22344. name: "Front (Dressed)",
  22345. image: {
  22346. source: "./media/characters/kira/front-dressed.svg",
  22347. extra: 906 / 786,
  22348. bottom: 0.01
  22349. }
  22350. },
  22351. beans: {
  22352. height: math.unit(0.92, "feet"),
  22353. name: "Beans",
  22354. image: {
  22355. source: "./media/characters/kira/beans.svg"
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(5 + 3 / 12, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(5 + 4 / 12, "feet"),
  22372. weight: math.unit(145, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/scramble/front.svg",
  22376. extra: 763 / 727,
  22377. bottom: 0.05
  22378. }
  22379. },
  22380. back: {
  22381. height: math.unit(5 + 4 / 12, "feet"),
  22382. weight: math.unit(145, "lb"),
  22383. name: "Back",
  22384. image: {
  22385. source: "./media/characters/scramble/back.svg",
  22386. extra: 826 / 737,
  22387. bottom: 0.002
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(5 + 4 / 12, "feet"),
  22395. default: true
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22401. {
  22402. side: {
  22403. height: math.unit(6 + 2 / 12, "feet"),
  22404. weight: math.unit(190, "lb"),
  22405. name: "Side",
  22406. image: {
  22407. source: "./media/characters/biscuit/side.svg",
  22408. extra: 858 / 791,
  22409. bottom: 0.044
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(6 + 2 / 12, "feet"),
  22417. default: true
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(5 + 2 / 12, "feet"),
  22426. weight: math.unit(120, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/poffin/front.svg",
  22430. extra: 786 / 680,
  22431. bottom: 0.005
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(5 + 2 / 12, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(6 + 3 / 12, "feet"),
  22448. weight: math.unit(519, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/dhari/front.svg",
  22452. extra: 1048 / 946,
  22453. bottom: 0.015
  22454. }
  22455. },
  22456. back: {
  22457. height: math.unit(6 + 3 / 12, "feet"),
  22458. weight: math.unit(519, "lb"),
  22459. name: "Back",
  22460. image: {
  22461. source: "./media/characters/dhari/back.svg",
  22462. extra: 1048 / 931,
  22463. bottom: 0.005
  22464. }
  22465. },
  22466. frontDressed: {
  22467. height: math.unit(6 + 3 / 12, "feet"),
  22468. weight: math.unit(519, "lb"),
  22469. name: "Front (Dressed)",
  22470. image: {
  22471. source: "./media/characters/dhari/front-dressed.svg",
  22472. extra: 1713 / 1546,
  22473. bottom: 0.02
  22474. }
  22475. },
  22476. backDressed: {
  22477. height: math.unit(6 + 3 / 12, "feet"),
  22478. weight: math.unit(519, "lb"),
  22479. name: "Back (Dressed)",
  22480. image: {
  22481. source: "./media/characters/dhari/back-dressed.svg",
  22482. extra: 1699 / 1537,
  22483. bottom: 0.01
  22484. }
  22485. },
  22486. maw: {
  22487. height: math.unit(0.95, "feet"),
  22488. name: "Maw",
  22489. image: {
  22490. source: "./media/characters/dhari/maw.svg"
  22491. }
  22492. },
  22493. wereFront: {
  22494. height: math.unit(12 + 8 / 12, "feet"),
  22495. weight: math.unit(4000, "lb"),
  22496. name: "Front (Were)",
  22497. image: {
  22498. source: "./media/characters/dhari/were-front.svg",
  22499. extra: 1065 / 969,
  22500. bottom: 0.015
  22501. }
  22502. },
  22503. wereBack: {
  22504. height: math.unit(12 + 8 / 12, "feet"),
  22505. weight: math.unit(4000, "lb"),
  22506. name: "Back (Were)",
  22507. image: {
  22508. source: "./media/characters/dhari/were-back.svg",
  22509. extra: 1065 / 969,
  22510. bottom: 0.012
  22511. }
  22512. },
  22513. wereMaw: {
  22514. height: math.unit(0.625, "meters"),
  22515. name: "Maw (Were)",
  22516. image: {
  22517. source: "./media/characters/dhari/were-maw.svg"
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Normal",
  22524. height: math.unit(6 + 3 / 12, "feet"),
  22525. default: true
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22531. {
  22532. anthro: {
  22533. height: math.unit(5 + 7 / 12, "feet"),
  22534. weight: math.unit(175, "lb"),
  22535. name: "Anthro",
  22536. image: {
  22537. source: "./media/characters/rena-dyne/anthro.svg",
  22538. extra: 1849 / 1785,
  22539. bottom: 0.005
  22540. }
  22541. },
  22542. taur: {
  22543. height: math.unit(15 + 6 / 12, "feet"),
  22544. weight: math.unit(8000, "lb"),
  22545. name: "Taur",
  22546. image: {
  22547. source: "./media/characters/rena-dyne/taur.svg",
  22548. extra: 2315 / 2234,
  22549. bottom: 0.033
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5 + 7 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22563. {
  22564. front: {
  22565. height: math.unit(8, "feet"),
  22566. weight: math.unit(600, "lb"),
  22567. name: "Front",
  22568. image: {
  22569. source: "./media/characters/weremeep/front.svg",
  22570. extra: 970/849,
  22571. bottom: 7/977
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(8, "feet"),
  22579. default: true
  22580. },
  22581. {
  22582. name: "Lorg",
  22583. height: math.unit(12, "feet")
  22584. },
  22585. {
  22586. name: "Oh Lawd She Comin'",
  22587. height: math.unit(20, "feet")
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22593. {
  22594. front: {
  22595. height: math.unit(4, "feet"),
  22596. weight: math.unit(90, "lb"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/reza/front.svg",
  22600. extra: 1183 / 1111,
  22601. bottom: 0.017
  22602. }
  22603. },
  22604. back: {
  22605. height: math.unit(4, "feet"),
  22606. weight: math.unit(90, "lb"),
  22607. name: "Back",
  22608. image: {
  22609. source: "./media/characters/reza/back.svg",
  22610. extra: 1183 / 1111,
  22611. bottom: 0.01
  22612. }
  22613. },
  22614. drake: {
  22615. height: math.unit(30, "feet"),
  22616. weight: math.unit(246960, "lb"),
  22617. name: "Drake",
  22618. image: {
  22619. source: "./media/characters/reza/drake.svg",
  22620. extra: 2350 / 2024,
  22621. bottom: 60.7 / 2403
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(4, "feet"),
  22629. default: true
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22635. {
  22636. side: {
  22637. height: math.unit(15, "feet"),
  22638. weight: math.unit(14, "tons"),
  22639. name: "Side",
  22640. image: {
  22641. source: "./media/characters/athea/side.svg",
  22642. extra: 960 / 540,
  22643. bottom: 0.003
  22644. }
  22645. },
  22646. sitting: {
  22647. height: math.unit(6 * 2.85, "feet"),
  22648. weight: math.unit(14, "tons"),
  22649. name: "Sitting",
  22650. image: {
  22651. source: "./media/characters/athea/sitting.svg",
  22652. extra: 621 / 581,
  22653. bottom: 0.075
  22654. }
  22655. },
  22656. maw: {
  22657. height: math.unit(7.59498031496063, "feet"),
  22658. name: "Maw",
  22659. image: {
  22660. source: "./media/characters/athea/maw.svg"
  22661. }
  22662. },
  22663. },
  22664. [
  22665. {
  22666. name: "Lap Cat",
  22667. height: math.unit(2.5, "feet")
  22668. },
  22669. {
  22670. name: "Minimacro",
  22671. height: math.unit(15, "feet"),
  22672. default: true
  22673. },
  22674. {
  22675. name: "Macro",
  22676. height: math.unit(120, "feet")
  22677. },
  22678. {
  22679. name: "Macro+",
  22680. height: math.unit(640, "feet")
  22681. },
  22682. {
  22683. name: "Colossus",
  22684. height: math.unit(2.2, "miles")
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(8 + 8 / 12, "feet"),
  22693. weight: math.unit(130, "kg"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/seroko/front.svg",
  22697. extra: 1385 / 1280,
  22698. bottom: 0.025
  22699. }
  22700. },
  22701. back: {
  22702. height: math.unit(8 + 8 / 12, "feet"),
  22703. weight: math.unit(130, "kg"),
  22704. name: "Back",
  22705. image: {
  22706. source: "./media/characters/seroko/back.svg",
  22707. extra: 1369 / 1238,
  22708. bottom: 0.018
  22709. }
  22710. },
  22711. frontDressed: {
  22712. height: math.unit(8 + 8 / 12, "feet"),
  22713. weight: math.unit(130, "kg"),
  22714. name: "Front (Dressed)",
  22715. image: {
  22716. source: "./media/characters/seroko/front-dressed.svg",
  22717. extra: 1366 / 1275,
  22718. bottom: 0.03
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(8 + 8 / 12, "feet"),
  22726. default: true
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(5.5, "feet"),
  22735. weight: math.unit(160, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/quatzi/front.svg",
  22739. extra: 2346 / 2242,
  22740. bottom: 0.015
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Normal",
  22747. height: math.unit(5.5, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Big",
  22752. height: math.unit(7.7, "feet")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(5 + 11 / 12, "feet"),
  22761. weight: math.unit(180, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/sen/front.svg",
  22765. extra: 1321 / 1254,
  22766. bottom: 0.015
  22767. }
  22768. },
  22769. side: {
  22770. height: math.unit(5 + 11 / 12, "feet"),
  22771. weight: math.unit(180, "lb"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/sen/side.svg",
  22775. extra: 1321 / 1254,
  22776. bottom: 0.007
  22777. }
  22778. },
  22779. back: {
  22780. height: math.unit(5 + 11 / 12, "feet"),
  22781. weight: math.unit(180, "lb"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/sen/back.svg",
  22785. extra: 1321 / 1254
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(5 + 11 / 12, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(166.6, "cm"),
  22802. weight: math.unit(66.6, "kg"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/fruity/front.svg",
  22806. extra: 1510 / 1386,
  22807. bottom: 0.04
  22808. }
  22809. },
  22810. back: {
  22811. height: math.unit(166.6, "cm"),
  22812. weight: math.unit(66.6, "lb"),
  22813. name: "Back",
  22814. image: {
  22815. source: "./media/characters/fruity/back.svg",
  22816. extra: 1563 / 1435,
  22817. bottom: 0.005
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Normal",
  22824. height: math.unit(166.6, "cm"),
  22825. default: true
  22826. },
  22827. {
  22828. name: "Demonic",
  22829. height: math.unit(166.6, "feet")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22835. {
  22836. side: {
  22837. height: math.unit(10, "feet"),
  22838. weight: math.unit(500, "lb"),
  22839. name: "Side",
  22840. image: {
  22841. source: "./media/characters/zost/side.svg",
  22842. extra: 2870/2533,
  22843. bottom: 252/3122
  22844. }
  22845. },
  22846. mawFront: {
  22847. height: math.unit(1.08, "meters"),
  22848. name: "Maw (Front)",
  22849. image: {
  22850. source: "./media/characters/zost/maw-front.svg"
  22851. }
  22852. },
  22853. mawSide: {
  22854. height: math.unit(2.66, "feet"),
  22855. name: "Maw (Side)",
  22856. image: {
  22857. source: "./media/characters/zost/maw-side.svg"
  22858. }
  22859. },
  22860. wingspan: {
  22861. height: math.unit(7.4, "feet"),
  22862. name: "Wingspan",
  22863. image: {
  22864. source: "./media/characters/zost/wingspan.svg"
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Normal",
  22871. height: math.unit(10, "feet"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(5 + 4 / 12, "feet"),
  22881. weight: math.unit(120, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/luci/front.svg",
  22885. extra: 1985 / 1884,
  22886. bottom: 0.04
  22887. }
  22888. },
  22889. back: {
  22890. height: math.unit(5 + 4 / 12, "feet"),
  22891. weight: math.unit(120, "lb"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/luci/back.svg",
  22895. extra: 1892 / 1791,
  22896. bottom: 0.002
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(5 + 4 / 12, "feet"),
  22904. default: true
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(1500, "feet"),
  22913. weight: math.unit(3.8e6, "tons"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/2th/front.svg",
  22917. extra: 3489 / 3350,
  22918. bottom: 0.1
  22919. }
  22920. },
  22921. foot: {
  22922. height: math.unit(461, "feet"),
  22923. name: "Foot",
  22924. image: {
  22925. source: "./media/characters/2th/foot.svg"
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "\"Micro\"",
  22932. height: math.unit(15 + 7 / 12, "feet")
  22933. },
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(1500, "feet"),
  22937. default: true
  22938. },
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(5000, "feet")
  22942. },
  22943. {
  22944. name: "Megamacro",
  22945. height: math.unit(15, "miles")
  22946. },
  22947. {
  22948. name: "Gigamacro",
  22949. height: math.unit(4000, "miles")
  22950. },
  22951. {
  22952. name: "Galactic",
  22953. height: math.unit(50, "AU")
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(5 + 6 / 12, "feet"),
  22962. weight: math.unit(220, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/amethyst/front.svg",
  22966. extra: 2078 / 2040,
  22967. bottom: 0.045
  22968. }
  22969. },
  22970. back: {
  22971. height: math.unit(5 + 6 / 12, "feet"),
  22972. weight: math.unit(220, "lb"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/amethyst/back.svg",
  22976. extra: 2021 / 1989,
  22977. bottom: 0.02
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(5 + 6 / 12, "feet"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(4 + 11 / 12, "feet"),
  22994. weight: math.unit(120, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/yumi-akiyama/front.svg",
  22998. extra: 1327 / 1235,
  22999. bottom: 0.02
  23000. }
  23001. },
  23002. back: {
  23003. height: math.unit(4 + 11 / 12, "feet"),
  23004. weight: math.unit(120, "lb"),
  23005. name: "Back",
  23006. image: {
  23007. source: "./media/characters/yumi-akiyama/back.svg",
  23008. extra: 1287 / 1245,
  23009. bottom: 0.002
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Galactic",
  23016. height: math.unit(50, "galaxies"),
  23017. default: true
  23018. },
  23019. {
  23020. name: "Universal",
  23021. height: math.unit(100, "universes")
  23022. },
  23023. ]
  23024. ))
  23025. characterMakers.push(() => makeCharacter(
  23026. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23027. {
  23028. front: {
  23029. height: math.unit(8, "feet"),
  23030. weight: math.unit(500, "lb"),
  23031. name: "Front",
  23032. image: {
  23033. source: "./media/characters/rifter-yrmori/front.svg",
  23034. extra: 1180 / 1125,
  23035. bottom: 0.02
  23036. }
  23037. },
  23038. back: {
  23039. height: math.unit(8, "feet"),
  23040. weight: math.unit(500, "lb"),
  23041. name: "Back",
  23042. image: {
  23043. source: "./media/characters/rifter-yrmori/back.svg",
  23044. extra: 1190 / 1145,
  23045. bottom: 0.001
  23046. }
  23047. },
  23048. wings: {
  23049. height: math.unit(7.75, "feet"),
  23050. weight: math.unit(500, "lb"),
  23051. name: "Wings",
  23052. image: {
  23053. source: "./media/characters/rifter-yrmori/wings.svg",
  23054. extra: 1357 / 1285
  23055. }
  23056. },
  23057. maw: {
  23058. height: math.unit(0.8, "feet"),
  23059. name: "Maw",
  23060. image: {
  23061. source: "./media/characters/rifter-yrmori/maw.svg"
  23062. }
  23063. },
  23064. mawfront: {
  23065. height: math.unit(1.45, "feet"),
  23066. name: "Maw (Front)",
  23067. image: {
  23068. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(8, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(42, "meters")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23086. {
  23087. were: {
  23088. height: math.unit(25 + 6 / 12, "feet"),
  23089. weight: math.unit(10000, "lb"),
  23090. name: "Were",
  23091. image: {
  23092. source: "./media/characters/tahajin/were.svg",
  23093. extra: 801 / 770,
  23094. bottom: 0.042
  23095. }
  23096. },
  23097. aquatic: {
  23098. height: math.unit(6 + 4 / 12, "feet"),
  23099. weight: math.unit(160, "lb"),
  23100. name: "Aquatic",
  23101. image: {
  23102. source: "./media/characters/tahajin/aquatic.svg",
  23103. extra: 572 / 542,
  23104. bottom: 0.04
  23105. }
  23106. },
  23107. chow: {
  23108. height: math.unit(8 + 11 / 12, "feet"),
  23109. weight: math.unit(450, "lb"),
  23110. name: "Chow",
  23111. image: {
  23112. source: "./media/characters/tahajin/chow.svg",
  23113. extra: 660 / 640,
  23114. bottom: 0.015
  23115. }
  23116. },
  23117. demiNaga: {
  23118. height: math.unit(6 + 8 / 12, "feet"),
  23119. weight: math.unit(300, "lb"),
  23120. name: "Demi Naga",
  23121. image: {
  23122. source: "./media/characters/tahajin/demi-naga.svg",
  23123. extra: 643 / 615,
  23124. bottom: 0.1
  23125. }
  23126. },
  23127. data: {
  23128. height: math.unit(5, "inches"),
  23129. weight: math.unit(0.1, "lb"),
  23130. name: "Data",
  23131. image: {
  23132. source: "./media/characters/tahajin/data.svg"
  23133. }
  23134. },
  23135. fluu: {
  23136. height: math.unit(5 + 7 / 12, "feet"),
  23137. weight: math.unit(140, "lb"),
  23138. name: "Fluu",
  23139. image: {
  23140. source: "./media/characters/tahajin/fluu.svg",
  23141. extra: 628 / 592,
  23142. bottom: 0.02
  23143. }
  23144. },
  23145. starWarrior: {
  23146. height: math.unit(4 + 5 / 12, "feet"),
  23147. weight: math.unit(50, "lb"),
  23148. name: "Star Warrior",
  23149. image: {
  23150. source: "./media/characters/tahajin/star-warrior.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(25 + 6 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(8, "feet"),
  23167. weight: math.unit(350, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/gabira/front.svg",
  23171. extra: 1261/1154,
  23172. bottom: 51/1312
  23173. }
  23174. },
  23175. back: {
  23176. height: math.unit(8, "feet"),
  23177. weight: math.unit(350, "lb"),
  23178. name: "Back",
  23179. image: {
  23180. source: "./media/characters/gabira/back.svg",
  23181. extra: 1265/1163,
  23182. bottom: 46/1311
  23183. }
  23184. },
  23185. head: {
  23186. height: math.unit(2.85, "feet"),
  23187. name: "Head",
  23188. image: {
  23189. source: "./media/characters/gabira/head.svg"
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Normal",
  23196. height: math.unit(8, "feet"),
  23197. default: true
  23198. },
  23199. ]
  23200. ))
  23201. characterMakers.push(() => makeCharacter(
  23202. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23203. {
  23204. front: {
  23205. height: math.unit(5 + 3 / 12, "feet"),
  23206. weight: math.unit(137, "lb"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/sasha-katraine/front.svg",
  23210. extra: 1745/1694,
  23211. bottom: 37/1782
  23212. }
  23213. },
  23214. back: {
  23215. height: math.unit(5 + 3 / 12, "feet"),
  23216. weight: math.unit(137, "lb"),
  23217. name: "Back",
  23218. image: {
  23219. source: "./media/characters/sasha-katraine/back.svg",
  23220. extra: 1776/1699,
  23221. bottom: 26/1802
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Micro",
  23228. height: math.unit(5, "inches")
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(5 + 3 / 12, "feet"),
  23233. default: true
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23239. {
  23240. side: {
  23241. height: math.unit(4, "inches"),
  23242. weight: math.unit(200, "grams"),
  23243. name: "Side",
  23244. image: {
  23245. source: "./media/characters/der/side.svg",
  23246. extra: 719 / 400,
  23247. bottom: 30.6 / 749.9187
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Micro",
  23254. height: math.unit(4, "inches"),
  23255. default: true
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23261. {
  23262. side: {
  23263. height: math.unit(30, "meters"),
  23264. weight: math.unit(700, "tonnes"),
  23265. name: "Side",
  23266. image: {
  23267. source: "./media/characters/fixerdragon/side.svg",
  23268. extra: (1293.0514 - 116.03) / 1106.86,
  23269. bottom: 116.03 / 1293.0514
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Planck",
  23276. height: math.unit(1.6e-35, "meters")
  23277. },
  23278. {
  23279. name: "Micro",
  23280. height: math.unit(0.4, "meters")
  23281. },
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(30, "meters"),
  23285. default: true
  23286. },
  23287. {
  23288. name: "Megamacro",
  23289. height: math.unit(1.2, "megameters")
  23290. },
  23291. {
  23292. name: "Teramacro",
  23293. height: math.unit(130, "terameters")
  23294. },
  23295. {
  23296. name: "Yottamacro",
  23297. height: math.unit(6200, "yottameters")
  23298. },
  23299. ]
  23300. ));
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(8, "feet"),
  23306. weight: math.unit(250, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/kite/front.svg",
  23310. extra: 2796 / 2659,
  23311. bottom: 0.002
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(8, "feet"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Macro",
  23323. height: math.unit(360, "feet")
  23324. },
  23325. {
  23326. name: "Megamacro",
  23327. height: math.unit(1500, "feet")
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(5 + 11/12, "feet"),
  23336. weight: math.unit(170, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/poojawa-vynar/front.svg",
  23340. extra: 1735/1585,
  23341. bottom: 96/1831
  23342. }
  23343. },
  23344. back: {
  23345. height: math.unit(5 + 11/12, "feet"),
  23346. weight: math.unit(170, "lb"),
  23347. name: "Back",
  23348. image: {
  23349. source: "./media/characters/poojawa-vynar/back.svg",
  23350. extra: 1749/1607,
  23351. bottom: 28/1777
  23352. }
  23353. },
  23354. male: {
  23355. height: math.unit(5 + 11/12, "feet"),
  23356. weight: math.unit(170, "lb"),
  23357. name: "Male",
  23358. image: {
  23359. source: "./media/characters/poojawa-vynar/male.svg",
  23360. extra: 1855/1713,
  23361. bottom: 63/1918
  23362. }
  23363. },
  23364. taur: {
  23365. height: math.unit(5 + 11/12, "feet"),
  23366. weight: math.unit(170, "lb"),
  23367. name: "Taur",
  23368. image: {
  23369. source: "./media/characters/poojawa-vynar/taur.svg",
  23370. extra: 1151/1059,
  23371. bottom: 356/1507
  23372. }
  23373. },
  23374. frontDressed: {
  23375. height: math.unit(5 + 11/12, "feet"),
  23376. weight: math.unit(170, "lb"),
  23377. name: "Front (Dressed)",
  23378. image: {
  23379. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23380. extra: 1735/1585,
  23381. bottom: 96/1831
  23382. }
  23383. },
  23384. backDressed: {
  23385. height: math.unit(5 + 11/12, "feet"),
  23386. weight: math.unit(170, "lb"),
  23387. name: "Back (Dressed)",
  23388. image: {
  23389. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23390. extra: 1749/1607,
  23391. bottom: 28/1777
  23392. }
  23393. },
  23394. maleDressed: {
  23395. height: math.unit(5 + 11/12, "feet"),
  23396. weight: math.unit(170, "lb"),
  23397. name: "Male (Dressed)",
  23398. image: {
  23399. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23400. extra: 1855/1713,
  23401. bottom: 63/1918
  23402. }
  23403. },
  23404. taurDressed: {
  23405. height: math.unit(5 + 11/12, "feet"),
  23406. weight: math.unit(170, "lb"),
  23407. name: "Taur (Dressed)",
  23408. image: {
  23409. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23410. extra: 1151/1059,
  23411. bottom: 356/1507
  23412. }
  23413. },
  23414. maw: {
  23415. height: math.unit(1.46, "feet"),
  23416. name: "Maw",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/maw.svg"
  23419. }
  23420. },
  23421. head: {
  23422. height: math.unit(2.34, "feet"),
  23423. name: "Head",
  23424. image: {
  23425. source: "./media/characters/poojawa-vynar/head.svg"
  23426. }
  23427. },
  23428. paw: {
  23429. height: math.unit(1.61, "feet"),
  23430. name: "Paw",
  23431. image: {
  23432. source: "./media/characters/poojawa-vynar/paw.svg"
  23433. }
  23434. },
  23435. pawToering: {
  23436. height: math.unit(1.72, "feet"),
  23437. name: "Paw (Toering)",
  23438. image: {
  23439. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23440. }
  23441. },
  23442. toering: {
  23443. height: math.unit(2.9, "inches"),
  23444. name: "Toering",
  23445. image: {
  23446. source: "./media/characters/poojawa-vynar/toering.svg"
  23447. }
  23448. },
  23449. shaft: {
  23450. height: math.unit(0.625, "feet"),
  23451. name: "Shaft",
  23452. image: {
  23453. source: "./media/characters/poojawa-vynar/shaft.svg"
  23454. }
  23455. },
  23456. spade: {
  23457. height: math.unit(0.42, "feet"),
  23458. name: "Spade",
  23459. image: {
  23460. source: "./media/characters/poojawa-vynar/spade.svg"
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Shortstack",
  23467. height: math.unit(4, "feet")
  23468. },
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(5 + 11 / 12, "feet"),
  23472. default: true
  23473. },
  23474. {
  23475. name: "Tauric",
  23476. height: math.unit(4, "meters")
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(293, "meters"),
  23485. weight: math.unit(70400, "tons"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/violette/front.svg",
  23489. extra: 1227 / 1180,
  23490. bottom: 0.005
  23491. }
  23492. },
  23493. back: {
  23494. height: math.unit(293, "meters"),
  23495. weight: math.unit(70400, "tons"),
  23496. name: "Back",
  23497. image: {
  23498. source: "./media/characters/violette/back.svg",
  23499. extra: 1227 / 1180,
  23500. bottom: 0.005
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(293, "meters"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(1050, "feet"),
  23517. weight: math.unit(200000, "tons"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/alessandra/front.svg",
  23521. extra: 960 / 912,
  23522. bottom: 0.06
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Macro",
  23529. height: math.unit(1050, "feet")
  23530. },
  23531. {
  23532. name: "Macro+",
  23533. height: math.unit(900, "meters"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(5, "feet"),
  23543. weight: math.unit(187, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/person/front.svg",
  23547. extra: 3087 / 2945,
  23548. bottom: 91 / 3181
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Micro",
  23555. height: math.unit(3, "inches")
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(5, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Macro",
  23564. height: math.unit(90, "feet")
  23565. },
  23566. {
  23567. name: "Max Size",
  23568. height: math.unit(280, "feet")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(4.5, "meters"),
  23577. weight: math.unit(3200, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/ty/front.svg",
  23581. extra: 1038 / 960,
  23582. bottom: 31.156 / 1068
  23583. }
  23584. },
  23585. back: {
  23586. height: math.unit(4.5, "meters"),
  23587. weight: math.unit(3200, "lb"),
  23588. name: "Back",
  23589. image: {
  23590. source: "./media/characters/ty/back.svg",
  23591. extra: 1044 / 966,
  23592. bottom: 7.48 / 1049
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(4.5, "meters"),
  23600. default: true
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23606. {
  23607. front: {
  23608. height: math.unit(5 + 4 / 12, "feet"),
  23609. weight: math.unit(115, "lb"),
  23610. name: "Front",
  23611. image: {
  23612. source: "./media/characters/rocky/front.svg",
  23613. extra: 1012 / 975,
  23614. bottom: 54 / 1066
  23615. }
  23616. },
  23617. },
  23618. [
  23619. {
  23620. name: "Normal",
  23621. height: math.unit(5 + 4 / 12, "feet"),
  23622. default: true
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23628. {
  23629. upright: {
  23630. height: math.unit(6, "meters"),
  23631. weight: math.unit(4000, "kg"),
  23632. name: "Upright",
  23633. image: {
  23634. source: "./media/characters/ruin/upright.svg",
  23635. extra: 668 / 661,
  23636. bottom: 42 / 799.8396
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Normal",
  23643. height: math.unit(6, "meters"),
  23644. default: true
  23645. },
  23646. ]
  23647. ))
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(5, "feet"),
  23653. weight: math.unit(106, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/robin/front.svg",
  23657. extra: 862 / 799,
  23658. bottom: 42.4 / 914.8856
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(5, "feet"),
  23666. default: true
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23672. {
  23673. side: {
  23674. height: math.unit(3, "feet"),
  23675. weight: math.unit(225, "lb"),
  23676. name: "Side",
  23677. image: {
  23678. source: "./media/characters/saian/side.svg",
  23679. extra: 566 / 356,
  23680. bottom: 79.7 / 643
  23681. }
  23682. },
  23683. maw: {
  23684. height: math.unit(2.85, "feet"),
  23685. name: "Maw",
  23686. image: {
  23687. source: "./media/characters/saian/maw.svg"
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(3, "feet"),
  23695. default: true
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23701. {
  23702. side: {
  23703. height: math.unit(8, "feet"),
  23704. weight: math.unit(300, "lb"),
  23705. name: "Side",
  23706. image: {
  23707. source: "./media/characters/equus-silvermane/side.svg",
  23708. extra: 2176 / 2050,
  23709. bottom: 65.7 / 2245
  23710. }
  23711. },
  23712. front: {
  23713. height: math.unit(8, "feet"),
  23714. weight: math.unit(300, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/equus-silvermane/front.svg",
  23718. extra: 4633 / 4400,
  23719. bottom: 71.3 / 4706.915
  23720. }
  23721. },
  23722. sideStepping: {
  23723. height: math.unit(8, "feet"),
  23724. weight: math.unit(300, "lb"),
  23725. name: "Side (Stepping)",
  23726. image: {
  23727. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23728. extra: 1968 / 1860,
  23729. bottom: 16.4 / 1989
  23730. }
  23731. },
  23732. },
  23733. [
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(8, "feet")
  23737. },
  23738. {
  23739. name: "Minimacro",
  23740. height: math.unit(75, "feet"),
  23741. default: true
  23742. },
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(150, "feet")
  23746. },
  23747. {
  23748. name: "Macro+",
  23749. height: math.unit(1000, "feet")
  23750. },
  23751. {
  23752. name: "Megamacro",
  23753. height: math.unit(1, "mile")
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23759. {
  23760. side: {
  23761. height: math.unit(20, "feet"),
  23762. weight: math.unit(30000, "kg"),
  23763. name: "Side",
  23764. image: {
  23765. source: "./media/characters/windar/side.svg",
  23766. extra: 1491 / 1248,
  23767. bottom: 82.56 / 1568
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(20, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23781. {
  23782. side: {
  23783. height: math.unit(15.66, "feet"),
  23784. weight: math.unit(150, "lb"),
  23785. name: "Side",
  23786. image: {
  23787. source: "./media/characters/melody/side.svg",
  23788. extra: 1097 / 944,
  23789. bottom: 11.8 / 1109
  23790. }
  23791. },
  23792. sideOutfit: {
  23793. height: math.unit(15.66, "feet"),
  23794. weight: math.unit(150, "lb"),
  23795. name: "Side (Outfit)",
  23796. image: {
  23797. source: "./media/characters/melody/side-outfit.svg",
  23798. extra: 1097 / 944,
  23799. bottom: 11.8 / 1109
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(15.66, "feet"),
  23807. default: true
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23813. {
  23814. armoredFront: {
  23815. height: math.unit(8, "feet"),
  23816. weight: math.unit(325, "lb"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/windera/armored-front.svg",
  23820. extra: 1830/1598,
  23821. bottom: 151/1981
  23822. },
  23823. form: "armored",
  23824. default: true
  23825. },
  23826. macroFront: {
  23827. height: math.unit(70, "feet"),
  23828. weight: math.unit(315453, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/windera/macro-front.svg",
  23832. extra: 963/883,
  23833. bottom: 23/986
  23834. },
  23835. form: "macro",
  23836. default: true
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(8, "feet"),
  23843. default: true,
  23844. form: "armored"
  23845. },
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(70, "feet"),
  23849. default: true,
  23850. form: "macro"
  23851. },
  23852. ],
  23853. {
  23854. "armored": {
  23855. name: "Armored",
  23856. default: true
  23857. },
  23858. "macro": {
  23859. name: "Macro",
  23860. },
  23861. }
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23865. {
  23866. front: {
  23867. height: math.unit(28.75, "feet"),
  23868. weight: math.unit(2000, "kg"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/sonear/front.svg",
  23872. extra: 1041.1 / 964.9,
  23873. bottom: 53.7 / 1096.6
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(28.75, "feet"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23887. {
  23888. side: {
  23889. height: math.unit(25.5, "feet"),
  23890. weight: math.unit(23000, "kg"),
  23891. name: "Side",
  23892. image: {
  23893. source: "./media/characters/kanara/side.svg"
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(25.5, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23907. {
  23908. side: {
  23909. height: math.unit(10, "feet"),
  23910. weight: math.unit(1000, "kg"),
  23911. name: "Side",
  23912. image: {
  23913. source: "./media/characters/ereus/side.svg",
  23914. extra: 1157 / 959,
  23915. bottom: 153 / 1312.5
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(10, "feet"),
  23923. default: true
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23929. {
  23930. side: {
  23931. height: math.unit(4.5, "feet"),
  23932. weight: math.unit(500, "lb"),
  23933. name: "Side",
  23934. image: {
  23935. source: "./media/characters/e-ter/side.svg",
  23936. extra: 1550 / 1248,
  23937. bottom: 146 / 1694
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Normal",
  23944. height: math.unit(4.5, "feet"),
  23945. default: true
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23951. {
  23952. side: {
  23953. height: math.unit(9.7, "feet"),
  23954. weight: math.unit(4000, "kg"),
  23955. name: "Side",
  23956. image: {
  23957. source: "./media/characters/yamie/side.svg"
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Normal",
  23964. height: math.unit(9.7, "feet"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23971. {
  23972. front: {
  23973. height: math.unit(50, "feet"),
  23974. weight: math.unit(50000, "kg"),
  23975. name: "Front",
  23976. image: {
  23977. source: "./media/characters/anders/front.svg",
  23978. extra: 570 / 539,
  23979. bottom: 14.7 / 586.7
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Large",
  23986. height: math.unit(50, "feet")
  23987. },
  23988. {
  23989. name: "Macro",
  23990. height: math.unit(2000, "feet"),
  23991. default: true
  23992. },
  23993. {
  23994. name: "Megamacro",
  23995. height: math.unit(12, "miles")
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(7 + 2 / 12, "feet"),
  24004. weight: math.unit(300, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/reban/front.svg",
  24008. extra: 1287/1212,
  24009. bottom: 148/1435
  24010. }
  24011. },
  24012. head: {
  24013. height: math.unit(1.95, "feet"),
  24014. name: "Head",
  24015. image: {
  24016. source: "./media/characters/reban/head.svg"
  24017. }
  24018. },
  24019. maw: {
  24020. height: math.unit(0.95, "feet"),
  24021. name: "Maw",
  24022. image: {
  24023. source: "./media/characters/reban/maw.svg"
  24024. }
  24025. },
  24026. foot: {
  24027. height: math.unit(1.65, "feet"),
  24028. name: "Foot",
  24029. image: {
  24030. source: "./media/characters/reban/foot.svg"
  24031. }
  24032. },
  24033. dick: {
  24034. height: math.unit(7 / 5, "feet"),
  24035. name: "Dick",
  24036. image: {
  24037. source: "./media/characters/reban/dick.svg"
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Natural Height",
  24044. height: math.unit(7 + 2 / 12, "feet")
  24045. },
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(500, "feet"),
  24049. default: true
  24050. },
  24051. {
  24052. name: "Canon Height",
  24053. height: math.unit(50, "AU")
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24059. {
  24060. front: {
  24061. height: math.unit(6, "feet"),
  24062. weight: math.unit(150, "lb"),
  24063. name: "Front",
  24064. image: {
  24065. source: "./media/characters/terrance-keayes/front.svg",
  24066. extra: 1.005,
  24067. bottom: 151 / 1615
  24068. }
  24069. },
  24070. side: {
  24071. height: math.unit(6, "feet"),
  24072. weight: math.unit(150, "lb"),
  24073. name: "Side",
  24074. image: {
  24075. source: "./media/characters/terrance-keayes/side.svg",
  24076. extra: 1.005,
  24077. bottom: 129.4 / 1544
  24078. }
  24079. },
  24080. back: {
  24081. height: math.unit(6, "feet"),
  24082. weight: math.unit(150, "lb"),
  24083. name: "Back",
  24084. image: {
  24085. source: "./media/characters/terrance-keayes/back.svg",
  24086. extra: 1.005,
  24087. bottom: 58.4 / 1557.3
  24088. }
  24089. },
  24090. dick: {
  24091. height: math.unit(6 * 0.208, "feet"),
  24092. name: "Dick",
  24093. image: {
  24094. source: "./media/characters/terrance-keayes/dick.svg"
  24095. }
  24096. },
  24097. },
  24098. [
  24099. {
  24100. name: "Canon Height",
  24101. height: math.unit(35, "miles"),
  24102. default: true
  24103. },
  24104. ]
  24105. ))
  24106. characterMakers.push(() => makeCharacter(
  24107. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24108. {
  24109. front: {
  24110. height: math.unit(6, "feet"),
  24111. weight: math.unit(150, "lb"),
  24112. name: "Front",
  24113. image: {
  24114. source: "./media/characters/ofelia/front.svg",
  24115. extra: 1130/1117,
  24116. bottom: 91/1221
  24117. }
  24118. },
  24119. back: {
  24120. height: math.unit(6, "feet"),
  24121. weight: math.unit(150, "lb"),
  24122. name: "Back",
  24123. image: {
  24124. source: "./media/characters/ofelia/back.svg",
  24125. extra: 1172/1159,
  24126. bottom: 28/1200
  24127. }
  24128. },
  24129. maw: {
  24130. height: math.unit(1, "feet"),
  24131. name: "Maw",
  24132. image: {
  24133. source: "./media/characters/ofelia/maw.svg"
  24134. }
  24135. },
  24136. foot: {
  24137. height: math.unit(1.949, "feet"),
  24138. name: "Foot",
  24139. image: {
  24140. source: "./media/characters/ofelia/foot.svg"
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Canon Height",
  24147. height: math.unit(2000, "miles"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(6, "feet"),
  24157. weight: math.unit(150, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/samuel/front.svg",
  24161. extra: 265 / 258,
  24162. bottom: 2 / 266.1566
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Macro",
  24169. height: math.unit(100, "feet"),
  24170. default: true
  24171. },
  24172. {
  24173. name: "Full Size",
  24174. height: math.unit(1000, "miles")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24180. {
  24181. front: {
  24182. height: math.unit(6, "feet"),
  24183. weight: math.unit(300, "lb"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/beishir-kiel/front.svg",
  24187. extra: 569 / 547,
  24188. bottom: 41.9 / 609
  24189. }
  24190. },
  24191. maw: {
  24192. height: math.unit(6 * 0.202, "feet"),
  24193. name: "Maw",
  24194. image: {
  24195. source: "./media/characters/beishir-kiel/maw.svg"
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(300, "feet"),
  24203. default: true
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24209. {
  24210. front: {
  24211. height: math.unit(5 + 7/12, "feet"),
  24212. weight: math.unit(120, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/logan-grey/front.svg",
  24216. extra: 1836/1738,
  24217. bottom: 108/1944
  24218. }
  24219. },
  24220. back: {
  24221. height: math.unit(5 + 7/12, "feet"),
  24222. weight: math.unit(120, "lb"),
  24223. name: "Back",
  24224. image: {
  24225. source: "./media/characters/logan-grey/back.svg",
  24226. extra: 1880/1794,
  24227. bottom: 24/1904
  24228. }
  24229. },
  24230. frontSfw: {
  24231. height: math.unit(5 + 7/12, "feet"),
  24232. weight: math.unit(120, "lb"),
  24233. name: "Front (SFW)",
  24234. image: {
  24235. source: "./media/characters/logan-grey/front-sfw.svg",
  24236. extra: 1836/1738,
  24237. bottom: 108/1944
  24238. }
  24239. },
  24240. backSfw: {
  24241. height: math.unit(5 + 7/12, "feet"),
  24242. weight: math.unit(120, "lb"),
  24243. name: "Back (SFW)",
  24244. image: {
  24245. source: "./media/characters/logan-grey/back-sfw.svg",
  24246. extra: 1880/1794,
  24247. bottom: 24/1904
  24248. }
  24249. },
  24250. hands: {
  24251. height: math.unit(0.84, "feet"),
  24252. name: "Hands",
  24253. image: {
  24254. source: "./media/characters/logan-grey/hands.svg"
  24255. }
  24256. },
  24257. paws: {
  24258. height: math.unit(0.72, "feet"),
  24259. name: "Paws",
  24260. image: {
  24261. source: "./media/characters/logan-grey/paws.svg"
  24262. }
  24263. },
  24264. cock: {
  24265. height: math.unit(1.45, "feet"),
  24266. name: "Cock",
  24267. image: {
  24268. source: "./media/characters/logan-grey/cock.svg"
  24269. }
  24270. },
  24271. cockAlt: {
  24272. height: math.unit(1.437, "feet"),
  24273. name: "Cock (alt)",
  24274. image: {
  24275. source: "./media/characters/logan-grey/cock-alt.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(5 + 8 / 12, "feet")
  24283. },
  24284. {
  24285. name: "The 500 Foot Femboy",
  24286. height: math.unit(500, "feet"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Megmacro",
  24291. height: math.unit(20, "miles")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(8 + 2 / 12, "feet"),
  24300. weight: math.unit(275, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/draganta/front.svg",
  24304. extra: 1177 / 1135,
  24305. bottom: 33.46 / 1212.1
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(8 + 6 / 12, "feet"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Macro",
  24317. height: math.unit(150, "feet")
  24318. },
  24319. {
  24320. name: "Megamacro",
  24321. height: math.unit(1000, "miles")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(1.72, "m"),
  24330. weight: math.unit(80, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/voski/front.svg",
  24334. extra: 2076.22 / 2022.4,
  24335. bottom: 102.7 / 2177.3866
  24336. }
  24337. },
  24338. frontFlaccid: {
  24339. height: math.unit(1.72, "m"),
  24340. weight: math.unit(80, "lb"),
  24341. name: "Front (Flaccid)",
  24342. image: {
  24343. source: "./media/characters/voski/front-flaccid.svg",
  24344. extra: 2076.22 / 2022.4,
  24345. bottom: 102.7 / 2177.3866
  24346. }
  24347. },
  24348. frontErect: {
  24349. height: math.unit(1.72, "m"),
  24350. weight: math.unit(80, "lb"),
  24351. name: "Front (Erect)",
  24352. image: {
  24353. source: "./media/characters/voski/front-erect.svg",
  24354. extra: 2076.22 / 2022.4,
  24355. bottom: 102.7 / 2177.3866
  24356. }
  24357. },
  24358. back: {
  24359. height: math.unit(1.72, "m"),
  24360. weight: math.unit(80, "lb"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/voski/back.svg",
  24364. extra: 2104 / 2051,
  24365. bottom: 10.45 / 2113.63
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(1.72, "m")
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(55, "m"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Macro+",
  24381. height: math.unit(300, "m")
  24382. },
  24383. {
  24384. name: "Macro++",
  24385. height: math.unit(700, "m")
  24386. },
  24387. {
  24388. name: "Macro+++",
  24389. height: math.unit(4500, "m")
  24390. },
  24391. {
  24392. name: "Macro++++",
  24393. height: math.unit(45, "km")
  24394. },
  24395. {
  24396. name: "Macro+++++",
  24397. height: math.unit(1220, "km")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(2.3, "m"),
  24406. weight: math.unit(304, "kg"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/icowom-lee/front.svg",
  24410. extra: 985 / 955,
  24411. bottom: 25.4 / 1012
  24412. }
  24413. },
  24414. fronttentacles: {
  24415. height: math.unit(2.3, "m"),
  24416. weight: math.unit(304, "kg"),
  24417. name: "Front-tentacles",
  24418. image: {
  24419. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24420. extra: 985 / 955,
  24421. bottom: 25.4 / 1012
  24422. }
  24423. },
  24424. back: {
  24425. height: math.unit(2.3, "m"),
  24426. weight: math.unit(304, "kg"),
  24427. name: "Back",
  24428. image: {
  24429. source: "./media/characters/icowom-lee/back.svg",
  24430. extra: 975 / 954,
  24431. bottom: 9.5 / 985
  24432. }
  24433. },
  24434. backtentacles: {
  24435. height: math.unit(2.3, "m"),
  24436. weight: math.unit(304, "kg"),
  24437. name: "Back-tentacles",
  24438. image: {
  24439. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24440. extra: 975 / 954,
  24441. bottom: 9.5 / 985
  24442. }
  24443. },
  24444. frontDressed: {
  24445. height: math.unit(2.3, "m"),
  24446. weight: math.unit(304, "kg"),
  24447. name: "Front (Dressed)",
  24448. image: {
  24449. source: "./media/characters/icowom-lee/front-dressed.svg",
  24450. extra: 3076 / 2933,
  24451. bottom: 51.4 / 3125.1889
  24452. }
  24453. },
  24454. rump: {
  24455. height: math.unit(0.776, "meters"),
  24456. name: "Rump",
  24457. image: {
  24458. source: "./media/characters/icowom-lee/rump.svg"
  24459. }
  24460. },
  24461. genitals: {
  24462. height: math.unit(0.78, "meters"),
  24463. name: "Genitals",
  24464. image: {
  24465. source: "./media/characters/icowom-lee/genitals.svg"
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(2.3, "meters"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(94, "meters"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(22, "meters"),
  24487. weight: math.unit(21000, "kg"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/shock-diamond/front.svg",
  24491. extra: 2204 / 2053,
  24492. bottom: 65 / 2239.47
  24493. }
  24494. },
  24495. frontNude: {
  24496. height: math.unit(22, "meters"),
  24497. weight: math.unit(21000, "kg"),
  24498. name: "Front (Nude)",
  24499. image: {
  24500. source: "./media/characters/shock-diamond/front-nude.svg",
  24501. extra: 2514 / 2285,
  24502. bottom: 13 / 2527.56
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(3, "meters")
  24510. },
  24511. {
  24512. name: "Macro",
  24513. height: math.unit(22, "meters"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(5 + 4/12, "feet"),
  24523. weight: math.unit(125, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/rory/front.svg",
  24527. extra: 1790/1681,
  24528. bottom: 66/1856
  24529. }
  24530. },
  24531. back: {
  24532. height: math.unit(5 + 4/12, "feet"),
  24533. weight: math.unit(125, "lb"),
  24534. name: "Back",
  24535. image: {
  24536. source: "./media/characters/rory/back.svg",
  24537. extra: 1805/1690,
  24538. bottom: 56/1861
  24539. }
  24540. },
  24541. frontDressed: {
  24542. height: math.unit(5 + 4/12, "feet"),
  24543. weight: math.unit(125, "lb"),
  24544. name: "Front (Dressed)",
  24545. image: {
  24546. source: "./media/characters/rory/front-dressed.svg",
  24547. extra: 1790/1681,
  24548. bottom: 66/1856
  24549. }
  24550. },
  24551. backDressed: {
  24552. height: math.unit(5 + 4/12, "feet"),
  24553. weight: math.unit(125, "lb"),
  24554. name: "Back (Dressed)",
  24555. image: {
  24556. source: "./media/characters/rory/back-dressed.svg",
  24557. extra: 1805/1690,
  24558. bottom: 56/1861
  24559. }
  24560. },
  24561. frontNsfw: {
  24562. height: math.unit(5 + 4/12, "feet"),
  24563. weight: math.unit(125, "lb"),
  24564. name: "Front (NSFW)",
  24565. image: {
  24566. source: "./media/characters/rory/front-nsfw.svg",
  24567. extra: 1790/1681,
  24568. bottom: 66/1856
  24569. }
  24570. },
  24571. backNsfw: {
  24572. height: math.unit(5 + 4/12, "feet"),
  24573. weight: math.unit(125, "lb"),
  24574. name: "Back (NSFW)",
  24575. image: {
  24576. source: "./media/characters/rory/back-nsfw.svg",
  24577. extra: 1805/1690,
  24578. bottom: 56/1861
  24579. }
  24580. },
  24581. dick: {
  24582. height: math.unit(0.8, "feet"),
  24583. name: "Dick",
  24584. image: {
  24585. source: "./media/characters/rory/dick.svg"
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Micro",
  24592. height: math.unit(3, "inches")
  24593. },
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(5 + 4/12, "feet"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Macro",
  24601. height: math.unit(90, "feet")
  24602. },
  24603. {
  24604. name: "Supercharged",
  24605. height: math.unit(270, "feet")
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(5 + 9 / 12, "feet"),
  24614. weight: math.unit(190, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/sprisk/front.svg",
  24618. extra: 1225 / 1180,
  24619. bottom: 42.7 / 1266.4
  24620. }
  24621. },
  24622. frontNsfw: {
  24623. height: math.unit(5 + 9 / 12, "feet"),
  24624. weight: math.unit(190, "lb"),
  24625. name: "Front (NSFW)",
  24626. image: {
  24627. source: "./media/characters/sprisk/front-nsfw.svg",
  24628. extra: 1225 / 1180,
  24629. bottom: 42.7 / 1266.4
  24630. }
  24631. },
  24632. back: {
  24633. height: math.unit(5 + 9 / 12, "feet"),
  24634. weight: math.unit(190, "lb"),
  24635. name: "Back",
  24636. image: {
  24637. source: "./media/characters/sprisk/back.svg",
  24638. extra: 1247 / 1200,
  24639. bottom: 5.6 / 1253.04
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Tiny",
  24646. height: math.unit(2, "inches")
  24647. },
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(5 + 9 / 12, "feet"),
  24651. default: true
  24652. },
  24653. {
  24654. name: "Mini Macro",
  24655. height: math.unit(18, "feet")
  24656. },
  24657. {
  24658. name: "Macro",
  24659. height: math.unit(100, "feet")
  24660. },
  24661. {
  24662. name: "MACRO",
  24663. height: math.unit(50, "miles")
  24664. },
  24665. {
  24666. name: "M A C R O",
  24667. height: math.unit(300, "miles")
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24673. {
  24674. side: {
  24675. height: math.unit(15.6, "meters"),
  24676. weight: math.unit(700000, "kg"),
  24677. name: "Side",
  24678. image: {
  24679. source: "./media/characters/bunsen/side.svg",
  24680. extra: 1644 / 358
  24681. }
  24682. },
  24683. foot: {
  24684. height: math.unit(1.611 * 1644 / 358, "meter"),
  24685. name: "Foot",
  24686. image: {
  24687. source: "./media/characters/bunsen/foot.svg"
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Small",
  24694. height: math.unit(10, "feet")
  24695. },
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(15.6, "meters"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(4 + 11 / 12, "feet"),
  24708. weight: math.unit(140, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/sesh/front.svg",
  24712. extra: 3420 / 3231,
  24713. bottom: 72 / 3949.5
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(4 + 11 / 12, "feet")
  24721. },
  24722. {
  24723. name: "Grown",
  24724. height: math.unit(15, "feet"),
  24725. default: true
  24726. },
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(1500, "feet")
  24730. },
  24731. {
  24732. name: "Megamacro",
  24733. height: math.unit(30, "miles")
  24734. },
  24735. {
  24736. name: "Continental",
  24737. height: math.unit(3000, "miles")
  24738. },
  24739. {
  24740. name: "Gravity Mass",
  24741. height: math.unit(300000, "miles")
  24742. },
  24743. {
  24744. name: "Planet Buster",
  24745. height: math.unit(30000000, "miles")
  24746. },
  24747. {
  24748. name: "Big",
  24749. height: math.unit(3000000000, "miles")
  24750. },
  24751. ]
  24752. ))
  24753. characterMakers.push(() => makeCharacter(
  24754. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24755. {
  24756. front: {
  24757. height: math.unit(9, "feet"),
  24758. weight: math.unit(350, "lb"),
  24759. name: "Front",
  24760. image: {
  24761. source: "./media/characters/pepper/front.svg",
  24762. extra: 1448 / 1312,
  24763. bottom: 9.4 / 1457.88
  24764. }
  24765. },
  24766. back: {
  24767. height: math.unit(9, "feet"),
  24768. weight: math.unit(350, "lb"),
  24769. name: "Back",
  24770. image: {
  24771. source: "./media/characters/pepper/back.svg",
  24772. extra: 1423 / 1300,
  24773. bottom: 4.6 / 1429
  24774. }
  24775. },
  24776. maw: {
  24777. height: math.unit(0.932, "feet"),
  24778. name: "Maw",
  24779. image: {
  24780. source: "./media/characters/pepper/maw.svg"
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Normal",
  24787. height: math.unit(9, "feet"),
  24788. default: true
  24789. },
  24790. ]
  24791. ))
  24792. characterMakers.push(() => makeCharacter(
  24793. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24794. {
  24795. front: {
  24796. height: math.unit(6, "feet"),
  24797. weight: math.unit(150, "lb"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/maelstrom/front.svg",
  24801. extra: 2100 / 1883,
  24802. bottom: 94 / 2196.7
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Less Kaiju",
  24809. height: math.unit(200, "feet")
  24810. },
  24811. {
  24812. name: "Kaiju",
  24813. height: math.unit(400, "feet"),
  24814. default: true
  24815. },
  24816. {
  24817. name: "Kaiju-er",
  24818. height: math.unit(600, "feet")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(6 + 5 / 12, "feet"),
  24827. weight: math.unit(180, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/lexir/front.svg",
  24831. extra: 180 / 172,
  24832. bottom: 12 / 192
  24833. }
  24834. },
  24835. back: {
  24836. height: math.unit(6 + 5 / 12, "feet"),
  24837. weight: math.unit(180, "lb"),
  24838. name: "Back",
  24839. image: {
  24840. source: "./media/characters/lexir/back.svg",
  24841. extra: 1273/1201,
  24842. bottom: 39/1312
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Very Smal",
  24849. height: math.unit(1, "nm")
  24850. },
  24851. {
  24852. name: "Normal",
  24853. height: math.unit(6 + 5 / 12, "feet"),
  24854. default: true
  24855. },
  24856. {
  24857. name: "Macro",
  24858. height: math.unit(1, "mile")
  24859. },
  24860. {
  24861. name: "Megamacro",
  24862. height: math.unit(50, "miles")
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(1.5, "meters"),
  24871. weight: math.unit(100, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/maksio/front.svg",
  24875. extra: 1549 / 1531,
  24876. bottom: 123.7 / 1674.5429
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(1.5, "meters"),
  24881. weight: math.unit(100, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/maksio/back.svg",
  24885. extra: 1541 / 1509,
  24886. bottom: 97 / 1639
  24887. }
  24888. },
  24889. hand: {
  24890. height: math.unit(0.621, "feet"),
  24891. name: "Hand",
  24892. image: {
  24893. source: "./media/characters/maksio/hand.svg"
  24894. }
  24895. },
  24896. foot: {
  24897. height: math.unit(1.611, "feet"),
  24898. name: "Foot",
  24899. image: {
  24900. source: "./media/characters/maksio/foot.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Shrunken",
  24907. height: math.unit(10, "cm")
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(150, "cm"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(100, "feet"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/erza-bear/front.svg",
  24924. extra: 2449 / 2390,
  24925. bottom: 46 / 2494
  24926. }
  24927. },
  24928. back: {
  24929. height: math.unit(100, "feet"),
  24930. name: "Back",
  24931. image: {
  24932. source: "./media/characters/erza-bear/back.svg",
  24933. extra: 2489 / 2430,
  24934. bottom: 85.4 / 2480
  24935. }
  24936. },
  24937. tail: {
  24938. height: math.unit(42, "feet"),
  24939. name: "Tail",
  24940. image: {
  24941. source: "./media/characters/erza-bear/tail.svg"
  24942. }
  24943. },
  24944. tongue: {
  24945. height: math.unit(8, "feet"),
  24946. name: "Tongue",
  24947. image: {
  24948. source: "./media/characters/erza-bear/tongue.svg"
  24949. }
  24950. },
  24951. dick: {
  24952. height: math.unit(10.5, "feet"),
  24953. name: "Dick",
  24954. image: {
  24955. source: "./media/characters/erza-bear/dick.svg"
  24956. }
  24957. },
  24958. dickVertical: {
  24959. height: math.unit(16.9, "feet"),
  24960. name: "Dick (Vertical)",
  24961. image: {
  24962. source: "./media/characters/erza-bear/dick-vertical.svg"
  24963. }
  24964. },
  24965. },
  24966. [
  24967. {
  24968. name: "Macro",
  24969. height: math.unit(100, "feet"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24976. {
  24977. front: {
  24978. height: math.unit(172, "cm"),
  24979. weight: math.unit(73, "kg"),
  24980. name: "Front",
  24981. image: {
  24982. source: "./media/characters/violet-flor/front.svg",
  24983. extra: 1530 / 1442,
  24984. bottom: 61.9 / 1588.8
  24985. }
  24986. },
  24987. back: {
  24988. height: math.unit(180, "cm"),
  24989. weight: math.unit(73, "kg"),
  24990. name: "Back",
  24991. image: {
  24992. source: "./media/characters/violet-flor/back.svg",
  24993. extra: 1692 / 1630,
  24994. bottom: 20 / 1712
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(172, "cm"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(220, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/lynn-rhea/front.svg",
  25015. extra: 310 / 273
  25016. }
  25017. },
  25018. back: {
  25019. height: math.unit(6, "feet"),
  25020. weight: math.unit(220, "lb"),
  25021. name: "Back",
  25022. image: {
  25023. source: "./media/characters/lynn-rhea/back.svg",
  25024. extra: 310 / 273
  25025. }
  25026. },
  25027. dicks: {
  25028. height: math.unit(0.9, "feet"),
  25029. name: "Dicks",
  25030. image: {
  25031. source: "./media/characters/lynn-rhea/dicks.svg"
  25032. }
  25033. },
  25034. slit: {
  25035. height: math.unit(0.4, "feet"),
  25036. name: "Slit",
  25037. image: {
  25038. source: "./media/characters/lynn-rhea/slit.svg"
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Micro",
  25045. height: math.unit(1, "inch")
  25046. },
  25047. {
  25048. name: "Macro",
  25049. height: math.unit(60, "feet"),
  25050. default: true
  25051. },
  25052. {
  25053. name: "Megamacro",
  25054. height: math.unit(2, "miles")
  25055. },
  25056. {
  25057. name: "Gigamacro",
  25058. height: math.unit(3, "earths")
  25059. },
  25060. {
  25061. name: "Galactic",
  25062. height: math.unit(0.8, "galaxies")
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25068. {
  25069. front: {
  25070. height: math.unit(1600, "feet"),
  25071. weight: math.unit(85758785169, "kg"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/valathos/front.svg",
  25075. extra: 1451 / 1339
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Macro",
  25082. height: math.unit(1600, "feet"),
  25083. default: true
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25089. {
  25090. front: {
  25091. height: math.unit(7 + 5 / 12, "feet"),
  25092. weight: math.unit(300, "lb"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/azula/front.svg",
  25096. extra: 3208 / 2880,
  25097. bottom: 80.2 / 3277
  25098. }
  25099. },
  25100. back: {
  25101. height: math.unit(7 + 5 / 12, "feet"),
  25102. weight: math.unit(300, "lb"),
  25103. name: "Back",
  25104. image: {
  25105. source: "./media/characters/azula/back.svg",
  25106. extra: 3169 / 2822,
  25107. bottom: 150.6 / 3321
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(7 + 5 / 12, "feet"),
  25115. default: true
  25116. },
  25117. {
  25118. name: "Big",
  25119. height: math.unit(20, "feet")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(5 + 1 / 12, "feet"),
  25128. weight: math.unit(110, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/rupert/front.svg",
  25132. extra: 1549 / 1495,
  25133. bottom: 54.2 / 1604.4
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(5 + 1 / 12, "feet"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25147. {
  25148. front: {
  25149. height: math.unit(8 + 4 / 12, "feet"),
  25150. weight: math.unit(350, "lb"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/sheera-castellar/front.svg",
  25154. extra: 1957 / 1894,
  25155. bottom: 26.97 / 1975.017
  25156. }
  25157. },
  25158. side: {
  25159. height: math.unit(8 + 4 / 12, "feet"),
  25160. weight: math.unit(350, "lb"),
  25161. name: "Side",
  25162. image: {
  25163. source: "./media/characters/sheera-castellar/side.svg",
  25164. extra: 1957 / 1894
  25165. }
  25166. },
  25167. back: {
  25168. height: math.unit(8 + 4 / 12, "feet"),
  25169. weight: math.unit(350, "lb"),
  25170. name: "Back",
  25171. image: {
  25172. source: "./media/characters/sheera-castellar/back.svg",
  25173. extra: 1957 / 1894
  25174. }
  25175. },
  25176. angled: {
  25177. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25178. weight: math.unit(350, "lb"),
  25179. name: "Angled",
  25180. image: {
  25181. source: "./media/characters/sheera-castellar/angled.svg",
  25182. extra: 1807 / 1707,
  25183. bottom: 68 / 1875
  25184. }
  25185. },
  25186. genitals: {
  25187. height: math.unit(2.2, "feet"),
  25188. name: "Genitals",
  25189. image: {
  25190. source: "./media/characters/sheera-castellar/genitals.svg"
  25191. }
  25192. },
  25193. taur: {
  25194. height: math.unit(10 + 6/12, "feet"),
  25195. name: "Taur",
  25196. image: {
  25197. source: "./media/characters/sheera-castellar/taur.svg",
  25198. extra: 2017/1909,
  25199. bottom: 185/2202
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(8 + 4 / 12, "feet")
  25207. },
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(150, "feet"),
  25211. default: true
  25212. },
  25213. {
  25214. name: "Macro+",
  25215. height: math.unit(800, "feet")
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25221. {
  25222. front: {
  25223. height: math.unit(6, "feet"),
  25224. weight: math.unit(150, "lb"),
  25225. name: "Front",
  25226. image: {
  25227. source: "./media/characters/jaipur/front.svg",
  25228. extra: 3860 / 3731,
  25229. bottom: 287 / 4140
  25230. }
  25231. },
  25232. back: {
  25233. height: math.unit(6, "feet"),
  25234. weight: math.unit(150, "lb"),
  25235. name: "Back",
  25236. image: {
  25237. source: "./media/characters/jaipur/back.svg",
  25238. extra: 1637/1561,
  25239. bottom: 154/1791
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(1.85, "meters"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Macro",
  25251. height: math.unit(150, "meters")
  25252. },
  25253. {
  25254. name: "Macro+",
  25255. height: math.unit(0.5, "miles")
  25256. },
  25257. {
  25258. name: "Macro++",
  25259. height: math.unit(2.5, "miles")
  25260. },
  25261. {
  25262. name: "Macro+++",
  25263. height: math.unit(12, "miles")
  25264. },
  25265. {
  25266. name: "Macro++++",
  25267. height: math.unit(120, "miles")
  25268. },
  25269. {
  25270. name: "Macro+++++",
  25271. height: math.unit(1200, "miles")
  25272. },
  25273. ]
  25274. ))
  25275. characterMakers.push(() => makeCharacter(
  25276. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25277. {
  25278. front: {
  25279. height: math.unit(6, "feet"),
  25280. weight: math.unit(150, "lb"),
  25281. name: "Front",
  25282. image: {
  25283. source: "./media/characters/sheila-wolf/front.svg",
  25284. extra: 1931 / 1808,
  25285. bottom: 29.5 / 1960
  25286. }
  25287. },
  25288. dick: {
  25289. height: math.unit(1.464, "feet"),
  25290. name: "Dick",
  25291. image: {
  25292. source: "./media/characters/sheila-wolf/dick.svg"
  25293. }
  25294. },
  25295. muzzle: {
  25296. height: math.unit(0.513, "feet"),
  25297. name: "Muzzle",
  25298. image: {
  25299. source: "./media/characters/sheila-wolf/muzzle.svg"
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Macro",
  25306. height: math.unit(70, "feet"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25313. {
  25314. front: {
  25315. height: math.unit(32, "meters"),
  25316. weight: math.unit(300000, "kg"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/almor/front.svg",
  25320. extra: 1408 / 1322,
  25321. bottom: 94.6 / 1506.5
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Macro",
  25328. height: math.unit(32, "meters"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(7, "feet"),
  25338. weight: math.unit(200, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/silver/front.svg",
  25342. extra: 472.1 / 450.5,
  25343. bottom: 26.5 / 499.424
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(7, "feet"),
  25351. default: true
  25352. },
  25353. {
  25354. name: "Macro",
  25355. height: math.unit(800, "feet")
  25356. },
  25357. {
  25358. name: "Megamacro",
  25359. height: math.unit(250, "miles")
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25365. {
  25366. front: {
  25367. height: math.unit(6, "feet"),
  25368. weight: math.unit(150, "lb"),
  25369. name: "Front",
  25370. image: {
  25371. source: "./media/characters/pliskin/front.svg",
  25372. extra: 1469 / 1359,
  25373. bottom: 70 / 1540
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Micro",
  25380. height: math.unit(3, "inches")
  25381. },
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(5 + 11 / 12, "feet"),
  25385. default: true
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(120, "feet")
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(6, "feet"),
  25398. weight: math.unit(150, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/sammy/front.svg",
  25402. extra: 1193 / 1089,
  25403. bottom: 30.5 / 1226
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Macro",
  25410. height: math.unit(1700, "feet"),
  25411. default: true
  25412. },
  25413. {
  25414. name: "Examacro",
  25415. height: math.unit(2.5e9, "lightyears")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(21, "meters"),
  25424. weight: math.unit(12, "tonnes"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/kuru/front.svg",
  25428. extra: 4301 / 3785,
  25429. bottom: 371.3 / 4691
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(21, "meters"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(23, "meters"),
  25446. weight: math.unit(12.2, "tonnes"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/rakka/front.svg",
  25450. extra: 4670 / 4169,
  25451. bottom: 301 / 4968.7
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Macro",
  25458. height: math.unit(23, "meters"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(6, "feet"),
  25468. weight: math.unit(150, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/rhys-feline/front.svg",
  25472. extra: 2488 / 2308,
  25473. bottom: 35.67 / 2519.19
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Really Small",
  25480. height: math.unit(1, "nm")
  25481. },
  25482. {
  25483. name: "Micro",
  25484. height: math.unit(4, "inches")
  25485. },
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(4 + 10 / 12, "feet"),
  25489. default: true
  25490. },
  25491. {
  25492. name: "Macro",
  25493. height: math.unit(100, "feet")
  25494. },
  25495. {
  25496. name: "Megamacto",
  25497. height: math.unit(50, "miles")
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25503. {
  25504. side: {
  25505. height: math.unit(30, "feet"),
  25506. weight: math.unit(35000, "kg"),
  25507. name: "Side",
  25508. image: {
  25509. source: "./media/characters/alydar/side.svg",
  25510. extra: 234 / 222,
  25511. bottom: 6.5 / 241
  25512. }
  25513. },
  25514. front: {
  25515. height: math.unit(30, "feet"),
  25516. weight: math.unit(35000, "kg"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/alydar/front.svg",
  25520. extra: 223.37 / 210.2,
  25521. bottom: 22.3 / 246.76
  25522. }
  25523. },
  25524. top: {
  25525. height: math.unit(64.54, "feet"),
  25526. weight: math.unit(35000, "kg"),
  25527. name: "Top",
  25528. image: {
  25529. source: "./media/characters/alydar/top.svg"
  25530. }
  25531. },
  25532. anthro: {
  25533. height: math.unit(30, "feet"),
  25534. weight: math.unit(9000, "kg"),
  25535. name: "Anthro",
  25536. image: {
  25537. source: "./media/characters/alydar/anthro.svg",
  25538. extra: 432 / 421,
  25539. bottom: 7.18 / 440
  25540. }
  25541. },
  25542. maw: {
  25543. height: math.unit(11.693, "feet"),
  25544. name: "Maw",
  25545. image: {
  25546. source: "./media/characters/alydar/maw.svg"
  25547. }
  25548. },
  25549. head: {
  25550. height: math.unit(11.693, "feet"),
  25551. name: "Head",
  25552. image: {
  25553. source: "./media/characters/alydar/head.svg"
  25554. }
  25555. },
  25556. headAlt: {
  25557. height: math.unit(12.861, "feet"),
  25558. name: "Head (Alt)",
  25559. image: {
  25560. source: "./media/characters/alydar/head-alt.svg"
  25561. }
  25562. },
  25563. wing: {
  25564. height: math.unit(20.712, "feet"),
  25565. name: "Wing",
  25566. image: {
  25567. source: "./media/characters/alydar/wing.svg"
  25568. }
  25569. },
  25570. wingFeather: {
  25571. height: math.unit(9.662, "feet"),
  25572. name: "Wing Feather",
  25573. image: {
  25574. source: "./media/characters/alydar/wing-feather.svg"
  25575. }
  25576. },
  25577. countourFeather: {
  25578. height: math.unit(4.154, "feet"),
  25579. name: "Contour Feather",
  25580. image: {
  25581. source: "./media/characters/alydar/contour-feather.svg"
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Diplomatic",
  25588. height: math.unit(13, "feet"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Small",
  25593. height: math.unit(30, "feet")
  25594. },
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(95, "feet"),
  25598. default: true
  25599. },
  25600. {
  25601. name: "Large",
  25602. height: math.unit(285, "feet")
  25603. },
  25604. {
  25605. name: "Incomprehensible",
  25606. height: math.unit(450, "megameters")
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25612. {
  25613. side: {
  25614. height: math.unit(11, "feet"),
  25615. weight: math.unit(1750, "kg"),
  25616. name: "Side",
  25617. image: {
  25618. source: "./media/characters/selicia/side.svg",
  25619. extra: 440 / 396,
  25620. bottom: 24.8 / 465.979
  25621. }
  25622. },
  25623. maw: {
  25624. height: math.unit(4.665, "feet"),
  25625. name: "Maw",
  25626. image: {
  25627. source: "./media/characters/selicia/maw.svg"
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(11, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25641. {
  25642. side: {
  25643. height: math.unit(2 + 6 / 12, "feet"),
  25644. weight: math.unit(30, "lb"),
  25645. name: "Side",
  25646. image: {
  25647. source: "./media/characters/layla/side.svg",
  25648. extra: 244 / 188,
  25649. bottom: 18.2 / 262.1
  25650. }
  25651. },
  25652. back: {
  25653. height: math.unit(2 + 6 / 12, "feet"),
  25654. weight: math.unit(30, "lb"),
  25655. name: "Back",
  25656. image: {
  25657. source: "./media/characters/layla/back.svg",
  25658. extra: 308 / 241.5,
  25659. bottom: 8.9 / 316.8
  25660. }
  25661. },
  25662. cumming: {
  25663. height: math.unit(2 + 6 / 12, "feet"),
  25664. weight: math.unit(30, "lb"),
  25665. name: "Cumming",
  25666. image: {
  25667. source: "./media/characters/layla/cumming.svg",
  25668. extra: 342 / 279,
  25669. bottom: 595 / 938
  25670. }
  25671. },
  25672. dickFlaccid: {
  25673. height: math.unit(2.595, "feet"),
  25674. name: "Flaccid Genitals",
  25675. image: {
  25676. source: "./media/characters/layla/dick-flaccid.svg"
  25677. }
  25678. },
  25679. dickErect: {
  25680. height: math.unit(2.359, "feet"),
  25681. name: "Erect Genitals",
  25682. image: {
  25683. source: "./media/characters/layla/dick-erect.svg"
  25684. }
  25685. },
  25686. dragon: {
  25687. height: math.unit(40, "feet"),
  25688. name: "Dragon",
  25689. image: {
  25690. source: "./media/characters/layla/dragon.svg",
  25691. extra: 610/535,
  25692. bottom: 367/977
  25693. }
  25694. },
  25695. taur: {
  25696. height: math.unit(30, "feet"),
  25697. name: "Taur",
  25698. image: {
  25699. source: "./media/characters/layla/taur.svg",
  25700. extra: 1268/1199,
  25701. bottom: 112/1380
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Micro",
  25708. height: math.unit(1, "inch")
  25709. },
  25710. {
  25711. name: "Small",
  25712. height: math.unit(1, "foot")
  25713. },
  25714. {
  25715. name: "Normal",
  25716. height: math.unit(2 + 6 / 12, "feet"),
  25717. default: true
  25718. },
  25719. {
  25720. name: "Macro",
  25721. height: math.unit(200, "feet")
  25722. },
  25723. {
  25724. name: "Megamacro",
  25725. height: math.unit(1000, "miles")
  25726. },
  25727. {
  25728. name: "Planetary",
  25729. height: math.unit(8000, "miles")
  25730. },
  25731. {
  25732. name: "True Layla",
  25733. height: math.unit(200000 * 7, "multiverses")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25739. {
  25740. back: {
  25741. height: math.unit(10.5, "feet"),
  25742. weight: math.unit(800, "lb"),
  25743. name: "Back",
  25744. image: {
  25745. source: "./media/characters/knox/back.svg",
  25746. extra: 1486 / 1089,
  25747. bottom: 107 / 1601.4
  25748. }
  25749. },
  25750. side: {
  25751. height: math.unit(10.5, "feet"),
  25752. weight: math.unit(800, "lb"),
  25753. name: "Side",
  25754. image: {
  25755. source: "./media/characters/knox/side.svg",
  25756. extra: 244 / 218,
  25757. bottom: 14 / 260
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Compact",
  25764. height: math.unit(10.5, "feet"),
  25765. default: true
  25766. },
  25767. {
  25768. name: "Dynamax",
  25769. height: math.unit(210, "feet")
  25770. },
  25771. {
  25772. name: "Full Macro",
  25773. height: math.unit(850, "feet")
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(28, "feet"),
  25782. weight: math.unit(10500, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/kayda/front.svg",
  25786. extra: 1536 / 1428,
  25787. bottom: 68.7 / 1603
  25788. }
  25789. },
  25790. back: {
  25791. height: math.unit(28, "feet"),
  25792. weight: math.unit(10500, "lb"),
  25793. name: "Back",
  25794. image: {
  25795. source: "./media/characters/kayda/back.svg",
  25796. extra: 1557 / 1464,
  25797. bottom: 39.5 / 1597.49
  25798. }
  25799. },
  25800. dick: {
  25801. height: math.unit(3.858, "feet"),
  25802. name: "Dick",
  25803. image: {
  25804. source: "./media/characters/kayda/dick.svg"
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Macro",
  25811. height: math.unit(28, "feet"),
  25812. default: true
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(10 + 11 / 12, "feet"),
  25821. weight: math.unit(1400, "lb"),
  25822. name: "Front",
  25823. image: {
  25824. source: "./media/characters/brian/front.svg",
  25825. extra: 737 / 692,
  25826. bottom: 55.4 / 785
  25827. }
  25828. },
  25829. },
  25830. [
  25831. {
  25832. name: "Normal",
  25833. height: math.unit(10 + 11 / 12, "feet"),
  25834. default: true
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(5 + 8 / 12, "feet"),
  25843. weight: math.unit(140, "lb"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/khemri/front.svg",
  25847. extra: 4780 / 4059,
  25848. bottom: 80.1 / 4859.25
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Micro",
  25855. height: math.unit(6, "inches")
  25856. },
  25857. {
  25858. name: "Normal",
  25859. height: math.unit(5 + 8 / 12, "feet"),
  25860. default: true
  25861. },
  25862. ]
  25863. ))
  25864. characterMakers.push(() => makeCharacter(
  25865. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25866. {
  25867. front: {
  25868. height: math.unit(13, "feet"),
  25869. weight: math.unit(1700, "lb"),
  25870. name: "Front",
  25871. image: {
  25872. source: "./media/characters/felix-braveheart/front.svg",
  25873. extra: 1222 / 1157,
  25874. bottom: 53.2 / 1280
  25875. }
  25876. },
  25877. back: {
  25878. height: math.unit(13, "feet"),
  25879. weight: math.unit(1700, "lb"),
  25880. name: "Back",
  25881. image: {
  25882. source: "./media/characters/felix-braveheart/back.svg",
  25883. extra: 1277 / 1203,
  25884. bottom: 50.2 / 1327
  25885. }
  25886. },
  25887. feral: {
  25888. height: math.unit(6, "feet"),
  25889. weight: math.unit(400, "lb"),
  25890. name: "Feral",
  25891. image: {
  25892. source: "./media/characters/felix-braveheart/feral.svg",
  25893. extra: 682 / 625,
  25894. bottom: 6.9 / 688
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(13, "feet"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25908. {
  25909. side: {
  25910. height: math.unit(5 + 11 / 12, "feet"),
  25911. weight: math.unit(1400, "lb"),
  25912. name: "Side",
  25913. image: {
  25914. source: "./media/characters/shadow-blade/side.svg",
  25915. extra: 1726 / 1267,
  25916. bottom: 58.4 / 1785
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(5 + 11 / 12, "feet"),
  25924. default: true
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(1 + 6 / 12, "feet"),
  25933. weight: math.unit(25, "lb"),
  25934. name: "Front",
  25935. image: {
  25936. source: "./media/characters/karla-halldor/front.svg",
  25937. extra: 1459 / 1383,
  25938. bottom: 12 / 1472
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(1 + 6 / 12, "feet"),
  25946. default: true
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(6 + 2 / 12, "feet"),
  25955. weight: math.unit(160, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/ariam/front.svg",
  25959. extra: 1073/976,
  25960. bottom: 52/1125
  25961. }
  25962. },
  25963. back: {
  25964. height: math.unit(6 + 2/12, "feet"),
  25965. weight: math.unit(160, "lb"),
  25966. name: "Back",
  25967. image: {
  25968. source: "./media/characters/ariam/back.svg",
  25969. extra: 1103/1023,
  25970. bottom: 9/1112
  25971. }
  25972. },
  25973. dressed: {
  25974. height: math.unit(6 + 2/12, "feet"),
  25975. weight: math.unit(160, "lb"),
  25976. name: "Dressed",
  25977. image: {
  25978. source: "./media/characters/ariam/dressed.svg",
  25979. extra: 1099/1009,
  25980. bottom: 25/1124
  25981. }
  25982. },
  25983. squatting: {
  25984. height: math.unit(4.1, "feet"),
  25985. weight: math.unit(160, "lb"),
  25986. name: "Squatting",
  25987. image: {
  25988. source: "./media/characters/ariam/squatting.svg",
  25989. extra: 2617 / 2112,
  25990. bottom: 61.2 / 2681,
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(6 + 2 / 12, "feet"),
  25998. default: true
  25999. },
  26000. {
  26001. name: "Normal+",
  26002. height: math.unit(4, "meters")
  26003. },
  26004. {
  26005. name: "Macro",
  26006. height: math.unit(50, "meters")
  26007. },
  26008. {
  26009. name: "Macro+",
  26010. height: math.unit(100, "meters")
  26011. },
  26012. {
  26013. name: "Megamacro",
  26014. height: math.unit(20, "km")
  26015. },
  26016. {
  26017. name: "Caretaker",
  26018. height: math.unit(444, "megameters")
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(1.67, "meters"),
  26027. weight: math.unit(140, "lb"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26031. extra: 438 / 410,
  26032. bottom: 0.75 / 439
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Shrunken",
  26039. height: math.unit(7.6, "cm")
  26040. },
  26041. {
  26042. name: "Human Scale",
  26043. height: math.unit(1.67, "meters")
  26044. },
  26045. {
  26046. name: "Wolxi Scale",
  26047. height: math.unit(36.7, "meters"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(1.73, "meters"),
  26057. weight: math.unit(240, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/izue-two-mothers/front.svg",
  26061. extra: 469 / 437,
  26062. bottom: 1.24 / 470.6
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Shrunken",
  26069. height: math.unit(7.86, "cm")
  26070. },
  26071. {
  26072. name: "Human Scale",
  26073. height: math.unit(1.73, "meters")
  26074. },
  26075. {
  26076. name: "Wolxi Scale",
  26077. height: math.unit(38, "meters"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(1.55, "meters"),
  26087. weight: math.unit(120, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/teeku-love-shack/front.svg",
  26091. extra: 387 / 362,
  26092. bottom: 1.51 / 388
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Shrunken",
  26099. height: math.unit(7, "cm")
  26100. },
  26101. {
  26102. name: "Human Scale",
  26103. height: math.unit(1.55, "meters")
  26104. },
  26105. {
  26106. name: "Wolxi Scale",
  26107. height: math.unit(34.1, "meters"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(1.83, "meters"),
  26117. weight: math.unit(135, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/dejma-the-red/front.svg",
  26121. extra: 480 / 458,
  26122. bottom: 1.8 / 482
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Shrunken",
  26129. height: math.unit(8.3, "cm")
  26130. },
  26131. {
  26132. name: "Human Scale",
  26133. height: math.unit(1.83, "meters")
  26134. },
  26135. {
  26136. name: "Wolxi Scale",
  26137. height: math.unit(40, "meters"),
  26138. default: true
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(1.78, "meters"),
  26147. weight: math.unit(65, "kg"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/aki/front.svg",
  26151. extra: 452 / 415
  26152. }
  26153. },
  26154. frontNsfw: {
  26155. height: math.unit(1.78, "meters"),
  26156. weight: math.unit(65, "kg"),
  26157. name: "Front (NSFW)",
  26158. image: {
  26159. source: "./media/characters/aki/front-nsfw.svg",
  26160. extra: 452 / 415
  26161. }
  26162. },
  26163. back: {
  26164. height: math.unit(1.78, "meters"),
  26165. weight: math.unit(65, "kg"),
  26166. name: "Back",
  26167. image: {
  26168. source: "./media/characters/aki/back.svg",
  26169. extra: 452 / 415
  26170. }
  26171. },
  26172. rump: {
  26173. height: math.unit(2.05, "feet"),
  26174. name: "Rump",
  26175. image: {
  26176. source: "./media/characters/aki/rump.svg"
  26177. }
  26178. },
  26179. dick: {
  26180. height: math.unit(0.95, "feet"),
  26181. name: "Dick",
  26182. image: {
  26183. source: "./media/characters/aki/dick.svg"
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Micro",
  26190. height: math.unit(15, "cm")
  26191. },
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(178, "cm"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(214, "m")
  26200. },
  26201. {
  26202. name: "Macro+",
  26203. height: math.unit(534, "m")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(5 + 5 / 12, "feet"),
  26212. weight: math.unit(120, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/ari/front.svg",
  26216. extra: 1550/1471,
  26217. bottom: 39/1589
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(5 + 5 / 12, "feet")
  26225. },
  26226. {
  26227. name: "Macro",
  26228. height: math.unit(100, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Megamacro",
  26233. height: math.unit(100, "miles")
  26234. },
  26235. {
  26236. name: "Gigamacro",
  26237. height: math.unit(80000, "miles")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26243. {
  26244. side: {
  26245. height: math.unit(9, "feet"),
  26246. weight: math.unit(400, "kg"),
  26247. name: "Side",
  26248. image: {
  26249. source: "./media/characters/bolt/side.svg",
  26250. extra: 1126 / 896,
  26251. bottom: 60 / 1187.3,
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Micro",
  26258. height: math.unit(5, "inches")
  26259. },
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(9, "feet"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Macro",
  26267. height: math.unit(700, "feet")
  26268. },
  26269. {
  26270. name: "Max Size",
  26271. height: math.unit(1.52e22, "yottameters")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(4.3, "meters"),
  26280. weight: math.unit(3, "tons"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/draekon-sylviar/front.svg",
  26284. extra: 2072/1512,
  26285. bottom: 74/2146
  26286. }
  26287. },
  26288. back: {
  26289. height: math.unit(4.3, "meters"),
  26290. weight: math.unit(3, "tons"),
  26291. name: "Back",
  26292. image: {
  26293. source: "./media/characters/draekon-sylviar/back.svg",
  26294. extra: 1639/1483,
  26295. bottom: 41/1680
  26296. }
  26297. },
  26298. feral: {
  26299. height: math.unit(1.15, "meters"),
  26300. weight: math.unit(3, "tons"),
  26301. name: "Feral",
  26302. image: {
  26303. source: "./media/characters/draekon-sylviar/feral.svg",
  26304. extra: 1033/395,
  26305. bottom: 130/1163
  26306. }
  26307. },
  26308. maw: {
  26309. height: math.unit(1.3, "meters"),
  26310. name: "Maw",
  26311. image: {
  26312. source: "./media/characters/draekon-sylviar/maw.svg"
  26313. }
  26314. },
  26315. mawSeparated: {
  26316. height: math.unit(1.53, "meters"),
  26317. name: "Separated Maw",
  26318. image: {
  26319. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26320. }
  26321. },
  26322. tail: {
  26323. height: math.unit(1.15, "meters"),
  26324. name: "Tail",
  26325. image: {
  26326. source: "./media/characters/draekon-sylviar/tail.svg"
  26327. }
  26328. },
  26329. tailDick: {
  26330. height: math.unit(1.15, "meters"),
  26331. name: "Tail (Dick)",
  26332. image: {
  26333. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26334. }
  26335. },
  26336. tailDickSeparated: {
  26337. height: math.unit(1.19, "meters"),
  26338. name: "Tail (Separated Dick)",
  26339. image: {
  26340. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26341. }
  26342. },
  26343. slit: {
  26344. height: math.unit(1, "meters"),
  26345. name: "Slit",
  26346. image: {
  26347. source: "./media/characters/draekon-sylviar/slit.svg"
  26348. }
  26349. },
  26350. dick: {
  26351. height: math.unit(1.15, "meters"),
  26352. name: "Dick",
  26353. image: {
  26354. source: "./media/characters/draekon-sylviar/dick.svg"
  26355. }
  26356. },
  26357. dickSeparated: {
  26358. height: math.unit(1.1, "meters"),
  26359. name: "Separated Dick",
  26360. image: {
  26361. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26362. }
  26363. },
  26364. sheath: {
  26365. height: math.unit(1.15, "meters"),
  26366. name: "Sheath",
  26367. image: {
  26368. source: "./media/characters/draekon-sylviar/sheath.svg"
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "Small",
  26375. height: math.unit(4.53 / 2, "meters"),
  26376. default: true
  26377. },
  26378. {
  26379. name: "Normal",
  26380. height: math.unit(4.53, "meters"),
  26381. default: true
  26382. },
  26383. {
  26384. name: "Large",
  26385. height: math.unit(4.53 * 2, "meters"),
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(6 + 2 / 12, "feet"),
  26394. weight: math.unit(180, "lb"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/brawler/front.svg",
  26398. extra: 3301 / 3027,
  26399. bottom: 138 / 3439
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(6 + 2 / 12, "feet"),
  26407. default: true
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(11, "feet"),
  26416. weight: math.unit(1000, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/alex/front.svg",
  26420. bottom: 44.5 / 620
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Micro",
  26427. height: math.unit(5, "inches")
  26428. },
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(11, "feet"),
  26432. default: true
  26433. },
  26434. {
  26435. name: "Macro",
  26436. height: math.unit(9.5e9, "feet")
  26437. },
  26438. {
  26439. name: "Max Size",
  26440. height: math.unit(1.4e283, "yottameters")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26446. {
  26447. female: {
  26448. height: math.unit(29.9, "m"),
  26449. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26450. name: "Female",
  26451. image: {
  26452. source: "./media/characters/zenari/female.svg",
  26453. extra: 3281.6 / 3217,
  26454. bottom: 72.2 / 3353
  26455. }
  26456. },
  26457. male: {
  26458. height: math.unit(27.7, "m"),
  26459. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26460. name: "Male",
  26461. image: {
  26462. source: "./media/characters/zenari/male.svg",
  26463. extra: 3008 / 2991,
  26464. bottom: 54.6 / 3069
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Macro",
  26471. height: math.unit(29.7, "meters"),
  26472. default: true
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26478. {
  26479. female: {
  26480. height: math.unit(23.8, "m"),
  26481. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26482. name: "Female",
  26483. image: {
  26484. source: "./media/characters/mactarian/female.svg",
  26485. extra: 2662 / 2569,
  26486. bottom: 73 / 2736
  26487. }
  26488. },
  26489. male: {
  26490. height: math.unit(23.8, "m"),
  26491. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26492. name: "Male",
  26493. image: {
  26494. source: "./media/characters/mactarian/male.svg",
  26495. extra: 2673 / 2600,
  26496. bottom: 76 / 2750
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Macro",
  26503. height: math.unit(23.8, "meters"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26510. {
  26511. female: {
  26512. height: math.unit(19.3, "m"),
  26513. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26514. name: "Female",
  26515. image: {
  26516. source: "./media/characters/umok/female.svg",
  26517. extra: 2186 / 2078,
  26518. bottom: 87 / 2277
  26519. }
  26520. },
  26521. male: {
  26522. height: math.unit(19.5, "m"),
  26523. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26524. name: "Male",
  26525. image: {
  26526. source: "./media/characters/umok/male.svg",
  26527. extra: 2233 / 2140,
  26528. bottom: 24.4 / 2258
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(19.3, "meters"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26542. {
  26543. female: {
  26544. height: math.unit(26.15, "m"),
  26545. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26546. name: "Female",
  26547. image: {
  26548. source: "./media/characters/joraxian/female.svg",
  26549. extra: 2912 / 2824,
  26550. bottom: 36 / 2956
  26551. }
  26552. },
  26553. male: {
  26554. height: math.unit(25.4, "m"),
  26555. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26556. name: "Male",
  26557. image: {
  26558. source: "./media/characters/joraxian/male.svg",
  26559. extra: 2877 / 2721,
  26560. bottom: 82 / 2967
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Macro",
  26567. height: math.unit(26.15, "meters"),
  26568. default: true
  26569. },
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26574. {
  26575. female: {
  26576. height: math.unit(21.6, "m"),
  26577. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26578. name: "Female",
  26579. image: {
  26580. source: "./media/characters/sthara/female.svg",
  26581. extra: 2516 / 2347,
  26582. bottom: 21.5 / 2537
  26583. }
  26584. },
  26585. male: {
  26586. height: math.unit(24, "m"),
  26587. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26588. name: "Male",
  26589. image: {
  26590. source: "./media/characters/sthara/male.svg",
  26591. extra: 2732 / 2607,
  26592. bottom: 23 / 2732
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(21.6, "meters"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(6 + 4 / 12, "feet"),
  26609. weight: math.unit(175, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/luka-bryzant/front.svg",
  26613. extra: 311 / 289,
  26614. bottom: 4 / 315
  26615. }
  26616. },
  26617. back: {
  26618. height: math.unit(6 + 4 / 12, "feet"),
  26619. weight: math.unit(175, "lb"),
  26620. name: "Back",
  26621. image: {
  26622. source: "./media/characters/luka-bryzant/back.svg",
  26623. extra: 311 / 289,
  26624. bottom: 3.8 / 313.7
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Micro",
  26631. height: math.unit(10, "inches")
  26632. },
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(6 + 4 / 12, "feet"),
  26636. default: true
  26637. },
  26638. {
  26639. name: "Large",
  26640. height: math.unit(12, "feet")
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(5 + 7 / 12, "feet"),
  26649. weight: math.unit(185, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/aman-aquila/front.svg",
  26653. extra: 1013 / 976,
  26654. bottom: 45.6 / 1057
  26655. }
  26656. },
  26657. side: {
  26658. height: math.unit(5 + 7 / 12, "feet"),
  26659. weight: math.unit(185, "lb"),
  26660. name: "Side",
  26661. image: {
  26662. source: "./media/characters/aman-aquila/side.svg",
  26663. extra: 1054 / 1011,
  26664. bottom: 15 / 1070
  26665. }
  26666. },
  26667. back: {
  26668. height: math.unit(5 + 7 / 12, "feet"),
  26669. weight: math.unit(185, "lb"),
  26670. name: "Back",
  26671. image: {
  26672. source: "./media/characters/aman-aquila/back.svg",
  26673. extra: 1026 / 970,
  26674. bottom: 12 / 1039
  26675. }
  26676. },
  26677. head: {
  26678. height: math.unit(1.211, "feet"),
  26679. name: "Head",
  26680. image: {
  26681. source: "./media/characters/aman-aquila/head.svg",
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Minimicro",
  26688. height: math.unit(0.057, "inches")
  26689. },
  26690. {
  26691. name: "Micro",
  26692. height: math.unit(7, "inches")
  26693. },
  26694. {
  26695. name: "Mini",
  26696. height: math.unit(3 + 7 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(5 + 7 / 12, "feet"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(157 + 7 / 12, "feet")
  26706. },
  26707. {
  26708. name: "Megamacro",
  26709. height: math.unit(1557 + 7 / 12, "feet")
  26710. },
  26711. {
  26712. name: "Gigamacro",
  26713. height: math.unit(15557 + 7 / 12, "feet")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(3 + 2 / 12, "inches"),
  26722. weight: math.unit(0.3, "ounces"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/hiphae/front.svg",
  26726. extra: 1931 / 1683,
  26727. bottom: 24 / 1955
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(3 + 1 / 2, "inches"),
  26735. default: true
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(5 + 10 / 12, "feet"),
  26744. weight: math.unit(165, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/nicky/front.svg",
  26748. extra: 3144 / 2886,
  26749. bottom: 45.6 / 3192
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(5 + 10 / 12, "feet"),
  26754. weight: math.unit(165, "lb"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/nicky/back.svg",
  26758. extra: 3055 / 2804,
  26759. bottom: 28.4 / 3087
  26760. }
  26761. },
  26762. frontclothed: {
  26763. height: math.unit(5 + 10 / 12, "feet"),
  26764. weight: math.unit(165, "lb"),
  26765. name: "Front-clothed",
  26766. image: {
  26767. source: "./media/characters/nicky/front-clothed.svg",
  26768. extra: 3184.9 / 2926.9,
  26769. bottom: 86.5 / 3239.9
  26770. }
  26771. },
  26772. foot: {
  26773. height: math.unit(1.16, "feet"),
  26774. name: "Foot",
  26775. image: {
  26776. source: "./media/characters/nicky/foot.svg"
  26777. }
  26778. },
  26779. feet: {
  26780. height: math.unit(1.34, "feet"),
  26781. name: "Feet",
  26782. image: {
  26783. source: "./media/characters/nicky/feet.svg"
  26784. }
  26785. },
  26786. maw: {
  26787. height: math.unit(0.9, "feet"),
  26788. name: "Maw",
  26789. image: {
  26790. source: "./media/characters/nicky/maw.svg"
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(5 + 10 / 12, "feet"),
  26798. default: true
  26799. },
  26800. {
  26801. name: "Macro",
  26802. height: math.unit(60, "feet")
  26803. },
  26804. {
  26805. name: "Megamacro",
  26806. height: math.unit(1, "mile")
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26812. {
  26813. side: {
  26814. height: math.unit(10, "feet"),
  26815. weight: math.unit(600, "lb"),
  26816. name: "Side",
  26817. image: {
  26818. source: "./media/characters/blair/side.svg",
  26819. bottom: 16.6 / 475,
  26820. extra: 458 / 431
  26821. }
  26822. },
  26823. },
  26824. [
  26825. {
  26826. name: "Micro",
  26827. height: math.unit(8, "inches")
  26828. },
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(10, "feet"),
  26832. default: true
  26833. },
  26834. {
  26835. name: "Macro",
  26836. height: math.unit(180, "feet")
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(5 + 4 / 12, "feet"),
  26845. weight: math.unit(125, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/fisher/front.svg",
  26849. extra: 444 / 390,
  26850. bottom: 2 / 444.8
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Micro",
  26857. height: math.unit(4, "inches")
  26858. },
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(5 + 4 / 12, "feet"),
  26862. default: true
  26863. },
  26864. {
  26865. name: "Macro",
  26866. height: math.unit(100, "feet")
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(6.71, "feet"),
  26875. weight: math.unit(200, "lb"),
  26876. preyCapacity: math.unit(1000000, "people"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/gliss/front.svg",
  26880. extra: 2347 / 2231,
  26881. bottom: 113 / 2462
  26882. }
  26883. },
  26884. hammerspaceSize: {
  26885. height: math.unit(6.71 * 717, "feet"),
  26886. weight: math.unit(200, "lb"),
  26887. preyCapacity: math.unit(1000000, "people"),
  26888. name: "Hammerspace Size",
  26889. image: {
  26890. source: "./media/characters/gliss/front.svg",
  26891. extra: 2347 / 2231,
  26892. bottom: 113 / 2462
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(6.71, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26906. {
  26907. side: {
  26908. height: math.unit(1.44, "m"),
  26909. weight: math.unit(80, "kg"),
  26910. name: "Side",
  26911. image: {
  26912. source: "./media/characters/dune-anderson/side.svg",
  26913. bottom: 49 / 1426
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Wolf-sized",
  26920. height: math.unit(1.44, "meters")
  26921. },
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(5.05, "meters"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Big",
  26929. height: math.unit(14.4, "meters")
  26930. },
  26931. {
  26932. name: "Huge",
  26933. height: math.unit(144, "meters")
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(7, "feet"),
  26942. weight: math.unit(425, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/hind/front.svg",
  26946. extra: 2091 / 1860,
  26947. bottom: 129 / 2220
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(7, "feet"),
  26952. weight: math.unit(425, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/hind/back.svg",
  26956. extra: 2091 / 1860,
  26957. bottom: 24.6 / 2309
  26958. }
  26959. },
  26960. tail: {
  26961. height: math.unit(2.8, "feet"),
  26962. name: "Tail",
  26963. image: {
  26964. source: "./media/characters/hind/tail.svg"
  26965. }
  26966. },
  26967. head: {
  26968. height: math.unit(2.55, "feet"),
  26969. name: "Head",
  26970. image: {
  26971. source: "./media/characters/hind/head.svg"
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "XS",
  26978. height: math.unit(0.7, "feet")
  26979. },
  26980. {
  26981. name: "Normal",
  26982. height: math.unit(7, "feet"),
  26983. default: true
  26984. },
  26985. {
  26986. name: "XL",
  26987. height: math.unit(70, "feet")
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(2.1, "meters"),
  26996. weight: math.unit(150, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/tharquench-sizestealer/front.svg",
  27000. extra: 1605/1470,
  27001. bottom: 36/1641
  27002. }
  27003. },
  27004. frontAlt: {
  27005. height: math.unit(2.1, "meters"),
  27006. weight: math.unit(150, "lb"),
  27007. name: "Front (Alt)",
  27008. image: {
  27009. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27010. extra: 2318 / 2063,
  27011. bottom: 93.4 / 2410
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Nano",
  27018. height: math.unit(1, "mm")
  27019. },
  27020. {
  27021. name: "Micro",
  27022. height: math.unit(1, "cm")
  27023. },
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(2.1, "meters"),
  27027. default: true
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(7 + 5 / 12, "feet"),
  27036. weight: math.unit(357, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/solex-draconov/front.svg",
  27040. extra: 1993 / 1865,
  27041. bottom: 117 / 2111
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Natural Height",
  27048. height: math.unit(7 + 5 / 12, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Macro",
  27053. height: math.unit(350, "feet")
  27054. },
  27055. {
  27056. name: "Macro+",
  27057. height: math.unit(1000, "feet")
  27058. },
  27059. {
  27060. name: "Megamacro",
  27061. height: math.unit(20, "km")
  27062. },
  27063. {
  27064. name: "Megamacro+",
  27065. height: math.unit(1000, "km")
  27066. },
  27067. {
  27068. name: "Gigamacro",
  27069. height: math.unit(2.5, "Gm")
  27070. },
  27071. {
  27072. name: "Teramacro",
  27073. height: math.unit(15, "Tm")
  27074. },
  27075. {
  27076. name: "Galactic",
  27077. height: math.unit(30, "Zm")
  27078. },
  27079. {
  27080. name: "Universal",
  27081. height: math.unit(21000, "Ym")
  27082. },
  27083. {
  27084. name: "Omniversal",
  27085. height: math.unit(9.861e50, "Ym")
  27086. },
  27087. {
  27088. name: "Existential",
  27089. height: math.unit(1e300, "meters")
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27095. {
  27096. side: {
  27097. height: math.unit(25, "feet"),
  27098. weight: math.unit(90000, "lb"),
  27099. name: "Side",
  27100. image: {
  27101. source: "./media/characters/mandarax/side.svg",
  27102. extra: 614 / 332,
  27103. bottom: 55 / 630
  27104. }
  27105. },
  27106. lounging: {
  27107. height: math.unit(15.4, "feet"),
  27108. weight: math.unit(90000, "lb"),
  27109. name: "Lounging",
  27110. image: {
  27111. source: "./media/characters/mandarax/lounging.svg",
  27112. extra: 817/609,
  27113. bottom: 685/1502
  27114. }
  27115. },
  27116. head: {
  27117. height: math.unit(11.4, "feet"),
  27118. name: "Head",
  27119. image: {
  27120. source: "./media/characters/mandarax/head.svg"
  27121. }
  27122. },
  27123. belly: {
  27124. height: math.unit(33, "feet"),
  27125. name: "Belly",
  27126. preyCapacity: math.unit(500, "people"),
  27127. image: {
  27128. source: "./media/characters/mandarax/belly.svg"
  27129. }
  27130. },
  27131. dick: {
  27132. height: math.unit(8.46, "feet"),
  27133. name: "Dick",
  27134. image: {
  27135. source: "./media/characters/mandarax/dick.svg"
  27136. }
  27137. },
  27138. top: {
  27139. height: math.unit(28, "meters"),
  27140. name: "Top",
  27141. image: {
  27142. source: "./media/characters/mandarax/top.svg"
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(25, "feet"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(5, "feet"),
  27159. weight: math.unit(90, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/pixil/front.svg",
  27163. extra: 2000 / 1618,
  27164. bottom: 12.3 / 2011
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(5, "feet"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Megamacro",
  27176. height: math.unit(10, "miles"),
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(7 + 2 / 12, "feet"),
  27185. weight: math.unit(200, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/angel/front.svg",
  27189. extra: 1830 / 1737,
  27190. bottom: 22.6 / 1854,
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(7 + 2 / 12, "feet"),
  27198. default: true
  27199. },
  27200. {
  27201. name: "Macro",
  27202. height: math.unit(1000, "feet")
  27203. },
  27204. {
  27205. name: "Megamacro",
  27206. height: math.unit(2, "miles")
  27207. },
  27208. {
  27209. name: "Gigamacro",
  27210. height: math.unit(20, "earths")
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(5, "feet"),
  27219. weight: math.unit(180, "lb"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/mekana/front.svg",
  27223. extra: 1671 / 1605,
  27224. bottom: 3.5 / 1691
  27225. }
  27226. },
  27227. side: {
  27228. height: math.unit(5, "feet"),
  27229. weight: math.unit(180, "lb"),
  27230. name: "Side",
  27231. image: {
  27232. source: "./media/characters/mekana/side.svg",
  27233. extra: 1671 / 1605,
  27234. bottom: 3.5 / 1691
  27235. }
  27236. },
  27237. back: {
  27238. height: math.unit(5, "feet"),
  27239. weight: math.unit(180, "lb"),
  27240. name: "Back",
  27241. image: {
  27242. source: "./media/characters/mekana/back.svg",
  27243. extra: 1671 / 1605,
  27244. bottom: 3.5 / 1691
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(5, "feet"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(4 + 6 / 12, "feet"),
  27261. weight: math.unit(80, "lb"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/pixie/front.svg",
  27265. extra: 1924 / 1825,
  27266. bottom: 22.4 / 1946
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(4 + 6 / 12, "feet"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Macro",
  27278. height: math.unit(40, "feet")
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(2.1, "meters"),
  27287. weight: math.unit(200, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/the-lascivious/front.svg",
  27291. extra: 1 / 0.893,
  27292. bottom: 3.5 / 573.7
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Human Scale",
  27299. height: math.unit(2.1, "meters")
  27300. },
  27301. {
  27302. name: "Wolxi Scale",
  27303. height: math.unit(46.2, "m"),
  27304. default: true
  27305. },
  27306. {
  27307. name: "Boinker of Buildings",
  27308. height: math.unit(10, "km")
  27309. },
  27310. {
  27311. name: "Shagger of Skyscrapers",
  27312. height: math.unit(40, "km")
  27313. },
  27314. {
  27315. name: "Banger of Boroughs",
  27316. height: math.unit(4000, "km")
  27317. },
  27318. {
  27319. name: "Screwer of States",
  27320. height: math.unit(100000, "km")
  27321. },
  27322. {
  27323. name: "Pounder of Planets",
  27324. height: math.unit(2000000, "km")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(6, "feet"),
  27333. weight: math.unit(150, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/aj/front.svg",
  27337. extra: 2039 / 1562,
  27338. bottom: 40 / 2079
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(11 + 6 / 12, "feet"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Megamacro",
  27350. height: math.unit(60, "megameters")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27356. {
  27357. side: {
  27358. height: math.unit(31 + 8 / 12, "feet"),
  27359. weight: math.unit(75000, "kg"),
  27360. name: "Side",
  27361. image: {
  27362. source: "./media/characters/koros/side.svg",
  27363. extra: 1442 / 1297,
  27364. bottom: 122.7 / 1562
  27365. }
  27366. },
  27367. dicksKingsCrown: {
  27368. height: math.unit(6, "feet"),
  27369. name: "Dicks (King's Crown)",
  27370. image: {
  27371. source: "./media/characters/koros/dicks-kings-crown.svg"
  27372. }
  27373. },
  27374. dicksTailSet: {
  27375. height: math.unit(3, "feet"),
  27376. name: "Dicks (Tail Set)",
  27377. image: {
  27378. source: "./media/characters/koros/dicks-tail-set.svg"
  27379. }
  27380. },
  27381. dickCumming: {
  27382. height: math.unit(7.98, "feet"),
  27383. name: "Dick (Cumming)",
  27384. image: {
  27385. source: "./media/characters/koros/dick-cumming.svg"
  27386. }
  27387. },
  27388. dicksBack: {
  27389. height: math.unit(5.9, "feet"),
  27390. name: "Dicks (Back)",
  27391. image: {
  27392. source: "./media/characters/koros/dicks-back.svg"
  27393. }
  27394. },
  27395. dicksFront: {
  27396. height: math.unit(3.72, "feet"),
  27397. name: "Dicks (Front)",
  27398. image: {
  27399. source: "./media/characters/koros/dicks-front.svg"
  27400. }
  27401. },
  27402. dicksPeeking: {
  27403. height: math.unit(3.0, "feet"),
  27404. name: "Dicks (Peeking)",
  27405. image: {
  27406. source: "./media/characters/koros/dicks-peeking.svg"
  27407. }
  27408. },
  27409. eye: {
  27410. height: math.unit(1.7, "feet"),
  27411. name: "Eye",
  27412. image: {
  27413. source: "./media/characters/koros/eye.svg"
  27414. }
  27415. },
  27416. headFront: {
  27417. height: math.unit(11.69, "feet"),
  27418. name: "Head (Front)",
  27419. image: {
  27420. source: "./media/characters/koros/head-front.svg"
  27421. }
  27422. },
  27423. headSide: {
  27424. height: math.unit(14, "feet"),
  27425. name: "Head (Side)",
  27426. image: {
  27427. source: "./media/characters/koros/head-side.svg"
  27428. }
  27429. },
  27430. leg: {
  27431. height: math.unit(17, "feet"),
  27432. name: "Leg",
  27433. image: {
  27434. source: "./media/characters/koros/leg.svg"
  27435. }
  27436. },
  27437. mawSide: {
  27438. height: math.unit(12.8, "feet"),
  27439. name: "Maw (Side)",
  27440. image: {
  27441. source: "./media/characters/koros/maw-side.svg"
  27442. }
  27443. },
  27444. mawSpitting: {
  27445. height: math.unit(17, "feet"),
  27446. name: "Maw (Spitting)",
  27447. image: {
  27448. source: "./media/characters/koros/maw-spitting.svg"
  27449. }
  27450. },
  27451. slit: {
  27452. height: math.unit(2.8, "feet"),
  27453. name: "Slit",
  27454. image: {
  27455. source: "./media/characters/koros/slit.svg"
  27456. }
  27457. },
  27458. stomach: {
  27459. height: math.unit(6.8, "feet"),
  27460. preyCapacity: math.unit(20, "people"),
  27461. name: "Stomach",
  27462. image: {
  27463. source: "./media/characters/koros/stomach.svg"
  27464. }
  27465. },
  27466. wingspanBottom: {
  27467. height: math.unit(114, "feet"),
  27468. name: "Wingspan (Bottom)",
  27469. image: {
  27470. source: "./media/characters/koros/wingspan-bottom.svg"
  27471. }
  27472. },
  27473. wingspanTop: {
  27474. height: math.unit(104, "feet"),
  27475. name: "Wingspan (Top)",
  27476. image: {
  27477. source: "./media/characters/koros/wingspan-top.svg"
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(31 + 8 / 12, "feet"),
  27485. default: true
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(18 + 5 / 12, "feet"),
  27494. weight: math.unit(3750, "kg"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/vexx/front.svg",
  27498. extra: 426 / 396,
  27499. bottom: 31.5 / 458
  27500. }
  27501. },
  27502. maw: {
  27503. height: math.unit(6, "feet"),
  27504. name: "Maw",
  27505. image: {
  27506. source: "./media/characters/vexx/maw.svg"
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(18 + 5 / 12, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(17 + 6 / 12, "feet"),
  27523. weight: math.unit(150, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/baadra/front.svg",
  27527. extra: 1694/1553,
  27528. bottom: 179/1873
  27529. }
  27530. },
  27531. frontAlt: {
  27532. height: math.unit(17 + 6 / 12, "feet"),
  27533. weight: math.unit(150, "lb"),
  27534. name: "Front (Alt)",
  27535. image: {
  27536. source: "./media/characters/baadra/front-alt.svg",
  27537. extra: 3137 / 2890,
  27538. bottom: 168.4 / 3305
  27539. }
  27540. },
  27541. back: {
  27542. height: math.unit(17 + 6 / 12, "feet"),
  27543. weight: math.unit(150, "lb"),
  27544. name: "Back",
  27545. image: {
  27546. source: "./media/characters/baadra/back.svg",
  27547. extra: 3142 / 2890,
  27548. bottom: 220 / 3371
  27549. }
  27550. },
  27551. head: {
  27552. height: math.unit(5.45, "feet"),
  27553. name: "Head",
  27554. image: {
  27555. source: "./media/characters/baadra/head.svg"
  27556. }
  27557. },
  27558. headAngry: {
  27559. height: math.unit(4.95, "feet"),
  27560. name: "Head (Angry)",
  27561. image: {
  27562. source: "./media/characters/baadra/head-angry.svg"
  27563. }
  27564. },
  27565. headOpen: {
  27566. height: math.unit(6, "feet"),
  27567. name: "Head (Open)",
  27568. image: {
  27569. source: "./media/characters/baadra/head-open.svg"
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(17 + 6 / 12, "feet"),
  27577. default: true
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27583. {
  27584. front: {
  27585. height: math.unit(7 + 3 / 12, "feet"),
  27586. weight: math.unit(180, "lb"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/juri/front.svg",
  27590. extra: 1401 / 1237,
  27591. bottom: 18.5 / 1418
  27592. }
  27593. },
  27594. side: {
  27595. height: math.unit(7 + 3 / 12, "feet"),
  27596. weight: math.unit(180, "lb"),
  27597. name: "Side",
  27598. image: {
  27599. source: "./media/characters/juri/side.svg",
  27600. extra: 1424 / 1242,
  27601. bottom: 18.5 / 1447
  27602. }
  27603. },
  27604. sitting: {
  27605. height: math.unit(6, "feet"),
  27606. weight: math.unit(180, "lb"),
  27607. name: "Sitting",
  27608. image: {
  27609. source: "./media/characters/juri/sitting.svg",
  27610. extra: 1270 / 1143,
  27611. bottom: 100 / 1343
  27612. }
  27613. },
  27614. back: {
  27615. height: math.unit(7 + 3 / 12, "feet"),
  27616. weight: math.unit(180, "lb"),
  27617. name: "Back",
  27618. image: {
  27619. source: "./media/characters/juri/back.svg",
  27620. extra: 1377 / 1240,
  27621. bottom: 23.7 / 1405
  27622. }
  27623. },
  27624. maw: {
  27625. height: math.unit(2.8, "feet"),
  27626. name: "Maw",
  27627. image: {
  27628. source: "./media/characters/juri/maw.svg"
  27629. }
  27630. },
  27631. stomach: {
  27632. height: math.unit(0.89, "feet"),
  27633. preyCapacity: math.unit(4, "liters"),
  27634. name: "Stomach",
  27635. image: {
  27636. source: "./media/characters/juri/stomach.svg"
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(7 + 3 / 12, "feet"),
  27644. default: true
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27650. {
  27651. fox: {
  27652. height: math.unit(5 + 6 / 12, "feet"),
  27653. weight: math.unit(140, "lb"),
  27654. name: "Fox",
  27655. image: {
  27656. source: "./media/characters/maxene-sita/fox.svg",
  27657. extra: 146 / 138,
  27658. bottom: 2.1 / 148.19
  27659. }
  27660. },
  27661. foxLaying: {
  27662. height: math.unit(1.70, "feet"),
  27663. weight: math.unit(140, "lb"),
  27664. name: "Fox (Laying)",
  27665. image: {
  27666. source: "./media/characters/maxene-sita/fox-laying.svg",
  27667. extra: 910 / 572,
  27668. bottom: 71 / 981
  27669. }
  27670. },
  27671. kitsune: {
  27672. height: math.unit(10, "feet"),
  27673. weight: math.unit(800, "lb"),
  27674. name: "Kitsune",
  27675. image: {
  27676. source: "./media/characters/maxene-sita/kitsune.svg",
  27677. extra: 185 / 176,
  27678. bottom: 4.7 / 189.9
  27679. }
  27680. },
  27681. hellhound: {
  27682. height: math.unit(10, "feet"),
  27683. weight: math.unit(700, "lb"),
  27684. name: "Hellhound",
  27685. image: {
  27686. source: "./media/characters/maxene-sita/hellhound.svg",
  27687. extra: 1600 / 1545,
  27688. bottom: 81 / 1681
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(5 + 6 / 12, "feet"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27702. {
  27703. front: {
  27704. height: math.unit(3 + 4 / 12, "feet"),
  27705. weight: math.unit(70, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/maia/front.svg",
  27709. extra: 227 / 219.5,
  27710. bottom: 40 / 267
  27711. }
  27712. },
  27713. back: {
  27714. height: math.unit(3 + 4 / 12, "feet"),
  27715. weight: math.unit(70, "lb"),
  27716. name: "Back",
  27717. image: {
  27718. source: "./media/characters/maia/back.svg",
  27719. extra: 237 / 225
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(3 + 4 / 12, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(5 + 10 / 12, "feet"),
  27736. weight: math.unit(197, "lb"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/jabaro/front.svg",
  27740. extra: 225 / 216,
  27741. bottom: 5.06 / 230
  27742. }
  27743. },
  27744. back: {
  27745. height: math.unit(5 + 10 / 12, "feet"),
  27746. weight: math.unit(197, "lb"),
  27747. name: "Back",
  27748. image: {
  27749. source: "./media/characters/jabaro/back.svg",
  27750. extra: 225 / 219,
  27751. bottom: 1.9 / 227
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(5 + 10 / 12, "feet"),
  27759. default: true
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(5 + 8 / 12, "feet"),
  27768. weight: math.unit(139, "lb"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/risa/front.svg",
  27772. extra: 270 / 260,
  27773. bottom: 11.2 / 282
  27774. }
  27775. },
  27776. back: {
  27777. height: math.unit(5 + 8 / 12, "feet"),
  27778. weight: math.unit(139, "lb"),
  27779. name: "Back",
  27780. image: {
  27781. source: "./media/characters/risa/back.svg",
  27782. extra: 264 / 255,
  27783. bottom: 4 / 268
  27784. }
  27785. },
  27786. },
  27787. [
  27788. {
  27789. name: "Normal",
  27790. height: math.unit(5 + 8 / 12, "feet"),
  27791. default: true
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(2 + 11 / 12, "feet"),
  27800. weight: math.unit(30, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/weatley/front.svg",
  27804. bottom: 10.7 / 414,
  27805. extra: 403.5 / 362
  27806. }
  27807. },
  27808. back: {
  27809. height: math.unit(2 + 11 / 12, "feet"),
  27810. weight: math.unit(30, "lb"),
  27811. name: "Back",
  27812. image: {
  27813. source: "./media/characters/weatley/back.svg",
  27814. bottom: 10.7 / 414,
  27815. extra: 403.5 / 362
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(2 + 11 / 12, "feet"),
  27823. default: true
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(5 + 2 / 12, "feet"),
  27832. weight: math.unit(50, "kg"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/mercury-crescent/front.svg",
  27836. extra: 1088 / 1033,
  27837. bottom: 18.9 / 1109
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(5 + 2 / 12, "feet"),
  27845. default: true
  27846. },
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27851. {
  27852. front: {
  27853. height: math.unit(2, "feet"),
  27854. weight: math.unit(15, "kg"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/diamond-jones/front.svg",
  27858. extra: 727/723,
  27859. bottom: 46/773
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(2, "feet"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27873. {
  27874. front: {
  27875. height: math.unit(3, "feet"),
  27876. weight: math.unit(30, "kg"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/sweet-bit/front.svg",
  27880. extra: 675 / 567,
  27881. bottom: 27.7 / 703
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(3, "feet"),
  27889. default: true
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27895. {
  27896. side: {
  27897. height: math.unit(9.178, "feet"),
  27898. weight: math.unit(500, "lb"),
  27899. name: "Side",
  27900. image: {
  27901. source: "./media/characters/umbrazen/side.svg",
  27902. extra: 1730 / 1473,
  27903. bottom: 34.6 / 1765
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(9.178, "feet"),
  27911. default: true
  27912. },
  27913. ]
  27914. ))
  27915. characterMakers.push(() => makeCharacter(
  27916. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27917. {
  27918. front: {
  27919. height: math.unit(10, "feet"),
  27920. weight: math.unit(750, "lb"),
  27921. name: "Front",
  27922. image: {
  27923. source: "./media/characters/arlist/front.svg",
  27924. extra: 961 / 778,
  27925. bottom: 6.2 / 986
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(10, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(5 + 1 / 12, "feet"),
  27942. weight: math.unit(110, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/aradel/front.svg",
  27946. extra: 324 / 303,
  27947. bottom: 3.6 / 329.4
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(5 + 1 / 12, "feet"),
  27955. default: true
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27961. {
  27962. dressed: {
  27963. height: math.unit(3 + 8 / 12, "feet"),
  27964. weight: math.unit(50, "lb"),
  27965. name: "Dressed",
  27966. image: {
  27967. source: "./media/characters/serryn/dressed.svg",
  27968. extra: 1792 / 1656,
  27969. bottom: 43.5 / 1840
  27970. }
  27971. },
  27972. nude: {
  27973. height: math.unit(3 + 8 / 12, "feet"),
  27974. weight: math.unit(50, "lb"),
  27975. name: "Nude",
  27976. image: {
  27977. source: "./media/characters/serryn/nude.svg",
  27978. extra: 1792 / 1656,
  27979. bottom: 43.5 / 1840
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(3 + 8 / 12, "feet"),
  27987. default: true
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27993. {
  27994. front: {
  27995. height: math.unit(7 + 10 / 12, "feet"),
  27996. weight: math.unit(255, "lb"),
  27997. name: "Front",
  27998. image: {
  27999. source: "./media/characters/xavier-thyme/front.svg",
  28000. extra: 3733 / 3642,
  28001. bottom: 131 / 3869
  28002. }
  28003. },
  28004. frontRaven: {
  28005. height: math.unit(7 + 10 / 12, "feet"),
  28006. weight: math.unit(255, "lb"),
  28007. name: "Front (Raven)",
  28008. image: {
  28009. source: "./media/characters/xavier-thyme/front-raven.svg",
  28010. extra: 4385 / 3642,
  28011. bottom: 131 / 4517
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(7 + 10 / 12, "feet"),
  28019. default: true
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(1.6, "m"),
  28028. weight: math.unit(50, "kg"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/kiki/front.svg",
  28032. extra: 4682 / 3610,
  28033. bottom: 115 / 4777
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(1.6, "meters"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(50, "m"),
  28050. weight: math.unit(500, "tonnes"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/ryoko/front.svg",
  28054. extra: 4632 / 3926,
  28055. bottom: 193 / 4823
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(50, "meters"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(30, "m"),
  28072. weight: math.unit(22, "tonnes"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/elio/front.svg",
  28076. extra: 4582 / 3720,
  28077. bottom: 236 / 4828
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(30, "meters"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(6 + 3 / 12, "feet"),
  28094. weight: math.unit(120, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/azura/front.svg",
  28098. extra: 1149 / 1135,
  28099. bottom: 45 / 1194
  28100. }
  28101. },
  28102. frontClothed: {
  28103. height: math.unit(6 + 3 / 12, "feet"),
  28104. weight: math.unit(120, "lb"),
  28105. name: "Front (Clothed)",
  28106. image: {
  28107. source: "./media/characters/azura/front-clothed.svg",
  28108. extra: 1149 / 1135,
  28109. bottom: 45 / 1194
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(6 + 3 / 12, "feet"),
  28117. default: true
  28118. },
  28119. {
  28120. name: "Macro",
  28121. height: math.unit(20 + 6 / 12, "feet")
  28122. },
  28123. {
  28124. name: "Megamacro",
  28125. height: math.unit(12, "miles")
  28126. },
  28127. {
  28128. name: "Gigamacro",
  28129. height: math.unit(10000, "miles")
  28130. },
  28131. {
  28132. name: "Teramacro",
  28133. height: math.unit(900000, "miles")
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(12, "feet"),
  28142. weight: math.unit(1, "ton"),
  28143. capacity: math.unit(660000, "gallons"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/zeus/front.svg",
  28147. extra: 5005 / 4717,
  28148. bottom: 363 / 5388
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Normal",
  28155. height: math.unit(12, "feet")
  28156. },
  28157. {
  28158. name: "Preferred Size",
  28159. height: math.unit(0.5, "miles"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Giga Horse",
  28164. height: math.unit(300, "miles")
  28165. },
  28166. {
  28167. name: "Riding Planets",
  28168. height: math.unit(30, "megameters")
  28169. },
  28170. {
  28171. name: "Cosmic Giant",
  28172. height: math.unit(3, "zettameters")
  28173. },
  28174. {
  28175. name: "Breeding God",
  28176. height: math.unit(9.92e22, "yottameters")
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28182. {
  28183. side: {
  28184. height: math.unit(9, "feet"),
  28185. weight: math.unit(1500, "kg"),
  28186. name: "Side",
  28187. image: {
  28188. source: "./media/characters/fang/side.svg",
  28189. extra: 924 / 866,
  28190. bottom: 47.5 / 972.3
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(9, "feet"),
  28198. default: true
  28199. },
  28200. {
  28201. name: "Macro",
  28202. height: math.unit(75 + 6 / 12, "feet")
  28203. },
  28204. {
  28205. name: "Teramacro",
  28206. height: math.unit(50000, "miles")
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(10, "feet"),
  28215. weight: math.unit(2, "tons"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/rekhit/front.svg",
  28219. extra: 2796 / 2590,
  28220. bottom: 225 / 3022
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(10, "feet"),
  28228. default: true
  28229. },
  28230. {
  28231. name: "Macro",
  28232. height: math.unit(500, "feet")
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28238. {
  28239. front: {
  28240. height: math.unit(7 + 6.451 / 12, "feet"),
  28241. weight: math.unit(310, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/dahlia-verrick/front.svg",
  28245. extra: 1488 / 1365,
  28246. bottom: 6.2 / 1495
  28247. }
  28248. },
  28249. back: {
  28250. height: math.unit(7 + 6.451 / 12, "feet"),
  28251. weight: math.unit(310, "lb"),
  28252. name: "Back",
  28253. image: {
  28254. source: "./media/characters/dahlia-verrick/back.svg",
  28255. extra: 1472 / 1351,
  28256. bottom: 5.28 / 1477
  28257. }
  28258. },
  28259. frontBusiness: {
  28260. height: math.unit(7 + 6.451 / 12, "feet"),
  28261. weight: math.unit(200, "lb"),
  28262. name: "Front (Business)",
  28263. image: {
  28264. source: "./media/characters/dahlia-verrick/front-business.svg",
  28265. extra: 1478 / 1381,
  28266. bottom: 5.5 / 1484
  28267. }
  28268. },
  28269. frontCasual: {
  28270. height: math.unit(7 + 6.451 / 12, "feet"),
  28271. weight: math.unit(200, "lb"),
  28272. name: "Front (Casual)",
  28273. image: {
  28274. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28275. extra: 1478 / 1381,
  28276. bottom: 5.5 / 1484
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Travel-Sized",
  28283. height: math.unit(7.45, "inches")
  28284. },
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(7 + 6.451 / 12, "feet"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Hitting the Town",
  28292. height: math.unit(37 + 8 / 12, "feet")
  28293. },
  28294. {
  28295. name: "Stomp in the Suburbs",
  28296. height: math.unit(964 + 9.728 / 12, "feet")
  28297. },
  28298. {
  28299. name: "Sit on the City",
  28300. height: math.unit(61747 + 10.592 / 12, "feet")
  28301. },
  28302. {
  28303. name: "Glomp the Globe",
  28304. height: math.unit(252919327 + 4.832 / 12, "feet")
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(6 + 4 / 12, "feet"),
  28313. weight: math.unit(320, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/balina-mahigan/front.svg",
  28317. extra: 447 / 428,
  28318. bottom: 18 / 466
  28319. }
  28320. },
  28321. back: {
  28322. height: math.unit(6 + 4 / 12, "feet"),
  28323. weight: math.unit(320, "lb"),
  28324. name: "Back",
  28325. image: {
  28326. source: "./media/characters/balina-mahigan/back.svg",
  28327. extra: 445 / 428,
  28328. bottom: 4.07 / 448
  28329. }
  28330. },
  28331. arm: {
  28332. height: math.unit(1.88, "feet"),
  28333. name: "Arm",
  28334. image: {
  28335. source: "./media/characters/balina-mahigan/arm.svg"
  28336. }
  28337. },
  28338. backPort: {
  28339. height: math.unit(0.685, "feet"),
  28340. name: "Back Port",
  28341. image: {
  28342. source: "./media/characters/balina-mahigan/back-port.svg"
  28343. }
  28344. },
  28345. hoofpaw: {
  28346. height: math.unit(1.41, "feet"),
  28347. name: "Hoofpaw",
  28348. image: {
  28349. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28350. }
  28351. },
  28352. leftHandBack: {
  28353. height: math.unit(0.938, "feet"),
  28354. name: "Left Hand (Back)",
  28355. image: {
  28356. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28357. }
  28358. },
  28359. leftHandFront: {
  28360. height: math.unit(0.938, "feet"),
  28361. name: "Left Hand (Front)",
  28362. image: {
  28363. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28364. }
  28365. },
  28366. rightHandBack: {
  28367. height: math.unit(0.95, "feet"),
  28368. name: "Right Hand (Back)",
  28369. image: {
  28370. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28371. }
  28372. },
  28373. rightHandFront: {
  28374. height: math.unit(0.95, "feet"),
  28375. name: "Right Hand (Front)",
  28376. image: {
  28377. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(6 + 4 / 12, "feet"),
  28385. default: true
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(6, "feet"),
  28394. weight: math.unit(320, "lb"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/balina-mejeri/front.svg",
  28398. extra: 517 / 488,
  28399. bottom: 44.2 / 561
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(6 + 4 / 12, "feet")
  28407. },
  28408. {
  28409. name: "Business",
  28410. height: math.unit(155, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28417. {
  28418. kneeling: {
  28419. height: math.unit(6 + 4 / 12, "feet"),
  28420. weight: math.unit(300 * 20, "lb"),
  28421. name: "Kneeling",
  28422. image: {
  28423. source: "./media/characters/balbarian/kneeling.svg",
  28424. extra: 922 / 862,
  28425. bottom: 42.4 / 965
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(6 + 4 / 12, "feet")
  28433. },
  28434. {
  28435. name: "Treasured",
  28436. height: math.unit(18 + 9 / 12, "feet"),
  28437. default: true
  28438. },
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(900, "feet")
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(6 + 4 / 12, "feet"),
  28450. weight: math.unit(325, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/balina-amarini/front.svg",
  28454. extra: 415 / 403,
  28455. bottom: 19 / 433.4
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(6 + 4 / 12, "feet"),
  28460. weight: math.unit(325, "lb"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/balina-amarini/back.svg",
  28464. extra: 415 / 403,
  28465. bottom: 13.5 / 432
  28466. }
  28467. },
  28468. overdrive: {
  28469. height: math.unit(6 + 4 / 12, "feet"),
  28470. weight: math.unit(400, "lb"),
  28471. name: "Overdrive",
  28472. image: {
  28473. source: "./media/characters/balina-amarini/overdrive.svg",
  28474. extra: 269 / 259,
  28475. bottom: 12 / 282
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Boom",
  28482. height: math.unit(9 + 10 / 12, "feet"),
  28483. default: true
  28484. },
  28485. {
  28486. name: "Macro",
  28487. height: math.unit(280, "feet")
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28493. {
  28494. goddess: {
  28495. height: math.unit(600, "feet"),
  28496. weight: math.unit(2000000, "tons"),
  28497. name: "Goddess",
  28498. image: {
  28499. source: "./media/characters/lady-kubwa/goddess.svg",
  28500. extra: 1240.5 / 1223,
  28501. bottom: 22 / 1263
  28502. }
  28503. },
  28504. goddesser: {
  28505. height: math.unit(900, "feet"),
  28506. weight: math.unit(20000000, "lb"),
  28507. name: "Goddess-er",
  28508. image: {
  28509. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28510. extra: 899 / 888,
  28511. bottom: 12.6 / 912
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Macro",
  28518. height: math.unit(600, "feet"),
  28519. default: true
  28520. },
  28521. {
  28522. name: "Megamacro",
  28523. height: math.unit(250, "miles")
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(7 + 7 / 12, "feet"),
  28532. weight: math.unit(250, "lb"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/tala-grovehorn/front.svg",
  28536. extra: 2636 / 2525,
  28537. bottom: 147 / 2781
  28538. }
  28539. },
  28540. back: {
  28541. height: math.unit(7 + 7 / 12, "feet"),
  28542. weight: math.unit(250, "lb"),
  28543. name: "Back",
  28544. image: {
  28545. source: "./media/characters/tala-grovehorn/back.svg",
  28546. extra: 2635 / 2539,
  28547. bottom: 100 / 2732.8
  28548. }
  28549. },
  28550. mouth: {
  28551. height: math.unit(1.15, "feet"),
  28552. name: "Mouth",
  28553. image: {
  28554. source: "./media/characters/tala-grovehorn/mouth.svg"
  28555. }
  28556. },
  28557. dick: {
  28558. height: math.unit(2.36, "feet"),
  28559. name: "Dick",
  28560. image: {
  28561. source: "./media/characters/tala-grovehorn/dick.svg"
  28562. }
  28563. },
  28564. slit: {
  28565. height: math.unit(0.61, "feet"),
  28566. name: "Slit",
  28567. image: {
  28568. source: "./media/characters/tala-grovehorn/slit.svg"
  28569. }
  28570. },
  28571. },
  28572. [
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(7 + 7 / 12, "feet"),
  28580. weight: math.unit(225, "lb"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/epona/front.svg",
  28584. extra: 2445 / 2290,
  28585. bottom: 251 / 2696
  28586. }
  28587. },
  28588. back: {
  28589. height: math.unit(7 + 7 / 12, "feet"),
  28590. weight: math.unit(225, "lb"),
  28591. name: "Back",
  28592. image: {
  28593. source: "./media/characters/epona/back.svg",
  28594. extra: 2546 / 2408,
  28595. bottom: 44 / 2589
  28596. }
  28597. },
  28598. genitals: {
  28599. height: math.unit(1.5, "feet"),
  28600. name: "Genitals",
  28601. image: {
  28602. source: "./media/characters/epona/genitals.svg"
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Normal",
  28609. height: math.unit(7 + 7 / 12, "feet"),
  28610. default: true
  28611. },
  28612. ]
  28613. ))
  28614. characterMakers.push(() => makeCharacter(
  28615. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28616. {
  28617. front: {
  28618. height: math.unit(7, "feet"),
  28619. weight: math.unit(518, "lb"),
  28620. name: "Front",
  28621. image: {
  28622. source: "./media/characters/avia-bloodbourn/front.svg",
  28623. extra: 1466 / 1350,
  28624. bottom: 65 / 1527
  28625. }
  28626. },
  28627. },
  28628. [
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(9.35, "feet"),
  28636. weight: math.unit(600, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/amera/front.svg",
  28640. extra: 891 / 818,
  28641. bottom: 30 / 922.7
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(9.35, "feet"),
  28646. weight: math.unit(600, "lb"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/amera/back.svg",
  28650. extra: 876 / 824,
  28651. bottom: 6.8 / 884
  28652. }
  28653. },
  28654. dick: {
  28655. height: math.unit(2.14, "feet"),
  28656. name: "Dick",
  28657. image: {
  28658. source: "./media/characters/amera/dick.svg"
  28659. }
  28660. },
  28661. },
  28662. [
  28663. {
  28664. name: "Normal",
  28665. height: math.unit(9.35, "feet"),
  28666. default: true
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28672. {
  28673. kneeling: {
  28674. height: math.unit(3 + 4 / 12, "feet"),
  28675. weight: math.unit(90, "lb"),
  28676. name: "Kneeling",
  28677. image: {
  28678. source: "./media/characters/rosewen/kneeling.svg",
  28679. extra: 1835 / 1571,
  28680. bottom: 27.7 / 1862
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(3 + 4 / 12, "feet"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(5 + 10 / 12, "feet"),
  28697. weight: math.unit(200, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/sabah/front.svg",
  28701. extra: 849 / 763,
  28702. bottom: 33.9 / 881
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Normal",
  28709. height: math.unit(5 + 10 / 12, "feet"),
  28710. default: true
  28711. },
  28712. ]
  28713. ))
  28714. characterMakers.push(() => makeCharacter(
  28715. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28716. {
  28717. front: {
  28718. height: math.unit(3 + 5 / 12, "feet"),
  28719. weight: math.unit(40, "kg"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/purple-flame/front.svg",
  28723. extra: 1577 / 1412,
  28724. bottom: 97 / 1694
  28725. }
  28726. },
  28727. frontDressed: {
  28728. height: math.unit(3 + 5 / 12, "feet"),
  28729. weight: math.unit(40, "kg"),
  28730. name: "Front (Dressed)",
  28731. image: {
  28732. source: "./media/characters/purple-flame/front-dressed.svg",
  28733. extra: 1577 / 1412,
  28734. bottom: 97 / 1694
  28735. }
  28736. },
  28737. headphones: {
  28738. height: math.unit(0.85, "feet"),
  28739. name: "Headphones",
  28740. image: {
  28741. source: "./media/characters/purple-flame/headphones.svg"
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Really Small",
  28748. height: math.unit(5, "cm")
  28749. },
  28750. {
  28751. name: "Micro",
  28752. height: math.unit(1 + 5 / 12, "feet")
  28753. },
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(3 + 5 / 12, "feet"),
  28757. default: true
  28758. },
  28759. {
  28760. name: "Minimacro",
  28761. height: math.unit(125, "feet")
  28762. },
  28763. {
  28764. name: "Macro",
  28765. height: math.unit(0.5, "miles")
  28766. },
  28767. {
  28768. name: "Megamacro",
  28769. height: math.unit(50, "miles")
  28770. },
  28771. {
  28772. name: "Gigantic",
  28773. height: math.unit(750, "miles")
  28774. },
  28775. {
  28776. name: "Planetary",
  28777. height: math.unit(15000, "miles")
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(14, "feet"),
  28786. weight: math.unit(959, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/arsenal/front.svg",
  28790. extra: 2357 / 2157,
  28791. bottom: 93 / 2458
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(14, "feet"),
  28799. default: true
  28800. },
  28801. ]
  28802. ))
  28803. characterMakers.push(() => makeCharacter(
  28804. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28805. {
  28806. front: {
  28807. height: math.unit(6, "feet"),
  28808. weight: math.unit(150, "lb"),
  28809. name: "Front",
  28810. image: {
  28811. source: "./media/characters/adira/front.svg",
  28812. extra: 1078 / 1029,
  28813. bottom: 87 / 1166
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Micro",
  28820. height: math.unit(4, "inches"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(50, "feet")
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(16, "feet"),
  28834. weight: math.unit(1000, "lb"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/grim/front.svg",
  28838. extra: 622 / 614,
  28839. bottom: 18.1 / 642
  28840. }
  28841. },
  28842. back: {
  28843. height: math.unit(16, "feet"),
  28844. weight: math.unit(1000, "lb"),
  28845. name: "Back",
  28846. image: {
  28847. source: "./media/characters/grim/back.svg",
  28848. extra: 610.6 / 602,
  28849. bottom: 40.8 / 652
  28850. }
  28851. },
  28852. hunched: {
  28853. height: math.unit(9.75, "feet"),
  28854. weight: math.unit(1000, "lb"),
  28855. name: "Hunched",
  28856. image: {
  28857. source: "./media/characters/grim/hunched.svg",
  28858. extra: 304 / 297,
  28859. bottom: 35.4 / 394
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(16, "feet"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(2.3, "meters"),
  28876. weight: math.unit(300, "lb"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/sinja/front-sfw.svg",
  28880. extra: 1393 / 1294,
  28881. bottom: 70 / 1463
  28882. }
  28883. },
  28884. frontNsfw: {
  28885. height: math.unit(2.3, "meters"),
  28886. weight: math.unit(300, "lb"),
  28887. name: "Front (NSFW)",
  28888. image: {
  28889. source: "./media/characters/sinja/front-nsfw.svg",
  28890. extra: 1393 / 1294,
  28891. bottom: 70 / 1463
  28892. }
  28893. },
  28894. back: {
  28895. height: math.unit(2.3, "meters"),
  28896. weight: math.unit(300, "lb"),
  28897. name: "Back",
  28898. image: {
  28899. source: "./media/characters/sinja/back.svg",
  28900. extra: 1393 / 1294,
  28901. bottom: 70 / 1463
  28902. }
  28903. },
  28904. head: {
  28905. height: math.unit(1.771, "feet"),
  28906. name: "Head",
  28907. image: {
  28908. source: "./media/characters/sinja/head.svg"
  28909. }
  28910. },
  28911. slit: {
  28912. height: math.unit(0.8, "feet"),
  28913. name: "Slit",
  28914. image: {
  28915. source: "./media/characters/sinja/slit.svg"
  28916. }
  28917. },
  28918. },
  28919. [
  28920. {
  28921. name: "Normal",
  28922. height: math.unit(2.3, "meters")
  28923. },
  28924. {
  28925. name: "Macro",
  28926. height: math.unit(91, "meters"),
  28927. default: true
  28928. },
  28929. {
  28930. name: "Megamacro",
  28931. height: math.unit(91440, "meters")
  28932. },
  28933. {
  28934. name: "Gigamacro",
  28935. height: math.unit(60960000, "meters")
  28936. },
  28937. {
  28938. name: "Teramacro",
  28939. height: math.unit(9144000000, "meters")
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28945. {
  28946. front: {
  28947. height: math.unit(1.7, "meters"),
  28948. weight: math.unit(130, "lb"),
  28949. name: "Front",
  28950. image: {
  28951. source: "./media/characters/kyu/front.svg",
  28952. extra: 415 / 395,
  28953. bottom: 5 / 420
  28954. }
  28955. },
  28956. head: {
  28957. height: math.unit(1.75, "feet"),
  28958. name: "Head",
  28959. image: {
  28960. source: "./media/characters/kyu/head.svg"
  28961. }
  28962. },
  28963. foot: {
  28964. height: math.unit(0.81, "feet"),
  28965. name: "Foot",
  28966. image: {
  28967. source: "./media/characters/kyu/foot.svg"
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Normal",
  28974. height: math.unit(1.7, "meters")
  28975. },
  28976. {
  28977. name: "Macro",
  28978. height: math.unit(131, "feet"),
  28979. default: true
  28980. },
  28981. {
  28982. name: "Megamacro",
  28983. height: math.unit(91440, "meters")
  28984. },
  28985. {
  28986. name: "Gigamacro",
  28987. height: math.unit(60960000, "meters")
  28988. },
  28989. {
  28990. name: "Teramacro",
  28991. height: math.unit(9144000000, "meters")
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(7 + 1 / 12, "feet"),
  29000. weight: math.unit(250, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/joey/front.svg",
  29004. extra: 1791 / 1537,
  29005. bottom: 28 / 1816
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Micro",
  29012. height: math.unit(3, "inches")
  29013. },
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(7 + 1 / 12, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(165, "cm"),
  29026. weight: math.unit(140, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/sam-evans/front.svg",
  29030. extra: 3417 / 3230,
  29031. bottom: 41.3 / 3417
  29032. }
  29033. },
  29034. frontSixTails: {
  29035. height: math.unit(165, "cm"),
  29036. weight: math.unit(140, "lb"),
  29037. name: "Front-six-tails",
  29038. image: {
  29039. source: "./media/characters/sam-evans/front-six-tails.svg",
  29040. extra: 3417 / 3230,
  29041. bottom: 41.3 / 3417
  29042. }
  29043. },
  29044. back: {
  29045. height: math.unit(165, "cm"),
  29046. weight: math.unit(140, "lb"),
  29047. name: "Back",
  29048. image: {
  29049. source: "./media/characters/sam-evans/back.svg",
  29050. extra: 3227 / 3032,
  29051. bottom: 6.8 / 3234
  29052. }
  29053. },
  29054. face: {
  29055. height: math.unit(0.68, "feet"),
  29056. name: "Face",
  29057. image: {
  29058. source: "./media/characters/sam-evans/face.svg"
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(165, "cm"),
  29066. default: true
  29067. },
  29068. {
  29069. name: "Macro",
  29070. height: math.unit(100, "meters")
  29071. },
  29072. {
  29073. name: "Macro+",
  29074. height: math.unit(800, "meters")
  29075. },
  29076. {
  29077. name: "Macro++",
  29078. height: math.unit(3, "km")
  29079. },
  29080. {
  29081. name: "Macro+++",
  29082. height: math.unit(30, "km")
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(10, "feet"),
  29091. weight: math.unit(750, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/juliet-a/front.svg",
  29095. extra: 1766 / 1720,
  29096. bottom: 43 / 1809
  29097. }
  29098. },
  29099. back: {
  29100. height: math.unit(10, "feet"),
  29101. weight: math.unit(750, "lb"),
  29102. name: "Back",
  29103. image: {
  29104. source: "./media/characters/juliet-a/back.svg",
  29105. extra: 1781 / 1734,
  29106. bottom: 35 / 1810,
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(10, "feet"),
  29114. default: true
  29115. },
  29116. {
  29117. name: "Dragon Form",
  29118. height: math.unit(250, "feet")
  29119. },
  29120. {
  29121. name: "Macro",
  29122. height: math.unit(1000, "feet")
  29123. },
  29124. {
  29125. name: "Megamacro",
  29126. height: math.unit(10000, "feet")
  29127. }
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29132. {
  29133. regular: {
  29134. height: math.unit(7 + 3 / 12, "feet"),
  29135. weight: math.unit(260, "lb"),
  29136. name: "Regular",
  29137. image: {
  29138. source: "./media/characters/wild/regular.svg",
  29139. extra: 97.45 / 92,
  29140. bottom: 6.8 / 104.3
  29141. }
  29142. },
  29143. biggums: {
  29144. height: math.unit(8 + 6 / 12, "feet"),
  29145. weight: math.unit(425, "lb"),
  29146. name: "Biggums",
  29147. image: {
  29148. source: "./media/characters/wild/biggums.svg",
  29149. extra: 97.45 / 92,
  29150. bottom: 7.5 / 132.34
  29151. }
  29152. },
  29153. mawRegular: {
  29154. height: math.unit(1.24, "feet"),
  29155. name: "Maw (Regular)",
  29156. image: {
  29157. source: "./media/characters/wild/maw.svg"
  29158. }
  29159. },
  29160. mawBiggums: {
  29161. height: math.unit(1.47, "feet"),
  29162. name: "Maw (Biggums)",
  29163. image: {
  29164. source: "./media/characters/wild/maw.svg"
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(7 + 3 / 12, "feet"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29178. {
  29179. front: {
  29180. height: math.unit(2.5, "meters"),
  29181. weight: math.unit(200, "kg"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/vidar/front.svg",
  29185. extra: 2994 / 2795,
  29186. bottom: 56 / 3061
  29187. }
  29188. },
  29189. back: {
  29190. height: math.unit(2.5, "meters"),
  29191. weight: math.unit(200, "kg"),
  29192. name: "Back",
  29193. image: {
  29194. source: "./media/characters/vidar/back.svg",
  29195. extra: 3131 / 2928,
  29196. bottom: 13.5 / 3141.5
  29197. }
  29198. },
  29199. feral: {
  29200. height: math.unit(2.5, "meters"),
  29201. weight: math.unit(2000, "kg"),
  29202. name: "Feral",
  29203. image: {
  29204. source: "./media/characters/vidar/feral.svg",
  29205. extra: 2790 / 1765,
  29206. bottom: 6 / 2796
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Normal",
  29213. height: math.unit(2.5, "meters"),
  29214. default: true
  29215. },
  29216. {
  29217. name: "Macro",
  29218. height: math.unit(100, "meters")
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(5 + 9 / 12, "feet"),
  29227. weight: math.unit(120, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/ash/front.svg",
  29231. extra: 2189 / 1961,
  29232. bottom: 5.2 / 2194
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Normal",
  29239. height: math.unit(5 + 9 / 12, "feet"),
  29240. default: true
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(9, "feet"),
  29249. weight: math.unit(10000, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/gygabite/front.svg",
  29253. bottom: 31.7 / 537.8,
  29254. extra: 505 / 370
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(9, "feet"),
  29262. default: true
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(12, "feet"),
  29271. weight: math.unit(4000, "lb"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/p0tat0/front.svg",
  29275. extra: 1065 / 921,
  29276. bottom: 55.7 / 1121.25
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(12, "feet"),
  29284. default: true
  29285. },
  29286. ]
  29287. ))
  29288. characterMakers.push(() => makeCharacter(
  29289. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29290. {
  29291. side: {
  29292. height: math.unit(6.5, "feet"),
  29293. weight: math.unit(800, "lb"),
  29294. name: "Side",
  29295. image: {
  29296. source: "./media/characters/dusk/side.svg",
  29297. extra: 615 / 373,
  29298. bottom: 53 / 664
  29299. }
  29300. },
  29301. sitting: {
  29302. height: math.unit(7, "feet"),
  29303. weight: math.unit(800, "lb"),
  29304. name: "Sitting",
  29305. image: {
  29306. source: "./media/characters/dusk/sitting.svg",
  29307. extra: 753 / 425,
  29308. bottom: 33 / 774
  29309. }
  29310. },
  29311. head: {
  29312. height: math.unit(6.1, "feet"),
  29313. name: "Head",
  29314. image: {
  29315. source: "./media/characters/dusk/head.svg"
  29316. }
  29317. },
  29318. },
  29319. [
  29320. {
  29321. name: "Normal",
  29322. height: math.unit(7, "feet"),
  29323. default: true
  29324. },
  29325. ]
  29326. ))
  29327. characterMakers.push(() => makeCharacter(
  29328. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29329. {
  29330. front: {
  29331. height: math.unit(15, "feet"),
  29332. weight: math.unit(7000, "lb"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/jay-direwolf/front.svg",
  29336. extra: 1810 / 1732,
  29337. bottom: 66 / 1892
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Normal",
  29344. height: math.unit(15, "feet"),
  29345. default: true
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(4 + 9 / 12, "feet"),
  29354. weight: math.unit(130, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/anchovie/front.svg",
  29358. extra: 382 / 350,
  29359. bottom: 25 / 409
  29360. }
  29361. },
  29362. back: {
  29363. height: math.unit(4 + 9 / 12, "feet"),
  29364. weight: math.unit(130, "lb"),
  29365. name: "Back",
  29366. image: {
  29367. source: "./media/characters/anchovie/back.svg",
  29368. extra: 385 / 352,
  29369. bottom: 16.6 / 402
  29370. }
  29371. },
  29372. frontDressed: {
  29373. height: math.unit(4 + 9 / 12, "feet"),
  29374. weight: math.unit(130, "lb"),
  29375. name: "Front (Dressed)",
  29376. image: {
  29377. source: "./media/characters/anchovie/front-dressed.svg",
  29378. extra: 382 / 350,
  29379. bottom: 25 / 409
  29380. }
  29381. },
  29382. backDressed: {
  29383. height: math.unit(4 + 9 / 12, "feet"),
  29384. weight: math.unit(130, "lb"),
  29385. name: "Back (Dressed)",
  29386. image: {
  29387. source: "./media/characters/anchovie/back-dressed.svg",
  29388. extra: 385 / 352,
  29389. bottom: 16.6 / 402
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Micro",
  29396. height: math.unit(6.4, "inches")
  29397. },
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(4 + 9 / 12, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(2, "meters"),
  29410. weight: math.unit(180, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/acidrenamon/front.svg",
  29414. extra: 987 / 890,
  29415. bottom: 22.8 / 1009
  29416. }
  29417. },
  29418. back: {
  29419. height: math.unit(2, "meters"),
  29420. weight: math.unit(180, "lb"),
  29421. name: "Back",
  29422. image: {
  29423. source: "./media/characters/acidrenamon/back.svg",
  29424. extra: 983 / 891,
  29425. bottom: 8.4 / 992
  29426. }
  29427. },
  29428. head: {
  29429. height: math.unit(1.92, "feet"),
  29430. name: "Head",
  29431. image: {
  29432. source: "./media/characters/acidrenamon/head.svg"
  29433. }
  29434. },
  29435. rump: {
  29436. height: math.unit(1.72, "feet"),
  29437. name: "Rump",
  29438. image: {
  29439. source: "./media/characters/acidrenamon/rump.svg"
  29440. }
  29441. },
  29442. tail: {
  29443. height: math.unit(4.2, "feet"),
  29444. name: "Tail",
  29445. image: {
  29446. source: "./media/characters/acidrenamon/tail.svg"
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(2, "meters"),
  29454. default: true
  29455. },
  29456. {
  29457. name: "Minimacro",
  29458. height: math.unit(7, "meters")
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(200, "meters")
  29463. },
  29464. {
  29465. name: "Gigamacro",
  29466. height: math.unit(0.2, "earths")
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(152, "feet"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/kenzie-lee/front.svg",
  29478. extra: 1869/1774,
  29479. bottom: 128/1997
  29480. }
  29481. },
  29482. side: {
  29483. height: math.unit(86, "feet"),
  29484. name: "Side",
  29485. image: {
  29486. source: "./media/characters/kenzie-lee/side.svg",
  29487. extra: 930/815,
  29488. bottom: 177/1107
  29489. }
  29490. },
  29491. paw: {
  29492. height: math.unit(15, "feet"),
  29493. name: "Paw",
  29494. image: {
  29495. source: "./media/characters/kenzie-lee/paw.svg"
  29496. }
  29497. },
  29498. },
  29499. [
  29500. {
  29501. name: "Kenzie Flea",
  29502. height: math.unit(2, "mm"),
  29503. default: true
  29504. },
  29505. {
  29506. name: "Micro",
  29507. height: math.unit(2, "inches")
  29508. },
  29509. {
  29510. name: "Normal",
  29511. height: math.unit(152, "feet")
  29512. },
  29513. {
  29514. name: "Megamacro",
  29515. height: math.unit(7, "miles")
  29516. },
  29517. {
  29518. name: "Gigamacro",
  29519. height: math.unit(8000, "miles")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(6, "feet"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/withers/front.svg",
  29531. extra: 1935/1760,
  29532. bottom: 72/2007
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(6, "feet"),
  29537. name: "Back",
  29538. image: {
  29539. source: "./media/characters/withers/back.svg",
  29540. extra: 1944/1792,
  29541. bottom: 12/1956
  29542. }
  29543. },
  29544. dressed: {
  29545. height: math.unit(6, "feet"),
  29546. name: "Dressed",
  29547. image: {
  29548. source: "./media/characters/withers/dressed.svg",
  29549. extra: 1937/1765,
  29550. bottom: 73/2010
  29551. }
  29552. },
  29553. phase1: {
  29554. height: math.unit(1.1, "feet"),
  29555. name: "Phase 1",
  29556. image: {
  29557. source: "./media/characters/withers/phase-1.svg",
  29558. extra: 1885/1232,
  29559. bottom: 0/1885
  29560. }
  29561. },
  29562. phase2: {
  29563. height: math.unit(1.05, "feet"),
  29564. name: "Phase 2",
  29565. image: {
  29566. source: "./media/characters/withers/phase-2.svg",
  29567. extra: 1792/1090,
  29568. bottom: 0/1792
  29569. }
  29570. },
  29571. partyWipe: {
  29572. height: math.unit(1.1, "feet"),
  29573. name: "Party Wipe",
  29574. image: {
  29575. source: "./media/characters/withers/party-wipe.svg",
  29576. extra: 1864/1207,
  29577. bottom: 0/1864
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Macro",
  29584. height: math.unit(167, "feet"),
  29585. default: true
  29586. },
  29587. {
  29588. name: "Megamacro",
  29589. height: math.unit(15, "miles")
  29590. }
  29591. ]
  29592. ))
  29593. characterMakers.push(() => makeCharacter(
  29594. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29595. {
  29596. front: {
  29597. height: math.unit(6 + 7 / 12, "feet"),
  29598. weight: math.unit(250, "lb"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/nemoskii/front.svg",
  29602. extra: 2270 / 1734,
  29603. bottom: 86 / 2354
  29604. }
  29605. },
  29606. back: {
  29607. height: math.unit(6 + 7 / 12, "feet"),
  29608. weight: math.unit(250, "lb"),
  29609. name: "Back",
  29610. image: {
  29611. source: "./media/characters/nemoskii/back.svg",
  29612. extra: 1845 / 1788,
  29613. bottom: 10.5 / 1852
  29614. }
  29615. },
  29616. head: {
  29617. height: math.unit(1.31, "feet"),
  29618. name: "Head",
  29619. image: {
  29620. source: "./media/characters/nemoskii/head.svg"
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Micro",
  29627. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29628. },
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(6 + 7 / 12, "feet"),
  29632. default: true
  29633. },
  29634. {
  29635. name: "Macro",
  29636. height: math.unit((6 + 7 / 12) * 150, "feet")
  29637. },
  29638. {
  29639. name: "Macro+",
  29640. height: math.unit((6 + 7 / 12) * 500, "feet")
  29641. },
  29642. {
  29643. name: "Megamacro",
  29644. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(1, "mile"),
  29653. weight: math.unit(265261.9, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/shui/front.svg",
  29657. extra: 1633 / 1564,
  29658. bottom: 91.5 / 1726
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Macro",
  29665. height: math.unit(1, "mile"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(12 + 6 / 12, "feet"),
  29675. weight: math.unit(1342, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/arokh-takakura/front.svg",
  29679. extra: 1089 / 1043,
  29680. bottom: 77.4 / 1176.7
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(12 + 6 / 12, "feet"),
  29685. weight: math.unit(1342, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/arokh-takakura/back.svg",
  29689. extra: 1046 / 1019,
  29690. bottom: 102 / 1150
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Big",
  29697. height: math.unit(12 + 6 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(5 + 6 / 12, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/theo/front.svg",
  29711. extra: 1184 / 1131,
  29712. bottom: 7.4 / 1191
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Micro",
  29719. height: math.unit(5, "inches")
  29720. },
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(5 + 6 / 12, "feet"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(5 + 9 / 12, "feet"),
  29733. weight: math.unit(130, "lb"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/cecelia-swift/front.svg",
  29737. extra: 502 / 484,
  29738. bottom: 23 / 523
  29739. }
  29740. },
  29741. back: {
  29742. height: math.unit(5 + 9 / 12, "feet"),
  29743. weight: math.unit(130, "lb"),
  29744. name: "Back",
  29745. image: {
  29746. source: "./media/characters/cecelia-swift/back.svg",
  29747. extra: 499 / 485,
  29748. bottom: 12 / 511
  29749. }
  29750. },
  29751. head: {
  29752. height: math.unit(0.90, "feet"),
  29753. name: "Head",
  29754. image: {
  29755. source: "./media/characters/cecelia-swift/head.svg"
  29756. }
  29757. },
  29758. rump: {
  29759. height: math.unit(1.75, "feet"),
  29760. name: "Rump",
  29761. image: {
  29762. source: "./media/characters/cecelia-swift/rump.svg"
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Normal",
  29769. height: math.unit(5 + 9 / 12, "feet"),
  29770. default: true
  29771. },
  29772. {
  29773. name: "Big",
  29774. height: math.unit(50, "feet")
  29775. },
  29776. {
  29777. name: "Macro",
  29778. height: math.unit(100, "feet")
  29779. },
  29780. {
  29781. name: "Macro+",
  29782. height: math.unit(500, "feet")
  29783. },
  29784. {
  29785. name: "Macro++",
  29786. height: math.unit(1000, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(6, "feet"),
  29795. weight: math.unit(150, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/kaunan/front.svg",
  29799. extra: 2890 / 2523,
  29800. bottom: 49 / 2939
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Macro",
  29807. height: math.unit(150, "feet"),
  29808. default: true
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29814. {
  29815. dressed: {
  29816. height: math.unit(175, "cm"),
  29817. weight: math.unit(60, "kg"),
  29818. name: "Dressed",
  29819. image: {
  29820. source: "./media/characters/fei/dressed.svg",
  29821. extra: 1402/1278,
  29822. bottom: 27/1429
  29823. }
  29824. },
  29825. nude: {
  29826. height: math.unit(175, "cm"),
  29827. weight: math.unit(60, "kg"),
  29828. name: "Nude",
  29829. image: {
  29830. source: "./media/characters/fei/nude.svg",
  29831. extra: 1402/1278,
  29832. bottom: 27/1429
  29833. }
  29834. },
  29835. heels: {
  29836. height: math.unit(0.466, "feet"),
  29837. name: "Heels",
  29838. image: {
  29839. source: "./media/characters/fei/heels.svg",
  29840. extra: 156/152,
  29841. bottom: 28/184
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Mortal",
  29848. height: math.unit(175, "cm")
  29849. },
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(3500, "m")
  29853. },
  29854. {
  29855. name: "Stroll",
  29856. height: math.unit(18.4, "km"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Showoff",
  29861. height: math.unit(175, "km")
  29862. },
  29863. ]
  29864. ))
  29865. characterMakers.push(() => makeCharacter(
  29866. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29867. {
  29868. front: {
  29869. height: math.unit(7, "feet"),
  29870. weight: math.unit(1000, "kg"),
  29871. name: "Front",
  29872. image: {
  29873. source: "./media/characters/edrax/front.svg",
  29874. extra: 2838 / 2550,
  29875. bottom: 130 / 2968
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Small",
  29882. height: math.unit(7, "feet")
  29883. },
  29884. {
  29885. name: "Normal",
  29886. height: math.unit(1500, "meters")
  29887. },
  29888. {
  29889. name: "Mega",
  29890. height: math.unit(12000000, "km"),
  29891. default: true
  29892. },
  29893. {
  29894. name: "Megamacro",
  29895. height: math.unit(10600000, "lightyears")
  29896. },
  29897. {
  29898. name: "Hypermacro",
  29899. height: math.unit(256, "yottameters")
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29905. {
  29906. front: {
  29907. height: math.unit(10, "feet"),
  29908. weight: math.unit(750, "lb"),
  29909. name: "Front",
  29910. image: {
  29911. source: "./media/characters/clove/front.svg",
  29912. extra: 1918/1751,
  29913. bottom: 52/1970
  29914. }
  29915. },
  29916. back: {
  29917. height: math.unit(10, "feet"),
  29918. weight: math.unit(750, "lb"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/clove/back.svg",
  29922. extra: 1912/1747,
  29923. bottom: 50/1962
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "Normal",
  29930. height: math.unit(10, "feet"),
  29931. default: true
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29937. {
  29938. front: {
  29939. height: math.unit(4, "feet"),
  29940. weight: math.unit(50, "lb"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/alex-rabbit/front.svg",
  29944. extra: 507 / 458,
  29945. bottom: 18.5 / 527
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(4, "feet"),
  29950. weight: math.unit(50, "lb"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/alex-rabbit/back.svg",
  29954. extra: 502 / 460,
  29955. bottom: 18.9 / 521
  29956. }
  29957. },
  29958. },
  29959. [
  29960. {
  29961. name: "Normal",
  29962. height: math.unit(4, "feet"),
  29963. default: true
  29964. },
  29965. ]
  29966. ))
  29967. characterMakers.push(() => makeCharacter(
  29968. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29969. {
  29970. front: {
  29971. height: math.unit(1 + 3 / 12, "feet"),
  29972. weight: math.unit(80, "lb"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/zander-rose/front.svg",
  29976. extra: 916 / 797,
  29977. bottom: 17 / 933
  29978. }
  29979. },
  29980. back: {
  29981. height: math.unit(1 + 3 / 12, "feet"),
  29982. weight: math.unit(80, "lb"),
  29983. name: "Back",
  29984. image: {
  29985. source: "./media/characters/zander-rose/back.svg",
  29986. extra: 903 / 779,
  29987. bottom: 31 / 934
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(1 + 3 / 12, "feet"),
  29995. default: true
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30001. {
  30002. anthro: {
  30003. height: math.unit(6, "feet"),
  30004. weight: math.unit(150, "lb"),
  30005. name: "Anthro",
  30006. image: {
  30007. source: "./media/characters/razz/anthro.svg",
  30008. extra: 1437 / 1343,
  30009. bottom: 48 / 1485
  30010. }
  30011. },
  30012. feral: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Feral",
  30016. image: {
  30017. source: "./media/characters/razz/feral.svg",
  30018. extra: 2569 / 1385,
  30019. bottom: 95 / 2664
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(6, "feet"),
  30027. default: true
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(9 + 4 / 12, "feet"),
  30036. weight: math.unit(500, "lb"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/morrigan/front.svg",
  30040. extra: 2707 / 2579,
  30041. bottom: 156 / 2863
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(9 + 4 / 12, "feet"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(5, "stories"),
  30058. weight: math.unit(4000, "lb"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/jenene/front.svg",
  30062. extra: 1780 / 1710,
  30063. bottom: 57 / 1837
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Normal",
  30070. height: math.unit(5, "stories"),
  30071. default: true
  30072. },
  30073. ]
  30074. ))
  30075. characterMakers.push(() => makeCharacter(
  30076. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30077. {
  30078. taurSfw: {
  30079. height: math.unit(10, "meters"),
  30080. weight: math.unit(17500, "kg"),
  30081. name: "Taur",
  30082. image: {
  30083. source: "./media/characters/faey/taur-sfw.svg",
  30084. extra: 1200 / 968,
  30085. bottom: 41 / 1241
  30086. }
  30087. },
  30088. chestmaw: {
  30089. height: math.unit(2.01, "meters"),
  30090. name: "Chestmaw",
  30091. image: {
  30092. source: "./media/characters/faey/chestmaw.svg"
  30093. }
  30094. },
  30095. foot: {
  30096. height: math.unit(2.43, "meters"),
  30097. name: "Foot",
  30098. image: {
  30099. source: "./media/characters/faey/foot.svg"
  30100. }
  30101. },
  30102. jaws: {
  30103. height: math.unit(1.66, "meters"),
  30104. name: "Jaws",
  30105. image: {
  30106. source: "./media/characters/faey/jaws.svg"
  30107. }
  30108. },
  30109. tongues: {
  30110. height: math.unit(2.01, "meters"),
  30111. name: "Tongues",
  30112. image: {
  30113. source: "./media/characters/faey/tongues.svg"
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Small",
  30120. height: math.unit(10, "meters"),
  30121. default: true
  30122. },
  30123. {
  30124. name: "Big",
  30125. height: math.unit(500000, "km")
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(7, "feet"),
  30134. weight: math.unit(275, "lb"),
  30135. name: "Front",
  30136. image: {
  30137. source: "./media/characters/roku/front.svg",
  30138. extra: 903 / 878,
  30139. bottom: 37 / 940
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Normal",
  30146. height: math.unit(7, "feet"),
  30147. default: true
  30148. },
  30149. {
  30150. name: "Macro",
  30151. height: math.unit(500, "feet")
  30152. },
  30153. {
  30154. name: "Megamacro",
  30155. height: math.unit(200, "miles")
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(6 + 2 / 12, "feet"),
  30164. weight: math.unit(150, "lb"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/lira/front.svg",
  30168. extra: 1727 / 1605,
  30169. bottom: 26 / 1753
  30170. }
  30171. },
  30172. back: {
  30173. height: math.unit(6 + 2 / 12, "feet"),
  30174. weight: math.unit(150, "lb"),
  30175. name: "Back",
  30176. image: {
  30177. source: "./media/characters/lira/back.svg",
  30178. extra: 1713/1621,
  30179. bottom: 20/1733
  30180. }
  30181. },
  30182. hand: {
  30183. height: math.unit(0.75, "feet"),
  30184. name: "Hand",
  30185. image: {
  30186. source: "./media/characters/lira/hand.svg"
  30187. }
  30188. },
  30189. maw: {
  30190. height: math.unit(0.65, "feet"),
  30191. name: "Maw",
  30192. image: {
  30193. source: "./media/characters/lira/maw.svg"
  30194. }
  30195. },
  30196. pawDigi: {
  30197. height: math.unit(1.6, "feet"),
  30198. name: "Paw Digi",
  30199. image: {
  30200. source: "./media/characters/lira/paw-digi.svg"
  30201. }
  30202. },
  30203. pawPlanti: {
  30204. height: math.unit(1.4, "feet"),
  30205. name: "Paw Planti",
  30206. image: {
  30207. source: "./media/characters/lira/paw-planti.svg"
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Normal",
  30214. height: math.unit(6 + 2 / 12, "feet"),
  30215. default: true
  30216. },
  30217. {
  30218. name: "Macro",
  30219. height: math.unit(100, "feet")
  30220. },
  30221. {
  30222. name: "Macro²",
  30223. height: math.unit(1600, "feet")
  30224. },
  30225. {
  30226. name: "Planetary",
  30227. height: math.unit(20, "earths")
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(6, "feet"),
  30236. weight: math.unit(150, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/hadjet/front.svg",
  30240. extra: 1480 / 1346,
  30241. bottom: 26 / 1506
  30242. }
  30243. },
  30244. frontNsfw: {
  30245. height: math.unit(6, "feet"),
  30246. weight: math.unit(150, "lb"),
  30247. name: "Front (NSFW)",
  30248. image: {
  30249. source: "./media/characters/hadjet/front-nsfw.svg",
  30250. extra: 1440 / 1358,
  30251. bottom: 52 / 1492
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Macro",
  30258. height: math.unit(10, "stories"),
  30259. default: true
  30260. },
  30261. {
  30262. name: "Megamacro",
  30263. height: math.unit(1.5, "miles")
  30264. },
  30265. {
  30266. name: "Megamacro+",
  30267. height: math.unit(5, "miles")
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30273. {
  30274. side: {
  30275. height: math.unit(106, "feet"),
  30276. weight: math.unit(500, "tonnes"),
  30277. name: "Side",
  30278. image: {
  30279. source: "./media/characters/kodran/side.svg",
  30280. extra: 553 / 480,
  30281. bottom: 33 / 586
  30282. }
  30283. },
  30284. front: {
  30285. height: math.unit(132, "feet"),
  30286. weight: math.unit(500, "tonnes"),
  30287. name: "Front",
  30288. image: {
  30289. source: "./media/characters/kodran/front.svg",
  30290. extra: 667 / 643,
  30291. bottom: 42 / 709
  30292. }
  30293. },
  30294. flying: {
  30295. height: math.unit(350, "feet"),
  30296. weight: math.unit(500, "tonnes"),
  30297. name: "Flying",
  30298. image: {
  30299. source: "./media/characters/kodran/flying.svg"
  30300. }
  30301. },
  30302. foot: {
  30303. height: math.unit(33, "feet"),
  30304. name: "Foot",
  30305. image: {
  30306. source: "./media/characters/kodran/foot.svg"
  30307. }
  30308. },
  30309. footFront: {
  30310. height: math.unit(19, "feet"),
  30311. name: "Foot (Front)",
  30312. image: {
  30313. source: "./media/characters/kodran/foot-front.svg",
  30314. extra: 261 / 261,
  30315. bottom: 91 / 352
  30316. }
  30317. },
  30318. headFront: {
  30319. height: math.unit(53, "feet"),
  30320. name: "Head (Front)",
  30321. image: {
  30322. source: "./media/characters/kodran/head-front.svg"
  30323. }
  30324. },
  30325. headSide: {
  30326. height: math.unit(65, "feet"),
  30327. name: "Head (Side)",
  30328. image: {
  30329. source: "./media/characters/kodran/head-side.svg"
  30330. }
  30331. },
  30332. throat: {
  30333. height: math.unit(79, "feet"),
  30334. name: "Throat",
  30335. image: {
  30336. source: "./media/characters/kodran/throat.svg"
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Large",
  30343. height: math.unit(106, "feet"),
  30344. default: true
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30350. {
  30351. side: {
  30352. height: math.unit(11, "feet"),
  30353. weight: math.unit(150, "lb"),
  30354. name: "Side",
  30355. image: {
  30356. source: "./media/characters/pyxaron/side.svg",
  30357. extra: 305 / 195,
  30358. bottom: 17 / 322
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(11, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(6, "feet"),
  30375. weight: math.unit(150, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/meep/front.svg",
  30379. extra: 88 / 80,
  30380. bottom: 6 / 94
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Fun Sized",
  30387. height: math.unit(2, "inches"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "Friend Sized",
  30392. height: math.unit(8, "inches")
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(15, "feet"),
  30401. weight: math.unit(2500, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/holly-rabbit/front.svg",
  30405. extra: 1433 / 1233,
  30406. bottom: 125 / 1558
  30407. }
  30408. },
  30409. dick: {
  30410. height: math.unit(4.6, "feet"),
  30411. name: "Dick",
  30412. image: {
  30413. source: "./media/characters/holly-rabbit/dick.svg"
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(15, "feet"),
  30421. default: true
  30422. },
  30423. {
  30424. name: "Macro",
  30425. height: math.unit(250, "feet")
  30426. },
  30427. {
  30428. name: "Macro+",
  30429. height: math.unit(2500, "feet")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30435. {
  30436. front: {
  30437. height: math.unit(3.02, "meters"),
  30438. weight: math.unit(500, "kg"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/drena/front.svg",
  30442. extra: 282 / 243,
  30443. bottom: 8 / 290
  30444. }
  30445. },
  30446. side: {
  30447. height: math.unit(3.02, "meters"),
  30448. weight: math.unit(500, "kg"),
  30449. name: "Side",
  30450. image: {
  30451. source: "./media/characters/drena/side.svg",
  30452. extra: 280 / 245,
  30453. bottom: 10 / 290
  30454. }
  30455. },
  30456. back: {
  30457. height: math.unit(3.02, "meters"),
  30458. weight: math.unit(500, "kg"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/drena/back.svg",
  30462. extra: 278 / 243,
  30463. bottom: 2 / 280
  30464. }
  30465. },
  30466. foot: {
  30467. height: math.unit(0.75, "meters"),
  30468. name: "Foot",
  30469. image: {
  30470. source: "./media/characters/drena/foot.svg"
  30471. }
  30472. },
  30473. maw: {
  30474. height: math.unit(0.82, "meters"),
  30475. name: "Maw",
  30476. image: {
  30477. source: "./media/characters/drena/maw.svg"
  30478. }
  30479. },
  30480. eating: {
  30481. height: math.unit(0.75, "meters"),
  30482. name: "Eating",
  30483. image: {
  30484. source: "./media/characters/drena/eating.svg"
  30485. }
  30486. },
  30487. rump: {
  30488. height: math.unit(0.93, "meters"),
  30489. name: "Rump",
  30490. image: {
  30491. source: "./media/characters/drena/rump.svg"
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(3.02, "meters"),
  30499. default: true
  30500. },
  30501. ]
  30502. ))
  30503. characterMakers.push(() => makeCharacter(
  30504. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30505. {
  30506. front: {
  30507. height: math.unit(6 + 4 / 12, "feet"),
  30508. weight: math.unit(250, "lb"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/remmyzilla/front.svg",
  30512. extra: 4033 / 3588,
  30513. bottom: 123 / 4156
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(6 + 4 / 12, "feet"),
  30518. weight: math.unit(250, "lb"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/remmyzilla/back.svg",
  30522. extra: 2687 / 2555,
  30523. bottom: 48 / 2735
  30524. }
  30525. },
  30526. paw: {
  30527. height: math.unit(1.73, "feet"),
  30528. name: "Paw",
  30529. image: {
  30530. source: "./media/characters/remmyzilla/paw.svg"
  30531. },
  30532. extraAttributes: {
  30533. "toeSize": {
  30534. name: "Toe Size",
  30535. power: 2,
  30536. type: "area",
  30537. base: math.unit(0.0035, "m^2")
  30538. },
  30539. "padSize": {
  30540. name: "Pad Size",
  30541. power: 2,
  30542. type: "area",
  30543. base: math.unit(0.015, "m^2")
  30544. },
  30545. "pawsize": {
  30546. name: "Paw Size",
  30547. power: 2,
  30548. type: "area",
  30549. base: math.unit(0.072, "m^2")
  30550. },
  30551. }
  30552. },
  30553. maw: {
  30554. height: math.unit(1.73, "feet"),
  30555. name: "Maw",
  30556. image: {
  30557. source: "./media/characters/remmyzilla/maw.svg"
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Normal",
  30564. height: math.unit(6 + 4 / 12, "feet")
  30565. },
  30566. {
  30567. name: "Minimacro",
  30568. height: math.unit(12 + 8 / 12, "feet")
  30569. },
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(640, "feet"),
  30573. default: true
  30574. },
  30575. {
  30576. name: "Megamacro",
  30577. height: math.unit(6400, "feet")
  30578. },
  30579. {
  30580. name: "Gigamacro",
  30581. height: math.unit(64000, "miles")
  30582. },
  30583. ]
  30584. ))
  30585. characterMakers.push(() => makeCharacter(
  30586. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30587. {
  30588. front: {
  30589. height: math.unit(2.5, "meters"),
  30590. weight: math.unit(300, "lb"),
  30591. name: "Front",
  30592. image: {
  30593. source: "./media/characters/lawrence/front.svg",
  30594. extra: 357 / 335,
  30595. bottom: 30 / 387
  30596. }
  30597. },
  30598. back: {
  30599. height: math.unit(2.5, "meters"),
  30600. weight: math.unit(300, "lb"),
  30601. name: "Back",
  30602. image: {
  30603. source: "./media/characters/lawrence/back.svg",
  30604. extra: 357 / 338,
  30605. bottom: 16 / 373
  30606. }
  30607. },
  30608. head: {
  30609. height: math.unit(0.9, "meter"),
  30610. name: "Head",
  30611. image: {
  30612. source: "./media/characters/lawrence/head.svg"
  30613. }
  30614. },
  30615. maw: {
  30616. height: math.unit(0.7, "meter"),
  30617. name: "Maw",
  30618. image: {
  30619. source: "./media/characters/lawrence/maw.svg"
  30620. }
  30621. },
  30622. footBottom: {
  30623. height: math.unit(0.5, "meter"),
  30624. name: "Foot (Bottom)",
  30625. image: {
  30626. source: "./media/characters/lawrence/foot-bottom.svg"
  30627. }
  30628. },
  30629. footTop: {
  30630. height: math.unit(0.5, "meter"),
  30631. name: "Foot (Top)",
  30632. image: {
  30633. source: "./media/characters/lawrence/foot-top.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(2.5, "meters"),
  30641. default: true
  30642. },
  30643. {
  30644. name: "Macro",
  30645. height: math.unit(95, "meters")
  30646. },
  30647. {
  30648. name: "Megamacro",
  30649. height: math.unit(150, "km")
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30655. {
  30656. front: {
  30657. height: math.unit(4.2, "meters"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/sydney/front.svg",
  30661. extra: 1323 / 1277,
  30662. bottom: 111 / 1434
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Normal",
  30669. height: math.unit(4.2, "meters"),
  30670. default: true
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30676. {
  30677. back: {
  30678. height: math.unit(201, "feet"),
  30679. name: "Back",
  30680. image: {
  30681. source: "./media/characters/jessica/back.svg",
  30682. extra: 273 / 259,
  30683. bottom: 7 / 280
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(201, "feet"),
  30691. default: true
  30692. },
  30693. {
  30694. name: "Megamacro",
  30695. height: math.unit(8, "miles")
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30701. {
  30702. side: {
  30703. height: math.unit(5.6, "m"),
  30704. weight: math.unit(8000, "kg"),
  30705. name: "Side",
  30706. image: {
  30707. source: "./media/characters/victoria/side.svg",
  30708. extra: 1542/1229,
  30709. bottom: 124/1666
  30710. }
  30711. },
  30712. maw: {
  30713. height: math.unit(7.14, "feet"),
  30714. name: "Maw",
  30715. image: {
  30716. source: "./media/characters/victoria/maw.svg"
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(5.6, "m"),
  30724. default: true
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30730. {
  30731. front: {
  30732. height: math.unit(5 + 6 / 12, "feet"),
  30733. name: "Front",
  30734. image: {
  30735. source: "./media/characters/cat/front.svg",
  30736. extra: 1449/1295,
  30737. bottom: 34/1483
  30738. },
  30739. form: "cat",
  30740. default: true
  30741. },
  30742. back: {
  30743. height: math.unit(5 + 6 / 12, "feet"),
  30744. name: "Back",
  30745. image: {
  30746. source: "./media/characters/cat/back.svg",
  30747. extra: 1466/1301,
  30748. bottom: 19/1485
  30749. },
  30750. form: "cat"
  30751. },
  30752. taur: {
  30753. height: math.unit(7, "feet"),
  30754. name: "Taur",
  30755. image: {
  30756. source: "./media/characters/cat/taur.svg",
  30757. extra: 1389/1233,
  30758. bottom: 83/1472
  30759. },
  30760. form: "taur",
  30761. default: true
  30762. },
  30763. lucarioFront: {
  30764. height: math.unit(4, "feet"),
  30765. name: "Lucario (Front)",
  30766. image: {
  30767. source: "./media/characters/cat/lucario-front.svg",
  30768. extra: 1149/1019,
  30769. bottom: 84/1233
  30770. },
  30771. form: "lucario",
  30772. default: true
  30773. },
  30774. lucarioBack: {
  30775. height: math.unit(4, "feet"),
  30776. name: "Lucario (Back)",
  30777. image: {
  30778. source: "./media/characters/cat/lucario-back.svg",
  30779. extra: 1190/1059,
  30780. bottom: 33/1223
  30781. },
  30782. form: "lucario"
  30783. },
  30784. megaLucario: {
  30785. height: math.unit(4, "feet"),
  30786. name: "Mega Lucario",
  30787. image: {
  30788. source: "./media/characters/cat/mega-lucario.svg",
  30789. extra: 1515 / 1319,
  30790. bottom: 63 / 1578
  30791. },
  30792. form: "lucario"
  30793. },
  30794. nickit: {
  30795. height: math.unit(2, "feet"),
  30796. name: "Nickit",
  30797. image: {
  30798. source: "./media/characters/cat/nickit.svg",
  30799. extra: 1980 / 1585,
  30800. bottom: 102 / 2082
  30801. },
  30802. form: "nickit",
  30803. default: true
  30804. },
  30805. lopunnyFront: {
  30806. height: math.unit(5, "feet"),
  30807. name: "Lopunny (Front)",
  30808. image: {
  30809. source: "./media/characters/cat/lopunny-front.svg",
  30810. extra: 1782 / 1469,
  30811. bottom: 38 / 1820
  30812. },
  30813. form: "lopunny",
  30814. default: true
  30815. },
  30816. lopunnyBack: {
  30817. height: math.unit(5, "feet"),
  30818. name: "Lopunny (Back)",
  30819. image: {
  30820. source: "./media/characters/cat/lopunny-back.svg",
  30821. extra: 1660 / 1490,
  30822. bottom: 25 / 1685
  30823. },
  30824. form: "lopunny"
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Really small",
  30830. height: math.unit(1, "nm")
  30831. },
  30832. {
  30833. name: "Micro",
  30834. height: math.unit(5, "inches")
  30835. },
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(5 + 6 / 12, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Macro",
  30843. height: math.unit(50, "feet")
  30844. },
  30845. {
  30846. name: "Macro+",
  30847. height: math.unit(150, "feet")
  30848. },
  30849. {
  30850. name: "Megamacro",
  30851. height: math.unit(100, "miles")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(63.4, "meters"),
  30860. weight: math.unit(3.28349e+6, "kilograms"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/kirina-violet/front.svg",
  30864. extra: 2812 / 2725,
  30865. bottom: 0 / 2812
  30866. }
  30867. },
  30868. back: {
  30869. height: math.unit(63.4, "meters"),
  30870. weight: math.unit(3.28349e+6, "kilograms"),
  30871. name: "Back",
  30872. image: {
  30873. source: "./media/characters/kirina-violet/back.svg",
  30874. extra: 2812 / 2725,
  30875. bottom: 0 / 2812
  30876. }
  30877. },
  30878. mouth: {
  30879. height: math.unit(4.35, "meters"),
  30880. name: "Mouth",
  30881. image: {
  30882. source: "./media/characters/kirina-violet/mouth.svg"
  30883. }
  30884. },
  30885. paw: {
  30886. height: math.unit(5.6, "meters"),
  30887. name: "Paw",
  30888. image: {
  30889. source: "./media/characters/kirina-violet/paw.svg"
  30890. }
  30891. },
  30892. tail: {
  30893. height: math.unit(18, "meters"),
  30894. name: "Tail",
  30895. image: {
  30896. source: "./media/characters/kirina-violet/tail.svg"
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Macro",
  30903. height: math.unit(63.4, "meters"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(75, "feet"),
  30913. name: "Front",
  30914. image: {
  30915. source: "./media/characters/cat-gigachu/front.svg",
  30916. extra: 1239/1027,
  30917. bottom: 32/1271
  30918. }
  30919. },
  30920. back: {
  30921. height: math.unit(75, "feet"),
  30922. name: "Back",
  30923. image: {
  30924. source: "./media/characters/cat-gigachu/back.svg",
  30925. extra: 1229/1030,
  30926. bottom: 9/1238
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Dynamax",
  30933. height: math.unit(75, "feet"),
  30934. default: true
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30940. {
  30941. front: {
  30942. height: math.unit(6, "feet"),
  30943. weight: math.unit(150, "lb"),
  30944. name: "Front",
  30945. image: {
  30946. source: "./media/characters/sfaiyan/front.svg",
  30947. extra: 999 / 978,
  30948. bottom: 5 / 1004
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(1.82, "meters")
  30956. },
  30957. {
  30958. name: "Giant",
  30959. height: math.unit(2.27, "km"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(179, "cm"),
  30969. weight: math.unit(100, "kg"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/raunehkeli/front.svg",
  30973. extra: 1934 / 1926,
  30974. bottom: 0 / 1934
  30975. }
  30976. },
  30977. },
  30978. [
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(179, "cm")
  30982. },
  30983. {
  30984. name: "Maximum",
  30985. height: math.unit(575, "meters"),
  30986. default: true
  30987. },
  30988. ]
  30989. ))
  30990. characterMakers.push(() => makeCharacter(
  30991. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30992. {
  30993. front: {
  30994. height: math.unit(6, "feet"),
  30995. weight: math.unit(150, "lb"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30999. extra: 2625 / 2518,
  31000. bottom: 60 / 2685
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(6 + 2 / 12, "feet")
  31008. },
  31009. {
  31010. name: "Macro",
  31011. height: math.unit(1180, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(5 + 6 / 12, "feet"),
  31021. weight: math.unit(108, "lb"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/lilith-zott/front.svg",
  31025. extra: 2510 / 2238,
  31026. bottom: 100 / 2610
  31027. }
  31028. },
  31029. frontDressed: {
  31030. height: math.unit(5 + 6 / 12, "feet"),
  31031. weight: math.unit(108, "lb"),
  31032. name: "Front (Dressed)",
  31033. image: {
  31034. source: "./media/characters/lilith-zott/front-dressed.svg",
  31035. extra: 2510 / 2238,
  31036. bottom: 100 / 2610
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(5 + 6 / 12, "feet")
  31044. },
  31045. {
  31046. name: "Macro",
  31047. height: math.unit(1030, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(6, "feet"),
  31057. weight: math.unit(150, "lb"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31061. extra: 2567 / 2435,
  31062. bottom: 39 / 2606
  31063. }
  31064. },
  31065. frontSuper: {
  31066. height: math.unit(6, "feet"),
  31067. name: "Front (Super)",
  31068. image: {
  31069. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31070. extra: 2567 / 2435,
  31071. bottom: 39 / 2606
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(5 + 10 / 12, "feet")
  31079. },
  31080. {
  31081. name: "Macro",
  31082. height: math.unit(1100, "feet"),
  31083. default: true
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31089. {
  31090. front: {
  31091. height: math.unit(100, "miles"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/sona/front.svg",
  31095. extra: 2433 / 2201,
  31096. bottom: 53 / 2486
  31097. }
  31098. },
  31099. foot: {
  31100. height: math.unit(16.1, "miles"),
  31101. name: "Foot",
  31102. image: {
  31103. source: "./media/characters/sona/foot.svg"
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Macro",
  31110. height: math.unit(100, "miles"),
  31111. default: true
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(6, "feet"),
  31120. weight: math.unit(150, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/bailey/front.svg",
  31124. extra: 1778 / 1724,
  31125. bottom: 30 / 1808
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Micro",
  31132. height: math.unit(4, "inches")
  31133. },
  31134. {
  31135. name: "Normal",
  31136. height: math.unit(5 + 5 / 12, "feet"),
  31137. default: true
  31138. },
  31139. {
  31140. name: "Macro",
  31141. height: math.unit(250, "feet")
  31142. },
  31143. {
  31144. name: "Megamacro",
  31145. height: math.unit(100, "miles")
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31151. {
  31152. front: {
  31153. height: math.unit(5 + 2 / 12, "feet"),
  31154. weight: math.unit(120, "lb"),
  31155. name: "Front",
  31156. image: {
  31157. source: "./media/characters/snaps/front.svg",
  31158. extra: 2370 / 2177,
  31159. bottom: 48 / 2418
  31160. }
  31161. },
  31162. back: {
  31163. height: math.unit(5 + 2 / 12, "feet"),
  31164. weight: math.unit(120, "lb"),
  31165. name: "Back",
  31166. image: {
  31167. source: "./media/characters/snaps/back.svg",
  31168. extra: 2408 / 2258,
  31169. bottom: 15 / 2423
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Micro",
  31176. height: math.unit(9, "inches")
  31177. },
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(5 + 2 / 12, "feet"),
  31181. default: true
  31182. },
  31183. {
  31184. name: "Mini Macro",
  31185. height: math.unit(10, "feet")
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31191. {
  31192. front: {
  31193. height: math.unit(1.8, "meters"),
  31194. weight: math.unit(85, "kg"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/azteck/front.svg",
  31198. extra: 2815 / 2625,
  31199. bottom: 89 / 2904
  31200. }
  31201. },
  31202. back: {
  31203. height: math.unit(1.8, "meters"),
  31204. weight: math.unit(85, "kg"),
  31205. name: "Back",
  31206. image: {
  31207. source: "./media/characters/azteck/back.svg",
  31208. extra: 2856 / 2648,
  31209. bottom: 85 / 2941
  31210. }
  31211. },
  31212. frontDressed: {
  31213. height: math.unit(1.8, "meters"),
  31214. weight: math.unit(85, "kg"),
  31215. name: "Front (Dressed)",
  31216. image: {
  31217. source: "./media/characters/azteck/front-dressed.svg",
  31218. extra: 2147 / 2003,
  31219. bottom: 68 / 2215
  31220. }
  31221. },
  31222. head: {
  31223. height: math.unit(0.47, "meters"),
  31224. weight: math.unit(85, "kg"),
  31225. name: "Head",
  31226. image: {
  31227. source: "./media/characters/azteck/head.svg"
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Bite sized",
  31234. height: math.unit(16, "cm")
  31235. },
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(1.8, "meters"),
  31239. default: true
  31240. },
  31241. ]
  31242. ))
  31243. characterMakers.push(() => makeCharacter(
  31244. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31245. {
  31246. front: {
  31247. height: math.unit(6, "feet"),
  31248. weight: math.unit(150, "lb"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/pidge/front.svg",
  31252. extra: 1936/1820,
  31253. bottom: 0/1936
  31254. }
  31255. },
  31256. back: {
  31257. height: math.unit(6, "feet"),
  31258. weight: math.unit(150, "lb"),
  31259. name: "Back",
  31260. image: {
  31261. source: "./media/characters/pidge/back.svg",
  31262. extra: 1938/1843,
  31263. bottom: 0/1938
  31264. }
  31265. },
  31266. casual: {
  31267. height: math.unit(6, "feet"),
  31268. weight: math.unit(150, "lb"),
  31269. name: "Casual",
  31270. image: {
  31271. source: "./media/characters/pidge/casual.svg",
  31272. extra: 1936/1820,
  31273. bottom: 0/1936
  31274. }
  31275. },
  31276. tech: {
  31277. height: math.unit(6, "feet"),
  31278. weight: math.unit(150, "lb"),
  31279. name: "Tech",
  31280. image: {
  31281. source: "./media/characters/pidge/tech.svg",
  31282. extra: 1802/1682,
  31283. bottom: 0/1802
  31284. }
  31285. },
  31286. head: {
  31287. height: math.unit(1.61, "feet"),
  31288. name: "Head",
  31289. image: {
  31290. source: "./media/characters/pidge/head.svg"
  31291. }
  31292. },
  31293. collar: {
  31294. height: math.unit(0.82, "feet"),
  31295. name: "Collar",
  31296. image: {
  31297. source: "./media/characters/pidge/collar.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(2, "mile"),
  31305. default: true
  31306. },
  31307. {
  31308. name: "PUPPY",
  31309. height: math.unit(20, "miles")
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(6, "feet"),
  31318. weight: math.unit(150, "lb"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/en/front.svg",
  31322. extra: 1697 / 1563,
  31323. bottom: 103 / 1800
  31324. }
  31325. },
  31326. back: {
  31327. height: math.unit(6, "feet"),
  31328. weight: math.unit(150, "lb"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/en/back.svg",
  31332. extra: 1700 / 1570,
  31333. bottom: 51 / 1751
  31334. }
  31335. },
  31336. frontDressed: {
  31337. height: math.unit(6, "feet"),
  31338. weight: math.unit(150, "lb"),
  31339. name: "Front (Dressed)",
  31340. image: {
  31341. source: "./media/characters/en/front-dressed.svg",
  31342. extra: 1697 / 1563,
  31343. bottom: 103 / 1800
  31344. }
  31345. },
  31346. backDressed: {
  31347. height: math.unit(6, "feet"),
  31348. weight: math.unit(150, "lb"),
  31349. name: "Back (Dressed)",
  31350. image: {
  31351. source: "./media/characters/en/back-dressed.svg",
  31352. extra: 1700 / 1570,
  31353. bottom: 51 / 1751
  31354. }
  31355. },
  31356. },
  31357. [
  31358. {
  31359. name: "Macro",
  31360. height: math.unit(210, "feet"),
  31361. default: true
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(6, "feet"),
  31370. weight: math.unit(150, "lb"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/haze-orris/front.svg",
  31374. extra: 3975 / 3525,
  31375. bottom: 137 / 4112
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Micro",
  31382. height: math.unit(150, "mm"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31389. {
  31390. front: {
  31391. height: math.unit(6, "feet"),
  31392. weight: math.unit(150, "lb"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/casselene-yaro/front.svg",
  31396. extra: 4721 / 4541,
  31397. bottom: 82 / 4803
  31398. }
  31399. },
  31400. back: {
  31401. height: math.unit(6, "feet"),
  31402. weight: math.unit(150, "lb"),
  31403. name: "Back",
  31404. image: {
  31405. source: "./media/characters/casselene-yaro/back.svg",
  31406. extra: 4569 / 4377,
  31407. bottom: 69 / 4638
  31408. }
  31409. },
  31410. dressed: {
  31411. height: math.unit(6, "feet"),
  31412. weight: math.unit(150, "lb"),
  31413. name: "Dressed",
  31414. image: {
  31415. source: "./media/characters/casselene-yaro/dressed.svg",
  31416. extra: 4721 / 4541,
  31417. bottom: 82 / 4803
  31418. }
  31419. },
  31420. maw: {
  31421. height: math.unit(1, "feet"),
  31422. name: "Maw",
  31423. image: {
  31424. source: "./media/characters/casselene-yaro/maw.svg"
  31425. }
  31426. },
  31427. },
  31428. [
  31429. {
  31430. name: "Macro",
  31431. height: math.unit(190, "feet"),
  31432. default: true
  31433. },
  31434. ]
  31435. ))
  31436. characterMakers.push(() => makeCharacter(
  31437. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31438. {
  31439. front: {
  31440. height: math.unit(10, "feet"),
  31441. weight: math.unit(15015, "lb"),
  31442. name: "Front",
  31443. image: {
  31444. source: "./media/characters/platine/front.svg",
  31445. extra: 1741/1650,
  31446. bottom: 84/1825
  31447. }
  31448. },
  31449. side: {
  31450. height: math.unit(10, "feet"),
  31451. weight: math.unit(15015, "lb"),
  31452. name: "Side",
  31453. image: {
  31454. source: "./media/characters/platine/side.svg",
  31455. extra: 1790/1705,
  31456. bottom: 29/1819
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(10, "feet"),
  31464. default: true
  31465. },
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(100, "feet")
  31469. },
  31470. {
  31471. name: "Megamacro",
  31472. height: math.unit(1000, "feet")
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(15 + 5 / 12, "feet"),
  31481. weight: math.unit(4600, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/neapolitan-ananassa/front.svg",
  31485. extra: 2903 / 2736,
  31486. bottom: 0 / 2903
  31487. }
  31488. },
  31489. side: {
  31490. height: math.unit(15 + 5 / 12, "feet"),
  31491. weight: math.unit(4600, "lb"),
  31492. name: "Side",
  31493. image: {
  31494. source: "./media/characters/neapolitan-ananassa/side.svg",
  31495. extra: 2925 / 2719,
  31496. bottom: 0 / 2925
  31497. }
  31498. },
  31499. back: {
  31500. height: math.unit(15 + 5 / 12, "feet"),
  31501. weight: math.unit(4600, "lb"),
  31502. name: "Back",
  31503. image: {
  31504. source: "./media/characters/neapolitan-ananassa/back.svg",
  31505. extra: 2903 / 2736,
  31506. bottom: 0 / 2903
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(15 + 5 / 12, "feet"),
  31514. default: true
  31515. },
  31516. {
  31517. name: "Post-Millenium",
  31518. height: math.unit(35 + 5 / 12, "feet")
  31519. },
  31520. {
  31521. name: "Post-Era",
  31522. height: math.unit(450 + 5 / 12, "feet")
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(300, "meters"),
  31531. weight: math.unit(125000, "tonnes"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/pazuzu/front.svg",
  31535. extra: 877 / 794,
  31536. bottom: 47 / 924
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Macro",
  31543. height: math.unit(300, "meters"),
  31544. default: true
  31545. },
  31546. ]
  31547. ))
  31548. characterMakers.push(() => makeCharacter(
  31549. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31550. {
  31551. side: {
  31552. height: math.unit(10 + 7 / 12, "feet"),
  31553. weight: math.unit(2.5, "tons"),
  31554. name: "Side",
  31555. image: {
  31556. source: "./media/characters/aasha/side.svg",
  31557. extra: 1345 / 1245,
  31558. bottom: 111 / 1456
  31559. }
  31560. },
  31561. back: {
  31562. height: math.unit(10 + 7 / 12, "feet"),
  31563. weight: math.unit(2.5, "tons"),
  31564. name: "Back",
  31565. image: {
  31566. source: "./media/characters/aasha/back.svg",
  31567. extra: 1133 / 1057,
  31568. bottom: 257 / 1390
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(10 + 7 / 12, "feet"),
  31576. default: true
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(6 + 3 / 12, "feet"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/nevan/front.svg",
  31588. extra: 704 / 704,
  31589. bottom: 28 / 732
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(6 + 3 / 12, "feet"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/nevan/back.svg",
  31597. extra: 714 / 714,
  31598. bottom: 21 / 735
  31599. }
  31600. },
  31601. frontFlaccid: {
  31602. height: math.unit(6 + 3 / 12, "feet"),
  31603. name: "Front (Flaccid)",
  31604. image: {
  31605. source: "./media/characters/nevan/front-flaccid.svg",
  31606. extra: 704 / 704,
  31607. bottom: 28 / 732
  31608. }
  31609. },
  31610. frontErect: {
  31611. height: math.unit(6 + 3 / 12, "feet"),
  31612. name: "Front (Erect)",
  31613. image: {
  31614. source: "./media/characters/nevan/front-erect.svg",
  31615. extra: 704 / 704,
  31616. bottom: 28 / 732
  31617. }
  31618. },
  31619. backFlaccid: {
  31620. height: math.unit(6 + 3 / 12, "feet"),
  31621. name: "Back (Flaccid)",
  31622. image: {
  31623. source: "./media/characters/nevan/back-flaccid.svg",
  31624. extra: 714 / 714,
  31625. bottom: 21 / 735
  31626. }
  31627. },
  31628. },
  31629. [
  31630. {
  31631. name: "Normal",
  31632. height: math.unit(6 + 3 / 12, "feet"),
  31633. default: true
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31639. {
  31640. front: {
  31641. height: math.unit(4, "feet"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/arhan/front.svg",
  31645. extra: 3368 / 3133,
  31646. bottom: 0 / 3368
  31647. }
  31648. },
  31649. side: {
  31650. height: math.unit(4, "feet"),
  31651. name: "Side",
  31652. image: {
  31653. source: "./media/characters/arhan/side.svg",
  31654. extra: 3347 / 3105,
  31655. bottom: 0 / 3347
  31656. }
  31657. },
  31658. tongue: {
  31659. height: math.unit(1.42, "feet"),
  31660. name: "Tongue",
  31661. image: {
  31662. source: "./media/characters/arhan/tongue.svg"
  31663. }
  31664. },
  31665. head: {
  31666. height: math.unit(0.85, "feet"),
  31667. name: "Head",
  31668. image: {
  31669. source: "./media/characters/arhan/head.svg"
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(4, "feet"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(5 + 7.5 / 12, "feet"),
  31686. weight: math.unit(120, "lb"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/digi-duncan/front.svg",
  31690. extra: 330 / 326,
  31691. bottom: 16 / 346
  31692. }
  31693. },
  31694. side: {
  31695. height: math.unit(5 + 7.5 / 12, "feet"),
  31696. weight: math.unit(120, "lb"),
  31697. name: "Side",
  31698. image: {
  31699. source: "./media/characters/digi-duncan/side.svg",
  31700. extra: 341 / 337,
  31701. bottom: 1 / 342
  31702. }
  31703. },
  31704. back: {
  31705. height: math.unit(5 + 7.5 / 12, "feet"),
  31706. weight: math.unit(120, "lb"),
  31707. name: "Back",
  31708. image: {
  31709. source: "./media/characters/digi-duncan/back.svg",
  31710. extra: 330 / 326,
  31711. bottom: 12 / 342
  31712. }
  31713. },
  31714. },
  31715. [
  31716. {
  31717. name: "Speck",
  31718. height: math.unit(0.25, "mm")
  31719. },
  31720. {
  31721. name: "Micro",
  31722. height: math.unit(5, "mm")
  31723. },
  31724. {
  31725. name: "Tiny",
  31726. height: math.unit(0.5, "inches"),
  31727. default: true
  31728. },
  31729. {
  31730. name: "Human",
  31731. height: math.unit(5 + 7.5 / 12, "feet")
  31732. },
  31733. {
  31734. name: "Minigiant",
  31735. height: math.unit(8 + 5.25, "feet")
  31736. },
  31737. {
  31738. name: "Giant",
  31739. height: math.unit(2000, "feet")
  31740. },
  31741. {
  31742. name: "Mega",
  31743. height: math.unit(371.1, "miles")
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(2, "meters"),
  31752. weight: math.unit(350, "kg"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31756. extra: 898 / 838,
  31757. bottom: 9 / 907
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Micro",
  31764. height: math.unit(8, "meters")
  31765. },
  31766. {
  31767. name: "Normal",
  31768. height: math.unit(50, "meters"),
  31769. default: true
  31770. },
  31771. {
  31772. name: "Macro",
  31773. height: math.unit(500, "meters")
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31779. {
  31780. front: {
  31781. height: math.unit(6 + 6 / 12, "feet"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/khardesh/front.svg",
  31785. extra: 1788/1596,
  31786. bottom: 66/1854
  31787. }
  31788. },
  31789. back: {
  31790. height: math.unit(6 + 6 / 12, "feet"),
  31791. name: "Back",
  31792. image: {
  31793. source: "./media/characters/khardesh/back.svg",
  31794. extra: 1781/1584,
  31795. bottom: 68/1849
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(6 + 6 / 12, "feet"),
  31803. default: true
  31804. },
  31805. {
  31806. name: "Normal+",
  31807. height: math.unit(4, "meters")
  31808. },
  31809. {
  31810. name: "Macro",
  31811. height: math.unit(50, "meters")
  31812. },
  31813. {
  31814. name: "Macro+",
  31815. height: math.unit(100, "meters")
  31816. },
  31817. {
  31818. name: "Megamacro",
  31819. height: math.unit(20, "km")
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31825. {
  31826. front: {
  31827. height: math.unit(6, "feet"),
  31828. weight: math.unit(150, "lb"),
  31829. name: "Front",
  31830. image: {
  31831. source: "./media/characters/kosho/front.svg",
  31832. extra: 1847 / 1847,
  31833. bottom: 86 / 1933
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Second-stage micro",
  31840. height: math.unit(0.5, "inches")
  31841. },
  31842. {
  31843. name: "First-stage micro",
  31844. height: math.unit(6, "inches")
  31845. },
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(6, "feet"),
  31849. default: true
  31850. },
  31851. {
  31852. name: "First-stage macro",
  31853. height: math.unit(72, "feet")
  31854. },
  31855. {
  31856. name: "Second-stage macro",
  31857. height: math.unit(864, "feet")
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31863. {
  31864. normal: {
  31865. height: math.unit(4 + 6 / 12, "feet"),
  31866. name: "Normal",
  31867. image: {
  31868. source: "./media/characters/hydra/normal.svg",
  31869. extra: 2833 / 2634,
  31870. bottom: 68 / 2901
  31871. }
  31872. },
  31873. smol: {
  31874. height: math.unit(0.705, "inches"),
  31875. name: "Smol",
  31876. image: {
  31877. source: "./media/characters/hydra/smol.svg",
  31878. extra: 2715 / 2540,
  31879. bottom: 0 / 2715
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(4 + 6 / 12, "feet"),
  31887. default: true
  31888. }
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(0.6, "cm"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/daz/front.svg",
  31899. extra: 1682 / 1164,
  31900. bottom: 42 / 1724
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(0.6, "cm"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(6, "feet"),
  31917. weight: math.unit(235, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/theo-pangolin/front.svg",
  31921. extra: 1996 / 1969,
  31922. bottom: 115 / 2111
  31923. }
  31924. },
  31925. back: {
  31926. height: math.unit(6, "feet"),
  31927. weight: math.unit(235, "lb"),
  31928. name: "Back",
  31929. image: {
  31930. source: "./media/characters/theo-pangolin/back.svg",
  31931. extra: 1979 / 1979,
  31932. bottom: 40 / 2019
  31933. }
  31934. },
  31935. feral: {
  31936. height: math.unit(2, "feet"),
  31937. weight: math.unit(30, "lb"),
  31938. name: "Feral",
  31939. image: {
  31940. source: "./media/characters/theo-pangolin/feral.svg",
  31941. extra: 803 / 791,
  31942. bottom: 181 / 984
  31943. }
  31944. },
  31945. footFive: {
  31946. height: math.unit(1.43, "feet"),
  31947. name: "Foot (Five Toes)",
  31948. image: {
  31949. source: "./media/characters/theo-pangolin/foot-five.svg"
  31950. }
  31951. },
  31952. footFour: {
  31953. height: math.unit(1.43, "feet"),
  31954. name: "Foot (Four Toes)",
  31955. image: {
  31956. source: "./media/characters/theo-pangolin/foot-four.svg"
  31957. }
  31958. },
  31959. handFour: {
  31960. height: math.unit(0.81, "feet"),
  31961. name: "Hand (Four Fingers)",
  31962. image: {
  31963. source: "./media/characters/theo-pangolin/hand-four.svg"
  31964. }
  31965. },
  31966. handThree: {
  31967. height: math.unit(0.81, "feet"),
  31968. name: "Hand (Three Fingers)",
  31969. image: {
  31970. source: "./media/characters/theo-pangolin/hand-three.svg"
  31971. }
  31972. },
  31973. headFront: {
  31974. height: math.unit(1.37, "feet"),
  31975. name: "Head (Front)",
  31976. image: {
  31977. source: "./media/characters/theo-pangolin/head-front.svg"
  31978. }
  31979. },
  31980. headSide: {
  31981. height: math.unit(1.43, "feet"),
  31982. name: "Head (Side)",
  31983. image: {
  31984. source: "./media/characters/theo-pangolin/head-side.svg"
  31985. }
  31986. },
  31987. tongue: {
  31988. height: math.unit(2.29, "feet"),
  31989. name: "Tongue",
  31990. image: {
  31991. source: "./media/characters/theo-pangolin/tongue.svg"
  31992. }
  31993. },
  31994. },
  31995. [
  31996. {
  31997. name: "Normal",
  31998. height: math.unit(6, "feet")
  31999. },
  32000. {
  32001. name: "Macro",
  32002. height: math.unit(400, "feet"),
  32003. default: true
  32004. },
  32005. ]
  32006. ))
  32007. characterMakers.push(() => makeCharacter(
  32008. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32009. {
  32010. front: {
  32011. height: math.unit(6, "inches"),
  32012. weight: math.unit(0.036, "kg"),
  32013. name: "Front",
  32014. image: {
  32015. source: "./media/characters/renée/front.svg",
  32016. extra: 900 / 886,
  32017. bottom: 8 / 908
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Nano",
  32024. height: math.unit(1, "nm")
  32025. },
  32026. {
  32027. name: "Micro",
  32028. height: math.unit(1, "mm")
  32029. },
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(6, "inches")
  32033. },
  32034. {
  32035. name: "Macro",
  32036. height: math.unit(2000, "feet"),
  32037. default: true
  32038. },
  32039. {
  32040. name: "Megamacro",
  32041. height: math.unit(2, "km")
  32042. },
  32043. {
  32044. name: "Gigamacro",
  32045. height: math.unit(2000, "km")
  32046. },
  32047. {
  32048. name: "Teramacro",
  32049. height: math.unit(250000, "km")
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(4, "meters"),
  32058. weight: math.unit(150, "kg"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/caledvwlch/front.svg",
  32062. extra: 1757/1537,
  32063. bottom: 31/1788
  32064. }
  32065. },
  32066. side: {
  32067. height: math.unit(4, "meters"),
  32068. weight: math.unit(150, "kg"),
  32069. name: "Side",
  32070. image: {
  32071. source: "./media/characters/caledvwlch/side.svg",
  32072. extra: 1605 / 1536,
  32073. bottom: 31 / 1636
  32074. }
  32075. },
  32076. back: {
  32077. height: math.unit(4, "meters"),
  32078. weight: math.unit(150, "kg"),
  32079. name: "Back",
  32080. image: {
  32081. source: "./media/characters/caledvwlch/back.svg",
  32082. extra: 1635 / 1565,
  32083. bottom: 27 / 1662
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "\"Incognito\"",
  32090. height: math.unit(4, "meters")
  32091. },
  32092. {
  32093. name: "Small rampage",
  32094. height: math.unit(600, "meters")
  32095. },
  32096. {
  32097. name: "Mega",
  32098. height: math.unit(30, "km")
  32099. },
  32100. {
  32101. name: "Home-size",
  32102. height: math.unit(50, "km"),
  32103. default: true
  32104. },
  32105. {
  32106. name: "Giga",
  32107. height: math.unit(300, "km")
  32108. },
  32109. {
  32110. name: "Lounging",
  32111. height: math.unit(11000, "km")
  32112. },
  32113. {
  32114. name: "Planet snacking",
  32115. height: math.unit(2000000, "km")
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(6, "feet"),
  32124. weight: math.unit(215, "lb"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/sapphire-svell/front.svg",
  32128. extra: 495 / 455,
  32129. bottom: 20 / 515
  32130. }
  32131. },
  32132. back: {
  32133. height: math.unit(6, "feet"),
  32134. weight: math.unit(216, "lb"),
  32135. name: "Back",
  32136. image: {
  32137. source: "./media/characters/sapphire-svell/back.svg",
  32138. extra: 497 / 477,
  32139. bottom: 7 / 504
  32140. }
  32141. },
  32142. maw: {
  32143. height: math.unit(1.57, "feet"),
  32144. name: "Maw",
  32145. image: {
  32146. source: "./media/characters/sapphire-svell/maw.svg"
  32147. }
  32148. },
  32149. foot: {
  32150. height: math.unit(1.07, "feet"),
  32151. name: "Foot",
  32152. image: {
  32153. source: "./media/characters/sapphire-svell/foot.svg"
  32154. }
  32155. },
  32156. toering: {
  32157. height: math.unit(1.7, "inch"),
  32158. name: "Toering",
  32159. image: {
  32160. source: "./media/characters/sapphire-svell/toering.svg"
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(300, "feet"),
  32168. default: true
  32169. },
  32170. {
  32171. name: "Augmented",
  32172. height: math.unit(1250, "feet")
  32173. },
  32174. {
  32175. name: "Unleashed",
  32176. height: math.unit(3000, "feet")
  32177. },
  32178. ]
  32179. ))
  32180. characterMakers.push(() => makeCharacter(
  32181. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32182. {
  32183. side: {
  32184. height: math.unit(2 + 3 / 12, "feet"),
  32185. weight: math.unit(110, "lb"),
  32186. name: "Side",
  32187. image: {
  32188. source: "./media/characters/glitch-flux/side.svg",
  32189. extra: 997 / 805,
  32190. bottom: 20 / 1017
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(2 + 3 / 12, "feet"),
  32198. default: true
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(4, "meters"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/mid/front.svg",
  32210. extra: 507 / 476,
  32211. bottom: 17 / 524
  32212. }
  32213. },
  32214. back: {
  32215. height: math.unit(4, "meters"),
  32216. name: "Back",
  32217. image: {
  32218. source: "./media/characters/mid/back.svg",
  32219. extra: 519 / 487,
  32220. bottom: 7 / 526
  32221. }
  32222. },
  32223. stuck: {
  32224. height: math.unit(2.2, "meters"),
  32225. name: "Stuck",
  32226. image: {
  32227. source: "./media/characters/mid/stuck.svg",
  32228. extra: 1951 / 1869,
  32229. bottom: 88 / 2039
  32230. }
  32231. }
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(4, "meters"),
  32237. default: true
  32238. },
  32239. {
  32240. name: "Big",
  32241. height: math.unit(10, "meters")
  32242. },
  32243. {
  32244. name: "Macro",
  32245. height: math.unit(800, "meters")
  32246. },
  32247. {
  32248. name: "Megamacro",
  32249. height: math.unit(100, "km")
  32250. },
  32251. {
  32252. name: "Overgrown",
  32253. height: math.unit(1, "parsec")
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32259. {
  32260. front: {
  32261. height: math.unit(2.5, "meters"),
  32262. weight: math.unit(225, "kg"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/iris/front.svg",
  32266. extra: 3348 / 3251,
  32267. bottom: 205 / 3553
  32268. }
  32269. },
  32270. maw: {
  32271. height: math.unit(0.56, "meter"),
  32272. name: "Maw",
  32273. image: {
  32274. source: "./media/characters/iris/maw.svg"
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Mewter cat",
  32281. height: math.unit(1.2, "meters")
  32282. },
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(2.5, "meters"),
  32286. default: true
  32287. },
  32288. {
  32289. name: "Minimacro",
  32290. height: math.unit(18, "feet")
  32291. },
  32292. {
  32293. name: "Macro",
  32294. height: math.unit(140, "feet")
  32295. },
  32296. {
  32297. name: "Macro+",
  32298. height: math.unit(180, "meters")
  32299. },
  32300. {
  32301. name: "Megamacro",
  32302. height: math.unit(2746, "meters")
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(6, "feet"),
  32311. weight: math.unit(135, "lb"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/axel/front.svg",
  32315. extra: 908 / 908,
  32316. bottom: 58 / 966
  32317. }
  32318. },
  32319. side: {
  32320. height: math.unit(6, "feet"),
  32321. weight: math.unit(135, "lb"),
  32322. name: "Side",
  32323. image: {
  32324. source: "./media/characters/axel/side.svg",
  32325. extra: 958 / 958,
  32326. bottom: 11 / 969
  32327. }
  32328. },
  32329. back: {
  32330. height: math.unit(6, "feet"),
  32331. weight: math.unit(135, "lb"),
  32332. name: "Back",
  32333. image: {
  32334. source: "./media/characters/axel/back.svg",
  32335. extra: 887 / 887,
  32336. bottom: 34 / 921
  32337. }
  32338. },
  32339. head: {
  32340. height: math.unit(1.07, "feet"),
  32341. name: "Head",
  32342. image: {
  32343. source: "./media/characters/axel/head.svg"
  32344. }
  32345. },
  32346. beak: {
  32347. height: math.unit(1.4, "feet"),
  32348. name: "Beak",
  32349. image: {
  32350. source: "./media/characters/axel/beak.svg"
  32351. }
  32352. },
  32353. beakSide: {
  32354. height: math.unit(1.4, "feet"),
  32355. name: "Beak Side",
  32356. image: {
  32357. source: "./media/characters/axel/beak-side.svg"
  32358. }
  32359. },
  32360. sheath: {
  32361. height: math.unit(0.5, "feet"),
  32362. name: "Sheath",
  32363. image: {
  32364. source: "./media/characters/axel/sheath.svg"
  32365. }
  32366. },
  32367. dick: {
  32368. height: math.unit(0.98, "feet"),
  32369. name: "Dick",
  32370. image: {
  32371. source: "./media/characters/axel/dick.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Macro",
  32378. height: math.unit(68, "meters"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32385. {
  32386. front: {
  32387. height: math.unit(3.5, "meters"),
  32388. weight: math.unit(1200, "kg"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/joanna/front.svg",
  32392. extra: 1596 / 1488,
  32393. bottom: 29 / 1625
  32394. }
  32395. },
  32396. back: {
  32397. height: math.unit(3.5, "meters"),
  32398. weight: math.unit(1200, "kg"),
  32399. name: "Back",
  32400. image: {
  32401. source: "./media/characters/joanna/back.svg",
  32402. extra: 1594 / 1495,
  32403. bottom: 26 / 1620
  32404. }
  32405. },
  32406. frontShorts: {
  32407. height: math.unit(3.5, "meters"),
  32408. weight: math.unit(1200, "kg"),
  32409. name: "Front (Shorts)",
  32410. image: {
  32411. source: "./media/characters/joanna/front-shorts.svg",
  32412. extra: 1596 / 1488,
  32413. bottom: 29 / 1625
  32414. }
  32415. },
  32416. frontBiker: {
  32417. height: math.unit(3.5, "meters"),
  32418. weight: math.unit(1200, "kg"),
  32419. name: "Front (Biker)",
  32420. image: {
  32421. source: "./media/characters/joanna/front-biker.svg",
  32422. extra: 1596 / 1488,
  32423. bottom: 29 / 1625
  32424. }
  32425. },
  32426. backBiker: {
  32427. height: math.unit(3.5, "meters"),
  32428. weight: math.unit(1200, "kg"),
  32429. name: "Back (Biker)",
  32430. image: {
  32431. source: "./media/characters/joanna/back-biker.svg",
  32432. extra: 1594 / 1495,
  32433. bottom: 88 / 1682
  32434. }
  32435. },
  32436. bikeLeft: {
  32437. height: math.unit(2.4, "meters"),
  32438. weight: math.unit(1600, "kg"),
  32439. name: "Bike (Left)",
  32440. image: {
  32441. source: "./media/characters/joanna/bike-left.svg",
  32442. extra: 720 / 720,
  32443. bottom: 8 / 728
  32444. }
  32445. },
  32446. bikeRight: {
  32447. height: math.unit(2.4, "meters"),
  32448. weight: math.unit(1600, "kg"),
  32449. name: "Bike (Right)",
  32450. image: {
  32451. source: "./media/characters/joanna/bike-right.svg",
  32452. extra: 720 / 720,
  32453. bottom: 8 / 728
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Incognito",
  32460. height: math.unit(3.5, "meters")
  32461. },
  32462. {
  32463. name: "Casual Big",
  32464. height: math.unit(200, "meters")
  32465. },
  32466. {
  32467. name: "Macro",
  32468. height: math.unit(600, "meters")
  32469. },
  32470. {
  32471. name: "Original",
  32472. height: math.unit(20, "km"),
  32473. default: true
  32474. },
  32475. {
  32476. name: "Giga",
  32477. height: math.unit(400, "km")
  32478. },
  32479. {
  32480. name: "Lounging",
  32481. height: math.unit(1500, "km")
  32482. },
  32483. {
  32484. name: "Planetary",
  32485. height: math.unit(200000, "km")
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(6, "feet"),
  32494. weight: math.unit(150, "lb"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/hugo-sigil/front.svg",
  32498. extra: 522 / 500,
  32499. bottom: 2 / 524
  32500. }
  32501. },
  32502. back: {
  32503. height: math.unit(6, "feet"),
  32504. weight: math.unit(150, "lb"),
  32505. name: "Back",
  32506. image: {
  32507. source: "./media/characters/hugo-sigil/back.svg",
  32508. extra: 519 / 495,
  32509. bottom: 5 / 524
  32510. }
  32511. },
  32512. maw: {
  32513. height: math.unit(1.4, "feet"),
  32514. weight: math.unit(150, "lb"),
  32515. name: "Maw",
  32516. image: {
  32517. source: "./media/characters/hugo-sigil/maw.svg"
  32518. }
  32519. },
  32520. feet: {
  32521. height: math.unit(1.56, "feet"),
  32522. weight: math.unit(150, "lb"),
  32523. name: "Feet",
  32524. image: {
  32525. source: "./media/characters/hugo-sigil/feet.svg",
  32526. extra: 177 / 177,
  32527. bottom: 12 / 189
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(6, "feet")
  32535. },
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(200, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(6, "feet"),
  32548. weight: math.unit(150, "lb"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/peri/front.svg",
  32552. extra: 2354 / 2233,
  32553. bottom: 49 / 2403
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Really Small",
  32560. height: math.unit(1, "nm")
  32561. },
  32562. {
  32563. name: "Micro",
  32564. height: math.unit(4, "inches")
  32565. },
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(7, "inches"),
  32569. default: true
  32570. },
  32571. {
  32572. name: "Macro",
  32573. height: math.unit(400, "feet")
  32574. },
  32575. {
  32576. name: "Megamacro",
  32577. height: math.unit(100, "miles")
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32583. {
  32584. frontSlim: {
  32585. height: math.unit(7, "feet"),
  32586. name: "Front (Slim)",
  32587. image: {
  32588. source: "./media/characters/issilora/front-slim.svg",
  32589. extra: 529 / 449,
  32590. bottom: 53 / 582
  32591. }
  32592. },
  32593. sideSlim: {
  32594. height: math.unit(7, "feet"),
  32595. name: "Side (Slim)",
  32596. image: {
  32597. source: "./media/characters/issilora/side-slim.svg",
  32598. extra: 570 / 480,
  32599. bottom: 30 / 600
  32600. }
  32601. },
  32602. backSlim: {
  32603. height: math.unit(7, "feet"),
  32604. name: "Back (Slim)",
  32605. image: {
  32606. source: "./media/characters/issilora/back-slim.svg",
  32607. extra: 537 / 455,
  32608. bottom: 46 / 583
  32609. }
  32610. },
  32611. frontBuff: {
  32612. height: math.unit(7, "feet"),
  32613. name: "Front (Buff)",
  32614. image: {
  32615. source: "./media/characters/issilora/front-buff.svg",
  32616. extra: 2310 / 2035,
  32617. bottom: 335 / 2645
  32618. }
  32619. },
  32620. head: {
  32621. height: math.unit(1.94, "feet"),
  32622. name: "Head",
  32623. image: {
  32624. source: "./media/characters/issilora/head.svg"
  32625. }
  32626. },
  32627. },
  32628. [
  32629. {
  32630. name: "Minimum",
  32631. height: math.unit(7, "feet")
  32632. },
  32633. {
  32634. name: "Comfortable",
  32635. height: math.unit(17, "feet")
  32636. },
  32637. {
  32638. name: "Fun Size",
  32639. height: math.unit(47, "feet")
  32640. },
  32641. {
  32642. name: "Natural Macro",
  32643. height: math.unit(137, "feet"),
  32644. default: true
  32645. },
  32646. {
  32647. name: "Maximum Kaiju",
  32648. height: math.unit(397, "feet")
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32654. {
  32655. front: {
  32656. height: math.unit(50 + 9/12, "feet"),
  32657. weight: math.unit(32.8, "tons"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/irb'iiritaahn/front.svg",
  32661. extra: 1878/1826,
  32662. bottom: 326/2204
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(50 + 9/12, "feet"),
  32667. weight: math.unit(32.8, "tons"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/irb'iiritaahn/back.svg",
  32671. extra: 2052/2018,
  32672. bottom: 152/2204
  32673. }
  32674. },
  32675. head: {
  32676. height: math.unit(12.86, "feet"),
  32677. name: "Head",
  32678. image: {
  32679. source: "./media/characters/irb'iiritaahn/head.svg"
  32680. }
  32681. },
  32682. maw: {
  32683. height: math.unit(9.66, "feet"),
  32684. name: "Maw",
  32685. image: {
  32686. source: "./media/characters/irb'iiritaahn/maw.svg"
  32687. }
  32688. },
  32689. frontDick: {
  32690. height: math.unit(8.78461, "feet"),
  32691. name: "Front Dick",
  32692. image: {
  32693. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32694. }
  32695. },
  32696. rearDick: {
  32697. height: math.unit(8.78461, "feet"),
  32698. name: "Rear Dick",
  32699. image: {
  32700. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32701. }
  32702. },
  32703. rearDickUnfolded: {
  32704. height: math.unit(8.78, "feet"),
  32705. name: "Rear Dick (Unfolded)",
  32706. image: {
  32707. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32708. }
  32709. },
  32710. wings: {
  32711. height: math.unit(43, "feet"),
  32712. name: "Wings",
  32713. image: {
  32714. source: "./media/characters/irb'iiritaahn/wings.svg"
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Macro",
  32721. height: math.unit(50 + 9/12, "feet"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(205, "cm"),
  32731. weight: math.unit(102, "kg"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/irbisgreif/front.svg",
  32735. extra: 785/706,
  32736. bottom: 13/798
  32737. }
  32738. },
  32739. back: {
  32740. height: math.unit(205, "cm"),
  32741. weight: math.unit(102, "kg"),
  32742. name: "Back",
  32743. image: {
  32744. source: "./media/characters/irbisgreif/back.svg",
  32745. extra: 713/701,
  32746. bottom: 26/739
  32747. }
  32748. },
  32749. frontDressed: {
  32750. height: math.unit(216, "cm"),
  32751. weight: math.unit(102, "kg"),
  32752. name: "Front-dressed",
  32753. image: {
  32754. source: "./media/characters/irbisgreif/front-dressed.svg",
  32755. extra: 902/776,
  32756. bottom: 14/916
  32757. }
  32758. },
  32759. sideDressed: {
  32760. height: math.unit(195, "cm"),
  32761. weight: math.unit(102, "kg"),
  32762. name: "Side-dressed",
  32763. image: {
  32764. source: "./media/characters/irbisgreif/side-dressed.svg",
  32765. extra: 788/688,
  32766. bottom: 21/809
  32767. }
  32768. },
  32769. backDressed: {
  32770. height: math.unit(216, "cm"),
  32771. weight: math.unit(102, "kg"),
  32772. name: "Back-dressed",
  32773. image: {
  32774. source: "./media/characters/irbisgreif/back-dressed.svg",
  32775. extra: 901/783,
  32776. bottom: 10/911
  32777. }
  32778. },
  32779. dick: {
  32780. height: math.unit(0.49, "feet"),
  32781. name: "Dick",
  32782. image: {
  32783. source: "./media/characters/irbisgreif/dick.svg"
  32784. }
  32785. },
  32786. wingTop: {
  32787. height: math.unit(1.93 , "feet"),
  32788. name: "Wing-top",
  32789. image: {
  32790. source: "./media/characters/irbisgreif/wing-top.svg"
  32791. }
  32792. },
  32793. wingBottom: {
  32794. height: math.unit(1.93 , "feet"),
  32795. name: "Wing-bottom",
  32796. image: {
  32797. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32798. }
  32799. },
  32800. },
  32801. [
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(216, "cm"),
  32805. default: true
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32811. {
  32812. front: {
  32813. height: math.unit(6, "feet"),
  32814. weight: math.unit(150, "lb"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/pride/front.svg",
  32818. extra: 1299/1230,
  32819. bottom: 18/1317
  32820. }
  32821. },
  32822. },
  32823. [
  32824. {
  32825. name: "Normal",
  32826. height: math.unit(7, "feet")
  32827. },
  32828. {
  32829. name: "Mini-macro",
  32830. height: math.unit(11, "feet")
  32831. },
  32832. {
  32833. name: "Macro",
  32834. height: math.unit(15, "meters"),
  32835. default: true
  32836. },
  32837. {
  32838. name: "Macro+",
  32839. height: math.unit(40, "meters")
  32840. },
  32841. ]
  32842. ))
  32843. characterMakers.push(() => makeCharacter(
  32844. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32845. {
  32846. front: {
  32847. height: math.unit(4 + 2 / 12, "feet"),
  32848. weight: math.unit(95, "lb"),
  32849. name: "Front",
  32850. image: {
  32851. source: "./media/characters/vaelophis-nyx/front.svg",
  32852. extra: 2532/2330,
  32853. bottom: 0/2532
  32854. }
  32855. },
  32856. back: {
  32857. height: math.unit(4 + 2 / 12, "feet"),
  32858. weight: math.unit(95, "lb"),
  32859. name: "Back",
  32860. image: {
  32861. source: "./media/characters/vaelophis-nyx/back.svg",
  32862. extra: 2484/2361,
  32863. bottom: 0/2484
  32864. }
  32865. },
  32866. feralSide: {
  32867. height: math.unit(2 + 1/12, "feet"),
  32868. weight: math.unit(20, "lb"),
  32869. name: "Feral (Side)",
  32870. image: {
  32871. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32872. extra: 1721/1581,
  32873. bottom: 70/1791
  32874. }
  32875. },
  32876. feralLazing: {
  32877. height: math.unit(1.08, "feet"),
  32878. weight: math.unit(20, "lb"),
  32879. name: "Feral (Lazing)",
  32880. image: {
  32881. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32882. extra: 822/822,
  32883. bottom: 248/1070
  32884. }
  32885. },
  32886. ear: {
  32887. height: math.unit(0.416, "feet"),
  32888. name: "Ear",
  32889. image: {
  32890. source: "./media/characters/vaelophis-nyx/ear.svg"
  32891. }
  32892. },
  32893. eye: {
  32894. height: math.unit(0.0748, "feet"),
  32895. name: "Eye",
  32896. image: {
  32897. source: "./media/characters/vaelophis-nyx/eye.svg"
  32898. }
  32899. },
  32900. mouth: {
  32901. height: math.unit(0.378, "feet"),
  32902. name: "Mouth",
  32903. image: {
  32904. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32905. }
  32906. },
  32907. spade: {
  32908. height: math.unit(0.55, "feet"),
  32909. name: "Spade",
  32910. image: {
  32911. source: "./media/characters/vaelophis-nyx/spade.svg"
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(4 + 2/12, "feet"),
  32919. default: true
  32920. },
  32921. ]
  32922. ))
  32923. characterMakers.push(() => makeCharacter(
  32924. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32925. {
  32926. front: {
  32927. height: math.unit(7, "feet"),
  32928. weight: math.unit(231, "lb"),
  32929. name: "Front",
  32930. image: {
  32931. source: "./media/characters/flux/front.svg",
  32932. extra: 919/871,
  32933. bottom: 0/919
  32934. }
  32935. },
  32936. back: {
  32937. height: math.unit(7, "feet"),
  32938. weight: math.unit(231, "lb"),
  32939. name: "Back",
  32940. image: {
  32941. source: "./media/characters/flux/back.svg",
  32942. extra: 1040/992,
  32943. bottom: 0/1040
  32944. }
  32945. },
  32946. frontDressed: {
  32947. height: math.unit(7, "feet"),
  32948. weight: math.unit(231, "lb"),
  32949. name: "Front (Dressed)",
  32950. image: {
  32951. source: "./media/characters/flux/front-dressed.svg",
  32952. extra: 919/871,
  32953. bottom: 0/919
  32954. }
  32955. },
  32956. feralSide: {
  32957. height: math.unit(5, "feet"),
  32958. weight: math.unit(150, "lb"),
  32959. name: "Feral (Side)",
  32960. image: {
  32961. source: "./media/characters/flux/feral-side.svg",
  32962. extra: 598/528,
  32963. bottom: 28/626
  32964. }
  32965. },
  32966. head: {
  32967. height: math.unit(1.585, "feet"),
  32968. name: "Head",
  32969. image: {
  32970. source: "./media/characters/flux/head.svg"
  32971. }
  32972. },
  32973. headSide: {
  32974. height: math.unit(1.74, "feet"),
  32975. name: "Head (Side)",
  32976. image: {
  32977. source: "./media/characters/flux/head-side.svg"
  32978. }
  32979. },
  32980. headSideFire: {
  32981. height: math.unit(1.76, "feet"),
  32982. name: "Head (Side, Fire)",
  32983. image: {
  32984. source: "./media/characters/flux/head-side-fire.svg"
  32985. }
  32986. },
  32987. },
  32988. [
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(7, "feet"),
  32992. default: true
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32998. {
  32999. front: {
  33000. height: math.unit(9, "feet"),
  33001. weight: math.unit(1012, "lb"),
  33002. name: "Front",
  33003. image: {
  33004. source: "./media/characters/ulfra-lupae/front.svg",
  33005. extra: 1083/1011,
  33006. bottom: 67/1150
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Micro",
  33013. height: math.unit(6, "inches")
  33014. },
  33015. {
  33016. name: "Socializing",
  33017. height: math.unit(6 + 5/12, "feet")
  33018. },
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(9, "feet"),
  33022. default: true
  33023. },
  33024. {
  33025. name: "Macro",
  33026. height: math.unit(150, "feet")
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(5 + 2/12, "feet"),
  33035. weight: math.unit(120, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/timber/front.svg",
  33039. extra: 2814/2705,
  33040. bottom: 181/2995
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(5 + 2/12, "feet"),
  33048. default: true
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33054. {
  33055. front: {
  33056. height: math.unit(9, "feet"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/nicki/front.svg",
  33060. extra: 1240/990,
  33061. bottom: 45/1285
  33062. },
  33063. form: "anthro",
  33064. default: true
  33065. },
  33066. side: {
  33067. height: math.unit(9, "feet"),
  33068. name: "Side",
  33069. image: {
  33070. source: "./media/characters/nicki/side.svg",
  33071. extra: 1047/973,
  33072. bottom: 61/1108
  33073. },
  33074. form: "anthro"
  33075. },
  33076. back: {
  33077. height: math.unit(9, "feet"),
  33078. name: "Back",
  33079. image: {
  33080. source: "./media/characters/nicki/back.svg",
  33081. extra: 1006/965,
  33082. bottom: 39/1045
  33083. },
  33084. form: "anthro"
  33085. },
  33086. taur: {
  33087. height: math.unit(15, "feet"),
  33088. name: "Taur",
  33089. image: {
  33090. source: "./media/characters/nicki/taur.svg",
  33091. extra: 1592/1347,
  33092. bottom: 0/1592
  33093. },
  33094. form: "taur",
  33095. default: true
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(9, "feet"),
  33102. form: "anthro",
  33103. default: true
  33104. },
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(15, "feet"),
  33108. form: "taur",
  33109. default: true
  33110. }
  33111. ],
  33112. {
  33113. "anthro": {
  33114. name: "Anthro",
  33115. default: true
  33116. },
  33117. "taur": {
  33118. name: "Taur"
  33119. }
  33120. }
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33124. {
  33125. front: {
  33126. height: math.unit(7 + 10/12, "feet"),
  33127. weight: math.unit(3.5, "tons"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/lee/front.svg",
  33131. extra: 1773/1615,
  33132. bottom: 86/1859
  33133. }
  33134. },
  33135. hand: {
  33136. height: math.unit(1.78, "feet"),
  33137. name: "Hand",
  33138. image: {
  33139. source: "./media/characters/lee/hand.svg"
  33140. }
  33141. },
  33142. maw: {
  33143. height: math.unit(1.18, "feet"),
  33144. name: "Maw",
  33145. image: {
  33146. source: "./media/characters/lee/maw.svg"
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(7 + 10/12, "feet"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33160. {
  33161. front: {
  33162. height: math.unit(9, "feet"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/guti/front.svg",
  33166. extra: 4551/4355,
  33167. bottom: 123/4674
  33168. }
  33169. },
  33170. tongue: {
  33171. height: math.unit(1, "feet"),
  33172. name: "Tongue",
  33173. image: {
  33174. source: "./media/characters/guti/tongue.svg"
  33175. }
  33176. },
  33177. paw: {
  33178. height: math.unit(1.18, "feet"),
  33179. name: "Paw",
  33180. image: {
  33181. source: "./media/characters/guti/paw.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Normal",
  33188. height: math.unit(9, "feet"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33195. {
  33196. side: {
  33197. height: math.unit(5, "meters"),
  33198. name: "Side",
  33199. image: {
  33200. source: "./media/characters/vesper/side.svg",
  33201. extra: 1605/1518,
  33202. bottom: 0/1605
  33203. }
  33204. },
  33205. },
  33206. [
  33207. {
  33208. name: "Small",
  33209. height: math.unit(5, "meters")
  33210. },
  33211. {
  33212. name: "Sage",
  33213. height: math.unit(100, "meters"),
  33214. default: true
  33215. },
  33216. {
  33217. name: "Fun Size",
  33218. height: math.unit(600, "meters")
  33219. },
  33220. {
  33221. name: "Goddess",
  33222. height: math.unit(20000, "km")
  33223. },
  33224. {
  33225. name: "Maximum",
  33226. height: math.unit(5, "galaxies")
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(6 + 3/12, "feet"),
  33235. weight: math.unit(190, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/gawain/front.svg",
  33239. extra: 2222/2139,
  33240. bottom: 90/2312
  33241. }
  33242. },
  33243. back: {
  33244. height: math.unit(6 + 3/12, "feet"),
  33245. weight: math.unit(190, "lb"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/gawain/back.svg",
  33249. extra: 2199/2111,
  33250. bottom: 73/2272
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(6 + 3/12, "feet"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33264. {
  33265. side: {
  33266. height: math.unit(3.5, "meters"),
  33267. weight: math.unit(16000, "lb"),
  33268. name: "Side",
  33269. image: {
  33270. source: "./media/characters/dascalti/side.svg",
  33271. extra: 392/273,
  33272. bottom: 47/439
  33273. }
  33274. },
  33275. breath: {
  33276. height: math.unit(7.4, "feet"),
  33277. name: "Breath",
  33278. image: {
  33279. source: "./media/characters/dascalti/breath.svg"
  33280. }
  33281. },
  33282. fed: {
  33283. height: math.unit(3.6, "meters"),
  33284. weight: math.unit(16000, "lb"),
  33285. name: "Fed",
  33286. image: {
  33287. source: "./media/characters/dascalti/fed.svg",
  33288. extra: 1419/820,
  33289. bottom: 95/1514
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(3.5, "meters"),
  33297. default: true
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33303. {
  33304. front: {
  33305. height: math.unit(3 + 5/12, "feet"),
  33306. name: "Front",
  33307. image: {
  33308. source: "./media/characters/mauve/front.svg",
  33309. extra: 1126/1033,
  33310. bottom: 65/1191
  33311. }
  33312. },
  33313. side: {
  33314. height: math.unit(3 + 5/12, "feet"),
  33315. name: "Side",
  33316. image: {
  33317. source: "./media/characters/mauve/side.svg",
  33318. extra: 1089/1001,
  33319. bottom: 29/1118
  33320. }
  33321. },
  33322. back: {
  33323. height: math.unit(3 + 5/12, "feet"),
  33324. name: "Back",
  33325. image: {
  33326. source: "./media/characters/mauve/back.svg",
  33327. extra: 1173/1053,
  33328. bottom: 109/1282
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Normal",
  33335. height: math.unit(3 + 5/12, "feet"),
  33336. default: true
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33342. {
  33343. front: {
  33344. height: math.unit(6 + 3/12, "feet"),
  33345. weight: math.unit(430, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/carlos/front.svg",
  33349. extra: 1964/1913,
  33350. bottom: 70/2034
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(6 + 3/12, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33364. {
  33365. back: {
  33366. height: math.unit(5 + 10/12, "feet"),
  33367. weight: math.unit(200, "lb"),
  33368. name: "Back",
  33369. image: {
  33370. source: "./media/characters/jax/back.svg",
  33371. extra: 764/739,
  33372. bottom: 25/789
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Normal",
  33379. height: math.unit(5 + 10/12, "feet"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33386. {
  33387. front: {
  33388. height: math.unit(8, "feet"),
  33389. weight: math.unit(250, "lb"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/eikthynir/front.svg",
  33393. extra: 1332/1166,
  33394. bottom: 82/1414
  33395. }
  33396. },
  33397. back: {
  33398. height: math.unit(8, "feet"),
  33399. weight: math.unit(250, "lb"),
  33400. name: "Back",
  33401. image: {
  33402. source: "./media/characters/eikthynir/back.svg",
  33403. extra: 1342/1190,
  33404. bottom: 19/1361
  33405. }
  33406. },
  33407. dick: {
  33408. height: math.unit(2.35, "feet"),
  33409. name: "Dick",
  33410. image: {
  33411. source: "./media/characters/eikthynir/dick.svg"
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(8, "feet"),
  33419. default: true
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(99, "meters"),
  33428. weight: math.unit(13000, "tons"),
  33429. name: "Front",
  33430. image: {
  33431. source: "./media/characters/zlmos/front.svg",
  33432. extra: 2202/1992,
  33433. bottom: 315/2517
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Macro",
  33440. height: math.unit(99, "meters"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(6 + 5/12, "feet"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/purri/front.svg",
  33453. extra: 1698/1610,
  33454. bottom: 32/1730
  33455. }
  33456. },
  33457. frontAlt: {
  33458. height: math.unit(6 + 5/12, "feet"),
  33459. name: "Front (Alt)",
  33460. image: {
  33461. source: "./media/characters/purri/front-alt.svg",
  33462. extra: 450/420,
  33463. bottom: 26/476
  33464. }
  33465. },
  33466. boots: {
  33467. height: math.unit(5.5, "feet"),
  33468. name: "Boots",
  33469. image: {
  33470. source: "./media/characters/purri/boots.svg",
  33471. extra: 905/853,
  33472. bottom: 18/923
  33473. }
  33474. },
  33475. lying: {
  33476. height: math.unit(2, "feet"),
  33477. name: "Lying",
  33478. image: {
  33479. source: "./media/characters/purri/lying.svg",
  33480. extra: 940/843,
  33481. bottom: 146/1086
  33482. }
  33483. },
  33484. devious: {
  33485. height: math.unit(1.77, "feet"),
  33486. name: "Devious",
  33487. image: {
  33488. source: "./media/characters/purri/devious.svg",
  33489. extra: 1440/1155,
  33490. bottom: 147/1587
  33491. }
  33492. },
  33493. bean: {
  33494. height: math.unit(1.94, "feet"),
  33495. name: "Bean",
  33496. image: {
  33497. source: "./media/characters/purri/bean.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Micro",
  33504. height: math.unit(1, "mm")
  33505. },
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(6 + 5/12, "feet"),
  33509. default: true
  33510. },
  33511. {
  33512. name: "Macro :3c",
  33513. height: math.unit(2, "miles")
  33514. },
  33515. ]
  33516. ))
  33517. characterMakers.push(() => makeCharacter(
  33518. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33519. {
  33520. front: {
  33521. height: math.unit(6 + 2/12, "feet"),
  33522. weight: math.unit(250, "lb"),
  33523. name: "Front",
  33524. image: {
  33525. source: "./media/characters/moonlight/front.svg",
  33526. extra: 1044/908,
  33527. bottom: 56/1100
  33528. }
  33529. },
  33530. feral: {
  33531. height: math.unit(3 + 1/12, "feet"),
  33532. weight: math.unit(50, "kg"),
  33533. name: "Feral",
  33534. image: {
  33535. source: "./media/characters/moonlight/feral.svg",
  33536. extra: 3705/2791,
  33537. bottom: 145/3850
  33538. }
  33539. },
  33540. paw: {
  33541. height: math.unit(1, "feet"),
  33542. name: "Paw",
  33543. image: {
  33544. source: "./media/characters/moonlight/paw.svg"
  33545. }
  33546. },
  33547. paws: {
  33548. height: math.unit(0.98, "feet"),
  33549. name: "Paws",
  33550. image: {
  33551. source: "./media/characters/moonlight/paws.svg",
  33552. extra: 939/939,
  33553. bottom: 50/989
  33554. }
  33555. },
  33556. mouth: {
  33557. height: math.unit(0.48, "feet"),
  33558. name: "Mouth",
  33559. image: {
  33560. source: "./media/characters/moonlight/mouth.svg"
  33561. }
  33562. },
  33563. dick: {
  33564. height: math.unit(1.46, "feet"),
  33565. name: "Dick",
  33566. image: {
  33567. source: "./media/characters/moonlight/dick.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(6 + 2/12, "feet"),
  33575. default: true
  33576. },
  33577. {
  33578. name: "Macro",
  33579. height: math.unit(300, "feet")
  33580. },
  33581. {
  33582. name: "Macro+",
  33583. height: math.unit(1, "mile")
  33584. },
  33585. {
  33586. name: "Mt. Moon",
  33587. height: math.unit(5, "miles")
  33588. },
  33589. {
  33590. name: "Megamacro",
  33591. height: math.unit(15, "miles")
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33597. {
  33598. back: {
  33599. height: math.unit(6, "feet"),
  33600. weight: math.unit(150, "lb"),
  33601. name: "Back",
  33602. image: {
  33603. source: "./media/characters/sylen/back.svg",
  33604. extra: 1335/1273,
  33605. bottom: 107/1442
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Normal",
  33612. height: math.unit(5 + 5/12, "feet")
  33613. },
  33614. {
  33615. name: "Megamacro",
  33616. height: math.unit(3, "miles"),
  33617. default: true
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33623. {
  33624. front: {
  33625. height: math.unit(6, "feet"),
  33626. weight: math.unit(190, "lb"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/huttser/front.svg",
  33630. extra: 1152/1058,
  33631. bottom: 23/1175
  33632. }
  33633. },
  33634. side: {
  33635. height: math.unit(6, "feet"),
  33636. weight: math.unit(190, "lb"),
  33637. name: "Side",
  33638. image: {
  33639. source: "./media/characters/huttser/side.svg",
  33640. extra: 1174/1065,
  33641. bottom: 18/1192
  33642. }
  33643. },
  33644. back: {
  33645. height: math.unit(6, "feet"),
  33646. weight: math.unit(190, "lb"),
  33647. name: "Back",
  33648. image: {
  33649. source: "./media/characters/huttser/back.svg",
  33650. extra: 1158/1056,
  33651. bottom: 12/1170
  33652. }
  33653. },
  33654. },
  33655. [
  33656. ]
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33660. {
  33661. side: {
  33662. height: math.unit(12 + 9/12, "feet"),
  33663. weight: math.unit(15000, "lb"),
  33664. name: "Side",
  33665. image: {
  33666. source: "./media/characters/faan/side.svg",
  33667. extra: 2747/2697,
  33668. bottom: 0/2747
  33669. }
  33670. },
  33671. front: {
  33672. height: math.unit(12 + 9/12, "feet"),
  33673. weight: math.unit(15000, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/faan/front.svg",
  33677. extra: 607/571,
  33678. bottom: 24/631
  33679. }
  33680. },
  33681. head: {
  33682. height: math.unit(2.85, "feet"),
  33683. name: "Head",
  33684. image: {
  33685. source: "./media/characters/faan/head.svg"
  33686. }
  33687. },
  33688. headAlt: {
  33689. height: math.unit(3.13, "feet"),
  33690. name: "Head-alt",
  33691. image: {
  33692. source: "./media/characters/faan/head-alt.svg"
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(12 + 9/12, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(6, "feet"),
  33709. weight: math.unit(300, "lb"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/tanio/front.svg",
  33713. extra: 711/673,
  33714. bottom: 25/736
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(6, "feet"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(3, "inches"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/noboru/front.svg",
  33734. extra: 1039/932,
  33735. bottom: 18/1057
  33736. }
  33737. },
  33738. },
  33739. [
  33740. {
  33741. name: "Micro",
  33742. height: math.unit(3, "inches"),
  33743. default: true
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(1.85, "meters"),
  33752. weight: math.unit(80, "kg"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/daniel-barrett/front.svg",
  33756. extra: 355/337,
  33757. bottom: 9/364
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Pico",
  33764. height: math.unit(0.0433, "mm")
  33765. },
  33766. {
  33767. name: "Nano",
  33768. height: math.unit(1.5, "mm")
  33769. },
  33770. {
  33771. name: "Micro",
  33772. height: math.unit(5.3, "cm"),
  33773. default: true
  33774. },
  33775. {
  33776. name: "Normal",
  33777. height: math.unit(1.85, "meters")
  33778. },
  33779. {
  33780. name: "Macro",
  33781. height: math.unit(64.7, "meters")
  33782. },
  33783. {
  33784. name: "Megamacro",
  33785. height: math.unit(2.26, "km")
  33786. },
  33787. {
  33788. name: "Gigamacro",
  33789. height: math.unit(79, "km")
  33790. },
  33791. {
  33792. name: "Teramacro",
  33793. height: math.unit(2765, "km")
  33794. },
  33795. {
  33796. name: "Petamacro",
  33797. height: math.unit(96678, "km")
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(30, "meters"),
  33806. weight: math.unit(400, "tons"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/zeel/front.svg",
  33810. extra: 2599/2599,
  33811. bottom: 226/2825
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Macro",
  33818. height: math.unit(30, "meters"),
  33819. default: true
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(6 + 7/12, "feet"),
  33828. weight: math.unit(210, "lb"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/tarn/front.svg",
  33832. extra: 3517/3220,
  33833. bottom: 91/3608
  33834. }
  33835. },
  33836. back: {
  33837. height: math.unit(6 + 7/12, "feet"),
  33838. weight: math.unit(210, "lb"),
  33839. name: "Back",
  33840. image: {
  33841. source: "./media/characters/tarn/back.svg",
  33842. extra: 3566/3241,
  33843. bottom: 34/3600
  33844. }
  33845. },
  33846. dick: {
  33847. height: math.unit(1.65, "feet"),
  33848. name: "Dick",
  33849. image: {
  33850. source: "./media/characters/tarn/dick.svg"
  33851. }
  33852. },
  33853. paw: {
  33854. height: math.unit(1.80, "feet"),
  33855. name: "Paw",
  33856. image: {
  33857. source: "./media/characters/tarn/paw.svg"
  33858. }
  33859. },
  33860. tongue: {
  33861. height: math.unit(0.97, "feet"),
  33862. name: "Tongue",
  33863. image: {
  33864. source: "./media/characters/tarn/tongue.svg"
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Micro",
  33871. height: math.unit(4, "inches")
  33872. },
  33873. {
  33874. name: "Normal",
  33875. height: math.unit(6 + 7/12, "feet"),
  33876. default: true
  33877. },
  33878. {
  33879. name: "Macro",
  33880. height: math.unit(300, "feet")
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(5 + 7/12, "feet"),
  33889. weight: math.unit(80, "kg"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33893. extra: 3023/2865,
  33894. bottom: 33/3056
  33895. }
  33896. },
  33897. back: {
  33898. height: math.unit(5 + 7/12, "feet"),
  33899. weight: math.unit(80, "kg"),
  33900. name: "Back",
  33901. image: {
  33902. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33903. extra: 3020/2886,
  33904. bottom: 30/3050
  33905. }
  33906. },
  33907. dick: {
  33908. height: math.unit(0.98, "feet"),
  33909. name: "Dick",
  33910. image: {
  33911. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33912. }
  33913. },
  33914. anatomy: {
  33915. height: math.unit(2.86, "feet"),
  33916. name: "Anatomy",
  33917. image: {
  33918. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Really Small",
  33925. height: math.unit(2, "inches")
  33926. },
  33927. {
  33928. name: "Micro",
  33929. height: math.unit(5.583, "inches")
  33930. },
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(5 + 7/12, "feet"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Macro",
  33938. height: math.unit(67, "feet")
  33939. },
  33940. {
  33941. name: "Megamacro",
  33942. height: math.unit(134, "feet")
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33948. {
  33949. front: {
  33950. height: math.unit(9, "feet"),
  33951. weight: math.unit(120, "lb"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/sally/front.svg",
  33955. extra: 1506/1349,
  33956. bottom: 66/1572
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(9, "feet"),
  33964. default: true
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(8, "feet"),
  33973. weight: math.unit(900, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/owen/front.svg",
  33977. extra: 1761/1657,
  33978. bottom: 74/1835
  33979. }
  33980. },
  33981. side: {
  33982. height: math.unit(8, "feet"),
  33983. weight: math.unit(900, "lb"),
  33984. name: "Side",
  33985. image: {
  33986. source: "./media/characters/owen/side.svg",
  33987. extra: 1797/1734,
  33988. bottom: 30/1827
  33989. }
  33990. },
  33991. back: {
  33992. height: math.unit(8, "feet"),
  33993. weight: math.unit(900, "lb"),
  33994. name: "Back",
  33995. image: {
  33996. source: "./media/characters/owen/back.svg",
  33997. extra: 1796/1706,
  33998. bottom: 59/1855
  33999. }
  34000. },
  34001. maw: {
  34002. height: math.unit(1.76, "feet"),
  34003. name: "Maw",
  34004. image: {
  34005. source: "./media/characters/owen/maw.svg"
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(8, "feet"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34019. {
  34020. front: {
  34021. height: math.unit(4, "feet"),
  34022. weight: math.unit(400, "lb"),
  34023. name: "Front",
  34024. image: {
  34025. source: "./media/characters/ryth/front.svg",
  34026. extra: 1920/1748,
  34027. bottom: 42/1962
  34028. }
  34029. },
  34030. back: {
  34031. height: math.unit(4, "feet"),
  34032. weight: math.unit(400, "lb"),
  34033. name: "Back",
  34034. image: {
  34035. source: "./media/characters/ryth/back.svg",
  34036. extra: 1897/1690,
  34037. bottom: 89/1986
  34038. }
  34039. },
  34040. mouth: {
  34041. height: math.unit(1.39, "feet"),
  34042. name: "Mouth",
  34043. image: {
  34044. source: "./media/characters/ryth/mouth.svg"
  34045. }
  34046. },
  34047. tailmaw: {
  34048. height: math.unit(1.23, "feet"),
  34049. name: "Tailmaw",
  34050. image: {
  34051. source: "./media/characters/ryth/tailmaw.svg"
  34052. }
  34053. },
  34054. goia: {
  34055. height: math.unit(4, "meters"),
  34056. weight: math.unit(10800, "lb"),
  34057. name: "Goia",
  34058. image: {
  34059. source: "./media/characters/ryth/goia.svg",
  34060. extra: 745/640,
  34061. bottom: 107/852
  34062. }
  34063. },
  34064. goiaFront: {
  34065. height: math.unit(4, "meters"),
  34066. weight: math.unit(10800, "lb"),
  34067. name: "Goia (Front)",
  34068. image: {
  34069. source: "./media/characters/ryth/goia-front.svg",
  34070. extra: 750/586,
  34071. bottom: 114/864
  34072. }
  34073. },
  34074. goiaMaw: {
  34075. height: math.unit(5.55, "feet"),
  34076. name: "Goia Maw",
  34077. image: {
  34078. source: "./media/characters/ryth/goia-maw.svg"
  34079. }
  34080. },
  34081. goiaForepaw: {
  34082. height: math.unit(3.5, "feet"),
  34083. name: "Goia Forepaw",
  34084. image: {
  34085. source: "./media/characters/ryth/goia-forepaw.svg"
  34086. }
  34087. },
  34088. goiaHindpaw: {
  34089. height: math.unit(5.55, "feet"),
  34090. name: "Goia Hindpaw",
  34091. image: {
  34092. source: "./media/characters/ryth/goia-hindpaw.svg"
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Normal",
  34099. height: math.unit(4, "feet"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34106. {
  34107. front: {
  34108. height: math.unit(7, "feet"),
  34109. weight: math.unit(180, "lb"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/necrolance/front.svg",
  34113. extra: 1062/947,
  34114. bottom: 41/1103
  34115. }
  34116. },
  34117. back: {
  34118. height: math.unit(7, "feet"),
  34119. weight: math.unit(180, "lb"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/necrolance/back.svg",
  34123. extra: 1045/984,
  34124. bottom: 14/1059
  34125. }
  34126. },
  34127. wing: {
  34128. height: math.unit(2.67, "feet"),
  34129. name: "Wing",
  34130. image: {
  34131. source: "./media/characters/necrolance/wing.svg"
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Normal",
  34138. height: math.unit(7, "feet"),
  34139. default: true
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34145. {
  34146. front: {
  34147. height: math.unit(76, "meters"),
  34148. weight: math.unit(30000, "tons"),
  34149. name: "Front",
  34150. image: {
  34151. source: "./media/characters/tyler/front.svg",
  34152. extra: 1640/1640,
  34153. bottom: 114/1754
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Macro",
  34160. height: math.unit(76, "meters"),
  34161. default: true
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34167. {
  34168. front: {
  34169. height: math.unit(4 + 11/12, "feet"),
  34170. weight: math.unit(132, "lb"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/icey/front.svg",
  34174. extra: 2750/2550,
  34175. bottom: 33/2783
  34176. }
  34177. },
  34178. back: {
  34179. height: math.unit(4 + 11/12, "feet"),
  34180. weight: math.unit(132, "lb"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/icey/back.svg",
  34184. extra: 2624/2481,
  34185. bottom: 35/2659
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Normal",
  34192. height: math.unit(4 + 11/12, "feet"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34199. {
  34200. front: {
  34201. height: math.unit(100, "feet"),
  34202. weight: math.unit(0, "lb"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/smile/front.svg",
  34206. extra: 2983/2912,
  34207. bottom: 162/3145
  34208. }
  34209. },
  34210. back: {
  34211. height: math.unit(100, "feet"),
  34212. weight: math.unit(0, "lb"),
  34213. name: "Back",
  34214. image: {
  34215. source: "./media/characters/smile/back.svg",
  34216. extra: 3143/3031,
  34217. bottom: 91/3234
  34218. }
  34219. },
  34220. head: {
  34221. height: math.unit(26.3, "feet"),
  34222. weight: math.unit(0, "lb"),
  34223. name: "Head",
  34224. image: {
  34225. source: "./media/characters/smile/head.svg"
  34226. }
  34227. },
  34228. collar: {
  34229. height: math.unit(5.3, "feet"),
  34230. weight: math.unit(0, "lb"),
  34231. name: "Collar",
  34232. image: {
  34233. source: "./media/characters/smile/collar.svg"
  34234. }
  34235. },
  34236. },
  34237. [
  34238. {
  34239. name: "Macro",
  34240. height: math.unit(100, "feet"),
  34241. default: true
  34242. },
  34243. ]
  34244. ))
  34245. characterMakers.push(() => makeCharacter(
  34246. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34247. {
  34248. dragon: {
  34249. height: math.unit(26, "feet"),
  34250. weight: math.unit(36, "tons"),
  34251. name: "Dragon",
  34252. image: {
  34253. source: "./media/characters/arimphae/dragon.svg",
  34254. extra: 1574/983,
  34255. bottom: 357/1931
  34256. }
  34257. },
  34258. drake: {
  34259. height: math.unit(9, "feet"),
  34260. weight: math.unit(1.5, "tons"),
  34261. name: "Drake",
  34262. image: {
  34263. source: "./media/characters/arimphae/drake.svg",
  34264. extra: 1120/925,
  34265. bottom: 435/1555
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Small",
  34272. height: math.unit(26*5/9, "feet")
  34273. },
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(26, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(8 + 9/12, "feet"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/xander/front.svg",
  34289. extra: 1237/974,
  34290. bottom: 94/1331
  34291. }
  34292. },
  34293. },
  34294. [
  34295. {
  34296. name: "Normal",
  34297. height: math.unit(8 + 9/12, "feet"),
  34298. default: true
  34299. },
  34300. {
  34301. name: "Gaze Grabber",
  34302. height: math.unit(13 + 8/12, "feet")
  34303. },
  34304. {
  34305. name: "Jaw Dropper",
  34306. height: math.unit(27, "feet")
  34307. },
  34308. {
  34309. name: "Show Stopper",
  34310. height: math.unit(136, "feet")
  34311. },
  34312. {
  34313. name: "Superstar",
  34314. height: math.unit(1.9e6, "miles")
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34320. {
  34321. side: {
  34322. height: math.unit(2100, "feet"),
  34323. name: "Side",
  34324. image: {
  34325. source: "./media/characters/osiris/side.svg",
  34326. extra: 1105/939,
  34327. bottom: 167/1272
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Macro",
  34334. height: math.unit(2100, "feet"),
  34335. default: true
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34341. {
  34342. front: {
  34343. height: math.unit(6 + 8/12, "feet"),
  34344. weight: math.unit(225, "lb"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/rhys-londe/front.svg",
  34348. extra: 2258/2141,
  34349. bottom: 188/2446
  34350. }
  34351. },
  34352. back: {
  34353. height: math.unit(6 + 8/12, "feet"),
  34354. weight: math.unit(225, "lb"),
  34355. name: "Back",
  34356. image: {
  34357. source: "./media/characters/rhys-londe/back.svg",
  34358. extra: 2237/2137,
  34359. bottom: 63/2300
  34360. }
  34361. },
  34362. frontNsfw: {
  34363. height: math.unit(6 + 8/12, "feet"),
  34364. weight: math.unit(225, "lb"),
  34365. name: "Front (NSFW)",
  34366. image: {
  34367. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34368. extra: 2258/2141,
  34369. bottom: 188/2446
  34370. }
  34371. },
  34372. backNsfw: {
  34373. height: math.unit(6 + 8/12, "feet"),
  34374. weight: math.unit(225, "lb"),
  34375. name: "Back (NSFW)",
  34376. image: {
  34377. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34378. extra: 2237/2137,
  34379. bottom: 63/2300
  34380. }
  34381. },
  34382. dick: {
  34383. height: math.unit(30, "inches"),
  34384. name: "Dick",
  34385. image: {
  34386. source: "./media/characters/rhys-londe/dick.svg"
  34387. }
  34388. },
  34389. maw: {
  34390. height: math.unit(1.6, "feet"),
  34391. name: "Maw",
  34392. image: {
  34393. source: "./media/characters/rhys-londe/maw.svg"
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(6 + 8/12, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34407. {
  34408. front: {
  34409. height: math.unit(3 + 10/12, "feet"),
  34410. weight: math.unit(90, "lb"),
  34411. name: "Front",
  34412. image: {
  34413. source: "./media/characters/taivas-ensim/front.svg",
  34414. extra: 1327/1216,
  34415. bottom: 96/1423
  34416. }
  34417. },
  34418. back: {
  34419. height: math.unit(3 + 10/12, "feet"),
  34420. weight: math.unit(90, "lb"),
  34421. name: "Back",
  34422. image: {
  34423. source: "./media/characters/taivas-ensim/back.svg",
  34424. extra: 1355/1247,
  34425. bottom: 11/1366
  34426. }
  34427. },
  34428. frontNsfw: {
  34429. height: math.unit(3 + 10/12, "feet"),
  34430. weight: math.unit(90, "lb"),
  34431. name: "Front (NSFW)",
  34432. image: {
  34433. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34434. extra: 1327/1216,
  34435. bottom: 96/1423
  34436. }
  34437. },
  34438. backNsfw: {
  34439. height: math.unit(3 + 10/12, "feet"),
  34440. weight: math.unit(90, "lb"),
  34441. name: "Back (NSFW)",
  34442. image: {
  34443. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34444. extra: 1355/1247,
  34445. bottom: 11/1366
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(3 + 10/12, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(9 + 6/12, "feet"),
  34462. weight: math.unit(940, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/byliss/front.svg",
  34466. extra: 1327/1290,
  34467. bottom: 82/1409
  34468. }
  34469. },
  34470. back: {
  34471. height: math.unit(9 + 6/12, "feet"),
  34472. weight: math.unit(940, "lb"),
  34473. name: "Back",
  34474. image: {
  34475. source: "./media/characters/byliss/back.svg",
  34476. extra: 1376/1349,
  34477. bottom: 9/1385
  34478. }
  34479. },
  34480. frontNsfw: {
  34481. height: math.unit(9 + 6/12, "feet"),
  34482. weight: math.unit(940, "lb"),
  34483. name: "Front (NSFW)",
  34484. image: {
  34485. source: "./media/characters/byliss/front-nsfw.svg",
  34486. extra: 1327/1290,
  34487. bottom: 82/1409
  34488. }
  34489. },
  34490. backNsfw: {
  34491. height: math.unit(9 + 6/12, "feet"),
  34492. weight: math.unit(940, "lb"),
  34493. name: "Back (NSFW)",
  34494. image: {
  34495. source: "./media/characters/byliss/back-nsfw.svg",
  34496. extra: 1376/1349,
  34497. bottom: 9/1385
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(9 + 6/12, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(5 + 2/12, "feet"),
  34514. weight: math.unit(200, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/noraly/front.svg",
  34518. extra: 4985/4773,
  34519. bottom: 150/5135
  34520. }
  34521. },
  34522. full: {
  34523. height: math.unit(5 + 2/12, "feet"),
  34524. weight: math.unit(164, "lb"),
  34525. name: "Full",
  34526. image: {
  34527. source: "./media/characters/noraly/full.svg",
  34528. extra: 1114/1059,
  34529. bottom: 35/1149
  34530. }
  34531. },
  34532. fuller: {
  34533. height: math.unit(5 + 2/12, "feet"),
  34534. weight: math.unit(230, "lb"),
  34535. name: "Fuller",
  34536. image: {
  34537. source: "./media/characters/noraly/fuller.svg",
  34538. extra: 1114/1059,
  34539. bottom: 35/1149
  34540. }
  34541. },
  34542. fullest: {
  34543. height: math.unit(5 + 2/12, "feet"),
  34544. weight: math.unit(300, "lb"),
  34545. name: "Fullest",
  34546. image: {
  34547. source: "./media/characters/noraly/fullest.svg",
  34548. extra: 1114/1059,
  34549. bottom: 35/1149
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(5 + 2/12, "feet"),
  34557. default: true
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34563. {
  34564. front: {
  34565. height: math.unit(5 + 2/12, "feet"),
  34566. weight: math.unit(210, "lb"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/pera/front.svg",
  34570. extra: 1560/1531,
  34571. bottom: 165/1725
  34572. }
  34573. },
  34574. back: {
  34575. height: math.unit(5 + 2/12, "feet"),
  34576. weight: math.unit(210, "lb"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/pera/back.svg",
  34580. extra: 1523/1493,
  34581. bottom: 152/1675
  34582. }
  34583. },
  34584. dick: {
  34585. height: math.unit(2.4, "feet"),
  34586. name: "Dick",
  34587. image: {
  34588. source: "./media/characters/pera/dick.svg"
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Normal",
  34595. height: math.unit(5 + 2/12, "feet"),
  34596. default: true
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(12, "feet"),
  34605. weight: math.unit(3200, "lb"),
  34606. name: "Front",
  34607. image: {
  34608. source: "./media/characters/julian/front.svg",
  34609. extra: 2962/2701,
  34610. bottom: 184/3146
  34611. }
  34612. },
  34613. maw: {
  34614. height: math.unit(5.35, "feet"),
  34615. name: "Maw",
  34616. image: {
  34617. source: "./media/characters/julian/maw.svg"
  34618. }
  34619. },
  34620. paw: {
  34621. height: math.unit(3.07, "feet"),
  34622. name: "Paw",
  34623. image: {
  34624. source: "./media/characters/julian/paw.svg"
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Default",
  34631. height: math.unit(12, "feet"),
  34632. default: true
  34633. },
  34634. {
  34635. name: "Big",
  34636. height: math.unit(50, "feet")
  34637. },
  34638. {
  34639. name: "Really Big",
  34640. height: math.unit(1, "mile")
  34641. },
  34642. {
  34643. name: "Extremely Big",
  34644. height: math.unit(100, "miles")
  34645. },
  34646. {
  34647. name: "Planet Hugger",
  34648. height: math.unit(200, "megameters")
  34649. },
  34650. {
  34651. name: "Unreasonably Big",
  34652. height: math.unit(1e300, "meters")
  34653. },
  34654. ]
  34655. ))
  34656. characterMakers.push(() => makeCharacter(
  34657. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34658. {
  34659. solgooleo: {
  34660. height: math.unit(4, "meters"),
  34661. weight: math.unit(6000*1.5, "kg"),
  34662. volume: math.unit(6000, "liters"),
  34663. name: "Solgooleo",
  34664. image: {
  34665. source: "./media/characters/pi/solgooleo.svg",
  34666. extra: 388/331,
  34667. bottom: 29/417
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(4, "meters"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(8, "feet"),
  34684. weight: math.unit(4, "tons"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/shaun/front.svg",
  34688. extra: 503/495,
  34689. bottom: 20/523
  34690. }
  34691. },
  34692. back: {
  34693. height: math.unit(8, "feet"),
  34694. weight: math.unit(4, "tons"),
  34695. name: "Back",
  34696. image: {
  34697. source: "./media/characters/shaun/back.svg",
  34698. extra: 487/480,
  34699. bottom: 20/507
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Lorg",
  34706. height: math.unit(8, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34713. {
  34714. frontAnthro: {
  34715. height: math.unit(7, "feet"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/sini/front-anthro.svg",
  34719. extra: 726/678,
  34720. bottom: 35/761
  34721. },
  34722. form: "anthro",
  34723. default: true
  34724. },
  34725. backAnthro: {
  34726. height: math.unit(7, "feet"),
  34727. name: "Back",
  34728. image: {
  34729. source: "./media/characters/sini/back-anthro.svg",
  34730. extra: 743/701,
  34731. bottom: 12/755
  34732. },
  34733. form: "anthro",
  34734. },
  34735. frontAnthroNsfw: {
  34736. height: math.unit(7, "feet"),
  34737. name: "Front (NSFW)",
  34738. image: {
  34739. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34740. extra: 726/678,
  34741. bottom: 35/761
  34742. },
  34743. form: "anthro"
  34744. },
  34745. backAnthroNsfw: {
  34746. height: math.unit(7, "feet"),
  34747. name: "Back (NSFW)",
  34748. image: {
  34749. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34750. extra: 743/701,
  34751. bottom: 12/755
  34752. },
  34753. form: "anthro",
  34754. },
  34755. mawAnthro: {
  34756. height: math.unit(2.14, "feet"),
  34757. name: "Maw",
  34758. image: {
  34759. source: "./media/characters/sini/maw-anthro.svg"
  34760. },
  34761. form: "anthro"
  34762. },
  34763. dick: {
  34764. height: math.unit(1.45, "feet"),
  34765. name: "Dick",
  34766. image: {
  34767. source: "./media/characters/sini/dick-anthro.svg"
  34768. },
  34769. form: "anthro"
  34770. },
  34771. feral: {
  34772. height: math.unit(16, "feet"),
  34773. name: "Feral",
  34774. image: {
  34775. source: "./media/characters/sini/feral.svg",
  34776. extra: 814/605,
  34777. bottom: 11/825
  34778. },
  34779. form: "feral",
  34780. default: true
  34781. },
  34782. feralNsfw: {
  34783. height: math.unit(16, "feet"),
  34784. name: "Feral (NSFW)",
  34785. image: {
  34786. source: "./media/characters/sini/feral-nsfw.svg",
  34787. extra: 814/605,
  34788. bottom: 11/825
  34789. },
  34790. form: "feral"
  34791. },
  34792. mawFeral: {
  34793. height: math.unit(5.66, "feet"),
  34794. name: "Maw",
  34795. image: {
  34796. source: "./media/characters/sini/maw-feral.svg"
  34797. },
  34798. form: "feral",
  34799. },
  34800. pawFeral: {
  34801. height: math.unit(5.17, "feet"),
  34802. name: "Paw",
  34803. image: {
  34804. source: "./media/characters/sini/paw-feral.svg"
  34805. },
  34806. form: "feral",
  34807. },
  34808. rumpFeral: {
  34809. height: math.unit(13.11, "feet"),
  34810. name: "Rump",
  34811. image: {
  34812. source: "./media/characters/sini/rump-feral.svg"
  34813. },
  34814. form: "feral",
  34815. },
  34816. dickFeral: {
  34817. height: math.unit(1, "feet"),
  34818. name: "Dick",
  34819. image: {
  34820. source: "./media/characters/sini/dick-feral.svg"
  34821. },
  34822. form: "feral",
  34823. },
  34824. eyeFeral: {
  34825. height: math.unit(1.23, "feet"),
  34826. name: "Eye",
  34827. image: {
  34828. source: "./media/characters/sini/eye-feral.svg"
  34829. },
  34830. form: "feral",
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(7, "feet"),
  34837. default: true,
  34838. form: "anthro"
  34839. },
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(16, "feet"),
  34843. default: true,
  34844. form: "feral"
  34845. },
  34846. ],
  34847. {
  34848. "anthro": {
  34849. name: "Anthro",
  34850. default: true
  34851. },
  34852. "feral": {
  34853. name: "Feral",
  34854. }
  34855. }
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34859. {
  34860. side: {
  34861. height: math.unit(47.2, "meters"),
  34862. weight: math.unit(10000, "tons"),
  34863. name: "Side",
  34864. image: {
  34865. source: "./media/characters/raylldo/side.svg",
  34866. extra: 2363/642,
  34867. bottom: 221/2584
  34868. }
  34869. },
  34870. top: {
  34871. height: math.unit(240, "meters"),
  34872. weight: math.unit(10000, "tons"),
  34873. name: "Top",
  34874. image: {
  34875. source: "./media/characters/raylldo/top.svg"
  34876. }
  34877. },
  34878. bottom: {
  34879. height: math.unit(240, "meters"),
  34880. weight: math.unit(10000, "tons"),
  34881. name: "Bottom",
  34882. image: {
  34883. source: "./media/characters/raylldo/bottom.svg"
  34884. }
  34885. },
  34886. head: {
  34887. height: math.unit(38.6, "meters"),
  34888. name: "Head",
  34889. image: {
  34890. source: "./media/characters/raylldo/head.svg",
  34891. extra: 1335/1112,
  34892. bottom: 0/1335
  34893. }
  34894. },
  34895. maw: {
  34896. height: math.unit(16.37, "meters"),
  34897. name: "Maw",
  34898. image: {
  34899. source: "./media/characters/raylldo/maw.svg",
  34900. extra: 883/660,
  34901. bottom: 0/883
  34902. },
  34903. extraAttributes: {
  34904. preyCapacity: {
  34905. name: "Capacity",
  34906. power: 3,
  34907. type: "volume",
  34908. base: math.unit(1000, "people")
  34909. },
  34910. tongueSize: {
  34911. name: "Tongue Size",
  34912. power: 2,
  34913. type: "area",
  34914. base: math.unit(21, "m^2")
  34915. }
  34916. }
  34917. },
  34918. forepaw: {
  34919. height: math.unit(18, "meters"),
  34920. name: "Forepaw",
  34921. image: {
  34922. source: "./media/characters/raylldo/forepaw.svg"
  34923. }
  34924. },
  34925. hindpaw: {
  34926. height: math.unit(23, "meters"),
  34927. name: "Hindpaw",
  34928. image: {
  34929. source: "./media/characters/raylldo/hindpaw.svg"
  34930. }
  34931. },
  34932. genitals: {
  34933. height: math.unit(42, "meters"),
  34934. name: "Genitals",
  34935. image: {
  34936. source: "./media/characters/raylldo/genitals.svg"
  34937. }
  34938. },
  34939. },
  34940. [
  34941. {
  34942. name: "Normal",
  34943. height: math.unit(47.2, "meters"),
  34944. default: true
  34945. },
  34946. ]
  34947. ))
  34948. characterMakers.push(() => makeCharacter(
  34949. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34950. {
  34951. anthroFront: {
  34952. height: math.unit(9, "feet"),
  34953. weight: math.unit(600, "lb"),
  34954. name: "Anthro (Front)",
  34955. image: {
  34956. source: "./media/characters/glint/anthro-front.svg",
  34957. extra: 1097/1018,
  34958. bottom: 28/1125
  34959. }
  34960. },
  34961. anthroBack: {
  34962. height: math.unit(9, "feet"),
  34963. weight: math.unit(600, "lb"),
  34964. name: "Anthro (Back)",
  34965. image: {
  34966. source: "./media/characters/glint/anthro-back.svg",
  34967. extra: 1154/997,
  34968. bottom: 36/1190
  34969. }
  34970. },
  34971. feral: {
  34972. height: math.unit(11, "feet"),
  34973. weight: math.unit(50000, "lb"),
  34974. name: "Feral",
  34975. image: {
  34976. source: "./media/characters/glint/feral.svg",
  34977. extra: 3035/1585,
  34978. bottom: 1169/4204
  34979. }
  34980. },
  34981. dickAnthro: {
  34982. height: math.unit(0.7, "meters"),
  34983. name: "Dick (Anthro)",
  34984. image: {
  34985. source: "./media/characters/glint/dick-anthro.svg"
  34986. }
  34987. },
  34988. dickFeral: {
  34989. height: math.unit(2.65, "meters"),
  34990. name: "Dick (Feral)",
  34991. image: {
  34992. source: "./media/characters/glint/dick-feral.svg"
  34993. }
  34994. },
  34995. slitHidden: {
  34996. height: math.unit(5.85, "meters"),
  34997. name: "Slit (Hidden)",
  34998. image: {
  34999. source: "./media/characters/glint/slit-hidden.svg"
  35000. }
  35001. },
  35002. slitErect: {
  35003. height: math.unit(5.85, "meters"),
  35004. name: "Slit (Erect)",
  35005. image: {
  35006. source: "./media/characters/glint/slit-erect.svg"
  35007. }
  35008. },
  35009. mawAnthro: {
  35010. height: math.unit(0.63, "meters"),
  35011. name: "Maw (Anthro)",
  35012. image: {
  35013. source: "./media/characters/glint/maw.svg"
  35014. }
  35015. },
  35016. mawFeral: {
  35017. height: math.unit(2.89, "meters"),
  35018. name: "Maw (Feral)",
  35019. image: {
  35020. source: "./media/characters/glint/maw.svg"
  35021. }
  35022. },
  35023. },
  35024. [
  35025. {
  35026. name: "Normal",
  35027. height: math.unit(9, "feet"),
  35028. default: true
  35029. },
  35030. ]
  35031. ))
  35032. characterMakers.push(() => makeCharacter(
  35033. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35034. {
  35035. side: {
  35036. height: math.unit(15, "feet"),
  35037. weight: math.unit(5000, "kg"),
  35038. name: "Side",
  35039. image: {
  35040. source: "./media/characters/kairne/side.svg",
  35041. extra: 979/811,
  35042. bottom: 13/992
  35043. }
  35044. },
  35045. front: {
  35046. height: math.unit(15, "feet"),
  35047. weight: math.unit(5000, "kg"),
  35048. name: "Front",
  35049. image: {
  35050. source: "./media/characters/kairne/front.svg",
  35051. extra: 908/814,
  35052. bottom: 26/934
  35053. }
  35054. },
  35055. sideNsfw: {
  35056. height: math.unit(15, "feet"),
  35057. weight: math.unit(5000, "kg"),
  35058. name: "Side (NSFW)",
  35059. image: {
  35060. source: "./media/characters/kairne/side-nsfw.svg",
  35061. extra: 979/811,
  35062. bottom: 13/992
  35063. }
  35064. },
  35065. frontNsfw: {
  35066. height: math.unit(15, "feet"),
  35067. weight: math.unit(5000, "kg"),
  35068. name: "Front (NSFW)",
  35069. image: {
  35070. source: "./media/characters/kairne/front-nsfw.svg",
  35071. extra: 908/814,
  35072. bottom: 26/934
  35073. }
  35074. },
  35075. dickCaged: {
  35076. height: math.unit(0.65, "meters"),
  35077. name: "Dick-caged",
  35078. image: {
  35079. source: "./media/characters/kairne/dick-caged.svg"
  35080. }
  35081. },
  35082. dick: {
  35083. height: math.unit(0.79, "meters"),
  35084. name: "Dick",
  35085. image: {
  35086. source: "./media/characters/kairne/dick.svg"
  35087. }
  35088. },
  35089. genitals: {
  35090. height: math.unit(1.29, "meters"),
  35091. name: "Genitals",
  35092. image: {
  35093. source: "./media/characters/kairne/genitals.svg"
  35094. }
  35095. },
  35096. maw: {
  35097. height: math.unit(1.73, "meters"),
  35098. name: "Maw",
  35099. image: {
  35100. source: "./media/characters/kairne/maw.svg"
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(15, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(5 + 8/12, "feet"),
  35117. weight: math.unit(139, "lb"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/biscuit-jackal/front.svg",
  35121. extra: 2106/1961,
  35122. bottom: 58/2164
  35123. }
  35124. },
  35125. back: {
  35126. height: math.unit(5 + 8/12, "feet"),
  35127. weight: math.unit(139, "lb"),
  35128. name: "Back",
  35129. image: {
  35130. source: "./media/characters/biscuit-jackal/back.svg",
  35131. extra: 2132/1976,
  35132. bottom: 57/2189
  35133. }
  35134. },
  35135. werejackal: {
  35136. height: math.unit(6 + 3/12, "feet"),
  35137. weight: math.unit(188, "lb"),
  35138. name: "Werejackal",
  35139. image: {
  35140. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35141. extra: 2373/2178,
  35142. bottom: 53/2426
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(5 + 8/12, "feet"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(140, "cm"),
  35159. weight: math.unit(45, "kg"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/tayra-white/front.svg",
  35163. extra: 2229/2192,
  35164. bottom: 75/2304
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(140, "cm"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(4 + 5/12, "feet"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/scoop/front.svg",
  35184. extra: 1257/1136,
  35185. bottom: 69/1326
  35186. }
  35187. },
  35188. back: {
  35189. height: math.unit(4 + 5/12, "feet"),
  35190. name: "Back",
  35191. image: {
  35192. source: "./media/characters/scoop/back.svg",
  35193. extra: 1321/1152,
  35194. bottom: 32/1353
  35195. }
  35196. },
  35197. maw: {
  35198. height: math.unit(0.68, "feet"),
  35199. name: "Maw",
  35200. image: {
  35201. source: "./media/characters/scoop/maw.svg"
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Really Small",
  35208. height: math.unit(1, "mm")
  35209. },
  35210. {
  35211. name: "Micro",
  35212. height: math.unit(1, "inch")
  35213. },
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(4 + 5/12, "feet"),
  35217. default: true
  35218. },
  35219. {
  35220. name: "Macro",
  35221. height: math.unit(200, "feet")
  35222. },
  35223. {
  35224. name: "Megamacro",
  35225. height: math.unit(3240, "feet")
  35226. },
  35227. {
  35228. name: "Teramacro",
  35229. height: math.unit(2500, "miles")
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(15 + 7/12, "feet"),
  35238. weight: math.unit(1150, "tons"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/saphinara/front.svg",
  35242. extra: 1837/1643,
  35243. bottom: 84/1921
  35244. },
  35245. form: "normal",
  35246. default: true
  35247. },
  35248. side: {
  35249. height: math.unit(15 + 7/12, "feet"),
  35250. weight: math.unit(1150, "tons"),
  35251. name: "Side",
  35252. image: {
  35253. source: "./media/characters/saphinara/side.svg",
  35254. extra: 605/547,
  35255. bottom: 6/611
  35256. },
  35257. form: "normal"
  35258. },
  35259. back: {
  35260. height: math.unit(15 + 7/12, "feet"),
  35261. weight: math.unit(1150, "tons"),
  35262. name: "Back",
  35263. image: {
  35264. source: "./media/characters/saphinara/back.svg",
  35265. extra: 591/531,
  35266. bottom: 13/604
  35267. },
  35268. form: "normal"
  35269. },
  35270. frontTail: {
  35271. height: math.unit(15 + 7/12, "feet"),
  35272. weight: math.unit(1150, "tons"),
  35273. name: "Front (Full Tail)",
  35274. image: {
  35275. source: "./media/characters/saphinara/front-tail.svg",
  35276. extra: 2256/1630,
  35277. bottom: 261/2517
  35278. },
  35279. form: "normal"
  35280. },
  35281. insides: {
  35282. height: math.unit(11.92, "feet"),
  35283. name: "Insides",
  35284. image: {
  35285. source: "./media/characters/saphinara/insides.svg"
  35286. },
  35287. form: "normal"
  35288. },
  35289. head: {
  35290. height: math.unit(4.17, "feet"),
  35291. name: "Head",
  35292. image: {
  35293. source: "./media/characters/saphinara/head.svg"
  35294. },
  35295. form: "normal"
  35296. },
  35297. tongue: {
  35298. height: math.unit(4.60, "feet"),
  35299. name: "Tongue",
  35300. image: {
  35301. source: "./media/characters/saphinara/tongue.svg"
  35302. },
  35303. form: "normal"
  35304. },
  35305. headEnraged: {
  35306. height: math.unit(5.55, "feet"),
  35307. name: "Head (Enraged)",
  35308. image: {
  35309. source: "./media/characters/saphinara/head-enraged.svg"
  35310. },
  35311. form: "normal"
  35312. },
  35313. wings: {
  35314. height: math.unit(11.95, "feet"),
  35315. name: "Wings",
  35316. image: {
  35317. source: "./media/characters/saphinara/wings.svg"
  35318. },
  35319. form: "normal"
  35320. },
  35321. feathers: {
  35322. height: math.unit(8.92, "feet"),
  35323. name: "Feathers",
  35324. image: {
  35325. source: "./media/characters/saphinara/feathers.svg"
  35326. },
  35327. form: "normal"
  35328. },
  35329. shackles: {
  35330. height: math.unit(2, "feet"),
  35331. name: "Shackles",
  35332. image: {
  35333. source: "./media/characters/saphinara/shackles.svg"
  35334. },
  35335. form: "normal"
  35336. },
  35337. eyes: {
  35338. height: math.unit(1.331, "feet"),
  35339. name: "Eyes",
  35340. image: {
  35341. source: "./media/characters/saphinara/eyes.svg"
  35342. },
  35343. form: "normal"
  35344. },
  35345. eyesEnraged: {
  35346. height: math.unit(1.331, "feet"),
  35347. name: "Eyes (Enraged)",
  35348. image: {
  35349. source: "./media/characters/saphinara/eyes-enraged.svg"
  35350. },
  35351. form: "normal"
  35352. },
  35353. trueFormSide: {
  35354. height: math.unit(200, "feet"),
  35355. weight: math.unit(1e7, "tons"),
  35356. name: "Side",
  35357. image: {
  35358. source: "./media/characters/saphinara/true-form-side.svg",
  35359. extra: 1399/770,
  35360. bottom: 97/1496
  35361. },
  35362. form: "true-form",
  35363. default: true
  35364. },
  35365. trueFormMaw: {
  35366. height: math.unit(71.5, "feet"),
  35367. name: "Maw",
  35368. image: {
  35369. source: "./media/characters/saphinara/true-form-maw.svg",
  35370. extra: 2302/1453,
  35371. bottom: 0/2302
  35372. },
  35373. form: "true-form"
  35374. },
  35375. meowberusSide: {
  35376. height: math.unit(75, "feet"),
  35377. weight: math.unit(180000, "kg"),
  35378. preyCapacity: math.unit(50000, "people"),
  35379. name: "Side",
  35380. image: {
  35381. source: "./media/characters/saphinara/meowberus-side.svg",
  35382. extra: 1400/711,
  35383. bottom: 126/1526
  35384. },
  35385. form: "meowberus",
  35386. extraAttributes: {
  35387. "pawArea": {
  35388. name: "Paw Size",
  35389. power: 2,
  35390. type: "area",
  35391. base: math.unit(35, "m^2")
  35392. }
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Normal",
  35399. height: math.unit(15 + 7/12, "feet"),
  35400. default: true,
  35401. form: "normal"
  35402. },
  35403. {
  35404. name: "Angry",
  35405. height: math.unit(30 + 6/12, "feet"),
  35406. form: "normal"
  35407. },
  35408. {
  35409. name: "Enraged",
  35410. height: math.unit(102 + 1/12, "feet"),
  35411. form: "normal"
  35412. },
  35413. {
  35414. name: "True",
  35415. height: math.unit(200, "feet"),
  35416. default: true,
  35417. form: "true-form"
  35418. },
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(75, "feet"),
  35422. default: true,
  35423. form: "meowberus"
  35424. },
  35425. ],
  35426. {
  35427. "normal": {
  35428. name: "Normal",
  35429. default: true
  35430. },
  35431. "true-form": {
  35432. name: "True Form"
  35433. },
  35434. "meowberus": {
  35435. name: "Meowberus",
  35436. },
  35437. }
  35438. ))
  35439. characterMakers.push(() => makeCharacter(
  35440. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35441. {
  35442. front: {
  35443. height: math.unit(6 + 8/12, "feet"),
  35444. weight: math.unit(300, "lb"),
  35445. name: "Front",
  35446. image: {
  35447. source: "./media/characters/jrain/front.svg",
  35448. extra: 3039/2865,
  35449. bottom: 399/3438
  35450. }
  35451. },
  35452. back: {
  35453. height: math.unit(6 + 8/12, "feet"),
  35454. weight: math.unit(300, "lb"),
  35455. name: "Back",
  35456. image: {
  35457. source: "./media/characters/jrain/back.svg",
  35458. extra: 3089/2938,
  35459. bottom: 172/3261
  35460. }
  35461. },
  35462. head: {
  35463. height: math.unit(2.14, "feet"),
  35464. name: "Head",
  35465. image: {
  35466. source: "./media/characters/jrain/head.svg"
  35467. }
  35468. },
  35469. maw: {
  35470. height: math.unit(1.77, "feet"),
  35471. name: "Maw",
  35472. image: {
  35473. source: "./media/characters/jrain/maw.svg"
  35474. }
  35475. },
  35476. leftHand: {
  35477. height: math.unit(1.1, "feet"),
  35478. name: "Left Hand",
  35479. image: {
  35480. source: "./media/characters/jrain/left-hand.svg"
  35481. }
  35482. },
  35483. rightHand: {
  35484. height: math.unit(1.1, "feet"),
  35485. name: "Right Hand",
  35486. image: {
  35487. source: "./media/characters/jrain/right-hand.svg"
  35488. }
  35489. },
  35490. eye: {
  35491. height: math.unit(0.35, "feet"),
  35492. name: "Eye",
  35493. image: {
  35494. source: "./media/characters/jrain/eye.svg"
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(6 + 8/12, "feet"),
  35502. default: true
  35503. },
  35504. {
  35505. name: "Casually Large",
  35506. height: math.unit(25, "feet")
  35507. },
  35508. {
  35509. name: "Giant",
  35510. height: math.unit(100, "feet")
  35511. },
  35512. {
  35513. name: "Kaiju",
  35514. height: math.unit(300, "feet")
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35520. {
  35521. dragon: {
  35522. height: math.unit(5, "meters"),
  35523. name: "Dragon",
  35524. image: {
  35525. source: "./media/characters/sabrina/dragon.svg",
  35526. extra: 3670 / 2365,
  35527. bottom: 333 / 4003
  35528. }
  35529. },
  35530. gryphon: {
  35531. height: math.unit(3, "meters"),
  35532. name: "Gryphon",
  35533. image: {
  35534. source: "./media/characters/sabrina/gryphon.svg",
  35535. extra: 1576 / 945,
  35536. bottom: 71 / 1647
  35537. }
  35538. },
  35539. snake: {
  35540. height: math.unit(12, "meters"),
  35541. name: "Snake",
  35542. image: {
  35543. source: "./media/characters/sabrina/snake.svg",
  35544. extra: 1758 / 1320,
  35545. bottom: 186 / 1944
  35546. }
  35547. },
  35548. collar: {
  35549. height: math.unit(1.86, "meters"),
  35550. name: "Collar",
  35551. image: {
  35552. source: "./media/characters/sabrina/collar.svg"
  35553. }
  35554. },
  35555. eye: {
  35556. height: math.unit(0.53, "meters"),
  35557. name: "Eye",
  35558. image: {
  35559. source: "./media/characters/sabrina/eye.svg"
  35560. }
  35561. },
  35562. foot: {
  35563. height: math.unit(1.86, "meters"),
  35564. name: "Foot",
  35565. image: {
  35566. source: "./media/characters/sabrina/foot.svg"
  35567. }
  35568. },
  35569. hand: {
  35570. height: math.unit(1.32, "meters"),
  35571. name: "Hand",
  35572. image: {
  35573. source: "./media/characters/sabrina/hand.svg"
  35574. }
  35575. },
  35576. head: {
  35577. height: math.unit(2.44, "meters"),
  35578. name: "Head",
  35579. image: {
  35580. source: "./media/characters/sabrina/head.svg"
  35581. }
  35582. },
  35583. headAngry: {
  35584. height: math.unit(2.44, "meters"),
  35585. name: "Head (Angry))",
  35586. image: {
  35587. source: "./media/characters/sabrina/head-angry.svg"
  35588. }
  35589. },
  35590. maw: {
  35591. height: math.unit(1.65, "meters"),
  35592. name: "Maw",
  35593. image: {
  35594. source: "./media/characters/sabrina/maw.svg"
  35595. }
  35596. },
  35597. spikes: {
  35598. height: math.unit(1.69, "meters"),
  35599. name: "Spikes",
  35600. image: {
  35601. source: "./media/characters/sabrina/spikes.svg"
  35602. }
  35603. },
  35604. stomach: {
  35605. height: math.unit(1.15, "meters"),
  35606. name: "Stomach",
  35607. image: {
  35608. source: "./media/characters/sabrina/stomach.svg"
  35609. }
  35610. },
  35611. tongue: {
  35612. height: math.unit(1.27, "meters"),
  35613. name: "Tongue",
  35614. image: {
  35615. source: "./media/characters/sabrina/tongue.svg"
  35616. }
  35617. },
  35618. wingDorsal: {
  35619. height: math.unit(4.85, "meters"),
  35620. name: "Wing (Dorsal)",
  35621. image: {
  35622. source: "./media/characters/sabrina/wing-dorsal.svg"
  35623. }
  35624. },
  35625. wingVentral: {
  35626. height: math.unit(4.85, "meters"),
  35627. name: "Wing (Ventral)",
  35628. image: {
  35629. source: "./media/characters/sabrina/wing-ventral.svg"
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(5, "meters"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35643. {
  35644. frontMaid: {
  35645. height: math.unit(5 + 5/12, "feet"),
  35646. weight: math.unit(130, "lb"),
  35647. name: "Front (Maid)",
  35648. image: {
  35649. source: "./media/characters/midnight-tales/front-maid.svg",
  35650. extra: 489/454,
  35651. bottom: 61/550
  35652. }
  35653. },
  35654. frontFormal: {
  35655. height: math.unit(5 + 5/12, "feet"),
  35656. weight: math.unit(130, "lb"),
  35657. name: "Front (Formal)",
  35658. image: {
  35659. source: "./media/characters/midnight-tales/front-formal.svg",
  35660. extra: 489/454,
  35661. bottom: 61/550
  35662. }
  35663. },
  35664. back: {
  35665. height: math.unit(5 + 5/12, "feet"),
  35666. weight: math.unit(130, "lb"),
  35667. name: "Back",
  35668. image: {
  35669. source: "./media/characters/midnight-tales/back.svg",
  35670. extra: 498/456,
  35671. bottom: 33/531
  35672. }
  35673. },
  35674. frontBeast: {
  35675. height: math.unit(40, "feet"),
  35676. weight: math.unit(64000, "lb"),
  35677. name: "Front (Beast)",
  35678. image: {
  35679. source: "./media/characters/midnight-tales/front-beast.svg",
  35680. extra: 927/860,
  35681. bottom: 53/980
  35682. }
  35683. },
  35684. backBeast: {
  35685. height: math.unit(40, "feet"),
  35686. weight: math.unit(64000, "lb"),
  35687. name: "Back (Beast)",
  35688. image: {
  35689. source: "./media/characters/midnight-tales/back-beast.svg",
  35690. extra: 929/855,
  35691. bottom: 16/945
  35692. }
  35693. },
  35694. footBeast: {
  35695. height: math.unit(6.7, "feet"),
  35696. name: "Foot (Beast)",
  35697. image: {
  35698. source: "./media/characters/midnight-tales/foot-beast.svg"
  35699. }
  35700. },
  35701. headBeast: {
  35702. height: math.unit(8, "feet"),
  35703. name: "Head (Beast)",
  35704. image: {
  35705. source: "./media/characters/midnight-tales/head-beast.svg"
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(5 + 5 / 12, "feet"),
  35713. default: true
  35714. },
  35715. {
  35716. name: "Macro",
  35717. height: math.unit(25, "feet")
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35723. {
  35724. front: {
  35725. height: math.unit(5 + 10/12, "feet"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/argon/front.svg",
  35729. extra: 2009/1935,
  35730. bottom: 118/2127
  35731. }
  35732. },
  35733. back: {
  35734. height: math.unit(5 + 10/12, "feet"),
  35735. name: "Back",
  35736. image: {
  35737. source: "./media/characters/argon/back.svg",
  35738. extra: 2047/1992,
  35739. bottom: 20/2067
  35740. }
  35741. },
  35742. frontDressed: {
  35743. height: math.unit(5 + 10/12, "feet"),
  35744. name: "Front (Dressed)",
  35745. image: {
  35746. source: "./media/characters/argon/front-dressed.svg",
  35747. extra: 2009/1935,
  35748. bottom: 118/2127
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(5 + 10/12, "feet"),
  35756. default: true
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(8 + 6/12, "feet"),
  35765. weight: math.unit(1150, "lb"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/kichi/front.svg",
  35769. extra: 1267/1164,
  35770. bottom: 61/1328
  35771. }
  35772. },
  35773. back: {
  35774. height: math.unit(8 + 6/12, "feet"),
  35775. weight: math.unit(1150, "lb"),
  35776. name: "Back",
  35777. image: {
  35778. source: "./media/characters/kichi/back.svg",
  35779. extra: 1273/1166,
  35780. bottom: 33/1306
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(8 + 6/12, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(6, "feet"),
  35797. weight: math.unit(210, "lb"),
  35798. name: "Front",
  35799. image: {
  35800. source: "./media/characters/manetel-greyscale/front.svg",
  35801. extra: 350/312,
  35802. bottom: 8/358
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Micro",
  35809. height: math.unit(2, "inches")
  35810. },
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(6, "feet"),
  35814. default: true
  35815. },
  35816. {
  35817. name: "Minimacro",
  35818. height: math.unit(17, "feet")
  35819. },
  35820. {
  35821. name: "Macro",
  35822. height: math.unit(117, "feet")
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35828. {
  35829. side: {
  35830. height: math.unit(5 + 1/12, "feet"),
  35831. weight: math.unit(418, "lb"),
  35832. name: "Side",
  35833. image: {
  35834. source: "./media/characters/softpurr/side.svg",
  35835. extra: 1993/1945,
  35836. bottom: 134/2127
  35837. }
  35838. },
  35839. front: {
  35840. height: math.unit(5 + 1/12, "feet"),
  35841. weight: math.unit(418, "lb"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/softpurr/front.svg",
  35845. extra: 1950/1856,
  35846. bottom: 174/2124
  35847. }
  35848. },
  35849. paw: {
  35850. height: math.unit(1, "feet"),
  35851. name: "Paw",
  35852. image: {
  35853. source: "./media/characters/softpurr/paw.svg"
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(5 + 1/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(260, "meters"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/anahita/front.svg",
  35873. extra: 665/635,
  35874. bottom: 89/754
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Macro",
  35881. height: math.unit(260, "meters"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35888. {
  35889. front: {
  35890. height: math.unit(4 + 10/12, "feet"),
  35891. weight: math.unit(160, "lb"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/chip-mouse/front.svg",
  35895. extra: 3528/3408,
  35896. bottom: 0/3528
  35897. }
  35898. },
  35899. frontNsfw: {
  35900. height: math.unit(4 + 10/12, "feet"),
  35901. weight: math.unit(160, "lb"),
  35902. name: "Front (NSFW)",
  35903. image: {
  35904. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35905. extra: 3528/3408,
  35906. bottom: 0/3528
  35907. }
  35908. },
  35909. },
  35910. [
  35911. {
  35912. name: "Normal",
  35913. height: math.unit(4 + 10/12, "feet"),
  35914. default: true
  35915. },
  35916. ]
  35917. ))
  35918. characterMakers.push(() => makeCharacter(
  35919. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35920. {
  35921. side: {
  35922. height: math.unit(10, "feet"),
  35923. weight: math.unit(14000, "lb"),
  35924. name: "Side",
  35925. image: {
  35926. source: "./media/characters/kremm/side.svg",
  35927. extra: 1390/1053,
  35928. bottom: 90/1480
  35929. }
  35930. },
  35931. gut: {
  35932. height: math.unit(5.8, "feet"),
  35933. name: "Gut",
  35934. image: {
  35935. source: "./media/characters/kremm/gut.svg"
  35936. }
  35937. },
  35938. ass: {
  35939. height: math.unit(6.1, "feet"),
  35940. name: "Ass",
  35941. image: {
  35942. source: "./media/characters/kremm/ass.svg"
  35943. }
  35944. },
  35945. jaws: {
  35946. height: math.unit(2.2, "feet"),
  35947. name: "Jaws",
  35948. image: {
  35949. source: "./media/characters/kremm/jaws.svg"
  35950. }
  35951. },
  35952. dick: {
  35953. height: math.unit(4.26, "feet"),
  35954. name: "Dick",
  35955. image: {
  35956. source: "./media/characters/kremm/dick.svg"
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(10, "feet"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(30, "stories"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/kai/front.svg",
  35976. extra: 1892/1718,
  35977. bottom: 162/2054
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Macro",
  35984. height: math.unit(30, "stories"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(6 + 4/12, "feet"),
  35994. weight: math.unit(145, "lb"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/sykes/front.svg",
  35998. extra: 1321 / 1187,
  35999. bottom: 66 / 1387
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(6 + 4/12, "feet"),
  36004. weight: math.unit(145, "lb"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/sykes/back.svg",
  36008. extra: 1326/1181,
  36009. bottom: 31/1357
  36010. }
  36011. },
  36012. traditionalOutfit: {
  36013. height: math.unit(6 + 4/12, "feet"),
  36014. weight: math.unit(145, "lb"),
  36015. name: "Traditional Outfit",
  36016. image: {
  36017. source: "./media/characters/sykes/traditional-outfit.svg",
  36018. extra: 1321 / 1187,
  36019. bottom: 66 / 1387
  36020. }
  36021. },
  36022. adventureOutfit: {
  36023. height: math.unit(6 + 4/12, "feet"),
  36024. weight: math.unit(145, "lb"),
  36025. name: "Adventure Outfit",
  36026. image: {
  36027. source: "./media/characters/sykes/adventure-outfit.svg",
  36028. extra: 1321 / 1187,
  36029. bottom: 66 / 1387
  36030. }
  36031. },
  36032. handLeft: {
  36033. height: math.unit(0.9, "feet"),
  36034. name: "Hand (Left)",
  36035. image: {
  36036. source: "./media/characters/sykes/hand-left.svg"
  36037. }
  36038. },
  36039. handRight: {
  36040. height: math.unit(0.839, "feet"),
  36041. name: "Hand (Right)",
  36042. image: {
  36043. source: "./media/characters/sykes/hand-right.svg"
  36044. }
  36045. },
  36046. leftFoot: {
  36047. height: math.unit(1.2, "feet"),
  36048. name: "Foot (Left)",
  36049. image: {
  36050. source: "./media/characters/sykes/foot-left.svg"
  36051. }
  36052. },
  36053. rightFoot: {
  36054. height: math.unit(1.2, "feet"),
  36055. name: "Foot (Right)",
  36056. image: {
  36057. source: "./media/characters/sykes/foot-right.svg"
  36058. }
  36059. },
  36060. maw: {
  36061. height: math.unit(1.93, "feet"),
  36062. name: "Maw",
  36063. image: {
  36064. source: "./media/characters/sykes/maw.svg"
  36065. }
  36066. },
  36067. teeth: {
  36068. height: math.unit(0.51, "feet"),
  36069. name: "Teeth",
  36070. image: {
  36071. source: "./media/characters/sykes/teeth.svg"
  36072. }
  36073. },
  36074. tongue: {
  36075. height: math.unit(2.13, "feet"),
  36076. name: "Tongue",
  36077. image: {
  36078. source: "./media/characters/sykes/tongue.svg"
  36079. }
  36080. },
  36081. uvula: {
  36082. height: math.unit(0.16, "feet"),
  36083. name: "Uvula",
  36084. image: {
  36085. source: "./media/characters/sykes/uvula.svg"
  36086. }
  36087. },
  36088. collar: {
  36089. height: math.unit(0.287, "feet"),
  36090. name: "Collar",
  36091. image: {
  36092. source: "./media/characters/sykes/collar.svg"
  36093. }
  36094. },
  36095. tail: {
  36096. height: math.unit(3.8, "feet"),
  36097. name: "Tail",
  36098. image: {
  36099. source: "./media/characters/sykes/tail.svg"
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Shrunken",
  36106. height: math.unit(5, "inches")
  36107. },
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(6 + 4 / 12, "feet"),
  36111. default: true
  36112. },
  36113. {
  36114. name: "Big",
  36115. height: math.unit(15, "feet")
  36116. },
  36117. ]
  36118. ))
  36119. characterMakers.push(() => makeCharacter(
  36120. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36121. {
  36122. front: {
  36123. height: math.unit(5 + 8/12, "feet"),
  36124. weight: math.unit(190, "lb"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/oven-otter/front.svg",
  36128. extra: 1809/1740,
  36129. bottom: 181/1990
  36130. }
  36131. },
  36132. back: {
  36133. height: math.unit(5 + 8/12, "feet"),
  36134. weight: math.unit(190, "lb"),
  36135. name: "Back",
  36136. image: {
  36137. source: "./media/characters/oven-otter/back.svg",
  36138. extra: 1709/1635,
  36139. bottom: 118/1827
  36140. }
  36141. },
  36142. hand: {
  36143. height: math.unit(1.07, "feet"),
  36144. name: "Hand",
  36145. image: {
  36146. source: "./media/characters/oven-otter/hand.svg"
  36147. }
  36148. },
  36149. beans: {
  36150. height: math.unit(1.74, "feet"),
  36151. name: "Beans",
  36152. image: {
  36153. source: "./media/characters/oven-otter/beans.svg"
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Micro",
  36160. height: math.unit(0.5, "inches")
  36161. },
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(5 + 8/12, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Macro",
  36169. height: math.unit(250, "feet")
  36170. },
  36171. {
  36172. name: "Really High",
  36173. height: math.unit(420, "feet")
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36179. {
  36180. front: {
  36181. height: math.unit(5, "meters"),
  36182. weight: math.unit(292000000000000, "kg"),
  36183. name: "Front",
  36184. image: {
  36185. source: "./media/characters/devourer/front.svg",
  36186. extra: 1800/1733,
  36187. bottom: 211/2011
  36188. }
  36189. },
  36190. maw: {
  36191. height: math.unit(1.1, "meter"),
  36192. name: "Maw",
  36193. image: {
  36194. source: "./media/characters/devourer/maw.svg"
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Small",
  36201. height: math.unit(3, "meters")
  36202. },
  36203. {
  36204. name: "Large",
  36205. height: math.unit(5, "meters"),
  36206. default: true
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36212. {
  36213. front: {
  36214. height: math.unit(6, "feet"),
  36215. weight: math.unit(400, "lb"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/ellarby/front.svg",
  36219. extra: 1909/1763,
  36220. bottom: 80/1989
  36221. }
  36222. },
  36223. back: {
  36224. height: math.unit(6, "feet"),
  36225. weight: math.unit(400, "lb"),
  36226. name: "Back",
  36227. image: {
  36228. source: "./media/characters/ellarby/back.svg",
  36229. extra: 1914/1784,
  36230. bottom: 172/2086
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Mischief",
  36237. height: math.unit(18, "inches")
  36238. },
  36239. {
  36240. name: "Trouble",
  36241. height: math.unit(12, "feet")
  36242. },
  36243. {
  36244. name: "Havoc",
  36245. height: math.unit(200, "feet"),
  36246. default: true
  36247. },
  36248. {
  36249. name: "Pandemonium",
  36250. height: math.unit(1, "mile")
  36251. },
  36252. {
  36253. name: "Catastrophe",
  36254. height: math.unit(100, "miles")
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36260. {
  36261. front: {
  36262. height: math.unit(4.7, "meters"),
  36263. weight: math.unit(6500, "kg"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/vex/front.svg",
  36267. extra: 1288/1140,
  36268. bottom: 100/1388
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(4.7, "meters"),
  36276. default: true
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36282. {
  36283. normal: {
  36284. height: math.unit(6, "feet"),
  36285. weight: math.unit(350, "lb"),
  36286. name: "Normal",
  36287. image: {
  36288. source: "./media/characters/teshy/normal.svg",
  36289. extra: 1795/1735,
  36290. bottom: 16/1811
  36291. }
  36292. },
  36293. monsterFront: {
  36294. height: math.unit(12, "feet"),
  36295. weight: math.unit(4700, "lb"),
  36296. name: "Monster (Front)",
  36297. image: {
  36298. source: "./media/characters/teshy/monster-front.svg",
  36299. extra: 2042/2034,
  36300. bottom: 128/2170
  36301. }
  36302. },
  36303. monsterSide: {
  36304. height: math.unit(12, "feet"),
  36305. weight: math.unit(4700, "lb"),
  36306. name: "Monster (Side)",
  36307. image: {
  36308. source: "./media/characters/teshy/monster-side.svg",
  36309. extra: 2067/2056,
  36310. bottom: 70/2137
  36311. }
  36312. },
  36313. monsterBack: {
  36314. height: math.unit(12, "feet"),
  36315. weight: math.unit(4700, "lb"),
  36316. name: "Monster (Back)",
  36317. image: {
  36318. source: "./media/characters/teshy/monster-back.svg",
  36319. extra: 1921/1914,
  36320. bottom: 171/2092
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(6, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(6, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/ramey/front.svg",
  36340. extra: 790/787,
  36341. bottom: 27/817
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(6, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(5 + 5/12, "feet"),
  36358. weight: math.unit(120, "lb"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/phirae/front.svg",
  36362. extra: 2491/2436,
  36363. bottom: 38/2529
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(5 + 5/12, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36377. {
  36378. front: {
  36379. height: math.unit(5 + 3/12, "feet"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/stagglas/front.svg",
  36383. extra: 962/882,
  36384. bottom: 53/1015
  36385. }
  36386. },
  36387. feral: {
  36388. height: math.unit(335, "cm"),
  36389. name: "Feral",
  36390. image: {
  36391. source: "./media/characters/stagglas/feral.svg",
  36392. extra: 1732/1090,
  36393. bottom: 48/1780
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(5 + 3/12, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(5 + 4/12, "feet"),
  36410. weight: math.unit(145, "lb"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/starra/front.svg",
  36414. extra: 1790/1691,
  36415. bottom: 91/1881
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(5 + 4/12, "feet"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36429. {
  36430. front: {
  36431. height: math.unit(2.2, "meters"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36435. extra: 1248/972,
  36436. bottom: 38/1286
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(2.2, "meters"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36450. {
  36451. side: {
  36452. height: math.unit(8 + 2/12, "feet"),
  36453. weight: math.unit(1240, "lb"),
  36454. name: "Side",
  36455. image: {
  36456. source: "./media/characters/mika-valentine/side.svg",
  36457. extra: 2670/2501,
  36458. bottom: 250/2920
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(8 + 2/12, "feet"),
  36466. default: true
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(7 + 2/12, "feet"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/xoltol/front.svg",
  36478. extra: 2212/2124,
  36479. bottom: 84/2296
  36480. }
  36481. },
  36482. side: {
  36483. height: math.unit(7 + 2/12, "feet"),
  36484. name: "Side",
  36485. image: {
  36486. source: "./media/characters/xoltol/side.svg",
  36487. extra: 2273/2197,
  36488. bottom: 26/2299
  36489. }
  36490. },
  36491. hand: {
  36492. height: math.unit(2.5, "feet"),
  36493. name: "Hand",
  36494. image: {
  36495. source: "./media/characters/xoltol/hand.svg"
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Small-ish",
  36502. height: math.unit(5 + 11/12, "feet")
  36503. },
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(7 + 2/12, "feet")
  36507. },
  36508. {
  36509. name: "\"Macro\"",
  36510. height: math.unit(14 + 9/12, "feet"),
  36511. default: true
  36512. },
  36513. {
  36514. name: "Alternate Height",
  36515. height: math.unit(20, "feet")
  36516. },
  36517. {
  36518. name: "Actually Macro",
  36519. height: math.unit(100, "feet")
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(5 + 2/12, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/kotetsu-redwood/front.svg",
  36531. extra: 1053/942,
  36532. bottom: 60/1113
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(5 + 2/12, "feet"),
  36540. default: true
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(2.4, "meters"),
  36549. weight: math.unit(125, "kg"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/lilith/front.svg",
  36553. extra: 1590/1513,
  36554. bottom: 203/1793
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Humanoid",
  36561. height: math.unit(2.4, "meters")
  36562. },
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(6, "meters"),
  36566. default: true
  36567. },
  36568. {
  36569. name: "Largest",
  36570. height: math.unit(55, "meters")
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(8 + 4/12, "feet"),
  36579. weight: math.unit(535, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/beh'kah-bolger/front.svg",
  36583. extra: 1660/1603,
  36584. bottom: 37/1697
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(8 + 4/12, "feet"),
  36592. default: true
  36593. },
  36594. {
  36595. name: "Kaiju",
  36596. height: math.unit(250, "feet")
  36597. },
  36598. {
  36599. name: "Still Growing",
  36600. height: math.unit(10, "miles")
  36601. },
  36602. {
  36603. name: "Continental",
  36604. height: math.unit(5000, "miles")
  36605. },
  36606. {
  36607. name: "Final Form",
  36608. height: math.unit(2500000, "miles")
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36614. {
  36615. front: {
  36616. height: math.unit(7 + 2/12, "feet"),
  36617. weight: math.unit(230, "kg"),
  36618. name: "Front",
  36619. image: {
  36620. source: "./media/characters/tatyana-milewska/front.svg",
  36621. extra: 1199/1150,
  36622. bottom: 86/1285
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(7 + 2/12, "feet"),
  36630. default: true
  36631. },
  36632. {
  36633. name: "Big",
  36634. height: math.unit(12, "feet")
  36635. },
  36636. {
  36637. name: "Minimacro",
  36638. height: math.unit(20, "feet")
  36639. },
  36640. {
  36641. name: "Macro",
  36642. height: math.unit(120, "feet")
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(7 + 8/12, "feet"),
  36651. weight: math.unit(152, "kg"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/helen-arri/front.svg",
  36655. extra: 440/423,
  36656. bottom: 14/454
  36657. }
  36658. },
  36659. back: {
  36660. height: math.unit(7 + 8/12, "feet"),
  36661. weight: math.unit(152, "kg"),
  36662. name: "Back",
  36663. image: {
  36664. source: "./media/characters/helen-arri/back.svg",
  36665. extra: 443/426,
  36666. bottom: 8/451
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(7 + 8/12, "feet"),
  36674. default: true
  36675. },
  36676. {
  36677. name: "Big",
  36678. height: math.unit(14, "feet")
  36679. },
  36680. {
  36681. name: "Minimacro",
  36682. height: math.unit(24, "feet")
  36683. },
  36684. {
  36685. name: "Macro",
  36686. height: math.unit(140, "feet")
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(6, "meters"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/ehanu-rehu/front.svg",
  36698. extra: 1800/1800,
  36699. bottom: 59/1859
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(6, "meters"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(7 + 3/12, "feet"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/renholder/front.svg",
  36719. extra: 3096/2960,
  36720. bottom: 250/3346
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal Bat",
  36727. height: math.unit(7 + 3/12, "feet"),
  36728. default: true
  36729. },
  36730. {
  36731. name: "Slightly Tall Bat",
  36732. height: math.unit(100, "feet")
  36733. },
  36734. {
  36735. name: "Big Bat",
  36736. height: math.unit(1000, "feet")
  36737. },
  36738. {
  36739. name: "City-Sized Bat",
  36740. height: math.unit(200000, "feet")
  36741. },
  36742. {
  36743. name: "Bigger Bat",
  36744. height: math.unit(10000, "miles")
  36745. },
  36746. {
  36747. name: "Solar Sized Bat",
  36748. height: math.unit(100, "AU")
  36749. },
  36750. {
  36751. name: "Galactic Bat",
  36752. height: math.unit(200000, "lightyears")
  36753. },
  36754. {
  36755. name: "Universally Known Bat",
  36756. height: math.unit(1, "universe")
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(6 + 11/12, "feet"),
  36765. weight: math.unit(250, "lb"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/cookiecat/front.svg",
  36769. extra: 893/827,
  36770. bottom: 14/907
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Micro",
  36777. height: math.unit(3, "inches")
  36778. },
  36779. {
  36780. name: "Normal",
  36781. height: math.unit(6 + 11/12, "feet"),
  36782. default: true
  36783. },
  36784. {
  36785. name: "Macro",
  36786. height: math.unit(100, "feet")
  36787. },
  36788. {
  36789. name: "Macro+",
  36790. height: math.unit(404, "feet")
  36791. },
  36792. {
  36793. name: "Megamacro",
  36794. height: math.unit(165, "miles")
  36795. },
  36796. {
  36797. name: "Planetary",
  36798. height: math.unit(4600, "miles")
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(10 + 3/12, "feet"),
  36807. weight: math.unit(1500, "lb"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/tux-kusanagi/front.svg",
  36811. extra: 944/840,
  36812. bottom: 39/983
  36813. }
  36814. },
  36815. back: {
  36816. height: math.unit(10 + 3/12, "feet"),
  36817. weight: math.unit(1500, "lb"),
  36818. name: "Back",
  36819. image: {
  36820. source: "./media/characters/tux-kusanagi/back.svg",
  36821. extra: 941/842,
  36822. bottom: 28/969
  36823. }
  36824. },
  36825. rump: {
  36826. height: math.unit(5.25, "feet"),
  36827. name: "Rump",
  36828. image: {
  36829. source: "./media/characters/tux-kusanagi/rump.svg"
  36830. }
  36831. },
  36832. beak: {
  36833. height: math.unit(1.54, "feet"),
  36834. name: "Beak",
  36835. image: {
  36836. source: "./media/characters/tux-kusanagi/beak.svg"
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(10 + 3/12, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(58, "feet"),
  36853. weight: math.unit(200, "tons"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/uzarmazari/front.svg",
  36857. extra: 1575/1455,
  36858. bottom: 152/1727
  36859. }
  36860. },
  36861. back: {
  36862. height: math.unit(58, "feet"),
  36863. weight: math.unit(200, "tons"),
  36864. name: "Back",
  36865. image: {
  36866. source: "./media/characters/uzarmazari/back.svg",
  36867. extra: 1585/1510,
  36868. bottom: 157/1742
  36869. }
  36870. },
  36871. head: {
  36872. height: math.unit(26, "feet"),
  36873. name: "Head",
  36874. image: {
  36875. source: "./media/characters/uzarmazari/head.svg"
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(58, "feet"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36889. {
  36890. side: {
  36891. height: math.unit(15, "feet"),
  36892. name: "Side",
  36893. image: {
  36894. source: "./media/characters/akitu/side.svg",
  36895. extra: 1421/1321,
  36896. bottom: 157/1578
  36897. }
  36898. },
  36899. front: {
  36900. height: math.unit(15, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/akitu/front.svg",
  36904. extra: 1435/1326,
  36905. bottom: 232/1667
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(15, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(10 + 8/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/azalie-croixland/front.svg",
  36925. extra: 1972/1856,
  36926. bottom: 31/2003
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Original Height",
  36933. height: math.unit(5 + 4/12, "feet")
  36934. },
  36935. {
  36936. name: "Normal Height",
  36937. height: math.unit(10 + 8/12, "feet"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36944. {
  36945. side: {
  36946. height: math.unit(7 + 1/12, "feet"),
  36947. weight: math.unit(245, "lb"),
  36948. name: "Side",
  36949. image: {
  36950. source: "./media/characters/kavus-kazian/side.svg",
  36951. extra: 349/342,
  36952. bottom: 15/364
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(7 + 1/12, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36966. {
  36967. normalFront: {
  36968. height: math.unit(5 + 11/12, "feet"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/moonlight-rose/normal-front.svg",
  36972. extra: 1980/1825,
  36973. bottom: 18/1998
  36974. },
  36975. form: "normal",
  36976. default: true
  36977. },
  36978. normalBack: {
  36979. height: math.unit(5 + 11/12, "feet"),
  36980. name: "Back",
  36981. image: {
  36982. source: "./media/characters/moonlight-rose/normal-back.svg",
  36983. extra: 2010/1839,
  36984. bottom: 10/2020
  36985. },
  36986. form: "normal"
  36987. },
  36988. demonFront: {
  36989. height: math.unit(1.5, "earths"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/moonlight-rose/demon.svg",
  36993. extra: 1400/1294,
  36994. bottom: 45/1445
  36995. },
  36996. form: "demon",
  36997. default: true
  36998. },
  36999. terraFront: {
  37000. height: math.unit(1.5, "earths"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/moonlight-rose/terra.svg"
  37004. },
  37005. form: "terra",
  37006. default: true
  37007. },
  37008. jupiterFront: {
  37009. height: math.unit(69911*2, "km"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37013. extra: 1367/1286,
  37014. bottom: 55/1422
  37015. },
  37016. form: "jupiter",
  37017. default: true
  37018. },
  37019. neptuneFront: {
  37020. height: math.unit(24622*2, "feet"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37024. extra: 1851/1712,
  37025. bottom: 0/1851
  37026. },
  37027. form: "neptune",
  37028. default: true
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "\"Natural\" Height",
  37034. height: math.unit(5 + 11/12, "feet"),
  37035. form: "normal"
  37036. },
  37037. {
  37038. name: "Smallest comfortable size",
  37039. height: math.unit(40, "meters"),
  37040. form: "normal"
  37041. },
  37042. {
  37043. name: "Common size",
  37044. height: math.unit(50, "km"),
  37045. form: "normal",
  37046. default: true
  37047. },
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(1.5, "earths"),
  37051. form: "demon",
  37052. default: true
  37053. },
  37054. {
  37055. name: "Universal",
  37056. height: math.unit(15, "universes"),
  37057. form: "demon"
  37058. },
  37059. {
  37060. name: "Earth",
  37061. height: math.unit(1.5, "earths"),
  37062. form: "terra",
  37063. default: true
  37064. },
  37065. {
  37066. name: "Super Earth",
  37067. height: math.unit(67.5, "earths"),
  37068. form: "terra"
  37069. },
  37070. {
  37071. name: "Doesn't fit in a solar system...",
  37072. height: math.unit(1, "galaxy"),
  37073. form: "terra"
  37074. },
  37075. {
  37076. name: "Saturn",
  37077. height: math.unit(58232*2, "km"),
  37078. form: "jupiter"
  37079. },
  37080. {
  37081. name: "Jupiter",
  37082. height: math.unit(69911*2, "km"),
  37083. form: "jupiter",
  37084. default: true
  37085. },
  37086. {
  37087. name: "HD 100546 b",
  37088. height: math.unit(482938, "km"),
  37089. form: "jupiter"
  37090. },
  37091. {
  37092. name: "Enceladus",
  37093. height: math.unit(513*2, "km"),
  37094. form: "neptune"
  37095. },
  37096. {
  37097. name: "Europe",
  37098. height: math.unit(1560*2, "km"),
  37099. form: "neptune"
  37100. },
  37101. {
  37102. name: "Neptune",
  37103. height: math.unit(24622*2, "km"),
  37104. form: "neptune",
  37105. default: true
  37106. },
  37107. {
  37108. name: "CoRoT-9b",
  37109. height: math.unit(75067*2, "km"),
  37110. form: "neptune"
  37111. },
  37112. ],
  37113. {
  37114. "normal": {
  37115. name: "Normal",
  37116. default: true
  37117. },
  37118. "demon": {
  37119. name: "Demon"
  37120. },
  37121. "terra": {
  37122. name: "Terra"
  37123. },
  37124. "jupiter": {
  37125. name: "Jupiter"
  37126. },
  37127. "neptune": {
  37128. name: "Neptune"
  37129. }
  37130. }
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37134. {
  37135. front: {
  37136. height: math.unit(16, "feet"),
  37137. weight: math.unit(610, "kg"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/huckle/front.svg",
  37141. extra: 1731/1625,
  37142. bottom: 33/1764
  37143. }
  37144. },
  37145. back: {
  37146. height: math.unit(16, "feet"),
  37147. weight: math.unit(610, "kg"),
  37148. name: "Back",
  37149. image: {
  37150. source: "./media/characters/huckle/back.svg",
  37151. extra: 1738/1651,
  37152. bottom: 37/1775
  37153. }
  37154. },
  37155. laughing: {
  37156. height: math.unit(3.75, "feet"),
  37157. name: "Laughing",
  37158. image: {
  37159. source: "./media/characters/huckle/laughing.svg"
  37160. }
  37161. },
  37162. angry: {
  37163. height: math.unit(4.15, "feet"),
  37164. name: "Angry",
  37165. image: {
  37166. source: "./media/characters/huckle/angry.svg"
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Normal",
  37173. height: math.unit(16, "feet"),
  37174. default: true
  37175. },
  37176. {
  37177. name: "Mini Macro",
  37178. height: math.unit(463, "feet")
  37179. },
  37180. {
  37181. name: "Macro",
  37182. height: math.unit(1680, "meters")
  37183. },
  37184. {
  37185. name: "Mega Macro",
  37186. height: math.unit(175, "km")
  37187. },
  37188. {
  37189. name: "Terra Macro",
  37190. height: math.unit(32, "gigameters")
  37191. },
  37192. {
  37193. name: "Multiverse+",
  37194. height: math.unit(2.56e23, "yottameters")
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(6 + 9/12, "feet"),
  37203. weight: math.unit(280, "lb"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/candy/front.svg",
  37207. extra: 234/217,
  37208. bottom: 11/245
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Really Small",
  37215. height: math.unit(0.1, "nm")
  37216. },
  37217. {
  37218. name: "Micro",
  37219. height: math.unit(2, "inches")
  37220. },
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(6 + 9/12, "feet"),
  37224. default: true
  37225. },
  37226. {
  37227. name: "Small Macro",
  37228. height: math.unit(69, "feet")
  37229. },
  37230. {
  37231. name: "Macro",
  37232. height: math.unit(160, "feet")
  37233. },
  37234. {
  37235. name: "Megamacro",
  37236. height: math.unit(22000, "miles")
  37237. },
  37238. {
  37239. name: "Gigamacro",
  37240. height: math.unit(50000, "miles")
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37246. {
  37247. front: {
  37248. height: math.unit(4, "feet"),
  37249. weight: math.unit(90, "lb"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/joey-mcdonald/front.svg",
  37253. extra: 1059/852,
  37254. bottom: 33/1092
  37255. }
  37256. },
  37257. back: {
  37258. height: math.unit(4, "feet"),
  37259. weight: math.unit(90, "lb"),
  37260. name: "Back",
  37261. image: {
  37262. source: "./media/characters/joey-mcdonald/back.svg",
  37263. extra: 1077/879,
  37264. bottom: 5/1082
  37265. }
  37266. },
  37267. frontKobold: {
  37268. height: math.unit(4, "feet"),
  37269. weight: math.unit(100, "lb"),
  37270. name: "Front-kobold",
  37271. image: {
  37272. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37273. extra: 1480/1367,
  37274. bottom: 0/1480
  37275. }
  37276. },
  37277. backKobold: {
  37278. height: math.unit(4, "feet"),
  37279. weight: math.unit(100, "lb"),
  37280. name: "Back-kobold",
  37281. image: {
  37282. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37283. extra: 1449/1361,
  37284. bottom: 0/1449
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(4, "feet"),
  37292. default: true
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37298. {
  37299. front: {
  37300. height: math.unit(12 + 6/12, "feet"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/kass-lockheed/front.svg",
  37304. extra: 354/343,
  37305. bottom: 9/363
  37306. }
  37307. },
  37308. back: {
  37309. height: math.unit(12 + 6/12, "feet"),
  37310. name: "Back",
  37311. image: {
  37312. source: "./media/characters/kass-lockheed/back.svg",
  37313. extra: 364/352,
  37314. bottom: 3/367
  37315. }
  37316. },
  37317. dick: {
  37318. height: math.unit(3.12, "feet"),
  37319. name: "Dick",
  37320. image: {
  37321. source: "./media/characters/kass-lockheed/dick.svg"
  37322. }
  37323. },
  37324. head: {
  37325. height: math.unit(2.6, "feet"),
  37326. name: "Head",
  37327. image: {
  37328. source: "./media/characters/kass-lockheed/head.svg"
  37329. }
  37330. },
  37331. bleh: {
  37332. height: math.unit(2.85, "feet"),
  37333. name: "Bleh",
  37334. image: {
  37335. source: "./media/characters/kass-lockheed/bleh.svg"
  37336. }
  37337. },
  37338. smug: {
  37339. height: math.unit(2.85, "feet"),
  37340. name: "Smug",
  37341. image: {
  37342. source: "./media/characters/kass-lockheed/smug.svg"
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(12 + 6/12, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(6 + 2/12, "feet"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/taylor/front.svg",
  37362. extra: 639/495,
  37363. bottom: 12/651
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(6 + 2/12, "feet"),
  37371. default: true
  37372. },
  37373. {
  37374. name: "Big",
  37375. height: math.unit(15, "feet")
  37376. },
  37377. {
  37378. name: "Lorg",
  37379. height: math.unit(80, "feet")
  37380. },
  37381. {
  37382. name: "Too Lorg",
  37383. height: math.unit(120, "feet")
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(15, "feet"),
  37392. name: "Front",
  37393. image: {
  37394. source: "./media/characters/kaizer/front.svg",
  37395. extra: 1612/1436,
  37396. bottom: 43/1655
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(15, "feet"),
  37404. default: true
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(2, "feet"),
  37413. weight: math.unit(30, "lb"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/sandy/front.svg",
  37417. extra: 1439/1307,
  37418. bottom: 194/1633
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(2, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(3, "feet"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/mellvi/front.svg",
  37438. extra: 1831/1630,
  37439. bottom: 58/1889
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(3, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(5 + 11/12, "feet"),
  37456. weight: math.unit(200, "lb"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/shirou/front.svg",
  37460. extra: 2491/2383,
  37461. bottom: 189/2680
  37462. }
  37463. },
  37464. back: {
  37465. height: math.unit(5 + 11/12, "feet"),
  37466. weight: math.unit(200, "lb"),
  37467. name: "Back",
  37468. image: {
  37469. source: "./media/characters/shirou/back.svg",
  37470. extra: 2554/2450,
  37471. bottom: 76/2630
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(5 + 11/12, "feet"),
  37479. default: true
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(6 + 3/12, "feet"),
  37488. weight: math.unit(177, "lb"),
  37489. name: "Front",
  37490. image: {
  37491. source: "./media/characters/noryu/front.svg",
  37492. extra: 973/885,
  37493. bottom: 10/983
  37494. }
  37495. },
  37496. },
  37497. [
  37498. {
  37499. name: "Normal",
  37500. height: math.unit(6 + 3/12, "feet"),
  37501. default: true
  37502. },
  37503. ]
  37504. ))
  37505. characterMakers.push(() => makeCharacter(
  37506. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37507. {
  37508. front: {
  37509. height: math.unit(5 + 6/12, "feet"),
  37510. weight: math.unit(170, "lb"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/mevolas-rubenido/front.svg",
  37514. extra: 2109/1901,
  37515. bottom: 96/2205
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(5 + 6/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(100, "feet"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/dee/front.svg",
  37535. extra: 2153/2036,
  37536. bottom: 59/2212
  37537. }
  37538. },
  37539. back: {
  37540. height: math.unit(100, "feet"),
  37541. name: "Back",
  37542. image: {
  37543. source: "./media/characters/dee/back.svg",
  37544. extra: 2183/2058,
  37545. bottom: 75/2258
  37546. }
  37547. },
  37548. foot: {
  37549. height: math.unit(19.43, "feet"),
  37550. name: "Foot",
  37551. image: {
  37552. source: "./media/characters/dee/foot.svg"
  37553. }
  37554. },
  37555. hoof: {
  37556. height: math.unit(20.6, "feet"),
  37557. name: "Hoof",
  37558. image: {
  37559. source: "./media/characters/dee/hoof.svg"
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Macro",
  37566. height: math.unit(100, "feet"),
  37567. default: true
  37568. },
  37569. ]
  37570. ))
  37571. characterMakers.push(() => makeCharacter(
  37572. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37573. {
  37574. front: {
  37575. height: math.unit(5 + 6/12, "feet"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/teh/front.svg",
  37579. extra: 1002/847,
  37580. bottom: 62/1064
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(5 + 6/12, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37594. {
  37595. side: {
  37596. height: math.unit(6 + 1/12, "feet"),
  37597. weight: math.unit(204, "lb"),
  37598. name: "Side",
  37599. image: {
  37600. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37601. extra: 974/775,
  37602. bottom: 169/1143
  37603. }
  37604. },
  37605. sitting: {
  37606. height: math.unit(6 + 2/12, "feet"),
  37607. weight: math.unit(204, "lb"),
  37608. name: "Sitting",
  37609. image: {
  37610. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37611. extra: 1175/964,
  37612. bottom: 378/1553
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(6 + 1/12, "feet"),
  37620. default: true
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(6, "inches"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/tululi/front.svg",
  37632. extra: 1997/1876,
  37633. bottom: 20/2017
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(6, "inches"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(4 + 1/12, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/star/front.svg",
  37653. extra: 1493/1189,
  37654. bottom: 48/1541
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(4 + 1/12, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(6 + 3/12, "feet"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/comet/front.svg",
  37674. extra: 1681/1462,
  37675. bottom: 26/1707
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(6 + 3/12, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(950, "feet"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/vortex/front.svg",
  37695. extra: 1497/1434,
  37696. bottom: 56/1553
  37697. }
  37698. },
  37699. maw: {
  37700. height: math.unit(285, "feet"),
  37701. name: "Maw",
  37702. image: {
  37703. source: "./media/characters/vortex/maw.svg"
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Macro",
  37710. height: math.unit(950, "feet"),
  37711. default: true
  37712. },
  37713. ]
  37714. ))
  37715. characterMakers.push(() => makeCharacter(
  37716. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37717. {
  37718. front: {
  37719. height: math.unit(600, "feet"),
  37720. weight: math.unit(0.02, "grams"),
  37721. name: "Front",
  37722. image: {
  37723. source: "./media/characters/doodle/front.svg",
  37724. extra: 1578/1413,
  37725. bottom: 37/1615
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(600, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(6 + 6/12, "feet"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/jai/front.svg",
  37745. extra: 1645/1534,
  37746. bottom: 115/1760
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(6 + 6/12, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37760. {
  37761. front: {
  37762. height: math.unit(6 + 8/12, "feet"),
  37763. name: "Front",
  37764. image: {
  37765. source: "./media/characters/pixel/front.svg",
  37766. extra: 1900/1735,
  37767. bottom: 63/1963
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(6 + 8/12, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37781. {
  37782. back: {
  37783. height: math.unit(4 + 1/12, "feet"),
  37784. weight: math.unit(75, "lb"),
  37785. name: "Back",
  37786. image: {
  37787. source: "./media/characters/rhett/back.svg",
  37788. extra: 930/878,
  37789. bottom: 25/955
  37790. }
  37791. },
  37792. front: {
  37793. height: math.unit(4 + 1/12, "feet"),
  37794. weight: math.unit(75, "lb"),
  37795. name: "Front",
  37796. image: {
  37797. source: "./media/characters/rhett/front.svg",
  37798. extra: 1682/1586,
  37799. bottom: 92/1774
  37800. }
  37801. },
  37802. },
  37803. [
  37804. {
  37805. name: "Micro",
  37806. height: math.unit(8, "inches")
  37807. },
  37808. {
  37809. name: "Tiny",
  37810. height: math.unit(2, "feet")
  37811. },
  37812. {
  37813. name: "Normal",
  37814. height: math.unit(4 + 1/12, "feet"),
  37815. default: true
  37816. },
  37817. ]
  37818. ))
  37819. characterMakers.push(() => makeCharacter(
  37820. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37821. {
  37822. front: {
  37823. height: math.unit(3 + 3/12, "feet"),
  37824. name: "Front",
  37825. image: {
  37826. source: "./media/characters/penny/front.svg",
  37827. extra: 1406/1311,
  37828. bottom: 26/1432
  37829. }
  37830. },
  37831. },
  37832. [
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(3 + 3/12, "feet"),
  37836. default: true
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(4 + 11/12, "feet"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/monty/front.svg",
  37848. extra: 1479/1209,
  37849. bottom: 0/1479
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(4 + 11/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(8 + 4/12, "feet"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/sterling/front.svg",
  37869. extra: 1420/1236,
  37870. bottom: 27/1447
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(8 + 4/12, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(15, "feet"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/marble/front.svg",
  37890. extra: 973/937,
  37891. bottom: 32/1005
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(15, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37905. {
  37906. front: {
  37907. height: math.unit(3, "inches"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/powder/front.svg",
  37911. extra: 1504/1334,
  37912. bottom: 518/2022
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(3, "inches"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(4 + 5/12, "feet"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/joey-raccoon/front.svg",
  37932. extra: 1273/1197,
  37933. bottom: 0/1273
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(4 + 5/12, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(8 + 4/12, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/vick/front.svg",
  37953. extra: 2187/2118,
  37954. bottom: 47/2234
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(8 + 4/12, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(5 + 5/12, "feet"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/mitsy/front.svg",
  37974. extra: 1842/1695,
  37975. bottom: 0/1842
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(5 + 5/12, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(6 + 3/12, "feet"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/silvy/front.svg",
  37995. extra: 1995/1836,
  37996. bottom: 225/2220
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(6 + 3/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(3 + 8/12, "feet"),
  38013. name: "Front",
  38014. image: {
  38015. source: "./media/characters/rodney/front.svg",
  38016. extra: 1956/1747,
  38017. bottom: 31/1987
  38018. }
  38019. },
  38020. frontDressed: {
  38021. height: math.unit(2.9, "feet"),
  38022. name: "Front (Dressed)",
  38023. image: {
  38024. source: "./media/characters/rodney/front-dressed.svg",
  38025. extra: 1382/1241,
  38026. bottom: 385/1767
  38027. }
  38028. },
  38029. },
  38030. [
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(3 + 8/12, "feet"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(5 + 9/12, "feet"),
  38043. weight: math.unit(194, "lbs"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/zakail-sudekai/front.svg",
  38047. extra: 2696/2533,
  38048. bottom: 248/2944
  38049. }
  38050. },
  38051. maw: {
  38052. height: math.unit(1.35, "feet"),
  38053. name: "Maw",
  38054. image: {
  38055. source: "./media/characters/zakail-sudekai/maw.svg"
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(5 + 9/12, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(8 + 4/12, "feet"),
  38072. weight: math.unit(1200, "lb"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/eleanor/front.svg",
  38076. extra: 1226/1192,
  38077. bottom: 52/1278
  38078. }
  38079. },
  38080. back: {
  38081. height: math.unit(8 + 4/12, "feet"),
  38082. weight: math.unit(1200, "lb"),
  38083. name: "Back",
  38084. image: {
  38085. source: "./media/characters/eleanor/back.svg",
  38086. extra: 1242/1184,
  38087. bottom: 60/1302
  38088. }
  38089. },
  38090. head: {
  38091. height: math.unit(2.62, "feet"),
  38092. name: "Head",
  38093. image: {
  38094. source: "./media/characters/eleanor/head.svg"
  38095. }
  38096. },
  38097. },
  38098. [
  38099. {
  38100. name: "Normal",
  38101. height: math.unit(8 + 4/12, "feet"),
  38102. default: true
  38103. },
  38104. ]
  38105. ))
  38106. characterMakers.push(() => makeCharacter(
  38107. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38108. {
  38109. front: {
  38110. height: math.unit(8 + 4/12, "feet"),
  38111. weight: math.unit(750, "lb"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/tanya/front.svg",
  38115. extra: 1749/1615,
  38116. bottom: 33/1782
  38117. }
  38118. },
  38119. },
  38120. [
  38121. {
  38122. name: "Normal",
  38123. height: math.unit(8 + 4/12, "feet"),
  38124. default: true
  38125. },
  38126. ]
  38127. ))
  38128. characterMakers.push(() => makeCharacter(
  38129. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38130. {
  38131. front: {
  38132. height: math.unit(5, "feet"),
  38133. weight: math.unit(225, "lb"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/cindy/front.svg",
  38137. extra: 1320/1250,
  38138. bottom: 42/1362
  38139. }
  38140. },
  38141. frontDressed: {
  38142. height: math.unit(5, "feet"),
  38143. weight: math.unit(225, "lb"),
  38144. name: "Front (Dressed)",
  38145. image: {
  38146. source: "./media/characters/cindy/front-dressed.svg",
  38147. extra: 1320/1250,
  38148. bottom: 42/1362
  38149. }
  38150. },
  38151. back: {
  38152. height: math.unit(5, "feet"),
  38153. weight: math.unit(225, "lb"),
  38154. name: "Back",
  38155. image: {
  38156. source: "./media/characters/cindy/back.svg",
  38157. extra: 1384/1346,
  38158. bottom: 14/1398
  38159. }
  38160. },
  38161. },
  38162. [
  38163. {
  38164. name: "Normal",
  38165. height: math.unit(5, "feet"),
  38166. default: true
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(6 + 9/12, "feet"),
  38175. weight: math.unit(440, "lb"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/wilbur-owen/front.svg",
  38179. extra: 1575/1448,
  38180. bottom: 72/1647
  38181. }
  38182. },
  38183. back: {
  38184. height: math.unit(6 + 9/12, "feet"),
  38185. weight: math.unit(440, "lb"),
  38186. name: "Back",
  38187. image: {
  38188. source: "./media/characters/wilbur-owen/back.svg",
  38189. extra: 1578/1445,
  38190. bottom: 36/1614
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(6 + 9/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(6 + 5/12, "feet"),
  38207. weight: math.unit(650, "lb"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/keegan/front.svg",
  38211. extra: 2387/2198,
  38212. bottom: 33/2420
  38213. }
  38214. },
  38215. side: {
  38216. height: math.unit(6 + 5/12, "feet"),
  38217. weight: math.unit(650, "lb"),
  38218. name: "Side",
  38219. image: {
  38220. source: "./media/characters/keegan/side.svg",
  38221. extra: 2390/2202,
  38222. bottom: 47/2437
  38223. }
  38224. },
  38225. back: {
  38226. height: math.unit(6 + 5/12, "feet"),
  38227. weight: math.unit(650, "lb"),
  38228. name: "Back",
  38229. image: {
  38230. source: "./media/characters/keegan/back.svg",
  38231. extra: 2418/2268,
  38232. bottom: 15/2433
  38233. }
  38234. },
  38235. frontSfw: {
  38236. height: math.unit(6 + 5/12, "feet"),
  38237. weight: math.unit(650, "lb"),
  38238. name: "Front (SFW)",
  38239. image: {
  38240. source: "./media/characters/keegan/front-sfw.svg",
  38241. extra: 2387/2198,
  38242. bottom: 33/2420
  38243. }
  38244. },
  38245. beans: {
  38246. height: math.unit(1.85, "feet"),
  38247. name: "Beans",
  38248. image: {
  38249. source: "./media/characters/keegan/beans.svg"
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(6 + 5/12, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(9, "feet"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/colton/front.svg",
  38269. extra: 1589/1326,
  38270. bottom: 139/1728
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(9, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(2 + 9/12, "feet"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/bora/front.svg",
  38290. extra: 1265/1250,
  38291. bottom: 24/1289
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(2 + 9/12, "feet"),
  38299. default: true
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(8, "feet"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/myu-myu/front.svg",
  38311. extra: 1949/1857,
  38312. bottom: 90/2039
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(8, "feet"),
  38320. default: true
  38321. },
  38322. {
  38323. name: "Big",
  38324. height: math.unit(15, "feet")
  38325. },
  38326. {
  38327. name: "BIG",
  38328. height: math.unit(25, "feet")
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38334. {
  38335. side: {
  38336. height: math.unit(7 + 5/12, "feet"),
  38337. weight: math.unit(2800, "lb"),
  38338. name: "Side",
  38339. image: {
  38340. source: "./media/characters/haloren/side.svg",
  38341. extra: 1793/409,
  38342. bottom: 59/1852
  38343. }
  38344. },
  38345. frontPaw: {
  38346. height: math.unit(2.36, "feet"),
  38347. name: "Front paw",
  38348. image: {
  38349. source: "./media/characters/haloren/front-paw.svg"
  38350. }
  38351. },
  38352. hindPaw: {
  38353. height: math.unit(3.18, "feet"),
  38354. name: "Hind paw",
  38355. image: {
  38356. source: "./media/characters/haloren/hind-paw.svg"
  38357. }
  38358. },
  38359. maw: {
  38360. height: math.unit(5.05, "feet"),
  38361. name: "Maw",
  38362. image: {
  38363. source: "./media/characters/haloren/maw.svg"
  38364. }
  38365. },
  38366. dick: {
  38367. height: math.unit(2.90, "feet"),
  38368. name: "Dick",
  38369. image: {
  38370. source: "./media/characters/haloren/dick.svg"
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(7 + 5/12, "feet"),
  38378. default: true
  38379. },
  38380. {
  38381. name: "Enhanced",
  38382. height: math.unit(14 + 3/12, "feet")
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(171, "cm"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/kimmy/front.svg",
  38394. extra: 1491/1435,
  38395. bottom: 53/1544
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Small",
  38402. height: math.unit(9, "cm")
  38403. },
  38404. {
  38405. name: "Normal",
  38406. height: math.unit(171, "cm"),
  38407. default: true
  38408. },
  38409. ]
  38410. ))
  38411. characterMakers.push(() => makeCharacter(
  38412. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38413. {
  38414. front: {
  38415. height: math.unit(8, "feet"),
  38416. weight: math.unit(300, "lb"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/galeboomer/front.svg",
  38420. extra: 4651/4415,
  38421. bottom: 162/4813
  38422. }
  38423. },
  38424. back: {
  38425. height: math.unit(8, "feet"),
  38426. weight: math.unit(300, "lb"),
  38427. name: "Back",
  38428. image: {
  38429. source: "./media/characters/galeboomer/back.svg",
  38430. extra: 4544/4314,
  38431. bottom: 16/4560
  38432. }
  38433. },
  38434. frontAlt: {
  38435. height: math.unit(8, "feet"),
  38436. weight: math.unit(300, "lb"),
  38437. name: "Front (Alt)",
  38438. image: {
  38439. source: "./media/characters/galeboomer/front-alt.svg",
  38440. extra: 4458/4228,
  38441. bottom: 68/4526
  38442. }
  38443. },
  38444. maw: {
  38445. height: math.unit(1.2, "feet"),
  38446. name: "Maw",
  38447. image: {
  38448. source: "./media/characters/galeboomer/maw.svg"
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Normal",
  38455. height: math.unit(8, "feet"),
  38456. default: true
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(5 + 9/12, "feet"),
  38465. weight: math.unit(120, "lb"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/chyr/front.svg",
  38469. extra: 1323/1254,
  38470. bottom: 63/1386
  38471. }
  38472. },
  38473. back: {
  38474. height: math.unit(5 + 9/12, "feet"),
  38475. weight: math.unit(120, "lb"),
  38476. name: "Back",
  38477. image: {
  38478. source: "./media/characters/chyr/back.svg",
  38479. extra: 1323/1252,
  38480. bottom: 48/1371
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Normal",
  38487. height: math.unit(5 + 9/12, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(7, "feet"),
  38497. weight: math.unit(310, "lb"),
  38498. name: "Front",
  38499. image: {
  38500. source: "./media/characters/solarus/front.svg",
  38501. extra: 2415/2021,
  38502. bottom: 103/2518
  38503. }
  38504. },
  38505. back: {
  38506. height: math.unit(7, "feet"),
  38507. weight: math.unit(310, "lb"),
  38508. name: "Back",
  38509. image: {
  38510. source: "./media/characters/solarus/back.svg",
  38511. extra: 2463/2089,
  38512. bottom: 79/2542
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(7, "feet"),
  38520. default: true
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(16, "feet"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38532. extra: 1844/1780,
  38533. bottom: 58/1902
  38534. }
  38535. },
  38536. winterCoat: {
  38537. height: math.unit(16, "feet"),
  38538. name: "Winter Coat",
  38539. image: {
  38540. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38541. extra: 1807/1775,
  38542. bottom: 69/1876
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(16, "feet"),
  38550. default: true
  38551. },
  38552. {
  38553. name: "Chicago Size",
  38554. height: math.unit(560, "feet")
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(11 + 6/12, "feet"),
  38563. weight: math.unit(1366, "lb"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/lexor/front.svg",
  38567. extra: 1560/1481,
  38568. bottom: 211/1771
  38569. }
  38570. },
  38571. back: {
  38572. height: math.unit(11 + 6/12, "feet"),
  38573. weight: math.unit(1366, "lb"),
  38574. name: "Back",
  38575. image: {
  38576. source: "./media/characters/lexor/back.svg",
  38577. extra: 1614/1533,
  38578. bottom: 76/1690
  38579. }
  38580. },
  38581. maw: {
  38582. height: math.unit(3, "feet"),
  38583. name: "Maw",
  38584. image: {
  38585. source: "./media/characters/lexor/maw.svg"
  38586. }
  38587. },
  38588. dick: {
  38589. height: math.unit(2.59, "feet"),
  38590. name: "Dick",
  38591. image: {
  38592. source: "./media/characters/lexor/dick.svg"
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(11 + 6/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(5 + 8/12, "feet"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/magnum/front.svg",
  38612. extra: 942/855,
  38613. bottom: 26/968
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(5 + 8/12, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(18 + 4/12, "feet"),
  38630. weight: math.unit(1500, "kg"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/solas-sharpsman/front.svg",
  38634. extra: 1698/1589,
  38635. bottom: 0/1698
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(18 + 4/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(5 + 5/12, "feet"),
  38652. weight: math.unit(180, "lb"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/october/front.svg",
  38656. extra: 1800/1650,
  38657. bottom: 0/1800
  38658. }
  38659. },
  38660. frontNsfw: {
  38661. height: math.unit(5 + 5/12, "feet"),
  38662. weight: math.unit(180, "lb"),
  38663. name: "Front (NSFW)",
  38664. image: {
  38665. source: "./media/characters/october/front-nsfw.svg",
  38666. extra: 1392/1307,
  38667. bottom: 42/1434
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(5 + 5/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(8 + 6/12, "feet"),
  38684. name: "Front",
  38685. image: {
  38686. source: "./media/characters/essynkardi/front.svg",
  38687. extra: 1914/1846,
  38688. bottom: 22/1936
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(8 + 6/12, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(6 + 6/12, "feet"),
  38705. weight: math.unit(7, "lb"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/icky/front.svg",
  38709. extra: 813/782,
  38710. bottom: 66/879
  38711. }
  38712. },
  38713. back: {
  38714. height: math.unit(6 + 6/12, "feet"),
  38715. weight: math.unit(7, "lb"),
  38716. name: "Back",
  38717. image: {
  38718. source: "./media/characters/icky/back.svg",
  38719. extra: 754/735,
  38720. bottom: 56/810
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(6 + 6/12, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38734. {
  38735. front: {
  38736. height: math.unit(15, "feet"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/rojas/front.svg",
  38740. extra: 1462/1408,
  38741. bottom: 95/1557
  38742. }
  38743. },
  38744. back: {
  38745. height: math.unit(15, "feet"),
  38746. name: "Back",
  38747. image: {
  38748. source: "./media/characters/rojas/back.svg",
  38749. extra: 1023/954,
  38750. bottom: 28/1051
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(15, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38764. {
  38765. frontHuman: {
  38766. height: math.unit(5 + 7/12, "feet"),
  38767. name: "Front (Human)",
  38768. image: {
  38769. source: "./media/characters/alek-dryagan/front-human.svg",
  38770. extra: 1687/1667,
  38771. bottom: 69/1756
  38772. }
  38773. },
  38774. backHuman: {
  38775. height: math.unit(5 + 7/12, "feet"),
  38776. name: "Back (Human)",
  38777. image: {
  38778. source: "./media/characters/alek-dryagan/back-human.svg",
  38779. extra: 1670/1649,
  38780. bottom: 65/1735
  38781. }
  38782. },
  38783. frontDemi: {
  38784. height: math.unit(65, "feet"),
  38785. name: "Front (Demi)",
  38786. image: {
  38787. source: "./media/characters/alek-dryagan/front-demi.svg",
  38788. extra: 1669/1642,
  38789. bottom: 49/1718
  38790. }
  38791. },
  38792. backDemi: {
  38793. height: math.unit(65, "feet"),
  38794. name: "Back (Demi)",
  38795. image: {
  38796. source: "./media/characters/alek-dryagan/back-demi.svg",
  38797. extra: 1658/1637,
  38798. bottom: 40/1698
  38799. }
  38800. },
  38801. mawHuman: {
  38802. height: math.unit(0.3, "feet"),
  38803. name: "Maw (Human)",
  38804. image: {
  38805. source: "./media/characters/alek-dryagan/maw-human.svg"
  38806. }
  38807. },
  38808. mawDemi: {
  38809. height: math.unit(3.8, "feet"),
  38810. name: "Maw (Demi)",
  38811. image: {
  38812. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38813. }
  38814. },
  38815. },
  38816. [
  38817. {
  38818. name: "Normal",
  38819. height: math.unit(5 + 7/12, "feet"),
  38820. default: true
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38826. {
  38827. frontHuman: {
  38828. height: math.unit(5 + 2/12, "feet"),
  38829. name: "Front (Human)",
  38830. image: {
  38831. source: "./media/characters/gen/front-human.svg",
  38832. extra: 1627/1538,
  38833. bottom: 71/1698
  38834. }
  38835. },
  38836. backHuman: {
  38837. height: math.unit(5 + 2/12, "feet"),
  38838. name: "Back (Human)",
  38839. image: {
  38840. source: "./media/characters/gen/back-human.svg",
  38841. extra: 1638/1548,
  38842. bottom: 69/1707
  38843. }
  38844. },
  38845. frontDemi: {
  38846. height: math.unit(5 + 2/12, "feet"),
  38847. name: "Front (Demi)",
  38848. image: {
  38849. source: "./media/characters/gen/front-demi.svg",
  38850. extra: 1627/1538,
  38851. bottom: 71/1698
  38852. }
  38853. },
  38854. backDemi: {
  38855. height: math.unit(5 + 2/12, "feet"),
  38856. name: "Back (Demi)",
  38857. image: {
  38858. source: "./media/characters/gen/back-demi.svg",
  38859. extra: 1638/1548,
  38860. bottom: 69/1707
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(5 + 2/12, "feet"),
  38868. default: true
  38869. },
  38870. ]
  38871. ))
  38872. characterMakers.push(() => makeCharacter(
  38873. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38874. {
  38875. frontImp: {
  38876. height: math.unit(1 + 11/12, "feet"),
  38877. name: "Front (Imp)",
  38878. image: {
  38879. source: "./media/characters/max-kobold/front-imp.svg",
  38880. extra: 1238/1134,
  38881. bottom: 81/1319
  38882. }
  38883. },
  38884. backImp: {
  38885. height: math.unit(1 + 11/12, "feet"),
  38886. name: "Back (Imp)",
  38887. image: {
  38888. source: "./media/characters/max-kobold/back-imp.svg",
  38889. extra: 1334/1175,
  38890. bottom: 34/1368
  38891. }
  38892. },
  38893. frontDemi: {
  38894. height: math.unit(5 + 9/12, "feet"),
  38895. name: "Front (Demi)",
  38896. image: {
  38897. source: "./media/characters/max-kobold/front-demi.svg",
  38898. extra: 1715/1685,
  38899. bottom: 54/1769
  38900. }
  38901. },
  38902. backDemi: {
  38903. height: math.unit(5 + 9/12, "feet"),
  38904. name: "Back (Demi)",
  38905. image: {
  38906. source: "./media/characters/max-kobold/back-demi.svg",
  38907. extra: 1752/1729,
  38908. bottom: 41/1793
  38909. }
  38910. },
  38911. handImp: {
  38912. height: math.unit(0.45, "feet"),
  38913. name: "Hand (Imp)",
  38914. image: {
  38915. source: "./media/characters/max-kobold/hand.svg"
  38916. }
  38917. },
  38918. pawImp: {
  38919. height: math.unit(0.46, "feet"),
  38920. name: "Paw (Imp)",
  38921. image: {
  38922. source: "./media/characters/max-kobold/paw.svg"
  38923. }
  38924. },
  38925. handDemi: {
  38926. height: math.unit(0.80, "feet"),
  38927. name: "Hand (Demi)",
  38928. image: {
  38929. source: "./media/characters/max-kobold/hand.svg"
  38930. }
  38931. },
  38932. pawDemi: {
  38933. height: math.unit(1.1, "feet"),
  38934. name: "Paw (Demi)",
  38935. image: {
  38936. source: "./media/characters/max-kobold/paw.svg"
  38937. }
  38938. },
  38939. headImp: {
  38940. height: math.unit(1.33, "feet"),
  38941. name: "Head (Imp)",
  38942. image: {
  38943. source: "./media/characters/max-kobold/head-imp.svg"
  38944. }
  38945. },
  38946. mawImp: {
  38947. height: math.unit(0.75, "feet"),
  38948. name: "Maw (Imp)",
  38949. image: {
  38950. source: "./media/characters/max-kobold/maw-imp.svg"
  38951. }
  38952. },
  38953. mawDemi: {
  38954. height: math.unit(0.42, "feet"),
  38955. name: "Maw (Demi)",
  38956. image: {
  38957. source: "./media/characters/max-kobold/maw-demi.svg"
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(1 + 11/12, "feet"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(7 + 5/12, "feet"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/carbon/front.svg",
  38977. extra: 1754/1689,
  38978. bottom: 65/1819
  38979. }
  38980. },
  38981. back: {
  38982. height: math.unit(7 + 5/12, "feet"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/carbon/back.svg",
  38986. extra: 1762/1695,
  38987. bottom: 24/1786
  38988. }
  38989. },
  38990. frontGigantamax: {
  38991. height: math.unit(150, "feet"),
  38992. name: "Front (Gigantamax)",
  38993. image: {
  38994. source: "./media/characters/carbon/front-gigantamax.svg",
  38995. extra: 1826/1669,
  38996. bottom: 59/1885
  38997. }
  38998. },
  38999. backGigantamax: {
  39000. height: math.unit(150, "feet"),
  39001. name: "Back (Gigantamax)",
  39002. image: {
  39003. source: "./media/characters/carbon/back-gigantamax.svg",
  39004. extra: 1796/1653,
  39005. bottom: 53/1849
  39006. }
  39007. },
  39008. maw: {
  39009. height: math.unit(0.48, "feet"),
  39010. name: "Maw",
  39011. image: {
  39012. source: "./media/characters/carbon/maw.svg"
  39013. }
  39014. },
  39015. mawGigantamax: {
  39016. height: math.unit(7.5, "feet"),
  39017. name: "Maw (Gigantamax)",
  39018. image: {
  39019. source: "./media/characters/carbon/maw-gigantamax.svg"
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(7 + 5/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(6, "feet"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/maverick/front.svg",
  39039. extra: 1672/1661,
  39040. bottom: 85/1757
  39041. }
  39042. },
  39043. back: {
  39044. height: math.unit(6, "feet"),
  39045. name: "Back",
  39046. image: {
  39047. source: "./media/characters/maverick/back.svg",
  39048. extra: 1642/1631,
  39049. bottom: 38/1680
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(6, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(15, "feet"),
  39066. weight: math.unit(615, "lb"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/grockle/front.svg",
  39070. extra: 1535/1427,
  39071. bottom: 56/1591
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(15, "feet"),
  39079. default: true
  39080. },
  39081. {
  39082. name: "Large",
  39083. height: math.unit(150, "feet")
  39084. },
  39085. {
  39086. name: "Macro",
  39087. height: math.unit(1876, "feet")
  39088. },
  39089. {
  39090. name: "Mega Macro",
  39091. height: math.unit(121940, "feet")
  39092. },
  39093. {
  39094. name: "Giga Macro",
  39095. height: math.unit(750, "km")
  39096. },
  39097. {
  39098. name: "Tera Macro",
  39099. height: math.unit(750000, "km")
  39100. },
  39101. {
  39102. name: "Galactic",
  39103. height: math.unit(1.4e5, "km")
  39104. },
  39105. {
  39106. name: "Godlike",
  39107. height: math.unit(9.8e280, "galaxies")
  39108. },
  39109. ]
  39110. ))
  39111. characterMakers.push(() => makeCharacter(
  39112. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39113. {
  39114. front: {
  39115. height: math.unit(11, "meters"),
  39116. weight: math.unit(20, "tonnes"),
  39117. name: "Front",
  39118. image: {
  39119. source: "./media/characters/alistair/front.svg",
  39120. extra: 1265/1009,
  39121. bottom: 93/1358
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Normal",
  39128. height: math.unit(11, "meters"),
  39129. default: true
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(5 + 8/12, "feet"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/haruka/front.svg",
  39141. extra: 2012/1952,
  39142. bottom: 0/2012
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(5 + 8/12, "feet"),
  39150. default: true
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39156. {
  39157. back: {
  39158. height: math.unit(9, "feet"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/vivian-sylveon/back.svg",
  39162. extra: 1853/1714,
  39163. bottom: 0/1853
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(9, "feet"),
  39171. default: true
  39172. },
  39173. {
  39174. name: "Macro",
  39175. height: math.unit(500, "feet")
  39176. },
  39177. {
  39178. name: "Megamacro",
  39179. height: math.unit(600, "miles")
  39180. },
  39181. {
  39182. name: "Gigamacro",
  39183. height: math.unit(30000, "miles")
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39189. {
  39190. anthro: {
  39191. height: math.unit(5 + 10/12, "feet"),
  39192. weight: math.unit(100, "lb"),
  39193. name: "Anthro",
  39194. image: {
  39195. source: "./media/characters/daiki/anthro.svg",
  39196. extra: 1115/1027,
  39197. bottom: 69/1184
  39198. }
  39199. },
  39200. feral: {
  39201. height: math.unit(200, "feet"),
  39202. name: "Feral",
  39203. image: {
  39204. source: "./media/characters/daiki/feral.svg",
  39205. extra: 1256/313,
  39206. bottom: 39/1295
  39207. }
  39208. },
  39209. feralHead: {
  39210. height: math.unit(171, "feet"),
  39211. name: "Feral Head",
  39212. image: {
  39213. source: "./media/characters/daiki/feral-head.svg"
  39214. }
  39215. },
  39216. manaDragon: {
  39217. height: math.unit(170, "meters"),
  39218. name: "Mana-dragon",
  39219. image: {
  39220. source: "./media/characters/daiki/mana-dragon.svg",
  39221. extra: 763/420,
  39222. bottom: 97/860
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(5 + 10/12, "feet"),
  39230. default: true
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39236. {
  39237. fullyEquippedFront: {
  39238. height: math.unit(3 + 1/12, "feet"),
  39239. weight: math.unit(24, "lb"),
  39240. name: "Fully Equipped (Front)",
  39241. image: {
  39242. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39243. extra: 687/605,
  39244. bottom: 18/705
  39245. }
  39246. },
  39247. fullyEquippedBack: {
  39248. height: math.unit(3 + 1/12, "feet"),
  39249. weight: math.unit(24, "lb"),
  39250. name: "Fully Equipped (Back)",
  39251. image: {
  39252. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39253. extra: 689/590,
  39254. bottom: 18/707
  39255. }
  39256. },
  39257. dailyWear: {
  39258. height: math.unit(3 + 1/12, "feet"),
  39259. weight: math.unit(24, "lb"),
  39260. name: "Daily Wear",
  39261. image: {
  39262. source: "./media/characters/tea-spot/daily-wear.svg",
  39263. extra: 701/620,
  39264. bottom: 21/722
  39265. }
  39266. },
  39267. maidWork: {
  39268. height: math.unit(3 + 1/12, "feet"),
  39269. weight: math.unit(24, "lb"),
  39270. name: "Maid Work",
  39271. image: {
  39272. source: "./media/characters/tea-spot/maid-work.svg",
  39273. extra: 693/609,
  39274. bottom: 15/708
  39275. }
  39276. },
  39277. },
  39278. [
  39279. {
  39280. name: "Normal",
  39281. height: math.unit(3 + 1/12, "feet"),
  39282. default: true
  39283. },
  39284. ]
  39285. ))
  39286. characterMakers.push(() => makeCharacter(
  39287. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39288. {
  39289. front: {
  39290. height: math.unit(175, "cm"),
  39291. weight: math.unit(75, "kg"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/chee/front.svg",
  39295. extra: 1796/1740,
  39296. bottom: 40/1836
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Micro-Micro",
  39303. height: math.unit(1, "nm")
  39304. },
  39305. {
  39306. name: "Micro-erst",
  39307. height: math.unit(1, "micrometer")
  39308. },
  39309. {
  39310. name: "Micro-er",
  39311. height: math.unit(1, "cm")
  39312. },
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(175, "cm"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Macro",
  39320. height: math.unit(100, "m")
  39321. },
  39322. {
  39323. name: "Macro-er",
  39324. height: math.unit(1, "km")
  39325. },
  39326. {
  39327. name: "Macro-erst",
  39328. height: math.unit(10, "km")
  39329. },
  39330. {
  39331. name: "Macro-Macro",
  39332. height: math.unit(100, "km")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(11 + 9/12, "feet"),
  39341. weight: math.unit(935, "lb"),
  39342. name: "Front",
  39343. image: {
  39344. source: "./media/characters/kingsley/front.svg",
  39345. extra: 1803/1674,
  39346. bottom: 127/1930
  39347. }
  39348. },
  39349. frontNude: {
  39350. height: math.unit(11 + 9/12, "feet"),
  39351. weight: math.unit(935, "lb"),
  39352. name: "Front (Nude)",
  39353. image: {
  39354. source: "./media/characters/kingsley/front-nude.svg",
  39355. extra: 1803/1674,
  39356. bottom: 127/1930
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(11 + 9/12, "feet"),
  39364. default: true
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39370. {
  39371. side: {
  39372. height: math.unit(9, "feet"),
  39373. name: "Side",
  39374. image: {
  39375. source: "./media/characters/rymel/side.svg",
  39376. extra: 792/469,
  39377. bottom: 121/913
  39378. }
  39379. },
  39380. maw: {
  39381. height: math.unit(2.4, "meters"),
  39382. name: "Maw",
  39383. image: {
  39384. source: "./media/characters/rymel/maw.svg"
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "House Drake",
  39391. height: math.unit(2, "feet")
  39392. },
  39393. {
  39394. name: "Reduced",
  39395. height: math.unit(4.5, "feet")
  39396. },
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(9, "feet"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(1.74, "meters"),
  39409. weight: math.unit(55, "kg"),
  39410. name: "Front",
  39411. image: {
  39412. source: "./media/characters/rubus/front.svg",
  39413. extra: 1894/1742,
  39414. bottom: 44/1938
  39415. }
  39416. },
  39417. },
  39418. [
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(1.74, "meters"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39428. {
  39429. front: {
  39430. height: math.unit(5 + 2/12, "feet"),
  39431. weight: math.unit(112, "lb"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/cassie-kingston/front.svg",
  39435. extra: 1438/1390,
  39436. bottom: 47/1485
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Normal",
  39443. height: math.unit(5 + 2/12, "feet"),
  39444. default: true
  39445. },
  39446. {
  39447. name: "Macro",
  39448. height: math.unit(128, "feet")
  39449. },
  39450. {
  39451. name: "Megamacro",
  39452. height: math.unit(2.56, "miles")
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(7, "feet"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/fox/front.svg",
  39464. extra: 1798/1703,
  39465. bottom: 55/1853
  39466. }
  39467. },
  39468. back: {
  39469. height: math.unit(7, "feet"),
  39470. name: "Back",
  39471. image: {
  39472. source: "./media/characters/fox/back.svg",
  39473. extra: 1748/1649,
  39474. bottom: 32/1780
  39475. }
  39476. },
  39477. head: {
  39478. height: math.unit(1.95, "feet"),
  39479. name: "Head",
  39480. image: {
  39481. source: "./media/characters/fox/head.svg"
  39482. }
  39483. },
  39484. dick: {
  39485. height: math.unit(1.33, "feet"),
  39486. name: "Dick",
  39487. image: {
  39488. source: "./media/characters/fox/dick.svg"
  39489. }
  39490. },
  39491. foot: {
  39492. height: math.unit(1, "feet"),
  39493. name: "Foot",
  39494. image: {
  39495. source: "./media/characters/fox/foot.svg"
  39496. }
  39497. },
  39498. paw: {
  39499. height: math.unit(0.92, "feet"),
  39500. name: "Paw",
  39501. image: {
  39502. source: "./media/characters/fox/paw.svg"
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Small",
  39509. height: math.unit(3, "inches")
  39510. },
  39511. {
  39512. name: "\"Realistic\"",
  39513. height: math.unit(7, "feet")
  39514. },
  39515. {
  39516. name: "Normal",
  39517. height: math.unit(150, "feet"),
  39518. default: true
  39519. },
  39520. {
  39521. name: "BIG",
  39522. height: math.unit(1200, "feet")
  39523. },
  39524. {
  39525. name: "👀",
  39526. height: math.unit(5, "miles")
  39527. },
  39528. {
  39529. name: "👀👀👀",
  39530. height: math.unit(64, "miles")
  39531. },
  39532. ]
  39533. ))
  39534. characterMakers.push(() => makeCharacter(
  39535. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39536. {
  39537. front: {
  39538. height: math.unit(625, "feet"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/asonja-rossa/front.svg",
  39542. extra: 1833/1686,
  39543. bottom: 24/1857
  39544. }
  39545. },
  39546. back: {
  39547. height: math.unit(625, "feet"),
  39548. name: "Back",
  39549. image: {
  39550. source: "./media/characters/asonja-rossa/back.svg",
  39551. extra: 1852/1753,
  39552. bottom: 26/1878
  39553. }
  39554. },
  39555. },
  39556. [
  39557. {
  39558. name: "Macro",
  39559. height: math.unit(625, "feet"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39566. {
  39567. side: {
  39568. height: math.unit(8, "feet"),
  39569. name: "Side",
  39570. image: {
  39571. source: "./media/characters/rezukii/side.svg",
  39572. extra: 979/542,
  39573. bottom: 87/1066
  39574. }
  39575. },
  39576. sitting: {
  39577. height: math.unit(14.6, "feet"),
  39578. name: "Sitting",
  39579. image: {
  39580. source: "./media/characters/rezukii/sitting.svg",
  39581. extra: 1023/813,
  39582. bottom: 45/1068
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Tiny",
  39589. height: math.unit(2, "feet")
  39590. },
  39591. {
  39592. name: "Smol",
  39593. height: math.unit(4, "feet")
  39594. },
  39595. {
  39596. name: "Normal",
  39597. height: math.unit(8, "feet"),
  39598. default: true
  39599. },
  39600. {
  39601. name: "Big",
  39602. height: math.unit(12, "feet")
  39603. },
  39604. {
  39605. name: "Macro",
  39606. height: math.unit(30, "feet")
  39607. },
  39608. ]
  39609. ))
  39610. characterMakers.push(() => makeCharacter(
  39611. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39612. {
  39613. front: {
  39614. height: math.unit(14, "feet"),
  39615. weight: math.unit(9.5, "tonnes"),
  39616. name: "Front",
  39617. image: {
  39618. source: "./media/characters/dawnheart/front.svg",
  39619. extra: 2792/2675,
  39620. bottom: 64/2856
  39621. }
  39622. },
  39623. },
  39624. [
  39625. {
  39626. name: "Normal",
  39627. height: math.unit(14, "feet"),
  39628. default: true
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39634. {
  39635. front: {
  39636. height: math.unit(1.7, "m"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/gladi/front.svg",
  39640. extra: 1460/1362,
  39641. bottom: 19/1479
  39642. }
  39643. },
  39644. back: {
  39645. height: math.unit(1.7, "m"),
  39646. name: "Back",
  39647. image: {
  39648. source: "./media/characters/gladi/back.svg",
  39649. extra: 1459/1357,
  39650. bottom: 12/1471
  39651. }
  39652. },
  39653. feral: {
  39654. height: math.unit(2.05, "m"),
  39655. name: "Feral",
  39656. image: {
  39657. source: "./media/characters/gladi/feral.svg",
  39658. extra: 821/557,
  39659. bottom: 91/912
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Shortest",
  39666. height: math.unit(70, "cm")
  39667. },
  39668. {
  39669. name: "Normal",
  39670. height: math.unit(1.7, "m")
  39671. },
  39672. {
  39673. name: "Macro",
  39674. height: math.unit(10, "m"),
  39675. default: true
  39676. },
  39677. {
  39678. name: "Tallest",
  39679. height: math.unit(200, "m")
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(5 + 7/12, "feet"),
  39688. weight: math.unit(2, "tons"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/erdno/front.svg",
  39692. extra: 1234/1129,
  39693. bottom: 35/1269
  39694. }
  39695. },
  39696. angled: {
  39697. height: math.unit(5 + 7/12, "feet"),
  39698. weight: math.unit(2, "tons"),
  39699. name: "Angled",
  39700. image: {
  39701. source: "./media/characters/erdno/angled.svg",
  39702. extra: 1185/1139,
  39703. bottom: 36/1221
  39704. }
  39705. },
  39706. side: {
  39707. height: math.unit(5 + 7/12, "feet"),
  39708. weight: math.unit(2, "tons"),
  39709. name: "Side",
  39710. image: {
  39711. source: "./media/characters/erdno/side.svg",
  39712. extra: 1191/1144,
  39713. bottom: 40/1231
  39714. }
  39715. },
  39716. back: {
  39717. height: math.unit(5 + 7/12, "feet"),
  39718. weight: math.unit(2, "tons"),
  39719. name: "Back",
  39720. image: {
  39721. source: "./media/characters/erdno/back.svg",
  39722. extra: 1202/1146,
  39723. bottom: 17/1219
  39724. }
  39725. },
  39726. frontNsfw: {
  39727. height: math.unit(5 + 7/12, "feet"),
  39728. weight: math.unit(2, "tons"),
  39729. name: "Front (NSFW)",
  39730. image: {
  39731. source: "./media/characters/erdno/front-nsfw.svg",
  39732. extra: 1234/1129,
  39733. bottom: 35/1269
  39734. }
  39735. },
  39736. angledNsfw: {
  39737. height: math.unit(5 + 7/12, "feet"),
  39738. weight: math.unit(2, "tons"),
  39739. name: "Angled (NSFW)",
  39740. image: {
  39741. source: "./media/characters/erdno/angled-nsfw.svg",
  39742. extra: 1185/1139,
  39743. bottom: 36/1221
  39744. }
  39745. },
  39746. sideNsfw: {
  39747. height: math.unit(5 + 7/12, "feet"),
  39748. weight: math.unit(2, "tons"),
  39749. name: "Side (NSFW)",
  39750. image: {
  39751. source: "./media/characters/erdno/side-nsfw.svg",
  39752. extra: 1191/1144,
  39753. bottom: 40/1231
  39754. }
  39755. },
  39756. backNsfw: {
  39757. height: math.unit(5 + 7/12, "feet"),
  39758. weight: math.unit(2, "tons"),
  39759. name: "Back (NSFW)",
  39760. image: {
  39761. source: "./media/characters/erdno/back-nsfw.svg",
  39762. extra: 1202/1146,
  39763. bottom: 17/1219
  39764. }
  39765. },
  39766. frontHyper: {
  39767. height: math.unit(5 + 7/12, "feet"),
  39768. weight: math.unit(2, "tons"),
  39769. name: "Front (Hyper)",
  39770. image: {
  39771. source: "./media/characters/erdno/front-hyper.svg",
  39772. extra: 1298/1136,
  39773. bottom: 35/1333
  39774. }
  39775. },
  39776. },
  39777. [
  39778. {
  39779. name: "Normal",
  39780. height: math.unit(5 + 7/12, "feet"),
  39781. default: true
  39782. },
  39783. {
  39784. name: "Big",
  39785. height: math.unit(5.7, "meters")
  39786. },
  39787. {
  39788. name: "Macro",
  39789. height: math.unit(5.7, "kilometers")
  39790. },
  39791. {
  39792. name: "Megamacro",
  39793. height: math.unit(5.7, "earths")
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39799. {
  39800. front: {
  39801. height: math.unit(5 + 10/12, "feet"),
  39802. weight: math.unit(150, "lb"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/jamie/front.svg",
  39806. extra: 1908/1768,
  39807. bottom: 19/1927
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Minimum",
  39814. height: math.unit(2, "cm")
  39815. },
  39816. {
  39817. name: "Micro",
  39818. height: math.unit(3, "inches")
  39819. },
  39820. {
  39821. name: "Normal",
  39822. height: math.unit(5 + 10/12, "feet"),
  39823. default: true
  39824. },
  39825. {
  39826. name: "Macro",
  39827. height: math.unit(150, "feet")
  39828. },
  39829. {
  39830. name: "Megamacro",
  39831. height: math.unit(10000, "m")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(2, "meters"),
  39840. weight: math.unit(100, "kg"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/shiron/front.svg",
  39844. extra: 2103/1985,
  39845. bottom: 98/2201
  39846. }
  39847. },
  39848. back: {
  39849. height: math.unit(2, "meters"),
  39850. weight: math.unit(100, "kg"),
  39851. name: "Back",
  39852. image: {
  39853. source: "./media/characters/shiron/back.svg",
  39854. extra: 2110/2015,
  39855. bottom: 89/2199
  39856. }
  39857. },
  39858. hand: {
  39859. height: math.unit(0.96, "feet"),
  39860. name: "Hand",
  39861. image: {
  39862. source: "./media/characters/shiron/hand.svg"
  39863. }
  39864. },
  39865. foot: {
  39866. height: math.unit(1.464, "feet"),
  39867. name: "Foot",
  39868. image: {
  39869. source: "./media/characters/shiron/foot.svg"
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(2, "meters")
  39877. },
  39878. {
  39879. name: "Macro",
  39880. height: math.unit(500, "meters"),
  39881. default: true
  39882. },
  39883. {
  39884. name: "Megamacro",
  39885. height: math.unit(20, "km")
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(6, "feet"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/sam/front.svg",
  39897. extra: 849/826,
  39898. bottom: 19/868
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(6, "feet"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(8 + 4/12, "feet"),
  39915. weight: math.unit(122, "kg"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/namori-kurogawa/front.svg",
  39919. extra: 1894/1576,
  39920. bottom: 34/1928
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(8 + 4/12, "feet"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(9, "feet"),
  39937. weight: math.unit(621, "lb"),
  39938. name: "Front",
  39939. image: {
  39940. source: "./media/characters/unmru/front.svg",
  39941. extra: 1853/1747,
  39942. bottom: 73/1926
  39943. }
  39944. },
  39945. side: {
  39946. height: math.unit(9, "feet"),
  39947. weight: math.unit(621, "lb"),
  39948. name: "Side",
  39949. image: {
  39950. source: "./media/characters/unmru/side.svg",
  39951. extra: 1781/1671,
  39952. bottom: 127/1908
  39953. }
  39954. },
  39955. back: {
  39956. height: math.unit(9, "feet"),
  39957. weight: math.unit(621, "lb"),
  39958. name: "Back",
  39959. image: {
  39960. source: "./media/characters/unmru/back.svg",
  39961. extra: 1894/1765,
  39962. bottom: 75/1969
  39963. }
  39964. },
  39965. dick: {
  39966. height: math.unit(3, "feet"),
  39967. weight: math.unit(35, "lb"),
  39968. name: "Dick",
  39969. image: {
  39970. source: "./media/characters/unmru/dick.svg"
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Normal",
  39977. height: math.unit(9, "feet")
  39978. },
  39979. {
  39980. name: "Natural",
  39981. height: math.unit(27, "feet"),
  39982. default: true
  39983. },
  39984. {
  39985. name: "Giant",
  39986. height: math.unit(90, "feet")
  39987. },
  39988. {
  39989. name: "Kaiju",
  39990. height: math.unit(270, "feet")
  39991. },
  39992. {
  39993. name: "Macro",
  39994. height: math.unit(900, "feet")
  39995. },
  39996. {
  39997. name: "Macro+",
  39998. height: math.unit(2700, "feet")
  39999. },
  40000. {
  40001. name: "Megamacro",
  40002. height: math.unit(9000, "feet")
  40003. },
  40004. {
  40005. name: "City-Crushing",
  40006. height: math.unit(27000, "feet")
  40007. },
  40008. {
  40009. name: "Mountain-Mashing",
  40010. height: math.unit(90000, "feet")
  40011. },
  40012. {
  40013. name: "Earth-Eclipsing",
  40014. height: math.unit(2.7e8, "feet")
  40015. },
  40016. {
  40017. name: "Sol-Swallowing",
  40018. height: math.unit(9e10, "feet")
  40019. },
  40020. {
  40021. name: "Majoris-Munching",
  40022. height: math.unit(2.7e13, "feet")
  40023. },
  40024. ]
  40025. ))
  40026. characterMakers.push(() => makeCharacter(
  40027. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40028. {
  40029. front: {
  40030. height: math.unit(1, "inch"),
  40031. name: "Front",
  40032. image: {
  40033. source: "./media/characters/squeaks-mouse/front.svg",
  40034. extra: 352/308,
  40035. bottom: 25/377
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Micro",
  40042. height: math.unit(1, "inch"),
  40043. default: true
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40049. {
  40050. side: {
  40051. height: math.unit(35, "feet"),
  40052. name: "Side",
  40053. image: {
  40054. source: "./media/characters/sayko/side.svg",
  40055. extra: 1697/1021,
  40056. bottom: 82/1779
  40057. }
  40058. },
  40059. head: {
  40060. height: math.unit(16, "feet"),
  40061. name: "Head",
  40062. image: {
  40063. source: "./media/characters/sayko/head.svg"
  40064. }
  40065. },
  40066. forepaw: {
  40067. height: math.unit(7.85, "feet"),
  40068. name: "Forepaw",
  40069. image: {
  40070. source: "./media/characters/sayko/forepaw.svg"
  40071. }
  40072. },
  40073. hindpaw: {
  40074. height: math.unit(8.8, "feet"),
  40075. name: "Hindpaw",
  40076. image: {
  40077. source: "./media/characters/sayko/hindpaw.svg"
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Normal",
  40084. height: math.unit(35, "feet"),
  40085. default: true
  40086. },
  40087. {
  40088. name: "Colossus",
  40089. height: math.unit(100, "meters")
  40090. },
  40091. {
  40092. name: "\"Small\" Deity",
  40093. height: math.unit(1, "km")
  40094. },
  40095. {
  40096. name: "\"Large\" Deity",
  40097. height: math.unit(15, "km")
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(6, "feet"),
  40106. weight: math.unit(250, "lb"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/mukiro/front.svg",
  40110. extra: 1368/1310,
  40111. bottom: 34/1402
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Normal",
  40118. height: math.unit(6, "feet"),
  40119. default: true
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(12 + 4/12, "feet"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40131. extra: 1346/1311,
  40132. bottom: 65/1411
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Base",
  40139. height: math.unit(12 + 4/12, "feet"),
  40140. default: true
  40141. },
  40142. {
  40143. name: "Macro",
  40144. height: math.unit(150, "feet")
  40145. },
  40146. {
  40147. name: "Mega",
  40148. height: math.unit(2, "miles")
  40149. },
  40150. {
  40151. name: "Demi God",
  40152. height: math.unit(4, "AU")
  40153. },
  40154. {
  40155. name: "God Size",
  40156. height: math.unit(1, "universe")
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40162. {
  40163. front: {
  40164. height: math.unit(3 + 3/12, "feet"),
  40165. weight: math.unit(88, "lb"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/trey/front.svg",
  40169. extra: 1815/1509,
  40170. bottom: 60/1875
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(3 + 3/12, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40184. {
  40185. front: {
  40186. height: math.unit(4, "meters"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/adelonda/front.svg",
  40190. extra: 1077/982,
  40191. bottom: 39/1116
  40192. }
  40193. },
  40194. back: {
  40195. height: math.unit(4, "meters"),
  40196. name: "Back",
  40197. image: {
  40198. source: "./media/characters/adelonda/back.svg",
  40199. extra: 1105/1003,
  40200. bottom: 25/1130
  40201. }
  40202. },
  40203. feral: {
  40204. height: math.unit(40/1.5, "meters"),
  40205. name: "Feral",
  40206. image: {
  40207. source: "./media/characters/adelonda/feral.svg",
  40208. extra: 597/271,
  40209. bottom: 387/984
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(4, "meters"),
  40217. default: true
  40218. },
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40223. {
  40224. front: {
  40225. height: math.unit(8 + 4/12, "feet"),
  40226. weight: math.unit(670, "lb"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/acadiel/front.svg",
  40230. extra: 1901/1595,
  40231. bottom: 142/2043
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(8 + 4/12, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Macro",
  40243. height: math.unit(200, "feet")
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40249. {
  40250. front: {
  40251. height: math.unit(6 + 2/12, "feet"),
  40252. weight: math.unit(185, "lb"),
  40253. name: "Front",
  40254. image: {
  40255. source: "./media/characters/kayne-ein/front.svg",
  40256. extra: 1780/1560,
  40257. bottom: 81/1861
  40258. }
  40259. },
  40260. },
  40261. [
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(6 + 2/12, "feet"),
  40265. default: true
  40266. },
  40267. {
  40268. name: "Transformation Stage",
  40269. height: math.unit(15, "feet")
  40270. },
  40271. {
  40272. name: "Macro",
  40273. height: math.unit(150, "feet")
  40274. },
  40275. {
  40276. name: "Earth's Shadow",
  40277. height: math.unit(6200, "miles")
  40278. },
  40279. {
  40280. name: "Universal Demon",
  40281. height: math.unit(28e9, "parsecs")
  40282. },
  40283. {
  40284. name: "Multiverse God",
  40285. height: math.unit(3, "multiverses")
  40286. },
  40287. ]
  40288. ))
  40289. characterMakers.push(() => makeCharacter(
  40290. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40291. {
  40292. front: {
  40293. height: math.unit(5 + 5/12, "feet"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/fawn/front.svg",
  40297. extra: 1873/1731,
  40298. bottom: 95/1968
  40299. }
  40300. },
  40301. back: {
  40302. height: math.unit(5 + 5/12, "feet"),
  40303. name: "Back",
  40304. image: {
  40305. source: "./media/characters/fawn/back.svg",
  40306. extra: 1813/1700,
  40307. bottom: 14/1827
  40308. }
  40309. },
  40310. hoof: {
  40311. height: math.unit(1.45, "feet"),
  40312. name: "Hoof",
  40313. image: {
  40314. source: "./media/characters/fawn/hoof.svg"
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(5 + 5/12, "feet"),
  40322. default: true
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(2 + 5/12, "feet"),
  40331. name: "Front",
  40332. image: {
  40333. source: "./media/characters/orion/front.svg",
  40334. extra: 1366/1304,
  40335. bottom: 43/1409
  40336. }
  40337. },
  40338. paw: {
  40339. height: math.unit(0.52, "feet"),
  40340. name: "Paw",
  40341. image: {
  40342. source: "./media/characters/orion/paw.svg"
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(2 + 5/12, "feet"),
  40350. default: true
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(5 + 10/12, "feet"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/vera/front.svg",
  40362. extra: 1680/1575,
  40363. bottom: 49/1729
  40364. }
  40365. },
  40366. back: {
  40367. height: math.unit(5 + 10/12, "feet"),
  40368. name: "Back",
  40369. image: {
  40370. source: "./media/characters/vera/back.svg",
  40371. extra: 1700/1588,
  40372. bottom: 18/1718
  40373. }
  40374. },
  40375. arcanine: {
  40376. height: math.unit(6 + 8/12, "feet"),
  40377. name: "Arcanine",
  40378. image: {
  40379. source: "./media/characters/vera/arcanine.svg",
  40380. extra: 1590/1511,
  40381. bottom: 71/1661
  40382. }
  40383. },
  40384. maw: {
  40385. height: math.unit(0.82, "feet"),
  40386. name: "Maw",
  40387. image: {
  40388. source: "./media/characters/vera/maw.svg"
  40389. }
  40390. },
  40391. mawArcanine: {
  40392. height: math.unit(0.97, "feet"),
  40393. name: "Maw (Arcanine)",
  40394. image: {
  40395. source: "./media/characters/vera/maw-arcanine.svg"
  40396. }
  40397. },
  40398. paw: {
  40399. height: math.unit(0.75, "feet"),
  40400. name: "Paw",
  40401. image: {
  40402. source: "./media/characters/vera/paw.svg"
  40403. }
  40404. },
  40405. pawprint: {
  40406. height: math.unit(0.52, "feet"),
  40407. name: "Pawprint",
  40408. image: {
  40409. source: "./media/characters/vera/pawprint.svg"
  40410. }
  40411. },
  40412. },
  40413. [
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(5 + 10/12, "feet"),
  40417. default: true
  40418. },
  40419. {
  40420. name: "Macro",
  40421. height: math.unit(75, "feet")
  40422. },
  40423. ]
  40424. ))
  40425. characterMakers.push(() => makeCharacter(
  40426. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40427. {
  40428. front: {
  40429. height: math.unit(4, "feet"),
  40430. weight: math.unit(40, "lb"),
  40431. name: "Front",
  40432. image: {
  40433. source: "./media/characters/orvan-rabbit/front.svg",
  40434. extra: 1896/1642,
  40435. bottom: 29/1925
  40436. }
  40437. },
  40438. },
  40439. [
  40440. {
  40441. name: "Normal",
  40442. height: math.unit(4, "feet"),
  40443. default: true
  40444. },
  40445. ]
  40446. ))
  40447. characterMakers.push(() => makeCharacter(
  40448. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40449. {
  40450. front: {
  40451. height: math.unit(6, "feet"),
  40452. weight: math.unit(168, "lb"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/lisa/front.svg",
  40456. extra: 2065/1867,
  40457. bottom: 46/2111
  40458. }
  40459. },
  40460. back: {
  40461. height: math.unit(6, "feet"),
  40462. weight: math.unit(168, "lb"),
  40463. name: "Back",
  40464. image: {
  40465. source: "./media/characters/lisa/back.svg",
  40466. extra: 1982/1838,
  40467. bottom: 29/2011
  40468. }
  40469. },
  40470. maw: {
  40471. height: math.unit(0.81, "feet"),
  40472. name: "Maw",
  40473. image: {
  40474. source: "./media/characters/lisa/maw.svg"
  40475. }
  40476. },
  40477. paw: {
  40478. height: math.unit(0.9, "feet"),
  40479. name: "Paw",
  40480. image: {
  40481. source: "./media/characters/lisa/paw.svg"
  40482. }
  40483. },
  40484. caribousune: {
  40485. height: math.unit(7 + 2/12, "feet"),
  40486. weight: math.unit(268, "lb"),
  40487. name: "Caribousune",
  40488. image: {
  40489. source: "./media/characters/lisa/caribousune.svg",
  40490. extra: 1843/1633,
  40491. bottom: 29/1872
  40492. }
  40493. },
  40494. frontCaribousune: {
  40495. height: math.unit(7 + 2/12, "feet"),
  40496. weight: math.unit(268, "lb"),
  40497. name: "Front (Caribousune)",
  40498. image: {
  40499. source: "./media/characters/lisa/front-caribousune.svg",
  40500. extra: 1818/1638,
  40501. bottom: 52/1870
  40502. }
  40503. },
  40504. sideCaribousune: {
  40505. height: math.unit(7 + 2/12, "feet"),
  40506. weight: math.unit(268, "lb"),
  40507. name: "Side (Caribousune)",
  40508. image: {
  40509. source: "./media/characters/lisa/side-caribousune.svg",
  40510. extra: 1851/1635,
  40511. bottom: 16/1867
  40512. }
  40513. },
  40514. backCaribousune: {
  40515. height: math.unit(7 + 2/12, "feet"),
  40516. weight: math.unit(268, "lb"),
  40517. name: "Back (Caribousune)",
  40518. image: {
  40519. source: "./media/characters/lisa/back-caribousune.svg",
  40520. extra: 1801/1604,
  40521. bottom: 44/1845
  40522. }
  40523. },
  40524. caribou: {
  40525. height: math.unit(7 + 2/12, "feet"),
  40526. weight: math.unit(268, "lb"),
  40527. name: "Caribou",
  40528. image: {
  40529. source: "./media/characters/lisa/caribou.svg",
  40530. extra: 1843/1633,
  40531. bottom: 29/1872
  40532. }
  40533. },
  40534. frontCaribou: {
  40535. height: math.unit(7 + 2/12, "feet"),
  40536. weight: math.unit(268, "lb"),
  40537. name: "Front (Caribou)",
  40538. image: {
  40539. source: "./media/characters/lisa/front-caribou.svg",
  40540. extra: 1818/1638,
  40541. bottom: 52/1870
  40542. }
  40543. },
  40544. sideCaribou: {
  40545. height: math.unit(7 + 2/12, "feet"),
  40546. weight: math.unit(268, "lb"),
  40547. name: "Side (Caribou)",
  40548. image: {
  40549. source: "./media/characters/lisa/side-caribou.svg",
  40550. extra: 1851/1635,
  40551. bottom: 16/1867
  40552. }
  40553. },
  40554. backCaribou: {
  40555. height: math.unit(7 + 2/12, "feet"),
  40556. weight: math.unit(268, "lb"),
  40557. name: "Back (Caribou)",
  40558. image: {
  40559. source: "./media/characters/lisa/back-caribou.svg",
  40560. extra: 1801/1604,
  40561. bottom: 44/1845
  40562. }
  40563. },
  40564. mawCaribou: {
  40565. height: math.unit(1.45, "feet"),
  40566. name: "Maw (Caribou)",
  40567. image: {
  40568. source: "./media/characters/lisa/maw-caribou.svg"
  40569. }
  40570. },
  40571. mawCaribousune: {
  40572. height: math.unit(1.45, "feet"),
  40573. name: "Maw (Caribousune)",
  40574. image: {
  40575. source: "./media/characters/lisa/maw-caribousune.svg"
  40576. }
  40577. },
  40578. pawCaribousune: {
  40579. height: math.unit(1.61, "feet"),
  40580. name: "Paw (Caribou)",
  40581. image: {
  40582. source: "./media/characters/lisa/paw-caribousune.svg"
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Normal",
  40589. height: math.unit(6, "feet")
  40590. },
  40591. {
  40592. name: "God Size",
  40593. height: math.unit(72, "feet"),
  40594. default: true
  40595. },
  40596. {
  40597. name: "Towering",
  40598. height: math.unit(288, "feet")
  40599. },
  40600. {
  40601. name: "City Size",
  40602. height: math.unit(48384, "feet")
  40603. },
  40604. {
  40605. name: "Continental",
  40606. height: math.unit(4200, "miles")
  40607. },
  40608. {
  40609. name: "Planet Eater",
  40610. height: math.unit(42, "earths")
  40611. },
  40612. {
  40613. name: "Star Swallower",
  40614. height: math.unit(42, "solarradii")
  40615. },
  40616. {
  40617. name: "System Swallower",
  40618. height: math.unit(84000, "AU")
  40619. },
  40620. {
  40621. name: "Galaxy Gobbler",
  40622. height: math.unit(42, "galaxies")
  40623. },
  40624. {
  40625. name: "Universe Devourer",
  40626. height: math.unit(42, "universes")
  40627. },
  40628. {
  40629. name: "Multiverse Muncher",
  40630. height: math.unit(42, "multiverses")
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40636. {
  40637. front: {
  40638. height: math.unit(36, "feet"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/shadow-rat/front.svg",
  40642. extra: 1845/1758,
  40643. bottom: 83/1928
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(36, "feet"),
  40651. default: true
  40652. },
  40653. ]
  40654. ))
  40655. characterMakers.push(() => makeCharacter(
  40656. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40657. {
  40658. side: {
  40659. height: math.unit(8, "feet"),
  40660. weight: math.unit(2630, "lb"),
  40661. name: "Side",
  40662. image: {
  40663. source: "./media/characters/torallia/side.svg",
  40664. extra: 2164/2021,
  40665. bottom: 371/2535
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Mortal Interaction",
  40672. height: math.unit(8, "feet")
  40673. },
  40674. {
  40675. name: "Natural",
  40676. height: math.unit(24, "feet"),
  40677. default: true
  40678. },
  40679. {
  40680. name: "Giant",
  40681. height: math.unit(80, "feet")
  40682. },
  40683. {
  40684. name: "Kaiju",
  40685. height: math.unit(240, "feet")
  40686. },
  40687. {
  40688. name: "Macro",
  40689. height: math.unit(800, "feet")
  40690. },
  40691. {
  40692. name: "Macro+",
  40693. height: math.unit(2400, "feet")
  40694. },
  40695. {
  40696. name: "Macro++",
  40697. height: math.unit(8000, "feet")
  40698. },
  40699. {
  40700. name: "City-Crushing",
  40701. height: math.unit(24000, "feet")
  40702. },
  40703. {
  40704. name: "Mountain-Mashing",
  40705. height: math.unit(80000, "feet")
  40706. },
  40707. {
  40708. name: "District Demolisher",
  40709. height: math.unit(240000, "feet")
  40710. },
  40711. {
  40712. name: "Tri-County Terror",
  40713. height: math.unit(800000, "feet")
  40714. },
  40715. {
  40716. name: "State Smasher",
  40717. height: math.unit(2.4e6, "feet")
  40718. },
  40719. {
  40720. name: "Nation Nemesis",
  40721. height: math.unit(8e6, "feet")
  40722. },
  40723. {
  40724. name: "Continent Cracker",
  40725. height: math.unit(2.4e7, "feet")
  40726. },
  40727. {
  40728. name: "Planet-Pillaging",
  40729. height: math.unit(8e7, "feet")
  40730. },
  40731. {
  40732. name: "Earth-Eclipsing",
  40733. height: math.unit(2.4e8, "feet")
  40734. },
  40735. {
  40736. name: "Jovian-Jostling",
  40737. height: math.unit(8e8, "feet")
  40738. },
  40739. {
  40740. name: "Gas Giant Gulper",
  40741. height: math.unit(2.4e9, "feet")
  40742. },
  40743. {
  40744. name: "Astral Annihilator",
  40745. height: math.unit(8e9, "feet")
  40746. },
  40747. {
  40748. name: "Celestial Conqueror",
  40749. height: math.unit(2.4e10, "feet")
  40750. },
  40751. {
  40752. name: "Sol-Swallowing",
  40753. height: math.unit(8e10, "feet")
  40754. },
  40755. {
  40756. name: "Hunter of the Heavens",
  40757. height: math.unit(2.4e13, "feet")
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(6 + 8/12, "feet"),
  40766. weight: math.unit(250, "kilograms"),
  40767. volume: math.unit(28, "liters"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/rebecca-pawlson/front.svg",
  40771. extra: 1737/1596,
  40772. bottom: 107/1844
  40773. }
  40774. },
  40775. back: {
  40776. height: math.unit(6 + 8/12, "feet"),
  40777. weight: math.unit(250, "kilograms"),
  40778. volume: math.unit(28, "liters"),
  40779. name: "Back",
  40780. image: {
  40781. source: "./media/characters/rebecca-pawlson/back.svg",
  40782. extra: 1702/1523,
  40783. bottom: 86/1788
  40784. }
  40785. },
  40786. },
  40787. [
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(6 + 8/12, "feet")
  40791. },
  40792. {
  40793. name: "Mini Macro",
  40794. height: math.unit(10, "feet"),
  40795. default: true
  40796. },
  40797. {
  40798. name: "Macro",
  40799. height: math.unit(100, "feet")
  40800. },
  40801. {
  40802. name: "Mega Macro",
  40803. height: math.unit(2500, "feet")
  40804. },
  40805. {
  40806. name: "Giga Macro",
  40807. height: math.unit(50, "miles")
  40808. },
  40809. ]
  40810. ))
  40811. characterMakers.push(() => makeCharacter(
  40812. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40813. {
  40814. front: {
  40815. height: math.unit(7 + 6/12, "feet"),
  40816. weight: math.unit(600, "lb"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/moxie-nova/front.svg",
  40820. extra: 1734/1652,
  40821. bottom: 41/1775
  40822. }
  40823. },
  40824. },
  40825. [
  40826. {
  40827. name: "Normal",
  40828. height: math.unit(7 + 6/12, "feet"),
  40829. default: true
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40835. {
  40836. goat: {
  40837. height: math.unit(4, "feet"),
  40838. weight: math.unit(180, "lb"),
  40839. name: "Goat",
  40840. image: {
  40841. source: "./media/characters/tiffany/goat.svg",
  40842. extra: 1845/1595,
  40843. bottom: 106/1951
  40844. }
  40845. },
  40846. front: {
  40847. height: math.unit(5, "feet"),
  40848. weight: math.unit(150, "lb"),
  40849. name: "Foxcoon",
  40850. image: {
  40851. source: "./media/characters/tiffany/foxcoon.svg",
  40852. extra: 1941/1845,
  40853. bottom: 58/1999
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(5, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(8, "feet"),
  40870. weight: math.unit(300, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/raxinath/front.svg",
  40874. extra: 1407/1309,
  40875. bottom: 39/1446
  40876. }
  40877. },
  40878. back: {
  40879. height: math.unit(8, "feet"),
  40880. weight: math.unit(300, "lb"),
  40881. name: "Back",
  40882. image: {
  40883. source: "./media/characters/raxinath/back.svg",
  40884. extra: 1405/1315,
  40885. bottom: 9/1414
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Speck",
  40892. height: math.unit(0.5, "nm")
  40893. },
  40894. {
  40895. name: "Micro",
  40896. height: math.unit(3, "inches")
  40897. },
  40898. {
  40899. name: "Kobold",
  40900. height: math.unit(3, "feet")
  40901. },
  40902. {
  40903. name: "Normal",
  40904. height: math.unit(8, "feet"),
  40905. default: true
  40906. },
  40907. {
  40908. name: "Giant",
  40909. height: math.unit(50, "feet")
  40910. },
  40911. {
  40912. name: "Macro",
  40913. height: math.unit(1000, "feet")
  40914. },
  40915. {
  40916. name: "Megamacro",
  40917. height: math.unit(1, "mile")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(10, "feet"),
  40926. weight: math.unit(1442, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/mal-dragon/front.svg",
  40930. extra: 1515/1444,
  40931. bottom: 113/1628
  40932. }
  40933. },
  40934. back: {
  40935. height: math.unit(10, "feet"),
  40936. weight: math.unit(1442, "lb"),
  40937. name: "Back",
  40938. image: {
  40939. source: "./media/characters/mal-dragon/back.svg",
  40940. extra: 1527/1434,
  40941. bottom: 25/1552
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Mortal Interaction",
  40948. height: math.unit(10, "feet"),
  40949. default: true
  40950. },
  40951. {
  40952. name: "Large",
  40953. height: math.unit(30, "feet")
  40954. },
  40955. {
  40956. name: "Kaiju",
  40957. height: math.unit(300, "feet")
  40958. },
  40959. {
  40960. name: "Megamacro",
  40961. height: math.unit(10000, "feet")
  40962. },
  40963. {
  40964. name: "Continent Cracker",
  40965. height: math.unit(30000000, "feet")
  40966. },
  40967. {
  40968. name: "Sol-Swallowing",
  40969. height: math.unit(1e11, "feet")
  40970. },
  40971. {
  40972. name: "Light Universal",
  40973. height: math.unit(5, "universes")
  40974. },
  40975. {
  40976. name: "Universe Atoms",
  40977. height: math.unit(1.829e9, "universes")
  40978. },
  40979. {
  40980. name: "Light Multiversal",
  40981. height: math.unit(5, "multiverses")
  40982. },
  40983. {
  40984. name: "Multiverse Atoms",
  40985. height: math.unit(1.829e9, "multiverses")
  40986. },
  40987. {
  40988. name: "Fabric of Time",
  40989. height: math.unit(1e262, "multiverses")
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40995. {
  40996. front: {
  40997. height: math.unit(9, "feet"),
  40998. weight: math.unit(1050, "lb"),
  40999. name: "Front",
  41000. image: {
  41001. source: "./media/characters/tabitha/front.svg",
  41002. extra: 2083/1994,
  41003. bottom: 68/2151
  41004. }
  41005. },
  41006. },
  41007. [
  41008. {
  41009. name: "Baseline",
  41010. height: math.unit(9, "feet"),
  41011. default: true
  41012. },
  41013. {
  41014. name: "Giant",
  41015. height: math.unit(90, "feet")
  41016. },
  41017. {
  41018. name: "Macro",
  41019. height: math.unit(900, "feet")
  41020. },
  41021. {
  41022. name: "Megamacro",
  41023. height: math.unit(9000, "feet")
  41024. },
  41025. {
  41026. name: "City-Crushing",
  41027. height: math.unit(27000, "feet")
  41028. },
  41029. {
  41030. name: "Mountain-Mashing",
  41031. height: math.unit(90000, "feet")
  41032. },
  41033. {
  41034. name: "Nation Nemesis",
  41035. height: math.unit(9e6, "feet")
  41036. },
  41037. {
  41038. name: "Continent Cracker",
  41039. height: math.unit(27e6, "feet")
  41040. },
  41041. {
  41042. name: "Earth-Eclipsing",
  41043. height: math.unit(2.7e8, "feet")
  41044. },
  41045. {
  41046. name: "Gas Giant Gulper",
  41047. height: math.unit(2.7e9, "feet")
  41048. },
  41049. {
  41050. name: "Sol-Swallowing",
  41051. height: math.unit(9e10, "feet")
  41052. },
  41053. {
  41054. name: "Galaxy Gulper",
  41055. height: math.unit(9, "galaxies")
  41056. },
  41057. {
  41058. name: "Cosmos Churner",
  41059. height: math.unit(9, "universes")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(160, "cm"),
  41068. weight: math.unit(55, "kg"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/tow/front.svg",
  41072. extra: 1751/1722,
  41073. bottom: 74/1825
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Norm",
  41080. height: math.unit(160, "cm")
  41081. },
  41082. {
  41083. name: "Casual",
  41084. height: math.unit(3200, "m"),
  41085. default: true
  41086. },
  41087. {
  41088. name: "Show-Off",
  41089. height: math.unit(160, "km")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41095. {
  41096. front: {
  41097. height: math.unit(7 + 11/12, "feet"),
  41098. weight: math.unit(342.8, "lb"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/vivian-orca-dragon/front.svg",
  41102. extra: 1890/1865,
  41103. bottom: 28/1918
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Micro",
  41110. height: math.unit(5, "inches")
  41111. },
  41112. {
  41113. name: "Normal",
  41114. height: math.unit(7 + 11/12, "feet"),
  41115. default: true
  41116. },
  41117. {
  41118. name: "Macro",
  41119. height: math.unit(395 + 7/12, "feet")
  41120. },
  41121. ]
  41122. ))
  41123. characterMakers.push(() => makeCharacter(
  41124. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41125. {
  41126. side: {
  41127. height: math.unit(10, "feet"),
  41128. weight: math.unit(1442, "lb"),
  41129. name: "Side",
  41130. image: {
  41131. source: "./media/characters/lotherakon/side.svg",
  41132. extra: 1604/1497,
  41133. bottom: 89/1693
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Mortal Interaction",
  41140. height: math.unit(10, "feet")
  41141. },
  41142. {
  41143. name: "Large",
  41144. height: math.unit(30, "feet"),
  41145. default: true
  41146. },
  41147. {
  41148. name: "Giant",
  41149. height: math.unit(100, "feet")
  41150. },
  41151. {
  41152. name: "Kaiju",
  41153. height: math.unit(300, "feet")
  41154. },
  41155. {
  41156. name: "Macro",
  41157. height: math.unit(1000, "feet")
  41158. },
  41159. {
  41160. name: "Macro+",
  41161. height: math.unit(3000, "feet")
  41162. },
  41163. {
  41164. name: "Megamacro",
  41165. height: math.unit(10000, "feet")
  41166. },
  41167. {
  41168. name: "City-Crushing",
  41169. height: math.unit(30000, "feet")
  41170. },
  41171. {
  41172. name: "Continent Cracker",
  41173. height: math.unit(30e6, "feet")
  41174. },
  41175. {
  41176. name: "Earth Eclipsing",
  41177. height: math.unit(3e8, "feet")
  41178. },
  41179. {
  41180. name: "Gas Giant Gulper",
  41181. height: math.unit(3e9, "feet")
  41182. },
  41183. {
  41184. name: "Sol-Swallowing",
  41185. height: math.unit(1e11, "feet")
  41186. },
  41187. {
  41188. name: "System Swallower",
  41189. height: math.unit(3e14, "feet")
  41190. },
  41191. {
  41192. name: "Galaxy Gulper",
  41193. height: math.unit(10, "galaxies")
  41194. },
  41195. {
  41196. name: "Light Universal",
  41197. height: math.unit(5, "universes")
  41198. },
  41199. {
  41200. name: "Universe Palm",
  41201. height: math.unit(20, "universes")
  41202. },
  41203. {
  41204. name: "Light Multiversal",
  41205. height: math.unit(5, "multiverses")
  41206. },
  41207. {
  41208. name: "Multiverse Palm",
  41209. height: math.unit(20, "multiverses")
  41210. },
  41211. {
  41212. name: "Inferno Incarnate",
  41213. height: math.unit(1e7, "multiverses")
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(8, "feet"),
  41222. weight: math.unit(1200, "lb"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/malithee/front.svg",
  41226. extra: 1675/1640,
  41227. bottom: 162/1837
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Mortal Interaction",
  41234. height: math.unit(8, "feet"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Large",
  41239. height: math.unit(24, "feet")
  41240. },
  41241. {
  41242. name: "Kaiju",
  41243. height: math.unit(240, "feet")
  41244. },
  41245. {
  41246. name: "Megamacro",
  41247. height: math.unit(8000, "feet")
  41248. },
  41249. {
  41250. name: "Continent Cracker",
  41251. height: math.unit(24e6, "feet")
  41252. },
  41253. {
  41254. name: "Earth-Eclipsing",
  41255. height: math.unit(2.4e8, "feet")
  41256. },
  41257. {
  41258. name: "Sol-Swallowing",
  41259. height: math.unit(8e10, "feet")
  41260. },
  41261. {
  41262. name: "Galaxy Gulper",
  41263. height: math.unit(8, "galaxies")
  41264. },
  41265. {
  41266. name: "Light Universal",
  41267. height: math.unit(4, "universes")
  41268. },
  41269. {
  41270. name: "Universe Atoms",
  41271. height: math.unit(1.829e9, "universes")
  41272. },
  41273. {
  41274. name: "Light Multiversal",
  41275. height: math.unit(4, "multiverses")
  41276. },
  41277. {
  41278. name: "Multiverse Atoms",
  41279. height: math.unit(1.829e9, "multiverses")
  41280. },
  41281. {
  41282. name: "Nigh-Omnipresence",
  41283. height: math.unit(8e261, "multiverses")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(10, "feet"),
  41292. weight: math.unit(1500, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/miles-thestia/front.svg",
  41296. extra: 1812/1727,
  41297. bottom: 86/1898
  41298. }
  41299. },
  41300. back: {
  41301. height: math.unit(10, "feet"),
  41302. weight: math.unit(1500, "lb"),
  41303. name: "Back",
  41304. image: {
  41305. source: "./media/characters/miles-thestia/back.svg",
  41306. extra: 1799/1690,
  41307. bottom: 47/1846
  41308. }
  41309. },
  41310. frontNsfw: {
  41311. height: math.unit(10, "feet"),
  41312. weight: math.unit(1500, "lb"),
  41313. name: "Front (NSFW)",
  41314. image: {
  41315. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41316. extra: 1812/1727,
  41317. bottom: 86/1898
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Mini-Macro",
  41324. height: math.unit(10, "feet"),
  41325. default: true
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41331. {
  41332. front: {
  41333. height: math.unit(25, "feet"),
  41334. name: "Front",
  41335. image: {
  41336. source: "./media/characters/titan-s-wulf/front.svg",
  41337. extra: 1560/1484,
  41338. bottom: 76/1636
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Smallest",
  41345. height: math.unit(25, "feet"),
  41346. default: true
  41347. },
  41348. {
  41349. name: "Normal",
  41350. height: math.unit(200, "feet")
  41351. },
  41352. {
  41353. name: "Macro",
  41354. height: math.unit(200000, "feet")
  41355. },
  41356. {
  41357. name: "Multiversal Original",
  41358. height: math.unit(10000, "multiverses")
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(8, "feet"),
  41367. weight: math.unit(553, "lb"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/tawendeh/front.svg",
  41371. extra: 2365/2268,
  41372. bottom: 83/2448
  41373. }
  41374. },
  41375. frontClothed: {
  41376. height: math.unit(8, "feet"),
  41377. weight: math.unit(553, "lb"),
  41378. name: "Front (Clothed)",
  41379. image: {
  41380. source: "./media/characters/tawendeh/front-clothed.svg",
  41381. extra: 2365/2268,
  41382. bottom: 83/2448
  41383. }
  41384. },
  41385. back: {
  41386. height: math.unit(8, "feet"),
  41387. weight: math.unit(553, "lb"),
  41388. name: "Back",
  41389. image: {
  41390. source: "./media/characters/tawendeh/back.svg",
  41391. extra: 2397/2294,
  41392. bottom: 42/2439
  41393. }
  41394. },
  41395. },
  41396. [
  41397. {
  41398. name: "Mortal Interaction",
  41399. height: math.unit(8, "feet"),
  41400. default: true
  41401. },
  41402. {
  41403. name: "Giant",
  41404. height: math.unit(80, "feet")
  41405. },
  41406. {
  41407. name: "Macro",
  41408. height: math.unit(800, "feet")
  41409. },
  41410. {
  41411. name: "Megamacro",
  41412. height: math.unit(8000, "feet")
  41413. },
  41414. {
  41415. name: "City-Crushing",
  41416. height: math.unit(24000, "feet")
  41417. },
  41418. {
  41419. name: "Mountain-Mashing",
  41420. height: math.unit(80000, "feet")
  41421. },
  41422. {
  41423. name: "Nation Nemesis",
  41424. height: math.unit(8e6, "feet")
  41425. },
  41426. {
  41427. name: "Continent Cracker",
  41428. height: math.unit(24e6, "feet")
  41429. },
  41430. {
  41431. name: "Earth-Eclipsing",
  41432. height: math.unit(2.4e8, "feet")
  41433. },
  41434. {
  41435. name: "Gas Giant Gulper",
  41436. height: math.unit(2.4e9, "feet")
  41437. },
  41438. {
  41439. name: "Sol-Swallowing",
  41440. height: math.unit(8e10, "feet")
  41441. },
  41442. {
  41443. name: "Galaxy Gulper",
  41444. height: math.unit(8, "galaxies")
  41445. },
  41446. {
  41447. name: "Cosmos Churner",
  41448. height: math.unit(8, "universes")
  41449. },
  41450. {
  41451. name: "Omnipotent Otter",
  41452. height: math.unit(80, "universes")
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41458. {
  41459. front: {
  41460. height: math.unit(2.6, "meters"),
  41461. weight: math.unit(900, "kg"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/neesha/front.svg",
  41465. extra: 1803/1653,
  41466. bottom: 128/1931
  41467. }
  41468. },
  41469. },
  41470. [
  41471. {
  41472. name: "Normal",
  41473. height: math.unit(2.6, "meters"),
  41474. default: true
  41475. },
  41476. {
  41477. name: "Macro",
  41478. height: math.unit(50, "meters")
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(5, "feet"),
  41487. weight: math.unit(185, "lb"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/kyera/front.svg",
  41491. extra: 1875/1790,
  41492. bottom: 96/1971
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(5, "feet"),
  41500. default: true
  41501. },
  41502. ]
  41503. ))
  41504. characterMakers.push(() => makeCharacter(
  41505. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41506. {
  41507. front: {
  41508. height: math.unit(7 + 6/12, "feet"),
  41509. weight: math.unit(540, "lb"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/yuko/front.svg",
  41513. extra: 1282/1222,
  41514. bottom: 101/1383
  41515. }
  41516. },
  41517. frontClothed: {
  41518. height: math.unit(7 + 6/12, "feet"),
  41519. weight: math.unit(540, "lb"),
  41520. name: "Front (Clothed)",
  41521. image: {
  41522. source: "./media/characters/yuko/front-clothed.svg",
  41523. extra: 1282/1222,
  41524. bottom: 101/1383
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Normal",
  41531. height: math.unit(7 + 6/12, "feet"),
  41532. default: true
  41533. },
  41534. {
  41535. name: "Macro",
  41536. height: math.unit(26 + 9/12, "feet")
  41537. },
  41538. {
  41539. name: "Megamacro",
  41540. height: math.unit(300, "feet")
  41541. },
  41542. {
  41543. name: "Gigamacro",
  41544. height: math.unit(5000, "feet")
  41545. },
  41546. {
  41547. name: "Planetary",
  41548. height: math.unit(10000, "miles")
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(8 + 2/12, "feet"),
  41557. weight: math.unit(600, "lb"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/deam-nitrel/front.svg",
  41561. extra: 1308/1234,
  41562. bottom: 125/1433
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Normal",
  41569. height: math.unit(8 + 2/12, "feet"),
  41570. default: true
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(6.1, "feet"),
  41579. weight: math.unit(180, "lb"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/skyress/front.svg",
  41583. extra: 1045/915,
  41584. bottom: 28/1073
  41585. }
  41586. },
  41587. maw: {
  41588. height: math.unit(1, "feet"),
  41589. name: "Maw",
  41590. image: {
  41591. source: "./media/characters/skyress/maw.svg"
  41592. }
  41593. },
  41594. },
  41595. [
  41596. {
  41597. name: "Normal",
  41598. height: math.unit(6.1, "feet"),
  41599. default: true
  41600. },
  41601. {
  41602. name: "Macro",
  41603. height: math.unit(200, "feet")
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41609. {
  41610. front: {
  41611. height: math.unit(4 + 2/12, "feet"),
  41612. weight: math.unit(40, "kg"),
  41613. name: "Front",
  41614. image: {
  41615. source: "./media/characters/amethyst-jones/front.svg",
  41616. extra: 1220/1150,
  41617. bottom: 101/1321
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(4 + 2/12, "feet"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41631. {
  41632. front: {
  41633. height: math.unit(1.7, "m"),
  41634. weight: math.unit(135, "lb"),
  41635. name: "Front",
  41636. image: {
  41637. source: "./media/characters/jade/front.svg",
  41638. extra: 1818/1767,
  41639. bottom: 32/1850
  41640. }
  41641. },
  41642. back: {
  41643. height: math.unit(1.7, "m"),
  41644. weight: math.unit(135, "lb"),
  41645. name: "Back",
  41646. image: {
  41647. source: "./media/characters/jade/back.svg",
  41648. extra: 1869/1809,
  41649. bottom: 35/1904
  41650. }
  41651. },
  41652. hand: {
  41653. height: math.unit(0.24, "m"),
  41654. name: "Hand",
  41655. image: {
  41656. source: "./media/characters/jade/hand.svg"
  41657. }
  41658. },
  41659. foot: {
  41660. height: math.unit(0.263, "m"),
  41661. name: "Foot",
  41662. image: {
  41663. source: "./media/characters/jade/foot.svg"
  41664. }
  41665. },
  41666. dick: {
  41667. height: math.unit(0.47, "m"),
  41668. name: "Dick",
  41669. image: {
  41670. source: "./media/characters/jade/dick.svg"
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Micro",
  41677. height: math.unit(22, "cm")
  41678. },
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(1.7, "m"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(152, "m")
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(100, "miles"),
  41695. weight: math.unit(20000, "tons"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/cookie/front.svg",
  41699. extra: 1125/1070,
  41700. bottom: 30/1155
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Big",
  41707. height: math.unit(50, "feet")
  41708. },
  41709. {
  41710. name: "Macro",
  41711. height: math.unit(100, "miles"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Megamacro",
  41716. height: math.unit(90000, "miles")
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(6, "feet"),
  41725. weight: math.unit(145, "lb"),
  41726. name: "Front",
  41727. image: {
  41728. source: "./media/characters/farzian/front.svg",
  41729. extra: 1902/1693,
  41730. bottom: 108/2010
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Macro",
  41737. height: math.unit(500, "feet"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(3 + 6/12, "feet"),
  41747. weight: math.unit(50, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/kimberly-tilson/front.svg",
  41751. extra: 1400/1322,
  41752. bottom: 36/1436
  41753. }
  41754. },
  41755. back: {
  41756. height: math.unit(3 + 6/12, "feet"),
  41757. weight: math.unit(50, "lb"),
  41758. name: "Back",
  41759. image: {
  41760. source: "./media/characters/kimberly-tilson/back.svg",
  41761. extra: 1370/1307,
  41762. bottom: 20/1390
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(3 + 6/12, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(1148, "feet"),
  41779. weight: math.unit(34057, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/harthos/front.svg",
  41783. extra: 1391/1339,
  41784. bottom: 13/1404
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Macro",
  41791. height: math.unit(1148, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(15, "feet"),
  41801. name: "Front",
  41802. image: {
  41803. source: "./media/characters/hypatia/front.svg",
  41804. extra: 1653/1591,
  41805. bottom: 79/1732
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Normal",
  41812. height: math.unit(15, "feet")
  41813. },
  41814. {
  41815. name: "Small",
  41816. height: math.unit(300, "feet")
  41817. },
  41818. {
  41819. name: "Macro",
  41820. height: math.unit(2500, "feet"),
  41821. default: true
  41822. },
  41823. {
  41824. name: "Mega Macro",
  41825. height: math.unit(1500, "miles")
  41826. },
  41827. {
  41828. name: "Giga Macro",
  41829. height: math.unit(1.5e6, "miles")
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(6, "feet"),
  41838. weight: math.unit(200, "lb"),
  41839. name: "Front",
  41840. image: {
  41841. source: "./media/characters/wulver/front.svg",
  41842. extra: 1724/1632,
  41843. bottom: 130/1854
  41844. }
  41845. },
  41846. frontNsfw: {
  41847. height: math.unit(6, "feet"),
  41848. weight: math.unit(200, "lb"),
  41849. name: "Front (NSFW)",
  41850. image: {
  41851. source: "./media/characters/wulver/front-nsfw.svg",
  41852. extra: 1724/1632,
  41853. bottom: 130/1854
  41854. }
  41855. },
  41856. },
  41857. [
  41858. {
  41859. name: "Human-Sized",
  41860. height: math.unit(6, "feet")
  41861. },
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(4, "meters"),
  41865. default: true
  41866. },
  41867. {
  41868. name: "Large",
  41869. height: math.unit(6, "m")
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(7, "feet"),
  41878. name: "Front",
  41879. image: {
  41880. source: "./media/characters/maru/front.svg",
  41881. extra: 1595/1570,
  41882. bottom: 0/1595
  41883. }
  41884. },
  41885. },
  41886. [
  41887. {
  41888. name: "Normal",
  41889. height: math.unit(7, "feet"),
  41890. default: true
  41891. },
  41892. {
  41893. name: "Macro",
  41894. height: math.unit(700, "feet")
  41895. },
  41896. {
  41897. name: "Mega Macro",
  41898. height: math.unit(25, "miles")
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(6, "feet"),
  41907. weight: math.unit(170, "lb"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/xenon/front.svg",
  41911. extra: 1376/1305,
  41912. bottom: 56/1432
  41913. }
  41914. },
  41915. back: {
  41916. height: math.unit(6, "feet"),
  41917. weight: math.unit(170, "lb"),
  41918. name: "Back",
  41919. image: {
  41920. source: "./media/characters/xenon/back.svg",
  41921. extra: 1328/1259,
  41922. bottom: 95/1423
  41923. }
  41924. },
  41925. maw: {
  41926. height: math.unit(0.52, "feet"),
  41927. name: "Maw",
  41928. image: {
  41929. source: "./media/characters/xenon/maw.svg"
  41930. }
  41931. },
  41932. handLeft: {
  41933. height: math.unit(0.82 * 169 / 153, "feet"),
  41934. name: "Hand (Left)",
  41935. image: {
  41936. source: "./media/characters/xenon/hand-left.svg"
  41937. }
  41938. },
  41939. handRight: {
  41940. height: math.unit(0.82, "feet"),
  41941. name: "Hand (Right)",
  41942. image: {
  41943. source: "./media/characters/xenon/hand-right.svg"
  41944. }
  41945. },
  41946. footLeft: {
  41947. height: math.unit(1.13, "feet"),
  41948. name: "Foot (Left)",
  41949. image: {
  41950. source: "./media/characters/xenon/foot-left.svg"
  41951. }
  41952. },
  41953. footRight: {
  41954. height: math.unit(1.13 * 194 / 196, "feet"),
  41955. name: "Foot (Right)",
  41956. image: {
  41957. source: "./media/characters/xenon/foot-right.svg"
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Micro",
  41964. height: math.unit(0.8, "inches")
  41965. },
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(6, "feet")
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(50, "feet"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Macro+",
  41977. height: math.unit(250, "feet")
  41978. },
  41979. {
  41980. name: "Megamacro",
  41981. height: math.unit(1500, "feet")
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(7 + 5/12, "feet"),
  41990. name: "Front",
  41991. image: {
  41992. source: "./media/characters/zane/front.svg",
  41993. extra: 1260/1203,
  41994. bottom: 94/1354
  41995. }
  41996. },
  41997. back: {
  41998. height: math.unit(5.05, "feet"),
  41999. name: "Back",
  42000. image: {
  42001. source: "./media/characters/zane/back.svg",
  42002. extra: 893/829,
  42003. bottom: 30/923
  42004. }
  42005. },
  42006. werewolf: {
  42007. height: math.unit(11, "feet"),
  42008. name: "Werewolf",
  42009. image: {
  42010. source: "./media/characters/zane/werewolf.svg",
  42011. extra: 1383/1323,
  42012. bottom: 89/1472
  42013. }
  42014. },
  42015. foot: {
  42016. height: math.unit(1.46, "feet"),
  42017. name: "Foot",
  42018. image: {
  42019. source: "./media/characters/zane/foot.svg"
  42020. }
  42021. },
  42022. footFront: {
  42023. height: math.unit(0.784, "feet"),
  42024. name: "Foot (Front)",
  42025. image: {
  42026. source: "./media/characters/zane/foot-front.svg"
  42027. }
  42028. },
  42029. dick: {
  42030. height: math.unit(1.95, "feet"),
  42031. name: "Dick",
  42032. image: {
  42033. source: "./media/characters/zane/dick.svg"
  42034. }
  42035. },
  42036. dickWerewolf: {
  42037. height: math.unit(3.77, "feet"),
  42038. name: "Dick (Werewolf)",
  42039. image: {
  42040. source: "./media/characters/zane/dick.svg"
  42041. }
  42042. },
  42043. },
  42044. [
  42045. {
  42046. name: "Normal",
  42047. height: math.unit(7 + 5/12, "feet"),
  42048. default: true
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42054. {
  42055. front: {
  42056. height: math.unit(6 + 2/12, "feet"),
  42057. weight: math.unit(284, "lb"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/benni-desparque/front.svg",
  42061. extra: 1353/1126,
  42062. bottom: 69/1422
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Civilian",
  42069. height: math.unit(6 + 2/12, "feet")
  42070. },
  42071. {
  42072. name: "Normal",
  42073. height: math.unit(98, "feet"),
  42074. default: true
  42075. },
  42076. {
  42077. name: "Kaiju Fighter",
  42078. height: math.unit(268, "feet")
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(5, "feet"),
  42087. weight: math.unit(105, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/maxine/front.svg",
  42091. extra: 1386/1250,
  42092. bottom: 71/1457
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(5, "feet"),
  42100. default: true
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42106. {
  42107. front: {
  42108. height: math.unit(11 + 7/12, "feet"),
  42109. weight: math.unit(9576, "lb"),
  42110. name: "Front",
  42111. image: {
  42112. source: "./media/characters/scaly/front.svg",
  42113. extra: 888/867,
  42114. bottom: 36/924
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(11 + 7/12, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42128. {
  42129. front: {
  42130. height: math.unit(6 + 3/12, "feet"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/saelria/front.svg",
  42134. extra: 1243/1138,
  42135. bottom: 46/1289
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Micro",
  42142. height: math.unit(6, "inches"),
  42143. },
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(6 + 3/12, "feet"),
  42147. default: true
  42148. },
  42149. {
  42150. name: "Macro",
  42151. height: math.unit(25, "feet")
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(80, "meters"),
  42160. weight: math.unit(7000, "tonnes"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/tef/front.svg",
  42164. extra: 2036/1991,
  42165. bottom: 54/2090
  42166. }
  42167. },
  42168. back: {
  42169. height: math.unit(80, "meters"),
  42170. weight: math.unit(7000, "tonnes"),
  42171. name: "Back",
  42172. image: {
  42173. source: "./media/characters/tef/back.svg",
  42174. extra: 2036/1991,
  42175. bottom: 54/2090
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Macro",
  42182. height: math.unit(80, "meters"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42189. {
  42190. front: {
  42191. height: math.unit(13, "feet"),
  42192. weight: math.unit(6, "tons"),
  42193. name: "Front",
  42194. image: {
  42195. source: "./media/characters/rover/front.svg",
  42196. extra: 1233/1156,
  42197. bottom: 50/1283
  42198. }
  42199. },
  42200. back: {
  42201. height: math.unit(13, "feet"),
  42202. weight: math.unit(6, "tons"),
  42203. name: "Back",
  42204. image: {
  42205. source: "./media/characters/rover/back.svg",
  42206. extra: 1327/1258,
  42207. bottom: 39/1366
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(13, "feet"),
  42215. default: true
  42216. },
  42217. {
  42218. name: "Macro",
  42219. height: math.unit(1300, "feet")
  42220. },
  42221. {
  42222. name: "Megamacro",
  42223. height: math.unit(1300, "miles")
  42224. },
  42225. {
  42226. name: "Gigamacro",
  42227. height: math.unit(1300000, "miles")
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(6, "feet"),
  42236. weight: math.unit(150, "lb"),
  42237. name: "Front",
  42238. image: {
  42239. source: "./media/characters/ariz/front.svg",
  42240. extra: 1401/1346,
  42241. bottom: 5/1406
  42242. }
  42243. },
  42244. },
  42245. [
  42246. {
  42247. name: "Normal",
  42248. height: math.unit(10, "feet"),
  42249. default: true
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(6, "feet"),
  42258. weight: math.unit(140, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/sigrun/front.svg",
  42262. extra: 1418/1359,
  42263. bottom: 27/1445
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Macro",
  42270. height: math.unit(35, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(6, "feet"),
  42280. weight: math.unit(150, "lb"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/numin/front.svg",
  42284. extra: 1433/1388,
  42285. bottom: 12/1445
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Macro",
  42292. height: math.unit(21.5, "km"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(6, "feet"),
  42302. weight: math.unit(463, "lb"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/melwa/front.svg",
  42306. extra: 1307/1248,
  42307. bottom: 93/1400
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Macro",
  42314. height: math.unit(50, "meters"),
  42315. default: true
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42321. {
  42322. front: {
  42323. height: math.unit(325, "feet"),
  42324. name: "Front",
  42325. image: {
  42326. source: "./media/characters/zorkaiju/front.svg",
  42327. extra: 1955/1814,
  42328. bottom: 40/1995
  42329. }
  42330. },
  42331. frontExtended: {
  42332. height: math.unit(325, "feet"),
  42333. name: "Front (Extended)",
  42334. image: {
  42335. source: "./media/characters/zorkaiju/front-extended.svg",
  42336. extra: 1955/1814,
  42337. bottom: 40/1995
  42338. }
  42339. },
  42340. side: {
  42341. height: math.unit(325, "feet"),
  42342. name: "Side",
  42343. image: {
  42344. source: "./media/characters/zorkaiju/side.svg",
  42345. extra: 1495/1396,
  42346. bottom: 17/1512
  42347. }
  42348. },
  42349. sideExtended: {
  42350. height: math.unit(325, "feet"),
  42351. name: "Side (Extended)",
  42352. image: {
  42353. source: "./media/characters/zorkaiju/side-extended.svg",
  42354. extra: 1495/1396,
  42355. bottom: 17/1512
  42356. }
  42357. },
  42358. back: {
  42359. height: math.unit(325, "feet"),
  42360. name: "Back",
  42361. image: {
  42362. source: "./media/characters/zorkaiju/back.svg",
  42363. extra: 1959/1821,
  42364. bottom: 31/1990
  42365. }
  42366. },
  42367. backExtended: {
  42368. height: math.unit(325, "feet"),
  42369. name: "Back (Extended)",
  42370. image: {
  42371. source: "./media/characters/zorkaiju/back-extended.svg",
  42372. extra: 1959/1821,
  42373. bottom: 31/1990
  42374. }
  42375. },
  42376. hand: {
  42377. height: math.unit(58.4, "feet"),
  42378. name: "Hand",
  42379. image: {
  42380. source: "./media/characters/zorkaiju/hand.svg"
  42381. }
  42382. },
  42383. handExtended: {
  42384. height: math.unit(61.4, "feet"),
  42385. name: "Hand (Extended)",
  42386. image: {
  42387. source: "./media/characters/zorkaiju/hand-extended.svg"
  42388. }
  42389. },
  42390. foot: {
  42391. height: math.unit(95, "feet"),
  42392. name: "Foot",
  42393. image: {
  42394. source: "./media/characters/zorkaiju/foot.svg"
  42395. }
  42396. },
  42397. leftArm: {
  42398. height: math.unit(59, "feet"),
  42399. name: "Left Arm",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/left-arm.svg"
  42402. }
  42403. },
  42404. rightArm: {
  42405. height: math.unit(59, "feet"),
  42406. name: "Right Arm",
  42407. image: {
  42408. source: "./media/characters/zorkaiju/right-arm.svg"
  42409. }
  42410. },
  42411. leftArmExtended: {
  42412. height: math.unit(59 * 1.033546, "feet"),
  42413. name: "Left Arm (Extended)",
  42414. image: {
  42415. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42416. }
  42417. },
  42418. rightArmExtended: {
  42419. height: math.unit(59 * 1.0496, "feet"),
  42420. name: "Right Arm (Extended)",
  42421. image: {
  42422. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42423. }
  42424. },
  42425. tail: {
  42426. height: math.unit(104, "feet"),
  42427. name: "Tail",
  42428. image: {
  42429. source: "./media/characters/zorkaiju/tail.svg"
  42430. }
  42431. },
  42432. tailExtended: {
  42433. height: math.unit(104, "feet"),
  42434. name: "Tail (Extended)",
  42435. image: {
  42436. source: "./media/characters/zorkaiju/tail-extended.svg"
  42437. }
  42438. },
  42439. tailBottom: {
  42440. height: math.unit(104, "feet"),
  42441. name: "Tail Bottom",
  42442. image: {
  42443. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42444. }
  42445. },
  42446. crystal: {
  42447. height: math.unit(27.54, "feet"),
  42448. name: "Crystal",
  42449. image: {
  42450. source: "./media/characters/zorkaiju/crystal.svg"
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Kaiju",
  42457. height: math.unit(325, "feet"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42464. {
  42465. front: {
  42466. height: math.unit(6 + 1/12, "feet"),
  42467. weight: math.unit(115, "lb"),
  42468. name: "Front",
  42469. image: {
  42470. source: "./media/characters/bailey-belfry/front.svg",
  42471. extra: 1240/1121,
  42472. bottom: 101/1341
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(6 + 1/12, "feet"),
  42480. default: true
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42486. {
  42487. side: {
  42488. height: math.unit(4, "meters"),
  42489. weight: math.unit(250, "kg"),
  42490. name: "Side",
  42491. image: {
  42492. source: "./media/characters/blacky/side.svg",
  42493. extra: 1027/919,
  42494. bottom: 43/1070
  42495. }
  42496. },
  42497. maw: {
  42498. height: math.unit(1, "meters"),
  42499. name: "Maw",
  42500. image: {
  42501. source: "./media/characters/blacky/maw.svg"
  42502. }
  42503. },
  42504. paw: {
  42505. height: math.unit(1, "meters"),
  42506. name: "Paw",
  42507. image: {
  42508. source: "./media/characters/blacky/paw.svg"
  42509. }
  42510. },
  42511. },
  42512. [
  42513. {
  42514. name: "Normal",
  42515. height: math.unit(4, "meters"),
  42516. default: true
  42517. },
  42518. ]
  42519. ))
  42520. characterMakers.push(() => makeCharacter(
  42521. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42522. {
  42523. front: {
  42524. height: math.unit(170, "cm"),
  42525. weight: math.unit(66, "kg"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/thux-ei/front.svg",
  42529. extra: 1109/1011,
  42530. bottom: 8/1117
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(170, "cm"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(5, "feet"),
  42547. weight: math.unit(120, "lb"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/roxanne-voltaire/front.svg",
  42551. extra: 1901/1779,
  42552. bottom: 53/1954
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Normal",
  42559. height: math.unit(5, "feet"),
  42560. default: true
  42561. },
  42562. {
  42563. name: "Giant",
  42564. height: math.unit(50, "feet")
  42565. },
  42566. {
  42567. name: "Titan",
  42568. height: math.unit(500, "feet")
  42569. },
  42570. {
  42571. name: "Macro",
  42572. height: math.unit(5000, "feet")
  42573. },
  42574. {
  42575. name: "Megamacro",
  42576. height: math.unit(50000, "feet")
  42577. },
  42578. {
  42579. name: "Gigamacro",
  42580. height: math.unit(500000, "feet")
  42581. },
  42582. {
  42583. name: "Teramacro",
  42584. height: math.unit(5e6, "feet")
  42585. },
  42586. ]
  42587. ))
  42588. characterMakers.push(() => makeCharacter(
  42589. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42590. {
  42591. front: {
  42592. height: math.unit(6 + 2/12, "feet"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/squeaks/front.svg",
  42596. extra: 1823/1768,
  42597. bottom: 138/1961
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Micro",
  42604. height: math.unit(0.5, "inches")
  42605. },
  42606. {
  42607. name: "Normal",
  42608. height: math.unit(6 + 2/12, "feet"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Macro",
  42613. height: math.unit(600, "feet")
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42619. {
  42620. front: {
  42621. height: math.unit(1.72, "meters"),
  42622. name: "Front",
  42623. image: {
  42624. source: "./media/characters/archinger/front.svg",
  42625. extra: 1861/1675,
  42626. bottom: 125/1986
  42627. }
  42628. },
  42629. back: {
  42630. height: math.unit(1.72, "meters"),
  42631. name: "Back",
  42632. image: {
  42633. source: "./media/characters/archinger/back.svg",
  42634. extra: 1844/1701,
  42635. bottom: 104/1948
  42636. }
  42637. },
  42638. cock: {
  42639. height: math.unit(0.59, "feet"),
  42640. name: "Cock",
  42641. image: {
  42642. source: "./media/characters/archinger/cock.svg"
  42643. }
  42644. },
  42645. },
  42646. [
  42647. {
  42648. name: "Normal",
  42649. height: math.unit(1.72, "meters"),
  42650. default: true
  42651. },
  42652. {
  42653. name: "Macro",
  42654. height: math.unit(84, "meters")
  42655. },
  42656. {
  42657. name: "Macro+",
  42658. height: math.unit(112, "meters")
  42659. },
  42660. {
  42661. name: "Macro++",
  42662. height: math.unit(960, "meters")
  42663. },
  42664. {
  42665. name: "Macro+++",
  42666. height: math.unit(4, "km")
  42667. },
  42668. {
  42669. name: "Macro++++",
  42670. height: math.unit(48, "km")
  42671. },
  42672. {
  42673. name: "Macro+++++",
  42674. height: math.unit(4500, "km")
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(5 + 5/12, "feet"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/alsnapz/front.svg",
  42686. extra: 1157/1065,
  42687. bottom: 42/1199
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(5 + 5/12, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42701. {
  42702. side: {
  42703. height: math.unit(3.2, "earths"),
  42704. name: "Side",
  42705. image: {
  42706. source: "./media/characters/mag/side.svg",
  42707. extra: 1331/1008,
  42708. bottom: 52/1383
  42709. }
  42710. },
  42711. wing: {
  42712. height: math.unit(1.94, "earths"),
  42713. name: "Wing",
  42714. image: {
  42715. source: "./media/characters/mag/wing.svg"
  42716. }
  42717. },
  42718. dick: {
  42719. height: math.unit(1.8, "earths"),
  42720. name: "Dick",
  42721. image: {
  42722. source: "./media/characters/mag/dick.svg"
  42723. }
  42724. },
  42725. ass: {
  42726. height: math.unit(1.33, "earths"),
  42727. name: "Ass",
  42728. image: {
  42729. source: "./media/characters/mag/ass.svg"
  42730. }
  42731. },
  42732. head: {
  42733. height: math.unit(1.1, "earths"),
  42734. name: "Head",
  42735. image: {
  42736. source: "./media/characters/mag/head.svg"
  42737. }
  42738. },
  42739. maw: {
  42740. height: math.unit(1.62, "earths"),
  42741. name: "Maw",
  42742. image: {
  42743. source: "./media/characters/mag/maw.svg"
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Small",
  42750. height: math.unit(162, "feet")
  42751. },
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(3.2, "earths"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(512, "feet"),
  42764. weight: math.unit(63509, "tonnes"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/vorrel-harroc/front.svg",
  42768. extra: 1075/1063,
  42769. bottom: 62/1137
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(10, "feet")
  42777. },
  42778. {
  42779. name: "Macro",
  42780. height: math.unit(512, "feet"),
  42781. default: true
  42782. },
  42783. {
  42784. name: "Megamacro",
  42785. height: math.unit(256, "miles")
  42786. },
  42787. {
  42788. name: "Gigamacro",
  42789. height: math.unit(4096, "miles")
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42795. {
  42796. side: {
  42797. height: math.unit(50, "feet"),
  42798. name: "Side",
  42799. image: {
  42800. source: "./media/characters/froimar/side.svg",
  42801. extra: 855/638,
  42802. bottom: 99/954
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Macro",
  42809. height: math.unit(50, "feet"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42816. {
  42817. front: {
  42818. height: math.unit(210, "miles"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/timothy/front.svg",
  42822. extra: 1007/943,
  42823. bottom: 62/1069
  42824. }
  42825. },
  42826. frontSkirt: {
  42827. height: math.unit(210, "miles"),
  42828. name: "Front (Skirt)",
  42829. image: {
  42830. source: "./media/characters/timothy/front-skirt.svg",
  42831. extra: 1007/943,
  42832. bottom: 62/1069
  42833. }
  42834. },
  42835. frontCoat: {
  42836. height: math.unit(210, "miles"),
  42837. name: "Front (Coat)",
  42838. image: {
  42839. source: "./media/characters/timothy/front-coat.svg",
  42840. extra: 1007/943,
  42841. bottom: 62/1069
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Macro",
  42848. height: math.unit(210, "miles"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Megamacro",
  42853. height: math.unit(210000, "miles")
  42854. },
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42859. {
  42860. front: {
  42861. height: math.unit(188, "feet"),
  42862. name: "Front",
  42863. image: {
  42864. source: "./media/characters/pyotr/front.svg",
  42865. extra: 1912/1826,
  42866. bottom: 18/1930
  42867. }
  42868. },
  42869. },
  42870. [
  42871. {
  42872. name: "Macro",
  42873. height: math.unit(188, "feet"),
  42874. default: true
  42875. },
  42876. {
  42877. name: "Megamacro",
  42878. height: math.unit(8, "miles")
  42879. },
  42880. ]
  42881. ))
  42882. characterMakers.push(() => makeCharacter(
  42883. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42884. {
  42885. side: {
  42886. height: math.unit(10, "feet"),
  42887. weight: math.unit(4500, "lb"),
  42888. name: "Side",
  42889. image: {
  42890. source: "./media/characters/ackart/side.svg",
  42891. extra: 1776/1668,
  42892. bottom: 116/1892
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Normal",
  42899. height: math.unit(10, "feet"),
  42900. default: true
  42901. },
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42906. {
  42907. side: {
  42908. height: math.unit(21, "feet"),
  42909. name: "Side",
  42910. image: {
  42911. source: "./media/characters/nolow/side.svg",
  42912. extra: 1484/1434,
  42913. bottom: 85/1569
  42914. }
  42915. },
  42916. sideErect: {
  42917. height: math.unit(21, "feet"),
  42918. name: "Side-erect",
  42919. image: {
  42920. source: "./media/characters/nolow/side-erect.svg",
  42921. extra: 1484/1434,
  42922. bottom: 85/1569
  42923. }
  42924. },
  42925. },
  42926. [
  42927. {
  42928. name: "Regular",
  42929. height: math.unit(12, "feet")
  42930. },
  42931. {
  42932. name: "Big Chee",
  42933. height: math.unit(21, "feet"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(7, "feet"),
  42943. weight: math.unit(250, "lb"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/nines/front.svg",
  42947. extra: 1741/1607,
  42948. bottom: 41/1782
  42949. }
  42950. },
  42951. side: {
  42952. height: math.unit(7, "feet"),
  42953. weight: math.unit(250, "lb"),
  42954. name: "Side",
  42955. image: {
  42956. source: "./media/characters/nines/side.svg",
  42957. extra: 1854/1735,
  42958. bottom: 93/1947
  42959. }
  42960. },
  42961. back: {
  42962. height: math.unit(7, "feet"),
  42963. weight: math.unit(250, "lb"),
  42964. name: "Back",
  42965. image: {
  42966. source: "./media/characters/nines/back.svg",
  42967. extra: 1748/1615,
  42968. bottom: 20/1768
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Megamacro",
  42975. height: math.unit(99, "km"),
  42976. default: true
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(5 + 10/12, "feet"),
  42985. weight: math.unit(210, "lb"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/zenith/front.svg",
  42989. extra: 1531/1452,
  42990. bottom: 198/1729
  42991. }
  42992. },
  42993. back: {
  42994. height: math.unit(5 + 10/12, "feet"),
  42995. weight: math.unit(210, "lb"),
  42996. name: "Back",
  42997. image: {
  42998. source: "./media/characters/zenith/back.svg",
  42999. extra: 1571/1487,
  43000. bottom: 75/1646
  43001. }
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(5 + 10/12, "feet"),
  43008. default: true
  43009. }
  43010. ]
  43011. ))
  43012. characterMakers.push(() => makeCharacter(
  43013. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43014. {
  43015. front: {
  43016. height: math.unit(4, "feet"),
  43017. weight: math.unit(60, "lb"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/jasper/front.svg",
  43021. extra: 1450/1379,
  43022. bottom: 19/1469
  43023. }
  43024. },
  43025. },
  43026. [
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(4, "feet"),
  43030. default: true
  43031. },
  43032. ]
  43033. ))
  43034. characterMakers.push(() => makeCharacter(
  43035. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43036. {
  43037. front: {
  43038. height: math.unit(6 + 5/12, "feet"),
  43039. weight: math.unit(290, "lb"),
  43040. name: "Front",
  43041. image: {
  43042. source: "./media/characters/tiberius-thyben/front.svg",
  43043. extra: 757/739,
  43044. bottom: 39/796
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Micro",
  43051. height: math.unit(1.5, "inches")
  43052. },
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(6 + 5/12, "feet"),
  43056. default: true
  43057. },
  43058. {
  43059. name: "Macro",
  43060. height: math.unit(300, "feet")
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(5 + 6/12, "feet"),
  43069. weight: math.unit(60, "kg"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/sabre/front.svg",
  43073. extra: 738/671,
  43074. bottom: 27/765
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Teeny",
  43081. height: math.unit(2, "inches")
  43082. },
  43083. {
  43084. name: "Smol",
  43085. height: math.unit(8, "inches")
  43086. },
  43087. {
  43088. name: "Normal",
  43089. height: math.unit(5 + 6/12, "feet"),
  43090. default: true
  43091. },
  43092. {
  43093. name: "Mini-Macro",
  43094. height: math.unit(15, "feet")
  43095. },
  43096. {
  43097. name: "Macro",
  43098. height: math.unit(50, "feet")
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(6 + 4/12, "feet"),
  43107. weight: math.unit(170, "lb"),
  43108. name: "Front",
  43109. image: {
  43110. source: "./media/characters/charlie/front.svg",
  43111. extra: 1348/1228,
  43112. bottom: 15/1363
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Macro",
  43119. height: math.unit(1700, "meters"),
  43120. default: true
  43121. },
  43122. {
  43123. name: "MegaMacro",
  43124. height: math.unit(20400, "meters")
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(6 + 3/12, "feet"),
  43133. weight: math.unit(185, "lb"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/susan-grant/front.svg",
  43137. extra: 1351/1327,
  43138. bottom: 26/1377
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Normal",
  43145. height: math.unit(6 + 3/12, "feet"),
  43146. default: true
  43147. },
  43148. {
  43149. name: "Macro",
  43150. height: math.unit(225, "feet")
  43151. },
  43152. {
  43153. name: "Macro+",
  43154. height: math.unit(900, "feet")
  43155. },
  43156. {
  43157. name: "MegaMacro",
  43158. height: math.unit(14400, "feet")
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(5 + 4/12, "feet"),
  43167. weight: math.unit(110, "lb"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/axel-isanov/front.svg",
  43171. extra: 1096/1065,
  43172. bottom: 13/1109
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(5 + 4/12, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(9, "feet"),
  43189. weight: math.unit(467, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/necahual/front.svg",
  43193. extra: 920/873,
  43194. bottom: 26/946
  43195. }
  43196. },
  43197. back: {
  43198. height: math.unit(9, "feet"),
  43199. weight: math.unit(467, "lb"),
  43200. name: "Back",
  43201. image: {
  43202. source: "./media/characters/necahual/back.svg",
  43203. extra: 930/884,
  43204. bottom: 16/946
  43205. }
  43206. },
  43207. frontUnderwear: {
  43208. height: math.unit(9, "feet"),
  43209. weight: math.unit(467, "lb"),
  43210. name: "Front (Underwear)",
  43211. image: {
  43212. source: "./media/characters/necahual/front-underwear.svg",
  43213. extra: 920/873,
  43214. bottom: 26/946
  43215. }
  43216. },
  43217. frontDressed: {
  43218. height: math.unit(9, "feet"),
  43219. weight: math.unit(467, "lb"),
  43220. name: "Front (Dressed)",
  43221. image: {
  43222. source: "./media/characters/necahual/front-dressed.svg",
  43223. extra: 920/873,
  43224. bottom: 26/946
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Comprsesed",
  43231. height: math.unit(9, "feet")
  43232. },
  43233. {
  43234. name: "Natural",
  43235. height: math.unit(15, "feet"),
  43236. default: true
  43237. },
  43238. {
  43239. name: "Boosted",
  43240. height: math.unit(50, "feet")
  43241. },
  43242. {
  43243. name: "Boosted+",
  43244. height: math.unit(150, "feet")
  43245. },
  43246. {
  43247. name: "Max",
  43248. height: math.unit(500, "feet")
  43249. },
  43250. ]
  43251. ))
  43252. characterMakers.push(() => makeCharacter(
  43253. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43254. {
  43255. front: {
  43256. height: math.unit(22 + 1/12, "feet"),
  43257. weight: math.unit(3200, "lb"),
  43258. name: "Front",
  43259. image: {
  43260. source: "./media/characters/theo-acacia/front.svg",
  43261. extra: 1796/1741,
  43262. bottom: 83/1879
  43263. }
  43264. },
  43265. frontUnderwear: {
  43266. height: math.unit(22 + 1/12, "feet"),
  43267. weight: math.unit(3200, "lb"),
  43268. name: "Front (Underwear)",
  43269. image: {
  43270. source: "./media/characters/theo-acacia/front-underwear.svg",
  43271. extra: 1796/1741,
  43272. bottom: 83/1879
  43273. }
  43274. },
  43275. frontNude: {
  43276. height: math.unit(22 + 1/12, "feet"),
  43277. weight: math.unit(3200, "lb"),
  43278. name: "Front (Nude)",
  43279. image: {
  43280. source: "./media/characters/theo-acacia/front-nude.svg",
  43281. extra: 1796/1741,
  43282. bottom: 83/1879
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Normal",
  43289. height: math.unit(22 + 1/12, "feet"),
  43290. default: true
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43296. {
  43297. front: {
  43298. height: math.unit(20, "feet"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/astra/front.svg",
  43302. extra: 1850/1714,
  43303. bottom: 106/1956
  43304. }
  43305. },
  43306. frontUndressed: {
  43307. height: math.unit(20, "feet"),
  43308. name: "Front (Undressed)",
  43309. image: {
  43310. source: "./media/characters/astra/front-undressed.svg",
  43311. extra: 1926/1749,
  43312. bottom: 0/1926
  43313. }
  43314. },
  43315. hand: {
  43316. height: math.unit(1.53, "feet"),
  43317. name: "Hand",
  43318. image: {
  43319. source: "./media/characters/astra/hand.svg"
  43320. }
  43321. },
  43322. paw: {
  43323. height: math.unit(1.53, "feet"),
  43324. name: "Paw",
  43325. image: {
  43326. source: "./media/characters/astra/paw.svg"
  43327. }
  43328. },
  43329. },
  43330. [
  43331. {
  43332. name: "Smallest",
  43333. height: math.unit(20, "feet")
  43334. },
  43335. {
  43336. name: "Normal",
  43337. height: math.unit(1e9, "miles"),
  43338. default: true
  43339. },
  43340. {
  43341. name: "Larger",
  43342. height: math.unit(5, "multiverses")
  43343. },
  43344. {
  43345. name: "Largest",
  43346. height: math.unit(1e9, "multiverses")
  43347. },
  43348. ]
  43349. ))
  43350. characterMakers.push(() => makeCharacter(
  43351. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43352. {
  43353. front: {
  43354. height: math.unit(8, "feet"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/breanna/front.svg",
  43358. extra: 1912/1632,
  43359. bottom: 33/1945
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Smallest",
  43366. height: math.unit(8, "feet")
  43367. },
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(1, "mile"),
  43371. default: true
  43372. },
  43373. {
  43374. name: "Maximum",
  43375. height: math.unit(1500000000000, "lightyears")
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(5 + 11/12, "feet"),
  43384. weight: math.unit(155, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/cai/front.svg",
  43388. extra: 1823/1702,
  43389. bottom: 32/1855
  43390. }
  43391. },
  43392. back: {
  43393. height: math.unit(5 + 11/12, "feet"),
  43394. weight: math.unit(155, "lb"),
  43395. name: "Back",
  43396. image: {
  43397. source: "./media/characters/cai/back.svg",
  43398. extra: 1809/1708,
  43399. bottom: 31/1840
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Normal",
  43406. height: math.unit(5 + 11/12, "feet"),
  43407. default: true
  43408. },
  43409. {
  43410. name: "Big",
  43411. height: math.unit(15, "feet")
  43412. },
  43413. {
  43414. name: "Macro",
  43415. height: math.unit(200, "feet")
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(5 + 6/12, "feet"),
  43424. weight: math.unit(160, "lb"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43428. extra: 1227/1174,
  43429. bottom: 37/1264
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(444, "meters"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(18 + 7/12, "feet"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/rex/front.svg",
  43449. extra: 1941/1807,
  43450. bottom: 66/2007
  43451. }
  43452. },
  43453. back: {
  43454. height: math.unit(18 + 7/12, "feet"),
  43455. name: "Back",
  43456. image: {
  43457. source: "./media/characters/rex/back.svg",
  43458. extra: 1937/1822,
  43459. bottom: 42/1979
  43460. }
  43461. },
  43462. boot: {
  43463. height: math.unit(3.45, "feet"),
  43464. name: "Boot",
  43465. image: {
  43466. source: "./media/characters/rex/boot.svg"
  43467. }
  43468. },
  43469. paw: {
  43470. height: math.unit(4.17, "feet"),
  43471. name: "Paw",
  43472. image: {
  43473. source: "./media/characters/rex/paw.svg"
  43474. }
  43475. },
  43476. head: {
  43477. height: math.unit(6.728, "feet"),
  43478. name: "Head",
  43479. image: {
  43480. source: "./media/characters/rex/head.svg"
  43481. }
  43482. },
  43483. },
  43484. [
  43485. {
  43486. name: "Nano",
  43487. height: math.unit(18 + 7/12, "feet")
  43488. },
  43489. {
  43490. name: "Micro",
  43491. height: math.unit(1.5, "megameters")
  43492. },
  43493. {
  43494. name: "Normal",
  43495. height: math.unit(440, "megameters"),
  43496. default: true
  43497. },
  43498. {
  43499. name: "Macro",
  43500. height: math.unit(2.5, "gigameters")
  43501. },
  43502. {
  43503. name: "Gigamacro",
  43504. height: math.unit(2, "galaxies")
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43510. {
  43511. side: {
  43512. height: math.unit(32, "feet"),
  43513. weight: math.unit(250000, "lb"),
  43514. name: "Side",
  43515. image: {
  43516. source: "./media/characters/silverwing/side.svg",
  43517. extra: 1100/1019,
  43518. bottom: 204/1304
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(32, "feet"),
  43526. default: true
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43532. {
  43533. front: {
  43534. height: math.unit(6 + 6/12, "feet"),
  43535. weight: math.unit(350, "lb"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/tristan-hawthorne/front.svg",
  43539. extra: 1159/1124,
  43540. bottom: 37/1196
  43541. },
  43542. form: "labrador",
  43543. default: true
  43544. },
  43545. skunkFront: {
  43546. height: math.unit(4 + 6/12, "feet"),
  43547. weight: math.unit(120, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43551. extra: 1609/1551,
  43552. bottom: 169/1778
  43553. },
  43554. form: "skunk",
  43555. default: true
  43556. },
  43557. },
  43558. [
  43559. {
  43560. name: "Normal",
  43561. height: math.unit(6 + 6/12, "feet"),
  43562. form: "labrador",
  43563. default: true
  43564. },
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(4 + 6/12, "feet"),
  43568. form: "skunk",
  43569. default: true
  43570. },
  43571. ],
  43572. {
  43573. "labrador": {
  43574. name: "Labrador",
  43575. default: true
  43576. },
  43577. "skunk": {
  43578. name: "Skunk"
  43579. }
  43580. }
  43581. ))
  43582. characterMakers.push(() => makeCharacter(
  43583. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43584. {
  43585. front: {
  43586. height: math.unit(5 + 11/12, "feet"),
  43587. weight: math.unit(190, "lb"),
  43588. name: "Front",
  43589. image: {
  43590. source: "./media/characters/mizu/front.svg",
  43591. extra: 1988/1788,
  43592. bottom: 14/2002
  43593. }
  43594. },
  43595. },
  43596. [
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(5 + 11/12, "feet"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(1.7, "feet"),
  43609. weight: math.unit(50, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/dechroma/front.svg",
  43613. extra: 1095/859,
  43614. bottom: 64/1159
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(1.7, "feet"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43628. {
  43629. side: {
  43630. height: math.unit(30, "feet"),
  43631. name: "Side",
  43632. image: {
  43633. source: "./media/characters/veluren-thanazel/side.svg",
  43634. extra: 1611/633,
  43635. bottom: 118/1729
  43636. }
  43637. },
  43638. front: {
  43639. height: math.unit(30, "feet"),
  43640. name: "Front",
  43641. image: {
  43642. source: "./media/characters/veluren-thanazel/front.svg",
  43643. extra: 1486/636,
  43644. bottom: 238/1724
  43645. }
  43646. },
  43647. head: {
  43648. height: math.unit(21.4, "feet"),
  43649. name: "Head",
  43650. image: {
  43651. source: "./media/characters/veluren-thanazel/head.svg"
  43652. }
  43653. },
  43654. genitals: {
  43655. height: math.unit(19.4, "feet"),
  43656. name: "Genitals",
  43657. image: {
  43658. source: "./media/characters/veluren-thanazel/genitals.svg"
  43659. }
  43660. },
  43661. },
  43662. [
  43663. {
  43664. name: "Social",
  43665. height: math.unit(6, "feet")
  43666. },
  43667. {
  43668. name: "Play",
  43669. height: math.unit(12, "feet")
  43670. },
  43671. {
  43672. name: "True",
  43673. height: math.unit(30, "feet"),
  43674. default: true
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(7 + 6/12, "feet"),
  43683. weight: math.unit(500, "kg"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/arcturas/front.svg",
  43687. extra: 1700/1500,
  43688. bottom: 145/1845
  43689. }
  43690. },
  43691. },
  43692. [
  43693. {
  43694. name: "Normal",
  43695. height: math.unit(7 + 6/12, "feet"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43702. {
  43703. side: {
  43704. height: math.unit(6, "feet"),
  43705. weight: math.unit(2, "tons"),
  43706. name: "Side",
  43707. image: {
  43708. source: "./media/characters/vitaen/side.svg",
  43709. extra: 1157/617,
  43710. bottom: 122/1279
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(6, "feet"),
  43718. default: true
  43719. },
  43720. ]
  43721. ))
  43722. characterMakers.push(() => makeCharacter(
  43723. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43724. {
  43725. front: {
  43726. height: math.unit(19, "feet"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/fia-dreamweaver/front.svg",
  43730. extra: 1630/1504,
  43731. bottom: 25/1655
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(19, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(5 + 4/12, "feet"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/artan/front.svg",
  43751. extra: 1618/1535,
  43752. bottom: 46/1664
  43753. }
  43754. },
  43755. back: {
  43756. height: math.unit(5 + 4/12, "feet"),
  43757. name: "Back",
  43758. image: {
  43759. source: "./media/characters/artan/back.svg",
  43760. extra: 1618/1543,
  43761. bottom: 31/1649
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(5 + 4/12, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43775. {
  43776. side: {
  43777. height: math.unit(182, "cm"),
  43778. weight: math.unit(1000, "lb"),
  43779. name: "Side",
  43780. image: {
  43781. source: "./media/characters/silver-dragon/side.svg",
  43782. extra: 710/287,
  43783. bottom: 88/798
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(182, "cm"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43797. {
  43798. side: {
  43799. height: math.unit(6 + 6/12, "feet"),
  43800. weight: math.unit(1.5, "tons"),
  43801. name: "Side",
  43802. image: {
  43803. source: "./media/characters/zephyr/side.svg",
  43804. extra: 1433/586,
  43805. bottom: 109/1542
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(6 + 6/12, "feet"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43819. {
  43820. side: {
  43821. height: math.unit(1, "feet"),
  43822. name: "Side",
  43823. image: {
  43824. source: "./media/characters/vixye/side.svg",
  43825. extra: 632/541,
  43826. bottom: 0/632
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(1, "feet"),
  43834. default: true
  43835. },
  43836. {
  43837. name: "True",
  43838. height: math.unit(1e15, "multiverses")
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(8 + 2/12, "feet"),
  43847. weight: math.unit(650, "lb"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43851. extra: 1174/1137,
  43852. bottom: 82/1256
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(8 + 2/12, "feet"),
  43857. weight: math.unit(650, "lb"),
  43858. name: "Back",
  43859. image: {
  43860. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43861. extra: 1204/1157,
  43862. bottom: 46/1250
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Wildform",
  43869. height: math.unit(8 + 2/12, "feet"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(18, "feet"),
  43879. name: "Front",
  43880. image: {
  43881. source: "./media/characters/cyphin/front.svg",
  43882. extra: 970/886,
  43883. bottom: 42/1012
  43884. }
  43885. },
  43886. back: {
  43887. height: math.unit(18, "feet"),
  43888. name: "Back",
  43889. image: {
  43890. source: "./media/characters/cyphin/back.svg",
  43891. extra: 1009/894,
  43892. bottom: 24/1033
  43893. }
  43894. },
  43895. head: {
  43896. height: math.unit(5.05, "feet"),
  43897. name: "Head",
  43898. image: {
  43899. source: "./media/characters/cyphin/head.svg"
  43900. }
  43901. },
  43902. tailbud: {
  43903. height: math.unit(5, "feet"),
  43904. name: "Tailbud",
  43905. image: {
  43906. source: "./media/characters/cyphin/tailbud.svg"
  43907. }
  43908. },
  43909. },
  43910. [
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43915. {
  43916. side: {
  43917. height: math.unit(10, "feet"),
  43918. weight: math.unit(6, "tons"),
  43919. name: "Side",
  43920. image: {
  43921. source: "./media/characters/raijin/side.svg",
  43922. extra: 1529/613,
  43923. bottom: 337/1866
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Normal",
  43930. height: math.unit(10, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43937. {
  43938. side: {
  43939. height: math.unit(9, "feet"),
  43940. name: "Side",
  43941. image: {
  43942. source: "./media/characters/nilghais/side.svg",
  43943. extra: 1047/744,
  43944. bottom: 91/1138
  43945. }
  43946. },
  43947. head: {
  43948. height: math.unit(3.14, "feet"),
  43949. name: "Head",
  43950. image: {
  43951. source: "./media/characters/nilghais/head.svg"
  43952. }
  43953. },
  43954. mouth: {
  43955. height: math.unit(4.6, "feet"),
  43956. name: "Mouth",
  43957. image: {
  43958. source: "./media/characters/nilghais/mouth.svg"
  43959. }
  43960. },
  43961. wings: {
  43962. height: math.unit(24, "feet"),
  43963. name: "Wings",
  43964. image: {
  43965. source: "./media/characters/nilghais/wings.svg"
  43966. }
  43967. },
  43968. ass: {
  43969. height: math.unit(6.12, "feet"),
  43970. name: "Ass",
  43971. image: {
  43972. source: "./media/characters/nilghais/ass.svg"
  43973. }
  43974. },
  43975. },
  43976. [
  43977. {
  43978. name: "Normal",
  43979. height: math.unit(9, "feet"),
  43980. default: true
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43986. {
  43987. regular: {
  43988. height: math.unit(16 + 2/12, "feet"),
  43989. weight: math.unit(2300, "lb"),
  43990. name: "Regular",
  43991. image: {
  43992. source: "./media/characters/zolgar/regular.svg",
  43993. extra: 1246/1004,
  43994. bottom: 124/1370
  43995. }
  43996. },
  43997. boxers: {
  43998. height: math.unit(16 + 2/12, "feet"),
  43999. weight: math.unit(2300, "lb"),
  44000. name: "Boxers",
  44001. image: {
  44002. source: "./media/characters/zolgar/boxers.svg",
  44003. extra: 1246/1004,
  44004. bottom: 124/1370
  44005. }
  44006. },
  44007. armored: {
  44008. height: math.unit(16 + 2/12, "feet"),
  44009. weight: math.unit(2300, "lb"),
  44010. name: "Armored",
  44011. image: {
  44012. source: "./media/characters/zolgar/armored.svg",
  44013. extra: 1246/1004,
  44014. bottom: 124/1370
  44015. }
  44016. },
  44017. goth: {
  44018. height: math.unit(16 + 2/12, "feet"),
  44019. weight: math.unit(2300, "lb"),
  44020. name: "Goth",
  44021. image: {
  44022. source: "./media/characters/zolgar/goth.svg",
  44023. extra: 1246/1004,
  44024. bottom: 124/1370
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Shrunken Down",
  44031. height: math.unit(9 + 2/12, "feet")
  44032. },
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(16 + 2/12, "feet"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44042. {
  44043. front: {
  44044. height: math.unit(6, "feet"),
  44045. weight: math.unit(168, "lb"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/luca/front.svg",
  44049. extra: 841/667,
  44050. bottom: 102/943
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(6, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44064. {
  44065. side: {
  44066. height: math.unit(7 + 3/12, "feet"),
  44067. weight: math.unit(312, "lb"),
  44068. name: "Side",
  44069. image: {
  44070. source: "./media/characters/zezo/side.svg",
  44071. extra: 1192/1067,
  44072. bottom: 63/1255
  44073. }
  44074. },
  44075. },
  44076. [
  44077. {
  44078. name: "Normal",
  44079. height: math.unit(7 + 3/12, "feet"),
  44080. default: true
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44086. {
  44087. front: {
  44088. height: math.unit(5 + 5/12, "feet"),
  44089. weight: math.unit(170, "lb"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/mayso/front.svg",
  44093. extra: 1215/1108,
  44094. bottom: 16/1231
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(5 + 5/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(4 + 3/12, "feet"),
  44111. weight: math.unit(80, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/hess/front.svg",
  44115. extra: 1200/1123,
  44116. bottom: 16/1216
  44117. }
  44118. },
  44119. },
  44120. [
  44121. {
  44122. name: "Normal",
  44123. height: math.unit(4 + 3/12, "feet"),
  44124. default: true
  44125. },
  44126. ]
  44127. ))
  44128. characterMakers.push(() => makeCharacter(
  44129. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44130. {
  44131. front: {
  44132. height: math.unit(1.9, "meters"),
  44133. name: "Front",
  44134. image: {
  44135. source: "./media/characters/ashgar/front.svg",
  44136. extra: 1177/1146,
  44137. bottom: 99/1276
  44138. }
  44139. },
  44140. back: {
  44141. height: math.unit(1.9, "meters"),
  44142. name: "Back",
  44143. image: {
  44144. source: "./media/characters/ashgar/back.svg",
  44145. extra: 1201/1183,
  44146. bottom: 53/1254
  44147. }
  44148. },
  44149. feral: {
  44150. height: math.unit(1.4, "meters"),
  44151. name: "Feral",
  44152. image: {
  44153. source: "./media/characters/ashgar/feral.svg",
  44154. extra: 370/345,
  44155. bottom: 45/415
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Normal",
  44162. height: math.unit(1.9, "meters"),
  44163. default: true
  44164. },
  44165. ]
  44166. ))
  44167. characterMakers.push(() => makeCharacter(
  44168. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44169. {
  44170. regular: {
  44171. height: math.unit(6, "feet"),
  44172. weight: math.unit(220, "lb"),
  44173. name: "Regular",
  44174. image: {
  44175. source: "./media/characters/phillip/regular.svg",
  44176. extra: 1373/1277,
  44177. bottom: 75/1448
  44178. }
  44179. },
  44180. dressed: {
  44181. height: math.unit(6, "feet"),
  44182. weight: math.unit(220, "lb"),
  44183. name: "Dressed",
  44184. image: {
  44185. source: "./media/characters/phillip/dressed.svg",
  44186. extra: 1373/1277,
  44187. bottom: 75/1448
  44188. }
  44189. },
  44190. paw: {
  44191. height: math.unit(1.44, "feet"),
  44192. name: "Paw",
  44193. image: {
  44194. source: "./media/characters/phillip/paw.svg"
  44195. }
  44196. },
  44197. },
  44198. [
  44199. {
  44200. name: "Normal",
  44201. height: math.unit(6, "feet"),
  44202. default: true
  44203. },
  44204. ]
  44205. ))
  44206. characterMakers.push(() => makeCharacter(
  44207. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44208. {
  44209. side: {
  44210. height: math.unit(42, "feet"),
  44211. name: "Side",
  44212. image: {
  44213. source: "./media/characters/uvula/side.svg",
  44214. extra: 683/586,
  44215. bottom: 60/743
  44216. }
  44217. },
  44218. front: {
  44219. height: math.unit(42, "feet"),
  44220. name: "Front",
  44221. image: {
  44222. source: "./media/characters/uvula/front.svg",
  44223. extra: 705/613,
  44224. bottom: 54/759
  44225. }
  44226. },
  44227. maw: {
  44228. height: math.unit(23.5, "feet"),
  44229. name: "Maw",
  44230. image: {
  44231. source: "./media/characters/uvula/maw.svg"
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Original Size",
  44238. height: math.unit(14, "inches")
  44239. },
  44240. {
  44241. name: "Human Size",
  44242. height: math.unit(6, "feet")
  44243. },
  44244. {
  44245. name: "Big",
  44246. height: math.unit(42, "feet"),
  44247. default: true
  44248. },
  44249. {
  44250. name: "Bigger",
  44251. height: math.unit(100, "feet")
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(5 + 11/12, "feet"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/lannah/front.svg",
  44263. extra: 1208/1113,
  44264. bottom: 97/1305
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(5 + 11/12, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44278. {
  44279. front: {
  44280. height: math.unit(6 + 3/12, "feet"),
  44281. weight: math.unit(3.5, "tons"),
  44282. name: "Front",
  44283. image: {
  44284. source: "./media/characters/emberflame/front.svg",
  44285. extra: 1198/672,
  44286. bottom: 82/1280
  44287. }
  44288. },
  44289. side: {
  44290. height: math.unit(6 + 3/12, "feet"),
  44291. weight: math.unit(3.5, "tons"),
  44292. name: "Side",
  44293. image: {
  44294. source: "./media/characters/emberflame/side.svg",
  44295. extra: 938/527,
  44296. bottom: 56/994
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(6 + 3/12, "feet"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44310. {
  44311. side: {
  44312. height: math.unit(17.5, "feet"),
  44313. weight: math.unit(35, "tons"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/sophie-ambrose/side.svg",
  44317. extra: 1573/1242,
  44318. bottom: 71/1644
  44319. }
  44320. },
  44321. maw: {
  44322. height: math.unit(7.4, "feet"),
  44323. name: "Maw",
  44324. image: {
  44325. source: "./media/characters/sophie-ambrose/maw.svg"
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(17.5, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(280, "feet"),
  44342. weight: math.unit(550, "tons"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/king-mugi/front.svg",
  44346. extra: 1102/947,
  44347. bottom: 104/1206
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "King Mugi",
  44354. height: math.unit(280, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(64, "meters"),
  44364. name: "Front",
  44365. image: {
  44366. source: "./media/characters/nova-fox/front.svg",
  44367. extra: 1310/1246,
  44368. bottom: 65/1375
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Macro",
  44375. height: math.unit(64, "meters"),
  44376. default: true
  44377. },
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(6 + 3/12, "feet"),
  44385. weight: math.unit(170, "lb"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/sam-bat/front.svg",
  44389. extra: 1601/1411,
  44390. bottom: 125/1726
  44391. }
  44392. },
  44393. back: {
  44394. height: math.unit(6 + 3/12, "feet"),
  44395. weight: math.unit(170, "lb"),
  44396. name: "Back",
  44397. image: {
  44398. source: "./media/characters/sam-bat/back.svg",
  44399. extra: 1577/1405,
  44400. bottom: 58/1635
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Normal",
  44407. height: math.unit(6 + 3/12, "feet"),
  44408. default: true
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44414. {
  44415. front: {
  44416. height: math.unit(59, "feet"),
  44417. weight: math.unit(40000, "lb"),
  44418. name: "Front",
  44419. image: {
  44420. source: "./media/characters/inari/front.svg",
  44421. extra: 1884/1350,
  44422. bottom: 95/1979
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Gigantamax",
  44429. height: math.unit(59, "feet"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(5 + 8/12, "feet"),
  44439. name: "Front",
  44440. image: {
  44441. source: "./media/characters/elizabeth/front.svg",
  44442. extra: 1395/1298,
  44443. bottom: 54/1449
  44444. }
  44445. },
  44446. mouth: {
  44447. height: math.unit(1.97, "feet"),
  44448. name: "Mouth",
  44449. image: {
  44450. source: "./media/characters/elizabeth/mouth.svg"
  44451. }
  44452. },
  44453. foot: {
  44454. height: math.unit(1.17, "feet"),
  44455. name: "Foot",
  44456. image: {
  44457. source: "./media/characters/elizabeth/foot.svg"
  44458. }
  44459. },
  44460. },
  44461. [
  44462. {
  44463. name: "Normal",
  44464. height: math.unit(5 + 8/12, "feet"),
  44465. default: true
  44466. },
  44467. {
  44468. name: "Minimacro",
  44469. height: math.unit(18, "feet")
  44470. },
  44471. {
  44472. name: "Macro",
  44473. height: math.unit(180, "feet")
  44474. },
  44475. ]
  44476. ))
  44477. characterMakers.push(() => makeCharacter(
  44478. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44479. {
  44480. front: {
  44481. height: math.unit(5 + 2/12, "feet"),
  44482. name: "Front",
  44483. image: {
  44484. source: "./media/characters/october-gossamer/front.svg",
  44485. extra: 505/454,
  44486. bottom: 7/512
  44487. }
  44488. },
  44489. back: {
  44490. height: math.unit(5 + 2/12, "feet"),
  44491. name: "Back",
  44492. image: {
  44493. source: "./media/characters/october-gossamer/back.svg",
  44494. extra: 501/454,
  44495. bottom: 11/512
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(5 + 2/12, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(5, "feet"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/epiglottis/front.svg",
  44515. extra: 923/849,
  44516. bottom: 17/940
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Original Size",
  44523. height: math.unit(10, "inches")
  44524. },
  44525. {
  44526. name: "Human Size",
  44527. height: math.unit(5, "feet"),
  44528. default: true
  44529. },
  44530. {
  44531. name: "Big",
  44532. height: math.unit(25, "feet")
  44533. },
  44534. {
  44535. name: "Bigger",
  44536. height: math.unit(50, "feet")
  44537. },
  44538. {
  44539. name: "oh lawd",
  44540. height: math.unit(75, "feet")
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(2 + 4/12, "feet"),
  44549. weight: math.unit(60, "lb"),
  44550. name: "Front",
  44551. image: {
  44552. source: "./media/characters/lerm/front.svg",
  44553. extra: 796/790,
  44554. bottom: 79/875
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(2 + 4/12, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(5.5, "feet"),
  44571. weight: math.unit(130, "lb"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/xena-nebadon/front.svg",
  44575. extra: 1828/1730,
  44576. bottom: 79/1907
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Tiny Puppy",
  44583. height: math.unit(3, "inches")
  44584. },
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(5.5, "feet"),
  44588. default: true
  44589. },
  44590. {
  44591. name: "Lotta Lady",
  44592. height: math.unit(12, "feet")
  44593. },
  44594. {
  44595. name: "Pretty Big",
  44596. height: math.unit(100, "feet")
  44597. },
  44598. {
  44599. name: "Big",
  44600. height: math.unit(500, "feet")
  44601. },
  44602. {
  44603. name: "Skyscraper Toys",
  44604. height: math.unit(2500, "feet")
  44605. },
  44606. {
  44607. name: "Plane Catcher",
  44608. height: math.unit(8, "miles")
  44609. },
  44610. {
  44611. name: "Planet Toys",
  44612. height: math.unit(15, "earths")
  44613. },
  44614. {
  44615. name: "Stardust",
  44616. height: math.unit(0.25, "galaxies")
  44617. },
  44618. {
  44619. name: "Snacks",
  44620. height: math.unit(70, "universes")
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(1.6, "meters"),
  44629. weight: math.unit(60, "kg"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/bounty/front.svg",
  44633. extra: 1426/1308,
  44634. bottom: 15/1441
  44635. }
  44636. },
  44637. back: {
  44638. height: math.unit(1.6, "meters"),
  44639. weight: math.unit(60, "kg"),
  44640. name: "Back",
  44641. image: {
  44642. source: "./media/characters/bounty/back.svg",
  44643. extra: 1417/1307,
  44644. bottom: 8/1425
  44645. }
  44646. },
  44647. },
  44648. [
  44649. {
  44650. name: "Normal",
  44651. height: math.unit(1.6, "meters"),
  44652. default: true
  44653. },
  44654. {
  44655. name: "Macro",
  44656. height: math.unit(300, "meters")
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44662. {
  44663. front: {
  44664. height: math.unit(2 + 8/12, "feet"),
  44665. weight: math.unit(15, "lb"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/mochi/front.svg",
  44669. extra: 1022/852,
  44670. bottom: 435/1457
  44671. }
  44672. },
  44673. back: {
  44674. height: math.unit(2 + 8/12, "feet"),
  44675. weight: math.unit(15, "lb"),
  44676. name: "Back",
  44677. image: {
  44678. source: "./media/characters/mochi/back.svg",
  44679. extra: 1335/1119,
  44680. bottom: 39/1374
  44681. }
  44682. },
  44683. bird: {
  44684. height: math.unit(2 + 8/12, "feet"),
  44685. weight: math.unit(15, "lb"),
  44686. name: "Bird",
  44687. image: {
  44688. source: "./media/characters/mochi/bird.svg",
  44689. extra: 1251/1113,
  44690. bottom: 178/1429
  44691. }
  44692. },
  44693. kaiju: {
  44694. height: math.unit(154, "feet"),
  44695. weight: math.unit(1e7, "lb"),
  44696. name: "Kaiju",
  44697. image: {
  44698. source: "./media/characters/mochi/kaiju.svg",
  44699. extra: 460/324,
  44700. bottom: 40/500
  44701. }
  44702. },
  44703. head: {
  44704. height: math.unit(1.21, "feet"),
  44705. name: "Head",
  44706. image: {
  44707. source: "./media/characters/mochi/head.svg"
  44708. }
  44709. },
  44710. alternateTail: {
  44711. height: math.unit(2 + 8/12, "feet"),
  44712. weight: math.unit(45, "lb"),
  44713. name: "Alternate Tail",
  44714. image: {
  44715. source: "./media/characters/mochi/alternate-tail.svg",
  44716. extra: 139/76,
  44717. bottom: 45/184
  44718. }
  44719. },
  44720. },
  44721. [
  44722. {
  44723. name: "Micro",
  44724. height: math.unit(2, "inches")
  44725. },
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(2 + 8/12, "feet"),
  44729. default: true
  44730. },
  44731. {
  44732. name: "Macro",
  44733. height: math.unit(106, "feet")
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44739. {
  44740. front: {
  44741. height: math.unit(5.67, "feet"),
  44742. weight: math.unit(135, "lb"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/sarel/front.svg",
  44746. extra: 865/788,
  44747. bottom: 97/962
  44748. }
  44749. },
  44750. back: {
  44751. height: math.unit(5.67, "feet"),
  44752. weight: math.unit(135, "lb"),
  44753. name: "Back",
  44754. image: {
  44755. source: "./media/characters/sarel/back.svg",
  44756. extra: 857/777,
  44757. bottom: 32/889
  44758. }
  44759. },
  44760. chozoan: {
  44761. height: math.unit(5.67, "feet"),
  44762. weight: math.unit(135, "lb"),
  44763. name: "Chozoan",
  44764. image: {
  44765. source: "./media/characters/sarel/chozoan.svg",
  44766. extra: 865/788,
  44767. bottom: 97/962
  44768. }
  44769. },
  44770. current: {
  44771. height: math.unit(5.67, "feet"),
  44772. weight: math.unit(135, "lb"),
  44773. name: "Current",
  44774. image: {
  44775. source: "./media/characters/sarel/current.svg",
  44776. extra: 865/788,
  44777. bottom: 97/962
  44778. }
  44779. },
  44780. head: {
  44781. height: math.unit(1.77, "feet"),
  44782. name: "Head",
  44783. image: {
  44784. source: "./media/characters/sarel/head.svg"
  44785. }
  44786. },
  44787. claws: {
  44788. height: math.unit(1.8, "feet"),
  44789. name: "Claws",
  44790. image: {
  44791. source: "./media/characters/sarel/claws.svg"
  44792. }
  44793. },
  44794. clawsAlt: {
  44795. height: math.unit(1.8, "feet"),
  44796. name: "Claws-alt",
  44797. image: {
  44798. source: "./media/characters/sarel/claws-alt.svg"
  44799. }
  44800. },
  44801. },
  44802. [
  44803. {
  44804. name: "Normal",
  44805. height: math.unit(5.67, "feet"),
  44806. default: true
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(5500, "feet"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/alyonia/front.svg",
  44818. extra: 1200/1135,
  44819. bottom: 29/1229
  44820. }
  44821. },
  44822. back: {
  44823. height: math.unit(5500, "feet"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/alyonia/back.svg",
  44827. extra: 1205/1138,
  44828. bottom: 10/1215
  44829. }
  44830. },
  44831. },
  44832. [
  44833. {
  44834. name: "Small",
  44835. height: math.unit(10, "feet")
  44836. },
  44837. {
  44838. name: "Macro",
  44839. height: math.unit(500, "feet")
  44840. },
  44841. {
  44842. name: "Mega Macro",
  44843. height: math.unit(5500, "feet"),
  44844. default: true
  44845. },
  44846. {
  44847. name: "Mega Macro+",
  44848. height: math.unit(500000, "feet")
  44849. },
  44850. {
  44851. name: "Giga Macro",
  44852. height: math.unit(3000, "miles")
  44853. },
  44854. {
  44855. name: "Tera Macro",
  44856. height: math.unit(2.8e6, "miles")
  44857. },
  44858. {
  44859. name: "Galactic",
  44860. height: math.unit(120000, "lightyears")
  44861. },
  44862. ]
  44863. ))
  44864. characterMakers.push(() => makeCharacter(
  44865. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44866. {
  44867. werewolf: {
  44868. height: math.unit(8, "feet"),
  44869. weight: math.unit(425, "lb"),
  44870. name: "Werewolf",
  44871. image: {
  44872. source: "./media/characters/autumn/werewolf.svg",
  44873. extra: 2154/2031,
  44874. bottom: 160/2314
  44875. }
  44876. },
  44877. human: {
  44878. height: math.unit(5 + 8/12, "feet"),
  44879. weight: math.unit(150, "lb"),
  44880. name: "Human",
  44881. image: {
  44882. source: "./media/characters/autumn/human.svg",
  44883. extra: 1200/1149,
  44884. bottom: 30/1230
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(8, "feet"),
  44892. default: true
  44893. },
  44894. ]
  44895. ))
  44896. characterMakers.push(() => makeCharacter(
  44897. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44898. {
  44899. front: {
  44900. height: math.unit(8 + 5/12, "feet"),
  44901. weight: math.unit(825, "lb"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/cobalt-charizard/front.svg",
  44905. extra: 1268/1155,
  44906. bottom: 122/1390
  44907. }
  44908. },
  44909. side: {
  44910. height: math.unit(8 + 5/12, "feet"),
  44911. weight: math.unit(825, "lb"),
  44912. name: "Side",
  44913. image: {
  44914. source: "./media/characters/cobalt-charizard/side.svg",
  44915. extra: 1348/1257,
  44916. bottom: 58/1406
  44917. }
  44918. },
  44919. gMax: {
  44920. height: math.unit(134 + 11/12, "feet"),
  44921. name: "G-Max",
  44922. image: {
  44923. source: "./media/characters/cobalt-charizard/g-max.svg",
  44924. extra: 1835/1541,
  44925. bottom: 151/1986
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(8 + 5/12, "feet"),
  44933. default: true
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(6 + 3/12, "feet"),
  44942. weight: math.unit(210, "lb"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/stella/front.svg",
  44946. extra: 3549/3335,
  44947. bottom: 51/3600
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(6 + 3/12, "feet"),
  44955. default: true
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(5, "feet"),
  44964. weight: math.unit(90, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/riley-bishop/front.svg",
  44968. extra: 1450/1428,
  44969. bottom: 152/1602
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(5, "feet"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44983. {
  44984. side: {
  44985. height: math.unit(8 + 2/12, "feet"),
  44986. weight: math.unit(500, "kg"),
  44987. name: "Side",
  44988. image: {
  44989. source: "./media/characters/theo-arcanine/side.svg",
  44990. extra: 1342/1074,
  44991. bottom: 111/1453
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(8 + 2/12, "feet"),
  44999. default: true
  45000. },
  45001. ]
  45002. ))
  45003. characterMakers.push(() => makeCharacter(
  45004. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45005. {
  45006. front: {
  45007. height: math.unit(4, "feet"),
  45008. name: "Front",
  45009. image: {
  45010. source: "./media/characters/kali/front.svg",
  45011. extra: 1921/1357,
  45012. bottom: 70/1991
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Normal",
  45019. height: math.unit(4, "feet"),
  45020. default: true
  45021. },
  45022. {
  45023. name: "Macro",
  45024. height: math.unit(32, "meters")
  45025. },
  45026. {
  45027. name: "Macro+",
  45028. height: math.unit(150, "meters")
  45029. },
  45030. {
  45031. name: "Megamacro",
  45032. height: math.unit(7500, "meters")
  45033. },
  45034. {
  45035. name: "Megamacro+",
  45036. height: math.unit(80, "kilometers")
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45042. {
  45043. side: {
  45044. height: math.unit(5 + 11/12, "feet"),
  45045. weight: math.unit(236, "lb"),
  45046. name: "Side",
  45047. image: {
  45048. source: "./media/characters/gapp/side.svg",
  45049. extra: 775/340,
  45050. bottom: 58/833
  45051. }
  45052. },
  45053. mouth: {
  45054. height: math.unit(2.98, "feet"),
  45055. name: "Mouth",
  45056. image: {
  45057. source: "./media/characters/gapp/mouth.svg"
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(5 + 1/12, "feet"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45071. {
  45072. front: {
  45073. height: math.unit(6, "feet"),
  45074. name: "Front",
  45075. image: {
  45076. source: "./media/characters/persephone/front.svg",
  45077. extra: 1895/1717,
  45078. bottom: 96/1991
  45079. }
  45080. },
  45081. back: {
  45082. height: math.unit(6, "feet"),
  45083. name: "Back",
  45084. image: {
  45085. source: "./media/characters/persephone/back.svg",
  45086. extra: 1868/1679,
  45087. bottom: 26/1894
  45088. }
  45089. },
  45090. casual: {
  45091. height: math.unit(6, "feet"),
  45092. name: "Casual",
  45093. image: {
  45094. source: "./media/characters/persephone/casual.svg",
  45095. extra: 1713/1541,
  45096. bottom: 76/1789
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Human Size",
  45103. height: math.unit(6, "feet")
  45104. },
  45105. {
  45106. name: "Big Steppy",
  45107. height: math.unit(600, "meters"),
  45108. default: true
  45109. },
  45110. {
  45111. name: "Galaxy Brain",
  45112. height: math.unit(1, "zettameter")
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(1.85, "meters"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/riley-foxthing/front.svg",
  45124. extra: 1495/1354,
  45125. bottom: 122/1617
  45126. }
  45127. },
  45128. frontAlt: {
  45129. height: math.unit(1.85, "meters"),
  45130. name: "Front (Alt)",
  45131. image: {
  45132. source: "./media/characters/riley-foxthing/front-alt.svg",
  45133. extra: 1572/1389,
  45134. bottom: 116/1688
  45135. }
  45136. },
  45137. },
  45138. [
  45139. {
  45140. name: "Normal Sized",
  45141. height: math.unit(1.85, "meters"),
  45142. default: true
  45143. },
  45144. {
  45145. name: "Quite Sizable",
  45146. height: math.unit(5, "meters")
  45147. },
  45148. {
  45149. name: "Rather Large",
  45150. height: math.unit(20, "meters")
  45151. },
  45152. {
  45153. name: "Macro",
  45154. height: math.unit(450, "meters")
  45155. },
  45156. {
  45157. name: "Giga",
  45158. height: math.unit(5, "km")
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45164. {
  45165. front: {
  45166. height: math.unit(6, "feet"),
  45167. weight: math.unit(200, "lb"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/blizzard/front.svg",
  45171. extra: 1136/990,
  45172. bottom: 136/1272
  45173. }
  45174. },
  45175. back: {
  45176. height: math.unit(6, "feet"),
  45177. weight: math.unit(200, "lb"),
  45178. name: "Back",
  45179. image: {
  45180. source: "./media/characters/blizzard/back.svg",
  45181. extra: 1175/1034,
  45182. bottom: 97/1272
  45183. }
  45184. },
  45185. sitting: {
  45186. height: math.unit(3.725, "feet"),
  45187. weight: math.unit(200, "lb"),
  45188. name: "Sitting",
  45189. image: {
  45190. source: "./media/characters/blizzard/sitting.svg",
  45191. extra: 581/485,
  45192. bottom: 90/671
  45193. }
  45194. },
  45195. frontWizard: {
  45196. height: math.unit(7.9, "feet"),
  45197. weight: math.unit(200, "lb"),
  45198. name: "Front (Wizard)",
  45199. image: {
  45200. source: "./media/characters/blizzard/front-wizard.svg"
  45201. }
  45202. },
  45203. backWizard: {
  45204. height: math.unit(7.9, "feet"),
  45205. weight: math.unit(200, "lb"),
  45206. name: "Back (Wizard)",
  45207. image: {
  45208. source: "./media/characters/blizzard/back-wizard.svg"
  45209. }
  45210. },
  45211. frontNsfw: {
  45212. height: math.unit(6, "feet"),
  45213. weight: math.unit(200, "lb"),
  45214. name: "Front (NSFW)",
  45215. image: {
  45216. source: "./media/characters/blizzard/front-nsfw.svg",
  45217. extra: 1136/990,
  45218. bottom: 136/1272
  45219. }
  45220. },
  45221. backNsfw: {
  45222. height: math.unit(6, "feet"),
  45223. weight: math.unit(200, "lb"),
  45224. name: "Back (NSFW)",
  45225. image: {
  45226. source: "./media/characters/blizzard/back-nsfw.svg",
  45227. extra: 1175/1034,
  45228. bottom: 97/1272
  45229. }
  45230. },
  45231. sittingNsfw: {
  45232. height: math.unit(3.725, "feet"),
  45233. weight: math.unit(200, "lb"),
  45234. name: "Sitting (NSFW)",
  45235. image: {
  45236. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45237. extra: 581/485,
  45238. bottom: 90/671
  45239. }
  45240. },
  45241. wizardFrontNsfw: {
  45242. height: math.unit(7.9, "feet"),
  45243. weight: math.unit(200, "lb"),
  45244. name: "Wizard (Front, NSFW)",
  45245. image: {
  45246. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Normal",
  45253. height: math.unit(6, "feet"),
  45254. default: true
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45260. {
  45261. front: {
  45262. height: math.unit(5 + 2/12, "feet"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/lumi/front.svg",
  45266. extra: 1328/1268,
  45267. bottom: 103/1431
  45268. }
  45269. },
  45270. back: {
  45271. height: math.unit(5 + 2/12, "feet"),
  45272. name: "Back",
  45273. image: {
  45274. source: "./media/characters/lumi/back.svg",
  45275. extra: 1381/1327,
  45276. bottom: 43/1424
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(5 + 2/12, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(5 + 9/12, "feet"),
  45293. name: "Front",
  45294. image: {
  45295. source: "./media/characters/aliya-cotton/front.svg",
  45296. extra: 577/564,
  45297. bottom: 29/606
  45298. }
  45299. },
  45300. },
  45301. [
  45302. {
  45303. name: "Normal",
  45304. height: math.unit(5 + 9/12, "feet"),
  45305. default: true
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(2.7, "meters"),
  45314. weight: math.unit(25000, "lb"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/noah-luxray/front.svg",
  45318. extra: 1644/825,
  45319. bottom: 339/1983
  45320. }
  45321. },
  45322. side: {
  45323. height: math.unit(2.97, "meters"),
  45324. weight: math.unit(25000, "lb"),
  45325. name: "Side",
  45326. image: {
  45327. source: "./media/characters/noah-luxray/side.svg",
  45328. extra: 1319/650,
  45329. bottom: 163/1482
  45330. }
  45331. },
  45332. dick: {
  45333. height: math.unit(7.4, "feet"),
  45334. weight: math.unit(2500, "lb"),
  45335. name: "Dick",
  45336. image: {
  45337. source: "./media/characters/noah-luxray/dick.svg"
  45338. }
  45339. },
  45340. dickAlt: {
  45341. height: math.unit(10.83, "feet"),
  45342. weight: math.unit(2500, "lb"),
  45343. name: "Dick-alt",
  45344. image: {
  45345. source: "./media/characters/noah-luxray/dick-alt.svg"
  45346. }
  45347. },
  45348. },
  45349. [
  45350. {
  45351. name: "BIG",
  45352. height: math.unit(2.7, "meters"),
  45353. default: true
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45359. {
  45360. standing: {
  45361. height: math.unit(183, "cm"),
  45362. weight: math.unit(68, "kg"),
  45363. name: "Standing",
  45364. image: {
  45365. source: "./media/characters/arion/standing.svg",
  45366. extra: 1869/1807,
  45367. bottom: 93/1962
  45368. }
  45369. },
  45370. reclining: {
  45371. height: math.unit(70.5, "cm"),
  45372. weight: math.unit(68, "lb"),
  45373. name: "Reclining",
  45374. image: {
  45375. source: "./media/characters/arion/reclining.svg",
  45376. extra: 937/870,
  45377. bottom: 63/1000
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Colossus Size, Low",
  45384. height: math.unit(33, "meters"),
  45385. default: true
  45386. },
  45387. {
  45388. name: "Colossus Size, Mid",
  45389. height: math.unit(52, "meters")
  45390. },
  45391. {
  45392. name: "Colossus Size, High",
  45393. height: math.unit(60, "meters")
  45394. },
  45395. {
  45396. name: "Titan Size, Low",
  45397. height: math.unit(91, "meters"),
  45398. },
  45399. {
  45400. name: "Titan Size, Mid",
  45401. height: math.unit(122, "meters")
  45402. },
  45403. {
  45404. name: "Titan Size, High",
  45405. height: math.unit(162, "meters")
  45406. },
  45407. ]
  45408. ))
  45409. characterMakers.push(() => makeCharacter(
  45410. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45411. {
  45412. front: {
  45413. height: math.unit(53, "meters"),
  45414. name: "Front",
  45415. image: {
  45416. source: "./media/characters/stellar-marbey/front.svg",
  45417. extra: 1913/1805,
  45418. bottom: 92/2005
  45419. }
  45420. },
  45421. back: {
  45422. height: math.unit(53, "meters"),
  45423. name: "Back",
  45424. image: {
  45425. source: "./media/characters/stellar-marbey/back.svg",
  45426. extra: 1960/1851,
  45427. bottom: 28/1988
  45428. }
  45429. },
  45430. mouth: {
  45431. height: math.unit(3.5, "meters"),
  45432. name: "Mouth",
  45433. image: {
  45434. source: "./media/characters/stellar-marbey/mouth.svg"
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Macro",
  45441. height: math.unit(53, "meters"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(8 + 1/12, "feet"),
  45451. weight: math.unit(233, "lb"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/matsu/front.svg",
  45455. extra: 832/772,
  45456. bottom: 40/872
  45457. }
  45458. },
  45459. back: {
  45460. height: math.unit(8 + 1/12, "feet"),
  45461. weight: math.unit(233, "lb"),
  45462. name: "Back",
  45463. image: {
  45464. source: "./media/characters/matsu/back.svg",
  45465. extra: 839/780,
  45466. bottom: 47/886
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(8 + 1/12, "feet"),
  45474. default: true
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45480. {
  45481. front: {
  45482. height: math.unit(4, "feet"),
  45483. weight: math.unit(148, "lb"),
  45484. name: "Front",
  45485. image: {
  45486. source: "./media/characters/thiz/front.svg",
  45487. extra: 1913/1748,
  45488. bottom: 62/1975
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(4, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(7 + 6/12, "feet"),
  45505. weight: math.unit(267, "lb"),
  45506. name: "Front",
  45507. image: {
  45508. source: "./media/characters/marcel/front.svg",
  45509. extra: 1221/1096,
  45510. bottom: 76/1297
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(7 + 6/12, "feet"),
  45518. default: true
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45524. {
  45525. side: {
  45526. height: math.unit(42, "meters"),
  45527. name: "Side",
  45528. image: {
  45529. source: "./media/characters/flake/side.svg",
  45530. extra: 1525/1306,
  45531. bottom: 209/1734
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Normal",
  45538. height: math.unit(42, "meters"),
  45539. default: true
  45540. },
  45541. ]
  45542. ))
  45543. characterMakers.push(() => makeCharacter(
  45544. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45545. {
  45546. dressed: {
  45547. height: math.unit(6 + 4/12, "feet"),
  45548. weight: math.unit(520, "lb"),
  45549. name: "Dressed",
  45550. image: {
  45551. source: "./media/characters/someonne/dressed.svg",
  45552. extra: 1020/1010,
  45553. bottom: 178/1198
  45554. }
  45555. },
  45556. undressed: {
  45557. height: math.unit(6 + 4/12, "feet"),
  45558. weight: math.unit(520, "lb"),
  45559. name: "Undressed",
  45560. image: {
  45561. source: "./media/characters/someonne/undressed.svg",
  45562. extra: 1019/1014,
  45563. bottom: 169/1188
  45564. }
  45565. },
  45566. },
  45567. [
  45568. {
  45569. name: "Normal",
  45570. height: math.unit(6 + 4/12, "feet"),
  45571. default: true
  45572. },
  45573. ]
  45574. ))
  45575. characterMakers.push(() => makeCharacter(
  45576. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45577. {
  45578. front: {
  45579. height: math.unit(3, "feet"),
  45580. weight: math.unit(30, "lb"),
  45581. name: "Front",
  45582. image: {
  45583. source: "./media/characters/till/front.svg",
  45584. extra: 892/823,
  45585. bottom: 55/947
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(3, "feet"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(9 + 8/12, "feet"),
  45602. weight: math.unit(800, "lb"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/sydney-heki/front.svg",
  45606. extra: 1360/1300,
  45607. bottom: 22/1382
  45608. }
  45609. },
  45610. back: {
  45611. height: math.unit(9 + 8/12, "feet"),
  45612. weight: math.unit(800, "lb"),
  45613. name: "Back",
  45614. image: {
  45615. source: "./media/characters/sydney-heki/back.svg",
  45616. extra: 1356/1293,
  45617. bottom: 12/1368
  45618. }
  45619. },
  45620. frontDressed: {
  45621. height: math.unit(9 + 8/12, "feet"),
  45622. weight: math.unit(800, "lb"),
  45623. name: "Front-dressed",
  45624. image: {
  45625. source: "./media/characters/sydney-heki/front-dressed.svg",
  45626. extra: 1360/1300,
  45627. bottom: 22/1382
  45628. }
  45629. },
  45630. },
  45631. [
  45632. {
  45633. name: "Normal",
  45634. height: math.unit(9 + 8/12, "feet"),
  45635. default: true
  45636. },
  45637. {
  45638. name: "Macro",
  45639. height: math.unit(500, "feet")
  45640. },
  45641. {
  45642. name: "Megamacro",
  45643. height: math.unit(3.6, "miles")
  45644. },
  45645. ]
  45646. ))
  45647. characterMakers.push(() => makeCharacter(
  45648. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45649. {
  45650. front: {
  45651. height: math.unit(200, "cm"),
  45652. weight: math.unit(250, "lb"),
  45653. name: "Front",
  45654. image: {
  45655. source: "./media/characters/fowler-karlsson/front.svg",
  45656. extra: 897/845,
  45657. bottom: 123/1020
  45658. }
  45659. },
  45660. back: {
  45661. height: math.unit(200, "cm"),
  45662. weight: math.unit(250, "lb"),
  45663. name: "Back",
  45664. image: {
  45665. source: "./media/characters/fowler-karlsson/back.svg",
  45666. extra: 999/944,
  45667. bottom: 26/1025
  45668. }
  45669. },
  45670. dick: {
  45671. height: math.unit(1.92, "feet"),
  45672. weight: math.unit(150, "lb"),
  45673. name: "Dick",
  45674. image: {
  45675. source: "./media/characters/fowler-karlsson/dick.svg"
  45676. }
  45677. },
  45678. },
  45679. [
  45680. {
  45681. name: "Normal",
  45682. height: math.unit(200, "cm"),
  45683. default: true
  45684. },
  45685. {
  45686. name: "Smaller Macro",
  45687. height: math.unit(90, "m")
  45688. },
  45689. {
  45690. name: "Macro",
  45691. height: math.unit(150, "m")
  45692. },
  45693. {
  45694. name: "Bigger Macro",
  45695. height: math.unit(300, "m")
  45696. },
  45697. ]
  45698. ))
  45699. characterMakers.push(() => makeCharacter(
  45700. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45701. {
  45702. side: {
  45703. height: math.unit(8 + 2/12, "feet"),
  45704. weight: math.unit(1, "tonne"),
  45705. name: "Side",
  45706. image: {
  45707. source: "./media/characters/rylide/side.svg",
  45708. extra: 1318/1034,
  45709. bottom: 106/1424
  45710. }
  45711. },
  45712. sitting: {
  45713. height: math.unit(303, "cm"),
  45714. weight: math.unit(1, "tonne"),
  45715. name: "Sitting",
  45716. image: {
  45717. source: "./media/characters/rylide/sitting.svg",
  45718. extra: 1303/1103,
  45719. bottom: 36/1339
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(8 + 2/12, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(5 + 10/12, "feet"),
  45736. weight: math.unit(160, "lb"),
  45737. name: "Front",
  45738. image: {
  45739. source: "./media/characters/pudask/front.svg",
  45740. extra: 1616/1590,
  45741. bottom: 161/1777
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Ferret Height",
  45748. height: math.unit(2 + 5/12, "feet")
  45749. },
  45750. {
  45751. name: "Canon Height",
  45752. height: math.unit(5 + 10/12, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45759. {
  45760. front: {
  45761. height: math.unit(3 + 6/12, "feet"),
  45762. weight: math.unit(60, "lb"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/ramita/front.svg",
  45766. extra: 1402/1232,
  45767. bottom: 62/1464
  45768. }
  45769. },
  45770. dressed: {
  45771. height: math.unit(3 + 6/12, "feet"),
  45772. weight: math.unit(60, "lb"),
  45773. name: "Dressed",
  45774. image: {
  45775. source: "./media/characters/ramita/dressed.svg",
  45776. extra: 1534/1249,
  45777. bottom: 50/1584
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(3 + 6/12, "feet"),
  45785. default: true
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45791. {
  45792. front: {
  45793. height: math.unit(8, "feet"),
  45794. name: "Front",
  45795. image: {
  45796. source: "./media/characters/ark/front.svg",
  45797. extra: 772/693,
  45798. bottom: 45/817
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(8, "feet"),
  45806. default: true
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45812. {
  45813. front: {
  45814. height: math.unit(6, "feet"),
  45815. weight: math.unit(250, "lb"),
  45816. volume: math.unit(5/8, "gallons"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/ludwig-horn/front.svg",
  45820. extra: 1782/1635,
  45821. bottom: 96/1878
  45822. }
  45823. },
  45824. back: {
  45825. height: math.unit(6, "feet"),
  45826. weight: math.unit(250, "lb"),
  45827. volume: math.unit(5/8, "gallons"),
  45828. name: "Back",
  45829. image: {
  45830. source: "./media/characters/ludwig-horn/back.svg",
  45831. extra: 1874/1729,
  45832. bottom: 27/1901
  45833. }
  45834. },
  45835. dick: {
  45836. height: math.unit(1.05, "feet"),
  45837. weight: math.unit(15, "lb"),
  45838. volume: math.unit(5/8, "gallons"),
  45839. name: "Dick",
  45840. image: {
  45841. source: "./media/characters/ludwig-horn/dick.svg"
  45842. }
  45843. },
  45844. },
  45845. [
  45846. {
  45847. name: "Small",
  45848. height: math.unit(6, "feet")
  45849. },
  45850. {
  45851. name: "Typical",
  45852. height: math.unit(12, "feet"),
  45853. default: true
  45854. },
  45855. {
  45856. name: "Building",
  45857. height: math.unit(80, "feet")
  45858. },
  45859. {
  45860. name: "Town",
  45861. height: math.unit(800, "feet")
  45862. },
  45863. {
  45864. name: "Kingdom",
  45865. height: math.unit(80000, "feet")
  45866. },
  45867. {
  45868. name: "Planet",
  45869. height: math.unit(8000000, "feet")
  45870. },
  45871. {
  45872. name: "Universe",
  45873. height: math.unit(8000000000, "feet")
  45874. },
  45875. {
  45876. name: "Transcended",
  45877. height: math.unit(8e27, "feet")
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45883. {
  45884. front: {
  45885. height: math.unit(5, "feet"),
  45886. weight: math.unit(50, "kg"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/biot-avery/front.svg",
  45890. extra: 1295/1232,
  45891. bottom: 86/1381
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(5, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45905. {
  45906. front: {
  45907. height: math.unit(6, "feet"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/kitsune-kiro/front.svg",
  45911. extra: 1270/1158,
  45912. bottom: 42/1312
  45913. }
  45914. },
  45915. frontAlt: {
  45916. height: math.unit(6, "feet"),
  45917. name: "Front-alt",
  45918. image: {
  45919. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45920. extra: 1130/1081,
  45921. bottom: 36/1166
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Smol",
  45928. height: math.unit(3, "feet")
  45929. },
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(6, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45939. {
  45940. front: {
  45941. height: math.unit(6, "feet"),
  45942. weight: math.unit(125, "lb"),
  45943. name: "Front",
  45944. image: {
  45945. source: "./media/characters/jack-thatcher/front.svg",
  45946. extra: 1474/1370,
  45947. bottom: 26/1500
  45948. }
  45949. },
  45950. back: {
  45951. height: math.unit(6, "feet"),
  45952. weight: math.unit(125, "lb"),
  45953. name: "Back",
  45954. image: {
  45955. source: "./media/characters/jack-thatcher/back.svg",
  45956. extra: 1489/1384,
  45957. bottom: 18/1507
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Normal",
  45964. height: math.unit(6, "feet"),
  45965. default: true
  45966. },
  45967. {
  45968. name: "Macro",
  45969. height: math.unit(75, "feet")
  45970. },
  45971. {
  45972. name: "Macro-er",
  45973. height: math.unit(250, "feet")
  45974. },
  45975. ]
  45976. ))
  45977. characterMakers.push(() => makeCharacter(
  45978. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45979. {
  45980. front: {
  45981. height: math.unit(7, "feet"),
  45982. weight: math.unit(110, "kg"),
  45983. name: "Front",
  45984. image: {
  45985. source: "./media/characters/max-hyper/front.svg",
  45986. extra: 1969/1881,
  45987. bottom: 49/2018
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(7, "feet"),
  45995. default: true
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(5 + 5/12, "feet"),
  46004. weight: math.unit(160, "lb"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/spook/front.svg",
  46008. extra: 794/791,
  46009. bottom: 54/848
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(5 + 5/12, "feet"),
  46014. weight: math.unit(160, "lb"),
  46015. name: "Back",
  46016. image: {
  46017. source: "./media/characters/spook/back.svg",
  46018. extra: 812/798,
  46019. bottom: 32/844
  46020. }
  46021. },
  46022. },
  46023. [
  46024. {
  46025. name: "Normal",
  46026. height: math.unit(5 + 5/12, "feet"),
  46027. default: true
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46033. {
  46034. front: {
  46035. height: math.unit(18, "feet"),
  46036. name: "Front",
  46037. image: {
  46038. source: "./media/characters/xeaduulix/front.svg",
  46039. extra: 1380/1166,
  46040. bottom: 110/1490
  46041. }
  46042. },
  46043. back: {
  46044. height: math.unit(18, "feet"),
  46045. name: "Back",
  46046. image: {
  46047. source: "./media/characters/xeaduulix/back.svg",
  46048. extra: 1592/1170,
  46049. bottom: 128/1720
  46050. }
  46051. },
  46052. frontNsfw: {
  46053. height: math.unit(18, "feet"),
  46054. name: "Front (NSFW)",
  46055. image: {
  46056. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46057. extra: 1380/1166,
  46058. bottom: 110/1490
  46059. }
  46060. },
  46061. backNsfw: {
  46062. height: math.unit(18, "feet"),
  46063. name: "Back (NSFW)",
  46064. image: {
  46065. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46066. extra: 1592/1170,
  46067. bottom: 128/1720
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(18, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46081. {
  46082. spreadWings: {
  46083. height: math.unit(20, "feet"),
  46084. name: "Spread Wings",
  46085. image: {
  46086. source: "./media/characters/fledge/spread-wings.svg",
  46087. extra: 693/635,
  46088. bottom: 26/719
  46089. }
  46090. },
  46091. front: {
  46092. height: math.unit(20, "feet"),
  46093. name: "Front",
  46094. image: {
  46095. source: "./media/characters/fledge/front.svg",
  46096. extra: 684/637,
  46097. bottom: 18/702
  46098. }
  46099. },
  46100. frontAlt: {
  46101. height: math.unit(20, "feet"),
  46102. name: "Front (Alt)",
  46103. image: {
  46104. source: "./media/characters/fledge/front-alt.svg",
  46105. extra: 708/664,
  46106. bottom: 13/721
  46107. }
  46108. },
  46109. back: {
  46110. height: math.unit(20, "feet"),
  46111. name: "Back",
  46112. image: {
  46113. source: "./media/characters/fledge/back.svg",
  46114. extra: 718/634,
  46115. bottom: 22/740
  46116. }
  46117. },
  46118. head: {
  46119. height: math.unit(5.55, "feet"),
  46120. name: "Head",
  46121. image: {
  46122. source: "./media/characters/fledge/head.svg"
  46123. }
  46124. },
  46125. headAlt: {
  46126. height: math.unit(5.1, "feet"),
  46127. name: "Head (Alt)",
  46128. image: {
  46129. source: "./media/characters/fledge/head-alt.svg"
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Small",
  46136. height: math.unit(6 + 2/12, "feet")
  46137. },
  46138. {
  46139. name: "Big",
  46140. height: math.unit(20, "feet"),
  46141. default: true
  46142. },
  46143. {
  46144. name: "Giant",
  46145. height: math.unit(100, "feet")
  46146. },
  46147. {
  46148. name: "Macro",
  46149. height: math.unit(200, "feet")
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(1, "meter"),
  46158. name: "Front",
  46159. image: {
  46160. source: "./media/characters/atlas-morenai/front.svg",
  46161. extra: 1275/1043,
  46162. bottom: 19/1294
  46163. }
  46164. },
  46165. back: {
  46166. height: math.unit(1, "meter"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/atlas-morenai/back.svg",
  46170. extra: 1141/1001,
  46171. bottom: 25/1166
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(1, "meter"),
  46179. default: true
  46180. },
  46181. {
  46182. name: "Magic-Infused",
  46183. height: math.unit(5, "meters")
  46184. },
  46185. ]
  46186. ))
  46187. characterMakers.push(() => makeCharacter(
  46188. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46189. {
  46190. front: {
  46191. height: math.unit(5, "meters"),
  46192. name: "Front",
  46193. image: {
  46194. source: "./media/characters/cintia/front.svg",
  46195. extra: 1312/1228,
  46196. bottom: 38/1350
  46197. }
  46198. },
  46199. back: {
  46200. height: math.unit(5, "meters"),
  46201. name: "Back",
  46202. image: {
  46203. source: "./media/characters/cintia/back.svg",
  46204. extra: 1260/1166,
  46205. bottom: 98/1358
  46206. }
  46207. },
  46208. frontDick: {
  46209. height: math.unit(5, "meters"),
  46210. name: "Front (Dick)",
  46211. image: {
  46212. source: "./media/characters/cintia/front-dick.svg",
  46213. extra: 1312/1228,
  46214. bottom: 38/1350
  46215. }
  46216. },
  46217. backDick: {
  46218. height: math.unit(5, "meters"),
  46219. name: "Back (Dick)",
  46220. image: {
  46221. source: "./media/characters/cintia/back-dick.svg",
  46222. extra: 1260/1166,
  46223. bottom: 98/1358
  46224. }
  46225. },
  46226. bust: {
  46227. height: math.unit(1.97, "meters"),
  46228. name: "Bust",
  46229. image: {
  46230. source: "./media/characters/cintia/bust.svg",
  46231. extra: 617/565,
  46232. bottom: 0/617
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(5, "meters"),
  46240. default: true
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46246. {
  46247. side: {
  46248. height: math.unit(100, "feet"),
  46249. name: "Side",
  46250. image: {
  46251. source: "./media/characters/denora/side.svg",
  46252. extra: 875/803,
  46253. bottom: 9/884
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Standard",
  46260. height: math.unit(100, "feet"),
  46261. default: true
  46262. },
  46263. {
  46264. name: "Grand",
  46265. height: math.unit(1000, "feet")
  46266. },
  46267. {
  46268. name: "Conquering",
  46269. height: math.unit(10000, "feet")
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46275. {
  46276. dressed: {
  46277. height: math.unit(8 + 5/12, "feet"),
  46278. weight: math.unit(700, "lb"),
  46279. name: "Dressed",
  46280. image: {
  46281. source: "./media/characters/kiva/dressed.svg",
  46282. extra: 1102/1055,
  46283. bottom: 60/1162
  46284. }
  46285. },
  46286. nude: {
  46287. height: math.unit(8 + 5/12, "feet"),
  46288. weight: math.unit(700, "lb"),
  46289. name: "Nude",
  46290. image: {
  46291. source: "./media/characters/kiva/nude.svg",
  46292. extra: 1102/1055,
  46293. bottom: 60/1162
  46294. }
  46295. },
  46296. },
  46297. [
  46298. {
  46299. name: "Base Height",
  46300. height: math.unit(8 + 5/12, "feet"),
  46301. default: true
  46302. },
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(100, "feet")
  46306. },
  46307. {
  46308. name: "Max",
  46309. height: math.unit(3280, "feet")
  46310. },
  46311. ]
  46312. ))
  46313. characterMakers.push(() => makeCharacter(
  46314. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46315. {
  46316. front: {
  46317. height: math.unit(6 + 8/12, "feet"),
  46318. weight: math.unit(250, "lb"),
  46319. name: "Front",
  46320. image: {
  46321. source: "./media/characters/ztragon/front.svg",
  46322. extra: 1825/1684,
  46323. bottom: 98/1923
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Normal",
  46330. height: math.unit(6 + 8/12, "feet"),
  46331. default: true
  46332. },
  46333. {
  46334. name: "Macro",
  46335. height: math.unit(80, "feet")
  46336. },
  46337. ]
  46338. ))
  46339. characterMakers.push(() => makeCharacter(
  46340. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46341. {
  46342. front: {
  46343. height: math.unit(10.4, "feet"),
  46344. weight: math.unit(2, "tons"),
  46345. name: "Front",
  46346. image: {
  46347. source: "./media/characters/yesenia/front.svg",
  46348. extra: 1479/1474,
  46349. bottom: 233/1712
  46350. }
  46351. },
  46352. },
  46353. [
  46354. {
  46355. name: "Normal",
  46356. height: math.unit(10.4, "feet"),
  46357. default: true
  46358. },
  46359. ]
  46360. ))
  46361. characterMakers.push(() => makeCharacter(
  46362. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46363. {
  46364. normal: {
  46365. height: math.unit(6 + 1/12, "feet"),
  46366. weight: math.unit(180, "lb"),
  46367. name: "Normal",
  46368. image: {
  46369. source: "./media/characters/leanne-lycheborne/normal.svg",
  46370. extra: 1748/1660,
  46371. bottom: 98/1846
  46372. }
  46373. },
  46374. were: {
  46375. height: math.unit(12, "feet"),
  46376. weight: math.unit(1600, "lb"),
  46377. name: "Were",
  46378. image: {
  46379. source: "./media/characters/leanne-lycheborne/were.svg",
  46380. extra: 1485/1432,
  46381. bottom: 66/1551
  46382. }
  46383. },
  46384. },
  46385. [
  46386. {
  46387. name: "Normal",
  46388. height: math.unit(6 + 1/12, "feet"),
  46389. default: true
  46390. },
  46391. ]
  46392. ))
  46393. characterMakers.push(() => makeCharacter(
  46394. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46395. {
  46396. side: {
  46397. height: math.unit(13, "feet"),
  46398. name: "Side",
  46399. image: {
  46400. source: "./media/characters/kira-tyler/side.svg",
  46401. extra: 693/393,
  46402. bottom: 58/751
  46403. }
  46404. },
  46405. },
  46406. [
  46407. {
  46408. name: "Normal",
  46409. height: math.unit(13, "feet"),
  46410. default: true
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46416. {
  46417. front: {
  46418. height: math.unit(10.3, "feet"),
  46419. weight: math.unit(150, "lb"),
  46420. name: "Front",
  46421. image: {
  46422. source: "./media/characters/blaze/front.svg",
  46423. extra: 1378/1286,
  46424. bottom: 172/1550
  46425. }
  46426. },
  46427. },
  46428. [
  46429. {
  46430. name: "Normal",
  46431. height: math.unit(10.3, "feet"),
  46432. default: true
  46433. },
  46434. ]
  46435. ))
  46436. characterMakers.push(() => makeCharacter(
  46437. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46438. {
  46439. side: {
  46440. height: math.unit(2, "meters"),
  46441. weight: math.unit(400, "kg"),
  46442. name: "Side",
  46443. image: {
  46444. source: "./media/characters/anu/side.svg",
  46445. extra: 506/394,
  46446. bottom: 18/524
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Humanoid",
  46453. height: math.unit(2, "meters")
  46454. },
  46455. {
  46456. name: "Normal",
  46457. height: math.unit(5, "meters"),
  46458. default: true
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(5 + 5/12, "feet"),
  46467. weight: math.unit(170, "lb"),
  46468. name: "Front",
  46469. image: {
  46470. source: "./media/characters/synx-the-lynx/front.svg",
  46471. extra: 1893/1745,
  46472. bottom: 17/1910
  46473. }
  46474. },
  46475. side: {
  46476. height: math.unit(5 + 5/12, "feet"),
  46477. weight: math.unit(170, "lb"),
  46478. name: "Side",
  46479. image: {
  46480. source: "./media/characters/synx-the-lynx/side.svg",
  46481. extra: 1884/1740,
  46482. bottom: 39/1923
  46483. }
  46484. },
  46485. back: {
  46486. height: math.unit(5 + 5/12, "feet"),
  46487. weight: math.unit(170, "lb"),
  46488. name: "Back",
  46489. image: {
  46490. source: "./media/characters/synx-the-lynx/back.svg",
  46491. extra: 1903/1755,
  46492. bottom: 14/1917
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(5 + 5/12, "feet"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46506. {
  46507. back: {
  46508. height: math.unit(15, "feet"),
  46509. name: "Back",
  46510. image: {
  46511. source: "./media/characters/nadezda-fex/back.svg",
  46512. extra: 1695/1481,
  46513. bottom: 25/1720
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(15, "feet"),
  46521. default: true
  46522. },
  46523. {
  46524. name: "Macro",
  46525. height: math.unit(2.5, "miles")
  46526. },
  46527. {
  46528. name: "Goddess",
  46529. height: math.unit(2, "multiverses")
  46530. },
  46531. ]
  46532. ))
  46533. characterMakers.push(() => makeCharacter(
  46534. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46535. {
  46536. front: {
  46537. height: math.unit(216, "cm"),
  46538. name: "Front",
  46539. image: {
  46540. source: "./media/characters/lev/front.svg",
  46541. extra: 1728/1670,
  46542. bottom: 82/1810
  46543. }
  46544. },
  46545. back: {
  46546. height: math.unit(216, "cm"),
  46547. name: "Back",
  46548. image: {
  46549. source: "./media/characters/lev/back.svg",
  46550. extra: 1738/1675,
  46551. bottom: 24/1762
  46552. }
  46553. },
  46554. dressed: {
  46555. height: math.unit(216, "cm"),
  46556. name: "Dressed",
  46557. image: {
  46558. source: "./media/characters/lev/dressed.svg",
  46559. extra: 1397/1351,
  46560. bottom: 73/1470
  46561. }
  46562. },
  46563. head: {
  46564. height: math.unit(0.51, "meter"),
  46565. name: "Head",
  46566. image: {
  46567. source: "./media/characters/lev/head.svg"
  46568. }
  46569. },
  46570. },
  46571. [
  46572. {
  46573. name: "Normal",
  46574. height: math.unit(216, "cm"),
  46575. default: true
  46576. },
  46577. {
  46578. name: "Relatively Macro",
  46579. height: math.unit(80, "meters")
  46580. },
  46581. {
  46582. name: "Megamacro",
  46583. height: math.unit(21600, "meters")
  46584. },
  46585. {
  46586. name: "Megamacro+",
  46587. height: math.unit(64800, "meters")
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46593. {
  46594. front: {
  46595. height: math.unit(2, "meters"),
  46596. weight: math.unit(80, "kg"),
  46597. name: "Front",
  46598. image: {
  46599. source: "./media/characters/moka/front.svg",
  46600. extra: 1337/1255,
  46601. bottom: 58/1395
  46602. }
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Micro",
  46608. height: math.unit(15, "cm")
  46609. },
  46610. {
  46611. name: "Normal",
  46612. height: math.unit(2, "meters"),
  46613. default: true
  46614. },
  46615. {
  46616. name: "Macro",
  46617. height: math.unit(20, "meters"),
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46623. {
  46624. front: {
  46625. height: math.unit(9, "feet"),
  46626. weight: math.unit(240, "lb"),
  46627. name: "Front",
  46628. image: {
  46629. source: "./media/characters/kuzco/front.svg",
  46630. extra: 1593/1487,
  46631. bottom: 32/1625
  46632. }
  46633. },
  46634. side: {
  46635. height: math.unit(9, "feet"),
  46636. weight: math.unit(240, "lb"),
  46637. name: "Side",
  46638. image: {
  46639. source: "./media/characters/kuzco/side.svg",
  46640. extra: 1575/1485,
  46641. bottom: 30/1605
  46642. }
  46643. },
  46644. back: {
  46645. height: math.unit(9, "feet"),
  46646. weight: math.unit(240, "lb"),
  46647. name: "Back",
  46648. image: {
  46649. source: "./media/characters/kuzco/back.svg",
  46650. extra: 1603/1514,
  46651. bottom: 14/1617
  46652. }
  46653. },
  46654. },
  46655. [
  46656. {
  46657. name: "Normal",
  46658. height: math.unit(9, "feet"),
  46659. default: true
  46660. },
  46661. ]
  46662. ))
  46663. characterMakers.push(() => makeCharacter(
  46664. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46665. {
  46666. side: {
  46667. height: math.unit(2, "meters"),
  46668. weight: math.unit(300, "kg"),
  46669. name: "Side",
  46670. image: {
  46671. source: "./media/characters/ceruleus/side.svg",
  46672. extra: 1068/974,
  46673. bottom: 126/1194
  46674. }
  46675. },
  46676. },
  46677. [
  46678. {
  46679. name: "Normal",
  46680. height: math.unit(16, "meters"),
  46681. default: true
  46682. },
  46683. ]
  46684. ))
  46685. characterMakers.push(() => makeCharacter(
  46686. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46687. {
  46688. front: {
  46689. height: math.unit(9, "feet"),
  46690. weight: math.unit(500, "kg"),
  46691. name: "Front",
  46692. image: {
  46693. source: "./media/characters/acouya/front.svg",
  46694. extra: 1660/1473,
  46695. bottom: 28/1688
  46696. }
  46697. },
  46698. },
  46699. [
  46700. {
  46701. name: "Normal",
  46702. height: math.unit(9, "feet"),
  46703. default: true
  46704. },
  46705. ]
  46706. ))
  46707. characterMakers.push(() => makeCharacter(
  46708. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46709. {
  46710. front: {
  46711. height: math.unit(5 + 6/12, "feet"),
  46712. weight: math.unit(195, "lb"),
  46713. name: "Front",
  46714. image: {
  46715. source: "./media/characters/vant/front.svg",
  46716. extra: 1396/1320,
  46717. bottom: 20/1416
  46718. }
  46719. },
  46720. back: {
  46721. height: math.unit(5 + 6/12, "feet"),
  46722. weight: math.unit(195, "lb"),
  46723. name: "Back",
  46724. image: {
  46725. source: "./media/characters/vant/back.svg",
  46726. extra: 1396/1320,
  46727. bottom: 20/1416
  46728. }
  46729. },
  46730. maw: {
  46731. height: math.unit(0.75, "feet"),
  46732. name: "Maw",
  46733. image: {
  46734. source: "./media/characters/vant/maw.svg"
  46735. }
  46736. },
  46737. paw: {
  46738. height: math.unit(1.07, "feet"),
  46739. name: "Paw",
  46740. image: {
  46741. source: "./media/characters/vant/paw.svg"
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Micro",
  46748. height: math.unit(0.25, "inches")
  46749. },
  46750. {
  46751. name: "Normal",
  46752. height: math.unit(5 + 6/12, "feet"),
  46753. default: true
  46754. },
  46755. {
  46756. name: "Macro",
  46757. height: math.unit(75, "feet")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(30, "meters"),
  46766. weight: math.unit(363, "tons"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/ahra/front.svg",
  46770. extra: 1914/1814,
  46771. bottom: 46/1960
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Macro",
  46778. height: math.unit(30, "meters"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46785. {
  46786. undressed: {
  46787. height: math.unit(2, "m"),
  46788. weight: math.unit(250, "kg"),
  46789. name: "Undressed",
  46790. image: {
  46791. source: "./media/characters/coriander/undressed.svg",
  46792. extra: 1757/1606,
  46793. bottom: 107/1864
  46794. }
  46795. },
  46796. dressed: {
  46797. height: math.unit(2, "m"),
  46798. weight: math.unit(250, "kg"),
  46799. name: "Dressed",
  46800. image: {
  46801. source: "./media/characters/coriander/dressed.svg",
  46802. extra: 1757/1606,
  46803. bottom: 107/1864
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(4, "meters"),
  46811. default: true
  46812. },
  46813. {
  46814. name: "XL",
  46815. height: math.unit(6, "meters")
  46816. },
  46817. {
  46818. name: "XXL",
  46819. height: math.unit(8, "meters")
  46820. },
  46821. ]
  46822. ))
  46823. characterMakers.push(() => makeCharacter(
  46824. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46825. {
  46826. front: {
  46827. height: math.unit(6, "feet"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/syrinx/front.svg",
  46831. extra: 1557/1259,
  46832. bottom: 171/1728
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(6 + 3/12, "feet"),
  46840. default: true
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(11 + 6/12, "feet"),
  46849. weight: math.unit(1.5, "tons"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/bor/front.svg",
  46853. extra: 1189/1109,
  46854. bottom: 170/1359
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(11 + 6/12, "feet"),
  46862. default: true
  46863. },
  46864. {
  46865. name: "Macro",
  46866. height: math.unit(32 + 9/12, "feet")
  46867. },
  46868. ]
  46869. ))
  46870. characterMakers.push(() => makeCharacter(
  46871. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46872. {
  46873. anthro: {
  46874. height: math.unit(9, "feet"),
  46875. weight: math.unit(2076, "lb"),
  46876. name: "Anthro",
  46877. image: {
  46878. source: "./media/characters/abacus/anthro.svg",
  46879. extra: 1540/1494,
  46880. bottom: 233/1773
  46881. }
  46882. },
  46883. pigeon: {
  46884. height: math.unit(1, "feet"),
  46885. name: "Pigeon",
  46886. image: {
  46887. source: "./media/characters/abacus/pigeon.svg",
  46888. extra: 528/525,
  46889. bottom: 46/574
  46890. }
  46891. },
  46892. },
  46893. [
  46894. {
  46895. name: "Normal",
  46896. height: math.unit(9, "feet"),
  46897. default: true
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46903. {
  46904. side: {
  46905. height: math.unit(6, "feet"),
  46906. name: "Side",
  46907. image: {
  46908. source: "./media/characters/delkhan/side.svg",
  46909. extra: 1884/1786,
  46910. bottom: 308/2192
  46911. }
  46912. },
  46913. head: {
  46914. height: math.unit(3.38, "feet"),
  46915. name: "Head",
  46916. image: {
  46917. source: "./media/characters/delkhan/head.svg"
  46918. }
  46919. },
  46920. },
  46921. [
  46922. {
  46923. name: "Normal",
  46924. height: math.unit(72, "feet"),
  46925. default: true
  46926. },
  46927. {
  46928. name: "Giant",
  46929. height: math.unit(172, "feet")
  46930. },
  46931. ]
  46932. ))
  46933. characterMakers.push(() => makeCharacter(
  46934. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46935. {
  46936. standing: {
  46937. height: math.unit(6, "feet"),
  46938. name: "Standing",
  46939. image: {
  46940. source: "./media/characters/euchidat/standing.svg",
  46941. extra: 1612/1553,
  46942. bottom: 116/1728
  46943. }
  46944. },
  46945. leaning: {
  46946. height: math.unit(6, "feet"),
  46947. name: "Leaning",
  46948. image: {
  46949. source: "./media/characters/euchidat/leaning.svg",
  46950. extra: 1719/1674,
  46951. bottom: 27/1746
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Normal",
  46958. height: math.unit(175, "feet"),
  46959. default: true
  46960. },
  46961. {
  46962. name: "Megamacro",
  46963. height: math.unit(190, "miles")
  46964. },
  46965. {
  46966. name: "Gigamacro",
  46967. height: math.unit(190000, "miles")
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(6, "feet"),
  46976. weight: math.unit(150, "lb"),
  46977. name: "Front",
  46978. image: {
  46979. source: "./media/characters/rebecca-stack/front.svg",
  46980. extra: 1256/1201,
  46981. bottom: 18/1274
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(5 + 8/12, "feet"),
  46989. default: true
  46990. },
  46991. {
  46992. name: "Demolitionist",
  46993. height: math.unit(200, "feet")
  46994. },
  46995. {
  46996. name: "Out of Control",
  46997. height: math.unit(2, "miles")
  46998. },
  46999. {
  47000. name: "Giga",
  47001. height: math.unit(7200, "miles")
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(6, "feet"),
  47010. weight: math.unit(150, "lb"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/jenny-cartwright/front.svg",
  47014. extra: 1384/1376,
  47015. bottom: 58/1442
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(6 + 7/12, "feet"),
  47023. default: true
  47024. },
  47025. {
  47026. name: "Librarian",
  47027. height: math.unit(55, "feet")
  47028. },
  47029. {
  47030. name: "Sightseer",
  47031. height: math.unit(50, "miles")
  47032. },
  47033. {
  47034. name: "Giga",
  47035. height: math.unit(30000, "miles")
  47036. },
  47037. ]
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47041. {
  47042. nude: {
  47043. height: math.unit(8, "feet"),
  47044. weight: math.unit(225, "lb"),
  47045. name: "Nude",
  47046. image: {
  47047. source: "./media/characters/marvy/nude.svg",
  47048. extra: 1900/1683,
  47049. bottom: 89/1989
  47050. }
  47051. },
  47052. dressed: {
  47053. height: math.unit(8, "feet"),
  47054. weight: math.unit(225, "lb"),
  47055. name: "Dressed",
  47056. image: {
  47057. source: "./media/characters/marvy/dressed.svg",
  47058. extra: 1900/1683,
  47059. bottom: 89/1989
  47060. }
  47061. },
  47062. head: {
  47063. height: math.unit(2.85, "feet"),
  47064. name: "Head",
  47065. image: {
  47066. source: "./media/characters/marvy/head.svg"
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(8, "feet"),
  47074. default: true
  47075. },
  47076. ]
  47077. ))
  47078. characterMakers.push(() => makeCharacter(
  47079. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47080. {
  47081. front: {
  47082. height: math.unit(8, "feet"),
  47083. weight: math.unit(250, "lb"),
  47084. name: "Front",
  47085. image: {
  47086. source: "./media/characters/leah/front.svg",
  47087. extra: 1257/1149,
  47088. bottom: 109/1366
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Normal",
  47095. height: math.unit(8, "feet"),
  47096. default: true
  47097. },
  47098. {
  47099. name: "Minimacro",
  47100. height: math.unit(40, "feet")
  47101. },
  47102. {
  47103. name: "Macro",
  47104. height: math.unit(124, "feet")
  47105. },
  47106. {
  47107. name: "Megamacro",
  47108. height: math.unit(850, "feet")
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47114. {
  47115. side: {
  47116. height: math.unit(13 + 6/12, "feet"),
  47117. weight: math.unit(3200, "lb"),
  47118. name: "Side",
  47119. image: {
  47120. source: "./media/characters/alvir/side.svg",
  47121. extra: 896/589,
  47122. bottom: 26/922
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(13 + 6/12, "feet"),
  47130. default: true
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47136. {
  47137. front: {
  47138. height: math.unit(5 + 4/12, "feet"),
  47139. weight: math.unit(236, "lb"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/zaina-khalil/front.svg",
  47143. extra: 1533/1485,
  47144. bottom: 94/1627
  47145. }
  47146. },
  47147. side: {
  47148. height: math.unit(5 + 4/12, "feet"),
  47149. weight: math.unit(236, "lb"),
  47150. name: "Side",
  47151. image: {
  47152. source: "./media/characters/zaina-khalil/side.svg",
  47153. extra: 1537/1498,
  47154. bottom: 66/1603
  47155. }
  47156. },
  47157. back: {
  47158. height: math.unit(5 + 4/12, "feet"),
  47159. weight: math.unit(236, "lb"),
  47160. name: "Back",
  47161. image: {
  47162. source: "./media/characters/zaina-khalil/back.svg",
  47163. extra: 1546/1494,
  47164. bottom: 89/1635
  47165. }
  47166. },
  47167. },
  47168. [
  47169. {
  47170. name: "Normal",
  47171. height: math.unit(5 + 4/12, "feet"),
  47172. default: true
  47173. },
  47174. ]
  47175. ))
  47176. characterMakers.push(() => makeCharacter(
  47177. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47178. {
  47179. side: {
  47180. height: math.unit(12, "feet"),
  47181. weight: math.unit(4000, "lb"),
  47182. name: "Side",
  47183. image: {
  47184. source: "./media/characters/terry/side.svg",
  47185. extra: 1518/1439,
  47186. bottom: 149/1667
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(12, "feet"),
  47203. weight: math.unit(1500, "lb"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/kahea/front.svg",
  47207. extra: 1722/1617,
  47208. bottom: 179/1901
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(12, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47222. {
  47223. demonFront: {
  47224. height: math.unit(36, "feet"),
  47225. name: "Front",
  47226. image: {
  47227. source: "./media/characters/alex-xuria/demon-front.svg",
  47228. extra: 1705/1673,
  47229. bottom: 198/1903
  47230. },
  47231. form: "demon",
  47232. default: true
  47233. },
  47234. demonBack: {
  47235. height: math.unit(36, "feet"),
  47236. name: "Back",
  47237. image: {
  47238. source: "./media/characters/alex-xuria/demon-back.svg",
  47239. extra: 1725/1693,
  47240. bottom: 70/1795
  47241. },
  47242. form: "demon"
  47243. },
  47244. demonHead: {
  47245. height: math.unit(2.14, "meters"),
  47246. name: "Head",
  47247. image: {
  47248. source: "./media/characters/alex-xuria/demon-head.svg"
  47249. },
  47250. form: "demon"
  47251. },
  47252. demonHand: {
  47253. height: math.unit(1.61, "meters"),
  47254. name: "Hand",
  47255. image: {
  47256. source: "./media/characters/alex-xuria/demon-hand.svg"
  47257. },
  47258. form: "demon"
  47259. },
  47260. demonPaw: {
  47261. height: math.unit(1.35, "meters"),
  47262. name: "Paw",
  47263. image: {
  47264. source: "./media/characters/alex-xuria/demon-paw.svg"
  47265. },
  47266. form: "demon"
  47267. },
  47268. demonFoot: {
  47269. height: math.unit(2.2, "meters"),
  47270. name: "Foot",
  47271. image: {
  47272. source: "./media/characters/alex-xuria/demon-foot.svg"
  47273. },
  47274. form: "demon"
  47275. },
  47276. demonCock: {
  47277. height: math.unit(1.74, "meters"),
  47278. name: "Cock",
  47279. image: {
  47280. source: "./media/characters/alex-xuria/demon-cock.svg"
  47281. },
  47282. form: "demon"
  47283. },
  47284. demonTailClosed: {
  47285. height: math.unit(1.47, "meters"),
  47286. name: "Tail (Closed)",
  47287. image: {
  47288. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47289. },
  47290. form: "demon"
  47291. },
  47292. demonTailOpen: {
  47293. height: math.unit(2.85, "meters"),
  47294. name: "Tail (Open)",
  47295. image: {
  47296. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47297. },
  47298. form: "demon"
  47299. },
  47300. incubusFront: {
  47301. height: math.unit(12, "feet"),
  47302. name: "Front",
  47303. image: {
  47304. source: "./media/characters/alex-xuria/incubus-front.svg",
  47305. extra: 1754/1677,
  47306. bottom: 125/1879
  47307. },
  47308. form: "incubus",
  47309. default: true
  47310. },
  47311. incubusBack: {
  47312. height: math.unit(12, "feet"),
  47313. name: "Back",
  47314. image: {
  47315. source: "./media/characters/alex-xuria/incubus-back.svg",
  47316. extra: 1702/1647,
  47317. bottom: 30/1732
  47318. },
  47319. form: "incubus"
  47320. },
  47321. incubusHead: {
  47322. height: math.unit(3.45, "feet"),
  47323. name: "Head",
  47324. image: {
  47325. source: "./media/characters/alex-xuria/incubus-head.svg"
  47326. },
  47327. form: "incubus"
  47328. },
  47329. rabbitFront: {
  47330. height: math.unit(6, "feet"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47334. extra: 1369/1349,
  47335. bottom: 45/1414
  47336. },
  47337. form: "rabbit",
  47338. default: true
  47339. },
  47340. rabbitSide: {
  47341. height: math.unit(6, "feet"),
  47342. name: "Side",
  47343. image: {
  47344. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47345. extra: 1370/1356,
  47346. bottom: 37/1407
  47347. },
  47348. form: "rabbit"
  47349. },
  47350. rabbitBack: {
  47351. height: math.unit(6, "feet"),
  47352. name: "Back",
  47353. image: {
  47354. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47355. extra: 1375/1358,
  47356. bottom: 43/1418
  47357. },
  47358. form: "rabbit"
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Normal",
  47364. height: math.unit(6, "feet"),
  47365. default: true,
  47366. form: "rabbit"
  47367. },
  47368. {
  47369. name: "Incubus",
  47370. height: math.unit(12, "feet"),
  47371. default: true,
  47372. form: "incubus"
  47373. },
  47374. {
  47375. name: "Demon",
  47376. height: math.unit(36, "feet"),
  47377. default: true,
  47378. form: "demon"
  47379. }
  47380. ],
  47381. {
  47382. "demon": {
  47383. name: "Demon",
  47384. default: true
  47385. },
  47386. "incubus": {
  47387. name: "Incubus",
  47388. },
  47389. "rabbit": {
  47390. name: "Rabbit"
  47391. }
  47392. }
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47396. {
  47397. front: {
  47398. height: math.unit(7 + 5/12, "feet"),
  47399. weight: math.unit(510, "lb"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/syrup/front.svg",
  47403. extra: 932/916,
  47404. bottom: 26/958
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(7 + 5/12, "feet"),
  47412. default: true
  47413. },
  47414. {
  47415. name: "Big",
  47416. height: math.unit(50, "feet")
  47417. },
  47418. {
  47419. name: "Macro",
  47420. height: math.unit(300, "feet")
  47421. },
  47422. {
  47423. name: "Megamacro",
  47424. height: math.unit(1, "mile")
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(6 + 9/12, "feet"),
  47433. name: "Front",
  47434. image: {
  47435. source: "./media/characters/zeimne/front.svg",
  47436. extra: 1969/1806,
  47437. bottom: 53/2022
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Normal",
  47444. height: math.unit(6 + 9/12, "feet"),
  47445. default: true
  47446. },
  47447. {
  47448. name: "Giant",
  47449. height: math.unit(550, "feet")
  47450. },
  47451. {
  47452. name: "Mega",
  47453. height: math.unit(3, "miles")
  47454. },
  47455. {
  47456. name: "Giga",
  47457. height: math.unit(250, "miles")
  47458. },
  47459. {
  47460. name: "Tera",
  47461. height: math.unit(1, "AU")
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47467. {
  47468. front: {
  47469. height: math.unit(5 + 2/12, "feet"),
  47470. name: "Front",
  47471. image: {
  47472. source: "./media/characters/grar/front.svg",
  47473. extra: 1331/1119,
  47474. bottom: 60/1391
  47475. }
  47476. },
  47477. back: {
  47478. height: math.unit(5 + 2/12, "feet"),
  47479. name: "Back",
  47480. image: {
  47481. source: "./media/characters/grar/back.svg",
  47482. extra: 1385/1169,
  47483. bottom: 23/1408
  47484. }
  47485. },
  47486. },
  47487. [
  47488. {
  47489. name: "Normal",
  47490. height: math.unit(5 + 2/12, "feet"),
  47491. default: true
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(13 + 7/12, "feet"),
  47500. weight: math.unit(2200, "lb"),
  47501. name: "Front",
  47502. image: {
  47503. source: "./media/characters/endraya/front.svg",
  47504. extra: 1289/1215,
  47505. bottom: 50/1339
  47506. }
  47507. },
  47508. nude: {
  47509. height: math.unit(13 + 7/12, "feet"),
  47510. weight: math.unit(2200, "lb"),
  47511. name: "Nude",
  47512. image: {
  47513. source: "./media/characters/endraya/nude.svg",
  47514. extra: 1247/1171,
  47515. bottom: 40/1287
  47516. }
  47517. },
  47518. head: {
  47519. height: math.unit(2.6, "feet"),
  47520. name: "Head",
  47521. image: {
  47522. source: "./media/characters/endraya/head.svg"
  47523. }
  47524. },
  47525. slit: {
  47526. height: math.unit(3.4, "feet"),
  47527. name: "Slit",
  47528. image: {
  47529. source: "./media/characters/endraya/slit.svg"
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(13 + 7/12, "feet"),
  47537. default: true
  47538. },
  47539. {
  47540. name: "Macro",
  47541. height: math.unit(200, "feet")
  47542. },
  47543. ]
  47544. ))
  47545. characterMakers.push(() => makeCharacter(
  47546. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47547. {
  47548. front: {
  47549. height: math.unit(1.81, "meters"),
  47550. weight: math.unit(69, "kg"),
  47551. name: "Front",
  47552. image: {
  47553. source: "./media/characters/rodryana/front.svg",
  47554. extra: 2002/1921,
  47555. bottom: 53/2055
  47556. }
  47557. },
  47558. back: {
  47559. height: math.unit(1.81, "meters"),
  47560. weight: math.unit(69, "kg"),
  47561. name: "Back",
  47562. image: {
  47563. source: "./media/characters/rodryana/back.svg",
  47564. extra: 1993/1926,
  47565. bottom: 48/2041
  47566. }
  47567. },
  47568. maw: {
  47569. height: math.unit(0.19769417475, "meters"),
  47570. name: "Maw",
  47571. image: {
  47572. source: "./media/characters/rodryana/maw.svg"
  47573. }
  47574. },
  47575. slit: {
  47576. height: math.unit(0.31631067961, "meters"),
  47577. name: "Slit",
  47578. image: {
  47579. source: "./media/characters/rodryana/slit.svg"
  47580. }
  47581. },
  47582. },
  47583. [
  47584. {
  47585. name: "Normal",
  47586. height: math.unit(1.81, "meters")
  47587. },
  47588. {
  47589. name: "Mini Macro",
  47590. height: math.unit(181, "meters")
  47591. },
  47592. {
  47593. name: "Macro",
  47594. height: math.unit(452, "meters"),
  47595. default: true
  47596. },
  47597. {
  47598. name: "Mega Macro",
  47599. height: math.unit(1.375, "km")
  47600. },
  47601. {
  47602. name: "Giga Macro",
  47603. height: math.unit(13.575, "km")
  47604. },
  47605. ]
  47606. ))
  47607. characterMakers.push(() => makeCharacter(
  47608. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47609. {
  47610. front: {
  47611. height: math.unit(6, "feet"),
  47612. weight: math.unit(1000, "lb"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/asaya/front.svg",
  47616. extra: 1460/1200,
  47617. bottom: 71/1531
  47618. }
  47619. },
  47620. },
  47621. [
  47622. {
  47623. name: "Normal",
  47624. height: math.unit(8, "km"),
  47625. default: true
  47626. },
  47627. ]
  47628. ))
  47629. characterMakers.push(() => makeCharacter(
  47630. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47631. {
  47632. front: {
  47633. height: math.unit(3.5, "meters"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/sarzu-and-israz/front.svg",
  47637. extra: 1570/1558,
  47638. bottom: 150/1720
  47639. },
  47640. },
  47641. back: {
  47642. height: math.unit(3.5, "meters"),
  47643. name: "Back",
  47644. image: {
  47645. source: "./media/characters/sarzu-and-israz/back.svg",
  47646. extra: 1523/1509,
  47647. bottom: 132/1655
  47648. },
  47649. },
  47650. frontFemale: {
  47651. height: math.unit(3.5, "meters"),
  47652. name: "Front (Female)",
  47653. image: {
  47654. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47655. extra: 1570/1558,
  47656. bottom: 150/1720
  47657. },
  47658. },
  47659. frontHerm: {
  47660. height: math.unit(3.5, "meters"),
  47661. name: "Front (Herm)",
  47662. image: {
  47663. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47664. extra: 1570/1558,
  47665. bottom: 150/1720
  47666. },
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(3.5, "meters"),
  47673. default: true,
  47674. },
  47675. {
  47676. name: "Macro",
  47677. height: math.unit(65.5, "meters"),
  47678. },
  47679. ],
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47683. {
  47684. front: {
  47685. height: math.unit(6, "feet"),
  47686. weight: math.unit(250, "lb"),
  47687. name: "Front",
  47688. image: {
  47689. source: "./media/characters/zenimma/front.svg",
  47690. extra: 1346/1320,
  47691. bottom: 58/1404
  47692. }
  47693. },
  47694. back: {
  47695. height: math.unit(6, "feet"),
  47696. weight: math.unit(250, "lb"),
  47697. name: "Back",
  47698. image: {
  47699. source: "./media/characters/zenimma/back.svg",
  47700. extra: 1324/1308,
  47701. bottom: 44/1368
  47702. }
  47703. },
  47704. dick: {
  47705. height: math.unit(1.44, "feet"),
  47706. name: "Dick",
  47707. image: {
  47708. source: "./media/characters/zenimma/dick.svg"
  47709. }
  47710. },
  47711. },
  47712. [
  47713. {
  47714. name: "Canon Height",
  47715. height: math.unit(66, "miles"),
  47716. default: true
  47717. },
  47718. ]
  47719. ))
  47720. characterMakers.push(() => makeCharacter(
  47721. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47722. {
  47723. nude: {
  47724. height: math.unit(6, "feet"),
  47725. weight: math.unit(150, "lb"),
  47726. name: "Nude",
  47727. image: {
  47728. source: "./media/characters/shavon/nude.svg",
  47729. extra: 1242/1096,
  47730. bottom: 98/1340
  47731. }
  47732. },
  47733. dressed: {
  47734. height: math.unit(6, "feet"),
  47735. weight: math.unit(150, "lb"),
  47736. name: "Dressed",
  47737. image: {
  47738. source: "./media/characters/shavon/dressed.svg",
  47739. extra: 1242/1096,
  47740. bottom: 98/1340
  47741. }
  47742. },
  47743. },
  47744. [
  47745. {
  47746. name: "Macro",
  47747. height: math.unit(255, "feet"),
  47748. default: true
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(6, "feet"),
  47757. name: "Front",
  47758. image: {
  47759. source: "./media/characters/steph/front.svg",
  47760. extra: 1430/1330,
  47761. bottom: 54/1484
  47762. }
  47763. },
  47764. },
  47765. [
  47766. {
  47767. name: "Normal",
  47768. height: math.unit(6, "feet"),
  47769. default: true
  47770. },
  47771. ]
  47772. ))
  47773. characterMakers.push(() => makeCharacter(
  47774. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47775. {
  47776. front: {
  47777. height: math.unit(9, "feet"),
  47778. weight: math.unit(400, "lb"),
  47779. name: "Front",
  47780. image: {
  47781. source: "./media/characters/kil'aman/front.svg",
  47782. extra: 1210/1159,
  47783. bottom: 109/1319
  47784. }
  47785. },
  47786. head: {
  47787. height: math.unit(2.14, "feet"),
  47788. name: "Head",
  47789. image: {
  47790. source: "./media/characters/kil'aman/head.svg"
  47791. }
  47792. },
  47793. maw: {
  47794. height: math.unit(1.21, "feet"),
  47795. name: "Maw",
  47796. image: {
  47797. source: "./media/characters/kil'aman/maw.svg"
  47798. }
  47799. },
  47800. foot: {
  47801. height: math.unit(1.7, "feet"),
  47802. name: "Foot",
  47803. image: {
  47804. source: "./media/characters/kil'aman/foot.svg"
  47805. }
  47806. },
  47807. dick: {
  47808. height: math.unit(2.1, "feet"),
  47809. name: "Dick",
  47810. image: {
  47811. source: "./media/characters/kil'aman/dick.svg"
  47812. }
  47813. },
  47814. },
  47815. [
  47816. {
  47817. name: "Normal",
  47818. height: math.unit(9, "feet")
  47819. },
  47820. {
  47821. name: "Canon Height",
  47822. height: math.unit(10, "miles"),
  47823. default: true
  47824. },
  47825. {
  47826. name: "Maximum",
  47827. height: math.unit(6e9, "miles")
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(90, "feet"),
  47836. weight: math.unit(675000, "lb"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/qadan/front.svg",
  47840. extra: 1012/1004,
  47841. bottom: 78/1090
  47842. }
  47843. },
  47844. back: {
  47845. height: math.unit(90, "feet"),
  47846. weight: math.unit(675000, "lb"),
  47847. name: "Back",
  47848. image: {
  47849. source: "./media/characters/qadan/back.svg",
  47850. extra: 1042/1031,
  47851. bottom: 55/1097
  47852. }
  47853. },
  47854. armored: {
  47855. height: math.unit(90, "feet"),
  47856. weight: math.unit(675000, "lb"),
  47857. name: "Armored",
  47858. image: {
  47859. source: "./media/characters/qadan/armored.svg",
  47860. extra: 1047/1037,
  47861. bottom: 48/1095
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(90, "feet"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47875. {
  47876. front: {
  47877. height: math.unit(6, "feet"),
  47878. weight: math.unit(225, "lb"),
  47879. name: "Front",
  47880. image: {
  47881. source: "./media/characters/brooke/front.svg",
  47882. extra: 1050/1010,
  47883. bottom: 66/1116
  47884. }
  47885. },
  47886. back: {
  47887. height: math.unit(6, "feet"),
  47888. weight: math.unit(225, "lb"),
  47889. name: "Back",
  47890. image: {
  47891. source: "./media/characters/brooke/back.svg",
  47892. extra: 1053/1013,
  47893. bottom: 41/1094
  47894. }
  47895. },
  47896. dressed: {
  47897. height: math.unit(6, "feet"),
  47898. weight: math.unit(225, "lb"),
  47899. name: "Dressed",
  47900. image: {
  47901. source: "./media/characters/brooke/dressed.svg",
  47902. extra: 1050/1010,
  47903. bottom: 66/1116
  47904. }
  47905. },
  47906. },
  47907. [
  47908. {
  47909. name: "Canon Height",
  47910. height: math.unit(500, "miles"),
  47911. default: true
  47912. },
  47913. ]
  47914. ))
  47915. characterMakers.push(() => makeCharacter(
  47916. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47917. {
  47918. front: {
  47919. height: math.unit(6 + 2/12, "feet"),
  47920. weight: math.unit(210, "lb"),
  47921. name: "Front",
  47922. image: {
  47923. source: "./media/characters/wubs/front.svg",
  47924. extra: 1345/1325,
  47925. bottom: 70/1415
  47926. }
  47927. },
  47928. back: {
  47929. height: math.unit(6 + 2/12, "feet"),
  47930. weight: math.unit(210, "lb"),
  47931. name: "Back",
  47932. image: {
  47933. source: "./media/characters/wubs/back.svg",
  47934. extra: 1296/1275,
  47935. bottom: 58/1354
  47936. }
  47937. },
  47938. },
  47939. [
  47940. {
  47941. name: "Normal",
  47942. height: math.unit(6 + 2/12, "feet"),
  47943. default: true
  47944. },
  47945. {
  47946. name: "Macro",
  47947. height: math.unit(1000, "feet")
  47948. },
  47949. {
  47950. name: "Megamacro",
  47951. height: math.unit(1, "mile")
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(4, "feet"),
  47960. weight: math.unit(120, "lb"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/blue/front.svg",
  47964. extra: 1636/1525,
  47965. bottom: 43/1679
  47966. }
  47967. },
  47968. back: {
  47969. height: math.unit(4, "feet"),
  47970. weight: math.unit(120, "lb"),
  47971. name: "Back",
  47972. image: {
  47973. source: "./media/characters/blue/back.svg",
  47974. extra: 1660/1560,
  47975. bottom: 57/1717
  47976. }
  47977. },
  47978. paws: {
  47979. height: math.unit(0.826, "feet"),
  47980. name: "Paws",
  47981. image: {
  47982. source: "./media/characters/blue/paws.svg"
  47983. }
  47984. },
  47985. },
  47986. [
  47987. {
  47988. name: "Micro",
  47989. height: math.unit(3, "inches")
  47990. },
  47991. {
  47992. name: "Normal",
  47993. height: math.unit(4, "feet"),
  47994. default: true
  47995. },
  47996. {
  47997. name: "Femenine Form",
  47998. height: math.unit(14, "feet")
  47999. },
  48000. {
  48001. name: "Werebat Form",
  48002. height: math.unit(18, "feet")
  48003. },
  48004. ]
  48005. ))
  48006. characterMakers.push(() => makeCharacter(
  48007. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48008. {
  48009. female: {
  48010. height: math.unit(7 + 4/12, "feet"),
  48011. weight: math.unit(243, "lb"),
  48012. name: "Female",
  48013. image: {
  48014. source: "./media/characters/kaya/female.svg",
  48015. extra: 975/898,
  48016. bottom: 34/1009
  48017. }
  48018. },
  48019. herm: {
  48020. height: math.unit(7 + 4/12, "feet"),
  48021. weight: math.unit(243, "lb"),
  48022. name: "Herm",
  48023. image: {
  48024. source: "./media/characters/kaya/herm.svg",
  48025. extra: 975/898,
  48026. bottom: 34/1009
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(7 + 4/12, "feet"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48040. {
  48041. female: {
  48042. height: math.unit(9 + 4/12, "feet"),
  48043. weight: math.unit(398, "lb"),
  48044. name: "Female",
  48045. image: {
  48046. source: "./media/characters/kassandra/female.svg",
  48047. extra: 908/839,
  48048. bottom: 61/969
  48049. }
  48050. },
  48051. intersex: {
  48052. height: math.unit(9 + 4/12, "feet"),
  48053. weight: math.unit(398, "lb"),
  48054. name: "Intersex",
  48055. image: {
  48056. source: "./media/characters/kassandra/intersex.svg",
  48057. extra: 908/839,
  48058. bottom: 61/969
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Normal",
  48065. height: math.unit(9 + 4/12, "feet"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(3, "meters"),
  48075. name: "Front",
  48076. image: {
  48077. source: "./media/characters/amy/front.svg",
  48078. extra: 1380/1343,
  48079. bottom: 70/1450
  48080. }
  48081. },
  48082. back: {
  48083. height: math.unit(3, "meters"),
  48084. name: "Back",
  48085. image: {
  48086. source: "./media/characters/amy/back.svg",
  48087. extra: 1380/1347,
  48088. bottom: 66/1446
  48089. }
  48090. },
  48091. },
  48092. [
  48093. {
  48094. name: "Normal",
  48095. height: math.unit(3, "meters"),
  48096. default: true
  48097. },
  48098. ]
  48099. ))
  48100. characterMakers.push(() => makeCharacter(
  48101. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48102. {
  48103. side: {
  48104. height: math.unit(47, "cm"),
  48105. weight: math.unit(10.8, "kg"),
  48106. name: "Side",
  48107. image: {
  48108. source: "./media/characters/alphaschakal/side.svg",
  48109. extra: 1058/568,
  48110. bottom: 62/1120
  48111. }
  48112. },
  48113. back: {
  48114. height: math.unit(78, "cm"),
  48115. weight: math.unit(10.8, "kg"),
  48116. name: "Back",
  48117. image: {
  48118. source: "./media/characters/alphaschakal/back.svg",
  48119. extra: 1102/942,
  48120. bottom: 185/1287
  48121. }
  48122. },
  48123. head: {
  48124. height: math.unit(28, "cm"),
  48125. name: "Head",
  48126. image: {
  48127. source: "./media/characters/alphaschakal/head.svg",
  48128. extra: 696/508,
  48129. bottom: 0/696
  48130. }
  48131. },
  48132. paw: {
  48133. height: math.unit(16, "cm"),
  48134. name: "Paw",
  48135. image: {
  48136. source: "./media/characters/alphaschakal/paw.svg"
  48137. }
  48138. },
  48139. },
  48140. [
  48141. {
  48142. name: "Normal",
  48143. height: math.unit(47, "cm"),
  48144. default: true
  48145. },
  48146. {
  48147. name: "Macro",
  48148. height: math.unit(340, "cm")
  48149. },
  48150. ]
  48151. ))
  48152. characterMakers.push(() => makeCharacter(
  48153. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48154. {
  48155. front: {
  48156. height: math.unit(36, "earths"),
  48157. name: "Front",
  48158. image: {
  48159. source: "./media/characters/ecobyss/front.svg",
  48160. extra: 1282/1215,
  48161. bottom: 11/1293
  48162. }
  48163. },
  48164. back: {
  48165. height: math.unit(36, "earths"),
  48166. name: "Back",
  48167. image: {
  48168. source: "./media/characters/ecobyss/back.svg",
  48169. extra: 1291/1222,
  48170. bottom: 8/1299
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(36, "earths"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48184. {
  48185. front: {
  48186. height: math.unit(12, "feet"),
  48187. name: "Front",
  48188. image: {
  48189. source: "./media/characters/vasuk/front.svg",
  48190. extra: 1326/1207,
  48191. bottom: 64/1390
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(12, "feet"),
  48199. default: true
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48205. {
  48206. side: {
  48207. height: math.unit(100, "feet"),
  48208. name: "Side",
  48209. image: {
  48210. source: "./media/characters/linneaus/side.svg",
  48211. extra: 987/807,
  48212. bottom: 47/1034
  48213. }
  48214. },
  48215. },
  48216. [
  48217. {
  48218. name: "Macro",
  48219. height: math.unit(100, "feet"),
  48220. default: true
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48226. {
  48227. front: {
  48228. height: math.unit(8, "feet"),
  48229. weight: math.unit(1200, "lb"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/nyterious-daligdig/front.svg",
  48233. extra: 1284/1094,
  48234. bottom: 84/1368
  48235. }
  48236. },
  48237. back: {
  48238. height: math.unit(8, "feet"),
  48239. weight: math.unit(1200, "lb"),
  48240. name: "Back",
  48241. image: {
  48242. source: "./media/characters/nyterious-daligdig/back.svg",
  48243. extra: 1301/1121,
  48244. bottom: 129/1430
  48245. }
  48246. },
  48247. mouth: {
  48248. height: math.unit(1.464, "feet"),
  48249. name: "Mouth",
  48250. image: {
  48251. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Small",
  48258. height: math.unit(8, "feet"),
  48259. default: true
  48260. },
  48261. {
  48262. name: "Normal",
  48263. height: math.unit(15, "feet")
  48264. },
  48265. {
  48266. name: "Macro",
  48267. height: math.unit(90, "feet")
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48273. {
  48274. front: {
  48275. height: math.unit(7 + 4/12, "feet"),
  48276. weight: math.unit(252, "lb"),
  48277. name: "Front",
  48278. image: {
  48279. source: "./media/characters/bandel/front.svg",
  48280. extra: 1946/1775,
  48281. bottom: 26/1972
  48282. }
  48283. },
  48284. back: {
  48285. height: math.unit(7 + 4/12, "feet"),
  48286. weight: math.unit(252, "lb"),
  48287. name: "Back",
  48288. image: {
  48289. source: "./media/characters/bandel/back.svg",
  48290. extra: 1940/1770,
  48291. bottom: 25/1965
  48292. }
  48293. },
  48294. maw: {
  48295. height: math.unit(2.15, "feet"),
  48296. name: "Maw",
  48297. image: {
  48298. source: "./media/characters/bandel/maw.svg"
  48299. }
  48300. },
  48301. stomach: {
  48302. height: math.unit(1.95, "feet"),
  48303. name: "Stomach",
  48304. image: {
  48305. source: "./media/characters/bandel/stomach.svg"
  48306. }
  48307. },
  48308. },
  48309. [
  48310. {
  48311. name: "Normal",
  48312. height: math.unit(7 + 4/12, "feet"),
  48313. default: true
  48314. },
  48315. ]
  48316. ))
  48317. characterMakers.push(() => makeCharacter(
  48318. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48319. {
  48320. front: {
  48321. height: math.unit(10 + 5/12, "feet"),
  48322. weight: math.unit(773.5, "kg"),
  48323. name: "Front",
  48324. image: {
  48325. source: "./media/characters/zed/front.svg",
  48326. extra: 987/941,
  48327. bottom: 52/1039
  48328. }
  48329. },
  48330. },
  48331. [
  48332. {
  48333. name: "Short",
  48334. height: math.unit(5 + 4/12, "feet")
  48335. },
  48336. {
  48337. name: "Average",
  48338. height: math.unit(10 + 5/12, "feet"),
  48339. default: true
  48340. },
  48341. {
  48342. name: "Mini-Macro",
  48343. height: math.unit(24 + 9/12, "feet")
  48344. },
  48345. {
  48346. name: "Macro",
  48347. height: math.unit(249, "feet")
  48348. },
  48349. {
  48350. name: "Mega-Macro",
  48351. height: math.unit(12490, "feet")
  48352. },
  48353. {
  48354. name: "Giga-Macro",
  48355. height: math.unit(24.9, "miles")
  48356. },
  48357. {
  48358. name: "Tera-Macro",
  48359. height: math.unit(24900, "miles")
  48360. },
  48361. {
  48362. name: "Cosmic Scale",
  48363. height: math.unit(38.9, "lightyears")
  48364. },
  48365. {
  48366. name: "Universal Scale",
  48367. height: math.unit(138e12, "lightyears")
  48368. },
  48369. ]
  48370. ))
  48371. characterMakers.push(() => makeCharacter(
  48372. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48373. {
  48374. front: {
  48375. height: math.unit(1561, "inches"),
  48376. name: "Front",
  48377. image: {
  48378. source: "./media/characters/ivan/front.svg",
  48379. extra: 1126/1071,
  48380. bottom: 26/1152
  48381. }
  48382. },
  48383. back: {
  48384. height: math.unit(1561, "inches"),
  48385. name: "Back",
  48386. image: {
  48387. source: "./media/characters/ivan/back.svg",
  48388. extra: 1134/1079,
  48389. bottom: 30/1164
  48390. }
  48391. },
  48392. },
  48393. [
  48394. {
  48395. name: "Normal",
  48396. height: math.unit(1561, "inches"),
  48397. default: true
  48398. },
  48399. ]
  48400. ))
  48401. characterMakers.push(() => makeCharacter(
  48402. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48403. {
  48404. front: {
  48405. height: math.unit(5 + 7/12, "feet"),
  48406. weight: math.unit(150, "lb"),
  48407. name: "Front",
  48408. image: {
  48409. source: "./media/characters/robin-arctic-hare/front.svg",
  48410. extra: 1148/974,
  48411. bottom: 20/1168
  48412. }
  48413. },
  48414. },
  48415. [
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(5 + 7/12, "feet"),
  48419. default: true
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48425. {
  48426. side: {
  48427. height: math.unit(5, "feet"),
  48428. name: "Side",
  48429. image: {
  48430. source: "./media/characters/birch/side.svg",
  48431. extra: 985/796,
  48432. bottom: 111/1096
  48433. }
  48434. },
  48435. },
  48436. [
  48437. {
  48438. name: "Normal",
  48439. height: math.unit(5, "feet"),
  48440. default: true
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48446. {
  48447. front: {
  48448. height: math.unit(4, "feet"),
  48449. name: "Front",
  48450. image: {
  48451. source: "./media/characters/rasp/front.svg",
  48452. extra: 561/478,
  48453. bottom: 74/635
  48454. }
  48455. },
  48456. },
  48457. [
  48458. {
  48459. name: "Normal",
  48460. height: math.unit(4, "feet"),
  48461. default: true
  48462. },
  48463. ]
  48464. ))
  48465. characterMakers.push(() => makeCharacter(
  48466. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48467. {
  48468. front: {
  48469. height: math.unit(4 + 6/12, "feet"),
  48470. name: "Front",
  48471. image: {
  48472. source: "./media/characters/agatha/front.svg",
  48473. extra: 947/933,
  48474. bottom: 42/989
  48475. }
  48476. },
  48477. back: {
  48478. height: math.unit(4 + 6/12, "feet"),
  48479. name: "Back",
  48480. image: {
  48481. source: "./media/characters/agatha/back.svg",
  48482. extra: 935/922,
  48483. bottom: 48/983
  48484. }
  48485. },
  48486. },
  48487. [
  48488. {
  48489. name: "Normal",
  48490. height: math.unit(4 + 6 /12, "feet"),
  48491. default: true
  48492. },
  48493. {
  48494. name: "Max Size",
  48495. height: math.unit(500, "feet")
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48501. {
  48502. side: {
  48503. height: math.unit(30, "feet"),
  48504. name: "Side",
  48505. image: {
  48506. source: "./media/characters/roggy/side.svg",
  48507. extra: 909/643,
  48508. bottom: 63/972
  48509. }
  48510. },
  48511. lounging: {
  48512. height: math.unit(20, "feet"),
  48513. name: "Lounging",
  48514. image: {
  48515. source: "./media/characters/roggy/lounging.svg",
  48516. extra: 643/479,
  48517. bottom: 145/788
  48518. }
  48519. },
  48520. handpaw: {
  48521. height: math.unit(13.1, "feet"),
  48522. name: "Handpaw",
  48523. image: {
  48524. source: "./media/characters/roggy/handpaw.svg"
  48525. }
  48526. },
  48527. footpaw: {
  48528. height: math.unit(15.8, "feet"),
  48529. name: "Footpaw",
  48530. image: {
  48531. source: "./media/characters/roggy/footpaw.svg"
  48532. }
  48533. },
  48534. },
  48535. [
  48536. {
  48537. name: "Menacing",
  48538. height: math.unit(30, "feet"),
  48539. default: true
  48540. },
  48541. ]
  48542. ))
  48543. characterMakers.push(() => makeCharacter(
  48544. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48545. {
  48546. front: {
  48547. height: math.unit(5 + 7/12, "feet"),
  48548. weight: math.unit(135, "lb"),
  48549. name: "Front",
  48550. image: {
  48551. source: "./media/characters/naomi/front.svg",
  48552. extra: 1209/1154,
  48553. bottom: 129/1338
  48554. }
  48555. },
  48556. back: {
  48557. height: math.unit(5 + 7/12, "feet"),
  48558. weight: math.unit(135, "lb"),
  48559. name: "Back",
  48560. image: {
  48561. source: "./media/characters/naomi/back.svg",
  48562. extra: 1252/1190,
  48563. bottom: 23/1275
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Normal",
  48570. height: math.unit(5 + 7 /12, "feet"),
  48571. default: true
  48572. },
  48573. ]
  48574. ))
  48575. characterMakers.push(() => makeCharacter(
  48576. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48577. {
  48578. side: {
  48579. height: math.unit(35, "meters"),
  48580. name: "Side",
  48581. image: {
  48582. source: "./media/characters/kimpi/side.svg",
  48583. extra: 419/382,
  48584. bottom: 63/482
  48585. }
  48586. },
  48587. hand: {
  48588. height: math.unit(8.96, "meters"),
  48589. name: "Hand",
  48590. image: {
  48591. source: "./media/characters/kimpi/hand.svg"
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(35, "meters"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(4 + 4/12, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/pepper-purrloin/front.svg",
  48611. extra: 1141/1024,
  48612. bottom: 21/1162
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(4 + 4/12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(6 + 2/12, "feet"),
  48629. name: "Front",
  48630. image: {
  48631. source: "./media/characters/raphael/front.svg",
  48632. extra: 1101/962,
  48633. bottom: 59/1160
  48634. }
  48635. },
  48636. },
  48637. [
  48638. {
  48639. name: "Normal",
  48640. height: math.unit(6 + 2/12, "feet"),
  48641. default: true
  48642. },
  48643. ]
  48644. ))
  48645. characterMakers.push(() => makeCharacter(
  48646. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48647. {
  48648. front: {
  48649. height: math.unit(6, "feet"),
  48650. weight: math.unit(150, "lb"),
  48651. name: "Front",
  48652. image: {
  48653. source: "./media/characters/victor-williams/front.svg",
  48654. extra: 1894/1825,
  48655. bottom: 67/1961
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Normal",
  48662. height: math.unit(6, "feet"),
  48663. default: true
  48664. },
  48665. ]
  48666. ))
  48667. characterMakers.push(() => makeCharacter(
  48668. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48669. {
  48670. front: {
  48671. height: math.unit(5 + 8/12, "feet"),
  48672. weight: math.unit(150, "lb"),
  48673. name: "Front",
  48674. image: {
  48675. source: "./media/characters/rachel/front.svg",
  48676. extra: 1902/1787,
  48677. bottom: 46/1948
  48678. }
  48679. },
  48680. },
  48681. [
  48682. {
  48683. name: "Base Height",
  48684. height: math.unit(5 + 8/12, "feet"),
  48685. default: true
  48686. },
  48687. {
  48688. name: "Macro",
  48689. height: math.unit(200, "feet")
  48690. },
  48691. {
  48692. name: "Mega Macro",
  48693. height: math.unit(1, "mile")
  48694. },
  48695. {
  48696. name: "Giga Macro",
  48697. height: math.unit(1500, "miles")
  48698. },
  48699. {
  48700. name: "Tera Macro",
  48701. height: math.unit(8000, "miles")
  48702. },
  48703. {
  48704. name: "Tera Macro+",
  48705. height: math.unit(2e5, "miles")
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48711. {
  48712. front: {
  48713. height: math.unit(6.5, "feet"),
  48714. name: "Front",
  48715. image: {
  48716. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48717. extra: 860/819,
  48718. bottom: 307/1167
  48719. }
  48720. },
  48721. back: {
  48722. height: math.unit(6.5, "feet"),
  48723. name: "Back",
  48724. image: {
  48725. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48726. extra: 880/837,
  48727. bottom: 395/1275
  48728. }
  48729. },
  48730. sleeping: {
  48731. height: math.unit(2.79, "feet"),
  48732. name: "Sleeping",
  48733. image: {
  48734. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48735. extra: 465/383,
  48736. bottom: 263/728
  48737. }
  48738. },
  48739. maw: {
  48740. height: math.unit(2.52, "feet"),
  48741. name: "Maw",
  48742. image: {
  48743. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(6.5, "feet"),
  48751. default: true
  48752. },
  48753. ]
  48754. ))
  48755. characterMakers.push(() => makeCharacter(
  48756. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48757. {
  48758. front: {
  48759. height: math.unit(5, "feet"),
  48760. name: "Front",
  48761. image: {
  48762. source: "./media/characters/nova-nerium/front.svg",
  48763. extra: 1548/1392,
  48764. bottom: 374/1922
  48765. }
  48766. },
  48767. back: {
  48768. height: math.unit(5, "feet"),
  48769. name: "Back",
  48770. image: {
  48771. source: "./media/characters/nova-nerium/back.svg",
  48772. extra: 1658/1468,
  48773. bottom: 257/1915
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Normal",
  48780. height: math.unit(5, "feet"),
  48781. default: true
  48782. },
  48783. ]
  48784. ))
  48785. characterMakers.push(() => makeCharacter(
  48786. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48787. {
  48788. front: {
  48789. height: math.unit(5 + 4/12, "feet"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/ashe-pyriph/front.svg",
  48793. extra: 1935/1747,
  48794. bottom: 60/1995
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(5 + 4/12, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(8.7, "feet"),
  48811. name: "Front",
  48812. image: {
  48813. source: "./media/characters/flicker-wisp/front.svg",
  48814. extra: 1835/1613,
  48815. bottom: 449/2284
  48816. }
  48817. },
  48818. side: {
  48819. height: math.unit(8.7, "feet"),
  48820. name: "Side",
  48821. image: {
  48822. source: "./media/characters/flicker-wisp/side.svg",
  48823. extra: 1841/1642,
  48824. bottom: 336/2177
  48825. },
  48826. default: true
  48827. },
  48828. maw: {
  48829. height: math.unit(3.35, "feet"),
  48830. name: "Maw",
  48831. image: {
  48832. source: "./media/characters/flicker-wisp/maw.svg",
  48833. extra: 2338/1506,
  48834. bottom: 0/2338
  48835. }
  48836. },
  48837. ovipositor: {
  48838. height: math.unit(4.95, "feet"),
  48839. name: "Ovipositor",
  48840. image: {
  48841. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48842. }
  48843. },
  48844. egg: {
  48845. height: math.unit(0.385, "feet"),
  48846. weight: math.unit(2, "lb"),
  48847. name: "Egg",
  48848. image: {
  48849. source: "./media/characters/flicker-wisp/egg.svg"
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(8.7, "feet"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48863. {
  48864. side: {
  48865. height: math.unit(11, "feet"),
  48866. name: "Side",
  48867. image: {
  48868. source: "./media/characters/faefnul/side.svg",
  48869. extra: 1100/1007,
  48870. bottom: 0/1100
  48871. }
  48872. },
  48873. },
  48874. [
  48875. {
  48876. name: "Normal",
  48877. height: math.unit(11, "feet"),
  48878. default: true
  48879. },
  48880. ]
  48881. ))
  48882. characterMakers.push(() => makeCharacter(
  48883. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48884. {
  48885. front: {
  48886. height: math.unit(6 + 2/12, "feet"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/shady/front.svg",
  48890. extra: 502/461,
  48891. bottom: 9/511
  48892. }
  48893. },
  48894. kneeling: {
  48895. height: math.unit(4.6, "feet"),
  48896. name: "Kneeling",
  48897. image: {
  48898. source: "./media/characters/shady/kneeling.svg",
  48899. extra: 1328/1219,
  48900. bottom: 117/1445
  48901. }
  48902. },
  48903. maw: {
  48904. height: math.unit(2, "feet"),
  48905. name: "Maw",
  48906. image: {
  48907. source: "./media/characters/shady/maw.svg"
  48908. }
  48909. },
  48910. },
  48911. [
  48912. {
  48913. name: "Nano",
  48914. height: math.unit(1, "mm")
  48915. },
  48916. {
  48917. name: "Micro",
  48918. height: math.unit(12, "mm")
  48919. },
  48920. {
  48921. name: "Tiny",
  48922. height: math.unit(3, "inches")
  48923. },
  48924. {
  48925. name: "Normal",
  48926. height: math.unit(6 + 2/12, "feet"),
  48927. default: true
  48928. },
  48929. {
  48930. name: "Big",
  48931. height: math.unit(15, "feet")
  48932. },
  48933. {
  48934. name: "Macro",
  48935. height: math.unit(150, "feet")
  48936. },
  48937. {
  48938. name: "Titanic",
  48939. height: math.unit(500, "feet")
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(12, "feet"),
  48948. name: "Front",
  48949. image: {
  48950. source: "./media/characters/fenrir/front.svg",
  48951. extra: 968/875,
  48952. bottom: 22/990
  48953. }
  48954. },
  48955. },
  48956. [
  48957. {
  48958. name: "Big",
  48959. height: math.unit(12, "feet"),
  48960. default: true
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48966. {
  48967. front: {
  48968. height: math.unit(5 + 4/12, "feet"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/makar/front.svg",
  48972. extra: 1181/1112,
  48973. bottom: 78/1259
  48974. }
  48975. },
  48976. },
  48977. [
  48978. {
  48979. name: "Normal",
  48980. height: math.unit(5 + 4/12, "feet"),
  48981. default: true
  48982. },
  48983. ]
  48984. ))
  48985. characterMakers.push(() => makeCharacter(
  48986. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48987. {
  48988. front: {
  48989. height: math.unit(5 + 7/12, "feet"),
  48990. name: "Front",
  48991. image: {
  48992. source: "./media/characters/callow/front.svg",
  48993. extra: 1482/1304,
  48994. bottom: 23/1505
  48995. }
  48996. },
  48997. back: {
  48998. height: math.unit(5 + 7/12, "feet"),
  48999. name: "Back",
  49000. image: {
  49001. source: "./media/characters/callow/back.svg",
  49002. extra: 1484/1296,
  49003. bottom: 25/1509
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Micro",
  49010. height: math.unit(3, "inches"),
  49011. default: true
  49012. },
  49013. {
  49014. name: "Normal",
  49015. height: math.unit(5 + 7/12, "feet")
  49016. },
  49017. ]
  49018. ))
  49019. characterMakers.push(() => makeCharacter(
  49020. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49021. {
  49022. front: {
  49023. height: math.unit(6 + 2/12, "feet"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/natel/front.svg",
  49027. extra: 1833/1692,
  49028. bottom: 166/1999
  49029. }
  49030. },
  49031. },
  49032. [
  49033. {
  49034. name: "Normal",
  49035. height: math.unit(6 + 2/12, "feet"),
  49036. default: true
  49037. },
  49038. ]
  49039. ))
  49040. characterMakers.push(() => makeCharacter(
  49041. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49042. {
  49043. front: {
  49044. height: math.unit(1.75, "meters"),
  49045. name: "Front",
  49046. image: {
  49047. source: "./media/characters/misu/front.svg",
  49048. extra: 1690/1558,
  49049. bottom: 234/1924
  49050. }
  49051. },
  49052. back: {
  49053. height: math.unit(1.75, "meters"),
  49054. name: "Back",
  49055. image: {
  49056. source: "./media/characters/misu/back.svg",
  49057. extra: 1762/1618,
  49058. bottom: 146/1908
  49059. }
  49060. },
  49061. frontNude: {
  49062. height: math.unit(1.75, "meters"),
  49063. name: "Front (Nude)",
  49064. image: {
  49065. source: "./media/characters/misu/front-nude.svg",
  49066. extra: 1690/1558,
  49067. bottom: 234/1924
  49068. }
  49069. },
  49070. backNude: {
  49071. height: math.unit(1.75, "meters"),
  49072. name: "Back (Nude)",
  49073. image: {
  49074. source: "./media/characters/misu/back-nude.svg",
  49075. extra: 1762/1618,
  49076. bottom: 146/1908
  49077. }
  49078. },
  49079. frontErect: {
  49080. height: math.unit(1.75, "meters"),
  49081. name: "Front (Erect)",
  49082. image: {
  49083. source: "./media/characters/misu/front-erect.svg",
  49084. extra: 1690/1558,
  49085. bottom: 234/1924
  49086. }
  49087. },
  49088. maw: {
  49089. height: math.unit(0.47, "meters"),
  49090. name: "Maw",
  49091. image: {
  49092. source: "./media/characters/misu/maw.svg"
  49093. }
  49094. },
  49095. head: {
  49096. height: math.unit(0.35, "meters"),
  49097. name: "Head",
  49098. image: {
  49099. source: "./media/characters/misu/head.svg"
  49100. }
  49101. },
  49102. rear: {
  49103. height: math.unit(0.47, "meters"),
  49104. name: "Rear",
  49105. image: {
  49106. source: "./media/characters/misu/rear.svg"
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(1.75, "meters")
  49114. },
  49115. {
  49116. name: "Not good for the people",
  49117. height: math.unit(42, "meters")
  49118. },
  49119. {
  49120. name: "Not good for the neighborhood",
  49121. height: math.unit(135, "meters")
  49122. },
  49123. {
  49124. name: "Bit bigger problem",
  49125. height: math.unit(380, "meters"),
  49126. default: true
  49127. },
  49128. {
  49129. name: "Not good for the city",
  49130. height: math.unit(1.5, "km")
  49131. },
  49132. {
  49133. name: "Not good for the county",
  49134. height: math.unit(5.5, "km")
  49135. },
  49136. {
  49137. name: "Not good for the state",
  49138. height: math.unit(25, "km")
  49139. },
  49140. {
  49141. name: "Not good for the country",
  49142. height: math.unit(125, "km")
  49143. },
  49144. {
  49145. name: "Not good for the continent",
  49146. height: math.unit(2100, "km")
  49147. },
  49148. {
  49149. name: "Not good for the planet",
  49150. height: math.unit(35000, "km")
  49151. },
  49152. {
  49153. name: "Just no",
  49154. height: math.unit(8.5e18, "km")
  49155. },
  49156. ]
  49157. ))
  49158. characterMakers.push(() => makeCharacter(
  49159. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49160. {
  49161. front: {
  49162. height: math.unit(6.5, "feet"),
  49163. name: "Front",
  49164. image: {
  49165. source: "./media/characters/poppy/front.svg",
  49166. extra: 1878/1812,
  49167. bottom: 43/1921
  49168. }
  49169. },
  49170. feet: {
  49171. height: math.unit(1.06, "feet"),
  49172. name: "Feet",
  49173. image: {
  49174. source: "./media/characters/poppy/feet.svg",
  49175. extra: 1083/1083,
  49176. bottom: 87/1170
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Human",
  49183. height: math.unit(6.5, "feet")
  49184. },
  49185. {
  49186. name: "Default",
  49187. height: math.unit(300, "feet"),
  49188. default: true
  49189. },
  49190. {
  49191. name: "Huge",
  49192. height: math.unit(850, "feet")
  49193. },
  49194. {
  49195. name: "Mega",
  49196. height: math.unit(8000, "feet")
  49197. },
  49198. {
  49199. name: "Giga",
  49200. height: math.unit(300, "miles")
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49206. {
  49207. bipedal: {
  49208. height: math.unit(7, "feet"),
  49209. name: "Bipedal",
  49210. image: {
  49211. source: "./media/characters/zener/bipedal.svg",
  49212. extra: 874/805,
  49213. bottom: 109/983
  49214. }
  49215. },
  49216. quadrupedal: {
  49217. height: math.unit(4.64, "feet"),
  49218. name: "Quadrupedal",
  49219. image: {
  49220. source: "./media/characters/zener/quadrupedal.svg",
  49221. extra: 638/507,
  49222. bottom: 190/828
  49223. }
  49224. },
  49225. cock: {
  49226. height: math.unit(18, "inches"),
  49227. name: "Cock",
  49228. image: {
  49229. source: "./media/characters/zener/cock.svg"
  49230. }
  49231. },
  49232. },
  49233. [
  49234. {
  49235. name: "Normal",
  49236. height: math.unit(7, "feet"),
  49237. default: true
  49238. },
  49239. ]
  49240. ))
  49241. characterMakers.push(() => makeCharacter(
  49242. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49243. {
  49244. nude: {
  49245. height: math.unit(5 + 6/12, "feet"),
  49246. name: "Nude",
  49247. image: {
  49248. source: "./media/characters/charlie-dog/nude.svg",
  49249. extra: 768/734,
  49250. bottom: 26/794
  49251. }
  49252. },
  49253. dressed: {
  49254. height: math.unit(5 + 6/12, "feet"),
  49255. name: "Dressed",
  49256. image: {
  49257. source: "./media/characters/charlie-dog/dressed.svg",
  49258. extra: 768/734,
  49259. bottom: 26/794
  49260. }
  49261. },
  49262. },
  49263. [
  49264. {
  49265. name: "Normal",
  49266. height: math.unit(5 + 6/12, "feet"),
  49267. default: true
  49268. },
  49269. ]
  49270. ))
  49271. characterMakers.push(() => makeCharacter(
  49272. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49273. {
  49274. front: {
  49275. height: math.unit(6 + 4/12, "feet"),
  49276. name: "Front",
  49277. image: {
  49278. source: "./media/characters/ir'istrasz/front.svg",
  49279. extra: 1014/977,
  49280. bottom: 65/1079
  49281. }
  49282. },
  49283. back: {
  49284. height: math.unit(6 + 4/12, "feet"),
  49285. name: "Back",
  49286. image: {
  49287. source: "./media/characters/ir'istrasz/back.svg",
  49288. extra: 1024/992,
  49289. bottom: 34/1058
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(6 + 4/12, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49303. {
  49304. front: {
  49305. height: math.unit(5 + 8/12, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/dee-ditto/front.svg",
  49309. extra: 1874/1785,
  49310. bottom: 68/1942
  49311. }
  49312. },
  49313. back: {
  49314. height: math.unit(5 + 8/12, "feet"),
  49315. name: "Back",
  49316. image: {
  49317. source: "./media/characters/dee-ditto/back.svg",
  49318. extra: 1870/1783,
  49319. bottom: 77/1947
  49320. }
  49321. },
  49322. },
  49323. [
  49324. {
  49325. name: "Normal",
  49326. height: math.unit(5 + 8/12, "feet"),
  49327. default: true
  49328. },
  49329. ]
  49330. ))
  49331. characterMakers.push(() => makeCharacter(
  49332. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49333. {
  49334. front: {
  49335. height: math.unit(7 + 6/12, "feet"),
  49336. name: "Front",
  49337. image: {
  49338. source: "./media/characters/fey/front.svg",
  49339. extra: 995/979,
  49340. bottom: 30/1025
  49341. }
  49342. },
  49343. back: {
  49344. height: math.unit(7 + 6/12, "feet"),
  49345. name: "Back",
  49346. image: {
  49347. source: "./media/characters/fey/back.svg",
  49348. extra: 1079/1008,
  49349. bottom: 5/1084
  49350. }
  49351. },
  49352. dressed: {
  49353. height: math.unit(7 + 6/12, "feet"),
  49354. name: "Dressed",
  49355. image: {
  49356. source: "./media/characters/fey/dressed.svg",
  49357. extra: 995/979,
  49358. bottom: 30/1025
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(7 + 6/12, "feet"),
  49366. default: true
  49367. },
  49368. ]
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49372. {
  49373. standing: {
  49374. height: math.unit(17, "feet"),
  49375. name: "Standing",
  49376. image: {
  49377. source: "./media/characters/aster/standing.svg",
  49378. extra: 1798/1598,
  49379. bottom: 117/1915
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(17, "feet"),
  49387. default: true
  49388. },
  49389. {
  49390. name: "Homewrecker",
  49391. height: math.unit(95, "feet")
  49392. },
  49393. {
  49394. name: "Planet Devourer",
  49395. height: math.unit(1008000, "miles")
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49401. {
  49402. front: {
  49403. height: math.unit(6 + 5/12, "feet"),
  49404. weight: math.unit(265, "lb"),
  49405. name: "Front",
  49406. image: {
  49407. source: "./media/characters/devon-childs/front.svg",
  49408. extra: 1795/1721,
  49409. bottom: 41/1836
  49410. }
  49411. },
  49412. side: {
  49413. height: math.unit(6 + 5/12, "feet"),
  49414. weight: math.unit(265, "lb"),
  49415. name: "Side",
  49416. image: {
  49417. source: "./media/characters/devon-childs/side.svg",
  49418. extra: 1812/1738,
  49419. bottom: 30/1842
  49420. }
  49421. },
  49422. back: {
  49423. height: math.unit(6 + 5/12, "feet"),
  49424. weight: math.unit(265, "lb"),
  49425. name: "Back",
  49426. image: {
  49427. source: "./media/characters/devon-childs/back.svg",
  49428. extra: 1808/1735,
  49429. bottom: 23/1831
  49430. }
  49431. },
  49432. hand: {
  49433. height: math.unit(1.464, "feet"),
  49434. name: "Hand",
  49435. image: {
  49436. source: "./media/characters/devon-childs/hand.svg"
  49437. }
  49438. },
  49439. foot: {
  49440. height: math.unit(1.6, "feet"),
  49441. name: "Foot",
  49442. image: {
  49443. source: "./media/characters/devon-childs/foot.svg"
  49444. }
  49445. },
  49446. },
  49447. [
  49448. {
  49449. name: "Micro",
  49450. height: math.unit(7, "cm")
  49451. },
  49452. {
  49453. name: "Normal",
  49454. height: math.unit(6 + 5/12, "feet"),
  49455. default: true
  49456. },
  49457. {
  49458. name: "Macro",
  49459. height: math.unit(154, "feet")
  49460. },
  49461. ]
  49462. ))
  49463. characterMakers.push(() => makeCharacter(
  49464. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49465. {
  49466. front: {
  49467. height: math.unit(6, "feet"),
  49468. weight: math.unit(180, "lb"),
  49469. name: "Front",
  49470. image: {
  49471. source: "./media/characters/lydemox-vir/front.svg",
  49472. extra: 1632/1435,
  49473. bottom: 58/1690
  49474. }
  49475. },
  49476. frontSFW: {
  49477. height: math.unit(6, "feet"),
  49478. weight: math.unit(180, "lb"),
  49479. name: "Front (SFW)",
  49480. image: {
  49481. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49482. extra: 1632/1435,
  49483. bottom: 58/1690
  49484. }
  49485. },
  49486. back: {
  49487. height: math.unit(6, "feet"),
  49488. weight: math.unit(180, "lb"),
  49489. name: "Back",
  49490. image: {
  49491. source: "./media/characters/lydemox-vir/back.svg",
  49492. extra: 1593/1408,
  49493. bottom: 31/1624
  49494. }
  49495. },
  49496. paw: {
  49497. height: math.unit(1.85, "feet"),
  49498. name: "Paw",
  49499. image: {
  49500. source: "./media/characters/lydemox-vir/paw.svg"
  49501. }
  49502. },
  49503. dick: {
  49504. height: math.unit(1.8, "feet"),
  49505. name: "Dick",
  49506. image: {
  49507. source: "./media/characters/lydemox-vir/dick.svg"
  49508. }
  49509. },
  49510. },
  49511. [
  49512. {
  49513. name: "Macro",
  49514. height: math.unit(100, "feet"),
  49515. default: true
  49516. },
  49517. {
  49518. name: "Teramacro",
  49519. height: math.unit(1, "earth")
  49520. },
  49521. {
  49522. name: "Planetary",
  49523. height: math.unit(20, "earths")
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(15 + 8/12, "feet"),
  49532. weight: math.unit(1237, "kg"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/mia/front.svg",
  49536. extra: 1573/1446,
  49537. bottom: 58/1631
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Small",
  49544. height: math.unit(9 + 5/12, "feet")
  49545. },
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(15 + 8/12, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49555. {
  49556. front: {
  49557. height: math.unit(10 + 6/12, "feet"),
  49558. weight: math.unit(1.3, "tons"),
  49559. name: "Front",
  49560. image: {
  49561. source: "./media/characters/mr-graves/front.svg",
  49562. extra: 1779/1695,
  49563. bottom: 198/1977
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Normal",
  49570. height: math.unit(10 + 6 /12, "feet"),
  49571. default: true
  49572. },
  49573. ]
  49574. ))
  49575. characterMakers.push(() => makeCharacter(
  49576. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49577. {
  49578. dressedFront: {
  49579. height: math.unit(5 + 8/12, "feet"),
  49580. weight: math.unit(125, "lb"),
  49581. name: "Dressed (Front)",
  49582. image: {
  49583. source: "./media/characters/jess/dressed-front.svg",
  49584. extra: 1176/1152,
  49585. bottom: 42/1218
  49586. }
  49587. },
  49588. dressedSide: {
  49589. height: math.unit(5 + 8/12, "feet"),
  49590. weight: math.unit(125, "lb"),
  49591. name: "Dressed (Side)",
  49592. image: {
  49593. source: "./media/characters/jess/dressed-side.svg",
  49594. extra: 1204/1190,
  49595. bottom: 6/1210
  49596. }
  49597. },
  49598. nudeFront: {
  49599. height: math.unit(5 + 8/12, "feet"),
  49600. weight: math.unit(125, "lb"),
  49601. name: "Nude (Front)",
  49602. image: {
  49603. source: "./media/characters/jess/nude-front.svg",
  49604. extra: 1176/1152,
  49605. bottom: 42/1218
  49606. }
  49607. },
  49608. nudeSide: {
  49609. height: math.unit(5 + 8/12, "feet"),
  49610. weight: math.unit(125, "lb"),
  49611. name: "Nude (Side)",
  49612. image: {
  49613. source: "./media/characters/jess/nude-side.svg",
  49614. extra: 1204/1190,
  49615. bottom: 6/1210
  49616. }
  49617. },
  49618. organsFront: {
  49619. height: math.unit(2.83799342105, "feet"),
  49620. name: "Organs (Front)",
  49621. image: {
  49622. source: "./media/characters/jess/organs-front.svg"
  49623. }
  49624. },
  49625. organsSide: {
  49626. height: math.unit(2.64225290474, "feet"),
  49627. name: "Organs (Side)",
  49628. image: {
  49629. source: "./media/characters/jess/organs-side.svg"
  49630. }
  49631. },
  49632. digestiveTractFront: {
  49633. height: math.unit(2.8106580871, "feet"),
  49634. name: "Digestive Tract (Front)",
  49635. image: {
  49636. source: "./media/characters/jess/digestive-tract-front.svg"
  49637. }
  49638. },
  49639. digestiveTractSide: {
  49640. height: math.unit(2.54365045014, "feet"),
  49641. name: "Digestive Tract (Side)",
  49642. image: {
  49643. source: "./media/characters/jess/digestive-tract-side.svg"
  49644. }
  49645. },
  49646. respiratorySystemFront: {
  49647. height: math.unit(1.11196233456, "feet"),
  49648. name: "Respiratory System (Front)",
  49649. image: {
  49650. source: "./media/characters/jess/respiratory-system-front.svg"
  49651. }
  49652. },
  49653. respiratorySystemSide: {
  49654. height: math.unit(0.89327966297, "feet"),
  49655. name: "Respiratory System (Side)",
  49656. image: {
  49657. source: "./media/characters/jess/respiratory-system-side.svg"
  49658. }
  49659. },
  49660. urinaryTractFront: {
  49661. height: math.unit(1.16126356186, "feet"),
  49662. name: "Urinary Tract (Front)",
  49663. image: {
  49664. source: "./media/characters/jess/urinary-tract-front.svg"
  49665. }
  49666. },
  49667. urinaryTractSide: {
  49668. height: math.unit(1.20910039627, "feet"),
  49669. name: "Urinary Tract (Side)",
  49670. image: {
  49671. source: "./media/characters/jess/urinary-tract-side.svg"
  49672. }
  49673. },
  49674. reproductiveOrgansFront: {
  49675. height: math.unit(0.48422591566, "feet"),
  49676. name: "Reproductive Organs (Front)",
  49677. image: {
  49678. source: "./media/characters/jess/reproductive-organs-front.svg"
  49679. }
  49680. },
  49681. reproductiveOrgansSide: {
  49682. height: math.unit(0.61553314481, "feet"),
  49683. name: "Reproductive Organs (Side)",
  49684. image: {
  49685. source: "./media/characters/jess/reproductive-organs-side.svg"
  49686. }
  49687. },
  49688. breastsFront: {
  49689. height: math.unit(0.47690395121, "feet"),
  49690. name: "Breasts (Front)",
  49691. image: {
  49692. source: "./media/characters/jess/breasts-front.svg"
  49693. }
  49694. },
  49695. breastsSide: {
  49696. height: math.unit(0.30556998307, "feet"),
  49697. name: "Breasts (Side)",
  49698. image: {
  49699. source: "./media/characters/jess/breasts-side.svg"
  49700. }
  49701. },
  49702. heartFront: {
  49703. height: math.unit(0.53011022622, "feet"),
  49704. name: "Heart (Front)",
  49705. image: {
  49706. source: "./media/characters/jess/heart-front.svg"
  49707. }
  49708. },
  49709. heartSide: {
  49710. height: math.unit(0.51790695213, "feet"),
  49711. name: "Heart (Side)",
  49712. image: {
  49713. source: "./media/characters/jess/heart-side.svg"
  49714. }
  49715. },
  49716. earsAndNoseFront: {
  49717. height: math.unit(0.29385483995, "feet"),
  49718. name: "Ears and Nose (Front)",
  49719. image: {
  49720. source: "./media/characters/jess/ears-and-nose-front.svg"
  49721. }
  49722. },
  49723. earsAndNoseSide: {
  49724. height: math.unit(0.18109658741, "feet"),
  49725. name: "Ears and Nose (Side)",
  49726. image: {
  49727. source: "./media/characters/jess/ears-and-nose-side.svg"
  49728. }
  49729. },
  49730. },
  49731. [
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(5 + 8/12, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(6, "feet"),
  49744. weight: math.unit(6.64467e-7, "grams"),
  49745. name: "Front",
  49746. image: {
  49747. source: "./media/characters/wimpering/front.svg",
  49748. extra: 597/587,
  49749. bottom: 34/631
  49750. }
  49751. },
  49752. },
  49753. [
  49754. {
  49755. name: "Micro",
  49756. height: math.unit(0.4, "mm"),
  49757. default: true
  49758. },
  49759. ]
  49760. ))
  49761. characterMakers.push(() => makeCharacter(
  49762. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49763. {
  49764. front: {
  49765. height: math.unit(5 + 2/12, "feet"),
  49766. weight: math.unit(110, "lb"),
  49767. name: "Front",
  49768. image: {
  49769. source: "./media/characters/keltre/front.svg",
  49770. extra: 1099/1057,
  49771. bottom: 22/1121
  49772. }
  49773. },
  49774. back: {
  49775. height: math.unit(5 + 2/12, "feet"),
  49776. weight: math.unit(110, "lb"),
  49777. name: "Back",
  49778. image: {
  49779. source: "./media/characters/keltre/back.svg",
  49780. extra: 1095/1053,
  49781. bottom: 17/1112
  49782. }
  49783. },
  49784. dressed: {
  49785. height: math.unit(5 + 2/12, "feet"),
  49786. weight: math.unit(110, "lb"),
  49787. name: "Dressed",
  49788. image: {
  49789. source: "./media/characters/keltre/dressed.svg",
  49790. extra: 1099/1057,
  49791. bottom: 22/1121
  49792. }
  49793. },
  49794. winter: {
  49795. height: math.unit(5 + 2/12, "feet"),
  49796. weight: math.unit(110, "lb"),
  49797. name: "Winter",
  49798. image: {
  49799. source: "./media/characters/keltre/winter.svg",
  49800. extra: 1099/1057,
  49801. bottom: 22/1121
  49802. }
  49803. },
  49804. head: {
  49805. height: math.unit(1.61 * 0.86, "feet"),
  49806. name: "Head",
  49807. image: {
  49808. source: "./media/characters/keltre/head.svg",
  49809. extra: 534/421,
  49810. bottom: 0/534
  49811. }
  49812. },
  49813. hand: {
  49814. height: math.unit(1.3 * 0.86, "feet"),
  49815. name: "Hand",
  49816. image: {
  49817. source: "./media/characters/keltre/hand.svg"
  49818. }
  49819. },
  49820. foot: {
  49821. height: math.unit(1.8 * 0.86, "feet"),
  49822. name: "Foot",
  49823. image: {
  49824. source: "./media/characters/keltre/foot.svg"
  49825. }
  49826. },
  49827. },
  49828. [
  49829. {
  49830. name: "Fine",
  49831. height: math.unit(1, "inch")
  49832. },
  49833. {
  49834. name: "Dimnutive",
  49835. height: math.unit(4, "inches")
  49836. },
  49837. {
  49838. name: "Tiny",
  49839. height: math.unit(1, "foot")
  49840. },
  49841. {
  49842. name: "Small",
  49843. height: math.unit(3, "feet")
  49844. },
  49845. {
  49846. name: "Normal",
  49847. height: math.unit(5 + 2/12, "feet"),
  49848. default: true
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49854. {
  49855. front: {
  49856. height: math.unit(6 + 2/12, "feet"),
  49857. name: "Front",
  49858. image: {
  49859. source: "./media/characters/nox/front.svg",
  49860. extra: 1917/1830,
  49861. bottom: 74/1991
  49862. }
  49863. },
  49864. back: {
  49865. height: math.unit(6 + 2/12, "feet"),
  49866. name: "Back",
  49867. image: {
  49868. source: "./media/characters/nox/back.svg",
  49869. extra: 1896/1815,
  49870. bottom: 21/1917
  49871. }
  49872. },
  49873. head: {
  49874. height: math.unit(1.1, "feet"),
  49875. name: "Head",
  49876. image: {
  49877. source: "./media/characters/nox/head.svg",
  49878. extra: 874/704,
  49879. bottom: 0/874
  49880. }
  49881. },
  49882. tattoo: {
  49883. height: math.unit(0.729, "feet"),
  49884. name: "Tattoo",
  49885. image: {
  49886. source: "./media/characters/nox/tattoo.svg"
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Normal",
  49893. height: math.unit(6 + 2/12, "feet")
  49894. },
  49895. {
  49896. name: "Gigamacro",
  49897. height: math.unit(2, "earths"),
  49898. default: true
  49899. },
  49900. {
  49901. name: "Cosmic",
  49902. height: math.unit(867, "yottameters")
  49903. },
  49904. ]
  49905. ))
  49906. characterMakers.push(() => makeCharacter(
  49907. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49908. {
  49909. front: {
  49910. height: math.unit(6, "feet"),
  49911. weight: math.unit(150, "lb"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/caspian/front.svg",
  49915. extra: 1443/1359,
  49916. bottom: 0/1443
  49917. }
  49918. },
  49919. back: {
  49920. height: math.unit(6, "feet"),
  49921. weight: math.unit(150, "lb"),
  49922. name: "Back",
  49923. image: {
  49924. source: "./media/characters/caspian/back.svg",
  49925. extra: 1379/1309,
  49926. bottom: 0/1379
  49927. }
  49928. },
  49929. head: {
  49930. height: math.unit(0.9, "feet"),
  49931. name: "Head",
  49932. image: {
  49933. source: "./media/characters/caspian/head.svg",
  49934. extra: 692/492,
  49935. bottom: 0/692
  49936. }
  49937. },
  49938. headAlt: {
  49939. height: math.unit(0.95, "feet"),
  49940. name: "Head (Alt)",
  49941. image: {
  49942. source: "./media/characters/caspian/head-alt.svg",
  49943. extra: 668/508,
  49944. bottom: 0/668
  49945. }
  49946. },
  49947. hand: {
  49948. height: math.unit(0.8, "feet"),
  49949. name: "Hand",
  49950. image: {
  49951. source: "./media/characters/caspian/hand.svg"
  49952. }
  49953. },
  49954. paw: {
  49955. height: math.unit(0.95, "feet"),
  49956. name: "Paw",
  49957. image: {
  49958. source: "./media/characters/caspian/paw.svg"
  49959. }
  49960. },
  49961. },
  49962. [
  49963. {
  49964. name: "Normal",
  49965. height: math.unit(162, "feet"),
  49966. default: true
  49967. },
  49968. ]
  49969. ))
  49970. characterMakers.push(() => makeCharacter(
  49971. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49972. {
  49973. front: {
  49974. height: math.unit(6, "feet"),
  49975. name: "Front",
  49976. image: {
  49977. source: "./media/characters/myra-aisling/front.svg",
  49978. extra: 1268/1166,
  49979. bottom: 73/1341
  49980. }
  49981. },
  49982. back: {
  49983. height: math.unit(6, "feet"),
  49984. name: "Back",
  49985. image: {
  49986. source: "./media/characters/myra-aisling/back.svg",
  49987. extra: 1249/1149,
  49988. bottom: 79/1328
  49989. }
  49990. },
  49991. dressed: {
  49992. height: math.unit(6, "feet"),
  49993. name: "Dressed",
  49994. image: {
  49995. source: "./media/characters/myra-aisling/dressed.svg",
  49996. extra: 1290/1189,
  49997. bottom: 47/1337
  49998. }
  49999. },
  50000. hand: {
  50001. height: math.unit(1.1, "feet"),
  50002. name: "Hand",
  50003. image: {
  50004. source: "./media/characters/myra-aisling/hand.svg"
  50005. }
  50006. },
  50007. paw: {
  50008. height: math.unit(1.23, "feet"),
  50009. name: "Paw",
  50010. image: {
  50011. source: "./media/characters/myra-aisling/paw.svg"
  50012. }
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(160, "feet"),
  50019. default: true
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50025. {
  50026. front: {
  50027. height: math.unit(6, "feet"),
  50028. name: "Front",
  50029. image: {
  50030. source: "./media/characters/tenley-sidero/front.svg",
  50031. extra: 1365/1276,
  50032. bottom: 47/1412
  50033. }
  50034. },
  50035. back: {
  50036. height: math.unit(6, "feet"),
  50037. name: "Back",
  50038. image: {
  50039. source: "./media/characters/tenley-sidero/back.svg",
  50040. extra: 1383/1283,
  50041. bottom: 35/1418
  50042. }
  50043. },
  50044. dressed: {
  50045. height: math.unit(6, "feet"),
  50046. name: "Dressed",
  50047. image: {
  50048. source: "./media/characters/tenley-sidero/dressed.svg",
  50049. extra: 1364/1275,
  50050. bottom: 42/1406
  50051. }
  50052. },
  50053. head: {
  50054. height: math.unit(1.47, "feet"),
  50055. name: "Head",
  50056. image: {
  50057. source: "./media/characters/tenley-sidero/head.svg",
  50058. extra: 610/490,
  50059. bottom: 0/610
  50060. }
  50061. },
  50062. },
  50063. [
  50064. {
  50065. name: "Normal",
  50066. height: math.unit(154, "feet"),
  50067. default: true
  50068. },
  50069. ]
  50070. ))
  50071. characterMakers.push(() => makeCharacter(
  50072. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50073. {
  50074. front: {
  50075. height: math.unit(5, "inches"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/mallory/front.svg",
  50079. extra: 1919/1678,
  50080. bottom: 29/1948
  50081. }
  50082. },
  50083. hand: {
  50084. height: math.unit(0.73, "inches"),
  50085. name: "Hand",
  50086. image: {
  50087. source: "./media/characters/mallory/hand.svg"
  50088. }
  50089. },
  50090. paw: {
  50091. height: math.unit(0.68, "inches"),
  50092. name: "Paw",
  50093. image: {
  50094. source: "./media/characters/mallory/paw.svg"
  50095. }
  50096. },
  50097. },
  50098. [
  50099. {
  50100. name: "Small",
  50101. height: math.unit(5, "inches"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50108. {
  50109. naked: {
  50110. height: math.unit(6, "feet"),
  50111. name: "Naked",
  50112. image: {
  50113. source: "./media/characters/mab/naked.svg",
  50114. extra: 1855/1757,
  50115. bottom: 208/2063
  50116. }
  50117. },
  50118. outside: {
  50119. height: math.unit(6, "feet"),
  50120. name: "Outside",
  50121. image: {
  50122. source: "./media/characters/mab/outside.svg",
  50123. extra: 1855/1757,
  50124. bottom: 208/2063
  50125. }
  50126. },
  50127. party: {
  50128. height: math.unit(6, "feet"),
  50129. name: "Party",
  50130. image: {
  50131. source: "./media/characters/mab/party.svg",
  50132. extra: 1855/1757,
  50133. bottom: 208/2063
  50134. }
  50135. },
  50136. },
  50137. [
  50138. {
  50139. name: "Normal",
  50140. height: math.unit(165, "feet"),
  50141. default: true
  50142. },
  50143. ]
  50144. ))
  50145. characterMakers.push(() => makeCharacter(
  50146. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50147. {
  50148. feral: {
  50149. height: math.unit(12, "feet"),
  50150. weight: math.unit(20000, "lb"),
  50151. name: "Side",
  50152. image: {
  50153. source: "./media/characters/winter/feral.svg",
  50154. extra: 1286/943,
  50155. bottom: 112/1398
  50156. },
  50157. form: "feral",
  50158. default: true
  50159. },
  50160. feralNsfw: {
  50161. height: math.unit(12, "feet"),
  50162. weight: math.unit(20000, "lb"),
  50163. name: "Side (NSFW)",
  50164. image: {
  50165. source: "./media/characters/winter/feral-nsfw.svg",
  50166. extra: 1286/943,
  50167. bottom: 112/1398
  50168. },
  50169. form: "feral"
  50170. },
  50171. dick: {
  50172. height: math.unit(3.79, "feet"),
  50173. name: "Dick",
  50174. image: {
  50175. source: "./media/characters/winter/dick.svg"
  50176. },
  50177. form: "feral"
  50178. },
  50179. anthro: {
  50180. height: math.unit(12, "feet"),
  50181. weight: math.unit(10, "tons"),
  50182. name: "Anthro",
  50183. image: {
  50184. source: "./media/characters/winter/anthro.svg",
  50185. extra: 1701/1553,
  50186. bottom: 64/1765
  50187. },
  50188. form: "anthro",
  50189. default: true
  50190. },
  50191. },
  50192. [
  50193. {
  50194. name: "Big",
  50195. height: math.unit(12, "feet"),
  50196. default: true,
  50197. form: "feral"
  50198. },
  50199. {
  50200. name: "Big",
  50201. height: math.unit(12, "feet"),
  50202. default: true,
  50203. form: "anthro"
  50204. },
  50205. ],
  50206. {
  50207. "feral": {
  50208. name: "Feral",
  50209. default: true
  50210. },
  50211. "anthro": {
  50212. name: "Anthro"
  50213. }
  50214. }
  50215. ))
  50216. characterMakers.push(() => makeCharacter(
  50217. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50218. {
  50219. front: {
  50220. height: math.unit(4.1, "inches"),
  50221. name: "Front",
  50222. image: {
  50223. source: "./media/characters/alto/front.svg",
  50224. extra: 736/627,
  50225. bottom: 90/826
  50226. }
  50227. },
  50228. },
  50229. [
  50230. {
  50231. name: "Normal",
  50232. height: math.unit(4.1, "inches"),
  50233. default: true
  50234. },
  50235. ]
  50236. ))
  50237. characterMakers.push(() => makeCharacter(
  50238. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50239. {
  50240. sitting: {
  50241. height: math.unit(3, "feet"),
  50242. name: "Sitting",
  50243. image: {
  50244. source: "./media/characters/ratstrid-v/sitting.svg",
  50245. extra: 355/310,
  50246. bottom: 136/491
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Normal",
  50253. height: math.unit(3, "feet"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50260. {
  50261. back: {
  50262. height: math.unit(6, "feet"),
  50263. weight: math.unit(450, "lb"),
  50264. name: "Back",
  50265. image: {
  50266. source: "./media/characters/siz/back.svg",
  50267. extra: 1449/1274,
  50268. bottom: 13/1462
  50269. }
  50270. },
  50271. },
  50272. [
  50273. {
  50274. name: "Smallest",
  50275. height: math.unit(18 + 3/12, "feet")
  50276. },
  50277. {
  50278. name: "Modest",
  50279. height: math.unit(56 + 8/12, "feet"),
  50280. default: true
  50281. },
  50282. {
  50283. name: "Largest",
  50284. height: math.unit(3590, "feet")
  50285. },
  50286. ]
  50287. ))
  50288. characterMakers.push(() => makeCharacter(
  50289. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50290. {
  50291. front: {
  50292. height: math.unit(5 + 9/12, "feet"),
  50293. weight: math.unit(150, "lb"),
  50294. name: "Front",
  50295. image: {
  50296. source: "./media/characters/ven/front.svg",
  50297. extra: 1372/1320,
  50298. bottom: 73/1445
  50299. }
  50300. },
  50301. side: {
  50302. height: math.unit(5 + 9/12, "feet"),
  50303. weight: math.unit(1150, "lb"),
  50304. name: "Side",
  50305. image: {
  50306. source: "./media/characters/ven/side.svg",
  50307. extra: 1119/1070,
  50308. bottom: 42/1161
  50309. },
  50310. default: true
  50311. },
  50312. },
  50313. [
  50314. {
  50315. name: "Normal",
  50316. height: math.unit(5 + 9/12, "feet"),
  50317. default: true
  50318. },
  50319. ]
  50320. ))
  50321. characterMakers.push(() => makeCharacter(
  50322. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50323. {
  50324. front: {
  50325. height: math.unit(12, "feet"),
  50326. weight: math.unit(1000, "kg"),
  50327. name: "Front",
  50328. image: {
  50329. source: "./media/characters/maple/front.svg",
  50330. extra: 1193/1081,
  50331. bottom: 22/1215
  50332. }
  50333. },
  50334. },
  50335. [
  50336. {
  50337. name: "Compressed",
  50338. height: math.unit(7, "feet")
  50339. },
  50340. {
  50341. name: "Normal",
  50342. height: math.unit(12, "feet"),
  50343. default: true
  50344. },
  50345. ]
  50346. ))
  50347. characterMakers.push(() => makeCharacter(
  50348. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50349. {
  50350. front: {
  50351. height: math.unit(9, "feet"),
  50352. weight: math.unit(1500, "lb"),
  50353. name: "Front",
  50354. image: {
  50355. source: "./media/characters/nora/front.svg",
  50356. extra: 1348/1286,
  50357. bottom: 218/1566
  50358. }
  50359. },
  50360. erect: {
  50361. height: math.unit(9, "feet"),
  50362. weight: math.unit(11500, "lb"),
  50363. name: "Erect",
  50364. image: {
  50365. source: "./media/characters/nora/erect.svg",
  50366. extra: 1488/1433,
  50367. bottom: 133/1621
  50368. }
  50369. },
  50370. },
  50371. [
  50372. {
  50373. name: "Normal",
  50374. height: math.unit(9, "feet"),
  50375. default: true
  50376. },
  50377. ]
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(25, "feet"),
  50384. weight: math.unit(27500, "lb"),
  50385. name: "Front",
  50386. image: {
  50387. source: "./media/characters/north-caudin/front.svg",
  50388. extra: 1184/1082,
  50389. bottom: 23/1207
  50390. }
  50391. },
  50392. },
  50393. [
  50394. {
  50395. name: "Compressed",
  50396. height: math.unit(10, "feet")
  50397. },
  50398. {
  50399. name: "Normal",
  50400. height: math.unit(25, "feet"),
  50401. default: true
  50402. },
  50403. ]
  50404. ))
  50405. characterMakers.push(() => makeCharacter(
  50406. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50407. {
  50408. front: {
  50409. height: math.unit(9, "feet"),
  50410. weight: math.unit(1250, "lb"),
  50411. name: "Front",
  50412. image: {
  50413. source: "./media/characters/merrian/front.svg",
  50414. extra: 2393/2304,
  50415. bottom: 40/2433
  50416. }
  50417. },
  50418. },
  50419. [
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(9, "feet"),
  50423. default: true
  50424. },
  50425. ]
  50426. ))
  50427. characterMakers.push(() => makeCharacter(
  50428. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50429. {
  50430. front: {
  50431. height: math.unit(9, "feet"),
  50432. weight: math.unit(1000, "lb"),
  50433. name: "Front",
  50434. image: {
  50435. source: "./media/characters/hazel/front.svg",
  50436. extra: 2351/2298,
  50437. bottom: 38/2389
  50438. }
  50439. },
  50440. },
  50441. [
  50442. {
  50443. name: "Normal",
  50444. height: math.unit(9, "feet"),
  50445. default: true
  50446. },
  50447. ]
  50448. ))
  50449. characterMakers.push(() => makeCharacter(
  50450. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50451. {
  50452. front: {
  50453. height: math.unit(13, "feet"),
  50454. weight: math.unit(3200, "lb"),
  50455. name: "Front",
  50456. image: {
  50457. source: "./media/characters/emma/front.svg",
  50458. extra: 2263/2029,
  50459. bottom: 68/2331
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(13, "feet"),
  50467. default: true
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(11 + 9/12, "feet"),
  50476. weight: math.unit(2500, "lb"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/ilumina/front.svg",
  50480. extra: 2248/2209,
  50481. bottom: 164/2412
  50482. }
  50483. },
  50484. },
  50485. [
  50486. {
  50487. name: "Normal",
  50488. height: math.unit(11 + 9/12, "feet"),
  50489. default: true
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50495. {
  50496. front: {
  50497. height: math.unit(8 + 10/12, "feet"),
  50498. weight: math.unit(1350, "lb"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/moonshine/front.svg",
  50502. extra: 2395/2288,
  50503. bottom: 40/2435
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Normal",
  50510. height: math.unit(8 + 10/12, "feet"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(14, "feet"),
  50520. weight: math.unit(3400, "lb"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/aletia/front.svg",
  50524. extra: 1185/1052,
  50525. bottom: 21/1206
  50526. }
  50527. },
  50528. },
  50529. [
  50530. {
  50531. name: "Compressed",
  50532. height: math.unit(8, "feet")
  50533. },
  50534. {
  50535. name: "Normal",
  50536. height: math.unit(14, "feet"),
  50537. default: true
  50538. },
  50539. ]
  50540. ))
  50541. characterMakers.push(() => makeCharacter(
  50542. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50543. {
  50544. front: {
  50545. height: math.unit(17, "feet"),
  50546. weight: math.unit(6500, "lb"),
  50547. name: "Front",
  50548. image: {
  50549. source: "./media/characters/deidra/front.svg",
  50550. extra: 1201/1081,
  50551. bottom: 16/1217
  50552. }
  50553. },
  50554. },
  50555. [
  50556. {
  50557. name: "Compressed",
  50558. height: math.unit(9 + 6/12, "feet")
  50559. },
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(17, "feet"),
  50563. default: true
  50564. },
  50565. ]
  50566. ))
  50567. characterMakers.push(() => makeCharacter(
  50568. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50569. {
  50570. front: {
  50571. height: math.unit(7 + 4/12, "feet"),
  50572. weight: math.unit(280, "lb"),
  50573. name: "Front",
  50574. image: {
  50575. source: "./media/characters/freki-yrmori/front.svg",
  50576. extra: 1286/1182,
  50577. bottom: 29/1315
  50578. }
  50579. },
  50580. maw: {
  50581. height: math.unit(0.9, "feet"),
  50582. name: "Maw",
  50583. image: {
  50584. source: "./media/characters/freki-yrmori/maw.svg"
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Normal",
  50591. height: math.unit(7 + 4/12, "feet"),
  50592. default: true
  50593. },
  50594. {
  50595. name: "Macro",
  50596. height: math.unit(38.5, "meters")
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50602. {
  50603. side: {
  50604. height: math.unit(47.2, "meters"),
  50605. weight: math.unit(10000, "tons"),
  50606. name: "Side",
  50607. image: {
  50608. source: "./media/characters/aetherios/side.svg",
  50609. extra: 2363/642,
  50610. bottom: 221/2584
  50611. }
  50612. },
  50613. top: {
  50614. height: math.unit(240, "meters"),
  50615. weight: math.unit(10000, "tons"),
  50616. name: "Top",
  50617. image: {
  50618. source: "./media/characters/aetherios/top.svg"
  50619. }
  50620. },
  50621. bottom: {
  50622. height: math.unit(240, "meters"),
  50623. weight: math.unit(10000, "tons"),
  50624. name: "Bottom",
  50625. image: {
  50626. source: "./media/characters/aetherios/bottom.svg"
  50627. }
  50628. },
  50629. head: {
  50630. height: math.unit(38.6, "meters"),
  50631. name: "Head",
  50632. image: {
  50633. source: "./media/characters/aetherios/head.svg",
  50634. extra: 1335/1112,
  50635. bottom: 0/1335
  50636. }
  50637. },
  50638. front: {
  50639. height: math.unit(29, "meters"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/aetherios/front.svg",
  50643. extra: 1266/953,
  50644. bottom: 158/1424
  50645. }
  50646. },
  50647. maw: {
  50648. height: math.unit(16.37, "meters"),
  50649. name: "Maw",
  50650. image: {
  50651. source: "./media/characters/aetherios/maw.svg",
  50652. extra: 748/637,
  50653. bottom: 0/748
  50654. },
  50655. extraAttributes: {
  50656. preyCapacity: {
  50657. name: "Capacity",
  50658. power: 3,
  50659. type: "volume",
  50660. base: math.unit(1000, "people")
  50661. },
  50662. tongueSize: {
  50663. name: "Tongue Size",
  50664. power: 2,
  50665. type: "area",
  50666. base: math.unit(21, "m^2")
  50667. }
  50668. }
  50669. },
  50670. forepaw: {
  50671. height: math.unit(18, "meters"),
  50672. name: "Forepaw",
  50673. image: {
  50674. source: "./media/characters/aetherios/forepaw.svg"
  50675. }
  50676. },
  50677. hindpaw: {
  50678. height: math.unit(23, "meters"),
  50679. name: "Hindpaw",
  50680. image: {
  50681. source: "./media/characters/aetherios/hindpaw.svg"
  50682. }
  50683. },
  50684. genitals: {
  50685. height: math.unit(42, "meters"),
  50686. name: "Genitals",
  50687. image: {
  50688. source: "./media/characters/aetherios/genitals.svg"
  50689. }
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Normal",
  50695. height: math.unit(47.2, "meters"),
  50696. default: true
  50697. },
  50698. {
  50699. name: "Macro",
  50700. height: math.unit(160, "meters")
  50701. },
  50702. {
  50703. name: "Mega",
  50704. height: math.unit(1.87, "km")
  50705. },
  50706. {
  50707. name: "Giga",
  50708. height: math.unit(40000, "km")
  50709. },
  50710. {
  50711. name: "Stellar",
  50712. height: math.unit(158000000, "km")
  50713. },
  50714. {
  50715. name: "Cosmic",
  50716. height: math.unit(9.46e12, "km")
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(5 + 4/12, "feet"),
  50725. weight: math.unit(80, "lb"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/mizu-gieeg/front.svg",
  50729. extra: 850/709,
  50730. bottom: 52/902
  50731. }
  50732. },
  50733. back: {
  50734. height: math.unit(5 + 4/12, "feet"),
  50735. weight: math.unit(80, "lb"),
  50736. name: "Back",
  50737. image: {
  50738. source: "./media/characters/mizu-gieeg/back.svg",
  50739. extra: 882/745,
  50740. bottom: 25/907
  50741. }
  50742. },
  50743. },
  50744. [
  50745. {
  50746. name: "Normal",
  50747. height: math.unit(5 + 4/12, "feet"),
  50748. default: true
  50749. },
  50750. ]
  50751. ))
  50752. characterMakers.push(() => makeCharacter(
  50753. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50754. {
  50755. front: {
  50756. height: math.unit(6, "feet"),
  50757. name: "Front",
  50758. image: {
  50759. source: "./media/characters/roselle-st-papier/front.svg",
  50760. extra: 1430/1280,
  50761. bottom: 37/1467
  50762. }
  50763. },
  50764. back: {
  50765. height: math.unit(6, "feet"),
  50766. name: "Back",
  50767. image: {
  50768. source: "./media/characters/roselle-st-papier/back.svg",
  50769. extra: 1491/1296,
  50770. bottom: 23/1514
  50771. }
  50772. },
  50773. ear: {
  50774. height: math.unit(1.26, "feet"),
  50775. name: "Ear",
  50776. image: {
  50777. source: "./media/characters/roselle-st-papier/ear.svg"
  50778. }
  50779. },
  50780. },
  50781. [
  50782. {
  50783. name: "Normal",
  50784. height: math.unit(150, "feet"),
  50785. default: true
  50786. },
  50787. ]
  50788. ))
  50789. characterMakers.push(() => makeCharacter(
  50790. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50791. {
  50792. front: {
  50793. height: math.unit(1, "inches"),
  50794. name: "Front",
  50795. image: {
  50796. source: "./media/characters/valargent/front.svg",
  50797. extra: 1825/1694,
  50798. bottom: 62/1887
  50799. }
  50800. },
  50801. back: {
  50802. height: math.unit(1, "inches"),
  50803. name: "Back",
  50804. image: {
  50805. source: "./media/characters/valargent/back.svg",
  50806. extra: 1775/1682,
  50807. bottom: 88/1863
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Micro",
  50814. height: math.unit(1, "inch"),
  50815. default: true
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50821. {
  50822. front: {
  50823. height: math.unit(3.4, "meters"),
  50824. name: "Front",
  50825. image: {
  50826. source: "./media/characters/zarina/front.svg",
  50827. extra: 1733/1425,
  50828. bottom: 93/1826
  50829. }
  50830. },
  50831. squatting: {
  50832. height: math.unit(2.14, "meters"),
  50833. name: "Squatting",
  50834. image: {
  50835. source: "./media/characters/zarina/squatting.svg",
  50836. extra: 1073/788,
  50837. bottom: 63/1136
  50838. }
  50839. },
  50840. back: {
  50841. height: math.unit(2.14, "meters"),
  50842. name: "Back",
  50843. image: {
  50844. source: "./media/characters/zarina/back.svg",
  50845. extra: 1128/885,
  50846. bottom: 0/1128
  50847. }
  50848. },
  50849. },
  50850. [
  50851. {
  50852. name: "Normal",
  50853. height: math.unit(3.4, "meters"),
  50854. default: true
  50855. },
  50856. {
  50857. name: "Big",
  50858. height: math.unit(5, "meters")
  50859. },
  50860. {
  50861. name: "Macro",
  50862. height: math.unit(110, "meters")
  50863. },
  50864. ]
  50865. ))
  50866. characterMakers.push(() => makeCharacter(
  50867. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50868. {
  50869. front: {
  50870. height: math.unit(7, "feet"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/ventus-astro-fox/front.svg",
  50874. extra: 1792/1623,
  50875. bottom: 28/1820
  50876. }
  50877. },
  50878. back: {
  50879. height: math.unit(7, "feet"),
  50880. name: "Back",
  50881. image: {
  50882. source: "./media/characters/ventus-astro-fox/back.svg",
  50883. extra: 1789/1620,
  50884. bottom: 31/1820
  50885. }
  50886. },
  50887. outfit: {
  50888. height: math.unit(7, "feet"),
  50889. name: "Outfit",
  50890. image: {
  50891. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50892. extra: 1054/925,
  50893. bottom: 15/1069
  50894. }
  50895. },
  50896. head: {
  50897. height: math.unit(1.12, "feet"),
  50898. name: "Head",
  50899. image: {
  50900. source: "./media/characters/ventus-astro-fox/head.svg",
  50901. extra: 866/504,
  50902. bottom: 0/866
  50903. }
  50904. },
  50905. hand: {
  50906. height: math.unit(1, "feet"),
  50907. name: "Hand",
  50908. image: {
  50909. source: "./media/characters/ventus-astro-fox/hand.svg"
  50910. }
  50911. },
  50912. paw: {
  50913. height: math.unit(1.5, "feet"),
  50914. name: "Paw",
  50915. image: {
  50916. source: "./media/characters/ventus-astro-fox/paw.svg"
  50917. }
  50918. },
  50919. },
  50920. [
  50921. {
  50922. name: "Normal",
  50923. height: math.unit(7, "feet"),
  50924. default: true
  50925. },
  50926. {
  50927. name: "Macro",
  50928. height: math.unit(200, "feet")
  50929. },
  50930. {
  50931. name: "Cosmic",
  50932. height: math.unit(3, "universes")
  50933. },
  50934. ]
  50935. ))
  50936. characterMakers.push(() => makeCharacter(
  50937. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50938. {
  50939. front: {
  50940. height: math.unit(3, "meters"),
  50941. weight: math.unit(7000, "lb"),
  50942. name: "Front",
  50943. image: {
  50944. source: "./media/characters/core-t/front.svg",
  50945. extra: 5729/4941,
  50946. bottom: 1129/6858
  50947. }
  50948. },
  50949. },
  50950. [
  50951. {
  50952. name: "Big",
  50953. height: math.unit(3, "meters"),
  50954. default: true
  50955. },
  50956. ]
  50957. ))
  50958. characterMakers.push(() => makeCharacter(
  50959. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50960. {
  50961. normal: {
  50962. height: math.unit(6 + 6/12, "feet"),
  50963. weight: math.unit(275, "lb"),
  50964. name: "Front",
  50965. image: {
  50966. source: "./media/characters/cadbunny/normal.svg",
  50967. extra: 1129/947,
  50968. bottom: 93/1222
  50969. },
  50970. default: true,
  50971. form: "normal"
  50972. },
  50973. gigantamax: {
  50974. height: math.unit(26, "feet"),
  50975. weight: math.unit(16000, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/cadbunny/gigantamax.svg",
  50979. extra: 1133/944,
  50980. bottom: 90/1223
  50981. },
  50982. default: true,
  50983. form: "gigantamax"
  50984. },
  50985. },
  50986. [
  50987. {
  50988. name: "Normal",
  50989. height: math.unit(6 + 6/12, "feet"),
  50990. default: true,
  50991. form: "normal"
  50992. },
  50993. {
  50994. name: "Small",
  50995. height: math.unit(26, "feet"),
  50996. default: true,
  50997. form: "gigantamax"
  50998. },
  50999. {
  51000. name: "Large",
  51001. height: math.unit(78, "feet"),
  51002. form: "gigantamax"
  51003. },
  51004. ],
  51005. {
  51006. "normal": {
  51007. name: "Normal",
  51008. default: true
  51009. },
  51010. "gigantamax": {
  51011. name: "Gigantamax"
  51012. }
  51013. }
  51014. ))
  51015. characterMakers.push(() => makeCharacter(
  51016. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51017. {
  51018. anthroFront: {
  51019. height: math.unit(8, "feet"),
  51020. weight: math.unit(300, "lb"),
  51021. name: "Front",
  51022. image: {
  51023. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51024. extra: 1272/1176,
  51025. bottom: 53/1325
  51026. },
  51027. form: "anthro",
  51028. default: true
  51029. },
  51030. feralSide: {
  51031. height: math.unit(4, "feet"),
  51032. weight: math.unit(250, "lb"),
  51033. name: "Side",
  51034. image: {
  51035. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51036. extra: 731/621,
  51037. bottom: 0/731
  51038. },
  51039. form: "feral",
  51040. default: true
  51041. },
  51042. },
  51043. [
  51044. {
  51045. name: "Regular",
  51046. height: math.unit(8, "feet"),
  51047. form: "anthro"
  51048. },
  51049. {
  51050. name: "Macro",
  51051. height: math.unit(250, "feet"),
  51052. form: "anthro",
  51053. default: true
  51054. },
  51055. {
  51056. name: "Regular",
  51057. height: math.unit(4, "feet"),
  51058. form: "feral"
  51059. },
  51060. {
  51061. name: "Macro",
  51062. height: math.unit(125, "feet"),
  51063. form: "feral",
  51064. default: true
  51065. },
  51066. ],
  51067. {
  51068. "anthro": {
  51069. name: "Anthro",
  51070. default: true
  51071. },
  51072. "feral": {
  51073. name: "Feral",
  51074. },
  51075. }
  51076. ))
  51077. characterMakers.push(() => makeCharacter(
  51078. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51079. {
  51080. front: {
  51081. height: math.unit(11 + 10/12, "feet"),
  51082. weight: math.unit(1587, "kg"),
  51083. name: "Front",
  51084. image: {
  51085. source: "./media/characters/maple-javira-dragon/front.svg",
  51086. extra: 1136/744,
  51087. bottom: 73/1209
  51088. }
  51089. },
  51090. side: {
  51091. height: math.unit(11 + 10/12, "feet"),
  51092. weight: math.unit(1587, "kg"),
  51093. name: "Side",
  51094. image: {
  51095. source: "./media/characters/maple-javira-dragon/side.svg",
  51096. extra: 712/505,
  51097. bottom: 17/729
  51098. }
  51099. },
  51100. head: {
  51101. height: math.unit(8.05, "feet"),
  51102. name: "Head",
  51103. image: {
  51104. source: "./media/characters/maple-javira-dragon/head.svg",
  51105. extra: 1420/1344,
  51106. bottom: 0/1420
  51107. }
  51108. },
  51109. },
  51110. [
  51111. {
  51112. name: "Normal",
  51113. height: math.unit(11 + 10/12, "feet"),
  51114. default: true
  51115. },
  51116. ]
  51117. ))
  51118. characterMakers.push(() => makeCharacter(
  51119. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51120. {
  51121. front: {
  51122. height: math.unit(117, "cm"),
  51123. weight: math.unit(50, "kg"),
  51124. name: "Front",
  51125. image: {
  51126. source: "./media/characters/sonia-wyverntail/front.svg",
  51127. extra: 708/592,
  51128. bottom: 25/733
  51129. }
  51130. },
  51131. },
  51132. [
  51133. {
  51134. name: "Normal",
  51135. height: math.unit(117, "cm"),
  51136. default: true
  51137. },
  51138. ]
  51139. ))
  51140. characterMakers.push(() => makeCharacter(
  51141. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51142. {
  51143. front: {
  51144. height: math.unit(6 + 5/12, "feet"),
  51145. name: "Front",
  51146. image: {
  51147. source: "./media/characters/micah/front.svg",
  51148. extra: 1758/1546,
  51149. bottom: 214/1972
  51150. }
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Normal",
  51156. height: math.unit(6 + 5/12, "feet"),
  51157. default: true
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(5 + 10/12, "feet"),
  51166. weight: math.unit(220, "lb"),
  51167. name: "Front",
  51168. image: {
  51169. source: "./media/characters/zarya/front.svg",
  51170. extra: 593/572,
  51171. bottom: 50/643
  51172. }
  51173. },
  51174. back: {
  51175. height: math.unit(5 + 10/12, "feet"),
  51176. weight: math.unit(220, "lb"),
  51177. name: "Back",
  51178. image: {
  51179. source: "./media/characters/zarya/back.svg",
  51180. extra: 603/582,
  51181. bottom: 38/641
  51182. }
  51183. },
  51184. },
  51185. [
  51186. {
  51187. name: "Normal",
  51188. height: math.unit(5 + 10/12, "feet"),
  51189. default: true
  51190. },
  51191. ]
  51192. ))
  51193. characterMakers.push(() => makeCharacter(
  51194. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51195. {
  51196. front: {
  51197. height: math.unit(7.5, "feet"),
  51198. name: "Front",
  51199. image: {
  51200. source: "./media/characters/sven-hatisson/front.svg",
  51201. extra: 917/857,
  51202. bottom: 42/959
  51203. }
  51204. },
  51205. back: {
  51206. height: math.unit(7.5, "feet"),
  51207. name: "Back",
  51208. image: {
  51209. source: "./media/characters/sven-hatisson/back.svg",
  51210. extra: 903/856,
  51211. bottom: 15/918
  51212. }
  51213. },
  51214. },
  51215. [
  51216. {
  51217. name: "Base Height",
  51218. height: math.unit(7.5, "feet")
  51219. },
  51220. {
  51221. name: "Usual Height",
  51222. height: math.unit(13.5, "feet"),
  51223. default: true
  51224. },
  51225. {
  51226. name: "Smaller Macro",
  51227. height: math.unit(85, "feet")
  51228. },
  51229. {
  51230. name: "Moderate Macro",
  51231. height: math.unit(320, "feet")
  51232. },
  51233. {
  51234. name: "Large Macro",
  51235. height: math.unit(1000, "feet")
  51236. },
  51237. {
  51238. name: "Largest Size",
  51239. height: math.unit(2, "miles")
  51240. },
  51241. ]
  51242. ))
  51243. characterMakers.push(() => makeCharacter(
  51244. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51245. {
  51246. side: {
  51247. height: math.unit(1.8, "meters"),
  51248. weight: math.unit(275, "kg"),
  51249. name: "Side",
  51250. image: {
  51251. source: "./media/characters/terra/side.svg",
  51252. extra: 1273/1147,
  51253. bottom: 0/1273
  51254. }
  51255. },
  51256. },
  51257. [
  51258. {
  51259. name: "Normal",
  51260. height: math.unit(16.2, "meters"),
  51261. default: true
  51262. },
  51263. ]
  51264. ))
  51265. characterMakers.push(() => makeCharacter(
  51266. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51267. {
  51268. borzoiFront: {
  51269. height: math.unit(6 + 9/12, "feet"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/rae/borzoi-front.svg",
  51273. extra: 1161/1098,
  51274. bottom: 31/1192
  51275. },
  51276. form: "borzoi",
  51277. default: true
  51278. },
  51279. werewolfFront: {
  51280. height: math.unit(8 + 7/12, "feet"),
  51281. name: "Front",
  51282. image: {
  51283. source: "./media/characters/rae/werewolf-front.svg",
  51284. extra: 1411/1334,
  51285. bottom: 127/1538
  51286. },
  51287. form: "werewolf",
  51288. default: true
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(6 + 9/12, "feet"),
  51295. default: true,
  51296. form: "borzoi"
  51297. },
  51298. {
  51299. name: "Normal",
  51300. height: math.unit(8 + 7/12, "feet"),
  51301. default: true,
  51302. form: "werewolf"
  51303. },
  51304. ],
  51305. {
  51306. "borzoi": {
  51307. name: "Borzoi",
  51308. default: true
  51309. },
  51310. "werewolf": {
  51311. name: "Werewolf",
  51312. },
  51313. }
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51317. {
  51318. front: {
  51319. height: math.unit(8 + 7/12, "feet"),
  51320. weight: math.unit(482, "lb"),
  51321. name: "Front",
  51322. image: {
  51323. source: "./media/characters/kit/front.svg",
  51324. extra: 1247/1103,
  51325. bottom: 41/1288
  51326. }
  51327. },
  51328. back: {
  51329. height: math.unit(8 + 7/12, "feet"),
  51330. weight: math.unit(482, "lb"),
  51331. name: "Back",
  51332. image: {
  51333. source: "./media/characters/kit/back.svg",
  51334. extra: 1252/1123,
  51335. bottom: 21/1273
  51336. }
  51337. },
  51338. paw: {
  51339. height: math.unit(1.46, "feet"),
  51340. name: "Paw",
  51341. image: {
  51342. source: "./media/characters/kit/paw.svg"
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Normal",
  51349. height: math.unit(2.61, "meters"),
  51350. default: true
  51351. },
  51352. {
  51353. name: "\"Tall\"",
  51354. height: math.unit(8.21, "meters")
  51355. },
  51356. {
  51357. name: "Tall",
  51358. height: math.unit(19.6, "meters")
  51359. },
  51360. {
  51361. name: "Very Tall",
  51362. height: math.unit(57.91, "meters")
  51363. },
  51364. {
  51365. name: "Semi-Macro",
  51366. height: math.unit(138.64, "meters")
  51367. },
  51368. {
  51369. name: "Macro",
  51370. height: math.unit(831.99, "meters")
  51371. },
  51372. {
  51373. name: "EX-Macro",
  51374. height: math.unit(96451121, "meters")
  51375. },
  51376. {
  51377. name: "S1-Omnipotent",
  51378. height: math.unit(4.42074e+9, "meters")
  51379. },
  51380. {
  51381. name: "S2-Omnipotent",
  51382. height: math.unit(9.42074e+17, "meters")
  51383. },
  51384. {
  51385. name: "Omnipotent",
  51386. height: math.unit(4.23112e+24, "meters")
  51387. },
  51388. {
  51389. name: "Hypergod",
  51390. height: math.unit(5.05176e+27, "meters")
  51391. },
  51392. {
  51393. name: "Hypergod-EX",
  51394. height: math.unit(9.45532e+49, "meters")
  51395. },
  51396. {
  51397. name: "Hypergod-SP",
  51398. height: math.unit(9.45532e+195, "meters")
  51399. },
  51400. ]
  51401. ))
  51402. characterMakers.push(() => makeCharacter(
  51403. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51404. {
  51405. side: {
  51406. height: math.unit(0.6, "meters"),
  51407. weight: math.unit(24, "kg"),
  51408. name: "Side",
  51409. image: {
  51410. source: "./media/characters/celeste/side.svg",
  51411. extra: 810/517,
  51412. bottom: 53/863
  51413. }
  51414. },
  51415. },
  51416. [
  51417. {
  51418. name: "Velociraptor",
  51419. height: math.unit(0.6, "meters"),
  51420. default: true
  51421. },
  51422. {
  51423. name: "Utahraptor",
  51424. height: math.unit(1.8, "meters")
  51425. },
  51426. {
  51427. name: "Gallimimus",
  51428. height: math.unit(4.0, "meters")
  51429. },
  51430. {
  51431. name: "Large",
  51432. height: math.unit(20, "meters")
  51433. },
  51434. {
  51435. name: "Planetary",
  51436. height: math.unit(50, "megameters")
  51437. },
  51438. {
  51439. name: "Stellar",
  51440. height: math.unit(1.5, "gigameters")
  51441. },
  51442. {
  51443. name: "Galactic",
  51444. height: math.unit(100, "exameters")
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51450. {
  51451. front: {
  51452. height: math.unit(6, "feet"),
  51453. weight: math.unit(210, "lb"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/glacia/front.svg",
  51457. extra: 958/901,
  51458. bottom: 45/1003
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Macro",
  51465. height: math.unit(1000, "meters"),
  51466. default: true
  51467. },
  51468. ]
  51469. ))
  51470. characterMakers.push(() => makeCharacter(
  51471. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51472. {
  51473. front: {
  51474. height: math.unit(4, "meters"),
  51475. name: "Front",
  51476. image: {
  51477. source: "./media/characters/giri/front.svg",
  51478. extra: 966/894,
  51479. bottom: 21/987
  51480. }
  51481. },
  51482. },
  51483. [
  51484. {
  51485. name: "Normal",
  51486. height: math.unit(4, "meters"),
  51487. default: true
  51488. },
  51489. ]
  51490. ))
  51491. characterMakers.push(() => makeCharacter(
  51492. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51493. {
  51494. back: {
  51495. height: math.unit(4, "feet"),
  51496. weight: math.unit(37, "lb"),
  51497. name: "Back",
  51498. image: {
  51499. source: "./media/characters/tin/back.svg",
  51500. extra: 845/780,
  51501. bottom: 28/873
  51502. }
  51503. },
  51504. },
  51505. [
  51506. {
  51507. name: "Normal",
  51508. height: math.unit(4, "feet"),
  51509. default: true
  51510. },
  51511. ]
  51512. ))
  51513. characterMakers.push(() => makeCharacter(
  51514. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51515. {
  51516. front: {
  51517. height: math.unit(25, "feet"),
  51518. name: "Front",
  51519. image: {
  51520. source: "./media/characters/cadenza-vivace/front.svg",
  51521. extra: 1842/1578,
  51522. bottom: 30/1872
  51523. }
  51524. },
  51525. },
  51526. [
  51527. {
  51528. name: "Macro",
  51529. height: math.unit(25, "feet"),
  51530. default: true
  51531. },
  51532. ]
  51533. ))
  51534. characterMakers.push(() => makeCharacter(
  51535. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51536. {
  51537. front: {
  51538. height: math.unit(10, "feet"),
  51539. weight: math.unit(625, "kg"),
  51540. name: "Front",
  51541. image: {
  51542. source: "./media/characters/zain/front.svg",
  51543. extra: 1682/1498,
  51544. bottom: 223/1905
  51545. }
  51546. },
  51547. back: {
  51548. height: math.unit(10, "feet"),
  51549. weight: math.unit(625, "kg"),
  51550. name: "Back",
  51551. image: {
  51552. source: "./media/characters/zain/back.svg",
  51553. extra: 1814/1657,
  51554. bottom: 152/1966
  51555. }
  51556. },
  51557. head: {
  51558. height: math.unit(10, "feet"),
  51559. weight: math.unit(625, "kg"),
  51560. name: "Head",
  51561. image: {
  51562. source: "./media/characters/zain/head.svg",
  51563. extra: 1059/762,
  51564. bottom: 0/1059
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(10, "feet"),
  51572. default: true
  51573. },
  51574. ]
  51575. ))
  51576. characterMakers.push(() => makeCharacter(
  51577. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51578. {
  51579. front: {
  51580. height: math.unit(6 + 5/12, "feet"),
  51581. weight: math.unit(750, "lb"),
  51582. name: "Front",
  51583. image: {
  51584. source: "./media/characters/ruchex/front.svg",
  51585. extra: 877/820,
  51586. bottom: 17/894
  51587. },
  51588. extraAttributes: {
  51589. "width": {
  51590. name: "Width",
  51591. power: 1,
  51592. type: "length",
  51593. base: math.unit(4.757, "feet")
  51594. },
  51595. }
  51596. },
  51597. },
  51598. [
  51599. {
  51600. name: "Normal",
  51601. height: math.unit(6 + 5/12, "feet"),
  51602. default: true
  51603. },
  51604. ]
  51605. ))
  51606. characterMakers.push(() => makeCharacter(
  51607. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51608. {
  51609. dressedFront: {
  51610. height: math.unit(191, "cm"),
  51611. weight: math.unit(80, "kg"),
  51612. name: "Front",
  51613. image: {
  51614. source: "./media/characters/buster/dressed-front.svg",
  51615. extra: 1022/973,
  51616. bottom: 69/1091
  51617. }
  51618. },
  51619. dressedBack: {
  51620. height: math.unit(191, "cm"),
  51621. weight: math.unit(80, "kg"),
  51622. name: "Back",
  51623. image: {
  51624. source: "./media/characters/buster/dressed-back.svg",
  51625. extra: 1018/970,
  51626. bottom: 55/1073
  51627. }
  51628. },
  51629. nudeFront: {
  51630. height: math.unit(191, "cm"),
  51631. weight: math.unit(80, "kg"),
  51632. name: "Front (Nude)",
  51633. image: {
  51634. source: "./media/characters/buster/nude-front.svg",
  51635. extra: 1022/973,
  51636. bottom: 69/1091
  51637. }
  51638. },
  51639. nudeBack: {
  51640. height: math.unit(191, "cm"),
  51641. weight: math.unit(80, "kg"),
  51642. name: "Back (Nude)",
  51643. image: {
  51644. source: "./media/characters/buster/nude-back.svg",
  51645. extra: 1018/970,
  51646. bottom: 55/1073
  51647. }
  51648. },
  51649. dick: {
  51650. height: math.unit(2.59, "feet"),
  51651. name: "Dick",
  51652. image: {
  51653. source: "./media/characters/buster/dick.svg"
  51654. }
  51655. },
  51656. ass: {
  51657. height: math.unit(1.2, "feet"),
  51658. name: "Ass",
  51659. image: {
  51660. source: "./media/characters/buster/ass.svg"
  51661. }
  51662. },
  51663. },
  51664. [
  51665. {
  51666. name: "Normal",
  51667. height: math.unit(191, "cm"),
  51668. default: true
  51669. },
  51670. ]
  51671. ))
  51672. characterMakers.push(() => makeCharacter(
  51673. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51674. {
  51675. side: {
  51676. height: math.unit(8.1, "feet"),
  51677. weight: math.unit(3500, "lb"),
  51678. name: "Side",
  51679. image: {
  51680. source: "./media/characters/sonya/side.svg",
  51681. extra: 1730/1317,
  51682. bottom: 86/1816
  51683. }
  51684. },
  51685. },
  51686. [
  51687. {
  51688. name: "Normal",
  51689. height: math.unit(8.1, "feet"),
  51690. default: true
  51691. },
  51692. ]
  51693. ))
  51694. characterMakers.push(() => makeCharacter(
  51695. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51696. {
  51697. front: {
  51698. height: math.unit(6, "feet"),
  51699. weight: math.unit(150, "lb"),
  51700. name: "Front",
  51701. image: {
  51702. source: "./media/characters/cadence-andrysiak/front.svg",
  51703. extra: 1164/1121,
  51704. bottom: 60/1224
  51705. }
  51706. },
  51707. back: {
  51708. height: math.unit(6, "feet"),
  51709. weight: math.unit(150, "lb"),
  51710. name: "Back",
  51711. image: {
  51712. source: "./media/characters/cadence-andrysiak/back.svg",
  51713. extra: 1200/1165,
  51714. bottom: 9/1209
  51715. }
  51716. },
  51717. dressed: {
  51718. height: math.unit(6, "feet"),
  51719. weight: math.unit(150, "lb"),
  51720. name: "Dressed",
  51721. image: {
  51722. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51723. extra: 1164/1121,
  51724. bottom: 60/1224
  51725. }
  51726. },
  51727. },
  51728. [
  51729. {
  51730. name: "Micro",
  51731. height: math.unit(1, "mm")
  51732. },
  51733. {
  51734. name: "Normal",
  51735. height: math.unit(6, "feet"),
  51736. default: true
  51737. },
  51738. ]
  51739. ))
  51740. characterMakers.push(() => makeCharacter(
  51741. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51742. {
  51743. front: {
  51744. height: math.unit(60, "inches"),
  51745. weight: math.unit(16, "lb"),
  51746. preyCapacity: math.unit(80, "liters"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/penny-lynx/front.svg",
  51750. extra: 1959/1769,
  51751. bottom: 49/2008
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Nokia",
  51758. height: math.unit(2, "inches")
  51759. },
  51760. {
  51761. name: "Desktop",
  51762. height: math.unit(24, "inches")
  51763. },
  51764. {
  51765. name: "TV",
  51766. height: math.unit(60, "inches")
  51767. },
  51768. {
  51769. name: "Jumbotron",
  51770. height: math.unit(12, "feet")
  51771. },
  51772. {
  51773. name: "Billboard",
  51774. height: math.unit(48, "feet"),
  51775. default: true
  51776. },
  51777. {
  51778. name: "IMAX",
  51779. height: math.unit(96, "feet")
  51780. },
  51781. {
  51782. name: "SINGULARITY",
  51783. height: math.unit(864938, "miles")
  51784. },
  51785. ]
  51786. ))
  51787. characterMakers.push(() => makeCharacter(
  51788. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51789. {
  51790. front: {
  51791. height: math.unit(5 + 4/12, "feet"),
  51792. weight: math.unit(230, "lb"),
  51793. name: "Front",
  51794. image: {
  51795. source: "./media/characters/sukebe/front.svg",
  51796. extra: 2130/2038,
  51797. bottom: 90/2220
  51798. }
  51799. },
  51800. back: {
  51801. height: math.unit(3.48, "feet"),
  51802. weight: math.unit(230, "lb"),
  51803. name: "Back",
  51804. image: {
  51805. source: "./media/characters/sukebe/back.svg",
  51806. extra: 1670/1604,
  51807. bottom: 0/1670
  51808. }
  51809. },
  51810. },
  51811. [
  51812. {
  51813. name: "Normal",
  51814. height: math.unit(5 + 4/12, "feet"),
  51815. default: true
  51816. },
  51817. ]
  51818. ))
  51819. characterMakers.push(() => makeCharacter(
  51820. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51821. {
  51822. front: {
  51823. height: math.unit(6, "feet"),
  51824. name: "Front",
  51825. image: {
  51826. source: "./media/characters/nylla/front.svg",
  51827. extra: 1868/1699,
  51828. bottom: 97/1965
  51829. }
  51830. },
  51831. back: {
  51832. height: math.unit(6, "feet"),
  51833. name: "Back",
  51834. image: {
  51835. source: "./media/characters/nylla/back.svg",
  51836. extra: 1889/1712,
  51837. bottom: 93/1982
  51838. }
  51839. },
  51840. frontNsfw: {
  51841. height: math.unit(6, "feet"),
  51842. name: "Front (NSFW)",
  51843. image: {
  51844. source: "./media/characters/nylla/front-nsfw.svg",
  51845. extra: 1868/1699,
  51846. bottom: 97/1965
  51847. },
  51848. extraAttributes: {
  51849. "dickLength": {
  51850. name: "Dick Length",
  51851. power: 1,
  51852. type: "length",
  51853. base: math.unit(1.4, "feet")
  51854. },
  51855. "cumVolume": {
  51856. name: "Cum Volume",
  51857. power: 3,
  51858. type: "volume",
  51859. base: math.unit(100, "mL")
  51860. },
  51861. }
  51862. },
  51863. backNsfw: {
  51864. height: math.unit(6, "feet"),
  51865. name: "Back (NSFW)",
  51866. image: {
  51867. source: "./media/characters/nylla/back-nsfw.svg",
  51868. extra: 1889/1712,
  51869. bottom: 93/1982
  51870. }
  51871. },
  51872. maw: {
  51873. height: math.unit(2.10, "feet"),
  51874. name: "Maw",
  51875. image: {
  51876. source: "./media/characters/nylla/maw.svg"
  51877. }
  51878. },
  51879. paws: {
  51880. height: math.unit(2.06, "feet"),
  51881. name: "Paws",
  51882. image: {
  51883. source: "./media/characters/nylla/paws.svg"
  51884. }
  51885. },
  51886. muzzle: {
  51887. height: math.unit(0.61, "feet"),
  51888. name: "Muzzle",
  51889. image: {
  51890. source: "./media/characters/nylla/muzzle.svg"
  51891. }
  51892. },
  51893. sheath: {
  51894. height: math.unit(1.305, "feet"),
  51895. name: "Sheath",
  51896. image: {
  51897. source: "./media/characters/nylla/sheath.svg"
  51898. }
  51899. },
  51900. },
  51901. [
  51902. {
  51903. name: "Micro",
  51904. height: math.unit(7.5, "inches")
  51905. },
  51906. {
  51907. name: "Normal",
  51908. height: math.unit(7, "feet"),
  51909. default: true
  51910. },
  51911. {
  51912. name: "Macro",
  51913. height: math.unit(60, "feet")
  51914. },
  51915. {
  51916. name: "Mega",
  51917. height: math.unit(200, "feet")
  51918. },
  51919. ]
  51920. ))
  51921. characterMakers.push(() => makeCharacter(
  51922. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51923. {
  51924. front: {
  51925. height: math.unit(10, "feet"),
  51926. weight: math.unit(2300, "lb"),
  51927. name: "Front",
  51928. image: {
  51929. source: "./media/characters/hunt3r/front.svg",
  51930. extra: 1909/1742,
  51931. bottom: 46/1955
  51932. }
  51933. },
  51934. },
  51935. [
  51936. {
  51937. name: "Normal",
  51938. height: math.unit(10, "feet"),
  51939. default: true
  51940. },
  51941. ]
  51942. ))
  51943. characterMakers.push(() => makeCharacter(
  51944. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51945. {
  51946. dressed: {
  51947. height: math.unit(11, "feet"),
  51948. weight: math.unit(18500, "lb"),
  51949. preyCapacity: math.unit(9, "people"),
  51950. name: "Dressed",
  51951. image: {
  51952. source: "./media/characters/cylphis/dressed.svg",
  51953. extra: 1028/1003,
  51954. bottom: 75/1103
  51955. },
  51956. },
  51957. undressed: {
  51958. height: math.unit(11, "feet"),
  51959. weight: math.unit(18500, "lb"),
  51960. preyCapacity: math.unit(9, "people"),
  51961. name: "Undressed",
  51962. image: {
  51963. source: "./media/characters/cylphis/undressed.svg",
  51964. extra: 1028/1003,
  51965. bottom: 75/1103
  51966. }
  51967. },
  51968. full: {
  51969. height: math.unit(11, "feet"),
  51970. weight: math.unit(18500 + 150*9, "lb"),
  51971. preyCapacity: math.unit(9, "people"),
  51972. name: "Full",
  51973. image: {
  51974. source: "./media/characters/cylphis/full.svg",
  51975. extra: 1028/1003,
  51976. bottom: 75/1103
  51977. }
  51978. },
  51979. },
  51980. [
  51981. {
  51982. name: "Small",
  51983. height: math.unit(8, "feet")
  51984. },
  51985. {
  51986. name: "Normal",
  51987. height: math.unit(11, "feet"),
  51988. default: true
  51989. },
  51990. ]
  51991. ))
  51992. characterMakers.push(() => makeCharacter(
  51993. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51994. {
  51995. front: {
  51996. height: math.unit(2 + 7/12, "feet"),
  51997. name: "Front",
  51998. image: {
  51999. source: "./media/characters/orishan/front.svg",
  52000. extra: 1058/1023,
  52001. bottom: 23/1081
  52002. }
  52003. },
  52004. back: {
  52005. height: math.unit(2 + 7/12, "feet"),
  52006. name: "Back",
  52007. image: {
  52008. source: "./media/characters/orishan/back.svg",
  52009. extra: 1058/1023,
  52010. bottom: 23/1081
  52011. }
  52012. },
  52013. },
  52014. [
  52015. {
  52016. name: "Micro",
  52017. height: math.unit(2, "cm")
  52018. },
  52019. {
  52020. name: "Normal",
  52021. height: math.unit(2 + 7/12, "feet"),
  52022. default: true
  52023. },
  52024. ]
  52025. ))
  52026. characterMakers.push(() => makeCharacter(
  52027. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52028. {
  52029. front: {
  52030. height: math.unit(3, "meters"),
  52031. weight: math.unit(508, "kg"),
  52032. name: "Front",
  52033. image: {
  52034. source: "./media/characters/seranis/front.svg",
  52035. extra: 1478/1454,
  52036. bottom: 41/1519
  52037. }
  52038. },
  52039. },
  52040. [
  52041. {
  52042. name: "Normal",
  52043. height: math.unit(3, "meters"),
  52044. default: true
  52045. },
  52046. {
  52047. name: "Macro",
  52048. height: math.unit(108, "meters")
  52049. },
  52050. {
  52051. name: "Megamacro",
  52052. height: math.unit(1250, "meters")
  52053. },
  52054. ]
  52055. ))
  52056. characterMakers.push(() => makeCharacter(
  52057. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52058. {
  52059. undressed: {
  52060. height: math.unit(5 + 3/12, "feet"),
  52061. name: "Undressed",
  52062. image: {
  52063. source: "./media/characters/ankou/undressed.svg",
  52064. extra: 1301/1213,
  52065. bottom: 87/1388
  52066. }
  52067. },
  52068. dressed: {
  52069. height: math.unit(5 + 3/12, "feet"),
  52070. name: "Dressed",
  52071. image: {
  52072. source: "./media/characters/ankou/dressed.svg",
  52073. extra: 1301/1213,
  52074. bottom: 87/1388
  52075. }
  52076. },
  52077. head: {
  52078. height: math.unit(1.61, "feet"),
  52079. name: "Head",
  52080. image: {
  52081. source: "./media/characters/ankou/head.svg"
  52082. }
  52083. },
  52084. },
  52085. [
  52086. {
  52087. name: "Normal",
  52088. height: math.unit(5 + 3/12, "feet"),
  52089. default: true
  52090. },
  52091. ]
  52092. ))
  52093. characterMakers.push(() => makeCharacter(
  52094. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52095. {
  52096. side: {
  52097. height: math.unit(6 + 3/12, "feet"),
  52098. weight: math.unit(200, "kg"),
  52099. name: "Side",
  52100. image: {
  52101. source: "./media/characters/juniper-skunktaur/side.svg",
  52102. extra: 1574/1229,
  52103. bottom: 38/1612
  52104. }
  52105. },
  52106. front: {
  52107. height: math.unit(6 + 3/12, "feet"),
  52108. weight: math.unit(200, "kg"),
  52109. name: "Front",
  52110. image: {
  52111. source: "./media/characters/juniper-skunktaur/front.svg",
  52112. extra: 1337/1278,
  52113. bottom: 22/1359
  52114. }
  52115. },
  52116. back: {
  52117. height: math.unit(6 + 3/12, "feet"),
  52118. weight: math.unit(200, "kg"),
  52119. name: "Back",
  52120. image: {
  52121. source: "./media/characters/juniper-skunktaur/back.svg",
  52122. extra: 1618/1273,
  52123. bottom: 13/1631
  52124. }
  52125. },
  52126. top: {
  52127. height: math.unit(2.62, "feet"),
  52128. weight: math.unit(200, "kg"),
  52129. name: "Top",
  52130. image: {
  52131. source: "./media/characters/juniper-skunktaur/top.svg"
  52132. }
  52133. },
  52134. },
  52135. [
  52136. {
  52137. name: "Normal",
  52138. height: math.unit(6 + 3/12, "feet"),
  52139. default: true
  52140. },
  52141. ]
  52142. ))
  52143. characterMakers.push(() => makeCharacter(
  52144. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52145. {
  52146. front: {
  52147. height: math.unit(20.5, "feet"),
  52148. name: "Front",
  52149. image: {
  52150. source: "./media/characters/rei/front.svg",
  52151. extra: 1349/1195,
  52152. bottom: 31/1380
  52153. }
  52154. },
  52155. back: {
  52156. height: math.unit(20.5, "feet"),
  52157. name: "Back",
  52158. image: {
  52159. source: "./media/characters/rei/back.svg",
  52160. extra: 1358/1204,
  52161. bottom: 22/1380
  52162. }
  52163. },
  52164. pawsDigi: {
  52165. height: math.unit(3.45, "feet"),
  52166. name: "Paws (Digi)",
  52167. image: {
  52168. source: "./media/characters/rei/paws-digi.svg"
  52169. }
  52170. },
  52171. pawsPlanti: {
  52172. height: math.unit(3.45, "feet"),
  52173. name: "Paws (Planti)",
  52174. image: {
  52175. source: "./media/characters/rei/paws-planti.svg"
  52176. }
  52177. },
  52178. },
  52179. [
  52180. {
  52181. name: "Normal",
  52182. height: math.unit(20.5, "feet"),
  52183. default: true
  52184. },
  52185. ]
  52186. ))
  52187. characterMakers.push(() => makeCharacter(
  52188. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52189. {
  52190. front: {
  52191. height: math.unit(5 + 11/12, "feet"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/carina/front.svg",
  52195. extra: 1720/1449,
  52196. bottom: 14/1734
  52197. }
  52198. },
  52199. back: {
  52200. height: math.unit(5 + 11/12, "feet"),
  52201. name: "Back",
  52202. image: {
  52203. source: "./media/characters/carina/back.svg",
  52204. extra: 1493/1445,
  52205. bottom: 17/1510
  52206. }
  52207. },
  52208. paw: {
  52209. height: math.unit(0.92, "feet"),
  52210. name: "Paw",
  52211. image: {
  52212. source: "./media/characters/carina/paw.svg"
  52213. }
  52214. },
  52215. },
  52216. [
  52217. {
  52218. name: "Normal",
  52219. height: math.unit(5 + 11/12, "feet"),
  52220. default: true
  52221. },
  52222. ]
  52223. ))
  52224. characterMakers.push(() => makeCharacter(
  52225. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52226. {
  52227. front: {
  52228. height: math.unit(4.88, "meters"),
  52229. name: "Front",
  52230. image: {
  52231. source: "./media/characters/maya/front.svg",
  52232. extra: 1222/1145,
  52233. bottom: 57/1279
  52234. }
  52235. },
  52236. },
  52237. [
  52238. {
  52239. name: "Normal",
  52240. height: math.unit(4.88, "meters"),
  52241. default: true
  52242. },
  52243. {
  52244. name: "Macro",
  52245. height: math.unit(38.1, "meters")
  52246. },
  52247. {
  52248. name: "Macro+",
  52249. height: math.unit(152.4, "meters")
  52250. },
  52251. {
  52252. name: "Macro++",
  52253. height: math.unit(16.09, "km")
  52254. },
  52255. {
  52256. name: "Mega-macro",
  52257. height: math.unit(700, "megameters")
  52258. },
  52259. ]
  52260. ))
  52261. characterMakers.push(() => makeCharacter(
  52262. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52263. {
  52264. front: {
  52265. height: math.unit(6 + 2/12, "feet"),
  52266. weight: math.unit(500, "lb"),
  52267. preyCapacity: math.unit(4, "people"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/yepir/front.svg"
  52271. }
  52272. },
  52273. side: {
  52274. height: math.unit(6 + 2/12, "feet"),
  52275. weight: math.unit(500, "lb"),
  52276. preyCapacity: math.unit(4, "people"),
  52277. name: "Side",
  52278. image: {
  52279. source: "./media/characters/yepir/side.svg"
  52280. }
  52281. },
  52282. paw: {
  52283. height: math.unit(1.05, "feet"),
  52284. name: "Paw",
  52285. image: {
  52286. source: "./media/characters/yepir/paw.svg"
  52287. }
  52288. },
  52289. },
  52290. [
  52291. {
  52292. name: "Normal",
  52293. height: math.unit(6 + 2/12, "feet"),
  52294. default: true
  52295. },
  52296. ]
  52297. ))
  52298. characterMakers.push(() => makeCharacter(
  52299. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52300. {
  52301. front: {
  52302. height: math.unit(5 + 4/12, "feet"),
  52303. name: "Front",
  52304. image: {
  52305. source: "./media/characters/russec/front.svg",
  52306. extra: 1926/1626,
  52307. bottom: 72/1998
  52308. }
  52309. },
  52310. back: {
  52311. height: math.unit(5 + 4/12, "feet"),
  52312. name: "Back",
  52313. image: {
  52314. source: "./media/characters/russec/back.svg",
  52315. extra: 1910/1591,
  52316. bottom: 48/1958
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Small",
  52323. height: math.unit(5 + 4/12, "feet")
  52324. },
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(72, "feet"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52334. {
  52335. side: {
  52336. height: math.unit(12, "feet"),
  52337. name: "Side",
  52338. image: {
  52339. source: "./media/characters/cianus/side.svg",
  52340. extra: 808/526,
  52341. bottom: 61/869
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(12, "feet"),
  52349. default: true
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52355. {
  52356. front: {
  52357. height: math.unit(9 + 6/12, "feet"),
  52358. weight: math.unit(300, "lb"),
  52359. name: "Front",
  52360. image: {
  52361. source: "./media/characters/ahab/front.svg",
  52362. extra: 1897/1868,
  52363. bottom: 121/2018
  52364. }
  52365. },
  52366. frontNsfw: {
  52367. height: math.unit(9 + 6/12, "feet"),
  52368. weight: math.unit(300, "lb"),
  52369. name: "Front-nsfw",
  52370. image: {
  52371. source: "./media/characters/ahab/front-nsfw.svg",
  52372. extra: 1897/1868,
  52373. bottom: 121/2018
  52374. }
  52375. },
  52376. },
  52377. [
  52378. {
  52379. name: "Normal",
  52380. height: math.unit(9 + 6/12, "feet")
  52381. },
  52382. {
  52383. name: "Macro",
  52384. height: math.unit(657, "feet"),
  52385. default: true
  52386. },
  52387. ]
  52388. ))
  52389. characterMakers.push(() => makeCharacter(
  52390. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52391. {
  52392. front: {
  52393. height: math.unit(2.69, "meters"),
  52394. weight: math.unit(132, "kg"),
  52395. name: "Front",
  52396. image: {
  52397. source: "./media/characters/aarkus/front.svg",
  52398. extra: 1400/1231,
  52399. bottom: 34/1434
  52400. }
  52401. },
  52402. back: {
  52403. height: math.unit(2.69, "meters"),
  52404. weight: math.unit(132, "kg"),
  52405. name: "Back",
  52406. image: {
  52407. source: "./media/characters/aarkus/back.svg",
  52408. extra: 1381/1218,
  52409. bottom: 30/1411
  52410. }
  52411. },
  52412. frontNsfw: {
  52413. height: math.unit(2.69, "meters"),
  52414. weight: math.unit(132, "kg"),
  52415. name: "Front (NSFW)",
  52416. image: {
  52417. source: "./media/characters/aarkus/front-nsfw.svg",
  52418. extra: 1400/1231,
  52419. bottom: 34/1434
  52420. }
  52421. },
  52422. foot: {
  52423. height: math.unit(1.45, "feet"),
  52424. name: "Foot",
  52425. image: {
  52426. source: "./media/characters/aarkus/foot.svg"
  52427. }
  52428. },
  52429. head: {
  52430. height: math.unit(2.85, "feet"),
  52431. name: "Head",
  52432. image: {
  52433. source: "./media/characters/aarkus/head.svg"
  52434. }
  52435. },
  52436. headAlt: {
  52437. height: math.unit(3.07, "feet"),
  52438. name: "Head (Alt)",
  52439. image: {
  52440. source: "./media/characters/aarkus/head-alt.svg"
  52441. }
  52442. },
  52443. mouth: {
  52444. height: math.unit(1.25, "feet"),
  52445. name: "Mouth",
  52446. image: {
  52447. source: "./media/characters/aarkus/mouth.svg"
  52448. }
  52449. },
  52450. dick: {
  52451. height: math.unit(1.77, "feet"),
  52452. name: "Dick",
  52453. image: {
  52454. source: "./media/characters/aarkus/dick.svg"
  52455. }
  52456. },
  52457. },
  52458. [
  52459. {
  52460. name: "Normal",
  52461. height: math.unit(2.69, "meters"),
  52462. default: true
  52463. },
  52464. {
  52465. name: "Macro",
  52466. height: math.unit(269, "meters")
  52467. },
  52468. {
  52469. name: "Macro+",
  52470. height: math.unit(672.5, "meters")
  52471. },
  52472. {
  52473. name: "Megamacro",
  52474. height: math.unit(2.017, "km")
  52475. },
  52476. ]
  52477. ))
  52478. characterMakers.push(() => makeCharacter(
  52479. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52480. {
  52481. front: {
  52482. height: math.unit(23.47, "cm"),
  52483. weight: math.unit(600, "grams"),
  52484. name: "Front",
  52485. image: {
  52486. source: "./media/characters/diode/front.svg",
  52487. extra: 1778/1396,
  52488. bottom: 95/1873
  52489. }
  52490. },
  52491. side: {
  52492. height: math.unit(23.47, "cm"),
  52493. weight: math.unit(600, "grams"),
  52494. name: "Side",
  52495. image: {
  52496. source: "./media/characters/diode/side.svg",
  52497. extra: 1831/1404,
  52498. bottom: 86/1917
  52499. }
  52500. },
  52501. wings: {
  52502. height: math.unit(0.683, "feet"),
  52503. name: "Wings",
  52504. image: {
  52505. source: "./media/characters/diode/wings.svg"
  52506. }
  52507. },
  52508. },
  52509. [
  52510. {
  52511. name: "Normal",
  52512. height: math.unit(23.47, "cm"),
  52513. default: true
  52514. },
  52515. ]
  52516. ))
  52517. characterMakers.push(() => makeCharacter(
  52518. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52519. {
  52520. front: {
  52521. height: math.unit(6 + 3/12, "feet"),
  52522. weight: math.unit(250, "lb"),
  52523. name: "Front",
  52524. image: {
  52525. source: "./media/characters/reika/front.svg",
  52526. extra: 1120/1078,
  52527. bottom: 86/1206
  52528. }
  52529. },
  52530. },
  52531. [
  52532. {
  52533. name: "Normal",
  52534. height: math.unit(6 + 3/12, "feet"),
  52535. default: true
  52536. },
  52537. ]
  52538. ))
  52539. characterMakers.push(() => makeCharacter(
  52540. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52541. {
  52542. front: {
  52543. height: math.unit(16 + 8/12, "feet"),
  52544. weight: math.unit(9000, "lb"),
  52545. name: "Front",
  52546. image: {
  52547. source: "./media/characters/lokuto-takama/front.svg",
  52548. extra: 1774/1632,
  52549. bottom: 147/1921
  52550. },
  52551. extraAttributes: {
  52552. "bustWidth": {
  52553. name: "Bust Width",
  52554. power: 1,
  52555. type: "length",
  52556. base: math.unit(2.4, "meters")
  52557. },
  52558. "breastWeight": {
  52559. name: "Breast Weight",
  52560. power: 3,
  52561. type: "mass",
  52562. base: math.unit(1000, "kg")
  52563. },
  52564. }
  52565. },
  52566. },
  52567. [
  52568. {
  52569. name: "Normal",
  52570. height: math.unit(16 + 8/12, "feet"),
  52571. default: true
  52572. },
  52573. ]
  52574. ))
  52575. characterMakers.push(() => makeCharacter(
  52576. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52577. {
  52578. front: {
  52579. height: math.unit(10, "cm"),
  52580. weight: math.unit(850, "grams"),
  52581. name: "Front",
  52582. image: {
  52583. source: "./media/characters/owak-bone/front.svg",
  52584. extra: 1965/1801,
  52585. bottom: 31/1996
  52586. }
  52587. },
  52588. },
  52589. [
  52590. {
  52591. name: "Normal",
  52592. height: math.unit(10, "cm"),
  52593. default: true
  52594. },
  52595. ]
  52596. ))
  52597. characterMakers.push(() => makeCharacter(
  52598. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52599. {
  52600. front: {
  52601. height: math.unit(2 + 6/12, "feet"),
  52602. weight: math.unit(9, "lb"),
  52603. name: "Front",
  52604. image: {
  52605. source: "./media/characters/muffin/front.svg",
  52606. extra: 1220/1195,
  52607. bottom: 84/1304
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Normal",
  52614. height: math.unit(2 + 6/12, "feet"),
  52615. default: true
  52616. },
  52617. ]
  52618. ))
  52619. characterMakers.push(() => makeCharacter(
  52620. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52621. {
  52622. front: {
  52623. height: math.unit(7, "feet"),
  52624. name: "Front",
  52625. image: {
  52626. source: "./media/characters/chimera/front.svg",
  52627. extra: 1752/1614,
  52628. bottom: 68/1820
  52629. }
  52630. },
  52631. },
  52632. [
  52633. {
  52634. name: "Normal",
  52635. height: math.unit(7, "feet")
  52636. },
  52637. {
  52638. name: "Gigamacro",
  52639. height: math.unit(2.9, "gigameters"),
  52640. default: true
  52641. },
  52642. {
  52643. name: "Universal",
  52644. height: math.unit(1.56e26, "yottameters")
  52645. },
  52646. ]
  52647. ))
  52648. characterMakers.push(() => makeCharacter(
  52649. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52650. {
  52651. front: {
  52652. height: math.unit(3, "feet"),
  52653. weight: math.unit(20, "lb"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/kit-fennec-fox/front.svg",
  52657. extra: 1027/932,
  52658. bottom: 16/1043
  52659. }
  52660. },
  52661. back: {
  52662. height: math.unit(3, "feet"),
  52663. weight: math.unit(20, "lb"),
  52664. name: "Back",
  52665. image: {
  52666. source: "./media/characters/kit-fennec-fox/back.svg",
  52667. extra: 1027/932,
  52668. bottom: 16/1043
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(3, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52682. {
  52683. front: {
  52684. height: math.unit(167, "cm"),
  52685. name: "Front",
  52686. image: {
  52687. source: "./media/characters/blue-otter/front.svg",
  52688. extra: 1951/1920,
  52689. bottom: 31/1982
  52690. }
  52691. },
  52692. },
  52693. [
  52694. {
  52695. name: "Otter-Sized",
  52696. height: math.unit(100, "cm")
  52697. },
  52698. {
  52699. name: "Normal",
  52700. height: math.unit(167, "cm"),
  52701. default: true
  52702. },
  52703. ]
  52704. ))
  52705. characterMakers.push(() => makeCharacter(
  52706. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52707. {
  52708. front: {
  52709. height: math.unit(4 + 4/12, "feet"),
  52710. name: "Front",
  52711. image: {
  52712. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52713. extra: 1072/1067,
  52714. bottom: 117/1189
  52715. }
  52716. },
  52717. back: {
  52718. height: math.unit(4 + 4/12, "feet"),
  52719. name: "Back",
  52720. image: {
  52721. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52722. extra: 1135/1129,
  52723. bottom: 57/1192
  52724. }
  52725. },
  52726. head: {
  52727. height: math.unit(1.77, "feet"),
  52728. name: "Head",
  52729. image: {
  52730. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52731. }
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Normal",
  52737. height: math.unit(4 + 4/12, "feet"),
  52738. default: true
  52739. },
  52740. ]
  52741. ))
  52742. characterMakers.push(() => makeCharacter(
  52743. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52744. {
  52745. front: {
  52746. height: math.unit(2, "inches"),
  52747. name: "Front",
  52748. image: {
  52749. source: "./media/characters/carley-hartford/front.svg",
  52750. extra: 1035/988,
  52751. bottom: 23/1058
  52752. }
  52753. },
  52754. back: {
  52755. height: math.unit(2, "inches"),
  52756. name: "Back",
  52757. image: {
  52758. source: "./media/characters/carley-hartford/back.svg",
  52759. extra: 1035/988,
  52760. bottom: 23/1058
  52761. }
  52762. },
  52763. dressed: {
  52764. height: math.unit(2, "inches"),
  52765. name: "Dressed",
  52766. image: {
  52767. source: "./media/characters/carley-hartford/dressed.svg",
  52768. extra: 651/620,
  52769. bottom: 0/651
  52770. }
  52771. },
  52772. },
  52773. [
  52774. {
  52775. name: "Micro",
  52776. height: math.unit(2, "inches"),
  52777. default: true
  52778. },
  52779. {
  52780. name: "Macro",
  52781. height: math.unit(6 + 3/12, "feet")
  52782. },
  52783. ]
  52784. ))
  52785. characterMakers.push(() => makeCharacter(
  52786. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52787. {
  52788. front: {
  52789. height: math.unit(2 + 3/12, "feet"),
  52790. weight: math.unit(15 + 7/16, "lb"),
  52791. name: "Front",
  52792. image: {
  52793. source: "./media/characters/duke/front.svg",
  52794. extra: 910/815,
  52795. bottom: 30/940
  52796. }
  52797. },
  52798. },
  52799. [
  52800. {
  52801. name: "Normal",
  52802. height: math.unit(2 + 3/12, "feet"),
  52803. default: true
  52804. },
  52805. ]
  52806. ))
  52807. characterMakers.push(() => makeCharacter(
  52808. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52809. {
  52810. front: {
  52811. height: math.unit(5 + 4/12, "feet"),
  52812. weight: math.unit(156, "lb"),
  52813. name: "Front",
  52814. image: {
  52815. source: "./media/characters/dein/front.svg",
  52816. extra: 855/815,
  52817. bottom: 48/903
  52818. }
  52819. },
  52820. side: {
  52821. height: math.unit(5 + 4/12, "feet"),
  52822. weight: math.unit(156, "lb"),
  52823. name: "side",
  52824. image: {
  52825. source: "./media/characters/dein/side.svg",
  52826. extra: 846/803,
  52827. bottom: 25/871
  52828. }
  52829. },
  52830. maw: {
  52831. height: math.unit(1.45, "feet"),
  52832. name: "Maw",
  52833. image: {
  52834. source: "./media/characters/dein/maw.svg"
  52835. }
  52836. },
  52837. },
  52838. [
  52839. {
  52840. name: "Ferret Sized",
  52841. height: math.unit(2 + 5/12, "feet")
  52842. },
  52843. {
  52844. name: "Normal",
  52845. height: math.unit(5 + 4/12, "feet"),
  52846. default: true
  52847. },
  52848. ]
  52849. ))
  52850. characterMakers.push(() => makeCharacter(
  52851. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52852. {
  52853. front: {
  52854. height: math.unit(84 + 8/12, "feet"),
  52855. weight: math.unit(942180, "lb"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/daurine-arima/front.svg",
  52859. extra: 1989/1782,
  52860. bottom: 37/2026
  52861. }
  52862. },
  52863. side: {
  52864. height: math.unit(84 + 8/12, "feet"),
  52865. weight: math.unit(942180, "lb"),
  52866. name: "Side",
  52867. image: {
  52868. source: "./media/characters/daurine-arima/side.svg",
  52869. extra: 1997/1790,
  52870. bottom: 21/2018
  52871. }
  52872. },
  52873. back: {
  52874. height: math.unit(84 + 8/12, "feet"),
  52875. weight: math.unit(942180, "lb"),
  52876. name: "Back",
  52877. image: {
  52878. source: "./media/characters/daurine-arima/back.svg",
  52879. extra: 1992/1800,
  52880. bottom: 12/2004
  52881. }
  52882. },
  52883. head: {
  52884. height: math.unit(15.5, "feet"),
  52885. name: "Head",
  52886. image: {
  52887. source: "./media/characters/daurine-arima/head.svg"
  52888. }
  52889. },
  52890. headAlt: {
  52891. height: math.unit(19.19, "feet"),
  52892. name: "Head (Alt)",
  52893. image: {
  52894. source: "./media/characters/daurine-arima/head-alt.svg"
  52895. }
  52896. },
  52897. },
  52898. [
  52899. {
  52900. name: "Minimum height",
  52901. height: math.unit(8 + 10/12, "feet")
  52902. },
  52903. {
  52904. name: "Comfort height",
  52905. height: math.unit(19 + 6 /12, "feet")
  52906. },
  52907. {
  52908. name: "\"Normal\" height",
  52909. height: math.unit(28 + 10/12, "feet")
  52910. },
  52911. {
  52912. name: "Base height",
  52913. height: math.unit(84 + 8/12, "feet"),
  52914. default: true
  52915. },
  52916. {
  52917. name: "Mini-macro",
  52918. height: math.unit(2360, "feet")
  52919. },
  52920. {
  52921. name: "Macro",
  52922. height: math.unit(10, "miles")
  52923. },
  52924. {
  52925. name: "Goddess",
  52926. height: math.unit(9.99e40, "yottameters")
  52927. },
  52928. ]
  52929. ))
  52930. characterMakers.push(() => makeCharacter(
  52931. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52932. {
  52933. front: {
  52934. height: math.unit(2.3, "meters"),
  52935. name: "Front",
  52936. image: {
  52937. source: "./media/characters/cilenomon/front.svg",
  52938. extra: 1963/1778,
  52939. bottom: 54/2017
  52940. }
  52941. },
  52942. },
  52943. [
  52944. {
  52945. name: "Normal",
  52946. height: math.unit(2.3, "meters"),
  52947. default: true
  52948. },
  52949. {
  52950. name: "Big",
  52951. height: math.unit(5, "meters")
  52952. },
  52953. {
  52954. name: "Macro",
  52955. height: math.unit(30, "meters")
  52956. },
  52957. {
  52958. name: "True",
  52959. height: math.unit(1, "universe")
  52960. },
  52961. ]
  52962. ))
  52963. characterMakers.push(() => makeCharacter(
  52964. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52965. {
  52966. front: {
  52967. height: math.unit(5, "feet"),
  52968. name: "Front",
  52969. image: {
  52970. source: "./media/characters/sen-mink/front.svg",
  52971. extra: 1727/1675,
  52972. bottom: 35/1762
  52973. }
  52974. },
  52975. },
  52976. [
  52977. {
  52978. name: "Normal",
  52979. height: math.unit(5, "feet"),
  52980. default: true
  52981. },
  52982. ]
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52986. {
  52987. front: {
  52988. height: math.unit(5.42999, "feet"),
  52989. weight: math.unit(100, "lb"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/ophois/front.svg",
  52993. extra: 1429/1286,
  52994. bottom: 60/1489
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Normal",
  53001. height: math.unit(5.42999, "feet"),
  53002. default: true
  53003. },
  53004. ]
  53005. ))
  53006. characterMakers.push(() => makeCharacter(
  53007. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53008. {
  53009. front: {
  53010. height: math.unit(2, "meters"),
  53011. name: "Front",
  53012. image: {
  53013. source: "./media/characters/riley/front.svg",
  53014. extra: 1779/1754,
  53015. bottom: 139/1918
  53016. }
  53017. },
  53018. },
  53019. [
  53020. {
  53021. name: "Normal",
  53022. height: math.unit(2, "meters"),
  53023. default: true
  53024. },
  53025. ]
  53026. ))
  53027. characterMakers.push(() => makeCharacter(
  53028. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53029. {
  53030. front: {
  53031. height: math.unit(6 + 2/12, "feet"),
  53032. weight: math.unit(195, "lb"),
  53033. preyCapacity: math.unit(6, "people"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/shuken-flash/front.svg",
  53037. extra: 1905/1739,
  53038. bottom: 65/1970
  53039. }
  53040. },
  53041. back: {
  53042. height: math.unit(6 + 2/12, "feet"),
  53043. weight: math.unit(195, "lb"),
  53044. preyCapacity: math.unit(6, "people"),
  53045. name: "Back",
  53046. image: {
  53047. source: "./media/characters/shuken-flash/back.svg",
  53048. extra: 1912/1751,
  53049. bottom: 13/1925
  53050. }
  53051. },
  53052. },
  53053. [
  53054. {
  53055. name: "Normal",
  53056. height: math.unit(6 + 2/12, "feet"),
  53057. default: true
  53058. },
  53059. ]
  53060. ))
  53061. characterMakers.push(() => makeCharacter(
  53062. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53063. {
  53064. front: {
  53065. height: math.unit(5 + 9/12, "feet"),
  53066. weight: math.unit(150, "lb"),
  53067. name: "Front",
  53068. image: {
  53069. source: "./media/characters/plat/front.svg",
  53070. extra: 1816/1703,
  53071. bottom: 43/1859
  53072. }
  53073. },
  53074. side: {
  53075. height: math.unit(5 + 9/12, "feet"),
  53076. weight: math.unit(300, "lb"),
  53077. name: "Side",
  53078. image: {
  53079. source: "./media/characters/plat/side.svg",
  53080. extra: 1824/1699,
  53081. bottom: 18/1842
  53082. }
  53083. },
  53084. },
  53085. [
  53086. {
  53087. name: "Normal",
  53088. height: math.unit(5 + 9/12, "feet"),
  53089. default: true
  53090. },
  53091. ]
  53092. ))
  53093. characterMakers.push(() => makeCharacter(
  53094. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53095. {
  53096. front: {
  53097. height: math.unit(9, "feet"),
  53098. weight: math.unit(1800, "lb"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/elaine/front.svg",
  53102. extra: 1833/1354,
  53103. bottom: 25/1858
  53104. }
  53105. },
  53106. back: {
  53107. height: math.unit(8.8, "feet"),
  53108. weight: math.unit(1800, "lb"),
  53109. name: "Back",
  53110. image: {
  53111. source: "./media/characters/elaine/back.svg",
  53112. extra: 1641/1233,
  53113. bottom: 53/1694
  53114. }
  53115. },
  53116. },
  53117. [
  53118. {
  53119. name: "Normal",
  53120. height: math.unit(9, "feet"),
  53121. default: true
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53127. {
  53128. front: {
  53129. height: math.unit(17 + 9/12, "feet"),
  53130. weight: math.unit(8000, "lb"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/vera-raven/front.svg",
  53134. extra: 1457/1412,
  53135. bottom: 121/1578
  53136. }
  53137. },
  53138. side: {
  53139. height: math.unit(17 + 9/12, "feet"),
  53140. weight: math.unit(8000, "lb"),
  53141. name: "Side",
  53142. image: {
  53143. source: "./media/characters/vera-raven/side.svg",
  53144. extra: 1510/1464,
  53145. bottom: 54/1564
  53146. }
  53147. },
  53148. },
  53149. [
  53150. {
  53151. name: "Normal",
  53152. height: math.unit(17 + 9/12, "feet"),
  53153. default: true
  53154. },
  53155. ]
  53156. ))
  53157. characterMakers.push(() => makeCharacter(
  53158. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53159. {
  53160. dressed: {
  53161. height: math.unit(6 + 9/12, "feet"),
  53162. name: "Dressed",
  53163. image: {
  53164. source: "./media/characters/nakisha/dressed.svg",
  53165. extra: 1909/1757,
  53166. bottom: 48/1957
  53167. }
  53168. },
  53169. nude: {
  53170. height: math.unit(6 + 9/12, "feet"),
  53171. name: "Nude",
  53172. image: {
  53173. source: "./media/characters/nakisha/nude.svg",
  53174. extra: 1917/1765,
  53175. bottom: 34/1951
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(6 + 9/12, "feet"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(87, "meters"),
  53192. name: "Front",
  53193. image: {
  53194. source: "./media/characters/serafin/front.svg",
  53195. extra: 1919/1776,
  53196. bottom: 65/1984
  53197. }
  53198. },
  53199. },
  53200. [
  53201. {
  53202. name: "Normal",
  53203. height: math.unit(87, "meters"),
  53204. default: true
  53205. },
  53206. ]
  53207. ))
  53208. characterMakers.push(() => makeCharacter(
  53209. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53210. {
  53211. front: {
  53212. height: math.unit(6, "feet"),
  53213. weight: math.unit(200, "lb"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/poptart/front.svg",
  53217. extra: 615/583,
  53218. bottom: 23/638
  53219. }
  53220. },
  53221. back: {
  53222. height: math.unit(6, "feet"),
  53223. weight: math.unit(200, "lb"),
  53224. name: "Back",
  53225. image: {
  53226. source: "./media/characters/poptart/back.svg",
  53227. extra: 617/584,
  53228. bottom: 22/639
  53229. }
  53230. },
  53231. frontNsfw: {
  53232. height: math.unit(6, "feet"),
  53233. weight: math.unit(200, "lb"),
  53234. name: "Front (NSFW)",
  53235. image: {
  53236. source: "./media/characters/poptart/front-nsfw.svg",
  53237. extra: 615/583,
  53238. bottom: 23/638
  53239. }
  53240. },
  53241. backNsfw: {
  53242. height: math.unit(6, "feet"),
  53243. weight: math.unit(200, "lb"),
  53244. name: "Back (NSFW)",
  53245. image: {
  53246. source: "./media/characters/poptart/back-nsfw.svg",
  53247. extra: 617/584,
  53248. bottom: 22/639
  53249. }
  53250. },
  53251. hand: {
  53252. height: math.unit(1.14, "feet"),
  53253. name: "Hand",
  53254. image: {
  53255. source: "./media/characters/poptart/hand.svg"
  53256. }
  53257. },
  53258. foot: {
  53259. height: math.unit(1.5, "feet"),
  53260. name: "Foot",
  53261. image: {
  53262. source: "./media/characters/poptart/foot.svg"
  53263. }
  53264. },
  53265. },
  53266. [
  53267. {
  53268. name: "Normal",
  53269. height: math.unit(6, "feet"),
  53270. default: true
  53271. },
  53272. {
  53273. name: "Grande",
  53274. height: math.unit(350, "feet")
  53275. },
  53276. {
  53277. name: "Massif",
  53278. height: math.unit(967, "feet")
  53279. },
  53280. ]
  53281. ))
  53282. characterMakers.push(() => makeCharacter(
  53283. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53284. {
  53285. hyenaSide: {
  53286. height: math.unit(120, "cm"),
  53287. weight: math.unit(120, "lb"),
  53288. name: "Side",
  53289. image: {
  53290. source: "./media/characters/trance/hyena-side.svg",
  53291. extra: 998/904,
  53292. bottom: 76/1074
  53293. }
  53294. },
  53295. },
  53296. [
  53297. {
  53298. name: "Normal",
  53299. height: math.unit(120, "cm"),
  53300. default: true
  53301. },
  53302. {
  53303. name: "Dire",
  53304. height: math.unit(230, "cm")
  53305. },
  53306. {
  53307. name: "Macro",
  53308. height: math.unit(37, "feet")
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53314. {
  53315. front: {
  53316. height: math.unit(6 + 3/12, "feet"),
  53317. name: "Front",
  53318. image: {
  53319. source: "./media/characters/michael-berretta/front.svg",
  53320. extra: 515/494,
  53321. bottom: 20/535
  53322. }
  53323. },
  53324. back: {
  53325. height: math.unit(6 + 3/12, "feet"),
  53326. name: "Back",
  53327. image: {
  53328. source: "./media/characters/michael-berretta/back.svg",
  53329. extra: 520/497,
  53330. bottom: 21/541
  53331. }
  53332. },
  53333. frontNsfw: {
  53334. height: math.unit(6 + 3/12, "feet"),
  53335. name: "Front (NSFW)",
  53336. image: {
  53337. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53338. extra: 515/494,
  53339. bottom: 20/535
  53340. }
  53341. },
  53342. dick: {
  53343. height: math.unit(1, "feet"),
  53344. name: "Dick",
  53345. image: {
  53346. source: "./media/characters/michael-berretta/dick.svg"
  53347. }
  53348. },
  53349. },
  53350. [
  53351. {
  53352. name: "Normal",
  53353. height: math.unit(6 + 3/12, "feet"),
  53354. default: true
  53355. },
  53356. {
  53357. name: "Big",
  53358. height: math.unit(12, "feet")
  53359. },
  53360. {
  53361. name: "Macro",
  53362. height: math.unit(187.5, "feet")
  53363. },
  53364. ]
  53365. ))
  53366. characterMakers.push(() => makeCharacter(
  53367. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53368. {
  53369. front: {
  53370. height: math.unit(9 + 9/12, "feet"),
  53371. weight: math.unit(1244, "lb"),
  53372. name: "Front",
  53373. image: {
  53374. source: "./media/characters/stella-edgecomb/front.svg",
  53375. extra: 1835/1706,
  53376. bottom: 49/1884
  53377. }
  53378. },
  53379. pen: {
  53380. height: math.unit(0.95, "feet"),
  53381. name: "Pen",
  53382. image: {
  53383. source: "./media/characters/stella-edgecomb/pen.svg"
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Cozy Bear",
  53390. height: math.unit(0.5, "inches")
  53391. },
  53392. {
  53393. name: "Normal",
  53394. height: math.unit(9 + 9/12, "feet"),
  53395. default: true
  53396. },
  53397. {
  53398. name: "Giga Bear",
  53399. height: math.unit(1, "mile")
  53400. },
  53401. {
  53402. name: "Great Bear",
  53403. height: math.unit(53, "miles")
  53404. },
  53405. {
  53406. name: "Goddess Bear",
  53407. height: math.unit(40000, "miles")
  53408. },
  53409. {
  53410. name: "Sun Bear",
  53411. height: math.unit(900000, "miles")
  53412. },
  53413. ]
  53414. ))
  53415. characterMakers.push(() => makeCharacter(
  53416. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53417. {
  53418. anthroFront: {
  53419. height: math.unit(556, "cm"),
  53420. weight: math.unit(2650, "kg"),
  53421. preyCapacity: math.unit(3, "people"),
  53422. name: "Front",
  53423. image: {
  53424. source: "./media/characters/ash´iika/front.svg",
  53425. extra: 710/673,
  53426. bottom: 15/725
  53427. },
  53428. form: "anthro",
  53429. default: true
  53430. },
  53431. anthroSide: {
  53432. height: math.unit(556, "cm"),
  53433. weight: math.unit(2650, "kg"),
  53434. preyCapacity: math.unit(3, "people"),
  53435. name: "Side",
  53436. image: {
  53437. source: "./media/characters/ash´iika/side.svg",
  53438. extra: 696/676,
  53439. bottom: 13/709
  53440. },
  53441. form: "anthro"
  53442. },
  53443. anthroDressed: {
  53444. height: math.unit(556, "cm"),
  53445. weight: math.unit(2650, "kg"),
  53446. preyCapacity: math.unit(3, "people"),
  53447. name: "Dressed",
  53448. image: {
  53449. source: "./media/characters/ash´iika/dressed.svg",
  53450. extra: 710/673,
  53451. bottom: 15/725
  53452. },
  53453. form: "anthro"
  53454. },
  53455. anthroHead: {
  53456. height: math.unit(3.5, "feet"),
  53457. name: "Head",
  53458. image: {
  53459. source: "./media/characters/ash´iika/head.svg",
  53460. extra: 348/291,
  53461. bottom: 45/393
  53462. },
  53463. form: "anthro"
  53464. },
  53465. feralSide: {
  53466. height: math.unit(870, "cm"),
  53467. weight: math.unit(17500, "kg"),
  53468. preyCapacity: math.unit(15, "people"),
  53469. name: "Side",
  53470. image: {
  53471. source: "./media/characters/ash´iika/feral.svg",
  53472. extra: 595/199,
  53473. bottom: 7/602
  53474. },
  53475. form: "feral",
  53476. default: true,
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(556, "cm"),
  53483. default: true,
  53484. form: "anthro"
  53485. },
  53486. {
  53487. name: "Macro",
  53488. height: math.unit(88, "meters"),
  53489. form: "anthro"
  53490. },
  53491. {
  53492. name: "Normal",
  53493. height: math.unit(870, "cm"),
  53494. default: true,
  53495. form: "feral"
  53496. },
  53497. {
  53498. name: "Large",
  53499. height: math.unit(25, "meters"),
  53500. form: "feral"
  53501. },
  53502. ],
  53503. {
  53504. "anthro": {
  53505. name: "Anthro",
  53506. default: true
  53507. },
  53508. "feral": {
  53509. name: "Feral",
  53510. },
  53511. }
  53512. ))
  53513. characterMakers.push(() => makeCharacter(
  53514. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53515. {
  53516. front: {
  53517. height: math.unit(10, "feet"),
  53518. weight: math.unit(800, "lb"),
  53519. name: "Front",
  53520. image: {
  53521. source: "./media/characters/yen/front.svg",
  53522. extra: 443/411,
  53523. bottom: 6/449
  53524. }
  53525. },
  53526. sleeping: {
  53527. height: math.unit(10, "feet"),
  53528. weight: math.unit(800, "lb"),
  53529. name: "Sleeping",
  53530. image: {
  53531. source: "./media/characters/yen/sleeping.svg",
  53532. extra: 470/422,
  53533. bottom: 0/470
  53534. }
  53535. },
  53536. head: {
  53537. height: math.unit(2.2, "feet"),
  53538. name: "Head",
  53539. image: {
  53540. source: "./media/characters/yen/head.svg"
  53541. }
  53542. },
  53543. headAlt: {
  53544. height: math.unit(2.1, "feet"),
  53545. name: "Head (Alt)",
  53546. image: {
  53547. source: "./media/characters/yen/head-alt.svg"
  53548. }
  53549. },
  53550. },
  53551. [
  53552. {
  53553. name: "Normal",
  53554. height: math.unit(10, "feet"),
  53555. default: true
  53556. },
  53557. ]
  53558. ))
  53559. characterMakers.push(() => makeCharacter(
  53560. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53561. {
  53562. front: {
  53563. height: math.unit(12, "feet"),
  53564. name: "Front",
  53565. image: {
  53566. source: "./media/characters/citra/front.svg",
  53567. extra: 1950/1710,
  53568. bottom: 47/1997
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53582. {
  53583. side: {
  53584. height: math.unit(7 + 10/12, "feet"),
  53585. name: "Side",
  53586. image: {
  53587. source: "./media/characters/sholstim/side.svg",
  53588. extra: 786/682,
  53589. bottom: 40/826
  53590. }
  53591. },
  53592. },
  53593. [
  53594. {
  53595. name: "Normal",
  53596. height: math.unit(7 + 10/12, "feet"),
  53597. default: true
  53598. },
  53599. ]
  53600. ))
  53601. characterMakers.push(() => makeCharacter(
  53602. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53603. {
  53604. front: {
  53605. height: math.unit(3.10, "meters"),
  53606. name: "Front",
  53607. image: {
  53608. source: "./media/characters/aggyn/front.svg",
  53609. extra: 1188/963,
  53610. bottom: 24/1212
  53611. }
  53612. },
  53613. },
  53614. [
  53615. {
  53616. name: "Normal",
  53617. height: math.unit(3.10, "meters"),
  53618. default: true
  53619. },
  53620. ]
  53621. ))
  53622. characterMakers.push(() => makeCharacter(
  53623. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53624. {
  53625. front: {
  53626. height: math.unit(7 + 5/12, "feet"),
  53627. weight: math.unit(687, "lb"),
  53628. name: "Front",
  53629. image: {
  53630. source: "./media/characters/alsandair-hergenroether/front.svg",
  53631. extra: 1251/1186,
  53632. bottom: 75/1326
  53633. }
  53634. },
  53635. back: {
  53636. height: math.unit(7 + 5/12, "feet"),
  53637. weight: math.unit(687, "lb"),
  53638. name: "Back",
  53639. image: {
  53640. source: "./media/characters/alsandair-hergenroether/back.svg",
  53641. extra: 1290/1229,
  53642. bottom: 17/1307
  53643. }
  53644. },
  53645. },
  53646. [
  53647. {
  53648. name: "Max Compression",
  53649. height: math.unit(7 + 5/12, "feet"),
  53650. default: true
  53651. },
  53652. {
  53653. name: "\"Normal\"",
  53654. height: math.unit(2, "universes")
  53655. },
  53656. ]
  53657. ))
  53658. characterMakers.push(() => makeCharacter(
  53659. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53660. {
  53661. front: {
  53662. height: math.unit(4 + 1/12, "feet"),
  53663. weight: math.unit(92, "lb"),
  53664. name: "Front",
  53665. image: {
  53666. source: "./media/characters/ie/front.svg",
  53667. extra: 1585/1352,
  53668. bottom: 91/1676
  53669. }
  53670. },
  53671. },
  53672. [
  53673. {
  53674. name: "Normal",
  53675. height: math.unit(4 + 1/12, "feet"),
  53676. default: true
  53677. },
  53678. ]
  53679. ))
  53680. characterMakers.push(() => makeCharacter(
  53681. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53682. {
  53683. anthro: {
  53684. height: math.unit(6, "feet"),
  53685. weight: math.unit(150, "lb"),
  53686. name: "Front",
  53687. image: {
  53688. source: "./media/characters/willow/anthro.svg",
  53689. extra: 1073/986,
  53690. bottom: 34/1107
  53691. },
  53692. form: "anthro",
  53693. default: true
  53694. },
  53695. taur: {
  53696. height: math.unit(6, "feet"),
  53697. weight: math.unit(150, "lb"),
  53698. name: "Side",
  53699. image: {
  53700. source: "./media/characters/willow/taur.svg",
  53701. extra: 647/512,
  53702. bottom: 136/783
  53703. },
  53704. form: "taur",
  53705. default: true
  53706. },
  53707. },
  53708. [
  53709. {
  53710. name: "Humanoid",
  53711. height: math.unit(2.7, "meters"),
  53712. form: "anthro"
  53713. },
  53714. {
  53715. name: "Normal",
  53716. height: math.unit(9, "meters"),
  53717. form: "anthro",
  53718. default: true
  53719. },
  53720. {
  53721. name: "Humanoid",
  53722. height: math.unit(2.1, "meters"),
  53723. form: "taur"
  53724. },
  53725. {
  53726. name: "Normal",
  53727. height: math.unit(7, "meters"),
  53728. form: "taur",
  53729. default: true
  53730. },
  53731. ],
  53732. {
  53733. "anthro": {
  53734. name: "Anthro",
  53735. default: true
  53736. },
  53737. "taur": {
  53738. name: "Taur",
  53739. },
  53740. }
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(2 + 5/12, "feet"),
  53747. name: "Front",
  53748. image: {
  53749. source: "./media/characters/kyan/front.svg",
  53750. extra: 460/334,
  53751. bottom: 23/483
  53752. },
  53753. extraAttributes: {
  53754. "toeLength": {
  53755. name: "Toe Length",
  53756. power: 1,
  53757. type: "length",
  53758. base: math.unit(7, "cm")
  53759. },
  53760. "toeclawLength": {
  53761. name: "Toeclaw Length",
  53762. power: 1,
  53763. type: "length",
  53764. base: math.unit(4.7, "cm")
  53765. },
  53766. "earHeight": {
  53767. name: "Ear Height",
  53768. power: 1,
  53769. type: "length",
  53770. base: math.unit(14.1, "cm")
  53771. },
  53772. }
  53773. },
  53774. paws: {
  53775. height: math.unit(0.45, "feet"),
  53776. name: "Paws",
  53777. image: {
  53778. source: "./media/characters/kyan/paws.svg",
  53779. extra: 581/581,
  53780. bottom: 114/695
  53781. }
  53782. },
  53783. },
  53784. [
  53785. {
  53786. name: "Normal",
  53787. height: math.unit(2 + 5/12, "feet"),
  53788. default: true
  53789. },
  53790. ]
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53794. {
  53795. front: {
  53796. height: math.unit(2 + 2/3, "feet"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/xazzon/front.svg",
  53800. extra: 1109/984,
  53801. bottom: 42/1151
  53802. }
  53803. },
  53804. back: {
  53805. height: math.unit(2 + 2/3, "feet"),
  53806. name: "Back",
  53807. image: {
  53808. source: "./media/characters/xazzon/back.svg",
  53809. extra: 1095/971,
  53810. bottom: 23/1118
  53811. }
  53812. },
  53813. },
  53814. [
  53815. {
  53816. name: "Normal",
  53817. height: math.unit(2 + 2/3, "feet"),
  53818. default: true
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53824. {
  53825. dressed: {
  53826. height: math.unit(5 + 7/12, "feet"),
  53827. weight: math.unit(173, "lb"),
  53828. name: "Dressed",
  53829. image: {
  53830. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53831. extra: 3262/2862,
  53832. bottom: 188/3450
  53833. }
  53834. },
  53835. undressed: {
  53836. height: math.unit(5 + 7/12, "feet"),
  53837. weight: math.unit(173, "lb"),
  53838. name: "Undressed",
  53839. image: {
  53840. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53841. extra: 3262/2862,
  53842. bottom: 188/3450
  53843. }
  53844. },
  53845. },
  53846. [
  53847. {
  53848. name: "The void",
  53849. height: math.unit(7.29193e-34, "angstroms")
  53850. },
  53851. {
  53852. name: "Uh-Oh.",
  53853. height: math.unit(5.734e-7, "angstroms")
  53854. },
  53855. {
  53856. name: "Pico",
  53857. height: math.unit(0.876, "angstroms")
  53858. },
  53859. {
  53860. name: "Nano",
  53861. height: math.unit(0.000134200, "mm")
  53862. },
  53863. {
  53864. name: "Micro",
  53865. height: math.unit(0.0673020, "mm")
  53866. },
  53867. {
  53868. name: "Tiny",
  53869. height: math.unit(2.4, "mm")
  53870. },
  53871. {
  53872. name: "Actual Normal",
  53873. height: math.unit(3, "inches"),
  53874. default: true
  53875. },
  53876. {
  53877. name: "Normal",
  53878. height: math.unit(5 + 8/12, "feet")
  53879. },
  53880. {
  53881. name: "Giant",
  53882. height: math.unit(12, "feet")
  53883. },
  53884. {
  53885. name: "City Ruler",
  53886. height: math.unit(270, "meters")
  53887. },
  53888. {
  53889. name: "Giga",
  53890. height: math.unit(1117.6, "km")
  53891. },
  53892. {
  53893. name: "All-Powerful Queen",
  53894. height: math.unit(70.8, "gigameters")
  53895. },
  53896. {
  53897. name: "'Goddess'",
  53898. height: math.unit(600, "yottameters")
  53899. },
  53900. {
  53901. name: "Biggest!",
  53902. height: math.unit(4.23e5, "yottameters")
  53903. },
  53904. ]
  53905. ))
  53906. characterMakers.push(() => makeCharacter(
  53907. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53908. {
  53909. front: {
  53910. height: math.unit(8, "feet"),
  53911. weight: math.unit(300, "lb"),
  53912. name: "Front",
  53913. image: {
  53914. source: "./media/characters/khyla-shadowsong/front.svg",
  53915. extra: 861/798,
  53916. bottom: 32/893
  53917. }
  53918. },
  53919. side: {
  53920. height: math.unit(8, "feet"),
  53921. weight: math.unit(300, "lb"),
  53922. name: "Side",
  53923. image: {
  53924. source: "./media/characters/khyla-shadowsong/side.svg",
  53925. extra: 790/750,
  53926. bottom: 87/877
  53927. }
  53928. },
  53929. back: {
  53930. height: math.unit(8, "feet"),
  53931. weight: math.unit(300, "lb"),
  53932. name: "Back",
  53933. image: {
  53934. source: "./media/characters/khyla-shadowsong/back.svg",
  53935. extra: 855/808,
  53936. bottom: 14/869
  53937. }
  53938. },
  53939. head: {
  53940. height: math.unit(2.7, "feet"),
  53941. name: "Head",
  53942. image: {
  53943. source: "./media/characters/khyla-shadowsong/head.svg"
  53944. }
  53945. },
  53946. },
  53947. [
  53948. {
  53949. name: "Micro",
  53950. height: math.unit(6, "inches")
  53951. },
  53952. {
  53953. name: "Normal",
  53954. height: math.unit(8, "feet"),
  53955. default: true
  53956. },
  53957. ]
  53958. ))
  53959. characterMakers.push(() => makeCharacter(
  53960. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53961. {
  53962. hyperFront: {
  53963. height: math.unit(9 + 4/12, "feet"),
  53964. weight: math.unit(2000, "lb"),
  53965. name: "Front",
  53966. image: {
  53967. source: "./media/characters/tiden/hyper-front.svg",
  53968. extra: 400/382,
  53969. bottom: 6/406
  53970. },
  53971. form: "hyper",
  53972. },
  53973. regularFront: {
  53974. height: math.unit(7 + 10/12, "feet"),
  53975. weight: math.unit(470, "lb"),
  53976. name: "Front",
  53977. image: {
  53978. source: "./media/characters/tiden/regular-front.svg",
  53979. extra: 468/442,
  53980. bottom: 6/474
  53981. },
  53982. form: "regular",
  53983. },
  53984. },
  53985. [
  53986. {
  53987. name: "Normal",
  53988. height: math.unit(9 + 4/12, "feet"),
  53989. default: true,
  53990. form: "hyper"
  53991. },
  53992. {
  53993. name: "Normal",
  53994. height: math.unit(7 + 10/12, "feet"),
  53995. default: true,
  53996. form: "regular"
  53997. },
  53998. ],
  53999. {
  54000. "hyper": {
  54001. name: "Hyper",
  54002. default: true
  54003. },
  54004. "regular": {
  54005. name: "Regular",
  54006. },
  54007. }
  54008. ))
  54009. characterMakers.push(() => makeCharacter(
  54010. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54011. {
  54012. side: {
  54013. height: math.unit(6, "feet"),
  54014. weight: math.unit(150, "lb"),
  54015. name: "Side",
  54016. image: {
  54017. source: "./media/characters/jason-crowe/side.svg",
  54018. extra: 1771/766,
  54019. bottom: 219/1990
  54020. }
  54021. },
  54022. },
  54023. [
  54024. {
  54025. name: "Pocket Gryphon",
  54026. height: math.unit(6, "cm")
  54027. },
  54028. {
  54029. name: "Raven",
  54030. height: math.unit(60, "cm")
  54031. },
  54032. {
  54033. name: "Normal",
  54034. height: math.unit(1, "meter"),
  54035. default: true
  54036. },
  54037. ]
  54038. ))
  54039. characterMakers.push(() => makeCharacter(
  54040. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54041. {
  54042. front: {
  54043. height: math.unit(9 + 6/12, "feet"),
  54044. weight: math.unit(1100, "lb"),
  54045. name: "Front",
  54046. image: {
  54047. source: "./media/characters/django/front.svg",
  54048. extra: 1231/1136,
  54049. bottom: 34/1265
  54050. }
  54051. },
  54052. side: {
  54053. height: math.unit(9 + 6/12, "feet"),
  54054. weight: math.unit(1100, "lb"),
  54055. name: "Side",
  54056. image: {
  54057. source: "./media/characters/django/side.svg",
  54058. extra: 1267/1174,
  54059. bottom: 9/1276
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Normal",
  54066. height: math.unit(9 + 6/12, "feet"),
  54067. default: true
  54068. },
  54069. {
  54070. name: "Macro 1",
  54071. height: math.unit(50, "feet")
  54072. },
  54073. {
  54074. name: "Macro 2",
  54075. height: math.unit(500, "feet")
  54076. },
  54077. {
  54078. name: "Mega Macro",
  54079. height: math.unit(5300, "feet")
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54085. {
  54086. frontSfw: {
  54087. height: math.unit(120, "cm"),
  54088. weight: math.unit(15, "kg"),
  54089. name: "Front (SFW)",
  54090. image: {
  54091. source: "./media/characters/eri/front-sfw.svg",
  54092. extra: 1014/939,
  54093. bottom: 37/1051
  54094. },
  54095. form: "moth",
  54096. },
  54097. frontNsfw: {
  54098. height: math.unit(120, "cm"),
  54099. weight: math.unit(15, "kg"),
  54100. name: "Front (NSFW)",
  54101. image: {
  54102. source: "./media/characters/eri/front-nsfw.svg",
  54103. extra: 1014/939,
  54104. bottom: 37/1051
  54105. },
  54106. form: "moth",
  54107. default: true
  54108. },
  54109. egg: {
  54110. height: math.unit(10, "cm"),
  54111. name: "Egg",
  54112. image: {
  54113. source: "./media/characters/eri/egg.svg"
  54114. },
  54115. form: "egg",
  54116. default: true
  54117. },
  54118. },
  54119. [
  54120. {
  54121. name: "Normal",
  54122. height: math.unit(120, "cm"),
  54123. default: true,
  54124. form: "moth"
  54125. },
  54126. {
  54127. name: "Normal",
  54128. height: math.unit(10, "cm"),
  54129. default: true,
  54130. form: "egg"
  54131. },
  54132. ],
  54133. {
  54134. "moth": {
  54135. name: "Moth",
  54136. default: true
  54137. },
  54138. "egg": {
  54139. name: "Egg",
  54140. },
  54141. }
  54142. ))
  54143. characterMakers.push(() => makeCharacter(
  54144. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54145. {
  54146. front: {
  54147. height: math.unit(200, "feet"),
  54148. name: "Front",
  54149. image: {
  54150. source: "./media/characters/bishop-dowser/front.svg",
  54151. extra: 933/868,
  54152. bottom: 106/1039
  54153. }
  54154. },
  54155. },
  54156. [
  54157. {
  54158. name: "Giant",
  54159. height: math.unit(200, "feet"),
  54160. default: true
  54161. },
  54162. ]
  54163. ))
  54164. characterMakers.push(() => makeCharacter(
  54165. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54166. {
  54167. front: {
  54168. height: math.unit(2, "meters"),
  54169. preyCapacity: math.unit(3, "people"),
  54170. name: "Front",
  54171. image: {
  54172. source: "./media/characters/fryra/front.svg",
  54173. extra: 1025/948,
  54174. bottom: 30/1055
  54175. },
  54176. extraAttributes: {
  54177. "breastVolume": {
  54178. name: "Breast Volume",
  54179. power: 3,
  54180. type: "volume",
  54181. base: math.unit(8, "liters")
  54182. },
  54183. }
  54184. },
  54185. back: {
  54186. height: math.unit(2, "meters"),
  54187. preyCapacity: math.unit(3, "people"),
  54188. name: "Back",
  54189. image: {
  54190. source: "./media/characters/fryra/back.svg",
  54191. extra: 993/938,
  54192. bottom: 38/1031
  54193. },
  54194. extraAttributes: {
  54195. "breastVolume": {
  54196. name: "Breast Volume",
  54197. power: 3,
  54198. type: "volume",
  54199. base: math.unit(8, "liters")
  54200. },
  54201. }
  54202. },
  54203. head: {
  54204. height: math.unit(1.33, "feet"),
  54205. name: "Head",
  54206. image: {
  54207. source: "./media/characters/fryra/head.svg"
  54208. }
  54209. },
  54210. maw: {
  54211. height: math.unit(0.56, "feet"),
  54212. name: "Maw",
  54213. image: {
  54214. source: "./media/characters/fryra/maw.svg"
  54215. }
  54216. },
  54217. },
  54218. [
  54219. {
  54220. name: "Micro",
  54221. height: math.unit(5, "cm")
  54222. },
  54223. {
  54224. name: "Normal",
  54225. height: math.unit(2, "meters"),
  54226. default: true
  54227. },
  54228. {
  54229. name: "Small Macro",
  54230. height: math.unit(8, "meters")
  54231. },
  54232. {
  54233. name: "Macro",
  54234. height: math.unit(50, "meters")
  54235. },
  54236. {
  54237. name: "Megamacro",
  54238. height: math.unit(1, "km")
  54239. },
  54240. {
  54241. name: "Planetary",
  54242. height: math.unit(300000, "km")
  54243. },
  54244. {
  54245. name: "Universal",
  54246. height: math.unit(250, "lightyears")
  54247. },
  54248. {
  54249. name: "Fabric of Reality",
  54250. height: math.unit(1000, "multiverses")
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54256. {
  54257. frontDressed: {
  54258. height: math.unit(6 + 2/12, "feet"),
  54259. name: "Front (Dressed)",
  54260. image: {
  54261. source: "./media/characters/fiera/front-dressed.svg",
  54262. extra: 1883/1793,
  54263. bottom: 70/1953
  54264. }
  54265. },
  54266. backDressed: {
  54267. height: math.unit(6 + 2/12, "feet"),
  54268. name: "Back (Dressed)",
  54269. image: {
  54270. source: "./media/characters/fiera/back-dressed.svg",
  54271. extra: 1847/1780,
  54272. bottom: 70/1917
  54273. }
  54274. },
  54275. frontNude: {
  54276. height: math.unit(6 + 2/12, "feet"),
  54277. name: "Front (Nude)",
  54278. image: {
  54279. source: "./media/characters/fiera/front-nude.svg",
  54280. extra: 1875/1785,
  54281. bottom: 66/1941
  54282. }
  54283. },
  54284. backNude: {
  54285. height: math.unit(6 + 2/12, "feet"),
  54286. name: "Back (Nude)",
  54287. image: {
  54288. source: "./media/characters/fiera/back-nude.svg",
  54289. extra: 1855/1788,
  54290. bottom: 44/1899
  54291. }
  54292. },
  54293. maw: {
  54294. height: math.unit(1.3, "feet"),
  54295. name: "Maw",
  54296. image: {
  54297. source: "./media/characters/fiera/maw.svg"
  54298. }
  54299. },
  54300. paw: {
  54301. height: math.unit(1, "feet"),
  54302. name: "Paw",
  54303. image: {
  54304. source: "./media/characters/fiera/paw.svg"
  54305. }
  54306. },
  54307. shoe: {
  54308. height: math.unit(1.05, "feet"),
  54309. name: "Shoe",
  54310. image: {
  54311. source: "./media/characters/fiera/shoe.svg"
  54312. }
  54313. },
  54314. },
  54315. [
  54316. {
  54317. name: "Normal",
  54318. height: math.unit(6 + 2/12, "feet"),
  54319. default: true
  54320. },
  54321. {
  54322. name: "Size Difference",
  54323. height: math.unit(13, "feet")
  54324. },
  54325. {
  54326. name: "Macro",
  54327. height: math.unit(60, "feet")
  54328. },
  54329. {
  54330. name: "Mega Macro",
  54331. height: math.unit(200, "feet")
  54332. },
  54333. ]
  54334. ))
  54335. characterMakers.push(() => makeCharacter(
  54336. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54337. {
  54338. back: {
  54339. height: math.unit(6, "feet"),
  54340. name: "Back",
  54341. image: {
  54342. source: "./media/characters/flare/back.svg",
  54343. extra: 1883/1765,
  54344. bottom: 32/1915
  54345. }
  54346. },
  54347. },
  54348. [
  54349. {
  54350. name: "Normal",
  54351. height: math.unit(6 + 2/12, "feet"),
  54352. default: true
  54353. },
  54354. {
  54355. name: "Size Difference",
  54356. height: math.unit(13, "feet")
  54357. },
  54358. {
  54359. name: "Macro",
  54360. height: math.unit(60, "feet")
  54361. },
  54362. {
  54363. name: "Macro 2",
  54364. height: math.unit(100, "feet")
  54365. },
  54366. {
  54367. name: "Mega Macro",
  54368. height: math.unit(200, "feet")
  54369. },
  54370. ]
  54371. ))
  54372. characterMakers.push(() => makeCharacter(
  54373. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54374. {
  54375. front: {
  54376. height: math.unit(2.2, "m"),
  54377. weight: math.unit(300, "kg"),
  54378. name: "Front",
  54379. image: {
  54380. source: "./media/characters/hanna/front.svg",
  54381. extra: 1696/1502,
  54382. bottom: 206/1902
  54383. }
  54384. },
  54385. },
  54386. [
  54387. {
  54388. name: "Humanoid",
  54389. height: math.unit(2.2, "meters")
  54390. },
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(4.8, "meters"),
  54394. default: true
  54395. },
  54396. ]
  54397. ))
  54398. characterMakers.push(() => makeCharacter(
  54399. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54400. {
  54401. front: {
  54402. height: math.unit(2.8, "meters"),
  54403. name: "Front",
  54404. image: {
  54405. source: "./media/characters/argo/front.svg",
  54406. extra: 731/518,
  54407. bottom: 84/815
  54408. }
  54409. },
  54410. },
  54411. [
  54412. {
  54413. name: "Normal",
  54414. height: math.unit(3, "meters"),
  54415. default: true
  54416. },
  54417. ]
  54418. ))
  54419. characterMakers.push(() => makeCharacter(
  54420. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54421. {
  54422. side: {
  54423. height: math.unit(3.8, "meters"),
  54424. name: "Side",
  54425. image: {
  54426. source: "./media/characters/sybil/side.svg",
  54427. extra: 382/361,
  54428. bottom: 25/407
  54429. }
  54430. },
  54431. },
  54432. [
  54433. {
  54434. name: "Normal",
  54435. height: math.unit(3.8, "meters"),
  54436. default: true
  54437. },
  54438. ]
  54439. ))
  54440. characterMakers.push(() => makeCharacter(
  54441. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54442. {
  54443. side: {
  54444. height: math.unit(6, "meters"),
  54445. name: "Side",
  54446. image: {
  54447. source: "./media/characters/plum/side.svg",
  54448. extra: 858/755,
  54449. bottom: 45/903
  54450. },
  54451. form: "taur",
  54452. default: true
  54453. },
  54454. back: {
  54455. height: math.unit(6.3, "meters"),
  54456. name: "Back",
  54457. image: {
  54458. source: "./media/characters/plum/back.svg",
  54459. extra: 887/813,
  54460. bottom: 32/919
  54461. },
  54462. form: "taur",
  54463. },
  54464. feral: {
  54465. height: math.unit(5.5, "meter"),
  54466. name: "Front",
  54467. image: {
  54468. source: "./media/characters/plum/feral.svg",
  54469. extra: 568/403,
  54470. bottom: 51/619
  54471. },
  54472. form: "feral",
  54473. default: true
  54474. },
  54475. head: {
  54476. height: math.unit(1.46, "meter"),
  54477. name: "Head",
  54478. image: {
  54479. source: "./media/characters/plum/head.svg"
  54480. },
  54481. form: "taur"
  54482. },
  54483. tailTop: {
  54484. height: math.unit(5.6, "meter"),
  54485. name: "Tail (Top)",
  54486. image: {
  54487. source: "./media/characters/plum/tail-top.svg"
  54488. },
  54489. form: "taur",
  54490. },
  54491. tailBottom: {
  54492. height: math.unit(5.6, "meter"),
  54493. name: "Tail (Bottom)",
  54494. image: {
  54495. source: "./media/characters/plum/tail-bottom.svg"
  54496. },
  54497. form: "taur",
  54498. },
  54499. feralHead: {
  54500. height: math.unit(2.56549521, "meter"),
  54501. name: "Head",
  54502. image: {
  54503. source: "./media/characters/plum/head.svg"
  54504. },
  54505. form: "feral"
  54506. },
  54507. feralTailTop: {
  54508. height: math.unit(5.44728435, "meter"),
  54509. name: "Tail (Top)",
  54510. image: {
  54511. source: "./media/characters/plum/tail-top.svg"
  54512. },
  54513. form: "feral",
  54514. },
  54515. feralTailBottom: {
  54516. height: math.unit(5.44728435, "meter"),
  54517. name: "Tail (Bottom)",
  54518. image: {
  54519. source: "./media/characters/plum/tail-bottom.svg"
  54520. },
  54521. form: "feral",
  54522. },
  54523. },
  54524. [
  54525. {
  54526. name: "Normal",
  54527. height: math.unit(6, "meters"),
  54528. default: true,
  54529. form: "taur"
  54530. },
  54531. {
  54532. name: "Normal",
  54533. height: math.unit(5.5, "meters"),
  54534. default: true,
  54535. form: "feral"
  54536. },
  54537. ],
  54538. {
  54539. "taur": {
  54540. name: "Taur",
  54541. default: true
  54542. },
  54543. "feral": {
  54544. name: "Feral",
  54545. },
  54546. }
  54547. ))
  54548. characterMakers.push(() => makeCharacter(
  54549. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54550. {
  54551. front: {
  54552. height: math.unit(6, "feet"),
  54553. weight: math.unit(115, "lb"),
  54554. name: "Front",
  54555. image: {
  54556. source: "./media/characters/celeste-kitsune/front.svg",
  54557. extra: 393/366,
  54558. bottom: 7/400
  54559. }
  54560. },
  54561. side: {
  54562. height: math.unit(6, "feet"),
  54563. weight: math.unit(115, "lb"),
  54564. name: "Side",
  54565. image: {
  54566. source: "./media/characters/celeste-kitsune/side.svg",
  54567. extra: 818/765,
  54568. bottom: 40/858
  54569. }
  54570. },
  54571. },
  54572. [
  54573. {
  54574. name: "Megamacro",
  54575. height: math.unit(1500, "miles"),
  54576. default: true
  54577. },
  54578. ]
  54579. ))
  54580. characterMakers.push(() => makeCharacter(
  54581. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54582. {
  54583. front: {
  54584. height: math.unit(8, "meters"),
  54585. name: "Front",
  54586. image: {
  54587. source: "./media/characters/io/front.svg",
  54588. extra: 865/722,
  54589. bottom: 58/923
  54590. }
  54591. },
  54592. back: {
  54593. height: math.unit(8, "meters"),
  54594. name: "Back",
  54595. image: {
  54596. source: "./media/characters/io/back.svg",
  54597. extra: 920/776,
  54598. bottom: 42/962
  54599. }
  54600. },
  54601. head: {
  54602. height: math.unit(5.09, "meters"),
  54603. name: "Head",
  54604. image: {
  54605. source: "./media/characters/io/head.svg"
  54606. }
  54607. },
  54608. hand: {
  54609. height: math.unit(1.6, "meters"),
  54610. name: "Hand",
  54611. image: {
  54612. source: "./media/characters/io/hand.svg"
  54613. }
  54614. },
  54615. foot: {
  54616. height: math.unit(2.4, "meters"),
  54617. name: "Foot",
  54618. image: {
  54619. source: "./media/characters/io/foot.svg"
  54620. }
  54621. },
  54622. },
  54623. [
  54624. {
  54625. name: "Normal",
  54626. height: math.unit(8, "meters"),
  54627. default: true
  54628. },
  54629. ]
  54630. ))
  54631. characterMakers.push(() => makeCharacter(
  54632. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54633. {
  54634. side: {
  54635. height: math.unit(6 + 3/12, "feet"),
  54636. weight: math.unit(225, "lb"),
  54637. name: "Side",
  54638. image: {
  54639. source: "./media/characters/silas/side.svg",
  54640. extra: 703/653,
  54641. bottom: 23/726
  54642. },
  54643. extraAttributes: {
  54644. "pawLength": {
  54645. name: "Paw Length",
  54646. power: 1,
  54647. type: "length",
  54648. base: math.unit(12, "inches")
  54649. },
  54650. "pawWidth": {
  54651. name: "Paw Width",
  54652. power: 1,
  54653. type: "length",
  54654. base: math.unit(4.5, "inches")
  54655. },
  54656. "pawArea": {
  54657. name: "Paw Area",
  54658. power: 2,
  54659. type: "area",
  54660. base: math.unit(12 * 4.5, "inches^2")
  54661. },
  54662. }
  54663. },
  54664. },
  54665. [
  54666. {
  54667. name: "Normal",
  54668. height: math.unit(6 + 3/12, "feet"),
  54669. default: true
  54670. },
  54671. ]
  54672. ))
  54673. characterMakers.push(() => makeCharacter(
  54674. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54675. {
  54676. back: {
  54677. height: math.unit(1.6, "meters"),
  54678. weight: math.unit(150, "lb"),
  54679. name: "Back",
  54680. image: {
  54681. source: "./media/characters/zari/back.svg",
  54682. extra: 424/411,
  54683. bottom: 32/456
  54684. },
  54685. extraAttributes: {
  54686. "bladderCapacity": {
  54687. name: "Bladder Size",
  54688. power: 3,
  54689. type: "volume",
  54690. base: math.unit(500, "mL")
  54691. },
  54692. "bladderFlow": {
  54693. name: "Flow Rate",
  54694. power: 3,
  54695. type: "volume",
  54696. base: math.unit(25, "mL")
  54697. },
  54698. }
  54699. },
  54700. },
  54701. [
  54702. {
  54703. name: "Normal",
  54704. height: math.unit(1.6, "meters"),
  54705. default: true
  54706. },
  54707. ]
  54708. ))
  54709. characterMakers.push(() => makeCharacter(
  54710. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54711. {
  54712. front: {
  54713. height: math.unit(25, "feet"),
  54714. weight: math.unit(5, "tons"),
  54715. name: "Front",
  54716. image: {
  54717. source: "./media/characters/charlie-human/front.svg",
  54718. extra: 1870/1740,
  54719. bottom: 102/1972
  54720. },
  54721. extraAttributes: {
  54722. "dickLength": {
  54723. name: "Dick Length",
  54724. power: 1,
  54725. type: "length",
  54726. base: math.unit(9, "feet")
  54727. },
  54728. }
  54729. },
  54730. back: {
  54731. height: math.unit(25, "feet"),
  54732. weight: math.unit(5, "tons"),
  54733. name: "Back",
  54734. image: {
  54735. source: "./media/characters/charlie-human/back.svg",
  54736. extra: 1858/1733,
  54737. bottom: 105/1963
  54738. },
  54739. extraAttributes: {
  54740. "dickLength": {
  54741. name: "Dick Length",
  54742. power: 1,
  54743. type: "length",
  54744. base: math.unit(9, "feet")
  54745. },
  54746. }
  54747. },
  54748. },
  54749. [
  54750. {
  54751. name: "\"Normal\"",
  54752. height: math.unit(6 + 4/12, "feet")
  54753. },
  54754. {
  54755. name: "Big",
  54756. height: math.unit(25, "feet"),
  54757. default: true
  54758. },
  54759. ]
  54760. ))
  54761. characterMakers.push(() => makeCharacter(
  54762. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54763. {
  54764. front: {
  54765. height: math.unit(6 + 4/12, "feet"),
  54766. weight: math.unit(320, "lb"),
  54767. name: "Front",
  54768. image: {
  54769. source: "./media/characters/ookitsu/front.svg",
  54770. extra: 1160/976,
  54771. bottom: 38/1198
  54772. }
  54773. },
  54774. frontNsfw: {
  54775. height: math.unit(6 + 4/12, "feet"),
  54776. weight: math.unit(320, "lb"),
  54777. name: "Front (NSFW)",
  54778. image: {
  54779. source: "./media/characters/ookitsu/front-nsfw.svg",
  54780. extra: 1160/976,
  54781. bottom: 38/1198
  54782. }
  54783. },
  54784. back: {
  54785. height: math.unit(6 + 4/12, "feet"),
  54786. weight: math.unit(320, "lb"),
  54787. name: "Back",
  54788. image: {
  54789. source: "./media/characters/ookitsu/back.svg",
  54790. extra: 1030/975,
  54791. bottom: 70/1100
  54792. }
  54793. },
  54794. head: {
  54795. height: math.unit(1.79, "feet"),
  54796. name: "Head",
  54797. image: {
  54798. source: "./media/characters/ookitsu/head.svg"
  54799. }
  54800. },
  54801. hand: {
  54802. height: math.unit(0.92, "feet"),
  54803. name: "Hand",
  54804. image: {
  54805. source: "./media/characters/ookitsu/hand.svg"
  54806. }
  54807. },
  54808. tails: {
  54809. height: math.unit(3.3, "feet"),
  54810. name: "Tails",
  54811. image: {
  54812. source: "./media/characters/ookitsu/tails.svg"
  54813. }
  54814. },
  54815. dick: {
  54816. height: math.unit(1.10833, "feet"),
  54817. name: "Dick",
  54818. image: {
  54819. source: "./media/characters/ookitsu/dick.svg"
  54820. }
  54821. },
  54822. },
  54823. [
  54824. {
  54825. name: "Normal",
  54826. height: math.unit(6 + 4/12, "feet"),
  54827. default: true
  54828. },
  54829. {
  54830. name: "Macro",
  54831. height: math.unit(30, "feet")
  54832. },
  54833. ]
  54834. ))
  54835. characterMakers.push(() => makeCharacter(
  54836. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54837. {
  54838. anthroFront: {
  54839. height: math.unit(6, "feet"),
  54840. weight: math.unit(250, "lb"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/jhusky/anthro-front.svg",
  54844. extra: 474/439,
  54845. bottom: 7/481
  54846. },
  54847. form: "anthro",
  54848. default: true
  54849. },
  54850. taurSideSfw: {
  54851. height: math.unit(6 + 4/12, "feet"),
  54852. weight: math.unit(500, "lb"),
  54853. name: "Side (SFW)",
  54854. image: {
  54855. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54856. extra: 1741/1629,
  54857. bottom: 196/1937
  54858. },
  54859. form: "taur",
  54860. default: true
  54861. },
  54862. taurSideNsfw: {
  54863. height: math.unit(6 + 4/12, "feet"),
  54864. weight: math.unit(500, "lb"),
  54865. name: "Taur (NSFW)",
  54866. image: {
  54867. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54868. extra: 1741/1629,
  54869. bottom: 196/1937
  54870. },
  54871. form: "taur",
  54872. },
  54873. },
  54874. [
  54875. {
  54876. name: "Huge",
  54877. height: math.unit(500, "feet"),
  54878. form: "anthro"
  54879. },
  54880. {
  54881. name: "Macro",
  54882. height: math.unit(1000, "feet"),
  54883. default: true,
  54884. form: "anthro"
  54885. },
  54886. {
  54887. name: "Megamacro",
  54888. height: math.unit(10000, "feet"),
  54889. form: "anthro"
  54890. },
  54891. {
  54892. name: "Huge",
  54893. height: math.unit(528, "feet"),
  54894. form: "taur"
  54895. },
  54896. {
  54897. name: "Macro",
  54898. height: math.unit(1056, "feet"),
  54899. default: true,
  54900. form: "taur"
  54901. },
  54902. {
  54903. name: "Megamacro",
  54904. height: math.unit(10556, "feet"),
  54905. form: "taur"
  54906. },
  54907. ],
  54908. {
  54909. "anthro": {
  54910. name: "Anthro",
  54911. default: true
  54912. },
  54913. "taur": {
  54914. name: "Taur",
  54915. },
  54916. }
  54917. ))
  54918. characterMakers.push(() => makeCharacter(
  54919. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54920. {
  54921. front: {
  54922. height: math.unit(8, "feet"),
  54923. weight: math.unit(500, "lb"),
  54924. name: "Front",
  54925. image: {
  54926. source: "./media/characters/armail/front.svg",
  54927. extra: 1753/1669,
  54928. bottom: 155/1908
  54929. }
  54930. },
  54931. back: {
  54932. height: math.unit(8, "feet"),
  54933. weight: math.unit(500, "lb"),
  54934. name: "Back",
  54935. image: {
  54936. source: "./media/characters/armail/back.svg",
  54937. extra: 1872/1803,
  54938. bottom: 63/1935
  54939. }
  54940. },
  54941. },
  54942. [
  54943. {
  54944. name: "Micro",
  54945. height: math.unit(0.25, "feet")
  54946. },
  54947. {
  54948. name: "Normal",
  54949. height: math.unit(8, "feet"),
  54950. default: true
  54951. },
  54952. {
  54953. name: "Mini-macro",
  54954. height: math.unit(30, "feet")
  54955. },
  54956. {
  54957. name: "Macro",
  54958. height: math.unit(400, "feet")
  54959. },
  54960. {
  54961. name: "Mega-macro",
  54962. height: math.unit(6000, "feet")
  54963. },
  54964. ]
  54965. ))
  54966. characterMakers.push(() => makeCharacter(
  54967. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54968. {
  54969. front: {
  54970. height: math.unit(6 + 7/12, "feet"),
  54971. weight: math.unit(210, "lb"),
  54972. name: "Front",
  54973. image: {
  54974. source: "./media/characters/wilfred-t-buxton/front.svg",
  54975. extra: 1068/882,
  54976. bottom: 28/1096
  54977. }
  54978. },
  54979. },
  54980. [
  54981. {
  54982. name: "Normal",
  54983. height: math.unit(6 + 7/12, "feet"),
  54984. default: true
  54985. },
  54986. ]
  54987. ))
  54988. characterMakers.push(() => makeCharacter(
  54989. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54990. {
  54991. front: {
  54992. height: math.unit(5 + 2/12, "feet"),
  54993. weight: math.unit(120, "lb"),
  54994. name: "Front",
  54995. image: {
  54996. source: "./media/characters/leighton-marrow/front.svg",
  54997. extra: 441/409,
  54998. bottom: 37/478
  54999. }
  55000. },
  55001. },
  55002. [
  55003. {
  55004. name: "Normal",
  55005. height: math.unit(5 + 2/12, "feet"),
  55006. default: true
  55007. },
  55008. ]
  55009. ))
  55010. characterMakers.push(() => makeCharacter(
  55011. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55012. {
  55013. front: {
  55014. height: math.unit(4, "meters"),
  55015. weight: math.unit(1200, "kg"),
  55016. name: "Front",
  55017. image: {
  55018. source: "./media/characters/licos/front.svg",
  55019. extra: 1727/1604,
  55020. bottom: 101/1828
  55021. }
  55022. },
  55023. },
  55024. [
  55025. {
  55026. name: "Normal",
  55027. height: math.unit(4, "meters"),
  55028. default: true
  55029. },
  55030. ]
  55031. ))
  55032. characterMakers.push(() => makeCharacter(
  55033. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55034. {
  55035. front: {
  55036. height: math.unit(10 + 3/12, "feet"),
  55037. name: "Front",
  55038. image: {
  55039. source: "./media/characters/theo-monkey/front.svg",
  55040. extra: 1735/1658,
  55041. bottom: 73/1808
  55042. }
  55043. },
  55044. back: {
  55045. height: math.unit(10 + 3/12, "feet"),
  55046. name: "Back",
  55047. image: {
  55048. source: "./media/characters/theo-monkey/back.svg",
  55049. extra: 1742/1664,
  55050. bottom: 33/1775
  55051. }
  55052. },
  55053. head: {
  55054. height: math.unit(2.29, "feet"),
  55055. name: "Head",
  55056. image: {
  55057. source: "./media/characters/theo-monkey/head.svg"
  55058. }
  55059. },
  55060. handPalm: {
  55061. height: math.unit(1.73, "feet"),
  55062. name: "Hand (Palm)",
  55063. image: {
  55064. source: "./media/characters/theo-monkey/hand-palm.svg"
  55065. }
  55066. },
  55067. handBack: {
  55068. height: math.unit(1.63, "feet"),
  55069. name: "Hand (Back)",
  55070. image: {
  55071. source: "./media/characters/theo-monkey/hand-back.svg"
  55072. }
  55073. },
  55074. footSole: {
  55075. height: math.unit(2.15, "feet"),
  55076. name: "Foot (Sole)",
  55077. image: {
  55078. source: "./media/characters/theo-monkey/foot-sole.svg"
  55079. }
  55080. },
  55081. footSide: {
  55082. height: math.unit(1.6, "feet"),
  55083. name: "Foot (Side)",
  55084. image: {
  55085. source: "./media/characters/theo-monkey/foot-side.svg"
  55086. }
  55087. },
  55088. },
  55089. [
  55090. {
  55091. name: "Normal",
  55092. height: math.unit(10 + 3/12, "feet"),
  55093. default: true
  55094. },
  55095. ]
  55096. ))
  55097. characterMakers.push(() => makeCharacter(
  55098. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55099. {
  55100. front: {
  55101. height: math.unit(11, "feet"),
  55102. weight: math.unit(3000, "lb"),
  55103. preyCapacity: math.unit(10, "people"),
  55104. name: "Front",
  55105. image: {
  55106. source: "./media/characters/brook/front.svg",
  55107. extra: 909/835,
  55108. bottom: 108/1017
  55109. }
  55110. },
  55111. back: {
  55112. height: math.unit(11, "feet"),
  55113. weight: math.unit(3000, "lb"),
  55114. preyCapacity: math.unit(10, "people"),
  55115. name: "Back",
  55116. image: {
  55117. source: "./media/characters/brook/back.svg",
  55118. extra: 976/916,
  55119. bottom: 34/1010
  55120. }
  55121. },
  55122. backAlt: {
  55123. height: math.unit(11, "feet"),
  55124. weight: math.unit(3000, "lb"),
  55125. preyCapacity: math.unit(10, "people"),
  55126. name: "Back (Alt)",
  55127. image: {
  55128. source: "./media/characters/brook/back-alt.svg",
  55129. extra: 1283/1213,
  55130. bottom: 35/1318
  55131. }
  55132. },
  55133. bust: {
  55134. height: math.unit(9.0859030837, "feet"),
  55135. weight: math.unit(3000, "lb"),
  55136. preyCapacity: math.unit(10, "people"),
  55137. name: "Bust",
  55138. image: {
  55139. source: "./media/characters/brook/bust.svg",
  55140. extra: 2043/1923,
  55141. bottom: 0/2043
  55142. }
  55143. },
  55144. },
  55145. [
  55146. {
  55147. name: "Small",
  55148. height: math.unit(11, "feet"),
  55149. default: true
  55150. },
  55151. {
  55152. name: "Towering",
  55153. height: math.unit(5, "km")
  55154. },
  55155. {
  55156. name: "Enormous",
  55157. height: math.unit(25, "earths")
  55158. },
  55159. ]
  55160. ))
  55161. characterMakers.push(() => makeCharacter(
  55162. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55163. {
  55164. front: {
  55165. height: math.unit(4, "feet"),
  55166. weight: math.unit(150, "lb"),
  55167. name: "Front",
  55168. image: {
  55169. source: "./media/characters/squishi/front.svg",
  55170. extra: 1428/1271,
  55171. bottom: 30/1458
  55172. },
  55173. extraAttributes: {
  55174. "pawSize": {
  55175. name: "Paw Size",
  55176. power: 1,
  55177. type: "length",
  55178. base: math.unit(14, "ShoeSizeMensUS"),
  55179. defaultUnit: "ShoeSizeMensUS"
  55180. },
  55181. }
  55182. },
  55183. side: {
  55184. height: math.unit(4, "feet"),
  55185. weight: math.unit(150, "lb"),
  55186. name: "Side",
  55187. image: {
  55188. source: "./media/characters/squishi/side.svg",
  55189. extra: 1428/1271,
  55190. bottom: 30/1458
  55191. },
  55192. extraAttributes: {
  55193. "pawSize": {
  55194. name: "Paw Size",
  55195. power: 1,
  55196. type: "length",
  55197. base: math.unit(14, "ShoeSizeMensUS"),
  55198. defaultUnit: "ShoeSizeMensUS"
  55199. },
  55200. }
  55201. },
  55202. back: {
  55203. height: math.unit(4, "feet"),
  55204. weight: math.unit(150, "lb"),
  55205. name: "Back",
  55206. image: {
  55207. source: "./media/characters/squishi/back.svg",
  55208. extra: 1428/1271,
  55209. bottom: 30/1458
  55210. },
  55211. extraAttributes: {
  55212. "pawSize": {
  55213. name: "Paw Size",
  55214. power: 1,
  55215. type: "length",
  55216. base: math.unit(14, "ShoeSizeMensUS"),
  55217. defaultUnit: "ShoeSizeMensUS"
  55218. },
  55219. }
  55220. },
  55221. },
  55222. [
  55223. {
  55224. name: "Normal",
  55225. height: math.unit(4, "feet"),
  55226. default: true
  55227. },
  55228. ]
  55229. ))
  55230. //characters
  55231. function makeCharacters() {
  55232. const results = [];
  55233. characterMakers.forEach(character => {
  55234. results.push(character());
  55235. });
  55236. return results;
  55237. }