less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

54904 linhas
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. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. }
  2083. //species
  2084. function getSpeciesInfo(speciesList) {
  2085. let result = new Set();
  2086. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2087. result.add(entry)
  2088. });
  2089. return Array.from(result);
  2090. };
  2091. function getSpeciesInfoHelper(species) {
  2092. if (!speciesData[species]) {
  2093. console.warn(species + " doesn't exist");
  2094. return [];
  2095. }
  2096. if (speciesData[species].parents) {
  2097. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2098. } else {
  2099. return [species];
  2100. }
  2101. }
  2102. characterMakers.push(() => makeCharacter(
  2103. {
  2104. name: "Fen",
  2105. species: ["crux"],
  2106. description: {
  2107. title: "Bio",
  2108. text: "Very furry. Sheds on everything."
  2109. },
  2110. tags: [
  2111. "anthro",
  2112. "goo"
  2113. ]
  2114. },
  2115. {
  2116. front: {
  2117. height: math.unit(12, "feet"),
  2118. weight: math.unit(2400, "lb"),
  2119. name: "Front",
  2120. image: {
  2121. source: "./media/characters/fen/front.svg",
  2122. extra: 1804/1562,
  2123. bottom: 205/2009
  2124. },
  2125. extraAttributes: {
  2126. pawSize: {
  2127. name: "Paw Size",
  2128. power: 2,
  2129. type: "area",
  2130. base: math.unit(0.35, "m^2")
  2131. }
  2132. }
  2133. },
  2134. diving: {
  2135. height: math.unit(4.9, "meters"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Diving",
  2138. image: {
  2139. source: "./media/characters/fen/diving.svg"
  2140. }
  2141. },
  2142. sleeby: {
  2143. height: math.unit(3.45, "meters"),
  2144. weight: math.unit(2400, "lb"),
  2145. name: "Sleeby",
  2146. image: {
  2147. source: "./media/characters/fen/sleeby.svg"
  2148. }
  2149. },
  2150. goo: {
  2151. height: math.unit(12, "feet"),
  2152. weight: math.unit(3600, "lb"),
  2153. volume: math.unit(1000, "liters"),
  2154. preyCapacity: math.unit(6, "people"),
  2155. name: "Goo",
  2156. image: {
  2157. source: "./media/characters/fen/goo.svg",
  2158. extra: 1307/1071,
  2159. bottom: 134/1441
  2160. }
  2161. },
  2162. gooNsfw: {
  2163. height: math.unit(12, "feet"),
  2164. weight: math.unit(3750, "lb"),
  2165. volume: math.unit(1000, "liters"),
  2166. preyCapacity: math.unit(6, "people"),
  2167. name: "Goo (NSFW)",
  2168. image: {
  2169. source: "./media/characters/fen/goo-nsfw.svg",
  2170. extra: 1875/1734,
  2171. bottom: 122/1997
  2172. }
  2173. },
  2174. maw: {
  2175. height: math.unit(5.03, "feet"),
  2176. name: "Maw",
  2177. image: {
  2178. source: "./media/characters/fen/maw.svg"
  2179. }
  2180. },
  2181. gooCeiling: {
  2182. height: math.unit(6.6, "feet"),
  2183. weight: math.unit(3000, "lb"),
  2184. volume: math.unit(1000, "liters"),
  2185. preyCapacity: math.unit(6, "people"),
  2186. name: "Goo (Ceiling)",
  2187. image: {
  2188. source: "./media/characters/fen/goo-ceiling.svg"
  2189. }
  2190. },
  2191. paw: {
  2192. height: math.unit(3.77, "feet"),
  2193. name: "Paw",
  2194. image: {
  2195. source: "./media/characters/fen/paw.svg"
  2196. },
  2197. extraAttributes: {
  2198. "toeSize": {
  2199. name: "Toe Size",
  2200. power: 2,
  2201. type: "area",
  2202. base: math.unit(0.02875, "m^2")
  2203. },
  2204. "pawSize": {
  2205. name: "Paw Size",
  2206. power: 2,
  2207. type: "area",
  2208. base: math.unit(0.378, "m^2")
  2209. },
  2210. }
  2211. },
  2212. tail: {
  2213. height: math.unit(12.1, "feet"),
  2214. name: "Tail",
  2215. image: {
  2216. source: "./media/characters/fen/tail.svg"
  2217. }
  2218. },
  2219. tailFull: {
  2220. height: math.unit(12.1, "feet"),
  2221. name: "Full Tail",
  2222. image: {
  2223. source: "./media/characters/fen/tail-full.svg"
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(12, "feet"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/fen/back.svg",
  2232. },
  2233. info: {
  2234. description: {
  2235. mode: "append",
  2236. text: "\n\nHe is not currently looking at you."
  2237. }
  2238. }
  2239. },
  2240. full: {
  2241. height: math.unit(1.85, "meter"),
  2242. weight: math.unit(3200, "lb"),
  2243. name: "Full",
  2244. image: {
  2245. source: "./media/characters/fen/full.svg",
  2246. extra: 1133/859,
  2247. bottom: 145/1278
  2248. },
  2249. info: {
  2250. description: {
  2251. mode: "append",
  2252. text: "\n\nMunch."
  2253. }
  2254. }
  2255. },
  2256. gooLounging: {
  2257. height: math.unit(4.53, "feet"),
  2258. weight: math.unit(3000, "lb"),
  2259. preyCapacity: math.unit(6, "people"),
  2260. name: "Goo (Lounging)",
  2261. image: {
  2262. source: "./media/characters/fen/goo-lounging.svg",
  2263. bottom: 116 / 613
  2264. }
  2265. },
  2266. lounging: {
  2267. height: math.unit(10.52, "feet"),
  2268. weight: math.unit(2400, "lb"),
  2269. name: "Lounging",
  2270. image: {
  2271. source: "./media/characters/fen/lounging.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Small",
  2278. height: math.unit(2.2428, "meter")
  2279. },
  2280. {
  2281. name: "Normal",
  2282. height: math.unit(12, "feet"),
  2283. default: true,
  2284. },
  2285. {
  2286. name: "Big",
  2287. height: math.unit(20, "feet")
  2288. },
  2289. {
  2290. name: "Minimacro",
  2291. height: math.unit(40, "feet"),
  2292. info: {
  2293. description: {
  2294. mode: "append",
  2295. text: "\n\nTOO DAMN BIG"
  2296. }
  2297. }
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(100, "feet"),
  2302. info: {
  2303. description: {
  2304. mode: "append",
  2305. text: "\n\nTOO DAMN BIG"
  2306. }
  2307. }
  2308. },
  2309. {
  2310. name: "Megamacro",
  2311. height: math.unit(2, "miles")
  2312. },
  2313. {
  2314. name: "Gigamacro",
  2315. height: math.unit(10, "earths")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(183, "cm"),
  2324. weight: math.unit(80, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/sofia-fluttertail/front.svg",
  2328. bottom: 0.01,
  2329. extra: 2154 / 2081
  2330. }
  2331. },
  2332. frontAlt: {
  2333. height: math.unit(183, "cm"),
  2334. weight: math.unit(80, "kg"),
  2335. name: "Front (alt)",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2338. }
  2339. },
  2340. back: {
  2341. height: math.unit(183, "cm"),
  2342. weight: math.unit(80, "kg"),
  2343. name: "Back",
  2344. image: {
  2345. source: "./media/characters/sofia-fluttertail/back.svg"
  2346. }
  2347. },
  2348. kneeling: {
  2349. height: math.unit(125, "cm"),
  2350. weight: math.unit(80, "kg"),
  2351. name: "Kneeling",
  2352. image: {
  2353. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2354. extra: 1033 / 977,
  2355. bottom: 23.7 / 1057
  2356. }
  2357. },
  2358. maw: {
  2359. height: math.unit(183 / 5, "cm"),
  2360. name: "Maw",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/maw.svg"
  2363. }
  2364. },
  2365. mawcloseup: {
  2366. height: math.unit(183 / 5 * 0.41, "cm"),
  2367. name: "Maw (Closeup)",
  2368. image: {
  2369. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2370. }
  2371. },
  2372. paws: {
  2373. height: math.unit(1.17, "feet"),
  2374. name: "Paws",
  2375. image: {
  2376. source: "./media/characters/sofia-fluttertail/paws.svg",
  2377. extra: 851 / 851,
  2378. bottom: 17 / 868
  2379. }
  2380. },
  2381. },
  2382. [
  2383. {
  2384. name: "Normal",
  2385. height: math.unit(1.83, "meter")
  2386. },
  2387. {
  2388. name: "Size Thief",
  2389. height: math.unit(18, "feet")
  2390. },
  2391. {
  2392. name: "50 Foot Collie",
  2393. height: math.unit(50, "feet")
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(96, "feet"),
  2398. default: true
  2399. },
  2400. {
  2401. name: "Megamerger",
  2402. height: math.unit(650, "feet")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(7, "feet"),
  2411. weight: math.unit(100, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/march/front.svg",
  2415. extra: 1992/1851,
  2416. bottom: 39/2031
  2417. }
  2418. },
  2419. foot: {
  2420. height: math.unit(0.9, "feet"),
  2421. name: "Foot",
  2422. image: {
  2423. source: "./media/characters/march/foot.svg"
  2424. }
  2425. },
  2426. },
  2427. [
  2428. {
  2429. name: "Normal",
  2430. height: math.unit(7.9, "feet")
  2431. },
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(220, "meters")
  2435. },
  2436. {
  2437. name: "Megamacro",
  2438. height: math.unit(2.98, "km"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "Gigamacro",
  2443. height: math.unit(15963, "km")
  2444. },
  2445. {
  2446. name: "Teramacro",
  2447. height: math.unit(2980000000, "km")
  2448. },
  2449. {
  2450. name: "Examacro",
  2451. height: math.unit(250, "parsecs")
  2452. },
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2457. {
  2458. front: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(60, "kg"),
  2461. name: "Front",
  2462. image: {
  2463. source: "./media/characters/noir/front.svg",
  2464. extra: 1,
  2465. bottom: 0.032
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(6.6, "feet")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(500, "feet")
  2477. },
  2478. {
  2479. name: "Megamacro",
  2480. height: math.unit(2.5, "km"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(22500, "km")
  2486. },
  2487. {
  2488. name: "Teramacro",
  2489. height: math.unit(2500000000, "km")
  2490. },
  2491. {
  2492. name: "Examacro",
  2493. height: math.unit(200, "parsecs")
  2494. },
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(7, "feet"),
  2502. weight: math.unit(100, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/okuri/front.svg",
  2506. extra: 739/665,
  2507. bottom: 39/778
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(7, "feet"),
  2512. weight: math.unit(100, "kg"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/okuri/back.svg",
  2516. extra: 734/653,
  2517. bottom: 13/747
  2518. }
  2519. },
  2520. sitting: {
  2521. height: math.unit(2.95, "feet"),
  2522. weight: math.unit(100, "kg"),
  2523. name: "Sitting",
  2524. image: {
  2525. source: "./media/characters/okuri/sitting.svg",
  2526. extra: 370/318,
  2527. bottom: 99/469
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Smallest",
  2534. height: math.unit(5 + 2/12, "feet")
  2535. },
  2536. {
  2537. name: "Smaller",
  2538. height: math.unit(300, "feet")
  2539. },
  2540. {
  2541. name: "Small",
  2542. height: math.unit(1000, "feet")
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(1, "mile")
  2547. },
  2548. {
  2549. name: "Mega Macro (Small)",
  2550. height: math.unit(20, "km")
  2551. },
  2552. {
  2553. name: "Mega Macro (Large)",
  2554. height: math.unit(600, "km")
  2555. },
  2556. {
  2557. name: "Giga Macro",
  2558. height: math.unit(10000, "km")
  2559. },
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(577560, "km"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Large",
  2567. height: math.unit(4, "galaxies")
  2568. },
  2569. {
  2570. name: "Largest",
  2571. height: math.unit(15, "multiverses")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(7, "feet"),
  2580. weight: math.unit(100, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/manny/front.svg",
  2584. extra: 1,
  2585. bottom: 0.06
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(7, "feet"),
  2590. weight: math.unit(100, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/manny/back.svg",
  2594. extra: 1,
  2595. bottom: 0.014
  2596. }
  2597. },
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(7, "feet"),
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(78, "feet"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Macro+",
  2611. height: math.unit(300, "meters")
  2612. },
  2613. {
  2614. name: "Macro++",
  2615. height: math.unit(2400, "meters")
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(5167, "meters")
  2620. },
  2621. {
  2622. name: "Gigamacro",
  2623. height: math.unit(41769, "miles")
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/adake/front-1.svg"
  2636. }
  2637. },
  2638. frontAlt: {
  2639. height: math.unit(7, "feet"),
  2640. weight: math.unit(100, "kg"),
  2641. name: "Front (Alt)",
  2642. image: {
  2643. source: "./media/characters/adake/front-2.svg",
  2644. extra: 1,
  2645. bottom: 0.01
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(7, "feet"),
  2650. weight: math.unit(100, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/adake/back.svg",
  2654. }
  2655. },
  2656. kneel: {
  2657. height: math.unit(5.385, "feet"),
  2658. weight: math.unit(100, "kg"),
  2659. name: "Kneeling",
  2660. image: {
  2661. source: "./media/characters/adake/kneel.svg",
  2662. bottom: 0.052
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Normal",
  2669. height: math.unit(7, "feet"),
  2670. },
  2671. {
  2672. name: "Macro",
  2673. height: math.unit(78, "feet"),
  2674. default: true
  2675. },
  2676. {
  2677. name: "Macro+",
  2678. height: math.unit(300, "meters")
  2679. },
  2680. {
  2681. name: "Macro++",
  2682. height: math.unit(2400, "meters")
  2683. },
  2684. {
  2685. name: "Megamacro",
  2686. height: math.unit(5167, "meters")
  2687. },
  2688. {
  2689. name: "Gigamacro",
  2690. height: math.unit(41769, "miles")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(1.65, "meters"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/elijah/front.svg",
  2703. extra: 858 / 830,
  2704. bottom: 95.5 / 953.8559
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(1.65, "meters"),
  2709. weight: math.unit(50, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/elijah/back.svg",
  2713. extra: 895 / 850,
  2714. bottom: 5.3 / 897.956
  2715. }
  2716. },
  2717. frontNsfw: {
  2718. height: math.unit(1.65, "meters"),
  2719. weight: math.unit(50, "kg"),
  2720. name: "Front (NSFW)",
  2721. image: {
  2722. source: "./media/characters/elijah/front-nsfw.svg",
  2723. extra: 858 / 830,
  2724. bottom: 95.5 / 953.8559
  2725. }
  2726. },
  2727. backNsfw: {
  2728. height: math.unit(1.65, "meters"),
  2729. weight: math.unit(50, "kg"),
  2730. name: "Back (NSFW)",
  2731. image: {
  2732. source: "./media/characters/elijah/back-nsfw.svg",
  2733. extra: 895 / 850,
  2734. bottom: 5.3 / 897.956
  2735. }
  2736. },
  2737. dick: {
  2738. height: math.unit(1, "feet"),
  2739. name: "Dick",
  2740. image: {
  2741. source: "./media/characters/elijah/dick.svg"
  2742. }
  2743. },
  2744. beakOpen: {
  2745. height: math.unit(1.25, "feet"),
  2746. name: "Beak (Open)",
  2747. image: {
  2748. source: "./media/characters/elijah/beak-open.svg"
  2749. }
  2750. },
  2751. beakShut: {
  2752. height: math.unit(1.25, "feet"),
  2753. name: "Beak (Shut)",
  2754. image: {
  2755. source: "./media/characters/elijah/beak-shut.svg"
  2756. }
  2757. },
  2758. footFlexing: {
  2759. height: math.unit(1.61, "feet"),
  2760. name: "Foot (Flexing)",
  2761. image: {
  2762. source: "./media/characters/elijah/foot-flexing.svg"
  2763. }
  2764. },
  2765. footStepping: {
  2766. height: math.unit(1.44, "feet"),
  2767. name: "Foot (Stepping)",
  2768. image: {
  2769. source: "./media/characters/elijah/foot-stepping.svg"
  2770. }
  2771. },
  2772. plantigradeLeg: {
  2773. height: math.unit(2.34, "feet"),
  2774. name: "Plantigrade Leg",
  2775. image: {
  2776. source: "./media/characters/elijah/plantigrade-leg.svg"
  2777. }
  2778. },
  2779. plantigradeFootLeft: {
  2780. height: math.unit(0.9, "feet"),
  2781. name: "Plantigrade Foot (Left)",
  2782. image: {
  2783. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2784. }
  2785. },
  2786. plantigradeFootRight: {
  2787. height: math.unit(0.9, "feet"),
  2788. name: "Plantigrade Foot (Right)",
  2789. image: {
  2790. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(1.65, "meters")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(55, "meters"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Macro+",
  2806. height: math.unit(105, "meters")
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(7 + 2/12, "feet"),
  2815. weight: math.unit(320, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/rai/front.svg",
  2819. extra: 1802/1696,
  2820. bottom: 68/1870
  2821. }
  2822. },
  2823. frontDressed: {
  2824. height: math.unit(7 + 2/12, "feet"),
  2825. weight: math.unit(320, "kg"),
  2826. name: "Front (Dressed)",
  2827. image: {
  2828. source: "./media/characters/rai/front-dressed.svg",
  2829. extra: 1802/1696,
  2830. bottom: 68/1870
  2831. }
  2832. },
  2833. side: {
  2834. height: math.unit(7 + 2/12, "feet"),
  2835. weight: math.unit(320, "kg"),
  2836. name: "Side",
  2837. image: {
  2838. source: "./media/characters/rai/side.svg",
  2839. extra: 1789/1710,
  2840. bottom: 115/1904
  2841. }
  2842. },
  2843. back: {
  2844. height: math.unit(7 + 2/12, "feet"),
  2845. weight: math.unit(320, "kg"),
  2846. name: "Back",
  2847. image: {
  2848. source: "./media/characters/rai/back.svg",
  2849. extra: 1770/1707,
  2850. bottom: 28/1798
  2851. }
  2852. },
  2853. feral: {
  2854. height: math.unit(9.5, "feet"),
  2855. weight: math.unit(640, "kg"),
  2856. name: "Feral",
  2857. image: {
  2858. source: "./media/characters/rai/feral.svg",
  2859. extra: 945/553,
  2860. bottom: 176/1121
  2861. }
  2862. },
  2863. dragon: {
  2864. height: math.unit(23, "feet"),
  2865. weight: math.unit(50000, "lb"),
  2866. name: "Dragon",
  2867. image: {
  2868. source: "./media/characters/rai/dragon.svg",
  2869. extra: 2498 / 2030,
  2870. bottom: 85.2 / 2584
  2871. }
  2872. },
  2873. maw: {
  2874. height: math.unit(1.69, "feet"),
  2875. name: "Maw",
  2876. image: {
  2877. source: "./media/characters/rai/maw.svg"
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(7 + 2/12, "feet")
  2885. },
  2886. {
  2887. name: "Big",
  2888. height: math.unit(11, "feet")
  2889. },
  2890. {
  2891. name: "Macro",
  2892. height: math.unit(302, "feet"),
  2893. default: true
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2899. {
  2900. frontDressed: {
  2901. height: math.unit(216, "feet"),
  2902. weight: math.unit(7000000, "lb"),
  2903. name: "Front (Dressed)",
  2904. image: {
  2905. source: "./media/characters/jazzy/front-dressed.svg",
  2906. extra: 2738 / 2651,
  2907. bottom: 41.8 / 2786
  2908. }
  2909. },
  2910. backDressed: {
  2911. height: math.unit(216, "feet"),
  2912. weight: math.unit(7000000, "lb"),
  2913. name: "Back (Dressed)",
  2914. image: {
  2915. source: "./media/characters/jazzy/back-dressed.svg",
  2916. extra: 2775 / 2673,
  2917. bottom: 36.8 / 2817
  2918. }
  2919. },
  2920. front: {
  2921. height: math.unit(216, "feet"),
  2922. weight: math.unit(7000000, "lb"),
  2923. name: "Front",
  2924. image: {
  2925. source: "./media/characters/jazzy/front.svg",
  2926. extra: 2738 / 2651,
  2927. bottom: 41.8 / 2786
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(216, "feet"),
  2932. weight: math.unit(7000000, "lb"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/jazzy/back.svg",
  2936. extra: 2775 / 2673,
  2937. bottom: 36.8 / 2817
  2938. }
  2939. },
  2940. maw: {
  2941. height: math.unit(20, "feet"),
  2942. name: "Maw",
  2943. image: {
  2944. source: "./media/characters/jazzy/maw.svg"
  2945. }
  2946. },
  2947. paws: {
  2948. height: math.unit(27.5, "feet"),
  2949. name: "Paws",
  2950. image: {
  2951. source: "./media/characters/jazzy/paws.svg"
  2952. }
  2953. },
  2954. eye: {
  2955. height: math.unit(4.4, "feet"),
  2956. name: "Eye",
  2957. image: {
  2958. source: "./media/characters/jazzy/eye.svg"
  2959. }
  2960. },
  2961. droneOffense: {
  2962. height: math.unit(9.5, "inches"),
  2963. name: "Drone (Offense)",
  2964. image: {
  2965. source: "./media/characters/jazzy/drone-offense.svg"
  2966. }
  2967. },
  2968. droneRecon: {
  2969. height: math.unit(9.5, "inches"),
  2970. name: "Drone (Recon)",
  2971. image: {
  2972. source: "./media/characters/jazzy/drone-recon.svg"
  2973. }
  2974. },
  2975. droneDefense: {
  2976. height: math.unit(9.5, "inches"),
  2977. name: "Drone (Defense)",
  2978. image: {
  2979. source: "./media/characters/jazzy/drone-defense.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(216, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(9 + 6/12, "feet"),
  2996. weight: math.unit(700, "lb"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/flamm/front.svg",
  3000. extra: 1751/1632,
  3001. bottom: 46/1797
  3002. }
  3003. },
  3004. buff: {
  3005. height: math.unit(9 + 6/12, "feet"),
  3006. weight: math.unit(950, "lb"),
  3007. name: "Buff",
  3008. image: {
  3009. source: "./media/characters/flamm/buff.svg",
  3010. extra: 3018/2874,
  3011. bottom: 221/3239
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(9.5, "feet")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(200, "feet"),
  3023. default: true
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(5 + 3/12, "feet"),
  3032. weight: math.unit(60, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/zephiro/front.svg",
  3036. extra: 1873/1761,
  3037. bottom: 147/2020
  3038. }
  3039. },
  3040. side: {
  3041. height: math.unit(5 + 3/12, "feet"),
  3042. weight: math.unit(60, "kg"),
  3043. name: "Side",
  3044. image: {
  3045. source: "./media/characters/zephiro/side.svg",
  3046. extra: 1929/1827,
  3047. bottom: 65/1994
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(5 + 3/12, "feet"),
  3052. weight: math.unit(60, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/zephiro/back.svg",
  3056. extra: 1926/1816,
  3057. bottom: 41/1967
  3058. }
  3059. },
  3060. hand: {
  3061. height: math.unit(0.68, "feet"),
  3062. name: "Hand",
  3063. image: {
  3064. source: "./media/characters/zephiro/hand.svg"
  3065. }
  3066. },
  3067. paw: {
  3068. height: math.unit(1, "feet"),
  3069. name: "Paw",
  3070. image: {
  3071. source: "./media/characters/zephiro/paw.svg"
  3072. }
  3073. },
  3074. beans: {
  3075. height: math.unit(0.93, "feet"),
  3076. name: "Beans",
  3077. image: {
  3078. source: "./media/characters/zephiro/beans.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Micro",
  3085. height: math.unit(3, "inches")
  3086. },
  3087. {
  3088. name: "Normal",
  3089. height: math.unit(5 + 3 / 12, "feet"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(118, "feet")
  3095. },
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(5, "feet"),
  3103. weight: math.unit(90, "kg"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/fory/front.svg",
  3107. extra: 2862 / 2674,
  3108. bottom: 180 / 3043.8
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(5, "feet"),
  3113. weight: math.unit(90, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/fory/back.svg",
  3117. extra: 2962 / 2791,
  3118. bottom: 106 / 3071.8
  3119. }
  3120. },
  3121. foot: {
  3122. height: math.unit(2.14, "feet"),
  3123. name: "Foot",
  3124. image: {
  3125. source: "./media/characters/fory/foot.svg"
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(5, "feet")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(50, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Megamacro",
  3141. height: math.unit(10, "miles")
  3142. },
  3143. {
  3144. name: "Gigamacro",
  3145. height: math.unit(5, "earths")
  3146. },
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(7, "feet"),
  3154. weight: math.unit(90, "kg"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/kurrikage/front.svg",
  3158. extra: 1845/1733,
  3159. bottom: 119/1964
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(7, "feet"),
  3164. weight: math.unit(90, "kg"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/kurrikage/back.svg",
  3168. extra: 1790/1677,
  3169. bottom: 61/1851
  3170. }
  3171. },
  3172. dressed: {
  3173. height: math.unit(7, "feet"),
  3174. weight: math.unit(90, "kg"),
  3175. name: "Dressed",
  3176. image: {
  3177. source: "./media/characters/kurrikage/dressed.svg",
  3178. extra: 1845/1733,
  3179. bottom: 119/1964
  3180. }
  3181. },
  3182. foot: {
  3183. height: math.unit(1.5, "feet"),
  3184. name: "Foot",
  3185. image: {
  3186. source: "./media/characters/kurrikage/foot.svg"
  3187. }
  3188. },
  3189. staff: {
  3190. height: math.unit(6.7, "feet"),
  3191. name: "Staff",
  3192. image: {
  3193. source: "./media/characters/kurrikage/staff.svg"
  3194. }
  3195. },
  3196. peek: {
  3197. height: math.unit(1.05, "feet"),
  3198. name: "Peeking",
  3199. image: {
  3200. source: "./media/characters/kurrikage/peek.svg",
  3201. bottom: 0.08
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(12, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Big",
  3213. height: math.unit(20, "feet")
  3214. },
  3215. {
  3216. name: "Macro",
  3217. height: math.unit(500, "feet")
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(20, "miles")
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/shingo/front.svg",
  3234. extra: 1900/1825,
  3235. bottom: 82/1982
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/shingo/side.svg",
  3244. extra: 1930/1865,
  3245. bottom: 16/1946
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(6, "feet"),
  3250. weight: math.unit(75, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/shingo/back.svg",
  3254. extra: 1922/1852,
  3255. bottom: 16/1938
  3256. }
  3257. },
  3258. frontDressed: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(150, "lb"),
  3261. name: "Front-dressed",
  3262. image: {
  3263. source: "./media/characters/shingo/front-dressed.svg",
  3264. extra: 1900/1825,
  3265. bottom: 82/1982
  3266. }
  3267. },
  3268. paw: {
  3269. height: math.unit(1.29, "feet"),
  3270. name: "Paw",
  3271. image: {
  3272. source: "./media/characters/shingo/paw.svg"
  3273. }
  3274. },
  3275. hand: {
  3276. height: math.unit(1.07, "feet"),
  3277. name: "Hand",
  3278. image: {
  3279. source: "./media/characters/shingo/hand.svg"
  3280. }
  3281. },
  3282. frontAlt: {
  3283. height: math.unit(6, "feet"),
  3284. weight: math.unit(75, "kg"),
  3285. name: "Front (Alt)",
  3286. image: {
  3287. source: "./media/characters/shingo/front-alt.svg",
  3288. extra: 3511 / 3338,
  3289. bottom: 0.005
  3290. }
  3291. },
  3292. frontAlt2: {
  3293. height: math.unit(6, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Front (Alt 2)",
  3296. image: {
  3297. source: "./media/characters/shingo/front-alt-2.svg",
  3298. extra: 706/681,
  3299. bottom: 11/717
  3300. }
  3301. },
  3302. pawAlt: {
  3303. height: math.unit(1, "feet"),
  3304. name: "Paw (Alt)",
  3305. image: {
  3306. source: "./media/characters/shingo/paw-alt.svg"
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Micro",
  3313. height: math.unit(4, "inches")
  3314. },
  3315. {
  3316. name: "Normal",
  3317. height: math.unit(6, "feet"),
  3318. default: true
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(108, "feet")
  3323. },
  3324. {
  3325. name: "Macro+",
  3326. height: math.unit(1500, "feet")
  3327. },
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3332. {
  3333. side: {
  3334. height: math.unit(6, "feet"),
  3335. weight: math.unit(75, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/aigey/side.svg"
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(200, "feet"),
  3346. default: true
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(100, "miles")
  3351. },
  3352. ]
  3353. )
  3354. )
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3357. {
  3358. front: {
  3359. height: math.unit(5 + 5 / 12, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/natasha/front.svg",
  3364. extra: 859 / 824,
  3365. bottom: 23 / 879.6
  3366. }
  3367. },
  3368. frontNsfw: {
  3369. height: math.unit(5 + 5 / 12, "feet"),
  3370. weight: math.unit(75, "kg"),
  3371. name: "Front (NSFW)",
  3372. image: {
  3373. source: "./media/characters/natasha/front-nsfw.svg",
  3374. extra: 859 / 824,
  3375. bottom: 23 / 879.6
  3376. }
  3377. },
  3378. frontErect: {
  3379. height: math.unit(5 + 5 / 12, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front (Erect)",
  3382. image: {
  3383. source: "./media/characters/natasha/front-erect.svg",
  3384. extra: 859 / 824,
  3385. bottom: 23 / 879.6
  3386. }
  3387. },
  3388. back: {
  3389. height: math.unit(5 + 5 / 12, "feet"),
  3390. weight: math.unit(75, "kg"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/natasha/back.svg",
  3394. extra: 887.9 / 852.6,
  3395. bottom: 9.7 / 896.4
  3396. }
  3397. },
  3398. backAlt: {
  3399. height: math.unit(5 + 5 / 12, "feet"),
  3400. weight: math.unit(75, "kg"),
  3401. name: "Back (Alt)",
  3402. image: {
  3403. source: "./media/characters/natasha/back-alt.svg",
  3404. extra: 1236.7 / 1192,
  3405. bottom: 22.3 / 1258.2
  3406. }
  3407. },
  3408. dick: {
  3409. height: math.unit(1.772, "feet"),
  3410. name: "Dick",
  3411. image: {
  3412. source: "./media/characters/natasha/dick.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(0.250, "meters"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/natasha/paw.svg"
  3420. },
  3421. extraAttributes: {
  3422. "toeSize": {
  3423. name: "Toe Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.0024, "m^2")
  3427. },
  3428. "padSize": {
  3429. name: "Pad Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.00889, "m^2")
  3433. },
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.023667, "m^2")
  3439. },
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Shortstack",
  3446. height: math.unit(3, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(5 + 5 / 12, "feet")
  3452. },
  3453. {
  3454. name: "Large",
  3455. height: math.unit(12, "feet")
  3456. },
  3457. {
  3458. name: "Macro",
  3459. height: math.unit(100, "feet")
  3460. },
  3461. {
  3462. name: "Macro+",
  3463. height: math.unit(260, "feet")
  3464. },
  3465. {
  3466. name: "Macro++",
  3467. height: math.unit(1, "mile")
  3468. },
  3469. ]
  3470. ))
  3471. characterMakers.push(() => makeCharacter(
  3472. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3473. {
  3474. front: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(75, "kg"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/malik/front.svg",
  3480. extra: 1750/1561,
  3481. bottom: 80/1830
  3482. },
  3483. extraAttributes: {
  3484. "toeSize": {
  3485. name: "Toe Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.0159, "m^2")
  3489. },
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.09834, "m^2")
  3495. },
  3496. }
  3497. },
  3498. side: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Side",
  3502. image: {
  3503. source: "./media/characters/malik/side.svg",
  3504. extra: 1802/1685,
  3505. bottom: 42/1844
  3506. },
  3507. extraAttributes: {
  3508. "toeSize": {
  3509. name: "Toe Size",
  3510. power: 2,
  3511. type: "area",
  3512. base: math.unit(0.0159, "m^2")
  3513. },
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.09834, "m^2")
  3519. },
  3520. }
  3521. },
  3522. back: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Back",
  3526. image: {
  3527. source: "./media/characters/malik/back.svg",
  3528. extra: 1803/1607,
  3529. bottom: 33/1836
  3530. },
  3531. extraAttributes: {
  3532. "toeSize": {
  3533. name: "Toe Size",
  3534. power: 2,
  3535. type: "area",
  3536. base: math.unit(0.0159, "m^2")
  3537. },
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.09834, "m^2")
  3543. },
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(156, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Macro+",
  3555. height: math.unit(1188, "feet")
  3556. },
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(75, "kg"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/sefer/front.svg",
  3568. extra: 848 / 659,
  3569. bottom: 28.3 / 876.442
  3570. }
  3571. },
  3572. back: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(75, "kg"),
  3575. name: "Back",
  3576. image: {
  3577. source: "./media/characters/sefer/back.svg",
  3578. extra: 864 / 695,
  3579. bottom: 10 / 871
  3580. }
  3581. },
  3582. frontDressed: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Dressed",
  3586. image: {
  3587. source: "./media/characters/sefer/dressed.svg",
  3588. extra: 839 / 653,
  3589. bottom: 37.6 / 878
  3590. }
  3591. },
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(6, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Big",
  3601. height: math.unit(8, "meters")
  3602. },
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3607. {
  3608. body: {
  3609. height: math.unit(2.2428, "meter"),
  3610. weight: math.unit(124.738, "kg"),
  3611. name: "Body",
  3612. image: {
  3613. extra: 1225 / 1050,
  3614. source: "./media/characters/north/front.svg"
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Micro",
  3621. height: math.unit(4, "inches")
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(63, "meters")
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(101, "miles"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3636. {
  3637. angled: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Angled",
  3641. image: {
  3642. source: "./media/characters/talan/angled-sfw.svg",
  3643. bottom: 29 / 3734
  3644. }
  3645. },
  3646. angledNsfw: {
  3647. height: math.unit(4, "meter"),
  3648. weight: math.unit(150, "kg"),
  3649. name: "Angled (NSFW)",
  3650. image: {
  3651. source: "./media/characters/talan/angled-nsfw.svg",
  3652. bottom: 29 / 3734
  3653. }
  3654. },
  3655. frontNsfw: {
  3656. height: math.unit(4, "meter"),
  3657. weight: math.unit(150, "kg"),
  3658. name: "Front (NSFW)",
  3659. image: {
  3660. source: "./media/characters/talan/front-nsfw.svg",
  3661. bottom: 29 / 3734
  3662. }
  3663. },
  3664. sideNsfw: {
  3665. height: math.unit(4, "meter"),
  3666. weight: math.unit(150, "kg"),
  3667. name: "Side (NSFW)",
  3668. image: {
  3669. source: "./media/characters/talan/side-nsfw.svg",
  3670. bottom: 29 / 3734
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(4, "meter"),
  3675. weight: math.unit(150, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/talan/back.svg"
  3679. }
  3680. },
  3681. dickBottom: {
  3682. height: math.unit(0.621, "meter"),
  3683. name: "Dick (Bottom)",
  3684. image: {
  3685. source: "./media/characters/talan/dick-bottom.svg"
  3686. }
  3687. },
  3688. dickTop: {
  3689. height: math.unit(0.621, "meter"),
  3690. name: "Dick (Top)",
  3691. image: {
  3692. source: "./media/characters/talan/dick-top.svg"
  3693. }
  3694. },
  3695. dickSide: {
  3696. height: math.unit(0.305, "meter"),
  3697. name: "Dick (Side)",
  3698. image: {
  3699. source: "./media/characters/talan/dick-side.svg"
  3700. }
  3701. },
  3702. dickFront: {
  3703. height: math.unit(0.305, "meter"),
  3704. name: "Dick (Front)",
  3705. image: {
  3706. source: "./media/characters/talan/dick-front.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(4, "meters")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(100, "meters")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(2, "miles"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(5000, "miles")
  3727. },
  3728. {
  3729. name: "Teramacro",
  3730. height: math.unit(100, "parsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/gael'rathus/front.svg"
  3743. }
  3744. },
  3745. frontAlt: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(90, "kg"),
  3748. name: "Front (alt)",
  3749. image: {
  3750. source: "./media/characters/gael'rathus/front-alt.svg"
  3751. }
  3752. },
  3753. frontAlt2: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(90, "kg"),
  3756. name: "Front (alt 2)",
  3757. image: {
  3758. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(9, "feet"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Large",
  3770. height: math.unit(25, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(0.25, "miles")
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(10, "miles")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3784. {
  3785. side: {
  3786. height: math.unit(2, "meter"),
  3787. weight: math.unit(140, "kg"),
  3788. name: "Side",
  3789. image: {
  3790. source: "./media/characters/sosha/side.svg",
  3791. extra: 1170/1006,
  3792. bottom: 94/1264
  3793. }
  3794. },
  3795. maw: {
  3796. height: math.unit(2.87, "feet"),
  3797. name: "Maw",
  3798. image: {
  3799. source: "./media/characters/sosha/maw.svg",
  3800. extra: 966/865,
  3801. bottom: 0/966
  3802. }
  3803. },
  3804. cooch: {
  3805. height: math.unit(5.6, "feet"),
  3806. name: "Cooch",
  3807. image: {
  3808. source: "./media/characters/sosha/cooch.svg"
  3809. }
  3810. },
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(12, "feet"),
  3816. default: true
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3822. {
  3823. side: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(170, "kg"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/runnola/side.svg",
  3829. extra: 741 / 448,
  3830. bottom: 0.05
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Small",
  3837. height: math.unit(3, "feet")
  3838. },
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(5 + 5 / 12, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Big",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(2, "meter"),
  3855. weight: math.unit(50, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/kurribird/front.svg",
  3859. bottom: 0.015
  3860. }
  3861. },
  3862. frontAlt: {
  3863. height: math.unit(1.5, "meter"),
  3864. weight: math.unit(50, "kg"),
  3865. name: "Front (Alt)",
  3866. image: {
  3867. source: "./media/characters/kurribird/front-alt.svg",
  3868. extra: 1.45
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(7, "feet")
  3876. },
  3877. {
  3878. name: "Big",
  3879. height: math.unit(12, "feet"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(1500, "feet")
  3885. },
  3886. {
  3887. name: "Megamacro",
  3888. height: math.unit(2, "miles")
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(2, "meter"),
  3897. weight: math.unit(80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/elbial/front.svg",
  3901. extra: 1643 / 1556,
  3902. bottom: 60.2 / 1696
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(80, "kg"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/elbial/side.svg",
  3911. extra: 1601/1528,
  3912. bottom: 97/1698
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(80, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/elbial/back.svg",
  3921. extra: 1653/1569,
  3922. bottom: 20/1673
  3923. }
  3924. },
  3925. frontDressed: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(80, "kg"),
  3928. name: "Front (Dressed)",
  3929. image: {
  3930. source: "./media/characters/elbial/front-dressed.svg",
  3931. extra: 1638/1569,
  3932. bottom: 70/1708
  3933. }
  3934. },
  3935. genitals: {
  3936. height: math.unit(2 / 3.367, "meter"),
  3937. name: "Genitals",
  3938. image: {
  3939. source: "./media/characters/elbial/genitals.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Large",
  3946. height: math.unit(100, "feet")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(500, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(10, "miles")
  3956. },
  3957. {
  3958. name: "Gigamacro",
  3959. height: math.unit(25000, "miles")
  3960. },
  3961. {
  3962. name: "Full-Size",
  3963. height: math.unit(8000000, "gigaparsecs")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(60, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/noah/front.svg"
  3976. }
  3977. },
  3978. talons: {
  3979. height: math.unit(0.315, "meter"),
  3980. name: "Talons",
  3981. image: {
  3982. source: "./media/characters/noah/talons.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Large",
  3989. height: math.unit(50, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(750, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(50, "miles")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(100000, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(3000000000, "miles")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(80, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/natalya/front.svg"
  4019. }
  4020. },
  4021. back: {
  4022. height: math.unit(2, "meter"),
  4023. weight: math.unit(80, "kg"),
  4024. name: "Back",
  4025. image: {
  4026. source: "./media/characters/natalya/back.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(150, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(5, "miles")
  4039. },
  4040. {
  4041. name: "Full-Size",
  4042. height: math.unit(600, "kiloparsecs")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(50, "kg"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/erestrebah/front.svg",
  4055. extra: 1262/1162,
  4056. bottom: 96/1358
  4057. }
  4058. },
  4059. back: {
  4060. height: math.unit(2, "meter"),
  4061. weight: math.unit(50, "kg"),
  4062. name: "Back",
  4063. image: {
  4064. source: "./media/characters/erestrebah/back.svg",
  4065. extra: 1257/1139,
  4066. bottom: 13/1270
  4067. }
  4068. },
  4069. wing: {
  4070. height: math.unit(2, "meter"),
  4071. weight: math.unit(50, "kg"),
  4072. name: "Wing",
  4073. image: {
  4074. source: "./media/characters/erestrebah/wing.svg",
  4075. extra: 1262/1162,
  4076. bottom: 96/1358
  4077. }
  4078. },
  4079. mouth: {
  4080. height: math.unit(0.39, "feet"),
  4081. name: "Mouth",
  4082. image: {
  4083. source: "./media/characters/erestrebah/mouth.svg"
  4084. }
  4085. }
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(10, "feet")
  4091. },
  4092. {
  4093. name: "Large",
  4094. height: math.unit(50, "feet"),
  4095. default: true
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(300, "feet")
  4100. },
  4101. {
  4102. name: "Macro+",
  4103. height: math.unit(750, "feet")
  4104. },
  4105. {
  4106. name: "Megamacro",
  4107. height: math.unit(3, "miles")
  4108. }
  4109. ]
  4110. ))
  4111. characterMakers.push(() => makeCharacter(
  4112. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4113. {
  4114. front: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(80, "kg"),
  4117. name: "Front",
  4118. image: {
  4119. source: "./media/characters/jennifer/front.svg",
  4120. bottom: 0.11,
  4121. extra: 1.16
  4122. }
  4123. },
  4124. frontAlt: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(80, "kg"),
  4127. name: "Front (Alt)",
  4128. image: {
  4129. source: "./media/characters/jennifer/front-alt.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Canon Height",
  4136. height: math.unit(120, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Macro+",
  4141. height: math.unit(300, "feet")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(20000, "feet")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(50, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/kalista/front.svg",
  4158. extra: 1314/1145,
  4159. bottom: 101/1415
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(50, "kg"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/kalista/back.svg",
  4168. extra: 1366 / 1156,
  4169. bottom: 33.9 / 1362.78
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Uncomfortably Small",
  4176. height: math.unit(10, "feet")
  4177. },
  4178. {
  4179. name: "Small",
  4180. height: math.unit(30, "feet")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(100, "feet"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Macro+",
  4189. height: math.unit(2000, "feet")
  4190. },
  4191. {
  4192. name: "True Form",
  4193. height: math.unit(8924, "miles")
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(120, "kg"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/ggv/front.svg"
  4206. }
  4207. },
  4208. side: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(120, "kg"),
  4211. name: "Side",
  4212. image: {
  4213. source: "./media/characters/ggv/side.svg"
  4214. }
  4215. }
  4216. },
  4217. [
  4218. {
  4219. name: "Extremely Puny",
  4220. height: math.unit(9 + 5 / 12, "feet")
  4221. },
  4222. {
  4223. name: "Horribly Small",
  4224. height: math.unit(47.7, "miles"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Reasonably Sized",
  4229. height: math.unit(25000, "parsecs")
  4230. },
  4231. {
  4232. name: "Slightly Uncompressed",
  4233. height: math.unit(7.77e31, "parsecs")
  4234. },
  4235. {
  4236. name: "Omniversal",
  4237. height: math.unit(1e300, "meters")
  4238. },
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(75, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/napalm/front.svg"
  4250. }
  4251. },
  4252. back: {
  4253. height: math.unit(2, "meter"),
  4254. weight: math.unit(75, "lb"),
  4255. name: "Back",
  4256. image: {
  4257. source: "./media/characters/napalm/back.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Standard",
  4264. height: math.unit(55, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(7 + 5 / 6, "feet"),
  4274. weight: math.unit(325, "lb"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/asana/front.svg",
  4278. extra: 1133 / 1060,
  4279. bottom: 15.2 / 1148.6
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(7 + 5 / 6, "feet"),
  4284. weight: math.unit(325, "lb"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/asana/back.svg",
  4288. extra: 1114 / 1043,
  4289. bottom: 5 / 1120
  4290. }
  4291. },
  4292. dressedDark: {
  4293. height: math.unit(7 + 5 / 6, "feet"),
  4294. weight: math.unit(325, "lb"),
  4295. name: "Dressed (Dark)",
  4296. image: {
  4297. source: "./media/characters/asana/dressed-dark.svg",
  4298. extra: 1133 / 1060,
  4299. bottom: 15.2 / 1148.6
  4300. }
  4301. },
  4302. dressedLight: {
  4303. height: math.unit(7 + 5 / 6, "feet"),
  4304. weight: math.unit(325, "lb"),
  4305. name: "Dressed (Light)",
  4306. image: {
  4307. source: "./media/characters/asana/dressed-light.svg",
  4308. extra: 1133 / 1060,
  4309. bottom: 15.2 / 1148.6
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Standard",
  4316. height: math.unit(7 + 5 / 6, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Large",
  4321. height: math.unit(10, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(2500, "meters")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(5e6, "meters")
  4330. },
  4331. {
  4332. name: "Examacro",
  4333. height: math.unit(5e12, "lightyears")
  4334. },
  4335. {
  4336. name: "Max Size",
  4337. height: math.unit(1e31, "lightyears")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(60, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/ebony/front.svg",
  4350. bottom: 0.03,
  4351. extra: 1045 / 810 + 0.03
  4352. }
  4353. },
  4354. side: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(60, "kg"),
  4357. name: "Side",
  4358. image: {
  4359. source: "./media/characters/ebony/side.svg",
  4360. bottom: 0.03,
  4361. extra: 1045 / 810 + 0.03
  4362. }
  4363. },
  4364. back: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(60, "kg"),
  4367. name: "Back",
  4368. image: {
  4369. source: "./media/characters/ebony/back.svg",
  4370. bottom: 0.01,
  4371. extra: 1045 / 810 + 0.01
  4372. }
  4373. },
  4374. },
  4375. [
  4376. // TODO check why I did this lol
  4377. {
  4378. name: "Standard",
  4379. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(200, "feet")
  4385. },
  4386. {
  4387. name: "Gigamacro",
  4388. height: math.unit(13000, "km")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(175, "lb"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/mountain/front.svg",
  4401. extra: 972 / 955,
  4402. bottom: 64 / 1036.6
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/mountain/back.svg",
  4411. extra: 970 / 950,
  4412. bottom: 28.25 / 999
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Large",
  4419. height: math.unit(20, "meters")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(300, "meters")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(10000, "km"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Examacro",
  4432. height: math.unit(10e9, "lightyears")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4438. {
  4439. front: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(500, "lb"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/rick/front.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(8, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(5, "km")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(120, "lb"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/ona/front.svg"
  4469. }
  4470. },
  4471. frontAlt: {
  4472. height: math.unit(8, "feet"),
  4473. weight: math.unit(120, "lb"),
  4474. name: "Front (Alt)",
  4475. image: {
  4476. source: "./media/characters/ona/front-alt.svg"
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(8, "feet"),
  4481. weight: math.unit(120, "lb"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/ona/back.svg"
  4485. }
  4486. },
  4487. foot: {
  4488. height: math.unit(1.1, "feet"),
  4489. name: "Foot",
  4490. image: {
  4491. source: "./media/characters/ona/foot.svg"
  4492. }
  4493. }
  4494. },
  4495. [
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(70, "km"),
  4499. default: true
  4500. },
  4501. {
  4502. name: "Gigamacro",
  4503. height: math.unit(681818, "miles")
  4504. },
  4505. {
  4506. name: "Examacro",
  4507. height: math.unit(3800000, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(12, "feet"),
  4516. weight: math.unit(3000, "lb"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/mech/front.svg",
  4520. extra: 2900 / 2770,
  4521. bottom: 110 / 3010
  4522. }
  4523. },
  4524. back: {
  4525. height: math.unit(12, "feet"),
  4526. weight: math.unit(3000, "lb"),
  4527. name: "Back",
  4528. image: {
  4529. source: "./media/characters/mech/back.svg",
  4530. extra: 3011 / 2890,
  4531. bottom: 94 / 3105
  4532. }
  4533. },
  4534. maw: {
  4535. height: math.unit(3.07, "feet"),
  4536. name: "Maw",
  4537. image: {
  4538. source: "./media/characters/mech/maw.svg"
  4539. }
  4540. },
  4541. head: {
  4542. height: math.unit(3.07, "feet"),
  4543. name: "Head",
  4544. image: {
  4545. source: "./media/characters/mech/head.svg"
  4546. }
  4547. },
  4548. dick: {
  4549. height: math.unit(1.43, "feet"),
  4550. name: "Dick",
  4551. image: {
  4552. source: "./media/characters/mech/dick.svg"
  4553. }
  4554. },
  4555. },
  4556. [
  4557. {
  4558. name: "Normal",
  4559. height: math.unit(12, "feet")
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(300, "feet"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Macro+",
  4568. height: math.unit(1500, "feet")
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(1.3, "meter"),
  4577. weight: math.unit(30, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/gregory/front.svg",
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(1.3, "meter"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(20, "meter")
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(2.8, "meter"),
  4601. weight: math.unit(200, "kg"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/elory/front.svg",
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(2.8, "meter"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(38, "meter")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(470, "feet"),
  4625. weight: math.unit(924, "tons"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/angelpatamon/front.svg",
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(470, "feet"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Deity Size I",
  4640. height: math.unit(28651.2, "km")
  4641. },
  4642. {
  4643. name: "Deity Size II",
  4644. height: math.unit(171907.2, "km")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4650. {
  4651. side: {
  4652. height: math.unit(7.2, "meter"),
  4653. weight: math.unit(8.2, "tons"),
  4654. name: "Side",
  4655. image: {
  4656. source: "./media/characters/cryae/side.svg",
  4657. extra: 3500 / 1500
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(7.2, "meter"),
  4665. default: true
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(175, "lb"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/xera/front.svg",
  4678. extra: 2377 / 1972,
  4679. bottom: 75.5 / 2452
  4680. }
  4681. },
  4682. side: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(175, "lb"),
  4685. name: "Side",
  4686. image: {
  4687. source: "./media/characters/xera/side.svg",
  4688. extra: 2345 / 2019,
  4689. bottom: 39.7 / 2384
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(175, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/xera/back.svg",
  4698. extra: 2095 / 1984,
  4699. bottom: 67 / 2166
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Small",
  4706. height: math.unit(10, "feet")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(500, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro+",
  4715. height: math.unit(10, "km")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(25000, "km")
  4720. },
  4721. {
  4722. name: "Teramacro",
  4723. height: math.unit(3e6, "km")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(175, "lb"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/nebula/front.svg",
  4736. extra: 2566 / 2362,
  4737. bottom: 81 / 2644
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Small",
  4744. height: math.unit(4.5, "meters")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(1500, "meters"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Megamacro",
  4753. height: math.unit(150, "km")
  4754. },
  4755. {
  4756. name: "Gigamacro",
  4757. height: math.unit(27000, "km")
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(225, "lb"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/abysgar/front.svg",
  4770. extra: 1739/1614,
  4771. bottom: 71/1810
  4772. }
  4773. },
  4774. frontNsfw: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(225, "lb"),
  4777. name: "Front (NSFW)",
  4778. image: {
  4779. source: "./media/characters/abysgar/front-nsfw.svg",
  4780. extra: 1739/1614,
  4781. bottom: 71/1810
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(4.6, "feet"),
  4786. weight: math.unit(225, "lb"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/abysgar/back.svg",
  4790. extra: 1384/1327,
  4791. bottom: 0/1384
  4792. }
  4793. },
  4794. head: {
  4795. height: math.unit(1.25, "feet"),
  4796. name: "Head",
  4797. image: {
  4798. source: "./media/characters/abysgar/head.svg",
  4799. extra: 669/569,
  4800. bottom: 0/669
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Small",
  4807. height: math.unit(4.5, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(1250, "meters"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(125, "km")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(26000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(180, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/yakuz/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Small",
  4839. height: math.unit(5, "meters")
  4840. },
  4841. {
  4842. name: "Macro",
  4843. height: math.unit(1500, "meters"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Megamacro",
  4848. height: math.unit(200, "km")
  4849. },
  4850. {
  4851. name: "Gigamacro",
  4852. height: math.unit(100000, "km")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(175, "lb"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/mirova/front.svg",
  4865. extra: 3334 / 3071,
  4866. bottom: 42 / 3375.6
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Small",
  4873. height: math.unit(5, "meters")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(900, "meters"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Megamacro",
  4882. height: math.unit(135, "km")
  4883. },
  4884. {
  4885. name: "Gigamacro",
  4886. height: math.unit(20000, "km")
  4887. }
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4892. {
  4893. side: {
  4894. height: math.unit(28.35, "feet"),
  4895. weight: math.unit(99.75, "tons"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/asana-mech/side.svg",
  4899. extra: 923 / 699,
  4900. bottom: 50 / 975
  4901. }
  4902. },
  4903. chaingun: {
  4904. height: math.unit(7, "feet"),
  4905. weight: math.unit(2400, "lb"),
  4906. name: "Chaingun",
  4907. image: {
  4908. source: "./media/characters/asana-mech/chaingun.svg"
  4909. }
  4910. },
  4911. laser: {
  4912. height: math.unit(7.12, "feet"),
  4913. weight: math.unit(2000, "lb"),
  4914. name: "Laser",
  4915. image: {
  4916. source: "./media/characters/asana-mech/laser.svg"
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(28.35, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(2500, "feet")
  4929. },
  4930. {
  4931. name: "Megamacro",
  4932. height: math.unit(25, "miles")
  4933. },
  4934. {
  4935. name: "Examacro",
  4936. height: math.unit(6e8, "lightyears")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(5, "meters"),
  4945. weight: math.unit(1000, "kg"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/asche/front.svg",
  4949. extra: 1258 / 1190,
  4950. bottom: 47 / 1305
  4951. }
  4952. },
  4953. frontUnderwear: {
  4954. height: math.unit(5, "meters"),
  4955. weight: math.unit(1000, "kg"),
  4956. name: "Front (Underwear)",
  4957. image: {
  4958. source: "./media/characters/asche/front-underwear.svg",
  4959. extra: 1258 / 1190,
  4960. bottom: 47 / 1305
  4961. }
  4962. },
  4963. frontDressed: {
  4964. height: math.unit(5, "meters"),
  4965. weight: math.unit(1000, "kg"),
  4966. name: "Front (Dressed)",
  4967. image: {
  4968. source: "./media/characters/asche/front-dressed.svg",
  4969. extra: 1258 / 1190,
  4970. bottom: 47 / 1305
  4971. }
  4972. },
  4973. frontArmor: {
  4974. height: math.unit(5, "meters"),
  4975. weight: math.unit(1000, "kg"),
  4976. name: "Front (Armored)",
  4977. image: {
  4978. source: "./media/characters/asche/front-armored.svg",
  4979. extra: 1374 / 1308,
  4980. bottom: 23 / 1397
  4981. }
  4982. },
  4983. mp724: {
  4984. height: math.unit(0.96, "meters"),
  4985. weight: math.unit(38, "kg"),
  4986. name: "H&K MP724",
  4987. image: {
  4988. source: "./media/characters/asche/h&k-mp724.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(5, "meters"),
  4993. weight: math.unit(1000, "kg"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/asche/side.svg",
  4997. extra: 1717 / 1609,
  4998. bottom: 0.005
  4999. }
  5000. },
  5001. back: {
  5002. height: math.unit(5, "meters"),
  5003. weight: math.unit(1000, "kg"),
  5004. name: "Back",
  5005. image: {
  5006. source: "./media/characters/asche/back.svg",
  5007. extra: 1570 / 1501
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "DEFCON 5",
  5014. height: math.unit(5, "meters")
  5015. },
  5016. {
  5017. name: "DEFCON 4",
  5018. height: math.unit(500, "meters"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "DEFCON 3",
  5023. height: math.unit(5, "km")
  5024. },
  5025. {
  5026. name: "DEFCON 2",
  5027. height: math.unit(500, "km")
  5028. },
  5029. {
  5030. name: "DEFCON 1",
  5031. height: math.unit(500000, "km")
  5032. },
  5033. {
  5034. name: "DEFCON 0",
  5035. height: math.unit(3, "gigaparsecs")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(76, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/gale/front.svg"
  5048. }
  5049. },
  5050. frontAlt1: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(76, "kg"),
  5053. name: "Front (Alt 1)",
  5054. image: {
  5055. source: "./media/characters/gale/front-alt-1.svg"
  5056. }
  5057. },
  5058. frontAlt2: {
  5059. height: math.unit(2, "meters"),
  5060. weight: math.unit(76, "kg"),
  5061. name: "Front (Alt 2)",
  5062. image: {
  5063. source: "./media/characters/gale/front-alt-2.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(7, "feet")
  5071. },
  5072. {
  5073. name: "Macro",
  5074. height: math.unit(150, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Macro+",
  5079. height: math.unit(300, "feet")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(5 + 10/12, "feet"),
  5088. weight: math.unit(67, "kg"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/draylen/front.svg",
  5092. extra: 832/777,
  5093. bottom: 85/917
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(5 + 10/12, "feet")
  5101. },
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(150, "feet"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(7 + 9 / 12, "feet"),
  5114. weight: math.unit(379, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/chez/front.svg"
  5118. }
  5119. },
  5120. side: {
  5121. height: math.unit(7 + 9 / 12, "feet"),
  5122. weight: math.unit(379, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/chez/side.svg"
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7 + 9 / 12, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "God King",
  5137. height: math.unit(9750000, "meters")
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(275, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/kaylum/front.svg",
  5150. bottom: 0.01,
  5151. extra: 1166 / 1031
  5152. }
  5153. },
  5154. frontWingless: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(275, "lbs"),
  5157. name: "Front (Wingless)",
  5158. image: {
  5159. source: "./media/characters/kaylum/front-wingless.svg",
  5160. bottom: 0.01,
  5161. extra: 1117 / 1031
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(3.05, "meters")
  5169. },
  5170. {
  5171. name: "Master",
  5172. height: math.unit(5.5, "meters")
  5173. },
  5174. {
  5175. name: "Rampage",
  5176. height: math.unit(19, "meters")
  5177. },
  5178. {
  5179. name: "Macro Lite",
  5180. height: math.unit(37, "meters")
  5181. },
  5182. {
  5183. name: "Hyper Predator",
  5184. height: math.unit(61, "meters")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(138, "meters"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(5 + 5 / 12, "feet"),
  5198. weight: math.unit(120, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/geta/front.svg",
  5202. extra: 1003/933,
  5203. bottom: 21/1024
  5204. }
  5205. },
  5206. paw: {
  5207. height: math.unit(0.35, "feet"),
  5208. name: "Paw",
  5209. image: {
  5210. source: "./media/characters/geta/paw.svg"
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Micro",
  5217. height: math.unit(3, "inches"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(5 + 5 / 12, "feet")
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/tyrnn/front.svg"
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Main Height",
  5241. height: math.unit(355, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Fave. Height",
  5246. height: math.unit(2400, "feet")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(300, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/appledectomy/front.svg"
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(2500, "feet")
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(50, "miles"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(5000, "miles")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(250000, "miles")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(200, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/vulpes/front.svg",
  5291. extra: 573 / 543,
  5292. bottom: 0.033
  5293. }
  5294. },
  5295. side: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(200, "lbs"),
  5298. name: "Side",
  5299. image: {
  5300. source: "./media/characters/vulpes/side.svg",
  5301. extra: 577 / 549,
  5302. bottom: 11 / 588
  5303. }
  5304. },
  5305. back: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(200, "lbs"),
  5308. name: "Back",
  5309. image: {
  5310. source: "./media/characters/vulpes/back.svg",
  5311. extra: 573 / 549,
  5312. bottom: 20 / 593
  5313. }
  5314. },
  5315. feet: {
  5316. height: math.unit(1.276, "feet"),
  5317. name: "Feet",
  5318. image: {
  5319. source: "./media/characters/vulpes/feet.svg"
  5320. }
  5321. },
  5322. maw: {
  5323. height: math.unit(1.18, "feet"),
  5324. name: "Maw",
  5325. image: {
  5326. source: "./media/characters/vulpes/maw.svg"
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Micro",
  5333. height: math.unit(2, "inches")
  5334. },
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(6.3, "feet")
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(850, "feet")
  5342. },
  5343. {
  5344. name: "Megamacro",
  5345. height: math.unit(7500, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Gigamacro",
  5350. height: math.unit(570000, "miles")
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/front.svg"
  5363. }
  5364. },
  5365. side: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(210, "lbs"),
  5368. name: "Side",
  5369. image: {
  5370. source: "./media/characters/rain-fallen/side.svg"
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(210, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/rain-fallen/back.svg"
  5379. }
  5380. },
  5381. feral: {
  5382. height: math.unit(9, "feet"),
  5383. weight: math.unit(700, "lbs"),
  5384. name: "Feral",
  5385. image: {
  5386. source: "./media/characters/rain-fallen/feral.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Meddling with Mortals",
  5393. height: math.unit(8 + 8/12, "feet")
  5394. },
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(5, "meter")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(150, "meter"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(278e6, "meter")
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(2e9, "meter")
  5411. },
  5412. {
  5413. name: "Teramacro",
  5414. height: math.unit(8e12, "meter")
  5415. },
  5416. {
  5417. name: "Devourer",
  5418. height: math.unit(14, "zettameters")
  5419. },
  5420. {
  5421. name: "Scarlet King",
  5422. height: math.unit(18, "yottameters")
  5423. },
  5424. {
  5425. name: "Void",
  5426. height: math.unit(1e88, "yottameters")
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5432. {
  5433. standing: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(180, "lbs"),
  5436. name: "Standing",
  5437. image: {
  5438. source: "./media/characters/zaakira/standing.svg",
  5439. extra: 1599/1504,
  5440. bottom: 39/1638
  5441. }
  5442. },
  5443. laying: {
  5444. height: math.unit(3.3, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Laying",
  5447. image: {
  5448. source: "./media/characters/zaakira/laying.svg"
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(12, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(279, "feet"),
  5460. default: true
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5466. {
  5467. femSfw: {
  5468. height: math.unit(8, "feet"),
  5469. weight: math.unit(350, "lb"),
  5470. name: "Fem",
  5471. image: {
  5472. source: "./media/characters/sigvald/fem-sfw.svg",
  5473. extra: 182 / 164,
  5474. bottom: 8.7 / 190.5
  5475. }
  5476. },
  5477. femNsfw: {
  5478. height: math.unit(8, "feet"),
  5479. weight: math.unit(350, "lb"),
  5480. name: "Fem (NSFW)",
  5481. image: {
  5482. source: "./media/characters/sigvald/fem-nsfw.svg",
  5483. extra: 182 / 164,
  5484. bottom: 8.7 / 190.5
  5485. }
  5486. },
  5487. maleNsfw: {
  5488. height: math.unit(8, "feet"),
  5489. weight: math.unit(350, "lb"),
  5490. name: "Male (NSFW)",
  5491. image: {
  5492. source: "./media/characters/sigvald/male-nsfw.svg",
  5493. extra: 182 / 164,
  5494. bottom: 8.7 / 190.5
  5495. }
  5496. },
  5497. hermNsfw: {
  5498. height: math.unit(8, "feet"),
  5499. weight: math.unit(350, "lb"),
  5500. name: "Herm (NSFW)",
  5501. image: {
  5502. source: "./media/characters/sigvald/herm-nsfw.svg",
  5503. extra: 182 / 164,
  5504. bottom: 8.7 / 190.5
  5505. }
  5506. },
  5507. dick: {
  5508. height: math.unit(2.36, "feet"),
  5509. name: "Dick",
  5510. image: {
  5511. source: "./media/characters/sigvald/dick.svg"
  5512. }
  5513. },
  5514. eye: {
  5515. height: math.unit(0.31, "feet"),
  5516. name: "Eye",
  5517. image: {
  5518. source: "./media/characters/sigvald/eye.svg"
  5519. }
  5520. },
  5521. mouth: {
  5522. height: math.unit(0.92, "feet"),
  5523. name: "Mouth",
  5524. image: {
  5525. source: "./media/characters/sigvald/mouth.svg"
  5526. }
  5527. },
  5528. paws: {
  5529. height: math.unit(2.2, "feet"),
  5530. name: "Paws",
  5531. image: {
  5532. source: "./media/characters/sigvald/paws.svg"
  5533. }
  5534. }
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(8, "feet")
  5540. },
  5541. {
  5542. name: "Large",
  5543. height: math.unit(12, "feet")
  5544. },
  5545. {
  5546. name: "Larger",
  5547. height: math.unit(20, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(150, "feet")
  5552. },
  5553. {
  5554. name: "Macro+",
  5555. height: math.unit(200, "feet"),
  5556. default: true
  5557. },
  5558. ]
  5559. ))
  5560. characterMakers.push(() => makeCharacter(
  5561. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5562. {
  5563. side: {
  5564. height: math.unit(12, "feet"),
  5565. weight: math.unit(2000, "kg"),
  5566. name: "Side",
  5567. image: {
  5568. source: "./media/characters/scott/side.svg",
  5569. extra: 754 / 724,
  5570. bottom: 0.069
  5571. }
  5572. },
  5573. upright: {
  5574. height: math.unit(12, "feet"),
  5575. weight: math.unit(2000, "kg"),
  5576. name: "Upright",
  5577. image: {
  5578. source: "./media/characters/scott/upright.svg",
  5579. extra: 3881 / 3722,
  5580. bottom: 0.05
  5581. }
  5582. },
  5583. },
  5584. [
  5585. {
  5586. name: "Normal",
  5587. height: math.unit(12, "feet"),
  5588. default: true
  5589. },
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5594. {
  5595. side: {
  5596. height: math.unit(8, "meters"),
  5597. weight: math.unit(84755, "lbs"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/tobias/side.svg",
  5601. extra: 1474 / 1096,
  5602. bottom: 38.9 / 1513.1235
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(8, "meters"),
  5610. default: true
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5616. {
  5617. front: {
  5618. height: math.unit(5.5, "feet"),
  5619. weight: math.unit(400, "lbs"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/kieran/front.svg",
  5623. extra: 2694 / 2364,
  5624. bottom: 217 / 2908
  5625. }
  5626. },
  5627. side: {
  5628. height: math.unit(5.5, "feet"),
  5629. weight: math.unit(400, "lbs"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/kieran/side.svg",
  5633. extra: 875 / 777,
  5634. bottom: 84.6 / 959
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5.5, "feet"),
  5642. default: true
  5643. },
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5648. {
  5649. side: {
  5650. height: math.unit(2, "meters"),
  5651. weight: math.unit(70, "kg"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/sanya/side.svg",
  5655. bottom: 0.02,
  5656. extra: 1.02
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Small",
  5663. height: math.unit(2, "meters")
  5664. },
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(3, "meters")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(16, "meters"),
  5672. default: true
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(2, "meters"),
  5681. weight: math.unit(120, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/miranda/front.svg",
  5685. extra: 195 / 185,
  5686. bottom: 10.9 / 206.5
  5687. }
  5688. },
  5689. back: {
  5690. height: math.unit(2, "meters"),
  5691. weight: math.unit(120, "kg"),
  5692. name: "Back",
  5693. image: {
  5694. source: "./media/characters/miranda/back.svg",
  5695. extra: 201 / 193,
  5696. bottom: 2.3 / 203.7
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(10, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "James", species: ["deer"], tags: ["anthro"] },
  5710. {
  5711. side: {
  5712. height: math.unit(2, "meters"),
  5713. weight: math.unit(100, "kg"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/james/front.svg",
  5717. extra: 10 / 8.5
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8.5, "feet"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5731. {
  5732. side: {
  5733. height: math.unit(9.5, "feet"),
  5734. weight: math.unit(2500, "lbs"),
  5735. name: "Side",
  5736. image: {
  5737. source: "./media/characters/heather/side.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(9.5, "feet"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5751. {
  5752. side: {
  5753. height: math.unit(6.5, "feet"),
  5754. weight: math.unit(400, "lbs"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/lukas/side.svg",
  5758. extra: 7.25 / 6.5
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(6.5, "feet"),
  5766. default: true
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5772. {
  5773. side: {
  5774. height: math.unit(5, "feet"),
  5775. weight: math.unit(3000, "lbs"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/louise/side.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5792. {
  5793. side: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(150, "lbs"),
  5796. name: "Side",
  5797. image: {
  5798. source: "./media/characters/ramona/side.svg",
  5799. extra: 871/854,
  5800. bottom: 41/912
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(6 + 4/12, "feet")
  5808. },
  5809. {
  5810. name: "Minimacro",
  5811. height: math.unit(5.3, "meters"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(20, "stories")
  5817. },
  5818. {
  5819. name: "Macro+",
  5820. height: math.unit(50, "stories")
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5826. {
  5827. standing: {
  5828. height: math.unit(5.75, "feet"),
  5829. weight: math.unit(160, "lbs"),
  5830. name: "Standing",
  5831. image: {
  5832. source: "./media/characters/deerpuff/standing.svg",
  5833. extra: 682 / 624
  5834. }
  5835. },
  5836. sitting: {
  5837. height: math.unit(5.75 / 1.79, "feet"),
  5838. weight: math.unit(160, "lbs"),
  5839. name: "Sitting",
  5840. image: {
  5841. source: "./media/characters/deerpuff/sitting.svg",
  5842. bottom: 44 / 400,
  5843. extra: 1
  5844. }
  5845. },
  5846. taurLaying: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(400, "lbs"),
  5849. name: "Taur (Laying)",
  5850. image: {
  5851. source: "./media/characters/deerpuff/taur-laying.svg"
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Puffball",
  5858. height: math.unit(6, "inches")
  5859. },
  5860. {
  5861. name: "Normalpuff",
  5862. height: math.unit(5.75, "feet")
  5863. },
  5864. {
  5865. name: "Macropuff",
  5866. height: math.unit(1500, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megapuff",
  5871. height: math.unit(500, "miles")
  5872. },
  5873. {
  5874. name: "Gigapuff",
  5875. height: math.unit(250000, "miles")
  5876. },
  5877. {
  5878. name: "Omegapuff",
  5879. height: math.unit(1000, "lightyears")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5885. {
  5886. stomping: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(170, "lbs"),
  5889. name: "Stomping",
  5890. image: {
  5891. source: "./media/characters/vivian/stomping.svg"
  5892. }
  5893. },
  5894. sitting: {
  5895. height: math.unit(6 / 1.75, "feet"),
  5896. weight: math.unit(170, "lbs"),
  5897. name: "Sitting",
  5898. image: {
  5899. source: "./media/characters/vivian/sitting.svg",
  5900. bottom: 1 / 6.4,
  5901. extra: 1,
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(7, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(10, "stories")
  5914. },
  5915. {
  5916. name: "Macro+",
  5917. height: math.unit(30, "stories")
  5918. },
  5919. {
  5920. name: "Megamacro",
  5921. height: math.unit(10, "miles")
  5922. },
  5923. {
  5924. name: "Megamacro+",
  5925. height: math.unit(2750000, "meters")
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(160, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/prince/front.svg",
  5938. extra: 3400 / 3000
  5939. }
  5940. },
  5941. jumping: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(160, "lbs"),
  5944. name: "Jumping",
  5945. image: {
  5946. source: "./media/characters/prince/jump.svg",
  5947. extra: 2555 / 2134
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(7.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Not cute",
  5959. height: math.unit(17, "feet")
  5960. },
  5961. {
  5962. name: "I said NOT",
  5963. height: math.unit(91, "feet")
  5964. },
  5965. {
  5966. name: "Please stop",
  5967. height: math.unit(560, "feet")
  5968. },
  5969. {
  5970. name: "What have you done",
  5971. height: math.unit(2200, "feet")
  5972. },
  5973. {
  5974. name: "Deer God",
  5975. height: math.unit(3.6, "miles")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5981. {
  5982. standing: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(300, "lbs"),
  5985. name: "Standing",
  5986. image: {
  5987. source: "./media/characters/psymon/standing.svg",
  5988. extra: 1888 / 1810,
  5989. bottom: 0.05
  5990. }
  5991. },
  5992. slithering: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(300, "lbs"),
  5995. name: "Slithering",
  5996. image: {
  5997. source: "./media/characters/psymon/slithering.svg",
  5998. extra: 1330 / 1224
  5999. }
  6000. },
  6001. slitheringAlt: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(300, "lbs"),
  6004. name: "Slithering (Alt)",
  6005. image: {
  6006. source: "./media/characters/psymon/slithering-alt.svg",
  6007. extra: 1330 / 1224
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(11.25, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Large",
  6019. height: math.unit(27, "feet")
  6020. },
  6021. {
  6022. name: "Giant",
  6023. height: math.unit(87, "feet")
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(365, "feet")
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(3, "miles")
  6032. },
  6033. {
  6034. name: "World Serpent",
  6035. height: math.unit(8000, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/daimos/front.svg",
  6048. extra: 4160 / 3897,
  6049. bottom: 0.021
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(8, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Big Dog",
  6061. height: math.unit(22, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(127, "feet")
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(3600, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6075. {
  6076. side: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(180, "lbs"),
  6079. name: "Side",
  6080. image: {
  6081. source: "./media/characters/blake/side.svg",
  6082. extra: 1212 / 1120,
  6083. bottom: 0.05
  6084. }
  6085. },
  6086. crouched: {
  6087. height: math.unit(6 * 0.57, "feet"),
  6088. weight: math.unit(180, "lbs"),
  6089. name: "Crouched",
  6090. image: {
  6091. source: "./media/characters/blake/crouched.svg",
  6092. extra: 840 / 587,
  6093. bottom: 0.04
  6094. }
  6095. },
  6096. bent: {
  6097. height: math.unit(6 * 0.75, "feet"),
  6098. weight: math.unit(180, "lbs"),
  6099. name: "Bent",
  6100. image: {
  6101. source: "./media/characters/blake/bent.svg",
  6102. extra: 592 / 544,
  6103. bottom: 0.035
  6104. }
  6105. },
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8 + 1 / 6, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Big Backside",
  6115. height: math.unit(37, "feet")
  6116. },
  6117. {
  6118. name: "Subway Shredder",
  6119. height: math.unit(72, "feet")
  6120. },
  6121. {
  6122. name: "City Carver",
  6123. height: math.unit(1675, "feet")
  6124. },
  6125. {
  6126. name: "Tectonic Tweaker",
  6127. height: math.unit(2300, "miles")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(180, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/guisetto/front.svg",
  6140. extra: 856 / 817,
  6141. bottom: 0.06
  6142. }
  6143. },
  6144. airborne: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(180, "lbs"),
  6147. name: "Airborne",
  6148. image: {
  6149. source: "./media/characters/guisetto/airborne.svg",
  6150. extra: 584 / 525
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(10 + 11 / 12, "feet"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Large",
  6162. height: math.unit(35, "feet")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(475, "feet")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(180, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/luxor/front.svg",
  6179. extra: 2940 / 2152
  6180. }
  6181. },
  6182. back: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(180, "lbs"),
  6185. name: "Back",
  6186. image: {
  6187. source: "./media/characters/luxor/back.svg",
  6188. extra: 1083 / 960
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(5 + 5 / 6, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Lamp",
  6200. height: math.unit(50, "feet")
  6201. },
  6202. {
  6203. name: "Lämp",
  6204. height: math.unit(300, "feet")
  6205. },
  6206. {
  6207. name: "The sun is a lamp",
  6208. height: math.unit(250000, "miles")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(50, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/huoyan/front.svg"
  6221. }
  6222. },
  6223. side: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(180, "lbs"),
  6226. name: "Side",
  6227. image: {
  6228. source: "./media/characters/huoyan/side.svg"
  6229. }
  6230. },
  6231. },
  6232. [
  6233. {
  6234. name: "Chef",
  6235. height: math.unit(9, "feet")
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(65, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(780, "feet")
  6245. },
  6246. {
  6247. name: "Flaming Mountain",
  6248. height: math.unit(4.8, "miles")
  6249. },
  6250. {
  6251. name: "Celestial",
  6252. height: math.unit(765000, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(5 + 3 / 4, "feet"),
  6261. weight: math.unit(120, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/tails/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(5 + 3 / 4, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(4, "feet"),
  6281. weight: math.unit(50, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/rainy/front.svg"
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(800, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(150, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/rainier/front.svg"
  6305. }
  6306. }
  6307. },
  6308. [
  6309. {
  6310. name: "Micro",
  6311. height: math.unit(2, "mm"),
  6312. default: true
  6313. }
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(8 + 4/12, "feet"),
  6321. weight: math.unit(450, "kilograms"),
  6322. volume: math.unit(5, "cups"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/andy-renard/front.svg",
  6326. extra: 1839/1726,
  6327. bottom: 134/1973
  6328. }
  6329. },
  6330. back: {
  6331. height: math.unit(8 + 4/12, "feet"),
  6332. weight: math.unit(450, "kilograms"),
  6333. volume: math.unit(5, "cups"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/andy-renard/back.svg",
  6337. extra: 1838/1710,
  6338. bottom: 105/1943
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Tall",
  6345. height: math.unit(8 + 4/12, "feet")
  6346. },
  6347. {
  6348. name: "Mini Macro",
  6349. height: math.unit(15, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(100, "feet")
  6355. },
  6356. {
  6357. name: "Mega Macro",
  6358. height: math.unit(1000, "feet")
  6359. },
  6360. {
  6361. name: "Giga Macro",
  6362. height: math.unit(10, "miles")
  6363. },
  6364. {
  6365. name: "God Macro",
  6366. height: math.unit(1, "multiverse")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(210, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/cimmaron/front-sfw.svg",
  6379. extra: 701 / 676,
  6380. bottom: 0.046
  6381. }
  6382. },
  6383. back: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(210, "lbs"),
  6386. name: "Back",
  6387. image: {
  6388. source: "./media/characters/cimmaron/back-sfw.svg",
  6389. extra: 701 / 676,
  6390. bottom: 0.046
  6391. }
  6392. },
  6393. frontNsfw: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(210, "lbs"),
  6396. name: "Front (NSFW)",
  6397. image: {
  6398. source: "./media/characters/cimmaron/front-nsfw.svg",
  6399. extra: 701 / 676,
  6400. bottom: 0.046
  6401. }
  6402. },
  6403. backNsfw: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(210, "lbs"),
  6406. name: "Back (NSFW)",
  6407. image: {
  6408. source: "./media/characters/cimmaron/back-nsfw.svg",
  6409. extra: 701 / 676,
  6410. bottom: 0.046
  6411. }
  6412. },
  6413. dick: {
  6414. height: math.unit(1.714, "feet"),
  6415. name: "Dick",
  6416. image: {
  6417. source: "./media/characters/cimmaron/dick.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(6, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Macro Mayor",
  6429. height: math.unit(350, "meters")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(200, "lbs"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/akari/front.svg",
  6442. extra: 962 / 901,
  6443. bottom: 0.04
  6444. }
  6445. }
  6446. },
  6447. [
  6448. {
  6449. name: "Micro",
  6450. height: math.unit(5, "inches"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(7, "feet")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(140, "lbs"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/cynosura/front.svg",
  6468. extra: 896 / 847
  6469. }
  6470. },
  6471. back: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(140, "lbs"),
  6474. name: "Back",
  6475. image: {
  6476. source: "./media/characters/cynosura/back.svg",
  6477. extra: 1365 / 1250
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Micro",
  6484. height: math.unit(4, "inches")
  6485. },
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(5.75, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Tall",
  6493. height: math.unit(10, "feet")
  6494. },
  6495. {
  6496. name: "Big",
  6497. height: math.unit(20, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(50, "feet")
  6502. },
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6507. {
  6508. front: {
  6509. height: math.unit(13 + 2/12, "feet"),
  6510. weight: math.unit(800, "kg"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/gin/front.svg",
  6514. extra: 1312/1191,
  6515. bottom: 45/1357
  6516. }
  6517. },
  6518. mouth: {
  6519. height: math.unit(2.39 * 1.8, "feet"),
  6520. name: "Mouth",
  6521. image: {
  6522. source: "./media/characters/gin/mouth.svg"
  6523. }
  6524. },
  6525. hand: {
  6526. height: math.unit(1.57 * 2.19, "feet"),
  6527. name: "Hand",
  6528. image: {
  6529. source: "./media/characters/gin/hand.svg"
  6530. }
  6531. },
  6532. foot: {
  6533. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6534. name: "Foot",
  6535. image: {
  6536. source: "./media/characters/gin/foot.svg"
  6537. }
  6538. },
  6539. sole: {
  6540. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6541. name: "Sole",
  6542. image: {
  6543. source: "./media/characters/gin/sole.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Very Small",
  6550. height: math.unit(13 + 2 / 12, "feet")
  6551. },
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(600, "miles")
  6555. },
  6556. {
  6557. name: "Regular",
  6558. height: math.unit(20, "earths"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(2.2, "solarradii")
  6564. },
  6565. {
  6566. name: "Teramacro",
  6567. height: math.unit(1.2, "galaxies")
  6568. },
  6569. {
  6570. name: "Omegamacro",
  6571. height: math.unit(200, "universes")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(6 + 1 / 6, "feet"),
  6580. weight: math.unit(178, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/guy/front.svg"
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(6 + 1 / 6, "feet"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Large",
  6595. height: math.unit(25 + 7 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(60 + 9 / 12, "feet")
  6600. },
  6601. {
  6602. name: "Macro+",
  6603. height: math.unit(246, "feet")
  6604. },
  6605. {
  6606. name: "Macro++",
  6607. height: math.unit(878, "feet")
  6608. }
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(9, "feet"),
  6616. weight: math.unit(800, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/tiberius/front.svg",
  6620. extra: 2295 / 2071
  6621. }
  6622. },
  6623. back: {
  6624. height: math.unit(9, "feet"),
  6625. weight: math.unit(800, "lbs"),
  6626. name: "Back",
  6627. image: {
  6628. source: "./media/characters/tiberius/back.svg",
  6629. extra: 2373 / 2160
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(9, "feet"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6643. {
  6644. front: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(600, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/surgo/front.svg",
  6650. extra: 3591 / 2227
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(600, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/surgo/back.svg",
  6659. extra: 3557 / 2228
  6660. }
  6661. },
  6662. laying: {
  6663. height: math.unit(6 * 0.85, "feet"),
  6664. weight: math.unit(600, "lbs"),
  6665. name: "Laying",
  6666. image: {
  6667. source: "./media/characters/surgo/laying.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(6, "feet"),
  6675. default: true
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6681. {
  6682. side: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(150, "lbs"),
  6685. name: "Side",
  6686. image: {
  6687. source: "./media/characters/cibus/side.svg",
  6688. extra: 800 / 400
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(6, "feet"),
  6696. default: true
  6697. }
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(240, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/nibbles/front.svg"
  6709. }
  6710. },
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(240, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/nibbles/side.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(9, "feet"),
  6724. default: true
  6725. }
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6730. {
  6731. side: {
  6732. height: math.unit(5 + 1 / 6, "feet"),
  6733. weight: math.unit(130, "lbs"),
  6734. name: "Side",
  6735. image: {
  6736. source: "./media/characters/rikky/side.svg",
  6737. extra: 851 / 801
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(5 + 1 / 6, "feet")
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(152, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Megamacro",
  6753. height: math.unit(7, "miles")
  6754. }
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6759. {
  6760. side: {
  6761. height: math.unit(370, "cm"),
  6762. weight: math.unit(350, "lbs"),
  6763. name: "Side",
  6764. image: {
  6765. source: "./media/characters/malfressa/side.svg"
  6766. }
  6767. },
  6768. walking: {
  6769. height: math.unit(370, "cm"),
  6770. weight: math.unit(350, "lbs"),
  6771. name: "Walking",
  6772. image: {
  6773. source: "./media/characters/malfressa/walking.svg"
  6774. }
  6775. },
  6776. feral: {
  6777. height: math.unit(2500, "cm"),
  6778. weight: math.unit(100000, "lbs"),
  6779. name: "Feral",
  6780. image: {
  6781. source: "./media/characters/malfressa/feral.svg",
  6782. extra: 2108 / 837,
  6783. bottom: 0.02
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(370, "cm")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(300, "meters"),
  6795. default: true
  6796. }
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(60, "kg"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/jaro/front.svg",
  6808. extra: 845/817,
  6809. bottom: 45/890
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(60, "kg"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/jaro/back.svg",
  6818. extra: 847/817,
  6819. bottom: 34/881
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(7, "inches")
  6827. },
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5.5, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Minimacro",
  6835. height: math.unit(20, "feet")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(200, "meters")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(195, "lb"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/rogue/front.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(90, "feet"),
  6859. default: true
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6865. {
  6866. standing: {
  6867. height: math.unit(5 + 8 / 12, "feet"),
  6868. weight: math.unit(140, "lb"),
  6869. name: "Standing",
  6870. image: {
  6871. source: "./media/characters/piper/standing.svg",
  6872. extra: 1440/1284,
  6873. bottom: 66/1506
  6874. }
  6875. },
  6876. running: {
  6877. height: math.unit(5 + 8 / 12, "feet"),
  6878. weight: math.unit(140, "lb"),
  6879. name: "Running",
  6880. image: {
  6881. source: "./media/characters/piper/running.svg",
  6882. extra: 3948/3655,
  6883. bottom: 0/3948
  6884. }
  6885. },
  6886. sole: {
  6887. height: math.unit(0.81, "feet"),
  6888. weight: math.unit(2, "kg"),
  6889. name: "Sole",
  6890. image: {
  6891. source: "./media/characters/piper/sole.svg"
  6892. }
  6893. },
  6894. nipple: {
  6895. height: math.unit(0.25, "feet"),
  6896. weight: math.unit(1.5, "lb"),
  6897. name: "Nipple",
  6898. image: {
  6899. source: "./media/characters/piper/nipple.svg"
  6900. }
  6901. },
  6902. head: {
  6903. height: math.unit(1.1, "feet"),
  6904. name: "Head",
  6905. image: {
  6906. source: "./media/characters/piper/head.svg"
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(2, "inches")
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(5 + 8 / 12, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(250, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(7, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(220, "lb"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/gemini/front.svg"
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(220, "lb"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/gemini/back.svg"
  6947. }
  6948. },
  6949. kneeling: {
  6950. height: math.unit(6 / 1.5, "feet"),
  6951. weight: math.unit(220, "lb"),
  6952. name: "Kneeling",
  6953. image: {
  6954. source: "./media/characters/gemini/kneeling.svg",
  6955. bottom: 0.02
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(300, "meters"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Megamacro",
  6967. height: math.unit(6900, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6973. {
  6974. anthro: {
  6975. height: math.unit(2.35, "meters"),
  6976. weight: math.unit(73, "kg"),
  6977. name: "Anthro",
  6978. image: {
  6979. source: "./media/characters/alicia/anthro.svg",
  6980. extra: 2571 / 2385,
  6981. bottom: 75 / 2648
  6982. }
  6983. },
  6984. paw: {
  6985. height: math.unit(1.32, "feet"),
  6986. name: "Paw",
  6987. image: {
  6988. source: "./media/characters/alicia/paw.svg"
  6989. }
  6990. },
  6991. feral: {
  6992. height: math.unit(1.69, "meters"),
  6993. weight: math.unit(73, "kg"),
  6994. name: "Feral",
  6995. image: {
  6996. source: "./media/characters/alicia/feral.svg",
  6997. extra: 2123 / 1715,
  6998. bottom: 222 / 2349
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(2.35, "meters")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(60, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(10000, "kilometers")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(7, "feet"),
  7023. weight: math.unit(250, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/archy/front.svg"
  7027. }
  7028. }
  7029. },
  7030. [
  7031. {
  7032. name: "Micro",
  7033. height: math.unit(1, "inch")
  7034. },
  7035. {
  7036. name: "Shorty",
  7037. height: math.unit(5, "feet")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(7, "feet")
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(600, "meters"),
  7046. default: true
  7047. },
  7048. {
  7049. name: "Megamacro",
  7050. height: math.unit(1, "mile")
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(1.65, "meters"),
  7059. weight: math.unit(74, "kg"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/berri/front.svg",
  7063. extra: 857 / 837,
  7064. bottom: 18 / 877
  7065. }
  7066. },
  7067. bum: {
  7068. height: math.unit(1.46, "feet"),
  7069. name: "Bum",
  7070. image: {
  7071. source: "./media/characters/berri/bum.svg"
  7072. }
  7073. },
  7074. mouth: {
  7075. height: math.unit(0.44, "feet"),
  7076. name: "Mouth",
  7077. image: {
  7078. source: "./media/characters/berri/mouth.svg"
  7079. }
  7080. },
  7081. paw: {
  7082. height: math.unit(0.826, "feet"),
  7083. name: "Paw",
  7084. image: {
  7085. source: "./media/characters/berri/paw.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(1.65, "meters")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "m"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(9.213, "km")
  7102. },
  7103. {
  7104. name: "Planet Eater",
  7105. height: math.unit(489, "megameters")
  7106. },
  7107. {
  7108. name: "Teramacro",
  7109. height: math.unit(2471635000000, "meters")
  7110. },
  7111. {
  7112. name: "Examacro",
  7113. height: math.unit(8.0624e+26, "meters")
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(1.72, "meters"),
  7122. weight: math.unit(68, "kg"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/lexi/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Very Smol",
  7132. height: math.unit(10, "mm")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(6.8, "cm"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(1.72, "m")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(1.69, "meters"),
  7150. weight: math.unit(68, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/martin/front.svg",
  7154. extra: 596 / 581
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(6.85, "cm"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(1.69, "m")
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(1.69, "meters"),
  7175. weight: math.unit(68, "kg"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/juno/front.svg"
  7179. }
  7180. }
  7181. },
  7182. [
  7183. {
  7184. name: "Micro",
  7185. height: math.unit(7, "cm")
  7186. },
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.89, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(353, "meters"),
  7194. default: true
  7195. }
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(1.93, "meters"),
  7203. weight: math.unit(83, "kg"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/samantha/front.svg"
  7207. }
  7208. },
  7209. frontClothed: {
  7210. height: math.unit(1.93, "meters"),
  7211. weight: math.unit(83, "kg"),
  7212. name: "Front (Clothed)",
  7213. image: {
  7214. source: "./media/characters/samantha/front-clothed.svg"
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(1.93, "meters"),
  7219. weight: math.unit(83, "kg"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/samantha/back.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(1.93, "m")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(74, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(223, "meters"),
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8381, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro+",
  7246. height: math.unit(12000, "kilometers")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(1.92, "meters"),
  7255. weight: math.unit(80, "kg"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/dr-clay/front.svg"
  7259. }
  7260. },
  7261. frontClothed: {
  7262. height: math.unit(1.92, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front (Clothed)",
  7265. image: {
  7266. source: "./media/characters/dr-clay/front-clothed.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(1.92, "m")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(214, "meters"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(12.237, "meters"),
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(557, "megameters"),
  7287. },
  7288. {
  7289. name: "Unimaginable",
  7290. height: math.unit(120e9, "lightyears")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(2, "meters"),
  7299. weight: math.unit(80, "kg"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7303. }
  7304. }
  7305. },
  7306. [
  7307. {
  7308. name: "Teramacro",
  7309. height: math.unit(500000, "lightyears"),
  7310. default: true
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7316. {
  7317. crux: {
  7318. height: math.unit(2, "meters"),
  7319. weight: math.unit(150, "kg"),
  7320. name: "Crux",
  7321. image: {
  7322. source: "./media/characters/vemus/crux.svg",
  7323. extra: 1074/936,
  7324. bottom: 23/1097
  7325. }
  7326. },
  7327. skunkTanuki: {
  7328. height: math.unit(2, "meters"),
  7329. weight: math.unit(150, "kg"),
  7330. name: "Skunk-Tanuki",
  7331. image: {
  7332. source: "./media/characters/vemus/skunk-tanuki.svg",
  7333. extra: 926/893,
  7334. bottom: 20/946
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(4, "meters"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Big",
  7346. height: math.unit(8, "meters")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(100, "meters")
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(1500, "meters")
  7355. },
  7356. {
  7357. name: "Stellar",
  7358. height: math.unit(14e8, "meters")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(2, "meters"),
  7367. weight: math.unit(70, "kg"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/beherit/front.svg",
  7371. extra: 1234/1109,
  7372. bottom: 55/1289
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(6, "feet")
  7380. },
  7381. {
  7382. name: "Lorg",
  7383. height: math.unit(25, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Lorger",
  7388. height: math.unit(75, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(200, "meters")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(2, "meters"),
  7401. weight: math.unit(150, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/everett/front.svg",
  7405. extra: 1017/866,
  7406. bottom: 86/1103
  7407. }
  7408. },
  7409. paw: {
  7410. height: math.unit(2 / 3.6, "meters"),
  7411. name: "Paw",
  7412. image: {
  7413. source: "./media/characters/everett/paw.svg"
  7414. }
  7415. },
  7416. },
  7417. [
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(15, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Lorg",
  7425. height: math.unit(70, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Lorger",
  7430. height: math.unit(250, "feet")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(500, "meters")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2, "meters"),
  7443. weight: math.unit(86, "kg"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/rose/front.svg",
  7447. extra: 1785/1636,
  7448. bottom: 30/1815
  7449. },
  7450. form: "liom",
  7451. default: true
  7452. },
  7453. frontSporty: {
  7454. height: math.unit(2, "meters"),
  7455. weight: math.unit(86, "kg"),
  7456. name: "Front (Sporty)",
  7457. image: {
  7458. source: "./media/characters/rose/front-sporty.svg",
  7459. extra: 350/335,
  7460. bottom: 10/360
  7461. },
  7462. form: "liom"
  7463. },
  7464. frontAlt: {
  7465. height: math.unit(1.6, "meters"),
  7466. weight: math.unit(86, "kg"),
  7467. name: "Front (Alt)",
  7468. image: {
  7469. source: "./media/characters/rose/front-alt.svg",
  7470. extra: 299/283,
  7471. bottom: 3/302
  7472. },
  7473. form: "liom"
  7474. },
  7475. plush: {
  7476. height: math.unit(2, "meters"),
  7477. weight: math.unit(86/3, "kg"),
  7478. name: "Plush",
  7479. image: {
  7480. source: "./media/characters/rose/plush.svg",
  7481. extra: 361/337,
  7482. bottom: 11/372
  7483. },
  7484. form: "plush",
  7485. default: true
  7486. },
  7487. faeStanding: {
  7488. height: math.unit(10, "cm"),
  7489. weight: math.unit(10, "grams"),
  7490. name: "Standing",
  7491. image: {
  7492. source: "./media/characters/rose/fae-standing.svg",
  7493. extra: 1189/1060,
  7494. bottom: 27/1216
  7495. },
  7496. form: "fae",
  7497. default: true
  7498. },
  7499. faeSitting: {
  7500. height: math.unit(5, "cm"),
  7501. weight: math.unit(10, "grams"),
  7502. name: "Sitting",
  7503. image: {
  7504. source: "./media/characters/rose/fae-sitting.svg",
  7505. extra: 737/577,
  7506. bottom: 356/1093
  7507. },
  7508. form: "fae"
  7509. },
  7510. faePaw: {
  7511. height: math.unit(1.35, "cm"),
  7512. name: "Paw",
  7513. image: {
  7514. source: "./media/characters/rose/fae-paw.svg"
  7515. },
  7516. form: "fae"
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "True Micro",
  7522. height: math.unit(9, "cm"),
  7523. form: "liom"
  7524. },
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(16, "cm"),
  7528. form: "liom"
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(1.85, "meters"),
  7533. default: true,
  7534. form: "liom"
  7535. },
  7536. {
  7537. name: "Mini-Macro",
  7538. height: math.unit(5, "meters"),
  7539. form: "liom"
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(15, "meters"),
  7544. form: "liom"
  7545. },
  7546. {
  7547. name: "True Macro",
  7548. height: math.unit(40, "meters"),
  7549. form: "liom"
  7550. },
  7551. {
  7552. name: "City Scale",
  7553. height: math.unit(1, "km"),
  7554. form: "liom"
  7555. },
  7556. {
  7557. name: "Plushie",
  7558. height: math.unit(9, "cm"),
  7559. form: "plush",
  7560. default: true
  7561. },
  7562. {
  7563. name: "Fae",
  7564. height: math.unit(10, "cm"),
  7565. form: "fae",
  7566. default: true
  7567. },
  7568. ],
  7569. {
  7570. "liom": {
  7571. name: "Liom"
  7572. },
  7573. "plush": {
  7574. name: "Plush"
  7575. },
  7576. "fae": {
  7577. name: "Fae Fox",
  7578. default: true
  7579. }
  7580. }
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(350, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/regal/front.svg"
  7591. }
  7592. },
  7593. back: {
  7594. height: math.unit(2, "meters"),
  7595. weight: math.unit(350, "lbs"),
  7596. name: "Back",
  7597. image: {
  7598. source: "./media/characters/regal/back.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(350, "feet"),
  7606. default: true
  7607. }
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(4 + 11 / 12, "feet"),
  7615. weight: math.unit(100, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/opal/front.svg"
  7619. }
  7620. },
  7621. frontAlt: {
  7622. height: math.unit(4 + 11 / 12, "feet"),
  7623. weight: math.unit(100, "lbs"),
  7624. name: "Front (Alt)",
  7625. image: {
  7626. source: "./media/characters/opal/front-alt.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Small",
  7633. height: math.unit(4 + 11 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(20, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(120, "feet")
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(80, "miles")
  7647. },
  7648. {
  7649. name: "True Size",
  7650. height: math.unit(100000, "lightyears")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(200, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/vector-wuff/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(2.8, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(450, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Megamacro",
  7678. height: math.unit(15, "kilometers")
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(256, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/dannik/front.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(69.57, "meters"),
  7698. default: true
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(6, "feet"),
  7707. weight: math.unit(120, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/azura-saharah/front.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(120, "lbs"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/azura-saharah/back.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "feet"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7732. {
  7733. side: {
  7734. height: math.unit(5 + 4 / 12, "feet"),
  7735. weight: math.unit(163, "lbs"),
  7736. name: "Side",
  7737. image: {
  7738. source: "./media/characters/kennedy/side.svg"
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Standard Doggo",
  7745. height: math.unit(5 + 4 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Big Doggo",
  7749. height: math.unit(25 + 3 / 12, "feet"),
  7750. default: true
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(5 + 5/12, "feet"),
  7759. weight: math.unit(100, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/odios-de-lunar/front.svg",
  7763. extra: 1468/1323,
  7764. bottom: 22/1490
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(3, "inches")
  7772. },
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5.5, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(100, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7786. {
  7787. back: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(220, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/mandake/back.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(7, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(78, "feet")
  7805. },
  7806. {
  7807. name: "Macro+",
  7808. height: math.unit(300, "meters")
  7809. },
  7810. {
  7811. name: "Macro++",
  7812. height: math.unit(2400, "feet")
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(5167, "meters")
  7817. },
  7818. {
  7819. name: "Gigamacro",
  7820. height: math.unit(41769, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(120, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/yozey/front.svg"
  7833. }
  7834. },
  7835. frontAlt: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(120, "lbs"),
  7838. name: "Front (Alt)",
  7839. image: {
  7840. source: "./media/characters/yozey/front-alt.svg"
  7841. }
  7842. },
  7843. side: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(120, "lbs"),
  7846. name: "Side",
  7847. image: {
  7848. source: "./media/characters/yozey/side.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(3, "inches"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(6, "feet")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(103, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/valeska-voss/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Mini-Sized Sub",
  7879. height: math.unit(3.1, "inches")
  7880. },
  7881. {
  7882. name: "Mid-Sized Sub",
  7883. height: math.unit(6.2, "inches")
  7884. },
  7885. {
  7886. name: "Full-Sized Sub",
  7887. height: math.unit(9.3, "inches")
  7888. },
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(5 + 2 / 12, "foot"),
  7892. default: true
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(160, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/gene-zeta/front.svg",
  7905. extra: 3006 / 2826,
  7906. bottom: 182 / 3188
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Micro",
  7913. height: math.unit(6, "inches")
  7914. },
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(5 + 11 / 12, "foot"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(140, "feet")
  7923. },
  7924. {
  7925. name: "Supercharged",
  7926. height: math.unit(2500, "feet")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(350, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/razinox/front.svg",
  7939. extra: 1686 / 1548,
  7940. bottom: 28.2 / 1868
  7941. }
  7942. },
  7943. back: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(350, "lbs"),
  7946. name: "Back",
  7947. image: {
  7948. source: "./media/characters/razinox/back.svg",
  7949. extra: 1660 / 1590,
  7950. bottom: 15 / 1665
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(10 + 8 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Minimacro",
  7961. height: math.unit(15, "foot")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(60, "foot"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(5, "miles")
  7971. },
  7972. {
  7973. name: "Gigamacro",
  7974. height: math.unit(6000, "miles")
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(6, "feet"),
  7983. weight: math.unit(150, "lbs"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/cobalt/front.svg"
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(8 + 1 / 12, "foot")
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(111, "foot"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Supracosmic",
  8002. height: math.unit(1e42, "feet")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(5, "inches"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/amanda/front.svg",
  8014. extra: 926/791,
  8015. bottom: 38/964
  8016. }
  8017. },
  8018. back: {
  8019. height: math.unit(5, "inches"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/amanda/back.svg",
  8023. extra: 909/805,
  8024. bottom: 43/952
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(5, "inches"),
  8032. default: true
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(2.75, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/teal/front.svg",
  8045. extra: 2463 / 2320,
  8046. bottom: 166 / 2629
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(2.75, "meters"),
  8051. weight: math.unit(1200, "lb"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/teal/back.svg",
  8055. extra: 2580 / 2489,
  8056. bottom: 151 / 2731
  8057. }
  8058. },
  8059. sitting: {
  8060. height: math.unit(1.9, "meters"),
  8061. weight: math.unit(1200, "lb"),
  8062. name: "Sitting",
  8063. image: {
  8064. source: "./media/characters/teal/sitting.svg",
  8065. extra: 623 / 590,
  8066. bottom: 121 / 744
  8067. }
  8068. },
  8069. standing: {
  8070. height: math.unit(2.75, "meters"),
  8071. weight: math.unit(1200, "lb"),
  8072. name: "Standing",
  8073. image: {
  8074. source: "./media/characters/teal/standing.svg",
  8075. extra: 923 / 893,
  8076. bottom: 60 / 983
  8077. }
  8078. },
  8079. stretching: {
  8080. height: math.unit(3.65, "meters"),
  8081. weight: math.unit(1200, "lb"),
  8082. name: "Stretching",
  8083. image: {
  8084. source: "./media/characters/teal/stretching.svg",
  8085. extra: 1276 / 1244,
  8086. bottom: 0 / 1276
  8087. }
  8088. },
  8089. legged: {
  8090. height: math.unit(1.3, "meters"),
  8091. weight: math.unit(100, "lb"),
  8092. name: "Legged",
  8093. image: {
  8094. source: "./media/characters/teal/legged.svg",
  8095. extra: 462 / 437,
  8096. bottom: 24 / 486
  8097. }
  8098. },
  8099. naga: {
  8100. height: math.unit(5.4, "meters"),
  8101. weight: math.unit(4000, "lb"),
  8102. name: "Naga",
  8103. image: {
  8104. source: "./media/characters/teal/naga.svg",
  8105. extra: 1902 / 1858,
  8106. bottom: 0 / 1902
  8107. }
  8108. },
  8109. hand: {
  8110. height: math.unit(0.52, "meters"),
  8111. name: "Hand",
  8112. image: {
  8113. source: "./media/characters/teal/hand.svg"
  8114. }
  8115. },
  8116. maw: {
  8117. height: math.unit(0.43, "meters"),
  8118. name: "Maw",
  8119. image: {
  8120. source: "./media/characters/teal/maw.svg"
  8121. }
  8122. },
  8123. slit: {
  8124. height: math.unit(0.25, "meters"),
  8125. name: "Slit",
  8126. image: {
  8127. source: "./media/characters/teal/slit.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.75, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(300, "feet")
  8140. },
  8141. {
  8142. name: "Macro+",
  8143. height: math.unit(2000, "feet")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8149. {
  8150. frontCat: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front (Cat)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/front-cat.svg"
  8156. }
  8157. },
  8158. frontCatAlt: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(180, "lbs"),
  8161. name: "Front (Alt, Cat)",
  8162. image: {
  8163. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8164. }
  8165. },
  8166. frontWerewolf: {
  8167. height: math.unit(6 * 1.2, "feet"),
  8168. weight: math.unit(225, "lbs"),
  8169. name: "Front (Werewolf)",
  8170. image: {
  8171. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8172. }
  8173. },
  8174. backWerewolf: {
  8175. height: math.unit(6 * 1.2, "feet"),
  8176. weight: math.unit(225, "lbs"),
  8177. name: "Back (Werewolf)",
  8178. image: {
  8179. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Nano",
  8186. height: math.unit(1, "micrometer")
  8187. },
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(1, "inch")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(6, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(60, "feet")
  8200. }
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(165, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/fluoresce/front.svg"
  8212. }
  8213. }
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(6, "cm")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 7 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(56, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(1.9, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(9 + 6 / 12, "feet"),
  8240. weight: math.unit(523, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/aurora/side.svg"
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(9 + 6 / 12, "feet")
  8251. },
  8252. {
  8253. name: "Macro",
  8254. height: math.unit(96, "feet"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Macro+",
  8259. height: math.unit(243, "feet")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(194, "cm"),
  8268. weight: math.unit(90, "kg"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/ranek/front.svg",
  8272. extra: 1862/1791,
  8273. bottom: 80/1942
  8274. }
  8275. },
  8276. back: {
  8277. height: math.unit(194, "cm"),
  8278. weight: math.unit(90, "kg"),
  8279. name: "Back",
  8280. image: {
  8281. source: "./media/characters/ranek/back.svg",
  8282. extra: 1853/1787,
  8283. bottom: 74/1927
  8284. }
  8285. },
  8286. feral: {
  8287. height: math.unit(30, "cm"),
  8288. weight: math.unit(1.6, "lbs"),
  8289. name: "Feral",
  8290. image: {
  8291. source: "./media/characters/ranek/feral.svg",
  8292. extra: 990/631,
  8293. bottom: 29/1019
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(194, "cm"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(100, "meters")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(5 + 6 / 12, "feet"),
  8314. weight: math.unit(153, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/andrew-cooper/front.svg"
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Nano",
  8324. height: math.unit(1, "mm")
  8325. },
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(5 + 6 / 12, "feet"),
  8333. default: true
  8334. }
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(180, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/akane-sato/front.svg",
  8346. extra: 1219 / 1140
  8347. }
  8348. },
  8349. back: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(180, "lbs"),
  8352. name: "Back",
  8353. image: {
  8354. source: "./media/characters/akane-sato/back.svg",
  8355. extra: 1219 / 1170
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(2.5, "meters")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(250, "meters"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Megamacro",
  8371. height: math.unit(25, "km")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(65, "kg"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/rook/front.svg",
  8384. extra: 960 / 950
  8385. }
  8386. }
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(8.8, "feet")
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(88, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Megamacro",
  8400. height: math.unit(8, "miles")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(12 + 2 / 12, "feet"),
  8409. weight: math.unit(808, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/prodigy/front.svg"
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(12 + 2 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(143, "feet")
  8425. },
  8426. {
  8427. name: "Macro+",
  8428. height: math.unit(400, "feet")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(225, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/daniel/front.svg"
  8441. }
  8442. },
  8443. leaning: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(225, "lbs"),
  8446. name: "Leaning",
  8447. image: {
  8448. source: "./media/characters/daniel/leaning.svg"
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(1000, "feet"),
  8456. default: true
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(88, "lbs"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/chiros/front.svg",
  8469. extra: 306 / 226
  8470. }
  8471. },
  8472. side: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(88, "lbs"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/chiros/side.svg",
  8478. extra: 306 / 226
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(6, "cm"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(100, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/selka/front.svg",
  8499. extra: 947 / 887
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(5, "cm"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(8 + 3 / 12, "feet"),
  8516. weight: math.unit(424, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/verin/front.svg",
  8520. extra: 1845 / 1550
  8521. }
  8522. },
  8523. frontArmored: {
  8524. height: math.unit(8 + 3 / 12, "feet"),
  8525. weight: math.unit(424, "lbs"),
  8526. name: "Front (Armored)",
  8527. image: {
  8528. source: "./media/characters/verin/front-armor.svg",
  8529. extra: 1845 / 1550,
  8530. bottom: 0.01
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(8 + 3 / 12, "feet"),
  8535. weight: math.unit(424, "lbs"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/verin/back.svg",
  8539. bottom: 0.1,
  8540. extra: 1
  8541. }
  8542. },
  8543. foot: {
  8544. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8545. name: "Foot",
  8546. image: {
  8547. source: "./media/characters/verin/foot.svg"
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(8 + 3 / 12, "feet")
  8555. },
  8556. {
  8557. name: "Minimacro",
  8558. height: math.unit(21, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(626, "feet")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(2.718, "meters"),
  8572. weight: math.unit(150, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/sovrim-terraquian/front.svg",
  8576. extra: 1752/1689,
  8577. bottom: 36/1788
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(2.718, "meters"),
  8582. weight: math.unit(150, "lbs"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/sovrim-terraquian/back.svg",
  8586. extra: 1698/1657,
  8587. bottom: 58/1756
  8588. }
  8589. },
  8590. tongue: {
  8591. height: math.unit(2.865, "feet"),
  8592. name: "Tongue",
  8593. image: {
  8594. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8595. }
  8596. },
  8597. hand: {
  8598. height: math.unit(1.61, "feet"),
  8599. name: "Hand",
  8600. image: {
  8601. source: "./media/characters/sovrim-terraquian/hand.svg"
  8602. }
  8603. },
  8604. foot: {
  8605. height: math.unit(1.05, "feet"),
  8606. name: "Foot",
  8607. image: {
  8608. source: "./media/characters/sovrim-terraquian/foot.svg"
  8609. }
  8610. },
  8611. footAlt: {
  8612. height: math.unit(0.88, "feet"),
  8613. name: "Foot (Alt)",
  8614. image: {
  8615. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(2, "inches")
  8623. },
  8624. {
  8625. name: "Small",
  8626. height: math.unit(1, "meter")
  8627. },
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(Math.E, "meters"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(20, "meters")
  8636. },
  8637. {
  8638. name: "Macro+",
  8639. height: math.unit(400, "meters")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7, "feet"),
  8648. weight: math.unit(489, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/reece-silvermane/front.svg",
  8652. bottom: 0.02,
  8653. extra: 1
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(1.5, "miles"),
  8661. default: true
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(78, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/kane/front.svg",
  8674. extra: 978 / 899
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(2.1, "m"),
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(1, "km"),
  8686. default: true
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(200, "kg"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/tegon/front.svg",
  8699. bottom: 0.01,
  8700. extra: 1
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(1, "inch")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(6 + 3 / 12, "feet"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(300, "feet")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(69, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8726. {
  8727. side: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(2304, "lbs"),
  8730. name: "Side",
  8731. image: {
  8732. source: "./media/characters/arcturax/side.svg",
  8733. extra: 790 / 376,
  8734. bottom: 0.01
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Micro",
  8741. height: math.unit(2, "inch")
  8742. },
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(6, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(39, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Megamacro",
  8754. height: math.unit(7, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(50, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sentri/front.svg",
  8767. extra: 1750 / 1570,
  8768. bottom: 0.025
  8769. }
  8770. },
  8771. frontAlt: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(50, "lbs"),
  8774. name: "Front (Alt)",
  8775. image: {
  8776. source: "./media/characters/sentri/front-alt.svg",
  8777. extra: 1750 / 1570,
  8778. bottom: 0.025
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(15, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(2500, "feet")
  8791. }
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/corvin/front.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. frontShirt: {
  8807. height: math.unit(5 + 8 / 12, "feet"),
  8808. weight: math.unit(130, "lbs"),
  8809. name: "Front (Shirt)",
  8810. image: {
  8811. source: "./media/characters/corvin/front-shirt.svg",
  8812. extra: 1803 / 1629
  8813. }
  8814. },
  8815. frontPoncho: {
  8816. height: math.unit(5 + 8 / 12, "feet"),
  8817. weight: math.unit(130, "lbs"),
  8818. name: "Front (Poncho)",
  8819. image: {
  8820. source: "./media/characters/corvin/front-poncho.svg",
  8821. extra: 1803 / 1629
  8822. }
  8823. },
  8824. side: {
  8825. height: math.unit(5 + 8 / 12, "feet"),
  8826. weight: math.unit(130, "lbs"),
  8827. name: "Side",
  8828. image: {
  8829. source: "./media/characters/corvin/side.svg",
  8830. extra: 1012 / 945
  8831. }
  8832. },
  8833. back: {
  8834. height: math.unit(5 + 8 / 12, "feet"),
  8835. weight: math.unit(130, "lbs"),
  8836. name: "Back",
  8837. image: {
  8838. source: "./media/characters/corvin/back.svg",
  8839. extra: 1803 / 1629
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(3, "inches")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(300, "feet"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Megamacro",
  8859. height: math.unit(500, "miles")
  8860. }
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(135, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/q/front.svg",
  8872. extra: 854 / 752,
  8873. bottom: 0.005
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(6, "feet"),
  8878. weight: math.unit(130, "lbs"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/q/back.svg",
  8882. extra: 854 / 752
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(90, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Extra Macro",
  8894. height: math.unit(300, "feet"),
  8895. },
  8896. {
  8897. name: "BIG WALF",
  8898. height: math.unit(750, "feet"),
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(3, "feet"),
  8907. weight: math.unit(28, "lbs"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/citrine/front.svg"
  8911. }
  8912. }
  8913. },
  8914. [
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(3, "feet"),
  8918. default: true
  8919. }
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8924. {
  8925. front: {
  8926. height: math.unit(14, "feet"),
  8927. weight: math.unit(1450, "kg"),
  8928. preyCapacity: math.unit(15, "people"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/aura-starwind/front.svg",
  8932. extra: 1440/1327,
  8933. bottom: 11/1451
  8934. }
  8935. },
  8936. side: {
  8937. height: math.unit(14, "feet"),
  8938. weight: math.unit(1450, "kg"),
  8939. preyCapacity: math.unit(15, "people"),
  8940. name: "Side",
  8941. image: {
  8942. source: "./media/characters/aura-starwind/side.svg",
  8943. extra: 1654 / 1497
  8944. }
  8945. },
  8946. taur: {
  8947. height: math.unit(18, "feet"),
  8948. weight: math.unit(5500, "kg"),
  8949. preyCapacity: math.unit(50, "people"),
  8950. name: "Taur",
  8951. image: {
  8952. source: "./media/characters/aura-starwind/taur.svg",
  8953. extra: 1760 / 1650
  8954. }
  8955. },
  8956. feral: {
  8957. height: math.unit(46, "feet"),
  8958. weight: math.unit(25000, "kg"),
  8959. preyCapacity: math.unit(120, "people"),
  8960. name: "Feral",
  8961. image: {
  8962. source: "./media/characters/aura-starwind/feral.svg"
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(14, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(50, "meters")
  8975. },
  8976. {
  8977. name: "Megamacro",
  8978. height: math.unit(5000, "meters")
  8979. },
  8980. {
  8981. name: "Gigamacro",
  8982. height: math.unit(100000, "kilometers")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(2 + 7 / 12, "feet"),
  8991. weight: math.unit(32, "lbs"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/rivet/front.svg",
  8995. extra: 1716 / 1658,
  8996. bottom: 0.03
  8997. }
  8998. },
  8999. foot: {
  9000. height: math.unit(0.551, "feet"),
  9001. name: "Rivet's Foot",
  9002. image: {
  9003. source: "./media/characters/rivet/foot.svg"
  9004. },
  9005. rename: true
  9006. }
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(1.5, "inches"),
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(2 + 7 / 12, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Macro",
  9020. height: math.unit(85, "feet")
  9021. },
  9022. {
  9023. name: "Megamacro",
  9024. height: math.unit(2.2, "km")
  9025. }
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. weight: math.unit(150, "lbs"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/coffee/front.svg",
  9037. extra: 946/880,
  9038. bottom: 66/1012
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.29, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/coffee/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(2, "inches"),
  9053. },
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 9 / 12, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(800, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(25, "miles")
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/chari-gal/front.svg",
  9078. extra: 1568 / 1385,
  9079. bottom: 0.047
  9080. }
  9081. },
  9082. gigantamax: {
  9083. height: math.unit(6 * 16, "feet"),
  9084. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9085. name: "Gigantamax",
  9086. image: {
  9087. source: "./media/characters/chari-gal/gigantamax.svg",
  9088. extra: 1124 / 888,
  9089. bottom: 0.03
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5 + 7 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(200, "feet"),
  9101. default: true
  9102. }
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/nova/front.svg",
  9114. extra: 5000 / 4722,
  9115. bottom: 0.02
  9116. }
  9117. }
  9118. },
  9119. [
  9120. {
  9121. name: "Micro-",
  9122. height: math.unit(0.8, "inches")
  9123. },
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(2, "inches"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9133. {
  9134. koboldFront: {
  9135. height: math.unit(3 + 1 / 12, "feet"),
  9136. weight: math.unit(21.7, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/argent/kobold-front.svg",
  9140. extra: 1471 / 1331,
  9141. bottom: 100.8 / 1575.5
  9142. },
  9143. form: "kobold",
  9144. default: true
  9145. },
  9146. dragonFront: {
  9147. height: math.unit(75, "inches"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/argent/dragon-front.svg",
  9151. extra: 1389/1248,
  9152. bottom: 54/1443
  9153. },
  9154. form: "dragon",
  9155. },
  9156. dragonBack: {
  9157. height: math.unit(75, "inches"),
  9158. name: "Back",
  9159. image: {
  9160. source: "./media/characters/argent/dragon-back.svg",
  9161. extra: 1399/1271,
  9162. bottom: 23/1422
  9163. },
  9164. form: "dragon",
  9165. },
  9166. dragonDressed: {
  9167. height: math.unit(75, "inches"),
  9168. name: "Dressed",
  9169. image: {
  9170. source: "./media/characters/argent/dragon-dressed.svg",
  9171. extra: 1350/1215,
  9172. bottom: 26/1376
  9173. },
  9174. form: "dragon"
  9175. },
  9176. dragonHead: {
  9177. height: math.unit(23.5, "inches"),
  9178. name: "Head",
  9179. image: {
  9180. source: "./media/characters/argent/dragon-head.svg"
  9181. },
  9182. form: "dragon",
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches"),
  9189. form: "kobold",
  9190. },
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(3 + 1 / 12, "feet"),
  9194. form: "kobold",
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(120, "feet"),
  9200. form: "kobold",
  9201. },
  9202. {
  9203. name: "Speck",
  9204. height: math.unit(1, "mm"),
  9205. form: "dragon",
  9206. },
  9207. {
  9208. name: "Tiny",
  9209. height: math.unit(1, "cm"),
  9210. form: "dragon",
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(5, "cm"),
  9215. form: "dragon",
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(75, "inches"),
  9220. form: "dragon",
  9221. default: true
  9222. },
  9223. {
  9224. name: "Extra Tall",
  9225. height: math.unit(9, "feet"),
  9226. form: "dragon",
  9227. },
  9228. {
  9229. name: "Inconvenient",
  9230. height: math.unit(5, "meters"),
  9231. form: "dragon",
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(70, "meters"),
  9236. form: "dragon",
  9237. },
  9238. {
  9239. name: "Macro+",
  9240. height: math.unit(250, "meters"),
  9241. form: "dragon",
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(20, "km"),
  9246. form: "dragon",
  9247. },
  9248. {
  9249. name: "Mountainous",
  9250. height: math.unit(100, "km"),
  9251. form: "dragon",
  9252. },
  9253. {
  9254. name: "Continental",
  9255. height: math.unit(2, "megameters"),
  9256. form: "dragon",
  9257. },
  9258. {
  9259. name: "Too Big",
  9260. height: math.unit(900, "megameters"),
  9261. form: "dragon",
  9262. },
  9263. ],
  9264. {
  9265. "kobold": {
  9266. name: "Kobold",
  9267. default: true
  9268. },
  9269. "dragon": {
  9270. name: "Dragon",
  9271. },
  9272. }
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9276. {
  9277. lamp: {
  9278. height: math.unit(7 * 1559 / 989, "feet"),
  9279. name: "Magic Lamp",
  9280. image: {
  9281. source: "./media/characters/mira-al-cul/lamp.svg",
  9282. extra: 1617 / 1559
  9283. }
  9284. },
  9285. front: {
  9286. height: math.unit(7, "feet"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mira-al-cul/front.svg",
  9290. extra: 1044 / 990
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Heavily Restricted",
  9297. height: math.unit(7 * 1559 / 989, "feet")
  9298. },
  9299. {
  9300. name: "Freshly Freed",
  9301. height: math.unit(50 * 1559 / 989, "feet")
  9302. },
  9303. {
  9304. name: "World Encompassing",
  9305. height: math.unit(10000 * 1559 / 989, "miles")
  9306. },
  9307. {
  9308. name: "Galactic",
  9309. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9310. },
  9311. {
  9312. name: "Palmed Universe",
  9313. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Multiversal Matriarch",
  9318. height: math.unit(8.87e10, "yottameters")
  9319. },
  9320. {
  9321. name: "Void Mother",
  9322. height: math.unit(3.14e110, "yottaparsecs")
  9323. },
  9324. {
  9325. name: "Toying with Transcendence",
  9326. height: math.unit(1e307, "meters")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(17 + 1 / 12, "feet"),
  9335. weight: math.unit(476.2 * 5, "lbs"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/kuro-shi-uchū/front.svg",
  9339. extra: 2329 / 1835,
  9340. bottom: 0.02
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Micro",
  9347. height: math.unit(2, "inches")
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(12, "meters")
  9352. },
  9353. {
  9354. name: "Planetary",
  9355. height: math.unit(0.00929, "AU"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Universal",
  9360. height: math.unit(20, "gigaparsecs")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(5 + 2 / 12, "feet"),
  9369. weight: math.unit(120, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/katherine/front.svg",
  9373. extra: 2075 / 1969
  9374. }
  9375. },
  9376. dress: {
  9377. height: math.unit(5 + 2 / 12, "feet"),
  9378. weight: math.unit(120, "lbs"),
  9379. name: "Dress",
  9380. image: {
  9381. source: "./media/characters/katherine/dress.svg",
  9382. extra: 2258 / 2064
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inches"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(5 + 2 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(100, "meters")
  9399. },
  9400. {
  9401. name: "Megamacro",
  9402. height: math.unit(80, "miles")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(7 + 8 / 12, "feet"),
  9411. weight: math.unit(250, "lbs"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/yevis/front.svg",
  9415. extra: 1938 / 1755
  9416. }
  9417. }
  9418. },
  9419. [
  9420. {
  9421. name: "Mortal",
  9422. height: math.unit(7 + 8 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Battle",
  9426. height: math.unit(25 + 11 / 12, "feet")
  9427. },
  9428. {
  9429. name: "Wrath",
  9430. height: math.unit(1654 + 11 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Planet Destroyer",
  9434. height: math.unit(12000, "miles")
  9435. },
  9436. {
  9437. name: "Galaxy Conqueror",
  9438. height: math.unit(1.45, "zettameters"),
  9439. default: true
  9440. },
  9441. {
  9442. name: "Universal War",
  9443. height: math.unit(184, "gigaparsecs")
  9444. },
  9445. {
  9446. name: "Eternity War",
  9447. height: math.unit(1.98e55, "yottaparsecs")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5 + 8 / 12, "feet"),
  9456. weight: math.unit(63, "kg"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/xavier/front.svg",
  9460. extra: 944 / 883
  9461. }
  9462. },
  9463. frontStretch: {
  9464. height: math.unit(5 + 8 / 12, "feet"),
  9465. weight: math.unit(63, "kg"),
  9466. name: "Stretching",
  9467. image: {
  9468. source: "./media/characters/xavier/front-stretch.svg",
  9469. extra: 962 / 820
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 8 / 12, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(100, "meters"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "McLargeHuge",
  9485. height: math.unit(10, "miles")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(5 + 5 / 12, "feet"),
  9494. weight: math.unit(150, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/joshii/front.svg",
  9498. extra: 765 / 653,
  9499. bottom: 51 / 816
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9504. name: "Foot",
  9505. image: {
  9506. source: "./media/characters/joshii/foot.svg"
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5 + 5 / 12, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(785, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(24.5, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/goddess-elizabeth/front.svg",
  9539. extra: 1800 / 1525,
  9540. bottom: 0.005
  9541. }
  9542. },
  9543. foot: {
  9544. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9545. name: "Foot",
  9546. image: {
  9547. source: "./media/characters/goddess-elizabeth/foot.svg"
  9548. }
  9549. },
  9550. mouth: {
  9551. height: math.unit(6, "feet"),
  9552. name: "Mouth",
  9553. image: {
  9554. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Micro",
  9561. height: math.unit(12, "feet")
  9562. },
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(80, "miles"),
  9566. default: true
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(15000, "parsecs")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. weight: math.unit(144, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/kara/front.svg"
  9583. }
  9584. },
  9585. feet: {
  9586. height: math.unit(6 / 6.765, "feet"),
  9587. name: "Kara's Feet",
  9588. rename: true,
  9589. image: {
  9590. source: "./media/characters/kara/feet.svg"
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(5 + 9 / 12, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(174, "feet"),
  9602. default: true
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(18, "feet"),
  9611. weight: math.unit(4050, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/tyrone/front.svg",
  9615. extra: 2405 / 2270,
  9616. bottom: 182 / 2587
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(18, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(300, "feet")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(15, "km")
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(500, "km")
  9637. },
  9638. {
  9639. name: "Teramacro",
  9640. height: math.unit(0.5, "gigameters")
  9641. },
  9642. {
  9643. name: "Omnimacro",
  9644. height: math.unit(1e252, "yottauniverse")
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(7 + 8 / 12, "feet"),
  9653. weight: math.unit(120, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/danny/front.svg",
  9657. extra: 1490 / 1350
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(7 + 8 / 12, "feet"),
  9662. weight: math.unit(120, "lb"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/danny/back.svg",
  9666. extra: 1490 / 1350
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(7 + 8 / 12, "feet"),
  9674. default: true
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(3.5, "inches"),
  9683. weight: math.unit(19, "grams"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/mallow/front.svg",
  9687. extra: 471 / 431
  9688. }
  9689. },
  9690. back: {
  9691. height: math.unit(3.5, "inches"),
  9692. weight: math.unit(19, "grams"),
  9693. name: "Back",
  9694. image: {
  9695. source: "./media/characters/mallow/back.svg",
  9696. extra: 471 / 431
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(3.5, "inches"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(9, "feet"),
  9713. weight: math.unit(230, "kg"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/starry-aqua/front.svg"
  9717. }
  9718. },
  9719. back: {
  9720. height: math.unit(9, "feet"),
  9721. weight: math.unit(230, "kg"),
  9722. name: "Back",
  9723. image: {
  9724. source: "./media/characters/starry-aqua/back.svg"
  9725. }
  9726. },
  9727. hand: {
  9728. height: math.unit(9 * 0.1168, "feet"),
  9729. name: "Hand",
  9730. image: {
  9731. source: "./media/characters/starry-aqua/hand.svg"
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(9 * 0.18, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/starry-aqua/foot.svg"
  9739. }
  9740. }
  9741. },
  9742. [
  9743. {
  9744. name: "Micro",
  9745. height: math.unit(3, "inches")
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(9, "feet")
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(300, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Megamacro",
  9758. height: math.unit(3200, "feet")
  9759. }
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(15, "feet"),
  9767. weight: math.unit(5026, "lb"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/luka-towers/front.svg",
  9771. extra: 1269/1133,
  9772. bottom: 51/1320
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(15, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Minimacro",
  9784. height: math.unit(25, "feet")
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(320, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(35000, "feet")
  9793. },
  9794. {
  9795. name: "Gigamacro",
  9796. height: math.unit(4000, "miles")
  9797. },
  9798. {
  9799. name: "Teramacro",
  9800. height: math.unit(15000, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(6, "feet"),
  9809. weight: math.unit(150, "lb"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/natalie-nightring/front.svg",
  9813. extra: 1,
  9814. bottom: 0.06
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Uh Oh",
  9821. height: math.unit(0.1, "mm")
  9822. },
  9823. {
  9824. name: "Small",
  9825. height: math.unit(3, "inches")
  9826. },
  9827. {
  9828. name: "Human Scale",
  9829. height: math.unit(6, "feet")
  9830. },
  9831. {
  9832. name: "Librarian",
  9833. height: math.unit(50, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Immense",
  9838. height: math.unit(200, "miles")
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(180, "lbs"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/danni-rosie/front.svg",
  9851. extra: 1260 / 1128,
  9852. bottom: 0.022
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(2, "inches"),
  9860. default: true
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(220, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/samantha-kruse/front.svg",
  9873. extra: (985 / 935),
  9874. bottom: 0.03
  9875. }
  9876. },
  9877. frontUndressed: {
  9878. height: math.unit(5 + 9 / 12, "feet"),
  9879. weight: math.unit(220, "lb"),
  9880. name: "Front (Undressed)",
  9881. image: {
  9882. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9883. extra: (973 / 923),
  9884. bottom: 0.025
  9885. }
  9886. },
  9887. fat: {
  9888. height: math.unit(5 + 9 / 12, "feet"),
  9889. weight: math.unit(900, "lb"),
  9890. name: "Front (Fat)",
  9891. image: {
  9892. source: "./media/characters/samantha-kruse/fat.svg",
  9893. extra: 2688 / 2561
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(5 + 9 / 12, "feet"),
  9901. default: true
  9902. }
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9907. {
  9908. back: {
  9909. height: math.unit(5 + 4 / 12, "feet"),
  9910. weight: math.unit(4963, "lb"),
  9911. name: "Back",
  9912. image: {
  9913. source: "./media/characters/amelia-rosie/back.svg",
  9914. extra: 1113 / 963,
  9915. bottom: 0.01
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Level 0",
  9922. height: math.unit(5 + 4 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Level 1",
  9926. height: math.unit(164597, "feet"),
  9927. default: true
  9928. },
  9929. {
  9930. name: "Level 2",
  9931. height: math.unit(956243, "miles")
  9932. },
  9933. {
  9934. name: "Level 3",
  9935. height: math.unit(29421709423, "miles")
  9936. },
  9937. {
  9938. name: "Level 4",
  9939. height: math.unit(154, "lightyears")
  9940. },
  9941. {
  9942. name: "Level 5",
  9943. height: math.unit(4738272, "lightyears")
  9944. },
  9945. {
  9946. name: "Level 6",
  9947. height: math.unit(145787152896, "lightyears")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(5 + 11 / 12, "feet"),
  9956. weight: math.unit(65, "kg"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/rook-kitara/front.svg",
  9960. extra: 1347 / 1274,
  9961. bottom: 0.005
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Totally Unfair",
  9968. height: math.unit(1.8, "mm")
  9969. },
  9970. {
  9971. name: "Lap Rookie",
  9972. height: math.unit(1.4, "feet")
  9973. },
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 11 / 12, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "How Did This Happen",
  9981. height: math.unit(80, "miles")
  9982. }
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(7, "feet"),
  9990. weight: math.unit(300, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/pisces/front.svg",
  9994. extra: 2255 / 2115,
  9995. bottom: 0.03
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(7, "feet"),
  10000. weight: math.unit(300, "lb"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/pisces/back.svg",
  10004. extra: 2146 / 2055,
  10005. bottom: 0.04
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(7, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Swimming Pool",
  10017. height: math.unit(12.2, "meters")
  10018. },
  10019. {
  10020. name: "Olympic Swimming Pool",
  10021. height: math.unit(56.3, "meters")
  10022. },
  10023. {
  10024. name: "Lake Superior",
  10025. height: math.unit(93900, "meters")
  10026. },
  10027. {
  10028. name: "Mediterranean Sea",
  10029. height: math.unit(644457, "meters")
  10030. },
  10031. {
  10032. name: "World's Oceans",
  10033. height: math.unit(4567491, "meters")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(2.3, "meters"),
  10042. weight: math.unit(120, "kg"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/zelas/front.svg"
  10046. }
  10047. },
  10048. side: {
  10049. height: math.unit(2.3, "meters"),
  10050. weight: math.unit(120, "kg"),
  10051. name: "Side",
  10052. image: {
  10053. source: "./media/characters/zelas/side.svg"
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(2.3, "meters"),
  10058. weight: math.unit(120, "kg"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/zelas/back.svg"
  10062. }
  10063. },
  10064. foot: {
  10065. height: math.unit(1.116, "feet"),
  10066. name: "Foot",
  10067. image: {
  10068. source: "./media/characters/zelas/foot.svg"
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(2.3, "meters")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(30, "meters"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(1, "inch"),
  10089. weight: math.unit(0.21, "grams"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/talbot/front.svg",
  10093. extra: 594 / 544
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Micro",
  10100. height: math.unit(1, "inch"),
  10101. default: true
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10107. {
  10108. front: {
  10109. height: math.unit(3 + 3 / 12, "feet"),
  10110. weight: math.unit(51.8, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/fliss/front.svg",
  10114. extra: 840 / 640
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Teeny Tiny",
  10121. height: math.unit(1, "mm")
  10122. },
  10123. {
  10124. name: "Small",
  10125. height: math.unit(1, "inch"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Standard Sylveon",
  10130. height: math.unit(3 + 3 / 12, "feet")
  10131. },
  10132. {
  10133. name: "Large Nuisance",
  10134. height: math.unit(33, "feet")
  10135. },
  10136. {
  10137. name: "City Filler",
  10138. height: math.unit(3000, "feet")
  10139. },
  10140. {
  10141. name: "New Horizon",
  10142. height: math.unit(6000, "miles")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(5, "cm"),
  10151. weight: math.unit(1.94, "g"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/fleta/front.svg",
  10155. extra: 835 / 803
  10156. }
  10157. },
  10158. back: {
  10159. height: math.unit(5, "cm"),
  10160. weight: math.unit(1.94, "g"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/fleta/back.svg",
  10164. extra: 835 / 803
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(5, "cm"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(225, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/dominic/front.svg",
  10185. extra: 1770 / 1620,
  10186. bottom: 0.025
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(225, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/dominic/back.svg",
  10195. extra: 1745 / 1620,
  10196. bottom: 0.065
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Nano",
  10203. height: math.unit(0.1, "mm")
  10204. },
  10205. {
  10206. name: "Micro-",
  10207. height: math.unit(1, "mm")
  10208. },
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(4, "inches")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(6 + 4 / 12, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(115, "feet")
  10221. },
  10222. {
  10223. name: "Macro+",
  10224. height: math.unit(955, "feet")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(8990, "feet")
  10229. },
  10230. {
  10231. name: "Gigmacro",
  10232. height: math.unit(9310, "miles")
  10233. },
  10234. {
  10235. name: "Teramacro",
  10236. height: math.unit(1567005010, "miles")
  10237. },
  10238. {
  10239. name: "Examacro",
  10240. height: math.unit(1425, "parsecs")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(400, "feet"),
  10249. weight: math.unit(44444444, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/major-colonel/front.svg"
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(400, "feet"),
  10257. weight: math.unit(44444444, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/major-colonel/back.svg"
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(400, "feet"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10274. {
  10275. catFront: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front (Cat Side)",
  10279. image: {
  10280. source: "./media/characters/axel-lycan/cat-front.svg",
  10281. extra: 430 / 402,
  10282. bottom: 43 / 472.35
  10283. }
  10284. },
  10285. catBack: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(120, "lb"),
  10288. name: "Back (Cat Side)",
  10289. image: {
  10290. source: "./media/characters/axel-lycan/cat-back.svg",
  10291. extra: 447 / 419,
  10292. bottom: 23.3 / 469
  10293. }
  10294. },
  10295. wolfFront: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(120, "lb"),
  10298. name: "Front (Wolf Side)",
  10299. image: {
  10300. source: "./media/characters/axel-lycan/wolf-front.svg",
  10301. extra: 485 / 456,
  10302. bottom: 19 / 504
  10303. }
  10304. },
  10305. wolfBack: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(120, "lb"),
  10308. name: "Back (Wolf Side)",
  10309. image: {
  10310. source: "./media/characters/axel-lycan/wolf-back.svg",
  10311. extra: 475 / 438,
  10312. bottom: 39.2 / 514
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(1, "km"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(5 + 9 / 12, "feet"),
  10329. weight: math.unit(175, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/vanrel-hyena/front.svg",
  10333. extra: 1086 / 1010,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(5 + 9 / 12, "feet"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(103, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/abbott-absol/front.svg",
  10355. extra: 2010 / 1842
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Megamicro",
  10362. height: math.unit(0.1, "mm")
  10363. },
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(1, "inch")
  10367. },
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(6, "feet"),
  10371. default: true
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(264, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/hector/front.svg",
  10384. extra: 2280 / 2130,
  10385. bottom: 0.07
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(12.25, "foot"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(160, "feet")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/sal/front.svg",
  10410. extra: 1846 / 1699,
  10411. bottom: 0.04
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(10, "miles"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10425. {
  10426. front: {
  10427. height: math.unit(3, "meters"),
  10428. weight: math.unit(450, "kg"),
  10429. name: "front",
  10430. image: {
  10431. source: "./media/characters/ranger/front.svg",
  10432. extra: 2401 / 2243,
  10433. bottom: 0.05
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(3, "meters"),
  10441. default: true
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(14, "feet"),
  10450. weight: math.unit(800, "kg"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/theresa/front.svg",
  10454. extra: 3575 / 3346,
  10455. bottom: 0.03
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(14, "feet"),
  10463. default: true
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(3, "kg"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/ine/front.svg",
  10476. extra: 678 / 539,
  10477. bottom: 0.023
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(2.265, "feet"),
  10485. default: true
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(5, "feet"),
  10494. weight: math.unit(30, "kg"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/vial/front.svg",
  10498. extra: 1365 / 1277,
  10499. bottom: 0.04
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(5, "feet"),
  10507. default: true
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10513. {
  10514. side: {
  10515. height: math.unit(3.4, "meters"),
  10516. weight: math.unit(1000, "lb"),
  10517. name: "Side",
  10518. image: {
  10519. source: "./media/characters/rovoska/side.svg",
  10520. extra: 4403 / 1515
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(3.4, "meters"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(8, "feet"),
  10537. weight: math.unit(315, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/gunner-rotthbauer/front.svg"
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(8, "feet"),
  10545. weight: math.unit(315, "lb"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/gunner-rotthbauer/back.svg"
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Micro",
  10555. height: math.unit(3.5, "inches")
  10556. },
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(8, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(250, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(1, "AU")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(5 + 5 / 12, "feet"),
  10577. weight: math.unit(140, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/allatia/front.svg",
  10581. extra: 1227 / 1180,
  10582. bottom: 0.027
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(5 + 5 / 12, "feet")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(250, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(8, "miles")
  10599. }
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(120, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/tene/front.svg",
  10611. extra: 814/750,
  10612. bottom: 36/850
  10613. }
  10614. },
  10615. stomping: {
  10616. height: math.unit(2.025, "meters"),
  10617. weight: math.unit(120, "lb"),
  10618. name: "Stomping",
  10619. image: {
  10620. source: "./media/characters/tene/stomping.svg",
  10621. extra: 885/821,
  10622. bottom: 15/900
  10623. }
  10624. },
  10625. sitting: {
  10626. height: math.unit(1, "meter"),
  10627. weight: math.unit(120, "lb"),
  10628. name: "Sitting",
  10629. image: {
  10630. source: "./media/characters/tene/sitting.svg",
  10631. extra: 396/366,
  10632. bottom: 79/475
  10633. }
  10634. },
  10635. smiling: {
  10636. height: math.unit(1.2, "feet"),
  10637. name: "Smiling",
  10638. image: {
  10639. source: "./media/characters/tene/smiling.svg",
  10640. extra: 1364/1071,
  10641. bottom: 0/1364
  10642. }
  10643. },
  10644. smug: {
  10645. height: math.unit(1.3, "feet"),
  10646. name: "Smug",
  10647. image: {
  10648. source: "./media/characters/tene/smug.svg",
  10649. extra: 1323/1082,
  10650. bottom: 0/1323
  10651. }
  10652. },
  10653. feral: {
  10654. height: math.unit(3.9, "feet"),
  10655. weight: math.unit(250, "lb"),
  10656. name: "Feral",
  10657. image: {
  10658. source: "./media/characters/tene/feral.svg",
  10659. extra: 717 / 458,
  10660. bottom: 0.179
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6, "feet")
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(300, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(5, "miles")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10682. {
  10683. side: {
  10684. height: math.unit(6, "feet"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/evander/side.svg",
  10688. extra: 877 / 477
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(0.83, "meters"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(12, "feet"),
  10705. weight: math.unit(1000, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10709. extra: 1762 / 1611
  10710. }
  10711. },
  10712. back: {
  10713. height: math.unit(12, "feet"),
  10714. weight: math.unit(1000, "lb"),
  10715. name: "Back",
  10716. image: {
  10717. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10718. extra: 1762 / 1611
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Kaiju",
  10730. height: math.unit(150, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/zero-alurus/front.svg"
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/zero-alurus/back.svg"
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(5 + 10 / 12, "feet")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(60, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro+",
  10766. height: math.unit(450, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(200, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/mega-shi/front.svg",
  10779. extra: 1279 / 1250,
  10780. bottom: 0.02
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(200, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/mega-shi/back.svg",
  10789. extra: 1279 / 1250,
  10790. bottom: 0.02
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Micro",
  10797. height: math.unit(16 + 6 / 12, "feet")
  10798. },
  10799. {
  10800. name: "Third Dimension",
  10801. height: math.unit(40, "meters")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(660, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(10, "miles")
  10811. },
  10812. {
  10813. name: "Planetary Launch",
  10814. height: math.unit(500, "miles")
  10815. },
  10816. {
  10817. name: "Interstellar",
  10818. height: math.unit(1e9, "miles")
  10819. },
  10820. {
  10821. name: "Leaving the Universe",
  10822. height: math.unit(1, "gigaparsec")
  10823. },
  10824. {
  10825. name: "Travelling Universes",
  10826. height: math.unit(30e15, "parsecs")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 4/12, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/odyssey/front.svg",
  10839. extra: 1747/1571,
  10840. bottom: 47/1794
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(5.1, "feet"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/odyssey/side.svg",
  10849. extra: 1847/1619,
  10850. bottom: 47/1894
  10851. }
  10852. },
  10853. lounging: {
  10854. height: math.unit(1.464, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Lounging",
  10857. image: {
  10858. source: "./media/characters/odyssey/lounging.svg",
  10859. extra: 1235/837,
  10860. bottom: 551/1786
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(5 + 4 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(1, "km")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(3000, "km")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(1, "AU"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Omniversal",
  10884. height: math.unit(100e14, "lightyears")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(300, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/mekuto/front.svg",
  10897. extra: 921 / 832,
  10898. bottom: 0.03
  10899. }
  10900. },
  10901. hand: {
  10902. height: math.unit(6 / 10.24, "feet"),
  10903. name: "Hand",
  10904. image: {
  10905. source: "./media/characters/mekuto/hand.svg"
  10906. }
  10907. },
  10908. foot: {
  10909. height: math.unit(6 / 5.05, "feet"),
  10910. name: "Foot",
  10911. image: {
  10912. source: "./media/characters/mekuto/foot.svg"
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Minimicro",
  10919. height: math.unit(0.2, "inches")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1.5, "inches")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(5 + 11 / 12, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Minimacro",
  10932. height: math.unit(17 + 9 / 12, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(177.5, "feet")
  10937. },
  10938. {
  10939. name: "Megamacro",
  10940. height: math.unit(152, "miles")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(6.5, "inches"),
  10949. weight: math.unit(13, "oz"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/dafydd-tomos/front.svg",
  10953. extra: 2990 / 2603,
  10954. bottom: 0.03
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(6.5, "inches"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/splinter/front.svg",
  10975. extra: 2990 / 2882,
  10976. bottom: 0.04
  10977. }
  10978. },
  10979. back: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Back",
  10983. image: {
  10984. source: "./media/characters/splinter/back.svg",
  10985. extra: 2990 / 2882,
  10986. bottom: 0.04
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(6, "feet")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(230, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(4 + 10 / 12, "feet"),
  11007. weight: math.unit(480, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/snow-gabumon/front.svg",
  11011. extra: 1140 / 963,
  11012. bottom: 0.058
  11013. }
  11014. },
  11015. back: {
  11016. height: math.unit(4 + 10 / 12, "feet"),
  11017. weight: math.unit(480, "lb"),
  11018. name: "Back",
  11019. image: {
  11020. source: "./media/characters/snow-gabumon/back.svg",
  11021. extra: 1115 / 962,
  11022. bottom: 0.041
  11023. }
  11024. },
  11025. frontUndresed: {
  11026. height: math.unit(4 + 10 / 12, "feet"),
  11027. weight: math.unit(480, "lb"),
  11028. name: "Front (Undressed)",
  11029. image: {
  11030. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11031. extra: 1061 / 960,
  11032. bottom: 0.045
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(1, "inch")
  11040. },
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(4 + 10 / 12, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(200, "feet")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(120, "miles")
  11053. },
  11054. {
  11055. name: "Gigamacro",
  11056. height: math.unit(9800, "miles")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(1.7, "meters"),
  11065. weight: math.unit(140, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/moody/front.svg",
  11069. extra: 3226 / 3007,
  11070. bottom: 0.087
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Micro",
  11077. height: math.unit(1, "mm")
  11078. },
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(1.7, "meters"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(80, "meters")
  11087. },
  11088. {
  11089. name: "Macro+",
  11090. height: math.unit(500, "meters")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/zyas/front.svg",
  11103. extra: 1180 / 1120,
  11104. bottom: 0.045
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(10, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(500, "feet")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(5, "miles")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(150000, "miles")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/cuon/front.svg",
  11137. extra: 1390 / 1320,
  11138. bottom: 0.008
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Micro",
  11145. height: math.unit(3, "inches")
  11146. },
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(18 + 9 / 12, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(360, "feet")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(360, "miles")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(2.4, "meters"),
  11167. weight: math.unit(70, "kg"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/nyanuxk/front.svg",
  11171. extra: 1172 / 1084,
  11172. bottom: 0.065
  11173. }
  11174. },
  11175. side: {
  11176. height: math.unit(2.4, "meters"),
  11177. weight: math.unit(70, "kg"),
  11178. name: "Side",
  11179. image: {
  11180. source: "./media/characters/nyanuxk/side.svg",
  11181. extra: 1190 / 1132,
  11182. bottom: 0.007
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(2.4, "meters"),
  11187. weight: math.unit(70, "kg"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/nyanuxk/back.svg",
  11191. extra: 1200 / 1141,
  11192. bottom: 0.015
  11193. }
  11194. },
  11195. foot: {
  11196. height: math.unit(0.52, "meters"),
  11197. name: "Foot",
  11198. image: {
  11199. source: "./media/characters/nyanuxk/foot.svg"
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Micro",
  11206. height: math.unit(2, "cm")
  11207. },
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(2.4, "meters"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Smaller Macro",
  11215. height: math.unit(120, "meters")
  11216. },
  11217. {
  11218. name: "Bigger Macro",
  11219. height: math.unit(1.2, "km")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(15, "kilometers")
  11224. },
  11225. {
  11226. name: "Gigamacro",
  11227. height: math.unit(2000, "km")
  11228. },
  11229. {
  11230. name: "Teramacro",
  11231. height: math.unit(500000, "km")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11237. {
  11238. side: {
  11239. height: math.unit(6, "feet"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/ailbhe/side.svg",
  11243. extra: 757 / 464,
  11244. bottom: 0.041
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(1.07, "meters"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(120, "kg"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/zevulfius/front.svg",
  11265. extra: 965 / 903
  11266. }
  11267. },
  11268. side: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(120, "kg"),
  11271. name: "Side",
  11272. image: {
  11273. source: "./media/characters/zevulfius/side.svg",
  11274. extra: 939 / 900
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(120, "kg"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/zevulfius/back.svg",
  11283. extra: 918 / 854,
  11284. bottom: 0.005
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(6 / 3.72, "feet"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/zevulfius/foot.svg"
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(750, "meters")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(20, "km"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Gigamacro",
  11307. height: math.unit(2000, "km")
  11308. },
  11309. {
  11310. name: "Teramacro",
  11311. height: math.unit(250000, "km")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(100, "feet"),
  11320. weight: math.unit(350, "kg"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/rikes/front.svg",
  11324. extra: 1565 / 1483,
  11325. bottom: 0.017
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(100, "feet"),
  11333. default: true
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(8, "feet"),
  11342. weight: math.unit(356, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/adam-silver-mane/front.svg",
  11346. extra: 1036/937,
  11347. bottom: 63/1099
  11348. }
  11349. },
  11350. side: {
  11351. height: math.unit(8, "feet"),
  11352. weight: math.unit(356, "lb"),
  11353. name: "Side",
  11354. image: {
  11355. source: "./media/characters/adam-silver-mane/side.svg",
  11356. extra: 997/901,
  11357. bottom: 59/1056
  11358. }
  11359. },
  11360. frontNsfw: {
  11361. height: math.unit(8, "feet"),
  11362. weight: math.unit(356, "lb"),
  11363. name: "Front (NSFW)",
  11364. image: {
  11365. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11366. extra: 1036/937,
  11367. bottom: 63/1099
  11368. }
  11369. },
  11370. sideNsfw: {
  11371. height: math.unit(8, "feet"),
  11372. weight: math.unit(356, "lb"),
  11373. name: "Side (NSFW)",
  11374. image: {
  11375. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11376. extra: 997/901,
  11377. bottom: 59/1056
  11378. }
  11379. },
  11380. dick: {
  11381. height: math.unit(2.1, "feet"),
  11382. name: "Dick",
  11383. image: {
  11384. source: "./media/characters/adam-silver-mane/dick.svg"
  11385. }
  11386. },
  11387. taur: {
  11388. height: math.unit(16, "feet"),
  11389. weight: math.unit(1500, "kg"),
  11390. name: "Taur",
  11391. image: {
  11392. source: "./media/characters/adam-silver-mane/taur.svg",
  11393. extra: 1713 / 1571,
  11394. bottom: 0.01
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(8, "feet")
  11402. },
  11403. {
  11404. name: "Minimacro",
  11405. height: math.unit(80, "feet")
  11406. },
  11407. {
  11408. name: "MDA",
  11409. height: math.unit(80, "meters")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(800, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(8000, "feet")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(800, "miles")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(80000, "miles")
  11427. },
  11428. {
  11429. name: "Celestial",
  11430. height: math.unit(8e6, "miles")
  11431. },
  11432. {
  11433. name: "Star Dragon",
  11434. height: math.unit(800000, "parsecs")
  11435. },
  11436. {
  11437. name: "Godly",
  11438. height: math.unit(800, "teraparsecs")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/ky'owin/front.svg",
  11451. extra: 3888 / 3068,
  11452. bottom: 0.015
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(6 + 8 / 12, "feet")
  11460. },
  11461. {
  11462. name: "Large",
  11463. height: math.unit(68, "feet")
  11464. },
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(132, "feet")
  11468. },
  11469. {
  11470. name: "Macro+",
  11471. height: math.unit(340, "feet")
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(680, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(1, "mile")
  11481. },
  11482. {
  11483. name: "Megamacro+",
  11484. height: math.unit(10, "miles")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(4, "feet"),
  11493. weight: math.unit(50, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/mal/front.svg",
  11497. extra: 785 / 724,
  11498. bottom: 0.07
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Micro",
  11505. height: math.unit(4, "inches")
  11506. },
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(4, "feet"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(200, "feet")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/jordan-deware/front.svg",
  11527. extra: 1191 / 1012
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Nano",
  11534. height: math.unit(0.01, "mm")
  11535. },
  11536. {
  11537. name: "Minimicro",
  11538. height: math.unit(1, "mm")
  11539. },
  11540. {
  11541. name: "Micro",
  11542. height: math.unit(0.5, "inches")
  11543. },
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(4, "feet"),
  11547. default: true
  11548. },
  11549. {
  11550. name: "Minimacro",
  11551. height: math.unit(40, "meters")
  11552. },
  11553. {
  11554. name: "Small Macro",
  11555. height: math.unit(400, "meters")
  11556. },
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(4, "miles")
  11560. },
  11561. {
  11562. name: "Megamacro",
  11563. height: math.unit(40, "miles")
  11564. },
  11565. {
  11566. name: "Megamacro+",
  11567. height: math.unit(400, "miles")
  11568. },
  11569. {
  11570. name: "Gigamacro",
  11571. height: math.unit(400000, "miles")
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11577. {
  11578. side: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/kimiko/side.svg",
  11584. extra: 600 / 358
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(15, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(220, "feet")
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(1450, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(11500, "feet")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(9500, "miles")
  11609. },
  11610. {
  11611. name: "Teramacro",
  11612. height: math.unit(2208005005, "miles")
  11613. },
  11614. {
  11615. name: "Examacro",
  11616. height: math.unit(2750, "parsecs")
  11617. },
  11618. {
  11619. name: "Zettamacro",
  11620. height: math.unit(101500, "parsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(70, "kg"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/andrew-sleepy/front.svg"
  11633. }
  11634. },
  11635. side: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(70, "kg"),
  11638. name: "Side",
  11639. image: {
  11640. source: "./media/characters/andrew-sleepy/side.svg"
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(1, "mm"),
  11648. default: true
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/judio/front.svg",
  11661. extra: 1258 / 1110
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(5 + 6 / 12, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(1000, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Megamacro",
  11677. height: math.unit(10, "miles")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11683. {
  11684. frontDressed: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(68, "kg"),
  11687. name: "Front (Dressed)",
  11688. image: {
  11689. source: "./media/characters/nomaxice/front-dressed.svg",
  11690. extra: 1137/824,
  11691. bottom: 74/1211
  11692. }
  11693. },
  11694. frontShorts: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(68, "kg"),
  11697. name: "Front (Shorts)",
  11698. image: {
  11699. source: "./media/characters/nomaxice/front-shorts.svg",
  11700. extra: 1137/824,
  11701. bottom: 74/1211
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(68, "kg"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/nomaxice/back.svg",
  11710. extra: 822/786,
  11711. bottom: 39/861
  11712. }
  11713. },
  11714. hand: {
  11715. height: math.unit(0.565, "feet"),
  11716. name: "Hand",
  11717. image: {
  11718. source: "./media/characters/nomaxice/hand.svg"
  11719. }
  11720. },
  11721. foot: {
  11722. height: math.unit(1, "feet"),
  11723. name: "Foot",
  11724. image: {
  11725. source: "./media/characters/nomaxice/foot.svg"
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Micro",
  11732. height: math.unit(8, "cm")
  11733. },
  11734. {
  11735. name: "Norm",
  11736. height: math.unit(1.82, "m")
  11737. },
  11738. {
  11739. name: "Norm+",
  11740. height: math.unit(8.8, "feet"),
  11741. default: true
  11742. },
  11743. {
  11744. name: "Big",
  11745. height: math.unit(8, "meters")
  11746. },
  11747. {
  11748. name: "Macro",
  11749. height: math.unit(18, "meters")
  11750. },
  11751. {
  11752. name: "Macro+",
  11753. height: math.unit(88, "meters")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(12, "feet"),
  11762. weight: math.unit(1.5, "tons"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/dydros/front.svg",
  11766. extra: 863 / 800,
  11767. bottom: 0.015
  11768. }
  11769. },
  11770. back: {
  11771. height: math.unit(12, "feet"),
  11772. weight: math.unit(1.5, "tons"),
  11773. name: "Back",
  11774. image: {
  11775. source: "./media/characters/dydros/back.svg",
  11776. extra: 900 / 843,
  11777. bottom: 0.005
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(12, "feet"),
  11785. default: true
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(100, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/riggi/front.svg",
  11798. extra: 5787 / 5303
  11799. }
  11800. },
  11801. hyper: {
  11802. height: math.unit(6 * 5 / 3, "feet"),
  11803. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11804. name: "Hyper",
  11805. image: {
  11806. source: "./media/characters/riggi/hyper.svg",
  11807. extra: 3595 / 3485
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Small Macro",
  11814. height: math.unit(50, "feet")
  11815. },
  11816. {
  11817. name: "Default",
  11818. height: math.unit(200, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Loom",
  11823. height: math.unit(10000, "feet")
  11824. },
  11825. {
  11826. name: "Cruising Altitude",
  11827. height: math.unit(30000, "feet")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(100, "miles")
  11832. },
  11833. {
  11834. name: "Continent Sized",
  11835. height: math.unit(2800, "miles")
  11836. },
  11837. {
  11838. name: "Earth Sized",
  11839. height: math.unit(8000, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(250, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/alexi/front.svg",
  11852. extra: 3483 / 3291,
  11853. bottom: 0.04
  11854. }
  11855. },
  11856. back: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(250, "lb"),
  11859. name: "Back",
  11860. image: {
  11861. source: "./media/characters/alexi/back.svg",
  11862. extra: 3533 / 3356,
  11863. bottom: 0.021
  11864. }
  11865. },
  11866. frontTransforming: {
  11867. height: math.unit(8.58, "feet"),
  11868. weight: math.unit(1300, "lb"),
  11869. name: "Transforming",
  11870. image: {
  11871. source: "./media/characters/alexi/front-transforming.svg",
  11872. extra: 437 / 409,
  11873. bottom: 19 / 458.66
  11874. }
  11875. },
  11876. frontTransformed: {
  11877. height: math.unit(12.5, "feet"),
  11878. weight: math.unit(4000, "lb"),
  11879. name: "Transformed",
  11880. image: {
  11881. source: "./media/characters/alexi/front-transformed.svg",
  11882. extra: 639 / 614,
  11883. bottom: 30.55 / 671
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Normal",
  11890. height: math.unit(14, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Minimacro",
  11895. height: math.unit(30, "meters")
  11896. },
  11897. {
  11898. name: "Macro",
  11899. height: math.unit(500, "meters")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(9000, "km")
  11904. },
  11905. {
  11906. name: "Teramacro",
  11907. height: math.unit(384000, "km")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11913. {
  11914. front: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Front",
  11918. image: {
  11919. source: "./media/characters/kayroo/front.svg",
  11920. extra: 1153 / 1038,
  11921. bottom: 0.06
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Foot",
  11928. image: {
  11929. source: "./media/characters/kayroo/foot.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(8, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Minimacro",
  11941. height: math.unit(250, "feet")
  11942. },
  11943. {
  11944. name: "Macro",
  11945. height: math.unit(2800, "feet")
  11946. },
  11947. {
  11948. name: "Megamacro",
  11949. height: math.unit(5200, "feet")
  11950. },
  11951. {
  11952. name: "Gigamacro",
  11953. height: math.unit(27000, "feet")
  11954. },
  11955. {
  11956. name: "Omega",
  11957. height: math.unit(45000, "feet")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(18, "feet"),
  11966. weight: math.unit(5800, "lb"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/rhys/front.svg",
  11970. extra: 3386 / 3090,
  11971. bottom: 0.07
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(18, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Working Size",
  11983. height: math.unit(200, "feet")
  11984. },
  11985. {
  11986. name: "Demolition Size",
  11987. height: math.unit(2000, "feet")
  11988. },
  11989. {
  11990. name: "Maximum Licensed Size",
  11991. height: math.unit(5, "miles")
  11992. },
  11993. {
  11994. name: "Maximum Observed Size",
  11995. height: math.unit(10, "yottameters")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(250, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/toto/front.svg",
  12008. extra: 527 / 479,
  12009. bottom: 0.05
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(3, "feet")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(10, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(150, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(1200, "feet")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "King", species: ["lion"], tags: ["anthro"] },
  12035. {
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/king/back.svg"
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(2, "inches")
  12049. },
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(8, "feet")
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(50, "miles")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(11, "feet"),
  12070. weight: math.unit(1400, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/cordite/front.svg",
  12074. extra: 1919/1827,
  12075. bottom: 40/1959
  12076. }
  12077. },
  12078. side: {
  12079. height: math.unit(11, "feet"),
  12080. weight: math.unit(1400, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/cordite/side.svg",
  12084. extra: 1908/1793,
  12085. bottom: 38/1946
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(11, "feet"),
  12090. weight: math.unit(1400, "lb"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/cordite/back.svg",
  12094. extra: 1938/1837,
  12095. bottom: 10/1948
  12096. }
  12097. },
  12098. feral: {
  12099. height: math.unit(2, "feet"),
  12100. weight: math.unit(90, "lb"),
  12101. name: "Feral",
  12102. image: {
  12103. source: "./media/characters/cordite/feral.svg",
  12104. extra: 1260 / 755,
  12105. bottom: 0.05
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(11, "feet"),
  12113. default: true
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/pianostrong/front.svg",
  12126. extra: 6577 / 6254,
  12127. bottom: 0.02
  12128. }
  12129. },
  12130. side: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Side",
  12134. image: {
  12135. source: "./media/characters/pianostrong/side.svg",
  12136. extra: 6106 / 5730
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/pianostrong/back.svg",
  12145. extra: 6085 / 5733,
  12146. bottom: 0.01
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(100, "feet")
  12154. },
  12155. {
  12156. name: "Macro+",
  12157. height: math.unit(300, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro++",
  12162. height: math.unit(1000, "feet")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/kona/front.svg",
  12175. extra: 2960 / 2629,
  12176. bottom: 0.005
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(11 + 8 / 12, "feet")
  12184. },
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(850, "feet"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Macro+",
  12192. height: math.unit(1.5, "km"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(80, "miles")
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(3500, "miles")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. side: {
  12209. height: math.unit(1.9, "meters"),
  12210. weight: math.unit(326, "kg"),
  12211. name: "Side",
  12212. image: {
  12213. source: "./media/characters/levi/side.svg",
  12214. extra: 1704 / 1334,
  12215. bottom: 0.02
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(1.9, "meters"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(20, "meters")
  12228. },
  12229. {
  12230. name: "Macro+",
  12231. height: math.unit(200, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(2, "km")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(20, "km")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(2500, "km")
  12244. },
  12245. {
  12246. name: "Gigamacro+",
  12247. height: math.unit(120000, "km")
  12248. },
  12249. {
  12250. name: "Teramacro",
  12251. height: math.unit(7.77e6, "km")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(6 + 4/12, "feet"),
  12260. weight: math.unit(190, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/bmc/front.svg",
  12264. extra: 1626/1472,
  12265. bottom: 79/1705
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(6 + 4/12, "feet"),
  12270. weight: math.unit(190, "lb"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/bmc/back.svg",
  12274. extra: 1640/1479,
  12275. bottom: 45/1685
  12276. }
  12277. },
  12278. frontArmor: {
  12279. height: math.unit(6 + 4/12, "feet"),
  12280. weight: math.unit(190, "lb"),
  12281. name: "Front-armor",
  12282. image: {
  12283. source: "./media/characters/bmc/front-armor.svg",
  12284. extra: 1538/1468,
  12285. bottom: 79/1617
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Human-sized",
  12292. height: math.unit(6 + 4 / 12, "feet")
  12293. },
  12294. {
  12295. name: "Interactive Size",
  12296. height: math.unit(25, "feet")
  12297. },
  12298. {
  12299. name: "Small",
  12300. height: math.unit(250, "feet")
  12301. },
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(1250, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Good Day",
  12309. height: math.unit(88, "miles")
  12310. },
  12311. {
  12312. name: "Largest Measured Size",
  12313. height: math.unit(105.960, "galaxies")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(20, "feet"),
  12322. weight: math.unit(2016, "kg"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/sven-the-kaiju/front.svg",
  12326. extra: 1277/1250,
  12327. bottom: 35/1312
  12328. }
  12329. },
  12330. mouth: {
  12331. height: math.unit(1.85, "feet"),
  12332. name: "Mouth",
  12333. image: {
  12334. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Fairy",
  12341. height: math.unit(6, "inches")
  12342. },
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(20, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Rampage",
  12350. height: math.unit(200, "feet")
  12351. },
  12352. {
  12353. name: "Archfey Forest Guardian",
  12354. height: math.unit(1, "mile")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(4, "meters"),
  12363. weight: math.unit(2, "tons"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/marik/front.svg",
  12367. extra: 1057 / 1003,
  12368. bottom: 0.08
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(4, "meters"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(20, "meters")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(50, "km")
  12385. },
  12386. {
  12387. name: "Gigamacro",
  12388. height: math.unit(100, "km")
  12389. },
  12390. {
  12391. name: "Alpha Macro",
  12392. height: math.unit(7.88e7, "yottameters")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(110, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/mel/front.svg",
  12405. extra: 736 / 617,
  12406. bottom: 0.017
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Pico",
  12413. height: math.unit(3, "pm")
  12414. },
  12415. {
  12416. name: "Nano",
  12417. height: math.unit(3, "nm")
  12418. },
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(0.3, "mm"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Micro+",
  12426. height: math.unit(3, "mm")
  12427. },
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(5 + 10.5 / 12, "feet")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12436. {
  12437. kaiju: {
  12438. height: math.unit(1.75, "meters"),
  12439. weight: math.unit(55, "kg"),
  12440. name: "Kaiju",
  12441. image: {
  12442. source: "./media/characters/lykonous/kaiju.svg",
  12443. extra: 1055 / 946,
  12444. bottom: 0.135
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(2.5, "meters"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Kaiju Dragon",
  12456. height: math.unit(60, "meters")
  12457. },
  12458. {
  12459. name: "Mega Kaiju",
  12460. height: math.unit(120, "km")
  12461. },
  12462. {
  12463. name: "Giga Kaiju",
  12464. height: math.unit(200, "megameters")
  12465. },
  12466. {
  12467. name: "Terra Kaiju",
  12468. height: math.unit(400, "gigameters")
  12469. },
  12470. {
  12471. name: "Kaiju Dragon God",
  12472. height: math.unit(13000, "exaparsecs")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/blü/front.svg",
  12485. extra: 1883 / 1564,
  12486. bottom: 0.031
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(13, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Big Boi",
  12498. height: math.unit(150, "meters")
  12499. },
  12500. {
  12501. name: "Mini Stomper",
  12502. height: math.unit(300, "meters")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(1000, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(11000, "meters")
  12511. },
  12512. {
  12513. name: "Gigamacro",
  12514. height: math.unit(11000, "km")
  12515. },
  12516. {
  12517. name: "Teramacro",
  12518. height: math.unit(420000, "km")
  12519. },
  12520. {
  12521. name: "Examacro",
  12522. height: math.unit(120, "parsecs")
  12523. },
  12524. {
  12525. name: "God Tho",
  12526. height: math.unit(98000000000, "parsecs")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12532. {
  12533. taurFront: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(200, "lb"),
  12536. name: "Taur (Front)",
  12537. image: {
  12538. source: "./media/characters/scales/taur-front.svg",
  12539. extra: 1,
  12540. bottom: 0.05
  12541. }
  12542. },
  12543. taurBack: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(200, "lb"),
  12546. name: "Taur (Back)",
  12547. image: {
  12548. source: "./media/characters/scales/taur-back.svg",
  12549. extra: 1,
  12550. bottom: 0.08
  12551. }
  12552. },
  12553. anthro: {
  12554. height: math.unit(6 * 7 / 12, "feet"),
  12555. weight: math.unit(100, "lb"),
  12556. name: "Anthro",
  12557. image: {
  12558. source: "./media/characters/scales/anthro.svg",
  12559. extra: 1,
  12560. bottom: 0.06
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12574. {
  12575. front: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Front",
  12579. image: {
  12580. source: "./media/characters/koragos/front.svg",
  12581. extra: 841 / 794,
  12582. bottom: 0.035
  12583. }
  12584. },
  12585. back: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Back",
  12589. image: {
  12590. source: "./media/characters/koragos/back.svg",
  12591. extra: 841 / 810,
  12592. bottom: 0.022
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(6 + 11 / 12, "feet"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(490, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(10, "miles")
  12609. },
  12610. {
  12611. name: "Gigamacro",
  12612. height: math.unit(50, "miles")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(250, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/xylrem/front.svg",
  12625. extra: 3323 / 3050,
  12626. bottom: 0.065
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Micro",
  12633. height: math.unit(4, "feet")
  12634. },
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(16, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(2720, "feet")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(25000, "miles")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(8, "feet"),
  12655. weight: math.unit(250, "kg"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/ikideru/front.svg",
  12659. extra: 930 / 870,
  12660. bottom: 0.087
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(8, "feet"),
  12665. weight: math.unit(250, "kg"),
  12666. name: "Back",
  12667. image: {
  12668. source: "./media/characters/ikideru/back.svg",
  12669. extra: 919 / 852,
  12670. bottom: 0.055
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Rare",
  12677. height: math.unit(8, "feet"),
  12678. default: true
  12679. },
  12680. {
  12681. name: "Playful Loom",
  12682. height: math.unit(80, "feet")
  12683. },
  12684. {
  12685. name: "City Leaner",
  12686. height: math.unit(230, "feet")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(2500, "feet")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(26400, "feet")
  12695. },
  12696. {
  12697. name: "Tectonic Shifter",
  12698. height: math.unit(1.7, "megameters")
  12699. },
  12700. {
  12701. name: "Planet Carer",
  12702. height: math.unit(21, "megameters")
  12703. },
  12704. {
  12705. name: "God",
  12706. height: math.unit(11157.22, "parsecs")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(120, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/neo/front.svg"
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(2, "inches"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Human Size",
  12730. height: math.unit(5 + 8 / 12, "feet")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(13 + 10 / 12, "feet"),
  12739. weight: math.unit(5320, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/chauncey-chantz/front.svg",
  12743. extra: 1587 / 1435,
  12744. bottom: 0.02
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(13 + 10 / 12, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(45, "feet")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(250, "miles")
  12761. },
  12762. {
  12763. name: "Planetary",
  12764. height: math.unit(10000, "miles")
  12765. },
  12766. {
  12767. name: "Galactic",
  12768. height: math.unit(40000, "parsecs")
  12769. },
  12770. {
  12771. name: "Universal",
  12772. height: math.unit(1, "yottameter")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/epifox/front.svg",
  12785. extra: 1,
  12786. bottom: 0.075
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(6, "inches")
  12794. },
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(12, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(3810, "feet")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(500, "miles")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(1.8796, "m"),
  12815. weight: math.unit(230, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/colin-t/front.svg",
  12819. extra: 1272 / 1193,
  12820. bottom: 0.07
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Micro",
  12827. height: math.unit(0.571, "meters")
  12828. },
  12829. {
  12830. name: "Normal",
  12831. height: math.unit(1.8796, "meters"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Tall",
  12836. height: math.unit(4, "meters")
  12837. },
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(67.241, "meters")
  12841. },
  12842. {
  12843. name: "Megamacro",
  12844. height: math.unit(371.856, "meters")
  12845. },
  12846. {
  12847. name: "Planetary",
  12848. height: math.unit(12631.5689, "km")
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12854. {
  12855. front: {
  12856. height: math.unit(1.85, "meters"),
  12857. weight: math.unit(80, "kg"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/matvei/front.svg",
  12861. extra: 614 / 594,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(1.85, "meters"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(5 + 9 / 12, "feet"),
  12879. weight: math.unit(70, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/quincy/front.svg",
  12883. extra: 3041 / 2751
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(5 + 9 / 12, "feet"),
  12888. weight: math.unit(70, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/quincy/back.svg",
  12892. extra: 3041 / 2751
  12893. }
  12894. },
  12895. flying: {
  12896. height: math.unit(5 + 4 / 12, "feet"),
  12897. weight: math.unit(70, "lb"),
  12898. name: "Flying",
  12899. image: {
  12900. source: "./media/characters/quincy/flying.svg",
  12901. extra: 1044 / 930
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(3, "cm")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(5 + 9 / 12, "feet")
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(200, "meters"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(1000, "meters")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(3 + 11/12, "feet"),
  12930. weight: math.unit(50, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/vanrel/front.svg",
  12934. extra: 1104/949,
  12935. bottom: 52/1156
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(3 + 11/12, "feet"),
  12940. weight: math.unit(50, "lb"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/vanrel/back.svg",
  12944. extra: 1119/976,
  12945. bottom: 37/1156
  12946. }
  12947. },
  12948. tome: {
  12949. height: math.unit(1.35, "feet"),
  12950. weight: math.unit(10, "lb"),
  12951. name: "Vanrel's Tome",
  12952. rename: true,
  12953. image: {
  12954. source: "./media/characters/vanrel/tome.svg"
  12955. }
  12956. },
  12957. beans: {
  12958. height: math.unit(0.89, "feet"),
  12959. name: "Beans",
  12960. image: {
  12961. source: "./media/characters/vanrel/beans.svg"
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(3 + 11/12, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 5 / 12, "feet"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/kuiper-vanrel/front.svg",
  12981. extra: 1219/1169,
  12982. bottom: 69/1288
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(7 + 5 / 12, "feet"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/kuiper-vanrel/back.svg",
  12990. extra: 1236/1193,
  12991. bottom: 27/1263
  12992. }
  12993. },
  12994. foot: {
  12995. height: math.unit(0.55, "meters"),
  12996. name: "Foot",
  12997. image: {
  12998. source: "./media/characters/kuiper-vanrel/foot.svg",
  12999. }
  13000. },
  13001. battle: {
  13002. height: math.unit(6.824, "feet"),
  13003. name: "Battle",
  13004. image: {
  13005. source: "./media/characters/kuiper-vanrel/battle.svg",
  13006. extra: 1466 / 1327,
  13007. bottom: 29 / 1492.5
  13008. }
  13009. },
  13010. meerkui: {
  13011. height: math.unit(18, "inches"),
  13012. name: "Meerkui",
  13013. image: {
  13014. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13015. extra: 1354/1289,
  13016. bottom: 69/1423
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(7 + 5 / 12, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(8 + 5 / 12, "feet"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/keset-vanrel/front.svg",
  13036. extra: 1231/1148,
  13037. bottom: 82/1313
  13038. }
  13039. },
  13040. back: {
  13041. height: math.unit(8 + 5 / 12, "feet"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/keset-vanrel/back.svg",
  13045. extra: 1240/1174,
  13046. bottom: 33/1273
  13047. }
  13048. },
  13049. hand: {
  13050. height: math.unit(0.6, "meters"),
  13051. name: "Hand",
  13052. image: {
  13053. source: "./media/characters/keset-vanrel/hand.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(0.94978, "meters"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/keset-vanrel/foot.svg"
  13061. }
  13062. },
  13063. battle: {
  13064. height: math.unit(7.408, "feet"),
  13065. name: "Battle",
  13066. image: {
  13067. source: "./media/characters/keset-vanrel/battle.svg",
  13068. extra: 1890 / 1386,
  13069. bottom: 73.28 / 1970
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(8 + 5 / 12, "feet"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/neos/front.svg",
  13090. extra: 1696 / 992,
  13091. bottom: 0.14
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(54, "cm"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(100, "m")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(10, "km")
  13108. },
  13109. {
  13110. name: "Megamacro+",
  13111. height: math.unit(100, "km")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(100, "Mm")
  13116. },
  13117. {
  13118. name: "Teramacro",
  13119. height: math.unit(100, "Gm")
  13120. },
  13121. {
  13122. name: "Examacro",
  13123. height: math.unit(100, "Em")
  13124. },
  13125. {
  13126. name: "Godly",
  13127. height: math.unit(10000, "Ym")
  13128. },
  13129. {
  13130. name: "Beyond Godly",
  13131. height: math.unit(25, "multiverses")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13137. {
  13138. feminine: {
  13139. height: math.unit(5, "feet"),
  13140. weight: math.unit(100, "lb"),
  13141. name: "Feminine",
  13142. image: {
  13143. source: "./media/characters/sammy-mouse/feminine.svg",
  13144. extra: 2526 / 2425,
  13145. bottom: 0.123
  13146. }
  13147. },
  13148. masculine: {
  13149. height: math.unit(5, "feet"),
  13150. weight: math.unit(100, "lb"),
  13151. name: "Masculine",
  13152. image: {
  13153. source: "./media/characters/sammy-mouse/masculine.svg",
  13154. extra: 2526 / 2425,
  13155. bottom: 0.123
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Micro",
  13162. height: math.unit(5, "inches")
  13163. },
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(5, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(60, "feet")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(4, "feet"),
  13180. weight: math.unit(50, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/kole/front.svg",
  13184. extra: 1423 / 1303,
  13185. bottom: 0.025
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(4, "feet"),
  13190. weight: math.unit(50, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/kole/back.svg",
  13194. extra: 1426 / 1280,
  13195. bottom: 0.02
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(4, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(2.5, "feet"),
  13212. weight: math.unit(32, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/rufran/front.svg",
  13216. extra: 1313/885,
  13217. bottom: 94/1407
  13218. }
  13219. },
  13220. side: {
  13221. height: math.unit(2.5, "feet"),
  13222. weight: math.unit(32, "lb"),
  13223. name: "Side",
  13224. image: {
  13225. source: "./media/characters/rufran/side.svg",
  13226. extra: 1109/852,
  13227. bottom: 118/1227
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(2.5, "feet"),
  13232. weight: math.unit(32, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/rufran/back.svg",
  13236. extra: 1280/878,
  13237. bottom: 131/1411
  13238. }
  13239. },
  13240. mouth: {
  13241. height: math.unit(1.13, "feet"),
  13242. name: "Mouth",
  13243. image: {
  13244. source: "./media/characters/rufran/mouth.svg"
  13245. }
  13246. },
  13247. foot: {
  13248. height: math.unit(1.33, "feet"),
  13249. name: "Foot",
  13250. image: {
  13251. source: "./media/characters/rufran/foot.svg"
  13252. }
  13253. },
  13254. koboldFront: {
  13255. height: math.unit(2 + 6 / 12, "feet"),
  13256. weight: math.unit(20, "lb"),
  13257. name: "Front (Kobold)",
  13258. image: {
  13259. source: "./media/characters/rufran/kobold-front.svg",
  13260. extra: 2041 / 1839,
  13261. bottom: 0.055
  13262. }
  13263. },
  13264. koboldBack: {
  13265. height: math.unit(2 + 6 / 12, "feet"),
  13266. weight: math.unit(20, "lb"),
  13267. name: "Back (Kobold)",
  13268. image: {
  13269. source: "./media/characters/rufran/kobold-back.svg",
  13270. extra: 2054 / 1839,
  13271. bottom: 0.01
  13272. }
  13273. },
  13274. koboldHand: {
  13275. height: math.unit(0.2166, "meters"),
  13276. name: "Hand (Kobold)",
  13277. image: {
  13278. source: "./media/characters/rufran/kobold-hand.svg"
  13279. }
  13280. },
  13281. koboldFoot: {
  13282. height: math.unit(0.185, "meters"),
  13283. name: "Foot (Kobold)",
  13284. image: {
  13285. source: "./media/characters/rufran/kobold-foot.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "inch")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(2 + 6 / 12, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Big",
  13301. height: math.unit(60, "feet")
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(325, "feet")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(0.3, "meters"),
  13314. weight: math.unit(3.5, "kg"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/chip/front.svg",
  13318. extra: 748 / 674
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Micro",
  13325. height: math.unit(1, "inch"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13332. {
  13333. side: {
  13334. height: math.unit(2.3, "meters"),
  13335. weight: math.unit(3500, "lb"),
  13336. name: "Side",
  13337. image: {
  13338. source: "./media/characters/torvid/side.svg",
  13339. extra: 1972 / 722,
  13340. bottom: 0.035
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(2.3, "meters"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(2, "meters"),
  13357. weight: math.unit(150.5, "kg"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/susan/front.svg",
  13361. extra: 693 / 635,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(505, "miles"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/raindrops/front.svg",
  13383. extra: 2655 / 2461,
  13384. bottom: 49 / 2705
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/raindrops/back.svg",
  13393. extra: 2574 / 2400,
  13394. bottom: 65 / 2634
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(6, "inches")
  13402. },
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(6 + 2 / 12, "feet")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(131, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(15, "miles")
  13415. },
  13416. {
  13417. name: "Gigamacro",
  13418. height: math.unit(4000, "miles")
  13419. },
  13420. {
  13421. name: "Teramacro",
  13422. height: math.unit(315000, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(2.794, "meters"),
  13431. weight: math.unit(325, "kg"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/tezwa/front.svg",
  13435. extra: 2083 / 1906,
  13436. bottom: 0.031
  13437. }
  13438. },
  13439. foot: {
  13440. height: math.unit(0.687, "meters"),
  13441. name: "Foot",
  13442. image: {
  13443. source: "./media/characters/tezwa/foot.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(9 + 2 / 12, "feet"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(58, "feet"),
  13460. weight: math.unit(89000, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/typhus/front.svg",
  13464. extra: 816 / 800,
  13465. bottom: 0.065
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(58, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(12, "feet"),
  13482. weight: math.unit(6, "tonnes"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/lyra-von-wulf/front.svg",
  13486. extra: 1,
  13487. bottom: 0.10
  13488. }
  13489. },
  13490. frontMecha: {
  13491. height: math.unit(12, "feet"),
  13492. weight: math.unit(12, "tonnes"),
  13493. name: "Front (Mecha)",
  13494. image: {
  13495. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13496. extra: 1,
  13497. bottom: 0.042
  13498. }
  13499. },
  13500. maw: {
  13501. height: math.unit(2.2, "feet"),
  13502. name: "Maw",
  13503. image: {
  13504. source: "./media/characters/lyra-von-wulf/maw.svg"
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(12, "feet"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Classic",
  13516. height: math.unit(50, "feet")
  13517. },
  13518. {
  13519. name: "Macro",
  13520. height: math.unit(500, "feet")
  13521. },
  13522. {
  13523. name: "Megamacro",
  13524. height: math.unit(1, "mile")
  13525. },
  13526. {
  13527. name: "Gigamacro",
  13528. height: math.unit(400, "miles")
  13529. },
  13530. {
  13531. name: "Teramacro",
  13532. height: math.unit(22000, "miles")
  13533. },
  13534. {
  13535. name: "Solarmacro",
  13536. height: math.unit(8600000, "miles")
  13537. },
  13538. {
  13539. name: "Galactic",
  13540. height: math.unit(1057000, "lightyears")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6 + 10 / 12, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/dixon/front.svg",
  13553. extra: 3361 / 3209,
  13554. bottom: 0.01
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Normal",
  13561. height: math.unit(6 + 10 / 12, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Big",
  13566. height: math.unit(12, "meters")
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(500, "meters")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(2, "km")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(185, "cm"),
  13583. weight: math.unit(68, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/kauko/front.svg",
  13587. extra: 1455 / 1421,
  13588. bottom: 0.03
  13589. }
  13590. },
  13591. back: {
  13592. height: math.unit(185, "cm"),
  13593. weight: math.unit(68, "kg"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/kauko/back.svg",
  13597. extra: 1455 / 1421,
  13598. bottom: 0.004
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(185, "cm"),
  13606. default: true
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "kg"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/varg/front.svg",
  13619. extra: 1108 / 1018,
  13620. bottom: 0.0375
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(5, "meters")
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(200, "meters")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(20, "kilometers")
  13636. },
  13637. {
  13638. name: "True Size",
  13639. height: math.unit(211, "km"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Gigamacro",
  13644. height: math.unit(1000, "km")
  13645. },
  13646. {
  13647. name: "Gigamacro+",
  13648. height: math.unit(8000, "km")
  13649. },
  13650. {
  13651. name: "Teramacro",
  13652. height: math.unit(1000000, "km")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(7 + 7 / 12, "feet"),
  13661. weight: math.unit(267, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/dayza/front.svg",
  13665. extra: 1262 / 1200,
  13666. bottom: 0.035
  13667. }
  13668. },
  13669. side: {
  13670. height: math.unit(7 + 7 / 12, "feet"),
  13671. weight: math.unit(267, "lb"),
  13672. name: "Side",
  13673. image: {
  13674. source: "./media/characters/dayza/side.svg",
  13675. extra: 1295 / 1245,
  13676. bottom: 0.05
  13677. }
  13678. },
  13679. back: {
  13680. height: math.unit(7 + 7 / 12, "feet"),
  13681. weight: math.unit(267, "lb"),
  13682. name: "Back",
  13683. image: {
  13684. source: "./media/characters/dayza/back.svg",
  13685. extra: 1241 / 1170
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(7 + 7 / 12, "feet"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Macro",
  13697. height: math.unit(155, "feet")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6 + 5 / 12, "feet"),
  13706. weight: math.unit(160, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/xanthos/front.svg",
  13710. extra: 1,
  13711. bottom: 0.04
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6 + 5 / 12, "feet"),
  13716. weight: math.unit(160, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/xanthos/back.svg",
  13720. extra: 1,
  13721. bottom: 0.03
  13722. }
  13723. },
  13724. hand: {
  13725. height: math.unit(0.928, "feet"),
  13726. name: "Hand",
  13727. image: {
  13728. source: "./media/characters/xanthos/hand.svg"
  13729. }
  13730. },
  13731. foot: {
  13732. height: math.unit(1.286, "feet"),
  13733. name: "Foot",
  13734. image: {
  13735. source: "./media/characters/xanthos/foot.svg"
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(6 + 5 / 12, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Normal+",
  13747. height: math.unit(6, "meters")
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(40, "feet")
  13752. },
  13753. {
  13754. name: "Macro+",
  13755. height: math.unit(200, "meters")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(20, "km")
  13760. },
  13761. {
  13762. name: "Megamacro+",
  13763. height: math.unit(100, "km")
  13764. },
  13765. {
  13766. name: "Gigamacro",
  13767. height: math.unit(200, "megameters")
  13768. },
  13769. {
  13770. name: "Gigamacro+",
  13771. height: math.unit(1.5, "gigameters")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6 + 3 / 12, "feet"),
  13780. weight: math.unit(215, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/grynn/front.svg",
  13784. extra: 4627 / 4209,
  13785. bottom: 0.047
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(6, "inches")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(6 + 3 / 12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Big",
  13801. height: math.unit(104, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(944, "feet")
  13806. },
  13807. {
  13808. name: "Macro+",
  13809. height: math.unit(9480, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(78752, "feet")
  13814. },
  13815. {
  13816. name: "Megamacro+",
  13817. height: math.unit(630128, "feet")
  13818. },
  13819. {
  13820. name: "Megamacro++",
  13821. height: math.unit(3150695, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(7 + 5 / 12, "feet"),
  13830. weight: math.unit(450, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/mocha-aura/front.svg",
  13834. extra: 1907 / 1817,
  13835. bottom: 0.04
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(7 + 5 / 12, "feet"),
  13840. weight: math.unit(450, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/mocha-aura/back.svg",
  13844. extra: 1900 / 1825,
  13845. bottom: 0.045
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Nano",
  13852. height: math.unit(1, "nm")
  13853. },
  13854. {
  13855. name: "Megamicro",
  13856. height: math.unit(1, "mm")
  13857. },
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(3, "inches")
  13861. },
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(7 + 5 / 12, "feet"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(30, "feet")
  13870. },
  13871. {
  13872. name: "Megamacro",
  13873. height: math.unit(3500, "feet")
  13874. },
  13875. {
  13876. name: "Teramacro",
  13877. height: math.unit(500000, "miles")
  13878. },
  13879. {
  13880. name: "Petamacro",
  13881. height: math.unit(50000000000000000, "parsecs")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(150, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/ilisha-devya/front.svg",
  13894. extra: 1053/1049,
  13895. bottom: 270/1323
  13896. }
  13897. },
  13898. back: {
  13899. height: math.unit(6, "feet"),
  13900. weight: math.unit(150, "lb"),
  13901. name: "Back",
  13902. image: {
  13903. source: "./media/characters/ilisha-devya/back.svg",
  13904. extra: 1131/1128,
  13905. bottom: 39/1170
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(500, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Megamacro",
  13917. height: math.unit(10, "miles")
  13918. },
  13919. {
  13920. name: "Gigamacro",
  13921. height: math.unit(100000, "miles")
  13922. },
  13923. {
  13924. name: "Examacro",
  13925. height: math.unit(1e9, "lightyears")
  13926. },
  13927. {
  13928. name: "Omniversal",
  13929. height: math.unit(1e33, "lightyears")
  13930. },
  13931. {
  13932. name: "Beyond Infinite",
  13933. height: math.unit(1e100, "lightyears")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13939. {
  13940. Side: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(150, "lb"),
  13943. name: "Side",
  13944. image: {
  13945. source: "./media/characters/mira/side.svg",
  13946. extra: 900 / 799,
  13947. bottom: 0.02
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Human Size",
  13954. height: math.unit(6, "feet")
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(100, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(10, "miles")
  13964. },
  13965. {
  13966. name: "Gigamacro",
  13967. height: math.unit(25000, "miles")
  13968. },
  13969. {
  13970. name: "Teramacro",
  13971. height: math.unit(300, "AU")
  13972. },
  13973. {
  13974. name: "Full Size",
  13975. height: math.unit(4.5e10, "lightyears")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/holly/front.svg",
  13988. extra: 639 / 606
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/holly/back.svg",
  13997. extra: 623 / 598
  13998. }
  13999. },
  14000. frontWorking: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Front (Working)",
  14004. image: {
  14005. source: "./media/characters/holly/front-working.svg",
  14006. extra: 607 / 577,
  14007. bottom: 0.048
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(12 + 3 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/porter/front.svg",
  14028. extra: 1,
  14029. bottom: 0.01
  14030. }
  14031. },
  14032. frontRobes: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Front (Robes)",
  14036. image: {
  14037. source: "./media/characters/porter/front-robes.svg",
  14038. extra: 1.01,
  14039. bottom: 0.01
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(11 + 9 / 12, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14053. {
  14054. legendary: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Legendary",
  14058. image: {
  14059. source: "./media/characters/lucy/legendary.svg",
  14060. extra: 1355 / 1100,
  14061. bottom: 0.045
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Legendary",
  14068. height: math.unit(86882 * 2, "miles"),
  14069. default: true
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/drusilla/front.svg",
  14082. extra: 678 / 635,
  14083. bottom: 0.03
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/drusilla/back.svg",
  14092. extra: 678 / 635,
  14093. bottom: 0.005
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "feet")
  14101. },
  14102. {
  14103. name: "Canon Height",
  14104. height: math.unit(2000, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(180, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/renard-thatch/front.svg",
  14118. extra: 2411 / 2275,
  14119. bottom: 0.01
  14120. }
  14121. },
  14122. frontPosing: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(180, "lb"),
  14125. name: "Front (Posing)",
  14126. image: {
  14127. source: "./media/characters/renard-thatch/front-posing.svg",
  14128. extra: 2381 / 2261,
  14129. bottom: 0.01
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(180, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/renard-thatch/back.svg",
  14138. extra: 2428 / 2288
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(3, "inches")
  14146. },
  14147. {
  14148. name: "Default",
  14149. height: math.unit(6, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(75, "feet")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(1450, "feet"),
  14163. weight: math.unit(1.21e6, "tons"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/sekvra/front.svg",
  14167. extra: 1193/1190,
  14168. bottom: 78/1271
  14169. }
  14170. },
  14171. side: {
  14172. height: math.unit(1450, "feet"),
  14173. weight: math.unit(1.21e6, "tons"),
  14174. name: "Side",
  14175. image: {
  14176. source: "./media/characters/sekvra/side.svg",
  14177. extra: 1193/1190,
  14178. bottom: 52/1245
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(1450, "feet"),
  14183. weight: math.unit(1.21e6, "tons"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/sekvra/back.svg",
  14187. extra: 1219/1216,
  14188. bottom: 21/1240
  14189. }
  14190. },
  14191. frontClothed: {
  14192. height: math.unit(1450, "feet"),
  14193. weight: math.unit(1.21e6, "tons"),
  14194. name: "Front (Clothed)",
  14195. image: {
  14196. source: "./media/characters/sekvra/front-clothed.svg",
  14197. extra: 1192/1189,
  14198. bottom: 79/1271
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(1450, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(15000, "feet")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/carmine/front.svg",
  14223. extra: 1,
  14224. bottom: 0.035
  14225. }
  14226. },
  14227. frontArmor: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front (Armor)",
  14231. image: {
  14232. source: "./media/characters/carmine/front-armor.svg",
  14233. extra: 1,
  14234. bottom: 0.035
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Large",
  14241. height: math.unit(1, "mile")
  14242. },
  14243. {
  14244. name: "Huge",
  14245. height: math.unit(40, "miles"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Colossal",
  14250. height: math.unit(2500, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/elyssia/front.svg",
  14263. extra: 2201 / 2035,
  14264. bottom: 0.05
  14265. }
  14266. },
  14267. frontClothed: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front (Clothed)",
  14271. image: {
  14272. source: "./media/characters/elyssia/front-clothed.svg",
  14273. extra: 2201 / 2035,
  14274. bottom: 0.05
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/elyssia/back.svg",
  14283. extra: 2201 / 2035,
  14284. bottom: 0.013
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Smaller",
  14291. height: math.unit(150, "feet")
  14292. },
  14293. {
  14294. name: "Standard",
  14295. height: math.unit(1400, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Distracted",
  14300. height: math.unit(15000, "feet")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 4/12, "feet"),
  14309. weight: math.unit(690, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/geno-maxwell/front.svg",
  14313. extra: 984/856,
  14314. bottom: 87/1071
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(7 + 4/12, "feet"),
  14319. weight: math.unit(690, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/geno-maxwell/back.svg",
  14323. extra: 981/854,
  14324. bottom: 57/1038
  14325. }
  14326. },
  14327. frontCostume: {
  14328. height: math.unit(7 + 4/12, "feet"),
  14329. weight: math.unit(690, "lb"),
  14330. name: "Front (Costume)",
  14331. image: {
  14332. source: "./media/characters/geno-maxwell/front-costume.svg",
  14333. extra: 984/856,
  14334. bottom: 87/1071
  14335. }
  14336. },
  14337. backcostume: {
  14338. height: math.unit(7 + 4/12, "feet"),
  14339. weight: math.unit(690, "lb"),
  14340. name: "Back (Costume)",
  14341. image: {
  14342. source: "./media/characters/geno-maxwell/back-costume.svg",
  14343. extra: 981/854,
  14344. bottom: 57/1038
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Micro",
  14351. height: math.unit(3, "inches")
  14352. },
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(7 + 4 / 12, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(220, "feet")
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(11, "miles")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(7 + 4/12, "feet"),
  14373. weight: math.unit(750, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/regena-maxwell/front.svg",
  14377. extra: 984/856,
  14378. bottom: 87/1071
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(7 + 4/12, "feet"),
  14383. weight: math.unit(750, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/regena-maxwell/back.svg",
  14387. extra: 981/854,
  14388. bottom: 57/1038
  14389. }
  14390. },
  14391. frontCostume: {
  14392. height: math.unit(7 + 4/12, "feet"),
  14393. weight: math.unit(750, "lb"),
  14394. name: "Front (Costume)",
  14395. image: {
  14396. source: "./media/characters/regena-maxwell/front-costume.svg",
  14397. extra: 984/856,
  14398. bottom: 87/1071
  14399. }
  14400. },
  14401. backcostume: {
  14402. height: math.unit(7 + 4/12, "feet"),
  14403. weight: math.unit(750, "lb"),
  14404. name: "Back (Costume)",
  14405. image: {
  14406. source: "./media/characters/regena-maxwell/back-costume.svg",
  14407. extra: 981/854,
  14408. bottom: 57/1038
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(7 + 4 / 12, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(220, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(11, "miles")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(6, "feet"),
  14433. weight: math.unit(150, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14437. extra: 860 / 690,
  14438. bottom: 0.03
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(1.7, "meters"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/quilly/front.svg",
  14459. extra: 890 / 776
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Gigamacro",
  14466. height: math.unit(404090, "miles"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(7 + 8 / 12, "feet"),
  14476. weight: math.unit(350, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/tempest/front.svg",
  14480. extra: 1175 / 1086,
  14481. bottom: 0.02
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(7 + 8 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14495. {
  14496. side: {
  14497. height: math.unit(4 + 5 / 12, "feet"),
  14498. weight: math.unit(80, "lb"),
  14499. name: "Side",
  14500. image: {
  14501. source: "./media/characters/rodger/side.svg",
  14502. extra: 1235 / 1118
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(1, "inch")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(4 + 5 / 12, "feet"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(120, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/danyel/front.svg",
  14531. extra: 1185 / 1123,
  14532. bottom: 0.05
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Shrunken",
  14539. height: math.unit(0.5, "mm")
  14540. },
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1, "mm"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Upsized",
  14548. height: math.unit(5 + 5 / 12, "feet")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(5 + 6 / 12, "feet"),
  14557. weight: math.unit(200, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/vivian-bijoux/front.svg",
  14561. extra: 1217/1209,
  14562. bottom: 76/1293
  14563. }
  14564. },
  14565. back: {
  14566. height: math.unit(5 + 6 / 12, "feet"),
  14567. weight: math.unit(200, "lb"),
  14568. name: "Back",
  14569. image: {
  14570. source: "./media/characters/vivian-bijoux/back.svg",
  14571. extra: 1214/1208,
  14572. bottom: 51/1265
  14573. }
  14574. },
  14575. dressed: {
  14576. height: math.unit(5 + 6 / 12, "feet"),
  14577. weight: math.unit(200, "lb"),
  14578. name: "Dressed",
  14579. image: {
  14580. source: "./media/characters/vivian-bijoux/dressed.svg",
  14581. extra: 1217/1209,
  14582. bottom: 76/1293
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(5 + 6 / 12, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Bad Dream",
  14594. height: math.unit(500, "feet")
  14595. },
  14596. {
  14597. name: "Nightmare",
  14598. height: math.unit(500, "miles")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(6 + 1 / 12, "feet"),
  14607. weight: math.unit(260, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/zeta/front.svg",
  14611. extra: 1968 / 1889,
  14612. bottom: 0.06
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(6 + 1 / 12, "feet"),
  14617. weight: math.unit(260, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/zeta/back.svg",
  14621. extra: 1944 / 1858,
  14622. bottom: 0.03
  14623. }
  14624. },
  14625. hand: {
  14626. height: math.unit(1.112, "feet"),
  14627. name: "Hand",
  14628. image: {
  14629. source: "./media/characters/zeta/hand.svg"
  14630. }
  14631. },
  14632. foot: {
  14633. height: math.unit(1.48, "feet"),
  14634. name: "Foot",
  14635. image: {
  14636. source: "./media/characters/zeta/foot.svg"
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Micro",
  14643. height: math.unit(6, "inches")
  14644. },
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(6 + 1 / 12, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(20, "feet")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/jamie-larsen/front.svg",
  14665. extra: 962 / 933,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/jamie-larsen/back.svg",
  14675. extra: 997 / 946
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Macro",
  14682. height: math.unit(28 + 7 / 12, "feet"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Macro+",
  14687. height: math.unit(180, "feet")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(10, "miles")
  14692. },
  14693. {
  14694. name: "Gigamacro",
  14695. height: math.unit(200000, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(120, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/vance/front.svg",
  14708. extra: 1980 / 1890,
  14709. bottom: 0.09
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(120, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/vance/back.svg",
  14718. extra: 2081 / 1994,
  14719. bottom: 0.014
  14720. }
  14721. },
  14722. hand: {
  14723. height: math.unit(0.88, "feet"),
  14724. name: "Hand",
  14725. image: {
  14726. source: "./media/characters/vance/hand.svg"
  14727. }
  14728. },
  14729. foot: {
  14730. height: math.unit(0.64, "feet"),
  14731. name: "Foot",
  14732. image: {
  14733. source: "./media/characters/vance/foot.svg"
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Small",
  14740. height: math.unit(90, "feet"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Macro",
  14745. height: math.unit(100, "meters")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(15, "miles")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(180, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/xochitl/front.svg",
  14762. extra: 2297 / 2261,
  14763. bottom: 0.065
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(180, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/xochitl/back.svg",
  14772. extra: 2386 / 2354,
  14773. bottom: 0.01
  14774. }
  14775. },
  14776. foot: {
  14777. height: math.unit(6 / 5 * 1.15, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Foot",
  14780. image: {
  14781. source: "./media/characters/xochitl/foot.svg"
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Macro",
  14788. height: math.unit(80, "feet")
  14789. },
  14790. {
  14791. name: "Macro+",
  14792. height: math.unit(400, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Gigamacro",
  14797. height: math.unit(80000, "miles")
  14798. },
  14799. {
  14800. name: "Gigamacro+",
  14801. height: math.unit(400000, "miles")
  14802. },
  14803. {
  14804. name: "Teramacro",
  14805. height: math.unit(300, "AU")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/vincent/front.svg",
  14818. extra: 1130 / 1080,
  14819. bottom: 0.055
  14820. }
  14821. },
  14822. beak: {
  14823. height: math.unit(6 * 0.1, "feet"),
  14824. name: "Beak",
  14825. image: {
  14826. source: "./media/characters/vincent/beak.svg"
  14827. }
  14828. },
  14829. hand: {
  14830. height: math.unit(6 * 0.85, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Hand",
  14833. image: {
  14834. source: "./media/characters/vincent/hand.svg"
  14835. }
  14836. },
  14837. foot: {
  14838. height: math.unit(6 * 0.19, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Foot",
  14841. image: {
  14842. source: "./media/characters/vincent/foot.svg"
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Base",
  14849. height: math.unit(6 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(300, "feet")
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(2, "miles")
  14859. },
  14860. {
  14861. name: "Gigamacro",
  14862. height: math.unit(1000, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(2, "meters"),
  14871. weight: math.unit(500, "kg"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/coatl/front.svg",
  14875. extra: 3948 / 3500,
  14876. bottom: 0.082
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(4, "meters")
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(100, "meters"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro+",
  14892. height: math.unit(300, "meters")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(3, "gigameters")
  14897. },
  14898. {
  14899. name: "Megamacro+",
  14900. height: math.unit(300, "terameters")
  14901. },
  14902. {
  14903. name: "Megamacro++",
  14904. height: math.unit(3, "lightyears")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(50, "kg"),
  14914. name: "front",
  14915. image: {
  14916. source: "./media/characters/shiroryu/front.svg",
  14917. extra: 1990 / 1935
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Mortal Mingling",
  14924. height: math.unit(3, "meters")
  14925. },
  14926. {
  14927. name: "Kaiju-ish",
  14928. height: math.unit(250, "meters")
  14929. },
  14930. {
  14931. name: "Somewhat Godly",
  14932. height: math.unit(400, "km"),
  14933. default: true
  14934. },
  14935. {
  14936. name: "Planetary",
  14937. height: math.unit(300, "megameters")
  14938. },
  14939. {
  14940. name: "Galaxy-dwarfing",
  14941. height: math.unit(450, "kiloparsecs")
  14942. },
  14943. {
  14944. name: "Universe Eater",
  14945. height: math.unit(150, "gigaparsecs")
  14946. },
  14947. {
  14948. name: "Almost Immeasurable",
  14949. height: math.unit(1.3e266, "yottaparsecs")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/umeko/front.svg",
  14962. extra: 1,
  14963. bottom: 0.019
  14964. }
  14965. },
  14966. frontArmored: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front (Armored)",
  14970. image: {
  14971. source: "./media/characters/umeko/front-armored.svg",
  14972. extra: 1,
  14973. bottom: 0.021
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(220, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Guardian Dragon",
  14985. height: math.unit(50, "miles")
  14986. },
  14987. {
  14988. name: "Cosmic",
  14989. height: math.unit(800000, "miles")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(150, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/cassidy/front.svg",
  15002. extra: 810/808,
  15003. bottom: 41/851
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Canon Height",
  15010. height: math.unit(120, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro+",
  15015. height: math.unit(400, "feet")
  15016. },
  15017. {
  15018. name: "Macro++",
  15019. height: math.unit(4000, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3, "miles")
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/isaac/front.svg",
  15036. extra: 896 / 815,
  15037. bottom: 0.11
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Human Size",
  15044. height: math.unit(8, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(400, "feet")
  15050. },
  15051. {
  15052. name: "Megamacro",
  15053. height: math.unit(50, "miles")
  15054. },
  15055. {
  15056. name: "Canon Height",
  15057. height: math.unit(200, "AU")
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(72, "kg"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/sleekit/front.svg",
  15070. extra: 4693 / 4487,
  15071. bottom: 0.012
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Minimum Height",
  15078. height: math.unit(10, "meters")
  15079. },
  15080. {
  15081. name: "Smaller",
  15082. height: math.unit(25, "meters")
  15083. },
  15084. {
  15085. name: "Larger",
  15086. height: math.unit(38, "meters"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Maximum height",
  15091. height: math.unit(100, "meters")
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(150, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/nillia/front.svg",
  15104. extra: 2195 / 2037,
  15105. bottom: 0.005
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(6, "feet"),
  15110. weight: math.unit(150, "lb"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/nillia/back.svg",
  15114. extra: 2195 / 2037,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Canon Height",
  15122. height: math.unit(489, "feet"),
  15123. default: true
  15124. }
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/mesmyriza/front.svg",
  15136. extra: 2067 / 1784,
  15137. bottom: 0.035
  15138. }
  15139. },
  15140. foot: {
  15141. height: math.unit(6 / (250 / 35), "feet"),
  15142. name: "Foot",
  15143. image: {
  15144. source: "./media/characters/mesmyriza/foot.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Macro",
  15151. height: math.unit(457, "meters"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(8, "megameters")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(250, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/saudade/front.svg",
  15169. extra: 1172 / 1139,
  15170. bottom: 0.035
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Micro",
  15177. height: math.unit(3, "inches")
  15178. },
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(6, "feet"),
  15182. default: true
  15183. },
  15184. {
  15185. name: "Macro",
  15186. height: math.unit(50, "feet")
  15187. },
  15188. {
  15189. name: "Megamacro",
  15190. height: math.unit(2800, "feet")
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15196. {
  15197. front: {
  15198. height: math.unit(5 + 4 / 12, "feet"),
  15199. weight: math.unit(100, "lb"),
  15200. name: "Front",
  15201. image: {
  15202. source: "./media/characters/keireer/front.svg",
  15203. extra: 716 / 666,
  15204. bottom: 0.05
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(5 + 4 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(5.5, "feet"),
  15221. weight: math.unit(90, "kg"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/mirja/front.svg",
  15225. extra: 1452/1262,
  15226. bottom: 67/1519
  15227. }
  15228. },
  15229. frontDressed: {
  15230. height: math.unit(5.5, "feet"),
  15231. weight: math.unit(90, "lb"),
  15232. name: "Front (Dressed)",
  15233. image: {
  15234. source: "./media/characters/mirja/dressed.svg",
  15235. extra: 1452/1262,
  15236. bottom: 67/1519
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(90, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/mirja/back.svg",
  15245. extra: 1892/1795,
  15246. bottom: 48/1940
  15247. }
  15248. },
  15249. maw: {
  15250. height: math.unit(1.312, "feet"),
  15251. name: "Maw",
  15252. image: {
  15253. source: "./media/characters/mirja/maw.svg"
  15254. }
  15255. },
  15256. paw: {
  15257. height: math.unit(1.15, "feet"),
  15258. name: "Paw",
  15259. image: {
  15260. source: "./media/characters/mirja/paw.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "\"Incognito\"",
  15267. height: math.unit(3, "meters")
  15268. },
  15269. {
  15270. name: "Strolling Size",
  15271. height: math.unit(15, "km")
  15272. },
  15273. {
  15274. name: "Larger Strolling Size",
  15275. height: math.unit(400, "km")
  15276. },
  15277. {
  15278. name: "Preferred Size",
  15279. height: math.unit(5000, "km"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "True Size",
  15284. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(15, "feet"),
  15293. weight: math.unit(880, "kg"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/nightraver/front.svg",
  15297. extra: 2444 / 2160,
  15298. bottom: 0.027
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(15, "feet"),
  15303. weight: math.unit(880, "kg"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/nightraver/back.svg",
  15307. extra: 2309 / 2180,
  15308. bottom: 0.005
  15309. }
  15310. },
  15311. sole: {
  15312. height: math.unit(2.878, "feet"),
  15313. name: "Sole",
  15314. image: {
  15315. source: "./media/characters/nightraver/sole.svg"
  15316. }
  15317. },
  15318. foot: {
  15319. height: math.unit(2.285, "feet"),
  15320. name: "Foot",
  15321. image: {
  15322. source: "./media/characters/nightraver/foot.svg"
  15323. }
  15324. },
  15325. maw: {
  15326. height: math.unit(2.67, "feet"),
  15327. name: "Maw",
  15328. image: {
  15329. source: "./media/characters/nightraver/maw.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Micro",
  15336. height: math.unit(1, "cm")
  15337. },
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(15, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(300, "feet")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(300, "miles")
  15350. },
  15351. {
  15352. name: "Gigamacro",
  15353. height: math.unit(10000, "miles")
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15359. {
  15360. side: {
  15361. height: math.unit(2, "inches"),
  15362. weight: math.unit(5, "grams"),
  15363. name: "Side",
  15364. image: {
  15365. source: "./media/characters/arc/side.svg"
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Micro",
  15372. height: math.unit(2, "inches"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(1.1938, "meters"),
  15382. weight: math.unit(54, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/nebula-shahar/front.svg",
  15386. extra: 1642 / 1436,
  15387. bottom: 0.06
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Megamicro",
  15394. height: math.unit(0.3, "mm")
  15395. },
  15396. {
  15397. name: "Micro",
  15398. height: math.unit(3, "cm")
  15399. },
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(138, "cm"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(30, "m")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5.24, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/shayla/front.svg",
  15420. extra: 1512 / 1414,
  15421. bottom: 0.01
  15422. }
  15423. },
  15424. back: {
  15425. height: math.unit(5.24, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Back",
  15428. image: {
  15429. source: "./media/characters/shayla/back.svg",
  15430. extra: 1512 / 1414
  15431. }
  15432. },
  15433. hand: {
  15434. height: math.unit(0.7781496062992126, "feet"),
  15435. name: "Hand",
  15436. image: {
  15437. source: "./media/characters/shayla/hand.svg"
  15438. }
  15439. },
  15440. foot: {
  15441. height: math.unit(1.4206036745406823, "feet"),
  15442. name: "Foot",
  15443. image: {
  15444. source: "./media/characters/shayla/foot.svg"
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Micro",
  15451. height: math.unit(0.32, "feet")
  15452. },
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5.24, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Macro",
  15460. height: math.unit(492.12, "feet")
  15461. },
  15462. {
  15463. name: "Megamacro",
  15464. height: math.unit(186.41, "miles")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(2.2, "m"),
  15473. weight: math.unit(120, "kg"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/pia-jr/front.svg",
  15477. extra: 1000 / 970,
  15478. bottom: 0.035
  15479. }
  15480. },
  15481. hand: {
  15482. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15483. name: "Hand",
  15484. image: {
  15485. source: "./media/characters/pia-jr/hand.svg"
  15486. }
  15487. },
  15488. paw: {
  15489. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15490. name: "Paw",
  15491. image: {
  15492. source: "./media/characters/pia-jr/paw.svg"
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Micro",
  15499. height: math.unit(1.2, "cm")
  15500. },
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(2.2, "m"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(180, "m")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(420, "km")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(2, "m"),
  15521. weight: math.unit(115, "kg"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/pia-sr/front.svg",
  15525. extra: 760 / 730,
  15526. bottom: 0.015
  15527. }
  15528. },
  15529. back: {
  15530. height: math.unit(2, "m"),
  15531. weight: math.unit(115, "kg"),
  15532. name: "Back",
  15533. image: {
  15534. source: "./media/characters/pia-sr/back.svg",
  15535. extra: 760 / 730,
  15536. bottom: 0.01
  15537. }
  15538. },
  15539. hand: {
  15540. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15541. name: "Hand",
  15542. image: {
  15543. source: "./media/characters/pia-sr/hand.svg"
  15544. }
  15545. },
  15546. foot: {
  15547. height: math.unit(1.83, "feet"),
  15548. name: "Foot",
  15549. image: {
  15550. source: "./media/characters/pia-sr/foot.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(88, "mm")
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(2, "m"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(200, "m")
  15567. },
  15568. {
  15569. name: "Megamacro",
  15570. height: math.unit(420, "km")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(8 + 2 / 12, "feet"),
  15579. weight: math.unit(300, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/kibibyte/front.svg",
  15583. extra: 2221 / 2098,
  15584. bottom: 0.04
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(8 + 2 / 12, "feet"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Socialable Macro",
  15596. height: math.unit(50, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(300, "feet")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(500, "miles")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/felix/front.svg",
  15617. extra: 762 / 722,
  15618. bottom: 0.02
  15619. }
  15620. },
  15621. frontClothed: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front (Clothed)",
  15625. image: {
  15626. source: "./media/characters/felix/front-clothed.svg",
  15627. extra: 762 / 722,
  15628. bottom: 0.02
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(6 + 8 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(2600, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(450, "miles")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6 + 1 / 12, "feet"),
  15653. weight: math.unit(250, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/tobo/front.svg",
  15657. extra: 608 / 586,
  15658. bottom: 0.023
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6 + 1 / 12, "feet"),
  15663. weight: math.unit(250, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/tobo/back.svg",
  15667. extra: 608 / 586
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Nano",
  15674. height: math.unit(2, "nm")
  15675. },
  15676. {
  15677. name: "Megamicro",
  15678. height: math.unit(0.1, "mm")
  15679. },
  15680. {
  15681. name: "Micro",
  15682. height: math.unit(1, "inch"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Human-sized",
  15687. height: math.unit(6 + 1 / 12, "feet")
  15688. },
  15689. {
  15690. name: "Macro",
  15691. height: math.unit(250, "feet")
  15692. },
  15693. {
  15694. name: "Megamacro",
  15695. height: math.unit(75, "miles")
  15696. },
  15697. {
  15698. name: "Texas-sized",
  15699. height: math.unit(750, "miles")
  15700. },
  15701. {
  15702. name: "Teramacro",
  15703. height: math.unit(50000, "miles")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(269, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/danny-kapowsky/front.svg",
  15716. extra: 766 / 736,
  15717. bottom: 0.044
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(269, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/danny-kapowsky/back.svg",
  15726. extra: 797 / 760,
  15727. bottom: 0.025
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Macro",
  15734. height: math.unit(150, "feet"),
  15735. default: true
  15736. },
  15737. {
  15738. name: "Macro+",
  15739. height: math.unit(200, "feet")
  15740. },
  15741. {
  15742. name: "Macro++",
  15743. height: math.unit(300, "feet")
  15744. },
  15745. {
  15746. name: "Macro+++",
  15747. height: math.unit(400, "feet")
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15753. {
  15754. side: {
  15755. height: math.unit(6, "feet"),
  15756. weight: math.unit(170, "lb"),
  15757. name: "Side",
  15758. image: {
  15759. source: "./media/characters/finn/side.svg",
  15760. extra: 1953 / 1807,
  15761. bottom: 0.057
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Megamacro",
  15768. height: math.unit(14445, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 6 / 12, "feet"),
  15778. weight: math.unit(125, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/roy/front.svg",
  15782. extra: 1,
  15783. bottom: 0.11
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(3, "inches"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 6 / 12, "feet")
  15796. },
  15797. {
  15798. name: "Lesser Macro",
  15799. height: math.unit(60, "feet")
  15800. },
  15801. {
  15802. name: "Greater Macro",
  15803. height: math.unit(120, "feet")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(100, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/aevsivs/front.svg",
  15816. extra: 1,
  15817. bottom: 0.03
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(100, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/aevsivs/back.svg"
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(2, "inches"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(5, "feet")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 7 / 12, "feet"),
  15846. weight: math.unit(159, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/hildegard/front.svg",
  15850. extra: 289 / 269,
  15851. bottom: 7.63 / 297.8
  15852. }
  15853. },
  15854. back: {
  15855. height: math.unit(5 + 7 / 12, "feet"),
  15856. weight: math.unit(159, "lb"),
  15857. name: "Back",
  15858. image: {
  15859. source: "./media/characters/hildegard/back.svg",
  15860. extra: 280 / 260,
  15861. bottom: 2.3 / 282
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(5 + 7 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15875. {
  15876. bernard: {
  15877. height: math.unit(2 + 7 / 12, "feet"),
  15878. weight: math.unit(66, "lb"),
  15879. name: "Bernard",
  15880. rename: true,
  15881. image: {
  15882. source: "./media/characters/bernard-wilder/bernard.svg",
  15883. extra: 192 / 128,
  15884. bottom: 0.05
  15885. }
  15886. },
  15887. wilder: {
  15888. height: math.unit(5 + 8 / 12, "feet"),
  15889. weight: math.unit(143, "lb"),
  15890. name: "Wilder",
  15891. rename: true,
  15892. image: {
  15893. source: "./media/characters/bernard-wilder/wilder.svg",
  15894. extra: 361 / 312,
  15895. bottom: 0.02
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(2 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15909. {
  15910. anthro: {
  15911. height: math.unit(6 + 1 / 12, "feet"),
  15912. weight: math.unit(155, "lb"),
  15913. name: "Anthro",
  15914. image: {
  15915. source: "./media/characters/hearth/anthro.svg",
  15916. extra: 1178/1136,
  15917. bottom: 28/1206
  15918. }
  15919. },
  15920. feral: {
  15921. height: math.unit(3.78, "feet"),
  15922. weight: math.unit(35, "kg"),
  15923. name: "Feral",
  15924. image: {
  15925. source: "./media/characters/hearth/feral.svg",
  15926. extra: 153 / 135,
  15927. bottom: 0.03
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(6 + 1 / 12, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6, "feet"),
  15944. weight: math.unit(182, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/ingrid/front.svg",
  15948. extra: 294 / 268,
  15949. bottom: 0.027
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(6, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15963. {
  15964. eevee: {
  15965. height: math.unit(2 + 10 / 12, "feet"),
  15966. weight: math.unit(86, "lb"),
  15967. name: "Malgam",
  15968. image: {
  15969. source: "./media/characters/malgam/eevee.svg",
  15970. extra: 952/784,
  15971. bottom: 38/990
  15972. }
  15973. },
  15974. sylveon: {
  15975. height: math.unit(4, "feet"),
  15976. weight: math.unit(101, "lb"),
  15977. name: "Future Malgam",
  15978. rename: true,
  15979. image: {
  15980. source: "./media/characters/malgam/sylveon.svg",
  15981. extra: 371 / 325,
  15982. bottom: 0.015
  15983. }
  15984. },
  15985. gigantamax: {
  15986. height: math.unit(50, "feet"),
  15987. name: "Gigantamax Malgam",
  15988. rename: true,
  15989. image: {
  15990. source: "./media/characters/malgam/gigantamax.svg"
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2 + 10 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(5 + 11 / 12, "feet"),
  16007. weight: math.unit(188, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/fleur/front.svg",
  16011. extra: 309 / 283,
  16012. bottom: 0.007
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5 + 11 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 4 / 12, "feet"),
  16029. weight: math.unit(122, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/jude/front.svg",
  16033. extra: 288 / 273,
  16034. bottom: 0.03
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 4 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 11 / 12, "feet"),
  16051. weight: math.unit(190, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/seara/front.svg",
  16055. extra: 1,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 11 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(16 + 5 / 12, "feet"),
  16073. weight: math.unit(524, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/caspian-lugia/front.svg",
  16077. extra: 1,
  16078. bottom: 0.04
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(16 + 5 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5 + 7 / 12, "feet"),
  16095. weight: math.unit(170, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/mika/front.svg",
  16099. extra: 1,
  16100. bottom: 0.016
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(5 + 7 / 12, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(6 + 2 / 12, "feet"),
  16117. weight: math.unit(268, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/sol/front.svg",
  16121. extra: 247 / 231,
  16122. bottom: 0.05
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(6 + 2 / 12, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16136. {
  16137. buizel: {
  16138. height: math.unit(2 + 5 / 12, "feet"),
  16139. weight: math.unit(87, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/umiko/buizel.svg",
  16143. extra: 172 / 157,
  16144. bottom: 0.01
  16145. },
  16146. form: "buizel",
  16147. default: true
  16148. },
  16149. floatzel: {
  16150. height: math.unit(5 + 9 / 12, "feet"),
  16151. weight: math.unit(250, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/umiko/floatzel.svg",
  16155. extra: 1076/1006,
  16156. bottom: 15/1091
  16157. },
  16158. form: "floatzel",
  16159. default: true
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(2 + 5 / 12, "feet"),
  16166. form: "buizel",
  16167. default: true
  16168. },
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(5 + 9 / 12, "feet"),
  16172. form: "floatzel",
  16173. default: true
  16174. },
  16175. ],
  16176. {
  16177. "buizel": {
  16178. name: "Buizel"
  16179. },
  16180. "floatzel": {
  16181. name: "Floatzel",
  16182. default: true
  16183. }
  16184. }
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. weight: math.unit(146, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/iliac/front.svg",
  16195. extra: 389 / 365,
  16196. bottom: 0.035
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(6 + 2 / 12, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(170, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/topaz/front.svg",
  16217. extra: 317 / 303,
  16218. bottom: 0.055
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(6, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(5 + 11 / 12, "feet"),
  16235. weight: math.unit(144, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/gabriel/front.svg",
  16239. extra: 285 / 262,
  16240. bottom: 0.004
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(5 + 11 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16254. {
  16255. side: {
  16256. height: math.unit(6 + 5 / 12, "feet"),
  16257. weight: math.unit(300, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/tempest-suicune/side.svg",
  16261. extra: 195 / 154,
  16262. bottom: 0.04
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6 + 5 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(7 + 2 / 12, "feet"),
  16279. weight: math.unit(322, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/vulcan/front.svg",
  16283. extra: 154 / 147,
  16284. bottom: 0.04
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(7 + 2 / 12, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 10 / 12, "feet"),
  16301. weight: math.unit(264, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/gault/front.svg",
  16305. extra: 161 / 140,
  16306. bottom: 0.028
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(5 + 10 / 12, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/shard/front.svg",
  16327. extra: 273 / 238,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(3 + 6 / 12, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(5 + 11 / 12, "feet"),
  16345. weight: math.unit(146, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/ashe/front.svg",
  16349. extra: 400 / 373,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(5 + 11 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(5 + 5 / 12, "feet"),
  16367. weight: math.unit(135, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/beatrix/front.svg",
  16371. extra: 392 / 379,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(6, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 2/12, "feet"),
  16389. weight: math.unit(135, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/ignatius/front.svg",
  16393. extra: 1380/1259,
  16394. bottom: 27/1407
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 2/12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6 + 2 / 12, "feet"),
  16411. weight: math.unit(138, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/mei-li/front.svg",
  16415. extra: 237 / 229,
  16416. bottom: 0.03
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(6 + 2 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(2 + 4 / 12, "feet"),
  16433. weight: math.unit(62, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/puru/front.svg",
  16437. extra: 206 / 149,
  16438. bottom: 0.06
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(2 + 4 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16452. {
  16453. anthro: {
  16454. height: math.unit(5 + 8/12, "feet"),
  16455. weight: math.unit(200, "lb"),
  16456. energyNeed: math.unit(2000, "kcal"),
  16457. name: "Anthro",
  16458. image: {
  16459. source: "./media/characters/kee/anthro.svg",
  16460. extra: 3251/3184,
  16461. bottom: 250/3501
  16462. }
  16463. },
  16464. taur: {
  16465. height: math.unit(11, "feet"),
  16466. weight: math.unit(500, "lb"),
  16467. energyNeed: math.unit(5000, "kcal"),
  16468. name: "Taur",
  16469. image: {
  16470. source: "./media/characters/kee/taur.svg",
  16471. extra: 1362/1320,
  16472. bottom: 83/1445
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(5 + 8/12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(35, "feet")
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16490. {
  16491. anthro: {
  16492. height: math.unit(7, "feet"),
  16493. weight: math.unit(190, "lb"),
  16494. name: "Anthro",
  16495. image: {
  16496. source: "./media/characters/cobalt-dracha/anthro.svg",
  16497. extra: 231 / 225,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. feral: {
  16502. height: math.unit(9 + 7 / 12, "feet"),
  16503. weight: math.unit(294, "lb"),
  16504. name: "Feral",
  16505. image: {
  16506. source: "./media/characters/cobalt-dracha/feral.svg",
  16507. extra: 692 / 633,
  16508. bottom: 0.05
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(7, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16522. {
  16523. fallen: {
  16524. height: math.unit(11 + 8 / 12, "feet"),
  16525. weight: math.unit(485, "lb"),
  16526. name: "Java (Fallen)",
  16527. rename: true,
  16528. image: {
  16529. source: "./media/characters/java/fallen.svg",
  16530. extra: 226 / 208,
  16531. bottom: 0.005
  16532. }
  16533. },
  16534. godkin: {
  16535. height: math.unit(10 + 6 / 12, "feet"),
  16536. weight: math.unit(328, "lb"),
  16537. name: "Java (Godkin)",
  16538. rename: true,
  16539. image: {
  16540. source: "./media/characters/java/godkin.svg",
  16541. extra: 1104/1068,
  16542. bottom: 36/1140
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(11 + 8 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(5 + 9 / 12, "feet"),
  16559. weight: math.unit(170, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/purna/front.svg",
  16563. extra: 239 / 229,
  16564. bottom: 0.01
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5 + 9 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(5 + 9 / 12, "feet"),
  16581. weight: math.unit(142, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/kuva/front.svg",
  16585. extra: 281 / 271,
  16586. bottom: 0.006
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(5 + 9 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16600. {
  16601. anthro: {
  16602. height: math.unit(9 + 2 / 12, "feet"),
  16603. weight: math.unit(270, "lb"),
  16604. name: "Anthro",
  16605. image: {
  16606. source: "./media/characters/embra/anthro.svg",
  16607. extra: 200 / 187,
  16608. bottom: 0.02
  16609. }
  16610. },
  16611. feral: {
  16612. height: math.unit(18 + 8 / 12, "feet"),
  16613. weight: math.unit(576, "lb"),
  16614. name: "Feral",
  16615. image: {
  16616. source: "./media/characters/embra/feral.svg",
  16617. extra: 152 / 137,
  16618. bottom: 0.037
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(9 + 2 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16632. {
  16633. anthro: {
  16634. height: math.unit(10 + 9 / 12, "feet"),
  16635. weight: math.unit(224, "lb"),
  16636. name: "Anthro",
  16637. image: {
  16638. source: "./media/characters/grottos/anthro.svg",
  16639. extra: 350 / 332,
  16640. bottom: 0.045
  16641. }
  16642. },
  16643. feral: {
  16644. height: math.unit(20 + 7 / 12, "feet"),
  16645. weight: math.unit(629, "lb"),
  16646. name: "Feral",
  16647. image: {
  16648. source: "./media/characters/grottos/feral.svg",
  16649. extra: 207 / 190,
  16650. bottom: 0.05
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(10 + 9 / 12, "feet"),
  16658. default: true
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16664. {
  16665. anthro: {
  16666. height: math.unit(9 + 6 / 12, "feet"),
  16667. weight: math.unit(298, "lb"),
  16668. name: "Anthro",
  16669. image: {
  16670. source: "./media/characters/frifna/anthro.svg",
  16671. extra: 282 / 269,
  16672. bottom: 0.015
  16673. }
  16674. },
  16675. feral: {
  16676. height: math.unit(16 + 2 / 12, "feet"),
  16677. weight: math.unit(624, "lb"),
  16678. name: "Feral",
  16679. image: {
  16680. source: "./media/characters/frifna/feral.svg"
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(9 + 6 / 12, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(6 + 2 / 12, "feet"),
  16697. weight: math.unit(168, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/elise/front.svg",
  16701. extra: 276 / 271
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6 + 2 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 10 / 12, "feet"),
  16718. weight: math.unit(210, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/glade/front.svg",
  16722. extra: 258 / 247,
  16723. bottom: 0.008
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 10 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 10 / 12, "feet"),
  16740. weight: math.unit(129, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/rina/front.svg",
  16744. extra: 266 / 255,
  16745. bottom: 0.005
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 10 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(6 + 1 / 12, "feet"),
  16762. weight: math.unit(192, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/veronica/front.svg",
  16766. extra: 319 / 309,
  16767. bottom: 0.005
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6 + 1 / 12, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(9 + 3 / 12, "feet"),
  16784. weight: math.unit(1100, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/braxton/front.svg",
  16788. extra: 1057 / 984,
  16789. bottom: 0.05
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(9 + 3 / 12, "feet")
  16797. },
  16798. {
  16799. name: "Giant",
  16800. height: math.unit(300, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(700, "feet")
  16806. },
  16807. {
  16808. name: "Megamacro",
  16809. height: math.unit(6000, "feet")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 7 / 12, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/blue-feyonics/front.svg",
  16822. extra: 1403 / 1306,
  16823. bottom: 0.047
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 7 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(1.8, "meters"),
  16840. weight: math.unit(60, "kg"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/maxwell/front.svg",
  16844. extra: 2060 / 1873
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Micro",
  16851. height: math.unit(1, "mm")
  16852. },
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(1.8, "meter"),
  16856. default: true
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(30, "meters")
  16861. },
  16862. {
  16863. name: "Megamacro",
  16864. height: math.unit(10, "km")
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/jack/front.svg",
  16877. extra: 1754 / 1640,
  16878. bottom: 0.01
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(80000, "feet"),
  16886. default: true
  16887. },
  16888. {
  16889. name: "Max size",
  16890. height: math.unit(10, "lightyears")
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16896. {
  16897. urban: {
  16898. height: math.unit(5, "feet"),
  16899. weight: math.unit(240, "lb"),
  16900. name: "Urban",
  16901. image: {
  16902. source: "./media/characters/cafat/urban.svg",
  16903. extra: 1223/1126,
  16904. bottom: 205/1428
  16905. }
  16906. },
  16907. summer: {
  16908. height: math.unit(5, "feet"),
  16909. weight: math.unit(240, "lb"),
  16910. name: "Summer",
  16911. image: {
  16912. source: "./media/characters/cafat/summer.svg",
  16913. extra: 1223/1126,
  16914. bottom: 205/1428
  16915. }
  16916. },
  16917. winter: {
  16918. height: math.unit(5, "feet"),
  16919. weight: math.unit(240, "lb"),
  16920. name: "Winter",
  16921. image: {
  16922. source: "./media/characters/cafat/winter.svg",
  16923. extra: 1223/1126,
  16924. bottom: 205/1428
  16925. }
  16926. },
  16927. lingerie: {
  16928. height: math.unit(5, "feet"),
  16929. weight: math.unit(240, "lb"),
  16930. name: "Lingerie",
  16931. image: {
  16932. source: "./media/characters/cafat/lingerie.svg",
  16933. extra: 1223/1126,
  16934. bottom: 205/1428
  16935. }
  16936. },
  16937. upright: {
  16938. height: math.unit(6.3, "feet"),
  16939. weight: math.unit(240, "lb"),
  16940. name: "Upright",
  16941. image: {
  16942. source: "./media/characters/cafat/upright.svg",
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. uprightFull: {
  16947. height: math.unit(6.3, "feet"),
  16948. weight: math.unit(240, "lb"),
  16949. name: "Upright (Full)",
  16950. image: {
  16951. source: "./media/characters/cafat/upright-full.svg",
  16952. bottom: 0.01
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Small",
  16959. height: math.unit(5, "feet"),
  16960. default: true
  16961. },
  16962. {
  16963. name: "Large",
  16964. height: math.unit(13, "feet")
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6, "feet"),
  16973. weight: math.unit(150, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/verin-raharra/front.svg",
  16977. extra: 5019 / 4835,
  16978. bottom: 0.023
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(7 + 5 / 12, "feet"),
  16986. default: true
  16987. },
  16988. {
  16989. name: "Upsized",
  16990. height: math.unit(20, "feet")
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(7, "feet"),
  16999. weight: math.unit(230, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/nakata/front.svg",
  17003. extra: 1.005,
  17004. bottom: 0.01
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(7, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Big",
  17016. height: math.unit(14, "feet")
  17017. },
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(400, "feet")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(4.91, "feet"),
  17029. weight: math.unit(100, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/lily/front.svg",
  17033. extra: 1585 / 1415,
  17034. bottom: 0.02
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(4.91, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17048. {
  17049. laying: {
  17050. height: math.unit(4 + 4 / 12, "feet"),
  17051. weight: math.unit(600, "lb"),
  17052. name: "Laying",
  17053. image: {
  17054. source: "./media/characters/sheila/laying.svg",
  17055. extra: 1333 / 1265,
  17056. bottom: 0.16
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(4 + 4 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(190, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/sax/front.svg",
  17077. extra: 1187 / 973,
  17078. bottom: 0.042
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(4, "inches"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(150, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/pandora/front.svg",
  17099. extra: 2720 / 2556,
  17100. bottom: 0.015
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/pandora/back.svg",
  17109. extra: 2720 / 2556,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. beans: {
  17114. height: math.unit(6 / 8, "feet"),
  17115. name: "Beans",
  17116. image: {
  17117. source: "./media/characters/pandora/beans.svg"
  17118. }
  17119. },
  17120. collar: {
  17121. height: math.unit(0.31, "feet"),
  17122. name: "Collar",
  17123. image: {
  17124. source: "./media/characters/pandora/collar.svg"
  17125. }
  17126. },
  17127. skirt: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Skirt",
  17131. image: {
  17132. source: "./media/characters/pandora/skirt.svg",
  17133. extra: 1622 / 1525,
  17134. bottom: 0.015
  17135. }
  17136. },
  17137. hoodie: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Hoodie",
  17141. image: {
  17142. source: "./media/characters/pandora/hoodie.svg",
  17143. extra: 1622 / 1525,
  17144. bottom: 0.015
  17145. }
  17146. },
  17147. casual: {
  17148. height: math.unit(6, "feet"),
  17149. weight: math.unit(150, "lb"),
  17150. name: "Casual",
  17151. image: {
  17152. source: "./media/characters/pandora/casual.svg",
  17153. extra: 1622 / 1525,
  17154. bottom: 0.015
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(6, "feet")
  17162. },
  17163. {
  17164. name: "Big Steppy",
  17165. height: math.unit(1, "km"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Galactic Steppy",
  17170. height: math.unit(2, "gigameters")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17176. {
  17177. side: {
  17178. height: math.unit(10, "feet"),
  17179. weight: math.unit(800, "kg"),
  17180. name: "Side",
  17181. image: {
  17182. source: "./media/characters/venio-darcony/side.svg",
  17183. extra: 1373 / 1003,
  17184. bottom: 0.037
  17185. }
  17186. },
  17187. front: {
  17188. height: math.unit(19, "feet"),
  17189. weight: math.unit(800, "kg"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/venio-darcony/front.svg"
  17193. }
  17194. },
  17195. back: {
  17196. height: math.unit(19, "feet"),
  17197. weight: math.unit(800, "kg"),
  17198. name: "Back",
  17199. image: {
  17200. source: "./media/characters/venio-darcony/back.svg"
  17201. }
  17202. },
  17203. sideNsfw: {
  17204. height: math.unit(10, "feet"),
  17205. weight: math.unit(800, "kg"),
  17206. name: "Side (NSFW)",
  17207. image: {
  17208. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17209. extra: 1373 / 1003,
  17210. bottom: 0.037
  17211. }
  17212. },
  17213. frontNsfw: {
  17214. height: math.unit(19, "feet"),
  17215. weight: math.unit(800, "kg"),
  17216. name: "Front (NSFW)",
  17217. image: {
  17218. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17219. }
  17220. },
  17221. backNsfw: {
  17222. height: math.unit(19, "feet"),
  17223. weight: math.unit(800, "kg"),
  17224. name: "Back (NSFW)",
  17225. image: {
  17226. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17227. }
  17228. },
  17229. sideArmored: {
  17230. height: math.unit(10, "feet"),
  17231. weight: math.unit(800, "kg"),
  17232. name: "Side (Armored)",
  17233. image: {
  17234. source: "./media/characters/venio-darcony/side-armored.svg",
  17235. extra: 1373 / 1003,
  17236. bottom: 0.037
  17237. }
  17238. },
  17239. frontArmored: {
  17240. height: math.unit(19, "feet"),
  17241. weight: math.unit(900, "kg"),
  17242. name: "Front (Armored)",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/front-armored.svg"
  17245. }
  17246. },
  17247. backArmored: {
  17248. height: math.unit(19, "feet"),
  17249. weight: math.unit(900, "kg"),
  17250. name: "Back (Armored)",
  17251. image: {
  17252. source: "./media/characters/venio-darcony/back-armored.svg"
  17253. }
  17254. },
  17255. sword: {
  17256. height: math.unit(10, "feet"),
  17257. weight: math.unit(50, "lb"),
  17258. name: "Sword",
  17259. image: {
  17260. source: "./media/characters/venio-darcony/sword.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(10, "feet")
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(130, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Macro+",
  17276. height: math.unit(240, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/veski/front.svg",
  17289. extra: 1299 / 1225,
  17290. bottom: 0.04
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/veski/back.svg",
  17299. extra: 1299 / 1225,
  17300. bottom: 0.008
  17301. }
  17302. },
  17303. maw: {
  17304. height: math.unit(1.5 * 1.21, "feet"),
  17305. name: "Maw",
  17306. image: {
  17307. source: "./media/characters/veski/maw.svg"
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(2, "km"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 7 / 12, "feet"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/isabelle/front.svg",
  17327. extra: 2130 / 1976,
  17328. bottom: 0.05
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Supermicro",
  17335. height: math.unit(10, "micrometers")
  17336. },
  17337. {
  17338. name: "Micro",
  17339. height: math.unit(1, "inch")
  17340. },
  17341. {
  17342. name: "Tiny",
  17343. height: math.unit(5, "inches")
  17344. },
  17345. {
  17346. name: "Standard",
  17347. height: math.unit(5 + 7 / 12, "inches")
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(80, "meters"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(250, "meters")
  17357. },
  17358. {
  17359. name: "Gigamacro",
  17360. height: math.unit(5, "km")
  17361. },
  17362. {
  17363. name: "Cosmic",
  17364. height: math.unit(2.5e6, "miles")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/hanzo/front.svg",
  17377. extra: 374 / 344,
  17378. bottom: 0.02
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(8, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(7, "feet"),
  17395. weight: math.unit(130, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/anna/front.svg",
  17399. extra: 169 / 145,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. full: {
  17404. height: math.unit(4.96, "feet"),
  17405. weight: math.unit(220, "lb"),
  17406. name: "Full",
  17407. image: {
  17408. source: "./media/characters/anna/full.svg",
  17409. extra: 138 / 114,
  17410. bottom: 0.15
  17411. }
  17412. },
  17413. tongue: {
  17414. height: math.unit(2.53, "feet"),
  17415. name: "Tongue",
  17416. image: {
  17417. source: "./media/characters/anna/tongue.svg"
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(7, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(7, "feet"),
  17434. weight: math.unit(150, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/ian-corvid/front.svg",
  17438. extra: 150 / 142,
  17439. bottom: 0.02
  17440. }
  17441. },
  17442. back: {
  17443. height: math.unit(7, "feet"),
  17444. weight: math.unit(150, "lb"),
  17445. name: "Back",
  17446. image: {
  17447. source: "./media/characters/ian-corvid/back.svg",
  17448. extra: 150 / 143,
  17449. bottom: 0.01
  17450. }
  17451. },
  17452. stomping: {
  17453. height: math.unit(7, "feet"),
  17454. weight: math.unit(150, "lb"),
  17455. name: "Stomping",
  17456. image: {
  17457. source: "./media/characters/ian-corvid/stomping.svg",
  17458. extra: 76 / 72
  17459. }
  17460. },
  17461. sitting: {
  17462. height: math.unit(7 / 1.8, "feet"),
  17463. weight: math.unit(150, "lb"),
  17464. name: "Sitting",
  17465. image: {
  17466. source: "./media/characters/ian-corvid/sitting.svg",
  17467. extra: 1400 / 1269,
  17468. bottom: 0.15
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Tiny Microw",
  17475. height: math.unit(1, "inch")
  17476. },
  17477. {
  17478. name: "Microw",
  17479. height: math.unit(6, "inches")
  17480. },
  17481. {
  17482. name: "Crow",
  17483. height: math.unit(7 + 1 / 12, "feet"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Macrow",
  17488. height: math.unit(176, "feet")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(5 + 7 / 12, "feet"),
  17497. weight: math.unit(147, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/natalie-kellon/front.svg",
  17501. extra: 1214 / 1141,
  17502. bottom: 0.02
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(1 / 16, "inch")
  17510. },
  17511. {
  17512. name: "Tiny",
  17513. height: math.unit(4, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 7 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Amazon",
  17522. height: math.unit(12, "feet")
  17523. },
  17524. {
  17525. name: "Giantess",
  17526. height: math.unit(160, "meters")
  17527. },
  17528. {
  17529. name: "Titaness",
  17530. height: math.unit(800, "meters")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6, "feet"),
  17539. weight: math.unit(150, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/alluria/front.svg",
  17543. extra: 806 / 738,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. side: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/alluria/side.svg",
  17553. extra: 800 / 750,
  17554. }
  17555. },
  17556. back: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(150, "lb"),
  17559. name: "Back",
  17560. image: {
  17561. source: "./media/characters/alluria/back.svg",
  17562. extra: 806 / 738,
  17563. }
  17564. },
  17565. frontMaid: {
  17566. height: math.unit(6, "feet"),
  17567. weight: math.unit(150, "lb"),
  17568. name: "Front (Maid)",
  17569. image: {
  17570. source: "./media/characters/alluria/front-maid.svg",
  17571. extra: 806 / 738,
  17572. bottom: 0.01
  17573. }
  17574. },
  17575. sideMaid: {
  17576. height: math.unit(6, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Side (Maid)",
  17579. image: {
  17580. source: "./media/characters/alluria/side-maid.svg",
  17581. extra: 800 / 750,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. backMaid: {
  17586. height: math.unit(6, "feet"),
  17587. weight: math.unit(150, "lb"),
  17588. name: "Back (Maid)",
  17589. image: {
  17590. source: "./media/characters/alluria/back-maid.svg",
  17591. extra: 806 / 738,
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Micro",
  17598. height: math.unit(6, "inches"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/kyle/front.svg",
  17612. extra: 1069 / 962,
  17613. bottom: 77.228 / 1727.45
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(150, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(300, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/duncan/front.svg",
  17634. extra: 1650 / 1482,
  17635. bottom: 0.05
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(100, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(5 + 4 / 12, "feet"),
  17652. weight: math.unit(220, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/memory/front.svg",
  17656. extra: 3641 / 3545,
  17657. bottom: 0.03
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(5 + 4 / 12, "feet"),
  17662. weight: math.unit(220, "lb"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/memory/back.svg",
  17666. extra: 3641 / 3545,
  17667. bottom: 0.025
  17668. }
  17669. },
  17670. frontSkirt: {
  17671. height: math.unit(5 + 4 / 12, "feet"),
  17672. weight: math.unit(220, "lb"),
  17673. name: "Front (Skirt)",
  17674. image: {
  17675. source: "./media/characters/memory/front-skirt.svg",
  17676. extra: 3641 / 3545,
  17677. bottom: 0.03
  17678. }
  17679. },
  17680. frontDress: {
  17681. height: math.unit(5 + 4 / 12, "feet"),
  17682. weight: math.unit(220, "lb"),
  17683. name: "Front (Dress)",
  17684. image: {
  17685. source: "./media/characters/memory/front-dress.svg",
  17686. extra: 3641 / 3545,
  17687. bottom: 0.03
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(6, "inches"),
  17695. default: true
  17696. },
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(5 + 4 / 12, "feet")
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(4 + 11 / 12, "feet"),
  17708. weight: math.unit(100, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/luno/front.svg",
  17712. extra: 1535 / 1487,
  17713. bottom: 0.03
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Micro",
  17720. height: math.unit(3, "inches")
  17721. },
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(4 + 11 / 12, "feet"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Macro",
  17729. height: math.unit(300, "feet")
  17730. },
  17731. {
  17732. name: "Megamacro",
  17733. height: math.unit(700, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(6 + 2 / 12, "feet"),
  17742. weight: math.unit(170, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/jamesy/front.svg",
  17746. extra: 440 / 382,
  17747. bottom: 0.005
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(3, "inches")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(6 + 2 / 12, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(300, "feet")
  17764. },
  17765. {
  17766. name: "Megamacro",
  17767. height: math.unit(700, "miles")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17773. {
  17774. front: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(160, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/mark/front.svg",
  17780. extra: 3300 / 3100,
  17781. bottom: 136.42 / 3440.47
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(120, "meters")
  17789. },
  17790. {
  17791. name: "Bigger Macro",
  17792. height: math.unit(350, "meters")
  17793. },
  17794. {
  17795. name: "Megamacro",
  17796. height: math.unit(8, "km"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Continental",
  17801. height: math.unit(4550, "km")
  17802. },
  17803. {
  17804. name: "Planetary",
  17805. height: math.unit(65000, "km")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(400, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/mac/front.svg",
  17818. extra: 1048 / 987.7,
  17819. bottom: 60 / 1107.6,
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(500, "feet"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. weight: math.unit(190, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/bari/front.svg",
  17840. extra: 3156 / 2880,
  17841. bottom: 0.03
  17842. }
  17843. },
  17844. back: {
  17845. height: math.unit(5 + 2 / 12, "feet"),
  17846. weight: math.unit(190, "lb"),
  17847. name: "Back",
  17848. image: {
  17849. source: "./media/characters/bari/back.svg",
  17850. extra: 3260 / 2834,
  17851. bottom: 0.025
  17852. }
  17853. },
  17854. frontPlush: {
  17855. height: math.unit(5 + 2 / 12, "feet"),
  17856. weight: math.unit(190, "lb"),
  17857. name: "Front (Plush)",
  17858. image: {
  17859. source: "./media/characters/bari/front-plush.svg",
  17860. extra: 1112 / 1061,
  17861. bottom: 0.002
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Micro",
  17868. height: math.unit(3, "inches")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(5 + 2 / 12, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Macro",
  17877. height: math.unit(20, "feet")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(6 + 1 / 12, "feet"),
  17886. weight: math.unit(275, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/hunter-misha-raven/front.svg"
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Mortal",
  17896. height: math.unit(6 + 1 / 12, "feet")
  17897. },
  17898. {
  17899. name: "Divine",
  17900. height: math.unit(1.12134e34, "parsecs"),
  17901. default: true
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(6 + 3 / 12, "feet"),
  17910. weight: math.unit(220, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/max-calore/front.svg",
  17914. extra: 1700 / 1648,
  17915. bottom: 0.01
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(6 + 3 / 12, "feet"),
  17920. weight: math.unit(220, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/max-calore/back.svg",
  17924. extra: 1700 / 1648,
  17925. bottom: 0.01
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 3 / 12, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17939. {
  17940. side: {
  17941. height: math.unit(2 + 8 / 12, "feet"),
  17942. weight: math.unit(99, "lb"),
  17943. name: "Side",
  17944. image: {
  17945. source: "./media/characters/aspen/side.svg",
  17946. extra: 152 / 138,
  17947. bottom: 0.032
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(2 + 8 / 12, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(3 + 2 / 12, "feet"),
  17964. weight: math.unit(224, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/sheila-feral-wolf/side.svg",
  17968. extra: 179 / 166,
  17969. bottom: 0.03
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(3 + 2 / 12, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17983. {
  17984. side: {
  17985. height: math.unit(1 + 9 / 12, "feet"),
  17986. weight: math.unit(38, "lb"),
  17987. name: "Side",
  17988. image: {
  17989. source: "./media/characters/michelle/side.svg",
  17990. extra: 147 / 136.7,
  17991. bottom: 0.03
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(1 + 9 / 12, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(1.54, "feet"),
  18008. weight: math.unit(50, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/nino/front.svg"
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(1.54, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(1.49, "feet"),
  18028. weight: math.unit(45, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/viola/front.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(1.49, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6 + 5 / 12, "feet"),
  18048. weight: math.unit(580, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/atlas/front.svg",
  18052. extra: 298.5 / 290,
  18053. bottom: 0.015
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(6 + 5 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18067. {
  18068. side: {
  18069. height: math.unit(15.6, "inches"),
  18070. weight: math.unit(10, "lb"),
  18071. name: "Side",
  18072. image: {
  18073. source: "./media/characters/davy/side.svg",
  18074. extra: 200 / 170,
  18075. bottom: 0.01
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(15.6, "inches"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18089. {
  18090. side: {
  18091. height: math.unit(4 + 8 / 12, "feet"),
  18092. weight: math.unit(166, "lb"),
  18093. name: "Side",
  18094. image: {
  18095. source: "./media/characters/fiona/side.svg",
  18096. extra: 232 / 220,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(4 + 8 / 12, "feet"),
  18105. default: true
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18111. {
  18112. front: {
  18113. height: math.unit(26, "inches"),
  18114. weight: math.unit(35, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/lyla/front.svg",
  18118. bottom: 0.1
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(3, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18132. {
  18133. side: {
  18134. height: math.unit(1.8, "feet"),
  18135. weight: math.unit(44, "lb"),
  18136. name: "Side",
  18137. image: {
  18138. source: "./media/characters/perseus/side.svg",
  18139. bottom: 0.21
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(1.8, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18153. {
  18154. side: {
  18155. height: math.unit(4 + 2 / 12, "feet"),
  18156. weight: math.unit(20, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/remus/side.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(4 + 2 / 12, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(4 + 11 / 12, "feet"),
  18176. weight: math.unit(114, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/raf/front.svg",
  18180. extra: 1504/1339,
  18181. bottom: 26/1530
  18182. }
  18183. },
  18184. side: {
  18185. height: math.unit(4 + 11 / 12, "feet"),
  18186. weight: math.unit(114, "lb"),
  18187. name: "Side",
  18188. image: {
  18189. source: "./media/characters/raf/side.svg",
  18190. extra: 1466/1316,
  18191. bottom: 29/1495
  18192. }
  18193. },
  18194. paw: {
  18195. height: math.unit(1.45, "feet"),
  18196. name: "Paw",
  18197. image: {
  18198. source: "./media/characters/raf/paw.svg"
  18199. },
  18200. extraAttributes: {
  18201. "toeSize": {
  18202. name: "Toe Size",
  18203. power: 2,
  18204. type: "area",
  18205. base: math.unit(0.004, "m^2")
  18206. },
  18207. "padSize": {
  18208. name: "Pad Size",
  18209. power: 2,
  18210. type: "area",
  18211. base: math.unit(0.04, "m^2")
  18212. },
  18213. "footSize": {
  18214. name: "Foot Size",
  18215. power: 2,
  18216. type: "area",
  18217. base: math.unit(0.08, "m^2")
  18218. },
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(2, "inches")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(4 + 11 / 12, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(70, "feet")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(1.5, "meters"),
  18243. weight: math.unit(68, "kg"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/liam-einarr/front.svg",
  18247. extra: 2822 / 2666
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(1.5, "meters"),
  18252. weight: math.unit(68, "kg"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/liam-einarr/back.svg",
  18256. extra: 2822 / 2666,
  18257. bottom: 0.015
  18258. }
  18259. },
  18260. },
  18261. [
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(1.5, "meters"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(150, "meters")
  18270. },
  18271. {
  18272. name: "Megamacro",
  18273. height: math.unit(35, "km")
  18274. },
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18279. {
  18280. front: {
  18281. height: math.unit(6, "feet"),
  18282. weight: math.unit(75, "kg"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/linda/front.svg",
  18286. extra: 930 / 874,
  18287. bottom: 0.004
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(6 + 8 / 12, "feet"),
  18304. weight: math.unit(220, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/caylex/front.svg",
  18308. extra: 821 / 772,
  18309. bottom: 0.07
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(6 + 8 / 12, "feet"),
  18314. weight: math.unit(220, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/caylex/back.svg",
  18318. extra: 821 / 772,
  18319. bottom: 0.022
  18320. }
  18321. },
  18322. hand: {
  18323. height: math.unit(1.25, "feet"),
  18324. name: "Hand",
  18325. image: {
  18326. source: "./media/characters/caylex/hand.svg"
  18327. }
  18328. },
  18329. foot: {
  18330. height: math.unit(1.6, "feet"),
  18331. name: "Foot",
  18332. image: {
  18333. source: "./media/characters/caylex/foot.svg"
  18334. }
  18335. },
  18336. armored: {
  18337. height: math.unit(6 + 8 / 12, "feet"),
  18338. weight: math.unit(250, "lb"),
  18339. name: "Armored",
  18340. image: {
  18341. source: "./media/characters/caylex/armored.svg",
  18342. extra: 1420 / 1310,
  18343. bottom: 0.045
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(6 + 8 / 12, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Normal+",
  18355. height: math.unit(12, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(7 + 6 / 12, "feet"),
  18364. weight: math.unit(288, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/alana/front.svg",
  18368. extra: 679 / 653,
  18369. bottom: 22.5 / 701
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(7 + 6 / 12, "feet")
  18377. },
  18378. {
  18379. name: "Large",
  18380. height: math.unit(50, "feet")
  18381. },
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(100, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro+",
  18389. height: math.unit(200, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(6 + 1 / 12, "feet"),
  18398. weight: math.unit(210, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/hasani/front.svg",
  18402. extra: 244 / 232,
  18403. bottom: 0.01
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(6 + 1 / 12, "feet"),
  18408. weight: math.unit(210, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/hasani/back.svg",
  18412. extra: 244 / 232,
  18413. bottom: 0.01
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 1 / 12, "feet")
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(175, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(1.82, "meters"),
  18434. weight: math.unit(140, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/nita/front.svg",
  18438. extra: 2473 / 2363,
  18439. bottom: 0.01
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(1.82, "m")
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(300, "m")
  18451. },
  18452. {
  18453. name: "Mistake Canon",
  18454. height: math.unit(0.5, "miles"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Big Mistake",
  18459. height: math.unit(13, "miles")
  18460. },
  18461. {
  18462. name: "Playing God",
  18463. height: math.unit(2450, "miles")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(4, "feet"),
  18472. weight: math.unit(120, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/shiriko/front.svg",
  18476. extra: 970/934,
  18477. bottom: 5/975
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(4, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18491. {
  18492. front: {
  18493. height: math.unit(6, "feet"),
  18494. name: "front",
  18495. image: {
  18496. source: "./media/characters/deja/front.svg",
  18497. extra: 926 / 840,
  18498. bottom: 0.07
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Planck Length",
  18505. height: math.unit(1.6e-35, "meters")
  18506. },
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(30.48, "meters"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Universal",
  18514. height: math.unit(8.8e26, "meters")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18520. {
  18521. side: {
  18522. height: math.unit(8, "feet"),
  18523. weight: math.unit(6300, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/anima/side.svg",
  18527. bottom: 0.035
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(8, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(8, "feet"),
  18544. weight: math.unit(350, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/bianca/front.svg",
  18548. extra: 234 / 225,
  18549. bottom: 0.03
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(11 + 5/12, "feet"),
  18566. weight: math.unit(1200, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/adinia/front.svg",
  18570. extra: 1767/1641,
  18571. bottom: 44/1811
  18572. },
  18573. extraAttributes: {
  18574. "energyIntake": {
  18575. name: "Energy Intake",
  18576. power: 3,
  18577. type: "energy",
  18578. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18579. },
  18580. }
  18581. },
  18582. back: {
  18583. height: math.unit(11 + 5/12, "feet"),
  18584. weight: math.unit(1200, "lb"),
  18585. name: "Back",
  18586. image: {
  18587. source: "./media/characters/adinia/back.svg",
  18588. extra: 1834/1684,
  18589. bottom: 14/1848
  18590. },
  18591. extraAttributes: {
  18592. "energyIntake": {
  18593. name: "Energy Intake",
  18594. power: 3,
  18595. type: "energy",
  18596. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18597. },
  18598. }
  18599. },
  18600. maw: {
  18601. height: math.unit(3.79, "feet"),
  18602. name: "Maw",
  18603. image: {
  18604. source: "./media/characters/adinia/maw.svg"
  18605. }
  18606. },
  18607. rump: {
  18608. height: math.unit(4.6, "feet"),
  18609. name: "Rump",
  18610. image: {
  18611. source: "./media/characters/adinia/rump.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(11 + 5 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(3, "meters"),
  18628. weight: math.unit(200, "kg"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/lykasa/front.svg",
  18632. extra: 1076 / 976,
  18633. bottom: 0.06
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(3, "meters")
  18641. },
  18642. {
  18643. name: "Kaiju",
  18644. height: math.unit(120, "meters"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Mega Kaiju",
  18649. height: math.unit(240, "km")
  18650. },
  18651. {
  18652. name: "Giga Kaiju",
  18653. height: math.unit(400, "megameters")
  18654. },
  18655. {
  18656. name: "Tera Kaiju",
  18657. height: math.unit(800, "gigameters")
  18658. },
  18659. {
  18660. name: "Kaiju Dragon Goddess",
  18661. height: math.unit(26, "zettaparsecs")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18667. {
  18668. side: {
  18669. height: math.unit(283 / 124 * 6, "feet"),
  18670. weight: math.unit(35000, "lb"),
  18671. name: "Side",
  18672. image: {
  18673. source: "./media/characters/malfaren/side.svg",
  18674. extra: 1310/529,
  18675. bottom: 24/1334
  18676. }
  18677. },
  18678. front: {
  18679. height: math.unit(22.36, "feet"),
  18680. weight: math.unit(35000, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/malfaren/front.svg",
  18684. extra: 1237/1115,
  18685. bottom: 32/1269
  18686. }
  18687. },
  18688. maw: {
  18689. height: math.unit(6.9, "feet"),
  18690. name: "Maw",
  18691. image: {
  18692. source: "./media/characters/malfaren/maw.svg"
  18693. }
  18694. },
  18695. dick: {
  18696. height: math.unit(6.19, "feet"),
  18697. name: "Dick",
  18698. image: {
  18699. source: "./media/characters/malfaren/dick.svg"
  18700. }
  18701. },
  18702. eye: {
  18703. height: math.unit(0.69, "feet"),
  18704. name: "Eye",
  18705. image: {
  18706. source: "./media/characters/malfaren/eye.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Big",
  18713. height: math.unit(283 / 162 * 6, "feet"),
  18714. },
  18715. {
  18716. name: "Bigger",
  18717. height: math.unit(283 / 124 * 6, "feet")
  18718. },
  18719. {
  18720. name: "Massive",
  18721. height: math.unit(283 / 92 * 6, "feet"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "👀💦",
  18726. height: math.unit(283 / 73 * 6, "feet"),
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(1.7, "m"),
  18735. weight: math.unit(70, "kg"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/kernel/front.svg",
  18739. extra: 222 / 210,
  18740. bottom: 0.007
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Nano",
  18747. height: math.unit(17, "micrometers")
  18748. },
  18749. {
  18750. name: "Micro",
  18751. height: math.unit(1.7, "mm")
  18752. },
  18753. {
  18754. name: "Small",
  18755. height: math.unit(1.7, "cm")
  18756. },
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(1.7, "m"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(1.75, "meters"),
  18769. weight: math.unit(65, "kg"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/jayne-folest/front.svg",
  18773. extra: 2115 / 2007,
  18774. bottom: 0.02
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(1.75, "meters"),
  18779. weight: math.unit(65, "kg"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/jayne-folest/back.svg",
  18783. extra: 2115 / 2007,
  18784. bottom: 0.005
  18785. }
  18786. },
  18787. frontClothed: {
  18788. height: math.unit(1.75, "meters"),
  18789. weight: math.unit(65, "kg"),
  18790. name: "Front (Clothed)",
  18791. image: {
  18792. source: "./media/characters/jayne-folest/front-clothed.svg",
  18793. extra: 2115 / 2007,
  18794. bottom: 0.035
  18795. }
  18796. },
  18797. hand: {
  18798. height: math.unit(1 / 1.260, "feet"),
  18799. name: "Hand",
  18800. image: {
  18801. source: "./media/characters/jayne-folest/hand.svg"
  18802. }
  18803. },
  18804. foot: {
  18805. height: math.unit(1 / 0.918, "feet"),
  18806. name: "Foot",
  18807. image: {
  18808. source: "./media/characters/jayne-folest/foot.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(4, "cm")
  18816. },
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(1.75, "meters")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(47.5, "meters"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(180, "cm"),
  18833. weight: math.unit(70, "kg"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/algier/front.svg",
  18837. extra: 596 / 572,
  18838. bottom: 0.04
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(180, "cm"),
  18843. weight: math.unit(70, "kg"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/algier/back.svg",
  18847. extra: 596 / 572,
  18848. bottom: 0.025
  18849. }
  18850. },
  18851. frontdressed: {
  18852. height: math.unit(180, "cm"),
  18853. weight: math.unit(150, "kg"),
  18854. name: "Front-dressed",
  18855. image: {
  18856. source: "./media/characters/algier/front-dressed.svg",
  18857. extra: 596 / 572,
  18858. bottom: 0.038
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Micro",
  18865. height: math.unit(5, "cm")
  18866. },
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(180, "cm"),
  18870. default: true
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(64, "m")
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18880. {
  18881. upright: {
  18882. height: math.unit(7, "feet"),
  18883. weight: math.unit(300, "lb"),
  18884. name: "Upright",
  18885. image: {
  18886. source: "./media/characters/pretzel/upright.svg",
  18887. extra: 534 / 522,
  18888. bottom: 0.065
  18889. }
  18890. },
  18891. sprawling: {
  18892. height: math.unit(3.75, "feet"),
  18893. weight: math.unit(300, "lb"),
  18894. name: "Sprawling",
  18895. image: {
  18896. source: "./media/characters/pretzel/sprawling.svg",
  18897. extra: 314 / 281,
  18898. bottom: 0.1
  18899. }
  18900. },
  18901. tongue: {
  18902. height: math.unit(2, "feet"),
  18903. name: "Tongue",
  18904. image: {
  18905. source: "./media/characters/pretzel/tongue.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(7, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "Oversized",
  18917. height: math.unit(15, "feet")
  18918. },
  18919. {
  18920. name: "Huge",
  18921. height: math.unit(30, "feet")
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(250, "feet")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18931. {
  18932. sideFront: {
  18933. height: math.unit(5 + 2 / 12, "feet"),
  18934. weight: math.unit(120, "lb"),
  18935. name: "Front Side",
  18936. image: {
  18937. source: "./media/characters/roxi/side-front.svg",
  18938. extra: 2924 / 2717,
  18939. bottom: 0.08
  18940. }
  18941. },
  18942. sideBack: {
  18943. height: math.unit(5 + 2 / 12, "feet"),
  18944. weight: math.unit(120, "lb"),
  18945. name: "Back Side",
  18946. image: {
  18947. source: "./media/characters/roxi/side-back.svg",
  18948. extra: 2904 / 2693,
  18949. bottom: 0.06
  18950. }
  18951. },
  18952. front: {
  18953. height: math.unit(5 + 2 / 12, "feet"),
  18954. weight: math.unit(120, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/roxi/front.svg",
  18958. extra: 2028 / 1907,
  18959. bottom: 0.01
  18960. }
  18961. },
  18962. frontAlt: {
  18963. height: math.unit(5 + 2 / 12, "feet"),
  18964. weight: math.unit(120, "lb"),
  18965. name: "Front (Alt)",
  18966. image: {
  18967. source: "./media/characters/roxi/front-alt.svg",
  18968. extra: 1828 / 1798,
  18969. bottom: 0.01
  18970. }
  18971. },
  18972. sitting: {
  18973. height: math.unit(2.8, "feet"),
  18974. weight: math.unit(120, "lb"),
  18975. name: "Sitting",
  18976. image: {
  18977. source: "./media/characters/roxi/sitting.svg",
  18978. extra: 2660 / 2462,
  18979. bottom: 0.1
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 2 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18993. {
  18994. side: {
  18995. height: math.unit(55, "feet"),
  18996. weight: math.unit(153, "tons"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/shadow/side.svg",
  19000. extra: 701 / 628,
  19001. bottom: 0.02
  19002. }
  19003. },
  19004. flying: {
  19005. height: math.unit(145, "feet"),
  19006. weight: math.unit(153, "tons"),
  19007. name: "Flying",
  19008. image: {
  19009. source: "./media/characters/shadow/flying.svg"
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(55, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(200, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/marcie/front.svg",
  19030. extra: 960 / 876,
  19031. bottom: 58 / 1017.87
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(1, "mile"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(7, "feet"),
  19048. weight: math.unit(200, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/kachina/front.svg",
  19052. extra: 1290.68 / 1119,
  19053. bottom: 36.5 / 1327.18
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(7, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19067. {
  19068. looking: {
  19069. height: math.unit(2, "meters"),
  19070. weight: math.unit(300, "kg"),
  19071. name: "Looking",
  19072. image: {
  19073. source: "./media/characters/kash/looking.svg",
  19074. extra: 474 / 344,
  19075. bottom: 0.03
  19076. }
  19077. },
  19078. side: {
  19079. height: math.unit(2, "meters"),
  19080. weight: math.unit(300, "kg"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/kash/side.svg",
  19084. extra: 302 / 251,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. front: {
  19089. height: math.unit(2, "meters"),
  19090. weight: math.unit(300, "kg"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/kash/front.svg",
  19094. extra: 495 / 360,
  19095. bottom: 0.015
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(2, "meters"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Big",
  19107. height: math.unit(3, "meters")
  19108. },
  19109. {
  19110. name: "Large",
  19111. height: math.unit(5, "meters")
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19117. {
  19118. feeding: {
  19119. height: math.unit(6.7, "feet"),
  19120. weight: math.unit(350, "lb"),
  19121. name: "Feeding",
  19122. image: {
  19123. source: "./media/characters/lalim/feeding.svg",
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6.7, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(9.5, "feet"),
  19140. weight: math.unit(600, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/de'vout/front.svg",
  19144. extra: 1443 / 1328,
  19145. bottom: 0.025
  19146. }
  19147. },
  19148. back: {
  19149. height: math.unit(9.5, "feet"),
  19150. weight: math.unit(600, "lb"),
  19151. name: "Back",
  19152. image: {
  19153. source: "./media/characters/de'vout/back.svg",
  19154. extra: 1443 / 1328
  19155. }
  19156. },
  19157. frontDressed: {
  19158. height: math.unit(9.5, "feet"),
  19159. weight: math.unit(600, "lb"),
  19160. name: "Front (Dressed",
  19161. image: {
  19162. source: "./media/characters/de'vout/front-dressed.svg",
  19163. extra: 1443 / 1328,
  19164. bottom: 0.025
  19165. }
  19166. },
  19167. backDressed: {
  19168. height: math.unit(9.5, "feet"),
  19169. weight: math.unit(600, "lb"),
  19170. name: "Back (Dressed",
  19171. image: {
  19172. source: "./media/characters/de'vout/back-dressed.svg",
  19173. extra: 1443 / 1328
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(9.5, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(8, "feet"),
  19190. weight: math.unit(225, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/talana/front.svg",
  19194. extra: 1410 / 1300,
  19195. bottom: 0.015
  19196. }
  19197. },
  19198. frontDressed: {
  19199. height: math.unit(8, "feet"),
  19200. weight: math.unit(225, "lb"),
  19201. name: "Front (Dressed",
  19202. image: {
  19203. source: "./media/characters/talana/front-dressed.svg",
  19204. extra: 1410 / 1300,
  19205. bottom: 0.015
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(8, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19219. {
  19220. side: {
  19221. height: math.unit(7.2, "feet"),
  19222. weight: math.unit(150, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/xeauvok/side.svg",
  19226. extra: 1975 / 1523,
  19227. bottom: 0.07
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(7.2, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19241. {
  19242. side: {
  19243. height: math.unit(4, "meters"),
  19244. weight: math.unit(2200, "kg"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/zara/side.svg",
  19248. extra: 765/744,
  19249. bottom: 156/921
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(4, "meters"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19263. {
  19264. side: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Side",
  19268. image: {
  19269. source: "./media/characters/richard-dragon/side.svg",
  19270. extra: 845 / 340,
  19271. bottom: 0.017
  19272. }
  19273. },
  19274. maw: {
  19275. height: math.unit(2.97, "feet"),
  19276. name: "Maw",
  19277. image: {
  19278. source: "./media/characters/richard-dragon/maw.svg"
  19279. }
  19280. },
  19281. },
  19282. [
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(4, "feet"),
  19290. weight: math.unit(100, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/richard-smeargle/front.svg",
  19294. extra: 2952 / 2820,
  19295. bottom: 0.028
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(4, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Dynamax",
  19307. height: math.unit(20, "meters")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6, "feet"),
  19316. weight: math.unit(110, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/klay/front.svg",
  19320. extra: 962 / 883,
  19321. bottom: 0.04
  19322. }
  19323. },
  19324. back: {
  19325. height: math.unit(6, "feet"),
  19326. weight: math.unit(110, "lb"),
  19327. name: "Back",
  19328. image: {
  19329. source: "./media/characters/klay/back.svg",
  19330. extra: 962 / 883
  19331. }
  19332. },
  19333. beans: {
  19334. height: math.unit(1.15, "feet"),
  19335. name: "Beans",
  19336. image: {
  19337. source: "./media/characters/klay/beans.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Micro",
  19344. height: math.unit(6, "inches")
  19345. },
  19346. {
  19347. name: "Mini",
  19348. height: math.unit(3, "feet")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(6, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Big",
  19357. height: math.unit(25, "feet")
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(100, "feet")
  19362. },
  19363. {
  19364. name: "Megamacro",
  19365. height: math.unit(400, "feet")
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(160, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/marcus/front.svg",
  19378. extra: 734 / 676,
  19379. bottom: 0.03
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Little",
  19386. height: math.unit(6, "feet")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(110, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(250, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1000, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(7, "feet"),
  19408. weight: math.unit(275, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/claude-delroute/front.svg",
  19412. extra: 902/827,
  19413. bottom: 26/928
  19414. }
  19415. },
  19416. side: {
  19417. height: math.unit(7, "feet"),
  19418. weight: math.unit(275, "lb"),
  19419. name: "Side",
  19420. image: {
  19421. source: "./media/characters/claude-delroute/side.svg",
  19422. extra: 908/853,
  19423. bottom: 16/924
  19424. }
  19425. },
  19426. back: {
  19427. height: math.unit(7, "feet"),
  19428. weight: math.unit(275, "lb"),
  19429. name: "Back",
  19430. image: {
  19431. source: "./media/characters/claude-delroute/back.svg",
  19432. extra: 911/829,
  19433. bottom: 18/929
  19434. }
  19435. },
  19436. maw: {
  19437. height: math.unit(0.6407, "meters"),
  19438. name: "Maw",
  19439. image: {
  19440. source: "./media/characters/claude-delroute/maw.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(7, "feet"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "Lorge",
  19452. height: math.unit(20, "feet")
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(8 + 4 / 12, "feet"),
  19461. weight: math.unit(600, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/dragonien/front.svg",
  19465. extra: 100 / 94,
  19466. bottom: 3.3 / 103.3445
  19467. }
  19468. },
  19469. back: {
  19470. height: math.unit(8 + 4 / 12, "feet"),
  19471. weight: math.unit(600, "lb"),
  19472. name: "Back",
  19473. image: {
  19474. source: "./media/characters/dragonien/back.svg",
  19475. extra: 776 / 746,
  19476. bottom: 6.4 / 782.0616
  19477. }
  19478. },
  19479. foot: {
  19480. height: math.unit(1.54, "feet"),
  19481. name: "Foot",
  19482. image: {
  19483. source: "./media/characters/dragonien/foot.svg",
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(8 + 4 / 12, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(200, "feet")
  19496. },
  19497. {
  19498. name: "Megamacro",
  19499. height: math.unit(1, "mile")
  19500. },
  19501. {
  19502. name: "Gigamacro",
  19503. height: math.unit(1000, "miles")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(5 + 2 / 12, "feet"),
  19512. weight: math.unit(110, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/desta/front.svg",
  19516. extra: 767 / 726,
  19517. bottom: 11.7 / 779
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(5 + 2 / 12, "feet"),
  19522. weight: math.unit(110, "lb"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/desta/back.svg",
  19526. extra: 777 / 728,
  19527. bottom: 6 / 784
  19528. }
  19529. },
  19530. frontAlt: {
  19531. height: math.unit(5 + 2 / 12, "feet"),
  19532. weight: math.unit(110, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/desta/front-alt.svg",
  19536. extra: 1482 / 1417
  19537. }
  19538. },
  19539. side: {
  19540. height: math.unit(5 + 2 / 12, "feet"),
  19541. weight: math.unit(110, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/desta/side.svg",
  19545. extra: 2579 / 2491,
  19546. bottom: 0.053
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Micro",
  19553. height: math.unit(6, "inches")
  19554. },
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(5 + 2 / 12, "feet"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(62, "feet")
  19563. },
  19564. {
  19565. name: "Megamacro",
  19566. height: math.unit(1800, "feet")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(10, "feet"),
  19575. weight: math.unit(700, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/storm-alystar/front.svg",
  19579. extra: 2112 / 1898,
  19580. bottom: 0.034
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Micro",
  19587. height: math.unit(3.5, "inches")
  19588. },
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(10, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(400, "feet")
  19597. },
  19598. {
  19599. name: "Deific",
  19600. height: math.unit(60, "miles")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(2.35, "meters"),
  19609. weight: math.unit(119, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/ilia/front.svg",
  19613. extra: 1285 / 1255,
  19614. bottom: 0.06
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(2.35, "meters")
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(140, "meters"),
  19626. default: true
  19627. },
  19628. {
  19629. name: "Megamacro",
  19630. height: math.unit(100, "miles")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(6 + 5 / 12, "feet"),
  19639. weight: math.unit(190, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kingdead/front.svg",
  19643. extra: 1228 / 1177
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Micro",
  19650. height: math.unit(7, "inches")
  19651. },
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(6 + 5 / 12, "feet")
  19655. },
  19656. {
  19657. name: "Macro",
  19658. height: math.unit(150, "feet"),
  19659. default: true
  19660. },
  19661. {
  19662. name: "Megamacro",
  19663. height: math.unit(200, "miles")
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(8, "feet"),
  19672. weight: math.unit(600, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/kyrehx/front.svg",
  19676. extra: 1195 / 1095,
  19677. bottom: 0.034
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Micro",
  19684. height: math.unit(2, "inches")
  19685. },
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(8, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(255, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19702. weight: math.unit(184, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/xang/front.svg",
  19706. extra: 845 / 755
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19714. default: true
  19715. },
  19716. {
  19717. name: "Macro",
  19718. height: math.unit(0.935 * 146, "feet")
  19719. },
  19720. {
  19721. name: "Megamacro",
  19722. height: math.unit(0.935 * 3, "miles")
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19728. {
  19729. frontDressed: {
  19730. height: math.unit(5 + 7 / 12, "feet"),
  19731. weight: math.unit(140, "lb"),
  19732. name: "Front (Dressed)",
  19733. image: {
  19734. source: "./media/characters/doc-weardno/front-dressed.svg",
  19735. extra: 263 / 234
  19736. }
  19737. },
  19738. backDressed: {
  19739. height: math.unit(5 + 7 / 12, "feet"),
  19740. weight: math.unit(140, "lb"),
  19741. name: "Back (Dressed)",
  19742. image: {
  19743. source: "./media/characters/doc-weardno/back-dressed.svg",
  19744. extra: 266 / 238
  19745. }
  19746. },
  19747. front: {
  19748. height: math.unit(5 + 7 / 12, "feet"),
  19749. weight: math.unit(140, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/doc-weardno/front.svg",
  19753. extra: 254 / 233
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(3, "inches")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(5 + 7 / 12, "feet"),
  19765. default: true
  19766. },
  19767. {
  19768. name: "Macro",
  19769. height: math.unit(25, "feet")
  19770. },
  19771. {
  19772. name: "Megamacro",
  19773. height: math.unit(2, "miles")
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(6 + 2 / 12, "feet"),
  19782. weight: math.unit(153, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/seth-whilst/front.svg",
  19786. bottom: 0.07
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Micro",
  19793. height: math.unit(5, "inches")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(6 + 2 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(3, "inches"),
  19807. weight: math.unit(8, "grams"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/pocket-jabari/front.svg",
  19811. extra: 1024 / 974,
  19812. bottom: 0.039
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Minimicro",
  19819. height: math.unit(8, "mm")
  19820. },
  19821. {
  19822. name: "Micro",
  19823. height: math.unit(3, "inches"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(3, "feet")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19834. {
  19835. frontDressed: {
  19836. height: math.unit(15, "feet"),
  19837. weight: math.unit(3280, "lb"),
  19838. name: "Front (Dressed)",
  19839. image: {
  19840. source: "./media/characters/sapphy/front-dressed.svg",
  19841. extra: 1951/1654,
  19842. bottom: 194/2145
  19843. },
  19844. form: "anthro",
  19845. default: true
  19846. },
  19847. backDressed: {
  19848. height: math.unit(15, "feet"),
  19849. weight: math.unit(3280, "lb"),
  19850. name: "Back (Dressed)",
  19851. image: {
  19852. source: "./media/characters/sapphy/back-dressed.svg",
  19853. extra: 2058/1918,
  19854. bottom: 125/2183
  19855. },
  19856. form: "anthro"
  19857. },
  19858. frontNude: {
  19859. height: math.unit(15, "feet"),
  19860. weight: math.unit(3280, "lb"),
  19861. name: "Front (Nude)",
  19862. image: {
  19863. source: "./media/characters/sapphy/front-nude.svg",
  19864. extra: 1951/1654,
  19865. bottom: 194/2145
  19866. },
  19867. form: "anthro"
  19868. },
  19869. backNude: {
  19870. height: math.unit(15, "feet"),
  19871. weight: math.unit(3280, "lb"),
  19872. name: "Back (Nude)",
  19873. image: {
  19874. source: "./media/characters/sapphy/back-nude.svg",
  19875. extra: 2058/1918,
  19876. bottom: 125/2183
  19877. },
  19878. form: "anthro"
  19879. },
  19880. full: {
  19881. height: math.unit(15, "feet"),
  19882. weight: math.unit(3280, "lb"),
  19883. name: "Full",
  19884. image: {
  19885. source: "./media/characters/sapphy/full.svg",
  19886. extra: 1396/1317,
  19887. bottom: 44/1440
  19888. },
  19889. form: "anthro"
  19890. },
  19891. dick: {
  19892. height: math.unit(3.8, "feet"),
  19893. name: "Dick",
  19894. image: {
  19895. source: "./media/characters/sapphy/dick.svg"
  19896. },
  19897. form: "anthro"
  19898. },
  19899. feral: {
  19900. height: math.unit(35, "feet"),
  19901. weight: math.unit(160, "tons"),
  19902. name: "Feral",
  19903. image: {
  19904. source: "./media/characters/sapphy/feral.svg",
  19905. extra: 1050/573,
  19906. bottom: 60/1110
  19907. },
  19908. form: "feral",
  19909. default: true
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(15, "feet"),
  19916. form: "anthro"
  19917. },
  19918. {
  19919. name: "Casual Macro",
  19920. height: math.unit(120, "feet"),
  19921. form: "anthro"
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(2150, "feet"),
  19926. default: true,
  19927. form: "anthro"
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(8, "miles"),
  19932. form: "anthro"
  19933. },
  19934. {
  19935. name: "Galaxy Mom",
  19936. height: math.unit(6, "megalightyears"),
  19937. form: "anthro"
  19938. },
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(35, "feet"),
  19942. form: "feral",
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(300, "feet"),
  19948. form: "feral"
  19949. },
  19950. {
  19951. name: "Galaxy Mom",
  19952. height: math.unit(10, "megalightyears"),
  19953. form: "feral"
  19954. },
  19955. ],
  19956. {
  19957. "anthro": {
  19958. name: "Anthro",
  19959. default: true
  19960. },
  19961. "feral": {
  19962. name: "Feral"
  19963. }
  19964. }
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(6, "feet"),
  19971. weight: math.unit(170, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/kiro/front.svg",
  19975. extra: 1064 / 1012,
  19976. bottom: 0.052
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Micro",
  19983. height: math.unit(6, "inches")
  19984. },
  19985. {
  19986. name: "Normal",
  19987. height: math.unit(6, "feet"),
  19988. default: true
  19989. },
  19990. {
  19991. name: "Macro",
  19992. height: math.unit(72, "feet")
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19998. {
  19999. front: {
  20000. height: math.unit(5 + 9 / 12, "feet"),
  20001. weight: math.unit(175, "lb"),
  20002. name: "Front",
  20003. image: {
  20004. source: "./media/characters/irishfox/front.svg",
  20005. extra: 1912 / 1680,
  20006. bottom: 0.02
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Nano",
  20013. height: math.unit(1, "mm")
  20014. },
  20015. {
  20016. name: "Micro",
  20017. height: math.unit(2, "inches")
  20018. },
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(5 + 9 / 12, "feet"),
  20022. default: true
  20023. },
  20024. {
  20025. name: "Macro",
  20026. height: math.unit(45, "feet")
  20027. },
  20028. ]
  20029. ))
  20030. characterMakers.push(() => makeCharacter(
  20031. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20032. {
  20033. front: {
  20034. height: math.unit(6 + 1 / 12, "feet"),
  20035. weight: math.unit(75, "lb"),
  20036. name: "Front",
  20037. image: {
  20038. source: "./media/characters/aronai-sieyes/front.svg",
  20039. extra: 1532/1450,
  20040. bottom: 42/1574
  20041. }
  20042. },
  20043. side: {
  20044. height: math.unit(6 + 1 / 12, "feet"),
  20045. weight: math.unit(75, "lb"),
  20046. name: "Side",
  20047. image: {
  20048. source: "./media/characters/aronai-sieyes/side.svg",
  20049. extra: 1422/1365,
  20050. bottom: 148/1570
  20051. }
  20052. },
  20053. back: {
  20054. height: math.unit(6 + 1 / 12, "feet"),
  20055. weight: math.unit(75, "lb"),
  20056. name: "Back",
  20057. image: {
  20058. source: "./media/characters/aronai-sieyes/back.svg",
  20059. extra: 1526/1464,
  20060. bottom: 51/1577
  20061. }
  20062. },
  20063. dressed: {
  20064. height: math.unit(6 + 1 / 12, "feet"),
  20065. weight: math.unit(75, "lb"),
  20066. name: "Dressed",
  20067. image: {
  20068. source: "./media/characters/aronai-sieyes/dressed.svg",
  20069. extra: 1559/1483,
  20070. bottom: 39/1598
  20071. }
  20072. },
  20073. slit: {
  20074. height: math.unit(1.3, "feet"),
  20075. name: "Slit",
  20076. image: {
  20077. source: "./media/characters/aronai-sieyes/slit.svg"
  20078. }
  20079. },
  20080. slitSpread: {
  20081. height: math.unit(0.9, "feet"),
  20082. name: "Slit (Spread)",
  20083. image: {
  20084. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20085. }
  20086. },
  20087. rump: {
  20088. height: math.unit(1.3, "feet"),
  20089. name: "Rump",
  20090. image: {
  20091. source: "./media/characters/aronai-sieyes/rump.svg"
  20092. }
  20093. },
  20094. maw: {
  20095. height: math.unit(1.25, "feet"),
  20096. name: "Maw",
  20097. image: {
  20098. source: "./media/characters/aronai-sieyes/maw.svg"
  20099. }
  20100. },
  20101. feral: {
  20102. height: math.unit(18, "feet"),
  20103. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20104. name: "Feral",
  20105. image: {
  20106. source: "./media/characters/aronai-sieyes/feral.svg",
  20107. extra: 1530 / 1240,
  20108. bottom: 0.035
  20109. }
  20110. },
  20111. },
  20112. [
  20113. {
  20114. name: "Micro",
  20115. height: math.unit(2, "inches")
  20116. },
  20117. {
  20118. name: "Normal",
  20119. height: math.unit(6 + 1 / 12, "feet"),
  20120. default: true
  20121. }
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20126. {
  20127. front: {
  20128. height: math.unit(12, "feet"),
  20129. weight: math.unit(410, "kg"),
  20130. name: "Front",
  20131. image: {
  20132. source: "./media/characters/xuna/front.svg",
  20133. extra: 2184 / 1980
  20134. }
  20135. },
  20136. side: {
  20137. height: math.unit(12, "feet"),
  20138. weight: math.unit(410, "kg"),
  20139. name: "Side",
  20140. image: {
  20141. source: "./media/characters/xuna/side.svg",
  20142. extra: 2184 / 1980
  20143. }
  20144. },
  20145. back: {
  20146. height: math.unit(12, "feet"),
  20147. weight: math.unit(410, "kg"),
  20148. name: "Back",
  20149. image: {
  20150. source: "./media/characters/xuna/back.svg",
  20151. extra: 2184 / 1980
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Nano glow",
  20158. height: math.unit(10, "nm")
  20159. },
  20160. {
  20161. name: "Micro floof",
  20162. height: math.unit(0.3, "m")
  20163. },
  20164. {
  20165. name: "Huggable softy boi",
  20166. height: math.unit(3.6576, "m"),
  20167. default: true
  20168. },
  20169. {
  20170. name: "Admirable floof",
  20171. height: math.unit(80, "meters")
  20172. },
  20173. {
  20174. name: "Gentle macro",
  20175. height: math.unit(300, "meters")
  20176. },
  20177. {
  20178. name: "Very careful floof",
  20179. height: math.unit(3200, "meters")
  20180. },
  20181. {
  20182. name: "The mega floof",
  20183. height: math.unit(36000, "meters")
  20184. },
  20185. {
  20186. name: "Giga-fur-Wicker",
  20187. height: math.unit(4800000, "meters")
  20188. },
  20189. {
  20190. name: "Licky world",
  20191. height: math.unit(20000000, "meters")
  20192. },
  20193. {
  20194. name: "Floofy cyan sun",
  20195. height: math.unit(1500000000, "meters")
  20196. },
  20197. {
  20198. name: "Milky Wicker",
  20199. height: math.unit(1000000000000000000000, "meters")
  20200. },
  20201. {
  20202. name: "The observing Wicker",
  20203. height: math.unit(999999999999999999999999999, "meters")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(5 + 9 / 12, "feet"),
  20212. weight: math.unit(150, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/arokha-sieyes/front.svg",
  20216. extra: 1425 / 1284,
  20217. bottom: 0.05
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(5 + 9 / 12, "feet")
  20225. },
  20226. {
  20227. name: "Macro",
  20228. height: math.unit(30, "meters"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(6, "feet"),
  20238. weight: math.unit(180, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/arokh-sieyes/front.svg",
  20242. extra: 1830 / 1769,
  20243. bottom: 0.01
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(6, "feet")
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(30, "meters"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20261. {
  20262. side: {
  20263. height: math.unit(13 + 1 / 12, "feet"),
  20264. weight: math.unit(8.5, "tonnes"),
  20265. name: "Side",
  20266. image: {
  20267. source: "./media/characters/goldeneye/side.svg",
  20268. extra: 1182 / 778,
  20269. bottom: 0.067
  20270. }
  20271. },
  20272. paw: {
  20273. height: math.unit(3.4, "feet"),
  20274. name: "Paw",
  20275. image: {
  20276. source: "./media/characters/goldeneye/paw.svg"
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(13 + 1 / 12, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20290. {
  20291. front: {
  20292. height: math.unit(6 + 1 / 12, "feet"),
  20293. weight: math.unit(210, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/leonardo-lycheborne/front.svg",
  20297. extra: 776/723,
  20298. bottom: 34/810
  20299. }
  20300. },
  20301. side: {
  20302. height: math.unit(6 + 1 / 12, "feet"),
  20303. weight: math.unit(210, "lb"),
  20304. name: "Side",
  20305. image: {
  20306. source: "./media/characters/leonardo-lycheborne/side.svg",
  20307. extra: 780/728,
  20308. bottom: 12/792
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(6 + 1 / 12, "feet"),
  20313. weight: math.unit(210, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/leonardo-lycheborne/back.svg",
  20317. extra: 775/721,
  20318. bottom: 17/792
  20319. }
  20320. },
  20321. hand: {
  20322. height: math.unit(1.08, "feet"),
  20323. name: "Hand",
  20324. image: {
  20325. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20326. }
  20327. },
  20328. foot: {
  20329. height: math.unit(1.32, "feet"),
  20330. name: "Foot",
  20331. image: {
  20332. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20333. }
  20334. },
  20335. maw: {
  20336. height: math.unit(1, "feet"),
  20337. name: "Maw",
  20338. image: {
  20339. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20340. }
  20341. },
  20342. were: {
  20343. height: math.unit(20, "feet"),
  20344. weight: math.unit(7800, "lb"),
  20345. name: "Were",
  20346. image: {
  20347. source: "./media/characters/leonardo-lycheborne/were.svg",
  20348. extra: 1224/1165,
  20349. bottom: 72/1296
  20350. }
  20351. },
  20352. feral: {
  20353. height: math.unit(7.5, "feet"),
  20354. weight: math.unit(600, "lb"),
  20355. name: "Feral",
  20356. image: {
  20357. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20358. extra: 797/702,
  20359. bottom: 139/936
  20360. }
  20361. },
  20362. taur: {
  20363. height: math.unit(11, "feet"),
  20364. weight: math.unit(3300, "lb"),
  20365. name: "Taur",
  20366. image: {
  20367. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20368. extra: 1271/1197,
  20369. bottom: 47/1318
  20370. }
  20371. },
  20372. barghest: {
  20373. height: math.unit(11, "feet"),
  20374. weight: math.unit(1300, "lb"),
  20375. name: "Barghest",
  20376. image: {
  20377. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20378. extra: 1291/1204,
  20379. bottom: 37/1328
  20380. }
  20381. },
  20382. dick: {
  20383. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20384. name: "Dick",
  20385. image: {
  20386. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20387. }
  20388. },
  20389. dickWere: {
  20390. height: math.unit((20) / 3.8, "feet"),
  20391. name: "Dick (Were)",
  20392. image: {
  20393. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(6 + 1 / 12, "feet"),
  20401. default: true
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20407. {
  20408. front: {
  20409. height: math.unit(10, "feet"),
  20410. weight: math.unit(350, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/jet/front.svg",
  20414. extra: 2050 / 1980,
  20415. bottom: 0.013
  20416. }
  20417. },
  20418. back: {
  20419. height: math.unit(10, "feet"),
  20420. weight: math.unit(350, "lb"),
  20421. name: "Back",
  20422. image: {
  20423. source: "./media/characters/jet/back.svg",
  20424. extra: 2050 / 1980,
  20425. bottom: 0.013
  20426. }
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Micro",
  20432. height: math.unit(6, "inches")
  20433. },
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(10, "feet"),
  20437. default: true
  20438. },
  20439. {
  20440. name: "Macro",
  20441. height: math.unit(100, "feet")
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(15, "feet"),
  20450. weight: math.unit(2800, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/tanarath/front.svg",
  20454. extra: 2392 / 2220,
  20455. bottom: 0.03
  20456. }
  20457. },
  20458. back: {
  20459. height: math.unit(15, "feet"),
  20460. weight: math.unit(2800, "lb"),
  20461. name: "Back",
  20462. image: {
  20463. source: "./media/characters/tanarath/back.svg",
  20464. extra: 2392 / 2220,
  20465. bottom: 0.03
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(15, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(7 + 1 / 12, "feet"),
  20482. weight: math.unit(175, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/patty-cattybatty/front.svg",
  20486. extra: 908 / 874,
  20487. bottom: 0.025
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(1, "inch")
  20495. },
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(7 + 1 / 12, "feet")
  20499. },
  20500. {
  20501. name: "Mini Macro",
  20502. height: math.unit(155, "feet")
  20503. },
  20504. {
  20505. name: "Macro",
  20506. height: math.unit(1077, "feet")
  20507. },
  20508. {
  20509. name: "Mega Macro",
  20510. height: math.unit(47650, "feet"),
  20511. default: true
  20512. },
  20513. {
  20514. name: "Giga Macro",
  20515. height: math.unit(440, "miles")
  20516. },
  20517. {
  20518. name: "Tera Macro",
  20519. height: math.unit(8700, "miles")
  20520. },
  20521. {
  20522. name: "Planetary Macro",
  20523. height: math.unit(32700, "miles")
  20524. },
  20525. {
  20526. name: "Solar Macro",
  20527. height: math.unit(550000, "miles")
  20528. },
  20529. {
  20530. name: "Celestial Macro",
  20531. height: math.unit(2.5, "AU")
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(4 + 5 / 12, "feet"),
  20540. weight: math.unit(90, "lb"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/cappu/front.svg",
  20544. extra: 1247 / 1152,
  20545. bottom: 0.012
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(4 + 5 / 12, "feet"),
  20553. default: true
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20559. {
  20560. frontDressed: {
  20561. height: math.unit(70, "cm"),
  20562. weight: math.unit(6, "kg"),
  20563. name: "Front (Dressed)",
  20564. image: {
  20565. source: "./media/characters/sebi/front-dressed.svg",
  20566. extra: 713.5 / 686.5,
  20567. bottom: 0.003
  20568. }
  20569. },
  20570. front: {
  20571. height: math.unit(70, "cm"),
  20572. weight: math.unit(5, "kg"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/sebi/front.svg",
  20576. extra: 713.5 / 686.5,
  20577. bottom: 0.003
  20578. }
  20579. }
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(70, "cm"),
  20585. default: true
  20586. },
  20587. {
  20588. name: "Macro",
  20589. height: math.unit(8, "meters")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(6, "feet"),
  20598. weight: math.unit(150, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/typhek/front.svg",
  20602. extra: 1948 / 1929,
  20603. bottom: 0.025
  20604. }
  20605. },
  20606. side: {
  20607. height: math.unit(6, "feet"),
  20608. weight: math.unit(150, "lb"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/typhek/side.svg",
  20612. extra: 2034 / 2010,
  20613. bottom: 0.003
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(6, "feet"),
  20618. weight: math.unit(150, "lb"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/typhek/back.svg",
  20622. extra: 2005 / 1978,
  20623. bottom: 0.004
  20624. }
  20625. },
  20626. palm: {
  20627. height: math.unit(1.2, "feet"),
  20628. name: "Palm",
  20629. image: {
  20630. source: "./media/characters/typhek/palm.svg"
  20631. }
  20632. },
  20633. fist: {
  20634. height: math.unit(1.1, "feet"),
  20635. name: "Fist",
  20636. image: {
  20637. source: "./media/characters/typhek/fist.svg"
  20638. }
  20639. },
  20640. foot: {
  20641. height: math.unit(1.57, "feet"),
  20642. name: "Foot",
  20643. image: {
  20644. source: "./media/characters/typhek/foot.svg"
  20645. }
  20646. },
  20647. sole: {
  20648. height: math.unit(2.05, "feet"),
  20649. name: "Sole",
  20650. image: {
  20651. source: "./media/characters/typhek/sole.svg"
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(40, "stories"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Megamacro",
  20663. height: math.unit(1, "mile")
  20664. },
  20665. {
  20666. name: "Gigamacro",
  20667. height: math.unit(4000, "solarradii")
  20668. },
  20669. {
  20670. name: "Universal",
  20671. height: math.unit(1.1, "universes")
  20672. }
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20677. {
  20678. side: {
  20679. height: math.unit(5 + 7 / 12, "feet"),
  20680. weight: math.unit(150, "lb"),
  20681. name: "Side",
  20682. image: {
  20683. source: "./media/characters/kassy/side.svg",
  20684. extra: 1280 / 1225,
  20685. bottom: 0.002
  20686. }
  20687. },
  20688. front: {
  20689. height: math.unit(5 + 7 / 12, "feet"),
  20690. weight: math.unit(150, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/kassy/front.svg",
  20694. extra: 1280 / 1225,
  20695. bottom: 0.025
  20696. }
  20697. },
  20698. back: {
  20699. height: math.unit(5 + 7 / 12, "feet"),
  20700. weight: math.unit(150, "lb"),
  20701. name: "Back",
  20702. image: {
  20703. source: "./media/characters/kassy/back.svg",
  20704. extra: 1280 / 1225,
  20705. bottom: 0.002
  20706. }
  20707. },
  20708. foot: {
  20709. height: math.unit(1.266, "feet"),
  20710. name: "Foot",
  20711. image: {
  20712. source: "./media/characters/kassy/foot.svg"
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(5 + 7 / 12, "feet")
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(137, "feet"),
  20724. default: true
  20725. },
  20726. {
  20727. name: "Megamacro",
  20728. height: math.unit(1, "mile")
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(6 + 1 / 12, "feet"),
  20737. weight: math.unit(200, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/neil/front.svg",
  20741. extra: 1326 / 1250,
  20742. bottom: 0.023
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(6 + 1 / 12, "feet"),
  20750. default: true
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(200, "feet")
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(5 + 9 / 12, "feet"),
  20763. weight: math.unit(190, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/atticus/front.svg",
  20767. extra: 2934 / 2785,
  20768. bottom: 0.025
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(5 + 9 / 12, "feet"),
  20776. default: true
  20777. },
  20778. {
  20779. name: "Macro",
  20780. height: math.unit(180, "feet")
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20786. {
  20787. side: {
  20788. height: math.unit(9, "feet"),
  20789. weight: math.unit(650, "lb"),
  20790. name: "Side",
  20791. image: {
  20792. source: "./media/characters/milo/side.svg",
  20793. extra: 2644 / 2310,
  20794. bottom: 0.032
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(9, "feet"),
  20802. default: true
  20803. },
  20804. {
  20805. name: "Macro",
  20806. height: math.unit(300, "feet")
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20812. {
  20813. side: {
  20814. height: math.unit(8, "meters"),
  20815. weight: math.unit(90000, "kg"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/ijzer/side.svg",
  20819. extra: 2756 / 1600,
  20820. bottom: 0.01
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Small",
  20827. height: math.unit(3, "meters")
  20828. },
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(8, "meters"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Normal+",
  20836. height: math.unit(10, "meters")
  20837. },
  20838. {
  20839. name: "Bigger",
  20840. height: math.unit(24, "meters")
  20841. },
  20842. {
  20843. name: "Huge",
  20844. height: math.unit(80, "meters")
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(6 + 2 / 12, "feet"),
  20853. weight: math.unit(153, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/luca-cervicum/front.svg",
  20857. extra: 370 / 327,
  20858. bottom: 0.015
  20859. }
  20860. },
  20861. back: {
  20862. height: math.unit(6 + 2 / 12, "feet"),
  20863. weight: math.unit(153, "lb"),
  20864. name: "Back",
  20865. image: {
  20866. source: "./media/characters/luca-cervicum/back.svg",
  20867. extra: 367 / 333,
  20868. bottom: 0.005
  20869. }
  20870. },
  20871. frontGear: {
  20872. height: math.unit(6 + 2 / 12, "feet"),
  20873. weight: math.unit(173, "lb"),
  20874. name: "Front (Gear)",
  20875. image: {
  20876. source: "./media/characters/luca-cervicum/front-gear.svg",
  20877. extra: 377 / 333,
  20878. bottom: 0.006
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(6 + 2 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(6 + 1 / 12, "feet"),
  20895. weight: math.unit(304, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/oliver/front.svg",
  20899. extra: 157 / 143,
  20900. bottom: 0.08
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(6 + 1 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5 + 7 / 12, "feet"),
  20917. weight: math.unit(140, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/shane/front.svg",
  20921. extra: 304 / 289,
  20922. bottom: 0.005
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(5 + 7 / 12, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(5 + 9 / 12, "feet"),
  20939. weight: math.unit(178, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/shin/front.svg",
  20943. extra: 159 / 151,
  20944. bottom: 0.015
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(5 + 9 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(5 + 10 / 12, "feet"),
  20961. weight: math.unit(168, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/xerxes/front.svg",
  20965. extra: 282 / 260,
  20966. bottom: 0.045
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(5 + 10 / 12, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(6 + 7 / 12, "feet"),
  20983. weight: math.unit(208, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/chaska/front.svg",
  20987. extra: 332 / 319,
  20988. bottom: 0.015
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(6 + 7 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(5 + 8 / 12, "feet"),
  21005. weight: math.unit(208, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/enuk/front.svg",
  21009. extra: 437 / 406,
  21010. bottom: 0.02
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(5 + 8 / 12, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(5 + 10 / 12, "feet"),
  21027. weight: math.unit(252, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/bruun/front.svg",
  21031. extra: 197 / 187,
  21032. bottom: 0.012
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(5 + 10 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(6 + 10 / 12, "feet"),
  21049. weight: math.unit(255, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/alexeev/front.svg",
  21053. extra: 213 / 200,
  21054. bottom: 0.05
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(6 + 10 / 12, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(2 + 8 / 12, "feet"),
  21071. weight: math.unit(22, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/evelyn/front.svg",
  21075. extra: 208 / 180
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(2 + 8 / 12, "feet"),
  21083. default: true
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(5 + 9 / 12, "feet"),
  21092. weight: math.unit(139, "lb"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/inca/front.svg",
  21096. extra: 294 / 291,
  21097. bottom: 0.03
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(5 + 9 / 12, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(6 + 3 / 12, "feet"),
  21114. weight: math.unit(185, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/mera/front.svg",
  21118. extra: 291 / 277,
  21119. bottom: 0.03
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(6 + 3 / 12, "feet"),
  21127. default: true
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(6 + 7 / 12, "feet"),
  21136. weight: math.unit(160, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/ceres/front.svg",
  21140. extra: 1023 / 950,
  21141. bottom: 0.027
  21142. }
  21143. },
  21144. back: {
  21145. height: math.unit(6 + 7 / 12, "feet"),
  21146. weight: math.unit(160, "lb"),
  21147. name: "Back",
  21148. image: {
  21149. source: "./media/characters/ceres/back.svg",
  21150. extra: 1023 / 950
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(6 + 7 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21164. {
  21165. front: {
  21166. height: math.unit(5 + 10 / 12, "feet"),
  21167. weight: math.unit(150, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/kris/front.svg",
  21171. extra: 885 / 803,
  21172. bottom: 0.03
  21173. }
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Normal",
  21179. height: math.unit(5 + 10 / 12, "feet"),
  21180. default: true
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(7, "feet"),
  21189. weight: math.unit(120, "kg"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/taluthus/front.svg",
  21193. extra: 903 / 833,
  21194. bottom: 0.015
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(7, "feet"),
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(300, "feet")
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21212. {
  21213. front: {
  21214. height: math.unit(5 + 9 / 12, "feet"),
  21215. weight: math.unit(145, "lb"),
  21216. name: "Front",
  21217. image: {
  21218. source: "./media/characters/dawn/front.svg",
  21219. extra: 2094 / 2016,
  21220. bottom: 0.025
  21221. }
  21222. },
  21223. back: {
  21224. height: math.unit(5 + 9 / 12, "feet"),
  21225. weight: math.unit(160, "lb"),
  21226. name: "Back",
  21227. image: {
  21228. source: "./media/characters/dawn/back.svg",
  21229. extra: 2112 / 2080,
  21230. bottom: 0.005
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(6 + 7 / 12, "feet"),
  21238. default: true
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21244. {
  21245. anthro: {
  21246. height: math.unit(8 + 3 / 12, "feet"),
  21247. weight: math.unit(450, "lb"),
  21248. name: "Anthro",
  21249. image: {
  21250. source: "./media/characters/arador/anthro.svg",
  21251. extra: 1835 / 1718,
  21252. bottom: 0.025
  21253. }
  21254. },
  21255. feral: {
  21256. height: math.unit(4, "feet"),
  21257. weight: math.unit(200, "lb"),
  21258. name: "Feral",
  21259. image: {
  21260. source: "./media/characters/arador/feral.svg",
  21261. extra: 1683 / 1514,
  21262. bottom: 0.07
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(8 + 3 / 12, "feet")
  21270. },
  21271. {
  21272. name: "Macro",
  21273. height: math.unit(82.5, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(5 + 10 / 12, "feet"),
  21283. weight: math.unit(125, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/dharsi/front.svg",
  21287. extra: 716 / 630,
  21288. bottom: 0.035
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Nano",
  21295. height: math.unit(100, "nm")
  21296. },
  21297. {
  21298. name: "Micro",
  21299. height: math.unit(2, "inches")
  21300. },
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(5 + 10 / 12, "feet"),
  21304. default: true
  21305. },
  21306. {
  21307. name: "Macro",
  21308. height: math.unit(1000, "feet")
  21309. },
  21310. {
  21311. name: "Megamacro",
  21312. height: math.unit(10, "miles")
  21313. },
  21314. {
  21315. name: "Gigamacro",
  21316. height: math.unit(3000, "miles")
  21317. },
  21318. {
  21319. name: "Teramacro",
  21320. height: math.unit(500000, "miles")
  21321. },
  21322. {
  21323. name: "Teramacro+",
  21324. height: math.unit(30, "galaxies")
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(6, "feet"),
  21333. weight: math.unit(150, "lb"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/deathy/front.svg",
  21337. extra: 1552 / 1463,
  21338. bottom: 0.025
  21339. }
  21340. },
  21341. side: {
  21342. height: math.unit(6, "feet"),
  21343. weight: math.unit(150, "lb"),
  21344. name: "Side",
  21345. image: {
  21346. source: "./media/characters/deathy/side.svg",
  21347. extra: 1604 / 1455,
  21348. bottom: 0.025
  21349. }
  21350. },
  21351. back: {
  21352. height: math.unit(6, "feet"),
  21353. weight: math.unit(150, "lb"),
  21354. name: "Back",
  21355. image: {
  21356. source: "./media/characters/deathy/back.svg",
  21357. extra: 1580 / 1463,
  21358. bottom: 0.005
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Micro",
  21365. height: math.unit(5, "millimeters")
  21366. },
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(6 + 5 / 12, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21376. {
  21377. front: {
  21378. height: math.unit(16, "feet"),
  21379. weight: math.unit(4000, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/juniper/front.svg",
  21383. bottom: 0.04
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(16, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(6, "feet"),
  21400. weight: math.unit(150, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/hipster/front.svg",
  21404. extra: 1312 / 1209,
  21405. bottom: 0.025
  21406. }
  21407. },
  21408. back: {
  21409. height: math.unit(6, "feet"),
  21410. weight: math.unit(150, "lb"),
  21411. name: "Back",
  21412. image: {
  21413. source: "./media/characters/hipster/back.svg",
  21414. extra: 1281 / 1196,
  21415. bottom: 0.01
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Micro",
  21422. height: math.unit(1, "mm")
  21423. },
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(4, "inches"),
  21427. default: true
  21428. },
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(500, "feet")
  21432. },
  21433. {
  21434. name: "Megamacro",
  21435. height: math.unit(1000, "miles")
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(6, "feet"),
  21444. weight: math.unit(150, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/tendirmuldr/front.svg",
  21448. extra: 1878 / 1772,
  21449. bottom: 0.015
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Megamacro",
  21456. height: math.unit(1500, "miles"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21463. {
  21464. front: {
  21465. height: math.unit(14, "feet"),
  21466. weight: math.unit(12000, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/mort/front.svg",
  21470. extra: 365 / 318,
  21471. bottom: 0.01
  21472. }
  21473. },
  21474. side: {
  21475. height: math.unit(14, "feet"),
  21476. weight: math.unit(12000, "lb"),
  21477. name: "Side",
  21478. image: {
  21479. source: "./media/characters/mort/side.svg",
  21480. extra: 365 / 318,
  21481. bottom: 0.052
  21482. },
  21483. default: true
  21484. },
  21485. back: {
  21486. height: math.unit(14, "feet"),
  21487. weight: math.unit(12000, "lb"),
  21488. name: "Back",
  21489. image: {
  21490. source: "./media/characters/mort/back.svg",
  21491. extra: 371 / 332,
  21492. bottom: 0.18
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(14, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21506. {
  21507. front: {
  21508. height: math.unit(8, "feet"),
  21509. weight: math.unit(1, "ton"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/lycoa/front.svg",
  21513. extra: 1836/1728,
  21514. bottom: 81/1917
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(8, "feet"),
  21519. weight: math.unit(1, "ton"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/lycoa/back.svg",
  21523. extra: 1785/1720,
  21524. bottom: 91/1876
  21525. }
  21526. },
  21527. head: {
  21528. height: math.unit(1.6243, "feet"),
  21529. name: "Head",
  21530. image: {
  21531. source: "./media/characters/lycoa/head.svg",
  21532. extra: 1011/782,
  21533. bottom: 0/1011
  21534. }
  21535. },
  21536. tailmaw: {
  21537. height: math.unit(1.9, "feet"),
  21538. name: "Tailmaw",
  21539. image: {
  21540. source: "./media/characters/lycoa/tailmaw.svg"
  21541. }
  21542. },
  21543. tentacles: {
  21544. height: math.unit(2.1, "feet"),
  21545. name: "Tentacles",
  21546. image: {
  21547. source: "./media/characters/lycoa/tentacles.svg"
  21548. }
  21549. },
  21550. dick: {
  21551. height: math.unit(1.73, "feet"),
  21552. name: "Dick",
  21553. image: {
  21554. source: "./media/characters/lycoa/dick.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(8, "feet"),
  21562. default: true
  21563. },
  21564. {
  21565. name: "Macro",
  21566. height: math.unit(30, "feet")
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21572. {
  21573. front: {
  21574. height: math.unit(4 + 2 / 12, "feet"),
  21575. weight: math.unit(70, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/naldara/front.svg",
  21579. extra: 1664/1387,
  21580. bottom: 81/1745
  21581. },
  21582. form: "anthro",
  21583. default: true
  21584. },
  21585. naga: {
  21586. height: math.unit(20, "feet"),
  21587. weight: math.unit(15000, "kg"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/naldara/naga.svg",
  21591. extra: 1590/1396,
  21592. bottom: 285/1875
  21593. },
  21594. form: "naga",
  21595. default: true
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(4 + 2 / 12, "feet"),
  21602. form: "anthro",
  21603. default: true
  21604. },
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(20, "feet"),
  21608. form: "naga",
  21609. default: true
  21610. },
  21611. ],
  21612. {
  21613. "anthro": {
  21614. name: "Anthro",
  21615. default: true
  21616. },
  21617. "naga": {
  21618. name: "Naga"
  21619. }
  21620. }
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(13 + 7 / 12, "feet"),
  21627. weight: math.unit(1500, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/briar/front.svg",
  21631. extra: 1223/1157,
  21632. bottom: 123/1346
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(13 + 7 / 12, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21646. {
  21647. side: {
  21648. height: math.unit(16, "feet"),
  21649. weight: math.unit(500, "lb"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/vanguard/side.svg",
  21653. extra: 1022/914,
  21654. bottom: 30/1052
  21655. }
  21656. },
  21657. sideAlt: {
  21658. height: math.unit(10, "feet"),
  21659. weight: math.unit(500, "lb"),
  21660. name: "Side (Alt)",
  21661. image: {
  21662. source: "./media/characters/vanguard/side-alt.svg",
  21663. extra: 502 / 425,
  21664. bottom: 0.087
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(17.71, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(7.5, "feet"),
  21681. weight: math.unit(2, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/artemis/work-safe-front.svg",
  21685. extra: 1192 / 1075,
  21686. bottom: 0.07
  21687. },
  21688. form: "work-safe",
  21689. default: true
  21690. },
  21691. frontNsfw: {
  21692. height: math.unit(7.5, "feet"),
  21693. weight: math.unit(2, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/artemis/calibrating-front.svg",
  21697. extra: 1192 / 1075,
  21698. bottom: 0.07
  21699. },
  21700. form: "calibrating",
  21701. default: true
  21702. },
  21703. frontNsfwer: {
  21704. height: math.unit(7.5, "feet"),
  21705. weight: math.unit(2, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/artemis/oversize-load-front.svg",
  21709. extra: 1192 / 1075,
  21710. bottom: 0.07
  21711. },
  21712. form: "oversize-load",
  21713. default: true
  21714. },
  21715. side: {
  21716. height: math.unit(7.5, "feet"),
  21717. weight: math.unit(2, "lb"),
  21718. name: "Side",
  21719. image: {
  21720. source: "./media/characters/artemis/work-safe-side.svg",
  21721. extra: 1192 / 1075,
  21722. bottom: 0.07
  21723. },
  21724. form: "work-safe"
  21725. },
  21726. sideNsfw: {
  21727. height: math.unit(7.5, "feet"),
  21728. weight: math.unit(2, "lb"),
  21729. name: "Side",
  21730. image: {
  21731. source: "./media/characters/artemis/calibrating-side.svg",
  21732. extra: 1192 / 1075,
  21733. bottom: 0.07
  21734. },
  21735. form: "calibrating"
  21736. },
  21737. sideNsfwer: {
  21738. height: math.unit(7.5, "feet"),
  21739. weight: math.unit(2, "lb"),
  21740. name: "Side",
  21741. image: {
  21742. source: "./media/characters/artemis/oversize-load-side.svg",
  21743. extra: 1192 / 1075,
  21744. bottom: 0.07
  21745. },
  21746. form: "oversize-load"
  21747. },
  21748. maw: {
  21749. height: math.unit(1.1, "feet"),
  21750. name: "Maw",
  21751. image: {
  21752. source: "./media/characters/artemis/maw.svg"
  21753. },
  21754. form: "work-safe"
  21755. },
  21756. stomach: {
  21757. height: math.unit(0.95, "feet"),
  21758. name: "Stomach",
  21759. image: {
  21760. source: "./media/characters/artemis/stomach.svg"
  21761. },
  21762. form: "work-safe"
  21763. },
  21764. dickCanine: {
  21765. height: math.unit(1, "feet"),
  21766. name: "Dick (Canine)",
  21767. image: {
  21768. source: "./media/characters/artemis/dick-canine.svg"
  21769. },
  21770. form: "calibrating"
  21771. },
  21772. dickEquine: {
  21773. height: math.unit(0.85, "feet"),
  21774. name: "Dick (Equine)",
  21775. image: {
  21776. source: "./media/characters/artemis/dick-equine.svg"
  21777. },
  21778. form: "calibrating"
  21779. },
  21780. dickExotic: {
  21781. height: math.unit(0.85, "feet"),
  21782. name: "Dick (Exotic)",
  21783. image: {
  21784. source: "./media/characters/artemis/dick-exotic.svg"
  21785. },
  21786. form: "calibrating"
  21787. },
  21788. dickCanineBigger: {
  21789. height: math.unit(1 * 1.33, "feet"),
  21790. name: "Dick (Canine)",
  21791. image: {
  21792. source: "./media/characters/artemis/dick-canine.svg"
  21793. },
  21794. form: "oversize-load"
  21795. },
  21796. dickEquineBigger: {
  21797. height: math.unit(0.85 * 1.33, "feet"),
  21798. name: "Dick (Equine)",
  21799. image: {
  21800. source: "./media/characters/artemis/dick-equine.svg"
  21801. },
  21802. form: "oversize-load"
  21803. },
  21804. dickExoticBigger: {
  21805. height: math.unit(0.85 * 1.33, "feet"),
  21806. name: "Dick (Exotic)",
  21807. image: {
  21808. source: "./media/characters/artemis/dick-exotic.svg"
  21809. },
  21810. form: "oversize-load"
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(7.5, "feet"),
  21817. form: "work-safe",
  21818. default: true
  21819. },
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(7.5, "feet"),
  21823. form: "calibrating",
  21824. default: true
  21825. },
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(7.5, "feet"),
  21829. form: "oversize-load",
  21830. default: true
  21831. },
  21832. {
  21833. name: "Enlarged",
  21834. height: math.unit(12, "feet"),
  21835. form: "work-safe",
  21836. },
  21837. {
  21838. name: "Enlarged",
  21839. height: math.unit(12, "feet"),
  21840. form: "calibrating",
  21841. },
  21842. {
  21843. name: "Enlarged",
  21844. height: math.unit(12, "feet"),
  21845. form: "oversize-load",
  21846. },
  21847. ],
  21848. {
  21849. "work-safe": {
  21850. name: "Work-Safe",
  21851. default: true
  21852. },
  21853. "calibrating": {
  21854. name: "Calibrating"
  21855. },
  21856. "oversize-load": {
  21857. name: "Oversize Load"
  21858. }
  21859. }
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(5 + 3 / 12, "feet"),
  21866. weight: math.unit(160, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/kira/front.svg",
  21870. extra: 906 / 786,
  21871. bottom: 0.01
  21872. }
  21873. },
  21874. back: {
  21875. height: math.unit(5 + 3 / 12, "feet"),
  21876. weight: math.unit(160, "lb"),
  21877. name: "Back",
  21878. image: {
  21879. source: "./media/characters/kira/back.svg",
  21880. extra: 882 / 757,
  21881. bottom: 0.005
  21882. }
  21883. },
  21884. frontDressed: {
  21885. height: math.unit(5 + 3 / 12, "feet"),
  21886. weight: math.unit(160, "lb"),
  21887. name: "Front (Dressed)",
  21888. image: {
  21889. source: "./media/characters/kira/front-dressed.svg",
  21890. extra: 906 / 786,
  21891. bottom: 0.01
  21892. }
  21893. },
  21894. beans: {
  21895. height: math.unit(0.92, "feet"),
  21896. name: "Beans",
  21897. image: {
  21898. source: "./media/characters/kira/beans.svg"
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(5 + 3 / 12, "feet"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(5 + 4 / 12, "feet"),
  21915. weight: math.unit(145, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/scramble/front.svg",
  21919. extra: 763 / 727,
  21920. bottom: 0.05
  21921. }
  21922. },
  21923. back: {
  21924. height: math.unit(5 + 4 / 12, "feet"),
  21925. weight: math.unit(145, "lb"),
  21926. name: "Back",
  21927. image: {
  21928. source: "./media/characters/scramble/back.svg",
  21929. extra: 826 / 737,
  21930. bottom: 0.002
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(5 + 4 / 12, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21944. {
  21945. side: {
  21946. height: math.unit(6 + 2 / 12, "feet"),
  21947. weight: math.unit(190, "lb"),
  21948. name: "Side",
  21949. image: {
  21950. source: "./media/characters/biscuit/side.svg",
  21951. extra: 858 / 791,
  21952. bottom: 0.044
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(6 + 2 / 12, "feet"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(5 + 2 / 12, "feet"),
  21969. weight: math.unit(120, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/poffin/front.svg",
  21973. extra: 786 / 680,
  21974. bottom: 0.005
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(5 + 2 / 12, "feet"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(6 + 3 / 12, "feet"),
  21991. weight: math.unit(519, "lb"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/dhari/front.svg",
  21995. extra: 1048 / 946,
  21996. bottom: 0.015
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(6 + 3 / 12, "feet"),
  22001. weight: math.unit(519, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/dhari/back.svg",
  22005. extra: 1048 / 931,
  22006. bottom: 0.005
  22007. }
  22008. },
  22009. frontDressed: {
  22010. height: math.unit(6 + 3 / 12, "feet"),
  22011. weight: math.unit(519, "lb"),
  22012. name: "Front (Dressed)",
  22013. image: {
  22014. source: "./media/characters/dhari/front-dressed.svg",
  22015. extra: 1713 / 1546,
  22016. bottom: 0.02
  22017. }
  22018. },
  22019. backDressed: {
  22020. height: math.unit(6 + 3 / 12, "feet"),
  22021. weight: math.unit(519, "lb"),
  22022. name: "Back (Dressed)",
  22023. image: {
  22024. source: "./media/characters/dhari/back-dressed.svg",
  22025. extra: 1699 / 1537,
  22026. bottom: 0.01
  22027. }
  22028. },
  22029. maw: {
  22030. height: math.unit(0.95, "feet"),
  22031. name: "Maw",
  22032. image: {
  22033. source: "./media/characters/dhari/maw.svg"
  22034. }
  22035. },
  22036. wereFront: {
  22037. height: math.unit(12 + 8 / 12, "feet"),
  22038. weight: math.unit(4000, "lb"),
  22039. name: "Front (Were)",
  22040. image: {
  22041. source: "./media/characters/dhari/were-front.svg",
  22042. extra: 1065 / 969,
  22043. bottom: 0.015
  22044. }
  22045. },
  22046. wereBack: {
  22047. height: math.unit(12 + 8 / 12, "feet"),
  22048. weight: math.unit(4000, "lb"),
  22049. name: "Back (Were)",
  22050. image: {
  22051. source: "./media/characters/dhari/were-back.svg",
  22052. extra: 1065 / 969,
  22053. bottom: 0.012
  22054. }
  22055. },
  22056. wereMaw: {
  22057. height: math.unit(0.625, "meters"),
  22058. name: "Maw (Were)",
  22059. image: {
  22060. source: "./media/characters/dhari/were-maw.svg"
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(6 + 3 / 12, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22074. {
  22075. anthro: {
  22076. height: math.unit(5 + 7 / 12, "feet"),
  22077. weight: math.unit(175, "lb"),
  22078. name: "Anthro",
  22079. image: {
  22080. source: "./media/characters/rena-dyne/anthro.svg",
  22081. extra: 1849 / 1785,
  22082. bottom: 0.005
  22083. }
  22084. },
  22085. taur: {
  22086. height: math.unit(15 + 6 / 12, "feet"),
  22087. weight: math.unit(8000, "lb"),
  22088. name: "Taur",
  22089. image: {
  22090. source: "./media/characters/rena-dyne/taur.svg",
  22091. extra: 2315 / 2234,
  22092. bottom: 0.033
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Normal",
  22099. height: math.unit(5 + 7 / 12, "feet"),
  22100. default: true
  22101. },
  22102. ]
  22103. ))
  22104. characterMakers.push(() => makeCharacter(
  22105. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22106. {
  22107. front: {
  22108. height: math.unit(8, "feet"),
  22109. weight: math.unit(600, "lb"),
  22110. name: "Front",
  22111. image: {
  22112. source: "./media/characters/weremeep/front.svg",
  22113. extra: 970/849,
  22114. bottom: 7/977
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Normal",
  22121. height: math.unit(8, "feet"),
  22122. default: true
  22123. },
  22124. {
  22125. name: "Lorg",
  22126. height: math.unit(12, "feet")
  22127. },
  22128. {
  22129. name: "Oh Lawd She Comin'",
  22130. height: math.unit(20, "feet")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22136. {
  22137. front: {
  22138. height: math.unit(4, "feet"),
  22139. weight: math.unit(90, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/reza/front.svg",
  22143. extra: 1183 / 1111,
  22144. bottom: 0.017
  22145. }
  22146. },
  22147. back: {
  22148. height: math.unit(4, "feet"),
  22149. weight: math.unit(90, "lb"),
  22150. name: "Back",
  22151. image: {
  22152. source: "./media/characters/reza/back.svg",
  22153. extra: 1183 / 1111,
  22154. bottom: 0.01
  22155. }
  22156. },
  22157. drake: {
  22158. height: math.unit(30, "feet"),
  22159. weight: math.unit(246960, "lb"),
  22160. name: "Drake",
  22161. image: {
  22162. source: "./media/characters/reza/drake.svg",
  22163. extra: 2350 / 2024,
  22164. bottom: 60.7 / 2403
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(4, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22178. {
  22179. side: {
  22180. height: math.unit(15, "feet"),
  22181. weight: math.unit(14, "tons"),
  22182. name: "Side",
  22183. image: {
  22184. source: "./media/characters/athea/side.svg",
  22185. extra: 960 / 540,
  22186. bottom: 0.003
  22187. }
  22188. },
  22189. sitting: {
  22190. height: math.unit(6 * 2.85, "feet"),
  22191. weight: math.unit(14, "tons"),
  22192. name: "Sitting",
  22193. image: {
  22194. source: "./media/characters/athea/sitting.svg",
  22195. extra: 621 / 581,
  22196. bottom: 0.075
  22197. }
  22198. },
  22199. maw: {
  22200. height: math.unit(7.59498031496063, "feet"),
  22201. name: "Maw",
  22202. image: {
  22203. source: "./media/characters/athea/maw.svg"
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Lap Cat",
  22210. height: math.unit(2.5, "feet")
  22211. },
  22212. {
  22213. name: "Minimacro",
  22214. height: math.unit(15, "feet"),
  22215. default: true
  22216. },
  22217. {
  22218. name: "Macro",
  22219. height: math.unit(120, "feet")
  22220. },
  22221. {
  22222. name: "Macro+",
  22223. height: math.unit(640, "feet")
  22224. },
  22225. {
  22226. name: "Colossus",
  22227. height: math.unit(2.2, "miles")
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22233. {
  22234. front: {
  22235. height: math.unit(8 + 8 / 12, "feet"),
  22236. weight: math.unit(130, "kg"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/seroko/front.svg",
  22240. extra: 1385 / 1280,
  22241. bottom: 0.025
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(8 + 8 / 12, "feet"),
  22246. weight: math.unit(130, "kg"),
  22247. name: "Back",
  22248. image: {
  22249. source: "./media/characters/seroko/back.svg",
  22250. extra: 1369 / 1238,
  22251. bottom: 0.018
  22252. }
  22253. },
  22254. frontDressed: {
  22255. height: math.unit(8 + 8 / 12, "feet"),
  22256. weight: math.unit(130, "kg"),
  22257. name: "Front (Dressed)",
  22258. image: {
  22259. source: "./media/characters/seroko/front-dressed.svg",
  22260. extra: 1366 / 1275,
  22261. bottom: 0.03
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(8 + 8 / 12, "feet"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(5.5, "feet"),
  22278. weight: math.unit(160, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/quatzi/front.svg",
  22282. extra: 2346 / 2242,
  22283. bottom: 0.015
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(5.5, "feet"),
  22291. default: true
  22292. },
  22293. {
  22294. name: "Big",
  22295. height: math.unit(7.7, "feet")
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(5 + 11 / 12, "feet"),
  22304. weight: math.unit(180, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/sen/front.svg",
  22308. extra: 1321 / 1254,
  22309. bottom: 0.015
  22310. }
  22311. },
  22312. side: {
  22313. height: math.unit(5 + 11 / 12, "feet"),
  22314. weight: math.unit(180, "lb"),
  22315. name: "Side",
  22316. image: {
  22317. source: "./media/characters/sen/side.svg",
  22318. extra: 1321 / 1254,
  22319. bottom: 0.007
  22320. }
  22321. },
  22322. back: {
  22323. height: math.unit(5 + 11 / 12, "feet"),
  22324. weight: math.unit(180, "lb"),
  22325. name: "Back",
  22326. image: {
  22327. source: "./media/characters/sen/back.svg",
  22328. extra: 1321 / 1254
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(5 + 11 / 12, "feet"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(166.6, "cm"),
  22345. weight: math.unit(66.6, "kg"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/fruity/front.svg",
  22349. extra: 1510 / 1386,
  22350. bottom: 0.04
  22351. }
  22352. },
  22353. back: {
  22354. height: math.unit(166.6, "cm"),
  22355. weight: math.unit(66.6, "lb"),
  22356. name: "Back",
  22357. image: {
  22358. source: "./media/characters/fruity/back.svg",
  22359. extra: 1563 / 1435,
  22360. bottom: 0.005
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(166.6, "cm"),
  22368. default: true
  22369. },
  22370. {
  22371. name: "Demonic",
  22372. height: math.unit(166.6, "feet")
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22378. {
  22379. side: {
  22380. height: math.unit(10, "feet"),
  22381. weight: math.unit(500, "lb"),
  22382. name: "Side",
  22383. image: {
  22384. source: "./media/characters/zost/side.svg",
  22385. extra: 2870/2533,
  22386. bottom: 252/3122
  22387. }
  22388. },
  22389. mawFront: {
  22390. height: math.unit(1.08, "meters"),
  22391. name: "Maw (Front)",
  22392. image: {
  22393. source: "./media/characters/zost/maw-front.svg"
  22394. }
  22395. },
  22396. mawSide: {
  22397. height: math.unit(2.66, "feet"),
  22398. name: "Maw (Side)",
  22399. image: {
  22400. source: "./media/characters/zost/maw-side.svg"
  22401. }
  22402. },
  22403. wingspan: {
  22404. height: math.unit(7.4, "feet"),
  22405. name: "Wingspan",
  22406. image: {
  22407. source: "./media/characters/zost/wingspan.svg"
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(10, "feet"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(5 + 4 / 12, "feet"),
  22424. weight: math.unit(120, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/luci/front.svg",
  22428. extra: 1985 / 1884,
  22429. bottom: 0.04
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(5 + 4 / 12, "feet"),
  22434. weight: math.unit(120, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/luci/back.svg",
  22438. extra: 1892 / 1791,
  22439. bottom: 0.002
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Normal",
  22446. height: math.unit(5 + 4 / 12, "feet"),
  22447. default: true
  22448. },
  22449. ]
  22450. ))
  22451. characterMakers.push(() => makeCharacter(
  22452. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22453. {
  22454. front: {
  22455. height: math.unit(1500, "feet"),
  22456. weight: math.unit(3.8e6, "tons"),
  22457. name: "Front",
  22458. image: {
  22459. source: "./media/characters/2th/front.svg",
  22460. extra: 3489 / 3350,
  22461. bottom: 0.1
  22462. }
  22463. },
  22464. foot: {
  22465. height: math.unit(461, "feet"),
  22466. name: "Foot",
  22467. image: {
  22468. source: "./media/characters/2th/foot.svg"
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "\"Micro\"",
  22475. height: math.unit(15 + 7 / 12, "feet")
  22476. },
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(1500, "feet"),
  22480. default: true
  22481. },
  22482. {
  22483. name: "Macro",
  22484. height: math.unit(5000, "feet")
  22485. },
  22486. {
  22487. name: "Megamacro",
  22488. height: math.unit(15, "miles")
  22489. },
  22490. {
  22491. name: "Gigamacro",
  22492. height: math.unit(4000, "miles")
  22493. },
  22494. {
  22495. name: "Galactic",
  22496. height: math.unit(50, "AU")
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(5 + 6 / 12, "feet"),
  22505. weight: math.unit(220, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/amethyst/front.svg",
  22509. extra: 2078 / 2040,
  22510. bottom: 0.045
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(5 + 6 / 12, "feet"),
  22515. weight: math.unit(220, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/amethyst/back.svg",
  22519. extra: 2021 / 1989,
  22520. bottom: 0.02
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(5 + 6 / 12, "feet"),
  22528. default: true
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(4 + 11 / 12, "feet"),
  22537. weight: math.unit(120, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/yumi-akiyama/front.svg",
  22541. extra: 1327 / 1235,
  22542. bottom: 0.02
  22543. }
  22544. },
  22545. back: {
  22546. height: math.unit(4 + 11 / 12, "feet"),
  22547. weight: math.unit(120, "lb"),
  22548. name: "Back",
  22549. image: {
  22550. source: "./media/characters/yumi-akiyama/back.svg",
  22551. extra: 1287 / 1245,
  22552. bottom: 0.002
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Galactic",
  22559. height: math.unit(50, "galaxies"),
  22560. default: true
  22561. },
  22562. {
  22563. name: "Universal",
  22564. height: math.unit(100, "universes")
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(8, "feet"),
  22573. weight: math.unit(500, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/rifter-yrmori/front.svg",
  22577. extra: 1180 / 1125,
  22578. bottom: 0.02
  22579. }
  22580. },
  22581. back: {
  22582. height: math.unit(8, "feet"),
  22583. weight: math.unit(500, "lb"),
  22584. name: "Back",
  22585. image: {
  22586. source: "./media/characters/rifter-yrmori/back.svg",
  22587. extra: 1190 / 1145,
  22588. bottom: 0.001
  22589. }
  22590. },
  22591. wings: {
  22592. height: math.unit(7.75, "feet"),
  22593. weight: math.unit(500, "lb"),
  22594. name: "Wings",
  22595. image: {
  22596. source: "./media/characters/rifter-yrmori/wings.svg",
  22597. extra: 1357 / 1285
  22598. }
  22599. },
  22600. maw: {
  22601. height: math.unit(0.8, "feet"),
  22602. name: "Maw",
  22603. image: {
  22604. source: "./media/characters/rifter-yrmori/maw.svg"
  22605. }
  22606. },
  22607. mawfront: {
  22608. height: math.unit(1.45, "feet"),
  22609. name: "Maw (Front)",
  22610. image: {
  22611. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(8, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(42, "meters")
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22629. {
  22630. were: {
  22631. height: math.unit(25 + 6 / 12, "feet"),
  22632. weight: math.unit(10000, "lb"),
  22633. name: "Were",
  22634. image: {
  22635. source: "./media/characters/tahajin/were.svg",
  22636. extra: 801 / 770,
  22637. bottom: 0.042
  22638. }
  22639. },
  22640. aquatic: {
  22641. height: math.unit(6 + 4 / 12, "feet"),
  22642. weight: math.unit(160, "lb"),
  22643. name: "Aquatic",
  22644. image: {
  22645. source: "./media/characters/tahajin/aquatic.svg",
  22646. extra: 572 / 542,
  22647. bottom: 0.04
  22648. }
  22649. },
  22650. chow: {
  22651. height: math.unit(8 + 11 / 12, "feet"),
  22652. weight: math.unit(450, "lb"),
  22653. name: "Chow",
  22654. image: {
  22655. source: "./media/characters/tahajin/chow.svg",
  22656. extra: 660 / 640,
  22657. bottom: 0.015
  22658. }
  22659. },
  22660. demiNaga: {
  22661. height: math.unit(6 + 8 / 12, "feet"),
  22662. weight: math.unit(300, "lb"),
  22663. name: "Demi Naga",
  22664. image: {
  22665. source: "./media/characters/tahajin/demi-naga.svg",
  22666. extra: 643 / 615,
  22667. bottom: 0.1
  22668. }
  22669. },
  22670. data: {
  22671. height: math.unit(5, "inches"),
  22672. weight: math.unit(0.1, "lb"),
  22673. name: "Data",
  22674. image: {
  22675. source: "./media/characters/tahajin/data.svg"
  22676. }
  22677. },
  22678. fluu: {
  22679. height: math.unit(5 + 7 / 12, "feet"),
  22680. weight: math.unit(140, "lb"),
  22681. name: "Fluu",
  22682. image: {
  22683. source: "./media/characters/tahajin/fluu.svg",
  22684. extra: 628 / 592,
  22685. bottom: 0.02
  22686. }
  22687. },
  22688. starWarrior: {
  22689. height: math.unit(4 + 5 / 12, "feet"),
  22690. weight: math.unit(50, "lb"),
  22691. name: "Star Warrior",
  22692. image: {
  22693. source: "./media/characters/tahajin/star-warrior.svg"
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(25 + 6 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(8, "feet"),
  22710. weight: math.unit(350, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/gabira/front.svg",
  22714. extra: 1261/1154,
  22715. bottom: 51/1312
  22716. }
  22717. },
  22718. back: {
  22719. height: math.unit(8, "feet"),
  22720. weight: math.unit(350, "lb"),
  22721. name: "Back",
  22722. image: {
  22723. source: "./media/characters/gabira/back.svg",
  22724. extra: 1265/1163,
  22725. bottom: 46/1311
  22726. }
  22727. },
  22728. head: {
  22729. height: math.unit(2.85, "feet"),
  22730. name: "Head",
  22731. image: {
  22732. source: "./media/characters/gabira/head.svg"
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Normal",
  22739. height: math.unit(8, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(5 + 3 / 12, "feet"),
  22749. weight: math.unit(137, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/sasha-katraine/front.svg",
  22753. extra: 1745/1694,
  22754. bottom: 37/1782
  22755. }
  22756. },
  22757. back: {
  22758. height: math.unit(5 + 3 / 12, "feet"),
  22759. weight: math.unit(137, "lb"),
  22760. name: "Back",
  22761. image: {
  22762. source: "./media/characters/sasha-katraine/back.svg",
  22763. extra: 1776/1699,
  22764. bottom: 26/1802
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Micro",
  22771. height: math.unit(5, "inches")
  22772. },
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(5 + 3 / 12, "feet"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22782. {
  22783. side: {
  22784. height: math.unit(4, "inches"),
  22785. weight: math.unit(200, "grams"),
  22786. name: "Side",
  22787. image: {
  22788. source: "./media/characters/der/side.svg",
  22789. extra: 719 / 400,
  22790. bottom: 30.6 / 749.9187
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Micro",
  22797. height: math.unit(4, "inches"),
  22798. default: true
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22804. {
  22805. side: {
  22806. height: math.unit(30, "meters"),
  22807. weight: math.unit(700, "tonnes"),
  22808. name: "Side",
  22809. image: {
  22810. source: "./media/characters/fixerdragon/side.svg",
  22811. extra: (1293.0514 - 116.03) / 1106.86,
  22812. bottom: 116.03 / 1293.0514
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Planck",
  22819. height: math.unit(1.6e-35, "meters")
  22820. },
  22821. {
  22822. name: "Micro",
  22823. height: math.unit(0.4, "meters")
  22824. },
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(30, "meters"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Megamacro",
  22832. height: math.unit(1.2, "megameters")
  22833. },
  22834. {
  22835. name: "Teramacro",
  22836. height: math.unit(130, "terameters")
  22837. },
  22838. {
  22839. name: "Yottamacro",
  22840. height: math.unit(6200, "yottameters")
  22841. },
  22842. ]
  22843. ));
  22844. characterMakers.push(() => makeCharacter(
  22845. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22846. {
  22847. front: {
  22848. height: math.unit(8, "feet"),
  22849. weight: math.unit(250, "lb"),
  22850. name: "Front",
  22851. image: {
  22852. source: "./media/characters/kite/front.svg",
  22853. extra: 2796 / 2659,
  22854. bottom: 0.002
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(8, "feet"),
  22862. default: true
  22863. },
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(360, "feet")
  22867. },
  22868. {
  22869. name: "Megamacro",
  22870. height: math.unit(1500, "feet")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(5 + 11/12, "feet"),
  22879. weight: math.unit(170, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/poojawa-vynar/front.svg",
  22883. extra: 1735/1585,
  22884. bottom: 96/1831
  22885. }
  22886. },
  22887. back: {
  22888. height: math.unit(5 + 11/12, "feet"),
  22889. weight: math.unit(170, "lb"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/poojawa-vynar/back.svg",
  22893. extra: 1749/1607,
  22894. bottom: 28/1777
  22895. }
  22896. },
  22897. male: {
  22898. height: math.unit(5 + 11/12, "feet"),
  22899. weight: math.unit(170, "lb"),
  22900. name: "Male",
  22901. image: {
  22902. source: "./media/characters/poojawa-vynar/male.svg",
  22903. extra: 1855/1713,
  22904. bottom: 63/1918
  22905. }
  22906. },
  22907. taur: {
  22908. height: math.unit(5 + 11/12, "feet"),
  22909. weight: math.unit(170, "lb"),
  22910. name: "Taur",
  22911. image: {
  22912. source: "./media/characters/poojawa-vynar/taur.svg",
  22913. extra: 1151/1059,
  22914. bottom: 356/1507
  22915. }
  22916. },
  22917. frontDressed: {
  22918. height: math.unit(5 + 11/12, "feet"),
  22919. weight: math.unit(170, "lb"),
  22920. name: "Front (Dressed)",
  22921. image: {
  22922. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22923. extra: 1735/1585,
  22924. bottom: 96/1831
  22925. }
  22926. },
  22927. backDressed: {
  22928. height: math.unit(5 + 11/12, "feet"),
  22929. weight: math.unit(170, "lb"),
  22930. name: "Back (Dressed)",
  22931. image: {
  22932. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22933. extra: 1749/1607,
  22934. bottom: 28/1777
  22935. }
  22936. },
  22937. maleDressed: {
  22938. height: math.unit(5 + 11/12, "feet"),
  22939. weight: math.unit(170, "lb"),
  22940. name: "Male (Dressed)",
  22941. image: {
  22942. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22943. extra: 1855/1713,
  22944. bottom: 63/1918
  22945. }
  22946. },
  22947. taurDressed: {
  22948. height: math.unit(5 + 11/12, "feet"),
  22949. weight: math.unit(170, "lb"),
  22950. name: "Taur (Dressed)",
  22951. image: {
  22952. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22953. extra: 1151/1059,
  22954. bottom: 356/1507
  22955. }
  22956. },
  22957. maw: {
  22958. height: math.unit(1.46, "feet"),
  22959. name: "Maw",
  22960. image: {
  22961. source: "./media/characters/poojawa-vynar/maw.svg"
  22962. }
  22963. },
  22964. head: {
  22965. height: math.unit(2.34, "feet"),
  22966. name: "Head",
  22967. image: {
  22968. source: "./media/characters/poojawa-vynar/head.svg"
  22969. }
  22970. },
  22971. paw: {
  22972. height: math.unit(1.61, "feet"),
  22973. name: "Paw",
  22974. image: {
  22975. source: "./media/characters/poojawa-vynar/paw.svg"
  22976. }
  22977. },
  22978. pawToering: {
  22979. height: math.unit(1.72, "feet"),
  22980. name: "Paw (Toering)",
  22981. image: {
  22982. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22983. }
  22984. },
  22985. toering: {
  22986. height: math.unit(2.9, "inches"),
  22987. name: "Toering",
  22988. image: {
  22989. source: "./media/characters/poojawa-vynar/toering.svg"
  22990. }
  22991. },
  22992. shaft: {
  22993. height: math.unit(0.625, "feet"),
  22994. name: "Shaft",
  22995. image: {
  22996. source: "./media/characters/poojawa-vynar/shaft.svg"
  22997. }
  22998. },
  22999. spade: {
  23000. height: math.unit(0.42, "feet"),
  23001. name: "Spade",
  23002. image: {
  23003. source: "./media/characters/poojawa-vynar/spade.svg"
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Shortstack",
  23010. height: math.unit(4, "feet")
  23011. },
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(5 + 11 / 12, "feet"),
  23015. default: true
  23016. },
  23017. {
  23018. name: "Tauric",
  23019. height: math.unit(4, "meters")
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(293, "meters"),
  23028. weight: math.unit(70400, "tons"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/violette/front.svg",
  23032. extra: 1227 / 1180,
  23033. bottom: 0.005
  23034. }
  23035. },
  23036. back: {
  23037. height: math.unit(293, "meters"),
  23038. weight: math.unit(70400, "tons"),
  23039. name: "Back",
  23040. image: {
  23041. source: "./media/characters/violette/back.svg",
  23042. extra: 1227 / 1180,
  23043. bottom: 0.005
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Macro",
  23050. height: math.unit(293, "meters"),
  23051. default: true
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(1050, "feet"),
  23060. weight: math.unit(200000, "tons"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/alessandra/front.svg",
  23064. extra: 960 / 912,
  23065. bottom: 0.06
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(1050, "feet")
  23073. },
  23074. {
  23075. name: "Macro+",
  23076. height: math.unit(900, "meters"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(5, "feet"),
  23086. weight: math.unit(187, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/person/front.svg",
  23090. extra: 3087 / 2945,
  23091. bottom: 91 / 3181
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Micro",
  23098. height: math.unit(3, "inches")
  23099. },
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(5, "feet"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Macro",
  23107. height: math.unit(90, "feet")
  23108. },
  23109. {
  23110. name: "Max Size",
  23111. height: math.unit(280, "feet")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(4.5, "meters"),
  23120. weight: math.unit(3200, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/ty/front.svg",
  23124. extra: 1038 / 960,
  23125. bottom: 31.156 / 1068
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(4.5, "meters"),
  23130. weight: math.unit(3200, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/ty/back.svg",
  23134. extra: 1044 / 966,
  23135. bottom: 7.48 / 1049
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(4.5, "meters"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(5 + 4 / 12, "feet"),
  23152. weight: math.unit(115, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/rocky/front.svg",
  23156. extra: 1012 / 975,
  23157. bottom: 54 / 1066
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(5 + 4 / 12, "feet"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23171. {
  23172. upright: {
  23173. height: math.unit(6, "meters"),
  23174. weight: math.unit(4000, "kg"),
  23175. name: "Upright",
  23176. image: {
  23177. source: "./media/characters/ruin/upright.svg",
  23178. extra: 668 / 661,
  23179. bottom: 42 / 799.8396
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(6, "meters"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(5, "feet"),
  23196. weight: math.unit(106, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/robin/front.svg",
  23200. extra: 862 / 799,
  23201. bottom: 42.4 / 914.8856
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(5, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23215. {
  23216. side: {
  23217. height: math.unit(3, "feet"),
  23218. weight: math.unit(225, "lb"),
  23219. name: "Side",
  23220. image: {
  23221. source: "./media/characters/saian/side.svg",
  23222. extra: 566 / 356,
  23223. bottom: 79.7 / 643
  23224. }
  23225. },
  23226. maw: {
  23227. height: math.unit(2.85, "feet"),
  23228. name: "Maw",
  23229. image: {
  23230. source: "./media/characters/saian/maw.svg"
  23231. }
  23232. },
  23233. },
  23234. [
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(3, "feet"),
  23238. default: true
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23244. {
  23245. side: {
  23246. height: math.unit(8, "feet"),
  23247. weight: math.unit(300, "lb"),
  23248. name: "Side",
  23249. image: {
  23250. source: "./media/characters/equus-silvermane/side.svg",
  23251. extra: 2176 / 2050,
  23252. bottom: 65.7 / 2245
  23253. }
  23254. },
  23255. front: {
  23256. height: math.unit(8, "feet"),
  23257. weight: math.unit(300, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/equus-silvermane/front.svg",
  23261. extra: 4633 / 4400,
  23262. bottom: 71.3 / 4706.915
  23263. }
  23264. },
  23265. sideStepping: {
  23266. height: math.unit(8, "feet"),
  23267. weight: math.unit(300, "lb"),
  23268. name: "Side (Stepping)",
  23269. image: {
  23270. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23271. extra: 1968 / 1860,
  23272. bottom: 16.4 / 1989
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(8, "feet")
  23280. },
  23281. {
  23282. name: "Minimacro",
  23283. height: math.unit(75, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(150, "feet")
  23289. },
  23290. {
  23291. name: "Macro+",
  23292. height: math.unit(1000, "feet")
  23293. },
  23294. {
  23295. name: "Megamacro",
  23296. height: math.unit(1, "mile")
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23302. {
  23303. side: {
  23304. height: math.unit(20, "feet"),
  23305. weight: math.unit(30000, "kg"),
  23306. name: "Side",
  23307. image: {
  23308. source: "./media/characters/windar/side.svg",
  23309. extra: 1491 / 1248,
  23310. bottom: 82.56 / 1568
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(20, "feet"),
  23318. default: true
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23324. {
  23325. side: {
  23326. height: math.unit(15.66, "feet"),
  23327. weight: math.unit(150, "lb"),
  23328. name: "Side",
  23329. image: {
  23330. source: "./media/characters/melody/side.svg",
  23331. extra: 1097 / 944,
  23332. bottom: 11.8 / 1109
  23333. }
  23334. },
  23335. sideOutfit: {
  23336. height: math.unit(15.66, "feet"),
  23337. weight: math.unit(150, "lb"),
  23338. name: "Side (Outfit)",
  23339. image: {
  23340. source: "./media/characters/melody/side-outfit.svg",
  23341. extra: 1097 / 944,
  23342. bottom: 11.8 / 1109
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Normal",
  23349. height: math.unit(15.66, "feet"),
  23350. default: true
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23356. {
  23357. armoredFront: {
  23358. height: math.unit(8, "feet"),
  23359. weight: math.unit(325, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/windera/armored-front.svg",
  23363. extra: 1830/1598,
  23364. bottom: 151/1981
  23365. },
  23366. form: "armored",
  23367. default: true
  23368. },
  23369. macroFront: {
  23370. height: math.unit(70, "feet"),
  23371. weight: math.unit(315453, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/windera/macro-front.svg",
  23375. extra: 963/883,
  23376. bottom: 23/986
  23377. },
  23378. form: "macro",
  23379. default: true
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(8, "feet"),
  23386. default: true,
  23387. form: "armored"
  23388. },
  23389. {
  23390. name: "Normal",
  23391. height: math.unit(70, "feet"),
  23392. default: true,
  23393. form: "macro"
  23394. },
  23395. ],
  23396. {
  23397. "armored": {
  23398. name: "Armored",
  23399. default: true
  23400. },
  23401. "macro": {
  23402. name: "Macro",
  23403. },
  23404. }
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23408. {
  23409. front: {
  23410. height: math.unit(28.75, "feet"),
  23411. weight: math.unit(2000, "kg"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/sonear/front.svg",
  23415. extra: 1041.1 / 964.9,
  23416. bottom: 53.7 / 1096.6
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(28.75, "feet"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23430. {
  23431. side: {
  23432. height: math.unit(25.5, "feet"),
  23433. weight: math.unit(23000, "kg"),
  23434. name: "Side",
  23435. image: {
  23436. source: "./media/characters/kanara/side.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(25.5, "feet"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23450. {
  23451. side: {
  23452. height: math.unit(10, "feet"),
  23453. weight: math.unit(1000, "kg"),
  23454. name: "Side",
  23455. image: {
  23456. source: "./media/characters/ereus/side.svg",
  23457. extra: 1157 / 959,
  23458. bottom: 153 / 1312.5
  23459. }
  23460. },
  23461. },
  23462. [
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(10, "feet"),
  23466. default: true
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23472. {
  23473. side: {
  23474. height: math.unit(4.5, "feet"),
  23475. weight: math.unit(500, "lb"),
  23476. name: "Side",
  23477. image: {
  23478. source: "./media/characters/e-ter/side.svg",
  23479. extra: 1550 / 1248,
  23480. bottom: 146 / 1694
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Normal",
  23487. height: math.unit(4.5, "feet"),
  23488. default: true
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23494. {
  23495. side: {
  23496. height: math.unit(9.7, "feet"),
  23497. weight: math.unit(4000, "kg"),
  23498. name: "Side",
  23499. image: {
  23500. source: "./media/characters/yamie/side.svg"
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Normal",
  23507. height: math.unit(9.7, "feet"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(50, "feet"),
  23517. weight: math.unit(50000, "kg"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/anders/front.svg",
  23521. extra: 570 / 539,
  23522. bottom: 14.7 / 586.7
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Large",
  23529. height: math.unit(50, "feet")
  23530. },
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(2000, "feet"),
  23534. default: true
  23535. },
  23536. {
  23537. name: "Megamacro",
  23538. height: math.unit(12, "miles")
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(7 + 2 / 12, "feet"),
  23547. weight: math.unit(300, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/reban/front.svg",
  23551. extra: 1287/1212,
  23552. bottom: 148/1435
  23553. }
  23554. },
  23555. head: {
  23556. height: math.unit(1.95, "feet"),
  23557. name: "Head",
  23558. image: {
  23559. source: "./media/characters/reban/head.svg"
  23560. }
  23561. },
  23562. maw: {
  23563. height: math.unit(0.95, "feet"),
  23564. name: "Maw",
  23565. image: {
  23566. source: "./media/characters/reban/maw.svg"
  23567. }
  23568. },
  23569. foot: {
  23570. height: math.unit(1.65, "feet"),
  23571. name: "Foot",
  23572. image: {
  23573. source: "./media/characters/reban/foot.svg"
  23574. }
  23575. },
  23576. dick: {
  23577. height: math.unit(7 / 5, "feet"),
  23578. name: "Dick",
  23579. image: {
  23580. source: "./media/characters/reban/dick.svg"
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Natural Height",
  23587. height: math.unit(7 + 2 / 12, "feet")
  23588. },
  23589. {
  23590. name: "Macro",
  23591. height: math.unit(500, "feet"),
  23592. default: true
  23593. },
  23594. {
  23595. name: "Canon Height",
  23596. height: math.unit(50, "AU")
  23597. },
  23598. ]
  23599. ))
  23600. characterMakers.push(() => makeCharacter(
  23601. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23602. {
  23603. front: {
  23604. height: math.unit(6, "feet"),
  23605. weight: math.unit(150, "lb"),
  23606. name: "Front",
  23607. image: {
  23608. source: "./media/characters/terrance-keayes/front.svg",
  23609. extra: 1.005,
  23610. bottom: 151 / 1615
  23611. }
  23612. },
  23613. side: {
  23614. height: math.unit(6, "feet"),
  23615. weight: math.unit(150, "lb"),
  23616. name: "Side",
  23617. image: {
  23618. source: "./media/characters/terrance-keayes/side.svg",
  23619. extra: 1.005,
  23620. bottom: 129.4 / 1544
  23621. }
  23622. },
  23623. back: {
  23624. height: math.unit(6, "feet"),
  23625. weight: math.unit(150, "lb"),
  23626. name: "Back",
  23627. image: {
  23628. source: "./media/characters/terrance-keayes/back.svg",
  23629. extra: 1.005,
  23630. bottom: 58.4 / 1557.3
  23631. }
  23632. },
  23633. dick: {
  23634. height: math.unit(6 * 0.208, "feet"),
  23635. name: "Dick",
  23636. image: {
  23637. source: "./media/characters/terrance-keayes/dick.svg"
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Canon Height",
  23644. height: math.unit(35, "miles"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(6, "feet"),
  23654. weight: math.unit(150, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/ofelia/front.svg",
  23658. extra: 1130/1117,
  23659. bottom: 91/1221
  23660. }
  23661. },
  23662. back: {
  23663. height: math.unit(6, "feet"),
  23664. weight: math.unit(150, "lb"),
  23665. name: "Back",
  23666. image: {
  23667. source: "./media/characters/ofelia/back.svg",
  23668. extra: 1172/1159,
  23669. bottom: 28/1200
  23670. }
  23671. },
  23672. maw: {
  23673. height: math.unit(1, "feet"),
  23674. name: "Maw",
  23675. image: {
  23676. source: "./media/characters/ofelia/maw.svg"
  23677. }
  23678. },
  23679. foot: {
  23680. height: math.unit(1.949, "feet"),
  23681. name: "Foot",
  23682. image: {
  23683. source: "./media/characters/ofelia/foot.svg"
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Canon Height",
  23690. height: math.unit(2000, "miles"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(6, "feet"),
  23700. weight: math.unit(150, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/samuel/front.svg",
  23704. extra: 265 / 258,
  23705. bottom: 2 / 266.1566
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(100, "feet"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Full Size",
  23717. height: math.unit(1000, "miles")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(6, "feet"),
  23726. weight: math.unit(300, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/beishir-kiel/front.svg",
  23730. extra: 569 / 547,
  23731. bottom: 41.9 / 609
  23732. }
  23733. },
  23734. maw: {
  23735. height: math.unit(6 * 0.202, "feet"),
  23736. name: "Maw",
  23737. image: {
  23738. source: "./media/characters/beishir-kiel/maw.svg"
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(300, "feet"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(5 + 7/12, "feet"),
  23755. weight: math.unit(120, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/logan-grey/front.svg",
  23759. extra: 1836/1738,
  23760. bottom: 108/1944
  23761. }
  23762. },
  23763. back: {
  23764. height: math.unit(5 + 7/12, "feet"),
  23765. weight: math.unit(120, "lb"),
  23766. name: "Back",
  23767. image: {
  23768. source: "./media/characters/logan-grey/back.svg",
  23769. extra: 1880/1794,
  23770. bottom: 24/1904
  23771. }
  23772. },
  23773. frontSfw: {
  23774. height: math.unit(5 + 7/12, "feet"),
  23775. weight: math.unit(120, "lb"),
  23776. name: "Front (SFW)",
  23777. image: {
  23778. source: "./media/characters/logan-grey/front-sfw.svg",
  23779. extra: 1836/1738,
  23780. bottom: 108/1944
  23781. }
  23782. },
  23783. backSfw: {
  23784. height: math.unit(5 + 7/12, "feet"),
  23785. weight: math.unit(120, "lb"),
  23786. name: "Back (SFW)",
  23787. image: {
  23788. source: "./media/characters/logan-grey/back-sfw.svg",
  23789. extra: 1880/1794,
  23790. bottom: 24/1904
  23791. }
  23792. },
  23793. hands: {
  23794. height: math.unit(0.84, "feet"),
  23795. name: "Hands",
  23796. image: {
  23797. source: "./media/characters/logan-grey/hands.svg"
  23798. }
  23799. },
  23800. paws: {
  23801. height: math.unit(0.72, "feet"),
  23802. name: "Paws",
  23803. image: {
  23804. source: "./media/characters/logan-grey/paws.svg"
  23805. }
  23806. },
  23807. cock: {
  23808. height: math.unit(1.45, "feet"),
  23809. name: "Cock",
  23810. image: {
  23811. source: "./media/characters/logan-grey/cock.svg"
  23812. }
  23813. },
  23814. cockAlt: {
  23815. height: math.unit(1.437, "feet"),
  23816. name: "Cock (alt)",
  23817. image: {
  23818. source: "./media/characters/logan-grey/cock-alt.svg"
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(5 + 8 / 12, "feet")
  23826. },
  23827. {
  23828. name: "The 500 Foot Femboy",
  23829. height: math.unit(500, "feet"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Megmacro",
  23834. height: math.unit(20, "miles")
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(8 + 2 / 12, "feet"),
  23843. weight: math.unit(275, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/draganta/front.svg",
  23847. extra: 1177 / 1135,
  23848. bottom: 33.46 / 1212.1
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(8 + 6 / 12, "feet"),
  23856. default: true
  23857. },
  23858. {
  23859. name: "Macro",
  23860. height: math.unit(150, "feet")
  23861. },
  23862. {
  23863. name: "Megamacro",
  23864. height: math.unit(1000, "miles")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(1.72, "m"),
  23873. weight: math.unit(80, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/voski/front.svg",
  23877. extra: 2076.22 / 2022.4,
  23878. bottom: 102.7 / 2177.3866
  23879. }
  23880. },
  23881. frontFlaccid: {
  23882. height: math.unit(1.72, "m"),
  23883. weight: math.unit(80, "lb"),
  23884. name: "Front (Flaccid)",
  23885. image: {
  23886. source: "./media/characters/voski/front-flaccid.svg",
  23887. extra: 2076.22 / 2022.4,
  23888. bottom: 102.7 / 2177.3866
  23889. }
  23890. },
  23891. frontErect: {
  23892. height: math.unit(1.72, "m"),
  23893. weight: math.unit(80, "lb"),
  23894. name: "Front (Erect)",
  23895. image: {
  23896. source: "./media/characters/voski/front-erect.svg",
  23897. extra: 2076.22 / 2022.4,
  23898. bottom: 102.7 / 2177.3866
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(1.72, "m"),
  23903. weight: math.unit(80, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/voski/back.svg",
  23907. extra: 2104 / 2051,
  23908. bottom: 10.45 / 2113.63
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Normal",
  23915. height: math.unit(1.72, "m")
  23916. },
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(55, "m"),
  23920. default: true
  23921. },
  23922. {
  23923. name: "Macro+",
  23924. height: math.unit(300, "m")
  23925. },
  23926. {
  23927. name: "Macro++",
  23928. height: math.unit(700, "m")
  23929. },
  23930. {
  23931. name: "Macro+++",
  23932. height: math.unit(4500, "m")
  23933. },
  23934. {
  23935. name: "Macro++++",
  23936. height: math.unit(45, "km")
  23937. },
  23938. {
  23939. name: "Macro+++++",
  23940. height: math.unit(1220, "km")
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(2.3, "m"),
  23949. weight: math.unit(304, "kg"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/icowom-lee/front.svg",
  23953. extra: 985 / 955,
  23954. bottom: 25.4 / 1012
  23955. }
  23956. },
  23957. fronttentacles: {
  23958. height: math.unit(2.3, "m"),
  23959. weight: math.unit(304, "kg"),
  23960. name: "Front-tentacles",
  23961. image: {
  23962. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23963. extra: 985 / 955,
  23964. bottom: 25.4 / 1012
  23965. }
  23966. },
  23967. back: {
  23968. height: math.unit(2.3, "m"),
  23969. weight: math.unit(304, "kg"),
  23970. name: "Back",
  23971. image: {
  23972. source: "./media/characters/icowom-lee/back.svg",
  23973. extra: 975 / 954,
  23974. bottom: 9.5 / 985
  23975. }
  23976. },
  23977. backtentacles: {
  23978. height: math.unit(2.3, "m"),
  23979. weight: math.unit(304, "kg"),
  23980. name: "Back-tentacles",
  23981. image: {
  23982. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23983. extra: 975 / 954,
  23984. bottom: 9.5 / 985
  23985. }
  23986. },
  23987. frontDressed: {
  23988. height: math.unit(2.3, "m"),
  23989. weight: math.unit(304, "kg"),
  23990. name: "Front (Dressed)",
  23991. image: {
  23992. source: "./media/characters/icowom-lee/front-dressed.svg",
  23993. extra: 3076 / 2933,
  23994. bottom: 51.4 / 3125.1889
  23995. }
  23996. },
  23997. rump: {
  23998. height: math.unit(0.776, "meters"),
  23999. name: "Rump",
  24000. image: {
  24001. source: "./media/characters/icowom-lee/rump.svg"
  24002. }
  24003. },
  24004. genitals: {
  24005. height: math.unit(0.78, "meters"),
  24006. name: "Genitals",
  24007. image: {
  24008. source: "./media/characters/icowom-lee/genitals.svg"
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(2.3, "meters"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(94, "meters"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(22, "meters"),
  24030. weight: math.unit(21000, "kg"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/shock-diamond/front.svg",
  24034. extra: 2204 / 2053,
  24035. bottom: 65 / 2239.47
  24036. }
  24037. },
  24038. frontNude: {
  24039. height: math.unit(22, "meters"),
  24040. weight: math.unit(21000, "kg"),
  24041. name: "Front (Nude)",
  24042. image: {
  24043. source: "./media/characters/shock-diamond/front-nude.svg",
  24044. extra: 2514 / 2285,
  24045. bottom: 13 / 2527.56
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Normal",
  24052. height: math.unit(3, "meters")
  24053. },
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(22, "meters"),
  24057. default: true
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(5 + 4/12, "feet"),
  24066. weight: math.unit(125, "lb"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/rory/front.svg",
  24070. extra: 1790/1681,
  24071. bottom: 66/1856
  24072. }
  24073. },
  24074. back: {
  24075. height: math.unit(5 + 4/12, "feet"),
  24076. weight: math.unit(125, "lb"),
  24077. name: "Back",
  24078. image: {
  24079. source: "./media/characters/rory/back.svg",
  24080. extra: 1805/1690,
  24081. bottom: 56/1861
  24082. }
  24083. },
  24084. frontDressed: {
  24085. height: math.unit(5 + 4/12, "feet"),
  24086. weight: math.unit(125, "lb"),
  24087. name: "Front (Dressed)",
  24088. image: {
  24089. source: "./media/characters/rory/front-dressed.svg",
  24090. extra: 1790/1681,
  24091. bottom: 66/1856
  24092. }
  24093. },
  24094. backDressed: {
  24095. height: math.unit(5 + 4/12, "feet"),
  24096. weight: math.unit(125, "lb"),
  24097. name: "Back (Dressed)",
  24098. image: {
  24099. source: "./media/characters/rory/back-dressed.svg",
  24100. extra: 1805/1690,
  24101. bottom: 56/1861
  24102. }
  24103. },
  24104. frontNsfw: {
  24105. height: math.unit(5 + 4/12, "feet"),
  24106. weight: math.unit(125, "lb"),
  24107. name: "Front (NSFW)",
  24108. image: {
  24109. source: "./media/characters/rory/front-nsfw.svg",
  24110. extra: 1790/1681,
  24111. bottom: 66/1856
  24112. }
  24113. },
  24114. backNsfw: {
  24115. height: math.unit(5 + 4/12, "feet"),
  24116. weight: math.unit(125, "lb"),
  24117. name: "Back (NSFW)",
  24118. image: {
  24119. source: "./media/characters/rory/back-nsfw.svg",
  24120. extra: 1805/1690,
  24121. bottom: 56/1861
  24122. }
  24123. },
  24124. dick: {
  24125. height: math.unit(0.8, "feet"),
  24126. name: "Dick",
  24127. image: {
  24128. source: "./media/characters/rory/dick.svg"
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Micro",
  24135. height: math.unit(3, "inches")
  24136. },
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(5 + 4/12, "feet"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(90, "feet")
  24145. },
  24146. {
  24147. name: "Supercharged",
  24148. height: math.unit(270, "feet")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(5 + 9 / 12, "feet"),
  24157. weight: math.unit(190, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/sprisk/front.svg",
  24161. extra: 1225 / 1180,
  24162. bottom: 42.7 / 1266.4
  24163. }
  24164. },
  24165. frontNsfw: {
  24166. height: math.unit(5 + 9 / 12, "feet"),
  24167. weight: math.unit(190, "lb"),
  24168. name: "Front (NSFW)",
  24169. image: {
  24170. source: "./media/characters/sprisk/front-nsfw.svg",
  24171. extra: 1225 / 1180,
  24172. bottom: 42.7 / 1266.4
  24173. }
  24174. },
  24175. back: {
  24176. height: math.unit(5 + 9 / 12, "feet"),
  24177. weight: math.unit(190, "lb"),
  24178. name: "Back",
  24179. image: {
  24180. source: "./media/characters/sprisk/back.svg",
  24181. extra: 1247 / 1200,
  24182. bottom: 5.6 / 1253.04
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Tiny",
  24189. height: math.unit(2, "inches")
  24190. },
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5 + 9 / 12, "feet"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Mini Macro",
  24198. height: math.unit(18, "feet")
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(100, "feet")
  24203. },
  24204. {
  24205. name: "MACRO",
  24206. height: math.unit(50, "miles")
  24207. },
  24208. {
  24209. name: "M A C R O",
  24210. height: math.unit(300, "miles")
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24216. {
  24217. side: {
  24218. height: math.unit(15.6, "meters"),
  24219. weight: math.unit(700000, "kg"),
  24220. name: "Side",
  24221. image: {
  24222. source: "./media/characters/bunsen/side.svg",
  24223. extra: 1644 / 358
  24224. }
  24225. },
  24226. foot: {
  24227. height: math.unit(1.611 * 1644 / 358, "meter"),
  24228. name: "Foot",
  24229. image: {
  24230. source: "./media/characters/bunsen/foot.svg"
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Small",
  24237. height: math.unit(10, "feet")
  24238. },
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(15.6, "meters"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(4 + 11 / 12, "feet"),
  24251. weight: math.unit(140, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/sesh/front.svg",
  24255. extra: 3420 / 3231,
  24256. bottom: 72 / 3949.5
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(4 + 11 / 12, "feet")
  24264. },
  24265. {
  24266. name: "Grown",
  24267. height: math.unit(15, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(1500, "feet")
  24273. },
  24274. {
  24275. name: "Megamacro",
  24276. height: math.unit(30, "miles")
  24277. },
  24278. {
  24279. name: "Continental",
  24280. height: math.unit(3000, "miles")
  24281. },
  24282. {
  24283. name: "Gravity Mass",
  24284. height: math.unit(300000, "miles")
  24285. },
  24286. {
  24287. name: "Planet Buster",
  24288. height: math.unit(30000000, "miles")
  24289. },
  24290. {
  24291. name: "Big",
  24292. height: math.unit(3000000000, "miles")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(9, "feet"),
  24301. weight: math.unit(350, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/pepper/front.svg",
  24305. extra: 1448 / 1312,
  24306. bottom: 9.4 / 1457.88
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(9, "feet"),
  24311. weight: math.unit(350, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/pepper/back.svg",
  24315. extra: 1423 / 1300,
  24316. bottom: 4.6 / 1429
  24317. }
  24318. },
  24319. maw: {
  24320. height: math.unit(0.932, "feet"),
  24321. name: "Maw",
  24322. image: {
  24323. source: "./media/characters/pepper/maw.svg"
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(9, "feet"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6, "feet"),
  24340. weight: math.unit(150, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/maelstrom/front.svg",
  24344. extra: 2100 / 1883,
  24345. bottom: 94 / 2196.7
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Less Kaiju",
  24352. height: math.unit(200, "feet")
  24353. },
  24354. {
  24355. name: "Kaiju",
  24356. height: math.unit(400, "feet"),
  24357. default: true
  24358. },
  24359. {
  24360. name: "Kaiju-er",
  24361. height: math.unit(600, "feet")
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(6 + 5 / 12, "feet"),
  24370. weight: math.unit(180, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/lexir/front.svg",
  24374. extra: 180 / 172,
  24375. bottom: 12 / 192
  24376. }
  24377. },
  24378. back: {
  24379. height: math.unit(6 + 5 / 12, "feet"),
  24380. weight: math.unit(180, "lb"),
  24381. name: "Back",
  24382. image: {
  24383. source: "./media/characters/lexir/back.svg",
  24384. extra: 1273/1201,
  24385. bottom: 39/1312
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Very Smal",
  24392. height: math.unit(1, "nm")
  24393. },
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(6 + 5 / 12, "feet"),
  24397. default: true
  24398. },
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(1, "mile")
  24402. },
  24403. {
  24404. name: "Megamacro",
  24405. height: math.unit(50, "miles")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(1.5, "meters"),
  24414. weight: math.unit(100, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/maksio/front.svg",
  24418. extra: 1549 / 1531,
  24419. bottom: 123.7 / 1674.5429
  24420. }
  24421. },
  24422. back: {
  24423. height: math.unit(1.5, "meters"),
  24424. weight: math.unit(100, "lb"),
  24425. name: "Back",
  24426. image: {
  24427. source: "./media/characters/maksio/back.svg",
  24428. extra: 1541 / 1509,
  24429. bottom: 97 / 1639
  24430. }
  24431. },
  24432. hand: {
  24433. height: math.unit(0.621, "feet"),
  24434. name: "Hand",
  24435. image: {
  24436. source: "./media/characters/maksio/hand.svg"
  24437. }
  24438. },
  24439. foot: {
  24440. height: math.unit(1.611, "feet"),
  24441. name: "Foot",
  24442. image: {
  24443. source: "./media/characters/maksio/foot.svg"
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Shrunken",
  24450. height: math.unit(10, "cm")
  24451. },
  24452. {
  24453. name: "Normal",
  24454. height: math.unit(150, "cm"),
  24455. default: true
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24461. {
  24462. front: {
  24463. height: math.unit(100, "feet"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/erza-bear/front.svg",
  24467. extra: 2449 / 2390,
  24468. bottom: 46 / 2494
  24469. }
  24470. },
  24471. back: {
  24472. height: math.unit(100, "feet"),
  24473. name: "Back",
  24474. image: {
  24475. source: "./media/characters/erza-bear/back.svg",
  24476. extra: 2489 / 2430,
  24477. bottom: 85.4 / 2480
  24478. }
  24479. },
  24480. tail: {
  24481. height: math.unit(42, "feet"),
  24482. name: "Tail",
  24483. image: {
  24484. source: "./media/characters/erza-bear/tail.svg"
  24485. }
  24486. },
  24487. tongue: {
  24488. height: math.unit(8, "feet"),
  24489. name: "Tongue",
  24490. image: {
  24491. source: "./media/characters/erza-bear/tongue.svg"
  24492. }
  24493. },
  24494. dick: {
  24495. height: math.unit(10.5, "feet"),
  24496. name: "Dick",
  24497. image: {
  24498. source: "./media/characters/erza-bear/dick.svg"
  24499. }
  24500. },
  24501. dickVertical: {
  24502. height: math.unit(16.9, "feet"),
  24503. name: "Dick (Vertical)",
  24504. image: {
  24505. source: "./media/characters/erza-bear/dick-vertical.svg"
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Macro",
  24512. height: math.unit(100, "feet"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(172, "cm"),
  24522. weight: math.unit(73, "kg"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/violet-flor/front.svg",
  24526. extra: 1530 / 1442,
  24527. bottom: 61.9 / 1588.8
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(180, "cm"),
  24532. weight: math.unit(73, "kg"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/violet-flor/back.svg",
  24536. extra: 1692 / 1630,
  24537. bottom: 20 / 1712
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(172, "cm"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(6, "feet"),
  24554. weight: math.unit(220, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/lynn-rhea/front.svg",
  24558. extra: 310 / 273
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(6, "feet"),
  24563. weight: math.unit(220, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/lynn-rhea/back.svg",
  24567. extra: 310 / 273
  24568. }
  24569. },
  24570. dicks: {
  24571. height: math.unit(0.9, "feet"),
  24572. name: "Dicks",
  24573. image: {
  24574. source: "./media/characters/lynn-rhea/dicks.svg"
  24575. }
  24576. },
  24577. slit: {
  24578. height: math.unit(0.4, "feet"),
  24579. name: "Slit",
  24580. image: {
  24581. source: "./media/characters/lynn-rhea/slit.svg"
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Micro",
  24588. height: math.unit(1, "inch")
  24589. },
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(60, "feet"),
  24593. default: true
  24594. },
  24595. {
  24596. name: "Megamacro",
  24597. height: math.unit(2, "miles")
  24598. },
  24599. {
  24600. name: "Gigamacro",
  24601. height: math.unit(3, "earths")
  24602. },
  24603. {
  24604. name: "Galactic",
  24605. height: math.unit(0.8, "galaxies")
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24611. {
  24612. front: {
  24613. height: math.unit(1600, "feet"),
  24614. weight: math.unit(85758785169, "kg"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/valathos/front.svg",
  24618. extra: 1451 / 1339
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Macro",
  24625. height: math.unit(1600, "feet"),
  24626. default: true
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24632. {
  24633. front: {
  24634. height: math.unit(7 + 5 / 12, "feet"),
  24635. weight: math.unit(300, "lb"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/azula/front.svg",
  24639. extra: 3208 / 2880,
  24640. bottom: 80.2 / 3277
  24641. }
  24642. },
  24643. back: {
  24644. height: math.unit(7 + 5 / 12, "feet"),
  24645. weight: math.unit(300, "lb"),
  24646. name: "Back",
  24647. image: {
  24648. source: "./media/characters/azula/back.svg",
  24649. extra: 3169 / 2822,
  24650. bottom: 150.6 / 3321
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(7 + 5 / 12, "feet"),
  24658. default: true
  24659. },
  24660. {
  24661. name: "Big",
  24662. height: math.unit(20, "feet")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24668. {
  24669. front: {
  24670. height: math.unit(5 + 1 / 12, "feet"),
  24671. weight: math.unit(110, "lb"),
  24672. name: "Front",
  24673. image: {
  24674. source: "./media/characters/rupert/front.svg",
  24675. extra: 1549 / 1495,
  24676. bottom: 54.2 / 1604.4
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(5 + 1 / 12, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24690. {
  24691. front: {
  24692. height: math.unit(8 + 4 / 12, "feet"),
  24693. weight: math.unit(350, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/sheera-castellar/front.svg",
  24697. extra: 1957 / 1894,
  24698. bottom: 26.97 / 1975.017
  24699. }
  24700. },
  24701. side: {
  24702. height: math.unit(8 + 4 / 12, "feet"),
  24703. weight: math.unit(350, "lb"),
  24704. name: "Side",
  24705. image: {
  24706. source: "./media/characters/sheera-castellar/side.svg",
  24707. extra: 1957 / 1894
  24708. }
  24709. },
  24710. back: {
  24711. height: math.unit(8 + 4 / 12, "feet"),
  24712. weight: math.unit(350, "lb"),
  24713. name: "Back",
  24714. image: {
  24715. source: "./media/characters/sheera-castellar/back.svg",
  24716. extra: 1957 / 1894
  24717. }
  24718. },
  24719. angled: {
  24720. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24721. weight: math.unit(350, "lb"),
  24722. name: "Angled",
  24723. image: {
  24724. source: "./media/characters/sheera-castellar/angled.svg",
  24725. extra: 1807 / 1707,
  24726. bottom: 68 / 1875
  24727. }
  24728. },
  24729. genitals: {
  24730. height: math.unit(2.2, "feet"),
  24731. name: "Genitals",
  24732. image: {
  24733. source: "./media/characters/sheera-castellar/genitals.svg"
  24734. }
  24735. },
  24736. taur: {
  24737. height: math.unit(10 + 6/12, "feet"),
  24738. name: "Taur",
  24739. image: {
  24740. source: "./media/characters/sheera-castellar/taur.svg",
  24741. extra: 2017/1909,
  24742. bottom: 185/2202
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(8 + 4 / 12, "feet")
  24750. },
  24751. {
  24752. name: "Macro",
  24753. height: math.unit(150, "feet"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Macro+",
  24758. height: math.unit(800, "feet")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(6, "feet"),
  24767. weight: math.unit(150, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/jaipur/front.svg",
  24771. extra: 3860 / 3731,
  24772. bottom: 287 / 4140
  24773. }
  24774. },
  24775. back: {
  24776. height: math.unit(6, "feet"),
  24777. weight: math.unit(150, "lb"),
  24778. name: "Back",
  24779. image: {
  24780. source: "./media/characters/jaipur/back.svg",
  24781. extra: 1637/1561,
  24782. bottom: 154/1791
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(1.85, "meters"),
  24790. default: true
  24791. },
  24792. {
  24793. name: "Macro",
  24794. height: math.unit(150, "meters")
  24795. },
  24796. {
  24797. name: "Macro+",
  24798. height: math.unit(0.5, "miles")
  24799. },
  24800. {
  24801. name: "Macro++",
  24802. height: math.unit(2.5, "miles")
  24803. },
  24804. {
  24805. name: "Macro+++",
  24806. height: math.unit(12, "miles")
  24807. },
  24808. {
  24809. name: "Macro++++",
  24810. height: math.unit(120, "miles")
  24811. },
  24812. {
  24813. name: "Macro+++++",
  24814. height: math.unit(1200, "miles")
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24820. {
  24821. front: {
  24822. height: math.unit(6, "feet"),
  24823. weight: math.unit(150, "lb"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/sheila-wolf/front.svg",
  24827. extra: 1931 / 1808,
  24828. bottom: 29.5 / 1960
  24829. }
  24830. },
  24831. dick: {
  24832. height: math.unit(1.464, "feet"),
  24833. name: "Dick",
  24834. image: {
  24835. source: "./media/characters/sheila-wolf/dick.svg"
  24836. }
  24837. },
  24838. muzzle: {
  24839. height: math.unit(0.513, "feet"),
  24840. name: "Muzzle",
  24841. image: {
  24842. source: "./media/characters/sheila-wolf/muzzle.svg"
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Macro",
  24849. height: math.unit(70, "feet"),
  24850. default: true
  24851. },
  24852. ]
  24853. ))
  24854. characterMakers.push(() => makeCharacter(
  24855. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24856. {
  24857. front: {
  24858. height: math.unit(32, "meters"),
  24859. weight: math.unit(300000, "kg"),
  24860. name: "Front",
  24861. image: {
  24862. source: "./media/characters/almor/front.svg",
  24863. extra: 1408 / 1322,
  24864. bottom: 94.6 / 1506.5
  24865. }
  24866. },
  24867. },
  24868. [
  24869. {
  24870. name: "Macro",
  24871. height: math.unit(32, "meters"),
  24872. default: true
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24878. {
  24879. front: {
  24880. height: math.unit(7, "feet"),
  24881. weight: math.unit(200, "lb"),
  24882. name: "Front",
  24883. image: {
  24884. source: "./media/characters/silver/front.svg",
  24885. extra: 472.1 / 450.5,
  24886. bottom: 26.5 / 499.424
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(7, "feet"),
  24894. default: true
  24895. },
  24896. {
  24897. name: "Macro",
  24898. height: math.unit(800, "feet")
  24899. },
  24900. {
  24901. name: "Megamacro",
  24902. height: math.unit(250, "miles")
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(6, "feet"),
  24911. weight: math.unit(150, "lb"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/pliskin/front.svg",
  24915. extra: 1469 / 1359,
  24916. bottom: 70 / 1540
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Micro",
  24923. height: math.unit(3, "inches")
  24924. },
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(5 + 11 / 12, "feet"),
  24928. default: true
  24929. },
  24930. {
  24931. name: "Macro",
  24932. height: math.unit(120, "feet")
  24933. },
  24934. ]
  24935. ))
  24936. characterMakers.push(() => makeCharacter(
  24937. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24938. {
  24939. front: {
  24940. height: math.unit(6, "feet"),
  24941. weight: math.unit(150, "lb"),
  24942. name: "Front",
  24943. image: {
  24944. source: "./media/characters/sammy/front.svg",
  24945. extra: 1193 / 1089,
  24946. bottom: 30.5 / 1226
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Macro",
  24953. height: math.unit(1700, "feet"),
  24954. default: true
  24955. },
  24956. {
  24957. name: "Examacro",
  24958. height: math.unit(2.5e9, "lightyears")
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24964. {
  24965. front: {
  24966. height: math.unit(21, "meters"),
  24967. weight: math.unit(12, "tonnes"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/kuru/front.svg",
  24971. extra: 4301 / 3785,
  24972. bottom: 371.3 / 4691
  24973. }
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Macro",
  24979. height: math.unit(21, "meters"),
  24980. default: true
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(23, "meters"),
  24989. weight: math.unit(12.2, "tonnes"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/rakka/front.svg",
  24993. extra: 4670 / 4169,
  24994. bottom: 301 / 4968.7
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Macro",
  25001. height: math.unit(23, "meters"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(150, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/rhys-feline/front.svg",
  25015. extra: 2488 / 2308,
  25016. bottom: 35.67 / 2519.19
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Really Small",
  25023. height: math.unit(1, "nm")
  25024. },
  25025. {
  25026. name: "Micro",
  25027. height: math.unit(4, "inches")
  25028. },
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(4 + 10 / 12, "feet"),
  25032. default: true
  25033. },
  25034. {
  25035. name: "Macro",
  25036. height: math.unit(100, "feet")
  25037. },
  25038. {
  25039. name: "Megamacto",
  25040. height: math.unit(50, "miles")
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25046. {
  25047. side: {
  25048. height: math.unit(30, "feet"),
  25049. weight: math.unit(35000, "kg"),
  25050. name: "Side",
  25051. image: {
  25052. source: "./media/characters/alydar/side.svg",
  25053. extra: 234 / 222,
  25054. bottom: 6.5 / 241
  25055. }
  25056. },
  25057. front: {
  25058. height: math.unit(30, "feet"),
  25059. weight: math.unit(35000, "kg"),
  25060. name: "Front",
  25061. image: {
  25062. source: "./media/characters/alydar/front.svg",
  25063. extra: 223.37 / 210.2,
  25064. bottom: 22.3 / 246.76
  25065. }
  25066. },
  25067. top: {
  25068. height: math.unit(64.54, "feet"),
  25069. weight: math.unit(35000, "kg"),
  25070. name: "Top",
  25071. image: {
  25072. source: "./media/characters/alydar/top.svg"
  25073. }
  25074. },
  25075. anthro: {
  25076. height: math.unit(30, "feet"),
  25077. weight: math.unit(9000, "kg"),
  25078. name: "Anthro",
  25079. image: {
  25080. source: "./media/characters/alydar/anthro.svg",
  25081. extra: 432 / 421,
  25082. bottom: 7.18 / 440
  25083. }
  25084. },
  25085. maw: {
  25086. height: math.unit(11.693, "feet"),
  25087. name: "Maw",
  25088. image: {
  25089. source: "./media/characters/alydar/maw.svg"
  25090. }
  25091. },
  25092. head: {
  25093. height: math.unit(11.693, "feet"),
  25094. name: "Head",
  25095. image: {
  25096. source: "./media/characters/alydar/head.svg"
  25097. }
  25098. },
  25099. headAlt: {
  25100. height: math.unit(12.861, "feet"),
  25101. name: "Head (Alt)",
  25102. image: {
  25103. source: "./media/characters/alydar/head-alt.svg"
  25104. }
  25105. },
  25106. wing: {
  25107. height: math.unit(20.712, "feet"),
  25108. name: "Wing",
  25109. image: {
  25110. source: "./media/characters/alydar/wing.svg"
  25111. }
  25112. },
  25113. wingFeather: {
  25114. height: math.unit(9.662, "feet"),
  25115. name: "Wing Feather",
  25116. image: {
  25117. source: "./media/characters/alydar/wing-feather.svg"
  25118. }
  25119. },
  25120. countourFeather: {
  25121. height: math.unit(4.154, "feet"),
  25122. name: "Contour Feather",
  25123. image: {
  25124. source: "./media/characters/alydar/contour-feather.svg"
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Diplomatic",
  25131. height: math.unit(13, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Small",
  25136. height: math.unit(30, "feet")
  25137. },
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(95, "feet"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Large",
  25145. height: math.unit(285, "feet")
  25146. },
  25147. {
  25148. name: "Incomprehensible",
  25149. height: math.unit(450, "megameters")
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25155. {
  25156. side: {
  25157. height: math.unit(11, "feet"),
  25158. weight: math.unit(1750, "kg"),
  25159. name: "Side",
  25160. image: {
  25161. source: "./media/characters/selicia/side.svg",
  25162. extra: 440 / 396,
  25163. bottom: 24.8 / 465.979
  25164. }
  25165. },
  25166. maw: {
  25167. height: math.unit(4.665, "feet"),
  25168. name: "Maw",
  25169. image: {
  25170. source: "./media/characters/selicia/maw.svg"
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(11, "feet"),
  25178. default: true
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25184. {
  25185. side: {
  25186. height: math.unit(2 + 6 / 12, "feet"),
  25187. weight: math.unit(30, "lb"),
  25188. name: "Side",
  25189. image: {
  25190. source: "./media/characters/layla/side.svg",
  25191. extra: 244 / 188,
  25192. bottom: 18.2 / 262.1
  25193. }
  25194. },
  25195. back: {
  25196. height: math.unit(2 + 6 / 12, "feet"),
  25197. weight: math.unit(30, "lb"),
  25198. name: "Back",
  25199. image: {
  25200. source: "./media/characters/layla/back.svg",
  25201. extra: 308 / 241.5,
  25202. bottom: 8.9 / 316.8
  25203. }
  25204. },
  25205. cumming: {
  25206. height: math.unit(2 + 6 / 12, "feet"),
  25207. weight: math.unit(30, "lb"),
  25208. name: "Cumming",
  25209. image: {
  25210. source: "./media/characters/layla/cumming.svg",
  25211. extra: 342 / 279,
  25212. bottom: 595 / 938
  25213. }
  25214. },
  25215. dickFlaccid: {
  25216. height: math.unit(2.595, "feet"),
  25217. name: "Flaccid Genitals",
  25218. image: {
  25219. source: "./media/characters/layla/dick-flaccid.svg"
  25220. }
  25221. },
  25222. dickErect: {
  25223. height: math.unit(2.359, "feet"),
  25224. name: "Erect Genitals",
  25225. image: {
  25226. source: "./media/characters/layla/dick-erect.svg"
  25227. }
  25228. },
  25229. dragon: {
  25230. height: math.unit(40, "feet"),
  25231. name: "Dragon",
  25232. image: {
  25233. source: "./media/characters/layla/dragon.svg",
  25234. extra: 610/535,
  25235. bottom: 367/977
  25236. }
  25237. },
  25238. taur: {
  25239. height: math.unit(30, "feet"),
  25240. name: "Taur",
  25241. image: {
  25242. source: "./media/characters/layla/taur.svg",
  25243. extra: 1268/1199,
  25244. bottom: 112/1380
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Micro",
  25251. height: math.unit(1, "inch")
  25252. },
  25253. {
  25254. name: "Small",
  25255. height: math.unit(1, "foot")
  25256. },
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(2 + 6 / 12, "feet"),
  25260. default: true
  25261. },
  25262. {
  25263. name: "Macro",
  25264. height: math.unit(200, "feet")
  25265. },
  25266. {
  25267. name: "Megamacro",
  25268. height: math.unit(1000, "miles")
  25269. },
  25270. {
  25271. name: "Planetary",
  25272. height: math.unit(8000, "miles")
  25273. },
  25274. {
  25275. name: "True Layla",
  25276. height: math.unit(200000 * 7, "multiverses")
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25282. {
  25283. back: {
  25284. height: math.unit(10.5, "feet"),
  25285. weight: math.unit(800, "lb"),
  25286. name: "Back",
  25287. image: {
  25288. source: "./media/characters/knox/back.svg",
  25289. extra: 1486 / 1089,
  25290. bottom: 107 / 1601.4
  25291. }
  25292. },
  25293. side: {
  25294. height: math.unit(10.5, "feet"),
  25295. weight: math.unit(800, "lb"),
  25296. name: "Side",
  25297. image: {
  25298. source: "./media/characters/knox/side.svg",
  25299. extra: 244 / 218,
  25300. bottom: 14 / 260
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Compact",
  25307. height: math.unit(10.5, "feet"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Dynamax",
  25312. height: math.unit(210, "feet")
  25313. },
  25314. {
  25315. name: "Full Macro",
  25316. height: math.unit(850, "feet")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(28, "feet"),
  25325. weight: math.unit(10500, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/kayda/front.svg",
  25329. extra: 1536 / 1428,
  25330. bottom: 68.7 / 1603
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(28, "feet"),
  25335. weight: math.unit(10500, "lb"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/kayda/back.svg",
  25339. extra: 1557 / 1464,
  25340. bottom: 39.5 / 1597.49
  25341. }
  25342. },
  25343. dick: {
  25344. height: math.unit(3.858, "feet"),
  25345. name: "Dick",
  25346. image: {
  25347. source: "./media/characters/kayda/dick.svg"
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(28, "feet"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(10 + 11 / 12, "feet"),
  25364. weight: math.unit(1400, "lb"),
  25365. name: "Front",
  25366. image: {
  25367. source: "./media/characters/brian/front.svg",
  25368. extra: 737 / 692,
  25369. bottom: 55.4 / 785
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(10 + 11 / 12, "feet"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(5 + 8 / 12, "feet"),
  25386. weight: math.unit(140, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/khemri/front.svg",
  25390. extra: 4780 / 4059,
  25391. bottom: 80.1 / 4859.25
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Micro",
  25398. height: math.unit(6, "inches")
  25399. },
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(5 + 8 / 12, "feet"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25409. {
  25410. front: {
  25411. height: math.unit(13, "feet"),
  25412. weight: math.unit(1700, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/felix-braveheart/front.svg",
  25416. extra: 1222 / 1157,
  25417. bottom: 53.2 / 1280
  25418. }
  25419. },
  25420. back: {
  25421. height: math.unit(13, "feet"),
  25422. weight: math.unit(1700, "lb"),
  25423. name: "Back",
  25424. image: {
  25425. source: "./media/characters/felix-braveheart/back.svg",
  25426. extra: 1277 / 1203,
  25427. bottom: 50.2 / 1327
  25428. }
  25429. },
  25430. feral: {
  25431. height: math.unit(6, "feet"),
  25432. weight: math.unit(400, "lb"),
  25433. name: "Feral",
  25434. image: {
  25435. source: "./media/characters/felix-braveheart/feral.svg",
  25436. extra: 682 / 625,
  25437. bottom: 6.9 / 688
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(13, "feet"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25451. {
  25452. side: {
  25453. height: math.unit(5 + 11 / 12, "feet"),
  25454. weight: math.unit(1400, "lb"),
  25455. name: "Side",
  25456. image: {
  25457. source: "./media/characters/shadow-blade/side.svg",
  25458. extra: 1726 / 1267,
  25459. bottom: 58.4 / 1785
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(5 + 11 / 12, "feet"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(1 + 6 / 12, "feet"),
  25476. weight: math.unit(25, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/karla-halldor/front.svg",
  25480. extra: 1459 / 1383,
  25481. bottom: 12 / 1472
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(1 + 6 / 12, "feet"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(6 + 2 / 12, "feet"),
  25498. weight: math.unit(160, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/ariam/front.svg",
  25502. extra: 1073/976,
  25503. bottom: 52/1125
  25504. }
  25505. },
  25506. back: {
  25507. height: math.unit(6 + 2/12, "feet"),
  25508. weight: math.unit(160, "lb"),
  25509. name: "Back",
  25510. image: {
  25511. source: "./media/characters/ariam/back.svg",
  25512. extra: 1103/1023,
  25513. bottom: 9/1112
  25514. }
  25515. },
  25516. dressed: {
  25517. height: math.unit(6 + 2/12, "feet"),
  25518. weight: math.unit(160, "lb"),
  25519. name: "Dressed",
  25520. image: {
  25521. source: "./media/characters/ariam/dressed.svg",
  25522. extra: 1099/1009,
  25523. bottom: 25/1124
  25524. }
  25525. },
  25526. squatting: {
  25527. height: math.unit(4.1, "feet"),
  25528. weight: math.unit(160, "lb"),
  25529. name: "Squatting",
  25530. image: {
  25531. source: "./media/characters/ariam/squatting.svg",
  25532. extra: 2617 / 2112,
  25533. bottom: 61.2 / 2681,
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(6 + 2 / 12, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Normal+",
  25545. height: math.unit(4, "meters")
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(50, "meters")
  25550. },
  25551. {
  25552. name: "Macro+",
  25553. height: math.unit(100, "meters")
  25554. },
  25555. {
  25556. name: "Megamacro",
  25557. height: math.unit(20, "km")
  25558. },
  25559. {
  25560. name: "Caretaker",
  25561. height: math.unit(444, "megameters")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(1.67, "meters"),
  25570. weight: math.unit(140, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25574. extra: 438 / 410,
  25575. bottom: 0.75 / 439
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Shrunken",
  25582. height: math.unit(7.6, "cm")
  25583. },
  25584. {
  25585. name: "Human Scale",
  25586. height: math.unit(1.67, "meters")
  25587. },
  25588. {
  25589. name: "Wolxi Scale",
  25590. height: math.unit(36.7, "meters"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(1.73, "meters"),
  25600. weight: math.unit(240, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/izue-two-mothers/front.svg",
  25604. extra: 469 / 437,
  25605. bottom: 1.24 / 470.6
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Shrunken",
  25612. height: math.unit(7.86, "cm")
  25613. },
  25614. {
  25615. name: "Human Scale",
  25616. height: math.unit(1.73, "meters")
  25617. },
  25618. {
  25619. name: "Wolxi Scale",
  25620. height: math.unit(38, "meters"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(1.55, "meters"),
  25630. weight: math.unit(120, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/teeku-love-shack/front.svg",
  25634. extra: 387 / 362,
  25635. bottom: 1.51 / 388
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Shrunken",
  25642. height: math.unit(7, "cm")
  25643. },
  25644. {
  25645. name: "Human Scale",
  25646. height: math.unit(1.55, "meters")
  25647. },
  25648. {
  25649. name: "Wolxi Scale",
  25650. height: math.unit(34.1, "meters"),
  25651. default: true
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25657. {
  25658. front: {
  25659. height: math.unit(1.83, "meters"),
  25660. weight: math.unit(135, "lb"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/dejma-the-red/front.svg",
  25664. extra: 480 / 458,
  25665. bottom: 1.8 / 482
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Shrunken",
  25672. height: math.unit(8.3, "cm")
  25673. },
  25674. {
  25675. name: "Human Scale",
  25676. height: math.unit(1.83, "meters")
  25677. },
  25678. {
  25679. name: "Wolxi Scale",
  25680. height: math.unit(40, "meters"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(1.78, "meters"),
  25690. weight: math.unit(65, "kg"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/aki/front.svg",
  25694. extra: 452 / 415
  25695. }
  25696. },
  25697. frontNsfw: {
  25698. height: math.unit(1.78, "meters"),
  25699. weight: math.unit(65, "kg"),
  25700. name: "Front (NSFW)",
  25701. image: {
  25702. source: "./media/characters/aki/front-nsfw.svg",
  25703. extra: 452 / 415
  25704. }
  25705. },
  25706. back: {
  25707. height: math.unit(1.78, "meters"),
  25708. weight: math.unit(65, "kg"),
  25709. name: "Back",
  25710. image: {
  25711. source: "./media/characters/aki/back.svg",
  25712. extra: 452 / 415
  25713. }
  25714. },
  25715. rump: {
  25716. height: math.unit(2.05, "feet"),
  25717. name: "Rump",
  25718. image: {
  25719. source: "./media/characters/aki/rump.svg"
  25720. }
  25721. },
  25722. dick: {
  25723. height: math.unit(0.95, "feet"),
  25724. name: "Dick",
  25725. image: {
  25726. source: "./media/characters/aki/dick.svg"
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Micro",
  25733. height: math.unit(15, "cm")
  25734. },
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(178, "cm"),
  25738. default: true
  25739. },
  25740. {
  25741. name: "Macro",
  25742. height: math.unit(214, "m")
  25743. },
  25744. {
  25745. name: "Macro+",
  25746. height: math.unit(534, "m")
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(5 + 5 / 12, "feet"),
  25755. weight: math.unit(120, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/ari/front.svg",
  25759. extra: 1550/1471,
  25760. bottom: 39/1589
  25761. }
  25762. },
  25763. },
  25764. [
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(5 + 5 / 12, "feet")
  25768. },
  25769. {
  25770. name: "Macro",
  25771. height: math.unit(100, "feet"),
  25772. default: true
  25773. },
  25774. {
  25775. name: "Megamacro",
  25776. height: math.unit(100, "miles")
  25777. },
  25778. {
  25779. name: "Gigamacro",
  25780. height: math.unit(80000, "miles")
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25786. {
  25787. side: {
  25788. height: math.unit(9, "feet"),
  25789. weight: math.unit(400, "kg"),
  25790. name: "Side",
  25791. image: {
  25792. source: "./media/characters/bolt/side.svg",
  25793. extra: 1126 / 896,
  25794. bottom: 60 / 1187.3,
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Micro",
  25801. height: math.unit(5, "inches")
  25802. },
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(9, "feet"),
  25806. default: true
  25807. },
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(700, "feet")
  25811. },
  25812. {
  25813. name: "Max Size",
  25814. height: math.unit(1.52e22, "yottameters")
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(4.3, "meters"),
  25823. weight: math.unit(3, "tons"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/draekon-sylviar/front.svg",
  25827. extra: 2072/1512,
  25828. bottom: 74/2146
  25829. }
  25830. },
  25831. back: {
  25832. height: math.unit(4.3, "meters"),
  25833. weight: math.unit(3, "tons"),
  25834. name: "Back",
  25835. image: {
  25836. source: "./media/characters/draekon-sylviar/back.svg",
  25837. extra: 1639/1483,
  25838. bottom: 41/1680
  25839. }
  25840. },
  25841. feral: {
  25842. height: math.unit(1.15, "meters"),
  25843. weight: math.unit(3, "tons"),
  25844. name: "Feral",
  25845. image: {
  25846. source: "./media/characters/draekon-sylviar/feral.svg",
  25847. extra: 1033/395,
  25848. bottom: 130/1163
  25849. }
  25850. },
  25851. maw: {
  25852. height: math.unit(1.3, "meters"),
  25853. name: "Maw",
  25854. image: {
  25855. source: "./media/characters/draekon-sylviar/maw.svg"
  25856. }
  25857. },
  25858. mawSeparated: {
  25859. height: math.unit(1.53, "meters"),
  25860. name: "Separated Maw",
  25861. image: {
  25862. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25863. }
  25864. },
  25865. tail: {
  25866. height: math.unit(1.15, "meters"),
  25867. name: "Tail",
  25868. image: {
  25869. source: "./media/characters/draekon-sylviar/tail.svg"
  25870. }
  25871. },
  25872. tailDick: {
  25873. height: math.unit(1.15, "meters"),
  25874. name: "Tail (Dick)",
  25875. image: {
  25876. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25877. }
  25878. },
  25879. tailDickSeparated: {
  25880. height: math.unit(1.19, "meters"),
  25881. name: "Tail (Separated Dick)",
  25882. image: {
  25883. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25884. }
  25885. },
  25886. slit: {
  25887. height: math.unit(1, "meters"),
  25888. name: "Slit",
  25889. image: {
  25890. source: "./media/characters/draekon-sylviar/slit.svg"
  25891. }
  25892. },
  25893. dick: {
  25894. height: math.unit(1.15, "meters"),
  25895. name: "Dick",
  25896. image: {
  25897. source: "./media/characters/draekon-sylviar/dick.svg"
  25898. }
  25899. },
  25900. dickSeparated: {
  25901. height: math.unit(1.1, "meters"),
  25902. name: "Separated Dick",
  25903. image: {
  25904. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25905. }
  25906. },
  25907. sheath: {
  25908. height: math.unit(1.15, "meters"),
  25909. name: "Sheath",
  25910. image: {
  25911. source: "./media/characters/draekon-sylviar/sheath.svg"
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Small",
  25918. height: math.unit(4.53 / 2, "meters"),
  25919. default: true
  25920. },
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(4.53, "meters"),
  25924. default: true
  25925. },
  25926. {
  25927. name: "Large",
  25928. height: math.unit(4.53 * 2, "meters"),
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(6 + 2 / 12, "feet"),
  25937. weight: math.unit(180, "lb"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/brawler/front.svg",
  25941. extra: 3301 / 3027,
  25942. bottom: 138 / 3439
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(6 + 2 / 12, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(11, "feet"),
  25959. weight: math.unit(1000, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/alex/front.svg",
  25963. bottom: 44.5 / 620
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Micro",
  25970. height: math.unit(5, "inches")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(11, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(9.5e9, "feet")
  25980. },
  25981. {
  25982. name: "Max Size",
  25983. height: math.unit(1.4e283, "yottameters")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25989. {
  25990. female: {
  25991. height: math.unit(29.9, "m"),
  25992. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25993. name: "Female",
  25994. image: {
  25995. source: "./media/characters/zenari/female.svg",
  25996. extra: 3281.6 / 3217,
  25997. bottom: 72.2 / 3353
  25998. }
  25999. },
  26000. male: {
  26001. height: math.unit(27.7, "m"),
  26002. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26003. name: "Male",
  26004. image: {
  26005. source: "./media/characters/zenari/male.svg",
  26006. extra: 3008 / 2991,
  26007. bottom: 54.6 / 3069
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(29.7, "meters"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26021. {
  26022. female: {
  26023. height: math.unit(23.8, "m"),
  26024. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26025. name: "Female",
  26026. image: {
  26027. source: "./media/characters/mactarian/female.svg",
  26028. extra: 2662 / 2569,
  26029. bottom: 73 / 2736
  26030. }
  26031. },
  26032. male: {
  26033. height: math.unit(23.8, "m"),
  26034. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26035. name: "Male",
  26036. image: {
  26037. source: "./media/characters/mactarian/male.svg",
  26038. extra: 2673 / 2600,
  26039. bottom: 76 / 2750
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Macro",
  26046. height: math.unit(23.8, "meters"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26053. {
  26054. female: {
  26055. height: math.unit(19.3, "m"),
  26056. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26057. name: "Female",
  26058. image: {
  26059. source: "./media/characters/umok/female.svg",
  26060. extra: 2186 / 2078,
  26061. bottom: 87 / 2277
  26062. }
  26063. },
  26064. male: {
  26065. height: math.unit(19.5, "m"),
  26066. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26067. name: "Male",
  26068. image: {
  26069. source: "./media/characters/umok/male.svg",
  26070. extra: 2233 / 2140,
  26071. bottom: 24.4 / 2258
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(19.3, "meters"),
  26079. default: true
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26085. {
  26086. female: {
  26087. height: math.unit(26.15, "m"),
  26088. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26089. name: "Female",
  26090. image: {
  26091. source: "./media/characters/joraxian/female.svg",
  26092. extra: 2912 / 2824,
  26093. bottom: 36 / 2956
  26094. }
  26095. },
  26096. male: {
  26097. height: math.unit(25.4, "m"),
  26098. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26099. name: "Male",
  26100. image: {
  26101. source: "./media/characters/joraxian/male.svg",
  26102. extra: 2877 / 2721,
  26103. bottom: 82 / 2967
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Macro",
  26110. height: math.unit(26.15, "meters"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26117. {
  26118. female: {
  26119. height: math.unit(21.6, "m"),
  26120. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26121. name: "Female",
  26122. image: {
  26123. source: "./media/characters/sthara/female.svg",
  26124. extra: 2516 / 2347,
  26125. bottom: 21.5 / 2537
  26126. }
  26127. },
  26128. male: {
  26129. height: math.unit(24, "m"),
  26130. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26131. name: "Male",
  26132. image: {
  26133. source: "./media/characters/sthara/male.svg",
  26134. extra: 2732 / 2607,
  26135. bottom: 23 / 2732
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Macro",
  26142. height: math.unit(21.6, "meters"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(6 + 4 / 12, "feet"),
  26152. weight: math.unit(175, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/luka-bryzant/front.svg",
  26156. extra: 311 / 289,
  26157. bottom: 4 / 315
  26158. }
  26159. },
  26160. back: {
  26161. height: math.unit(6 + 4 / 12, "feet"),
  26162. weight: math.unit(175, "lb"),
  26163. name: "Back",
  26164. image: {
  26165. source: "./media/characters/luka-bryzant/back.svg",
  26166. extra: 311 / 289,
  26167. bottom: 3.8 / 313.7
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Micro",
  26174. height: math.unit(10, "inches")
  26175. },
  26176. {
  26177. name: "Normal",
  26178. height: math.unit(6 + 4 / 12, "feet"),
  26179. default: true
  26180. },
  26181. {
  26182. name: "Large",
  26183. height: math.unit(12, "feet")
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(5 + 7 / 12, "feet"),
  26192. weight: math.unit(185, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/aman-aquila/front.svg",
  26196. extra: 1013 / 976,
  26197. bottom: 45.6 / 1057
  26198. }
  26199. },
  26200. side: {
  26201. height: math.unit(5 + 7 / 12, "feet"),
  26202. weight: math.unit(185, "lb"),
  26203. name: "Side",
  26204. image: {
  26205. source: "./media/characters/aman-aquila/side.svg",
  26206. extra: 1054 / 1011,
  26207. bottom: 15 / 1070
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(5 + 7 / 12, "feet"),
  26212. weight: math.unit(185, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/aman-aquila/back.svg",
  26216. extra: 1026 / 970,
  26217. bottom: 12 / 1039
  26218. }
  26219. },
  26220. head: {
  26221. height: math.unit(1.211, "feet"),
  26222. name: "Head",
  26223. image: {
  26224. source: "./media/characters/aman-aquila/head.svg",
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Minimicro",
  26231. height: math.unit(0.057, "inches")
  26232. },
  26233. {
  26234. name: "Micro",
  26235. height: math.unit(7, "inches")
  26236. },
  26237. {
  26238. name: "Mini",
  26239. height: math.unit(3 + 7 / 12, "feet")
  26240. },
  26241. {
  26242. name: "Normal",
  26243. height: math.unit(5 + 7 / 12, "feet"),
  26244. default: true
  26245. },
  26246. {
  26247. name: "Macro",
  26248. height: math.unit(157 + 7 / 12, "feet")
  26249. },
  26250. {
  26251. name: "Megamacro",
  26252. height: math.unit(1557 + 7 / 12, "feet")
  26253. },
  26254. {
  26255. name: "Gigamacro",
  26256. height: math.unit(15557 + 7 / 12, "feet")
  26257. },
  26258. ]
  26259. ))
  26260. characterMakers.push(() => makeCharacter(
  26261. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26262. {
  26263. front: {
  26264. height: math.unit(3 + 2 / 12, "inches"),
  26265. weight: math.unit(0.3, "ounces"),
  26266. name: "Front",
  26267. image: {
  26268. source: "./media/characters/hiphae/front.svg",
  26269. extra: 1931 / 1683,
  26270. bottom: 24 / 1955
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(3 + 1 / 2, "inches"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(5 + 10 / 12, "feet"),
  26287. weight: math.unit(165, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/nicky/front.svg",
  26291. extra: 3144 / 2886,
  26292. bottom: 45.6 / 3192
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(5 + 10 / 12, "feet"),
  26297. weight: math.unit(165, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/nicky/back.svg",
  26301. extra: 3055 / 2804,
  26302. bottom: 28.4 / 3087
  26303. }
  26304. },
  26305. frontclothed: {
  26306. height: math.unit(5 + 10 / 12, "feet"),
  26307. weight: math.unit(165, "lb"),
  26308. name: "Front-clothed",
  26309. image: {
  26310. source: "./media/characters/nicky/front-clothed.svg",
  26311. extra: 3184.9 / 2926.9,
  26312. bottom: 86.5 / 3239.9
  26313. }
  26314. },
  26315. foot: {
  26316. height: math.unit(1.16, "feet"),
  26317. name: "Foot",
  26318. image: {
  26319. source: "./media/characters/nicky/foot.svg"
  26320. }
  26321. },
  26322. feet: {
  26323. height: math.unit(1.34, "feet"),
  26324. name: "Feet",
  26325. image: {
  26326. source: "./media/characters/nicky/feet.svg"
  26327. }
  26328. },
  26329. maw: {
  26330. height: math.unit(0.9, "feet"),
  26331. name: "Maw",
  26332. image: {
  26333. source: "./media/characters/nicky/maw.svg"
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(5 + 10 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(60, "feet")
  26346. },
  26347. {
  26348. name: "Megamacro",
  26349. height: math.unit(1, "mile")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26355. {
  26356. side: {
  26357. height: math.unit(10, "feet"),
  26358. weight: math.unit(600, "lb"),
  26359. name: "Side",
  26360. image: {
  26361. source: "./media/characters/blair/side.svg",
  26362. bottom: 16.6 / 475,
  26363. extra: 458 / 431
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Micro",
  26370. height: math.unit(8, "inches")
  26371. },
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(10, "feet"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Macro",
  26379. height: math.unit(180, "feet")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(5 + 4 / 12, "feet"),
  26388. weight: math.unit(125, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/fisher/front.svg",
  26392. extra: 444 / 390,
  26393. bottom: 2 / 444.8
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Micro",
  26400. height: math.unit(4, "inches")
  26401. },
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(5 + 4 / 12, "feet"),
  26405. default: true
  26406. },
  26407. {
  26408. name: "Macro",
  26409. height: math.unit(100, "feet")
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(6.71, "feet"),
  26418. weight: math.unit(200, "lb"),
  26419. preyCapacity: math.unit(1000000, "people"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/gliss/front.svg",
  26423. extra: 2347 / 2231,
  26424. bottom: 113 / 2462
  26425. }
  26426. },
  26427. hammerspaceSize: {
  26428. height: math.unit(6.71 * 717, "feet"),
  26429. weight: math.unit(200, "lb"),
  26430. preyCapacity: math.unit(1000000, "people"),
  26431. name: "Hammerspace Size",
  26432. image: {
  26433. source: "./media/characters/gliss/front.svg",
  26434. extra: 2347 / 2231,
  26435. bottom: 113 / 2462
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Normal",
  26442. height: math.unit(6.71, "feet"),
  26443. default: true
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26449. {
  26450. side: {
  26451. height: math.unit(1.44, "m"),
  26452. weight: math.unit(80, "kg"),
  26453. name: "Side",
  26454. image: {
  26455. source: "./media/characters/dune-anderson/side.svg",
  26456. bottom: 49 / 1426
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Wolf-sized",
  26463. height: math.unit(1.44, "meters")
  26464. },
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(5.05, "meters"),
  26468. default: true
  26469. },
  26470. {
  26471. name: "Big",
  26472. height: math.unit(14.4, "meters")
  26473. },
  26474. {
  26475. name: "Huge",
  26476. height: math.unit(144, "meters")
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(7, "feet"),
  26485. weight: math.unit(425, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/hind/front.svg",
  26489. extra: 2091 / 1860,
  26490. bottom: 129 / 2220
  26491. }
  26492. },
  26493. back: {
  26494. height: math.unit(7, "feet"),
  26495. weight: math.unit(425, "lb"),
  26496. name: "Back",
  26497. image: {
  26498. source: "./media/characters/hind/back.svg",
  26499. extra: 2091 / 1860,
  26500. bottom: 24.6 / 2309
  26501. }
  26502. },
  26503. tail: {
  26504. height: math.unit(2.8, "feet"),
  26505. name: "Tail",
  26506. image: {
  26507. source: "./media/characters/hind/tail.svg"
  26508. }
  26509. },
  26510. head: {
  26511. height: math.unit(2.55, "feet"),
  26512. name: "Head",
  26513. image: {
  26514. source: "./media/characters/hind/head.svg"
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "XS",
  26521. height: math.unit(0.7, "feet")
  26522. },
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(7, "feet"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "XL",
  26530. height: math.unit(70, "feet")
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(2.1, "meters"),
  26539. weight: math.unit(150, "lb"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/tharquench-sizestealer/front.svg",
  26543. extra: 1605/1470,
  26544. bottom: 36/1641
  26545. }
  26546. },
  26547. frontAlt: {
  26548. height: math.unit(2.1, "meters"),
  26549. weight: math.unit(150, "lb"),
  26550. name: "Front (Alt)",
  26551. image: {
  26552. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26553. extra: 2318 / 2063,
  26554. bottom: 93.4 / 2410
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Nano",
  26561. height: math.unit(1, "mm")
  26562. },
  26563. {
  26564. name: "Micro",
  26565. height: math.unit(1, "cm")
  26566. },
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(2.1, "meters"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(7 + 5 / 12, "feet"),
  26579. weight: math.unit(357, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/solex-draconov/front.svg",
  26583. extra: 1993 / 1865,
  26584. bottom: 117 / 2111
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Natural Height",
  26591. height: math.unit(7 + 5 / 12, "feet"),
  26592. default: true
  26593. },
  26594. {
  26595. name: "Macro",
  26596. height: math.unit(350, "feet")
  26597. },
  26598. {
  26599. name: "Macro+",
  26600. height: math.unit(1000, "feet")
  26601. },
  26602. {
  26603. name: "Megamacro",
  26604. height: math.unit(20, "km")
  26605. },
  26606. {
  26607. name: "Megamacro+",
  26608. height: math.unit(1000, "km")
  26609. },
  26610. {
  26611. name: "Gigamacro",
  26612. height: math.unit(2.5, "Gm")
  26613. },
  26614. {
  26615. name: "Teramacro",
  26616. height: math.unit(15, "Tm")
  26617. },
  26618. {
  26619. name: "Galactic",
  26620. height: math.unit(30, "Zm")
  26621. },
  26622. {
  26623. name: "Universal",
  26624. height: math.unit(21000, "Ym")
  26625. },
  26626. {
  26627. name: "Omniversal",
  26628. height: math.unit(9.861e50, "Ym")
  26629. },
  26630. {
  26631. name: "Existential",
  26632. height: math.unit(1e300, "meters")
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26638. {
  26639. side: {
  26640. height: math.unit(25, "feet"),
  26641. weight: math.unit(90000, "lb"),
  26642. name: "Side",
  26643. image: {
  26644. source: "./media/characters/mandarax/side.svg",
  26645. extra: 614 / 332,
  26646. bottom: 55 / 630
  26647. }
  26648. },
  26649. lounging: {
  26650. height: math.unit(15.4, "feet"),
  26651. weight: math.unit(90000, "lb"),
  26652. name: "Lounging",
  26653. image: {
  26654. source: "./media/characters/mandarax/lounging.svg",
  26655. extra: 817/609,
  26656. bottom: 685/1502
  26657. }
  26658. },
  26659. head: {
  26660. height: math.unit(11.4, "feet"),
  26661. name: "Head",
  26662. image: {
  26663. source: "./media/characters/mandarax/head.svg"
  26664. }
  26665. },
  26666. belly: {
  26667. height: math.unit(33, "feet"),
  26668. name: "Belly",
  26669. preyCapacity: math.unit(500, "people"),
  26670. image: {
  26671. source: "./media/characters/mandarax/belly.svg"
  26672. }
  26673. },
  26674. dick: {
  26675. height: math.unit(8.46, "feet"),
  26676. name: "Dick",
  26677. image: {
  26678. source: "./media/characters/mandarax/dick.svg"
  26679. }
  26680. },
  26681. top: {
  26682. height: math.unit(28, "meters"),
  26683. name: "Top",
  26684. image: {
  26685. source: "./media/characters/mandarax/top.svg"
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(25, "feet"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(5, "feet"),
  26702. weight: math.unit(90, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/pixil/front.svg",
  26706. extra: 2000 / 1618,
  26707. bottom: 12.3 / 2011
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(5, "feet"),
  26715. default: true
  26716. },
  26717. {
  26718. name: "Megamacro",
  26719. height: math.unit(10, "miles"),
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(7 + 2 / 12, "feet"),
  26728. weight: math.unit(200, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/angel/front.svg",
  26732. extra: 1830 / 1737,
  26733. bottom: 22.6 / 1854,
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(7 + 2 / 12, "feet"),
  26741. default: true
  26742. },
  26743. {
  26744. name: "Macro",
  26745. height: math.unit(1000, "feet")
  26746. },
  26747. {
  26748. name: "Megamacro",
  26749. height: math.unit(2, "miles")
  26750. },
  26751. {
  26752. name: "Gigamacro",
  26753. height: math.unit(20, "earths")
  26754. },
  26755. ]
  26756. ))
  26757. characterMakers.push(() => makeCharacter(
  26758. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26759. {
  26760. front: {
  26761. height: math.unit(5, "feet"),
  26762. weight: math.unit(180, "lb"),
  26763. name: "Front",
  26764. image: {
  26765. source: "./media/characters/mekana/front.svg",
  26766. extra: 1671 / 1605,
  26767. bottom: 3.5 / 1691
  26768. }
  26769. },
  26770. side: {
  26771. height: math.unit(5, "feet"),
  26772. weight: math.unit(180, "lb"),
  26773. name: "Side",
  26774. image: {
  26775. source: "./media/characters/mekana/side.svg",
  26776. extra: 1671 / 1605,
  26777. bottom: 3.5 / 1691
  26778. }
  26779. },
  26780. back: {
  26781. height: math.unit(5, "feet"),
  26782. weight: math.unit(180, "lb"),
  26783. name: "Back",
  26784. image: {
  26785. source: "./media/characters/mekana/back.svg",
  26786. extra: 1671 / 1605,
  26787. bottom: 3.5 / 1691
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Normal",
  26794. height: math.unit(5, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(4 + 6 / 12, "feet"),
  26804. weight: math.unit(80, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/pixie/front.svg",
  26808. extra: 1924 / 1825,
  26809. bottom: 22.4 / 1946
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(4 + 6 / 12, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(40, "feet")
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(2.1, "meters"),
  26830. weight: math.unit(200, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/the-lascivious/front.svg",
  26834. extra: 1 / 0.893,
  26835. bottom: 3.5 / 573.7
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Human Scale",
  26842. height: math.unit(2.1, "meters")
  26843. },
  26844. {
  26845. name: "Wolxi Scale",
  26846. height: math.unit(46.2, "m"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Boinker of Buildings",
  26851. height: math.unit(10, "km")
  26852. },
  26853. {
  26854. name: "Shagger of Skyscrapers",
  26855. height: math.unit(40, "km")
  26856. },
  26857. {
  26858. name: "Banger of Boroughs",
  26859. height: math.unit(4000, "km")
  26860. },
  26861. {
  26862. name: "Screwer of States",
  26863. height: math.unit(100000, "km")
  26864. },
  26865. {
  26866. name: "Pounder of Planets",
  26867. height: math.unit(2000000, "km")
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26873. {
  26874. front: {
  26875. height: math.unit(6, "feet"),
  26876. weight: math.unit(150, "lb"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/aj/front.svg",
  26880. extra: 2039 / 1562,
  26881. bottom: 40 / 2079
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(11 + 6 / 12, "feet"),
  26889. default: true
  26890. },
  26891. {
  26892. name: "Megamacro",
  26893. height: math.unit(60, "megameters")
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26899. {
  26900. side: {
  26901. height: math.unit(31 + 8 / 12, "feet"),
  26902. weight: math.unit(75000, "kg"),
  26903. name: "Side",
  26904. image: {
  26905. source: "./media/characters/koros/side.svg",
  26906. extra: 1442 / 1297,
  26907. bottom: 122.7 / 1562
  26908. }
  26909. },
  26910. dicksKingsCrown: {
  26911. height: math.unit(6, "feet"),
  26912. name: "Dicks (King's Crown)",
  26913. image: {
  26914. source: "./media/characters/koros/dicks-kings-crown.svg"
  26915. }
  26916. },
  26917. dicksTailSet: {
  26918. height: math.unit(3, "feet"),
  26919. name: "Dicks (Tail Set)",
  26920. image: {
  26921. source: "./media/characters/koros/dicks-tail-set.svg"
  26922. }
  26923. },
  26924. dickCumming: {
  26925. height: math.unit(7.98, "feet"),
  26926. name: "Dick (Cumming)",
  26927. image: {
  26928. source: "./media/characters/koros/dick-cumming.svg"
  26929. }
  26930. },
  26931. dicksBack: {
  26932. height: math.unit(5.9, "feet"),
  26933. name: "Dicks (Back)",
  26934. image: {
  26935. source: "./media/characters/koros/dicks-back.svg"
  26936. }
  26937. },
  26938. dicksFront: {
  26939. height: math.unit(3.72, "feet"),
  26940. name: "Dicks (Front)",
  26941. image: {
  26942. source: "./media/characters/koros/dicks-front.svg"
  26943. }
  26944. },
  26945. dicksPeeking: {
  26946. height: math.unit(3.0, "feet"),
  26947. name: "Dicks (Peeking)",
  26948. image: {
  26949. source: "./media/characters/koros/dicks-peeking.svg"
  26950. }
  26951. },
  26952. eye: {
  26953. height: math.unit(1.7, "feet"),
  26954. name: "Eye",
  26955. image: {
  26956. source: "./media/characters/koros/eye.svg"
  26957. }
  26958. },
  26959. headFront: {
  26960. height: math.unit(11.69, "feet"),
  26961. name: "Head (Front)",
  26962. image: {
  26963. source: "./media/characters/koros/head-front.svg"
  26964. }
  26965. },
  26966. headSide: {
  26967. height: math.unit(14, "feet"),
  26968. name: "Head (Side)",
  26969. image: {
  26970. source: "./media/characters/koros/head-side.svg"
  26971. }
  26972. },
  26973. leg: {
  26974. height: math.unit(17, "feet"),
  26975. name: "Leg",
  26976. image: {
  26977. source: "./media/characters/koros/leg.svg"
  26978. }
  26979. },
  26980. mawSide: {
  26981. height: math.unit(12.8, "feet"),
  26982. name: "Maw (Side)",
  26983. image: {
  26984. source: "./media/characters/koros/maw-side.svg"
  26985. }
  26986. },
  26987. mawSpitting: {
  26988. height: math.unit(17, "feet"),
  26989. name: "Maw (Spitting)",
  26990. image: {
  26991. source: "./media/characters/koros/maw-spitting.svg"
  26992. }
  26993. },
  26994. slit: {
  26995. height: math.unit(2.8, "feet"),
  26996. name: "Slit",
  26997. image: {
  26998. source: "./media/characters/koros/slit.svg"
  26999. }
  27000. },
  27001. stomach: {
  27002. height: math.unit(6.8, "feet"),
  27003. preyCapacity: math.unit(20, "people"),
  27004. name: "Stomach",
  27005. image: {
  27006. source: "./media/characters/koros/stomach.svg"
  27007. }
  27008. },
  27009. wingspanBottom: {
  27010. height: math.unit(114, "feet"),
  27011. name: "Wingspan (Bottom)",
  27012. image: {
  27013. source: "./media/characters/koros/wingspan-bottom.svg"
  27014. }
  27015. },
  27016. wingspanTop: {
  27017. height: math.unit(104, "feet"),
  27018. name: "Wingspan (Top)",
  27019. image: {
  27020. source: "./media/characters/koros/wingspan-top.svg"
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Normal",
  27027. height: math.unit(31 + 8 / 12, "feet"),
  27028. default: true
  27029. },
  27030. ]
  27031. ))
  27032. characterMakers.push(() => makeCharacter(
  27033. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27034. {
  27035. front: {
  27036. height: math.unit(18 + 5 / 12, "feet"),
  27037. weight: math.unit(3750, "kg"),
  27038. name: "Front",
  27039. image: {
  27040. source: "./media/characters/vexx/front.svg",
  27041. extra: 426 / 396,
  27042. bottom: 31.5 / 458
  27043. }
  27044. },
  27045. maw: {
  27046. height: math.unit(6, "feet"),
  27047. name: "Maw",
  27048. image: {
  27049. source: "./media/characters/vexx/maw.svg"
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(18 + 5 / 12, "feet"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(17 + 6 / 12, "feet"),
  27066. weight: math.unit(150, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/baadra/front.svg",
  27070. extra: 1694/1553,
  27071. bottom: 179/1873
  27072. }
  27073. },
  27074. frontAlt: {
  27075. height: math.unit(17 + 6 / 12, "feet"),
  27076. weight: math.unit(150, "lb"),
  27077. name: "Front (Alt)",
  27078. image: {
  27079. source: "./media/characters/baadra/front-alt.svg",
  27080. extra: 3137 / 2890,
  27081. bottom: 168.4 / 3305
  27082. }
  27083. },
  27084. back: {
  27085. height: math.unit(17 + 6 / 12, "feet"),
  27086. weight: math.unit(150, "lb"),
  27087. name: "Back",
  27088. image: {
  27089. source: "./media/characters/baadra/back.svg",
  27090. extra: 3142 / 2890,
  27091. bottom: 220 / 3371
  27092. }
  27093. },
  27094. head: {
  27095. height: math.unit(5.45, "feet"),
  27096. name: "Head",
  27097. image: {
  27098. source: "./media/characters/baadra/head.svg"
  27099. }
  27100. },
  27101. headAngry: {
  27102. height: math.unit(4.95, "feet"),
  27103. name: "Head (Angry)",
  27104. image: {
  27105. source: "./media/characters/baadra/head-angry.svg"
  27106. }
  27107. },
  27108. headOpen: {
  27109. height: math.unit(6, "feet"),
  27110. name: "Head (Open)",
  27111. image: {
  27112. source: "./media/characters/baadra/head-open.svg"
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(17 + 6 / 12, "feet"),
  27120. default: true
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(7 + 3 / 12, "feet"),
  27129. weight: math.unit(180, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/juri/front.svg",
  27133. extra: 1401 / 1237,
  27134. bottom: 18.5 / 1418
  27135. }
  27136. },
  27137. side: {
  27138. height: math.unit(7 + 3 / 12, "feet"),
  27139. weight: math.unit(180, "lb"),
  27140. name: "Side",
  27141. image: {
  27142. source: "./media/characters/juri/side.svg",
  27143. extra: 1424 / 1242,
  27144. bottom: 18.5 / 1447
  27145. }
  27146. },
  27147. sitting: {
  27148. height: math.unit(6, "feet"),
  27149. weight: math.unit(180, "lb"),
  27150. name: "Sitting",
  27151. image: {
  27152. source: "./media/characters/juri/sitting.svg",
  27153. extra: 1270 / 1143,
  27154. bottom: 100 / 1343
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(7 + 3 / 12, "feet"),
  27159. weight: math.unit(180, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/juri/back.svg",
  27163. extra: 1377 / 1240,
  27164. bottom: 23.7 / 1405
  27165. }
  27166. },
  27167. maw: {
  27168. height: math.unit(2.8, "feet"),
  27169. name: "Maw",
  27170. image: {
  27171. source: "./media/characters/juri/maw.svg"
  27172. }
  27173. },
  27174. stomach: {
  27175. height: math.unit(0.89, "feet"),
  27176. preyCapacity: math.unit(4, "liters"),
  27177. name: "Stomach",
  27178. image: {
  27179. source: "./media/characters/juri/stomach.svg"
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Normal",
  27186. height: math.unit(7 + 3 / 12, "feet"),
  27187. default: true
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27193. {
  27194. fox: {
  27195. height: math.unit(5 + 6 / 12, "feet"),
  27196. weight: math.unit(140, "lb"),
  27197. name: "Fox",
  27198. image: {
  27199. source: "./media/characters/maxene-sita/fox.svg",
  27200. extra: 146 / 138,
  27201. bottom: 2.1 / 148.19
  27202. }
  27203. },
  27204. foxLaying: {
  27205. height: math.unit(1.70, "feet"),
  27206. weight: math.unit(140, "lb"),
  27207. name: "Fox (Laying)",
  27208. image: {
  27209. source: "./media/characters/maxene-sita/fox-laying.svg",
  27210. extra: 910 / 572,
  27211. bottom: 71 / 981
  27212. }
  27213. },
  27214. kitsune: {
  27215. height: math.unit(10, "feet"),
  27216. weight: math.unit(800, "lb"),
  27217. name: "Kitsune",
  27218. image: {
  27219. source: "./media/characters/maxene-sita/kitsune.svg",
  27220. extra: 185 / 176,
  27221. bottom: 4.7 / 189.9
  27222. }
  27223. },
  27224. hellhound: {
  27225. height: math.unit(10, "feet"),
  27226. weight: math.unit(700, "lb"),
  27227. name: "Hellhound",
  27228. image: {
  27229. source: "./media/characters/maxene-sita/hellhound.svg",
  27230. extra: 1600 / 1545,
  27231. bottom: 81 / 1681
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(5 + 6 / 12, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27245. {
  27246. front: {
  27247. height: math.unit(3 + 4 / 12, "feet"),
  27248. weight: math.unit(70, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/maia/front.svg",
  27252. extra: 227 / 219.5,
  27253. bottom: 40 / 267
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(3 + 4 / 12, "feet"),
  27258. weight: math.unit(70, "lb"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/maia/back.svg",
  27262. extra: 237 / 225
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(3 + 4 / 12, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(5 + 10 / 12, "feet"),
  27279. weight: math.unit(197, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/jabaro/front.svg",
  27283. extra: 225 / 216,
  27284. bottom: 5.06 / 230
  27285. }
  27286. },
  27287. back: {
  27288. height: math.unit(5 + 10 / 12, "feet"),
  27289. weight: math.unit(197, "lb"),
  27290. name: "Back",
  27291. image: {
  27292. source: "./media/characters/jabaro/back.svg",
  27293. extra: 225 / 219,
  27294. bottom: 1.9 / 227
  27295. }
  27296. },
  27297. },
  27298. [
  27299. {
  27300. name: "Normal",
  27301. height: math.unit(5 + 10 / 12, "feet"),
  27302. default: true
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(5 + 8 / 12, "feet"),
  27311. weight: math.unit(139, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/risa/front.svg",
  27315. extra: 270 / 260,
  27316. bottom: 11.2 / 282
  27317. }
  27318. },
  27319. back: {
  27320. height: math.unit(5 + 8 / 12, "feet"),
  27321. weight: math.unit(139, "lb"),
  27322. name: "Back",
  27323. image: {
  27324. source: "./media/characters/risa/back.svg",
  27325. extra: 264 / 255,
  27326. bottom: 4 / 268
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(5 + 8 / 12, "feet"),
  27334. default: true
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(2 + 11 / 12, "feet"),
  27343. weight: math.unit(30, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/weatley/front.svg",
  27347. bottom: 10.7 / 414,
  27348. extra: 403.5 / 362
  27349. }
  27350. },
  27351. back: {
  27352. height: math.unit(2 + 11 / 12, "feet"),
  27353. weight: math.unit(30, "lb"),
  27354. name: "Back",
  27355. image: {
  27356. source: "./media/characters/weatley/back.svg",
  27357. bottom: 10.7 / 414,
  27358. extra: 403.5 / 362
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(2 + 11 / 12, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(5 + 2 / 12, "feet"),
  27375. weight: math.unit(50, "kg"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/mercury-crescent/front.svg",
  27379. extra: 1088 / 1033,
  27380. bottom: 18.9 / 1109
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(5 + 2 / 12, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(2, "feet"),
  27397. weight: math.unit(15, "kg"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/diamond-jones/front.svg",
  27401. extra: 727/723,
  27402. bottom: 46/773
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(2, "feet"),
  27410. default: true
  27411. },
  27412. ]
  27413. ))
  27414. characterMakers.push(() => makeCharacter(
  27415. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27416. {
  27417. front: {
  27418. height: math.unit(3, "feet"),
  27419. weight: math.unit(30, "kg"),
  27420. name: "Front",
  27421. image: {
  27422. source: "./media/characters/sweet-bit/front.svg",
  27423. extra: 675 / 567,
  27424. bottom: 27.7 / 703
  27425. }
  27426. },
  27427. },
  27428. [
  27429. {
  27430. name: "Normal",
  27431. height: math.unit(3, "feet"),
  27432. default: true
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27438. {
  27439. side: {
  27440. height: math.unit(9.178, "feet"),
  27441. weight: math.unit(500, "lb"),
  27442. name: "Side",
  27443. image: {
  27444. source: "./media/characters/umbrazen/side.svg",
  27445. extra: 1730 / 1473,
  27446. bottom: 34.6 / 1765
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(9.178, "feet"),
  27454. default: true
  27455. },
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27460. {
  27461. front: {
  27462. height: math.unit(10, "feet"),
  27463. weight: math.unit(750, "lb"),
  27464. name: "Front",
  27465. image: {
  27466. source: "./media/characters/arlist/front.svg",
  27467. extra: 961 / 778,
  27468. bottom: 6.2 / 986
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(10, "feet"),
  27476. default: true
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27482. {
  27483. front: {
  27484. height: math.unit(5 + 1 / 12, "feet"),
  27485. weight: math.unit(110, "lb"),
  27486. name: "Front",
  27487. image: {
  27488. source: "./media/characters/aradel/front.svg",
  27489. extra: 324 / 303,
  27490. bottom: 3.6 / 329.4
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(5 + 1 / 12, "feet"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27504. {
  27505. dressed: {
  27506. height: math.unit(3 + 8 / 12, "feet"),
  27507. weight: math.unit(50, "lb"),
  27508. name: "Dressed",
  27509. image: {
  27510. source: "./media/characters/serryn/dressed.svg",
  27511. extra: 1792 / 1656,
  27512. bottom: 43.5 / 1840
  27513. }
  27514. },
  27515. nude: {
  27516. height: math.unit(3 + 8 / 12, "feet"),
  27517. weight: math.unit(50, "lb"),
  27518. name: "Nude",
  27519. image: {
  27520. source: "./media/characters/serryn/nude.svg",
  27521. extra: 1792 / 1656,
  27522. bottom: 43.5 / 1840
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(3 + 8 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(7 + 10 / 12, "feet"),
  27539. weight: math.unit(255, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/xavier-thyme/front.svg",
  27543. extra: 3733 / 3642,
  27544. bottom: 131 / 3869
  27545. }
  27546. },
  27547. frontRaven: {
  27548. height: math.unit(7 + 10 / 12, "feet"),
  27549. weight: math.unit(255, "lb"),
  27550. name: "Front (Raven)",
  27551. image: {
  27552. source: "./media/characters/xavier-thyme/front-raven.svg",
  27553. extra: 4385 / 3642,
  27554. bottom: 131 / 4517
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(7 + 10 / 12, "feet"),
  27562. default: true
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27568. {
  27569. front: {
  27570. height: math.unit(1.6, "m"),
  27571. weight: math.unit(50, "kg"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/kiki/front.svg",
  27575. extra: 4682 / 3610,
  27576. bottom: 115 / 4777
  27577. }
  27578. },
  27579. },
  27580. [
  27581. {
  27582. name: "Normal",
  27583. height: math.unit(1.6, "meters"),
  27584. default: true
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(50, "m"),
  27593. weight: math.unit(500, "tonnes"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/ryoko/front.svg",
  27597. extra: 4632 / 3926,
  27598. bottom: 193 / 4823
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Normal",
  27605. height: math.unit(50, "meters"),
  27606. default: true
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(30, "m"),
  27615. weight: math.unit(22, "tonnes"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/elio/front.svg",
  27619. extra: 4582 / 3720,
  27620. bottom: 236 / 4828
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(30, "meters"),
  27628. default: true
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(6 + 3 / 12, "feet"),
  27637. weight: math.unit(120, "lb"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/azura/front.svg",
  27641. extra: 1149 / 1135,
  27642. bottom: 45 / 1194
  27643. }
  27644. },
  27645. frontClothed: {
  27646. height: math.unit(6 + 3 / 12, "feet"),
  27647. weight: math.unit(120, "lb"),
  27648. name: "Front (Clothed)",
  27649. image: {
  27650. source: "./media/characters/azura/front-clothed.svg",
  27651. extra: 1149 / 1135,
  27652. bottom: 45 / 1194
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(6 + 3 / 12, "feet"),
  27660. default: true
  27661. },
  27662. {
  27663. name: "Macro",
  27664. height: math.unit(20 + 6 / 12, "feet")
  27665. },
  27666. {
  27667. name: "Megamacro",
  27668. height: math.unit(12, "miles")
  27669. },
  27670. {
  27671. name: "Gigamacro",
  27672. height: math.unit(10000, "miles")
  27673. },
  27674. {
  27675. name: "Teramacro",
  27676. height: math.unit(900000, "miles")
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(12, "feet"),
  27685. weight: math.unit(1, "ton"),
  27686. capacity: math.unit(660000, "gallons"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/zeus/front.svg",
  27690. extra: 5005 / 4717,
  27691. bottom: 363 / 5388
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(12, "feet")
  27699. },
  27700. {
  27701. name: "Preferred Size",
  27702. height: math.unit(0.5, "miles"),
  27703. default: true
  27704. },
  27705. {
  27706. name: "Giga Horse",
  27707. height: math.unit(300, "miles")
  27708. },
  27709. {
  27710. name: "Riding Planets",
  27711. height: math.unit(30, "megameters")
  27712. },
  27713. {
  27714. name: "Cosmic Giant",
  27715. height: math.unit(3, "zettameters")
  27716. },
  27717. {
  27718. name: "Breeding God",
  27719. height: math.unit(9.92e22, "yottameters")
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27725. {
  27726. side: {
  27727. height: math.unit(9, "feet"),
  27728. weight: math.unit(1500, "kg"),
  27729. name: "Side",
  27730. image: {
  27731. source: "./media/characters/fang/side.svg",
  27732. extra: 924 / 866,
  27733. bottom: 47.5 / 972.3
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(9, "feet"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Macro",
  27745. height: math.unit(75 + 6 / 12, "feet")
  27746. },
  27747. {
  27748. name: "Teramacro",
  27749. height: math.unit(50000, "miles")
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(10, "feet"),
  27758. weight: math.unit(2, "tons"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/rekhit/front.svg",
  27762. extra: 2796 / 2590,
  27763. bottom: 225 / 3022
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(10, "feet"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(500, "feet")
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(7 + 6.451 / 12, "feet"),
  27784. weight: math.unit(310, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/dahlia-verrick/front.svg",
  27788. extra: 1488 / 1365,
  27789. bottom: 6.2 / 1495
  27790. }
  27791. },
  27792. back: {
  27793. height: math.unit(7 + 6.451 / 12, "feet"),
  27794. weight: math.unit(310, "lb"),
  27795. name: "Back",
  27796. image: {
  27797. source: "./media/characters/dahlia-verrick/back.svg",
  27798. extra: 1472 / 1351,
  27799. bottom: 5.28 / 1477
  27800. }
  27801. },
  27802. frontBusiness: {
  27803. height: math.unit(7 + 6.451 / 12, "feet"),
  27804. weight: math.unit(200, "lb"),
  27805. name: "Front (Business)",
  27806. image: {
  27807. source: "./media/characters/dahlia-verrick/front-business.svg",
  27808. extra: 1478 / 1381,
  27809. bottom: 5.5 / 1484
  27810. }
  27811. },
  27812. frontCasual: {
  27813. height: math.unit(7 + 6.451 / 12, "feet"),
  27814. weight: math.unit(200, "lb"),
  27815. name: "Front (Casual)",
  27816. image: {
  27817. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27818. extra: 1478 / 1381,
  27819. bottom: 5.5 / 1484
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Travel-Sized",
  27826. height: math.unit(7.45, "inches")
  27827. },
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(7 + 6.451 / 12, "feet"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Hitting the Town",
  27835. height: math.unit(37 + 8 / 12, "feet")
  27836. },
  27837. {
  27838. name: "Stomp in the Suburbs",
  27839. height: math.unit(964 + 9.728 / 12, "feet")
  27840. },
  27841. {
  27842. name: "Sit on the City",
  27843. height: math.unit(61747 + 10.592 / 12, "feet")
  27844. },
  27845. {
  27846. name: "Glomp the Globe",
  27847. height: math.unit(252919327 + 4.832 / 12, "feet")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(6 + 4 / 12, "feet"),
  27856. weight: math.unit(320, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/balina-mahigan/front.svg",
  27860. extra: 447 / 428,
  27861. bottom: 18 / 466
  27862. }
  27863. },
  27864. back: {
  27865. height: math.unit(6 + 4 / 12, "feet"),
  27866. weight: math.unit(320, "lb"),
  27867. name: "Back",
  27868. image: {
  27869. source: "./media/characters/balina-mahigan/back.svg",
  27870. extra: 445 / 428,
  27871. bottom: 4.07 / 448
  27872. }
  27873. },
  27874. arm: {
  27875. height: math.unit(1.88, "feet"),
  27876. name: "Arm",
  27877. image: {
  27878. source: "./media/characters/balina-mahigan/arm.svg"
  27879. }
  27880. },
  27881. backPort: {
  27882. height: math.unit(0.685, "feet"),
  27883. name: "Back Port",
  27884. image: {
  27885. source: "./media/characters/balina-mahigan/back-port.svg"
  27886. }
  27887. },
  27888. hoofpaw: {
  27889. height: math.unit(1.41, "feet"),
  27890. name: "Hoofpaw",
  27891. image: {
  27892. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27893. }
  27894. },
  27895. leftHandBack: {
  27896. height: math.unit(0.938, "feet"),
  27897. name: "Left Hand (Back)",
  27898. image: {
  27899. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27900. }
  27901. },
  27902. leftHandFront: {
  27903. height: math.unit(0.938, "feet"),
  27904. name: "Left Hand (Front)",
  27905. image: {
  27906. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27907. }
  27908. },
  27909. rightHandBack: {
  27910. height: math.unit(0.95, "feet"),
  27911. name: "Right Hand (Back)",
  27912. image: {
  27913. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27914. }
  27915. },
  27916. rightHandFront: {
  27917. height: math.unit(0.95, "feet"),
  27918. name: "Right Hand (Front)",
  27919. image: {
  27920. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(6 + 4 / 12, "feet"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(6, "feet"),
  27937. weight: math.unit(320, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/balina-mejeri/front.svg",
  27941. extra: 517 / 488,
  27942. bottom: 44.2 / 561
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Normal",
  27949. height: math.unit(6 + 4 / 12, "feet")
  27950. },
  27951. {
  27952. name: "Business",
  27953. height: math.unit(155, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27960. {
  27961. kneeling: {
  27962. height: math.unit(6 + 4 / 12, "feet"),
  27963. weight: math.unit(300 * 20, "lb"),
  27964. name: "Kneeling",
  27965. image: {
  27966. source: "./media/characters/balbarian/kneeling.svg",
  27967. extra: 922 / 862,
  27968. bottom: 42.4 / 965
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(6 + 4 / 12, "feet")
  27976. },
  27977. {
  27978. name: "Treasured",
  27979. height: math.unit(18 + 9 / 12, "feet"),
  27980. default: true
  27981. },
  27982. {
  27983. name: "Macro",
  27984. height: math.unit(900, "feet")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(6 + 4 / 12, "feet"),
  27993. weight: math.unit(325, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/balina-amarini/front.svg",
  27997. extra: 415 / 403,
  27998. bottom: 19 / 433.4
  27999. }
  28000. },
  28001. back: {
  28002. height: math.unit(6 + 4 / 12, "feet"),
  28003. weight: math.unit(325, "lb"),
  28004. name: "Back",
  28005. image: {
  28006. source: "./media/characters/balina-amarini/back.svg",
  28007. extra: 415 / 403,
  28008. bottom: 13.5 / 432
  28009. }
  28010. },
  28011. overdrive: {
  28012. height: math.unit(6 + 4 / 12, "feet"),
  28013. weight: math.unit(400, "lb"),
  28014. name: "Overdrive",
  28015. image: {
  28016. source: "./media/characters/balina-amarini/overdrive.svg",
  28017. extra: 269 / 259,
  28018. bottom: 12 / 282
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Boom",
  28025. height: math.unit(9 + 10 / 12, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(280, "feet")
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28036. {
  28037. goddess: {
  28038. height: math.unit(600, "feet"),
  28039. weight: math.unit(2000000, "tons"),
  28040. name: "Goddess",
  28041. image: {
  28042. source: "./media/characters/lady-kubwa/goddess.svg",
  28043. extra: 1240.5 / 1223,
  28044. bottom: 22 / 1263
  28045. }
  28046. },
  28047. goddesser: {
  28048. height: math.unit(900, "feet"),
  28049. weight: math.unit(20000000, "lb"),
  28050. name: "Goddess-er",
  28051. image: {
  28052. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28053. extra: 899 / 888,
  28054. bottom: 12.6 / 912
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Macro",
  28061. height: math.unit(600, "feet"),
  28062. default: true
  28063. },
  28064. {
  28065. name: "Megamacro",
  28066. height: math.unit(250, "miles")
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(7 + 7 / 12, "feet"),
  28075. weight: math.unit(250, "lb"),
  28076. name: "Front",
  28077. image: {
  28078. source: "./media/characters/tala-grovehorn/front.svg",
  28079. extra: 2636 / 2525,
  28080. bottom: 147 / 2781
  28081. }
  28082. },
  28083. back: {
  28084. height: math.unit(7 + 7 / 12, "feet"),
  28085. weight: math.unit(250, "lb"),
  28086. name: "Back",
  28087. image: {
  28088. source: "./media/characters/tala-grovehorn/back.svg",
  28089. extra: 2635 / 2539,
  28090. bottom: 100 / 2732.8
  28091. }
  28092. },
  28093. mouth: {
  28094. height: math.unit(1.15, "feet"),
  28095. name: "Mouth",
  28096. image: {
  28097. source: "./media/characters/tala-grovehorn/mouth.svg"
  28098. }
  28099. },
  28100. dick: {
  28101. height: math.unit(2.36, "feet"),
  28102. name: "Dick",
  28103. image: {
  28104. source: "./media/characters/tala-grovehorn/dick.svg"
  28105. }
  28106. },
  28107. slit: {
  28108. height: math.unit(0.61, "feet"),
  28109. name: "Slit",
  28110. image: {
  28111. source: "./media/characters/tala-grovehorn/slit.svg"
  28112. }
  28113. },
  28114. },
  28115. [
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(7 + 7 / 12, "feet"),
  28123. weight: math.unit(225, "lb"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/epona/front.svg",
  28127. extra: 2445 / 2290,
  28128. bottom: 251 / 2696
  28129. }
  28130. },
  28131. back: {
  28132. height: math.unit(7 + 7 / 12, "feet"),
  28133. weight: math.unit(225, "lb"),
  28134. name: "Back",
  28135. image: {
  28136. source: "./media/characters/epona/back.svg",
  28137. extra: 2546 / 2408,
  28138. bottom: 44 / 2589
  28139. }
  28140. },
  28141. genitals: {
  28142. height: math.unit(1.5, "feet"),
  28143. name: "Genitals",
  28144. image: {
  28145. source: "./media/characters/epona/genitals.svg"
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(7 + 7 / 12, "feet"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(7, "feet"),
  28162. weight: math.unit(518, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/avia-bloodbourn/front.svg",
  28166. extra: 1466 / 1350,
  28167. bottom: 65 / 1527
  28168. }
  28169. },
  28170. },
  28171. [
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(9.35, "feet"),
  28179. weight: math.unit(600, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/amera/front.svg",
  28183. extra: 891 / 818,
  28184. bottom: 30 / 922.7
  28185. }
  28186. },
  28187. back: {
  28188. height: math.unit(9.35, "feet"),
  28189. weight: math.unit(600, "lb"),
  28190. name: "Back",
  28191. image: {
  28192. source: "./media/characters/amera/back.svg",
  28193. extra: 876 / 824,
  28194. bottom: 6.8 / 884
  28195. }
  28196. },
  28197. dick: {
  28198. height: math.unit(2.14, "feet"),
  28199. name: "Dick",
  28200. image: {
  28201. source: "./media/characters/amera/dick.svg"
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(9.35, "feet"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28215. {
  28216. kneeling: {
  28217. height: math.unit(3 + 4 / 12, "feet"),
  28218. weight: math.unit(90, "lb"),
  28219. name: "Kneeling",
  28220. image: {
  28221. source: "./media/characters/rosewen/kneeling.svg",
  28222. extra: 1835 / 1571,
  28223. bottom: 27.7 / 1862
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(3 + 4 / 12, "feet"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(5 + 10 / 12, "feet"),
  28240. weight: math.unit(200, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/sabah/front.svg",
  28244. extra: 849 / 763,
  28245. bottom: 33.9 / 881
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(5 + 10 / 12, "feet"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28259. {
  28260. front: {
  28261. height: math.unit(3 + 5 / 12, "feet"),
  28262. weight: math.unit(40, "kg"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/purple-flame/front.svg",
  28266. extra: 1577 / 1412,
  28267. bottom: 97 / 1694
  28268. }
  28269. },
  28270. frontDressed: {
  28271. height: math.unit(3 + 5 / 12, "feet"),
  28272. weight: math.unit(40, "kg"),
  28273. name: "Front (Dressed)",
  28274. image: {
  28275. source: "./media/characters/purple-flame/front-dressed.svg",
  28276. extra: 1577 / 1412,
  28277. bottom: 97 / 1694
  28278. }
  28279. },
  28280. headphones: {
  28281. height: math.unit(0.85, "feet"),
  28282. name: "Headphones",
  28283. image: {
  28284. source: "./media/characters/purple-flame/headphones.svg"
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Really Small",
  28291. height: math.unit(5, "cm")
  28292. },
  28293. {
  28294. name: "Micro",
  28295. height: math.unit(1 + 5 / 12, "feet")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(3 + 5 / 12, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Minimacro",
  28304. height: math.unit(125, "feet")
  28305. },
  28306. {
  28307. name: "Macro",
  28308. height: math.unit(0.5, "miles")
  28309. },
  28310. {
  28311. name: "Megamacro",
  28312. height: math.unit(50, "miles")
  28313. },
  28314. {
  28315. name: "Gigantic",
  28316. height: math.unit(750, "miles")
  28317. },
  28318. {
  28319. name: "Planetary",
  28320. height: math.unit(15000, "miles")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(14, "feet"),
  28329. weight: math.unit(959, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/arsenal/front.svg",
  28333. extra: 2357 / 2157,
  28334. bottom: 93 / 2458
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(14, "feet"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28348. {
  28349. front: {
  28350. height: math.unit(6, "feet"),
  28351. weight: math.unit(150, "lb"),
  28352. name: "Front",
  28353. image: {
  28354. source: "./media/characters/adira/front.svg",
  28355. extra: 1078 / 1029,
  28356. bottom: 87 / 1166
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Micro",
  28363. height: math.unit(4, "inches"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(50, "feet")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(16, "feet"),
  28377. weight: math.unit(1000, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/grim/front.svg",
  28381. extra: 622 / 614,
  28382. bottom: 18.1 / 642
  28383. }
  28384. },
  28385. back: {
  28386. height: math.unit(16, "feet"),
  28387. weight: math.unit(1000, "lb"),
  28388. name: "Back",
  28389. image: {
  28390. source: "./media/characters/grim/back.svg",
  28391. extra: 610.6 / 602,
  28392. bottom: 40.8 / 652
  28393. }
  28394. },
  28395. hunched: {
  28396. height: math.unit(9.75, "feet"),
  28397. weight: math.unit(1000, "lb"),
  28398. name: "Hunched",
  28399. image: {
  28400. source: "./media/characters/grim/hunched.svg",
  28401. extra: 304 / 297,
  28402. bottom: 35.4 / 394
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(16, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(2.3, "meters"),
  28419. weight: math.unit(300, "lb"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/sinja/front-sfw.svg",
  28423. extra: 1393 / 1294,
  28424. bottom: 70 / 1463
  28425. }
  28426. },
  28427. frontNsfw: {
  28428. height: math.unit(2.3, "meters"),
  28429. weight: math.unit(300, "lb"),
  28430. name: "Front (NSFW)",
  28431. image: {
  28432. source: "./media/characters/sinja/front-nsfw.svg",
  28433. extra: 1393 / 1294,
  28434. bottom: 70 / 1463
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(2.3, "meters"),
  28439. weight: math.unit(300, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/sinja/back.svg",
  28443. extra: 1393 / 1294,
  28444. bottom: 70 / 1463
  28445. }
  28446. },
  28447. head: {
  28448. height: math.unit(1.771, "feet"),
  28449. name: "Head",
  28450. image: {
  28451. source: "./media/characters/sinja/head.svg"
  28452. }
  28453. },
  28454. slit: {
  28455. height: math.unit(0.8, "feet"),
  28456. name: "Slit",
  28457. image: {
  28458. source: "./media/characters/sinja/slit.svg"
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(2.3, "meters")
  28466. },
  28467. {
  28468. name: "Macro",
  28469. height: math.unit(91, "meters"),
  28470. default: true
  28471. },
  28472. {
  28473. name: "Megamacro",
  28474. height: math.unit(91440, "meters")
  28475. },
  28476. {
  28477. name: "Gigamacro",
  28478. height: math.unit(60960000, "meters")
  28479. },
  28480. {
  28481. name: "Teramacro",
  28482. height: math.unit(9144000000, "meters")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(1.7, "meters"),
  28491. weight: math.unit(130, "lb"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/kyu/front.svg",
  28495. extra: 415 / 395,
  28496. bottom: 5 / 420
  28497. }
  28498. },
  28499. head: {
  28500. height: math.unit(1.75, "feet"),
  28501. name: "Head",
  28502. image: {
  28503. source: "./media/characters/kyu/head.svg"
  28504. }
  28505. },
  28506. foot: {
  28507. height: math.unit(0.81, "feet"),
  28508. name: "Foot",
  28509. image: {
  28510. source: "./media/characters/kyu/foot.svg"
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(1.7, "meters")
  28518. },
  28519. {
  28520. name: "Macro",
  28521. height: math.unit(131, "feet"),
  28522. default: true
  28523. },
  28524. {
  28525. name: "Megamacro",
  28526. height: math.unit(91440, "meters")
  28527. },
  28528. {
  28529. name: "Gigamacro",
  28530. height: math.unit(60960000, "meters")
  28531. },
  28532. {
  28533. name: "Teramacro",
  28534. height: math.unit(9144000000, "meters")
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28540. {
  28541. front: {
  28542. height: math.unit(7 + 1 / 12, "feet"),
  28543. weight: math.unit(250, "lb"),
  28544. name: "Front",
  28545. image: {
  28546. source: "./media/characters/joey/front.svg",
  28547. extra: 1791 / 1537,
  28548. bottom: 28 / 1816
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Micro",
  28555. height: math.unit(3, "inches")
  28556. },
  28557. {
  28558. name: "Normal",
  28559. height: math.unit(7 + 1 / 12, "feet"),
  28560. default: true
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(165, "cm"),
  28569. weight: math.unit(140, "lb"),
  28570. name: "Front",
  28571. image: {
  28572. source: "./media/characters/sam-evans/front.svg",
  28573. extra: 3417 / 3230,
  28574. bottom: 41.3 / 3417
  28575. }
  28576. },
  28577. frontSixTails: {
  28578. height: math.unit(165, "cm"),
  28579. weight: math.unit(140, "lb"),
  28580. name: "Front-six-tails",
  28581. image: {
  28582. source: "./media/characters/sam-evans/front-six-tails.svg",
  28583. extra: 3417 / 3230,
  28584. bottom: 41.3 / 3417
  28585. }
  28586. },
  28587. back: {
  28588. height: math.unit(165, "cm"),
  28589. weight: math.unit(140, "lb"),
  28590. name: "Back",
  28591. image: {
  28592. source: "./media/characters/sam-evans/back.svg",
  28593. extra: 3227 / 3032,
  28594. bottom: 6.8 / 3234
  28595. }
  28596. },
  28597. face: {
  28598. height: math.unit(0.68, "feet"),
  28599. name: "Face",
  28600. image: {
  28601. source: "./media/characters/sam-evans/face.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(165, "cm"),
  28609. default: true
  28610. },
  28611. {
  28612. name: "Macro",
  28613. height: math.unit(100, "meters")
  28614. },
  28615. {
  28616. name: "Macro+",
  28617. height: math.unit(800, "meters")
  28618. },
  28619. {
  28620. name: "Macro++",
  28621. height: math.unit(3, "km")
  28622. },
  28623. {
  28624. name: "Macro+++",
  28625. height: math.unit(30, "km")
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(10, "feet"),
  28634. weight: math.unit(750, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/juliet-a/front.svg",
  28638. extra: 1766 / 1720,
  28639. bottom: 43 / 1809
  28640. }
  28641. },
  28642. back: {
  28643. height: math.unit(10, "feet"),
  28644. weight: math.unit(750, "lb"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/juliet-a/back.svg",
  28648. extra: 1781 / 1734,
  28649. bottom: 35 / 1810,
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(10, "feet"),
  28657. default: true
  28658. },
  28659. {
  28660. name: "Dragon Form",
  28661. height: math.unit(250, "feet")
  28662. },
  28663. {
  28664. name: "Macro",
  28665. height: math.unit(1000, "feet")
  28666. },
  28667. {
  28668. name: "Megamacro",
  28669. height: math.unit(10000, "feet")
  28670. }
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28675. {
  28676. regular: {
  28677. height: math.unit(7 + 3 / 12, "feet"),
  28678. weight: math.unit(260, "lb"),
  28679. name: "Regular",
  28680. image: {
  28681. source: "./media/characters/wild/regular.svg",
  28682. extra: 97.45 / 92,
  28683. bottom: 6.8 / 104.3
  28684. }
  28685. },
  28686. biggums: {
  28687. height: math.unit(8 + 6 / 12, "feet"),
  28688. weight: math.unit(425, "lb"),
  28689. name: "Biggums",
  28690. image: {
  28691. source: "./media/characters/wild/biggums.svg",
  28692. extra: 97.45 / 92,
  28693. bottom: 7.5 / 132.34
  28694. }
  28695. },
  28696. mawRegular: {
  28697. height: math.unit(1.24, "feet"),
  28698. name: "Maw (Regular)",
  28699. image: {
  28700. source: "./media/characters/wild/maw.svg"
  28701. }
  28702. },
  28703. mawBiggums: {
  28704. height: math.unit(1.47, "feet"),
  28705. name: "Maw (Biggums)",
  28706. image: {
  28707. source: "./media/characters/wild/maw.svg"
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(7 + 3 / 12, "feet"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28721. {
  28722. front: {
  28723. height: math.unit(2.5, "meters"),
  28724. weight: math.unit(200, "kg"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/vidar/front.svg",
  28728. extra: 2994 / 2795,
  28729. bottom: 56 / 3061
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(2.5, "meters"),
  28734. weight: math.unit(200, "kg"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/vidar/back.svg",
  28738. extra: 3131 / 2928,
  28739. bottom: 13.5 / 3141.5
  28740. }
  28741. },
  28742. feral: {
  28743. height: math.unit(2.5, "meters"),
  28744. weight: math.unit(2000, "kg"),
  28745. name: "Feral",
  28746. image: {
  28747. source: "./media/characters/vidar/feral.svg",
  28748. extra: 2790 / 1765,
  28749. bottom: 6 / 2796
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(2.5, "meters"),
  28757. default: true
  28758. },
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(100, "meters")
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(5 + 9 / 12, "feet"),
  28770. weight: math.unit(120, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/ash/front.svg",
  28774. extra: 2189 / 1961,
  28775. bottom: 5.2 / 2194
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(5 + 9 / 12, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(9, "feet"),
  28792. weight: math.unit(10000, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/gygabite/front.svg",
  28796. bottom: 31.7 / 537.8,
  28797. extra: 505 / 370
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(9, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(12, "feet"),
  28814. weight: math.unit(4000, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/p0tat0/front.svg",
  28818. extra: 1065 / 921,
  28819. bottom: 55.7 / 1121.25
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(12, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28833. {
  28834. side: {
  28835. height: math.unit(6.5, "feet"),
  28836. weight: math.unit(800, "lb"),
  28837. name: "Side",
  28838. image: {
  28839. source: "./media/characters/dusk/side.svg",
  28840. extra: 615 / 373,
  28841. bottom: 53 / 664
  28842. }
  28843. },
  28844. sitting: {
  28845. height: math.unit(7, "feet"),
  28846. weight: math.unit(800, "lb"),
  28847. name: "Sitting",
  28848. image: {
  28849. source: "./media/characters/dusk/sitting.svg",
  28850. extra: 753 / 425,
  28851. bottom: 33 / 774
  28852. }
  28853. },
  28854. head: {
  28855. height: math.unit(6.1, "feet"),
  28856. name: "Head",
  28857. image: {
  28858. source: "./media/characters/dusk/head.svg"
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(7, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(15, "feet"),
  28875. weight: math.unit(7000, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/jay-direwolf/front.svg",
  28879. extra: 1810 / 1732,
  28880. bottom: 66 / 1892
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(15, "feet"),
  28888. default: true
  28889. },
  28890. ]
  28891. ))
  28892. characterMakers.push(() => makeCharacter(
  28893. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28894. {
  28895. front: {
  28896. height: math.unit(4 + 9 / 12, "feet"),
  28897. weight: math.unit(130, "lb"),
  28898. name: "Front",
  28899. image: {
  28900. source: "./media/characters/anchovie/front.svg",
  28901. extra: 382 / 350,
  28902. bottom: 25 / 409
  28903. }
  28904. },
  28905. back: {
  28906. height: math.unit(4 + 9 / 12, "feet"),
  28907. weight: math.unit(130, "lb"),
  28908. name: "Back",
  28909. image: {
  28910. source: "./media/characters/anchovie/back.svg",
  28911. extra: 385 / 352,
  28912. bottom: 16.6 / 402
  28913. }
  28914. },
  28915. frontDressed: {
  28916. height: math.unit(4 + 9 / 12, "feet"),
  28917. weight: math.unit(130, "lb"),
  28918. name: "Front (Dressed)",
  28919. image: {
  28920. source: "./media/characters/anchovie/front-dressed.svg",
  28921. extra: 382 / 350,
  28922. bottom: 25 / 409
  28923. }
  28924. },
  28925. backDressed: {
  28926. height: math.unit(4 + 9 / 12, "feet"),
  28927. weight: math.unit(130, "lb"),
  28928. name: "Back (Dressed)",
  28929. image: {
  28930. source: "./media/characters/anchovie/back-dressed.svg",
  28931. extra: 385 / 352,
  28932. bottom: 16.6 / 402
  28933. }
  28934. },
  28935. },
  28936. [
  28937. {
  28938. name: "Micro",
  28939. height: math.unit(6.4, "inches")
  28940. },
  28941. {
  28942. name: "Normal",
  28943. height: math.unit(4 + 9 / 12, "feet"),
  28944. default: true
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28950. {
  28951. front: {
  28952. height: math.unit(2, "meters"),
  28953. weight: math.unit(180, "lb"),
  28954. name: "Front",
  28955. image: {
  28956. source: "./media/characters/acidrenamon/front.svg",
  28957. extra: 987 / 890,
  28958. bottom: 22.8 / 1009
  28959. }
  28960. },
  28961. back: {
  28962. height: math.unit(2, "meters"),
  28963. weight: math.unit(180, "lb"),
  28964. name: "Back",
  28965. image: {
  28966. source: "./media/characters/acidrenamon/back.svg",
  28967. extra: 983 / 891,
  28968. bottom: 8.4 / 992
  28969. }
  28970. },
  28971. head: {
  28972. height: math.unit(1.92, "feet"),
  28973. name: "Head",
  28974. image: {
  28975. source: "./media/characters/acidrenamon/head.svg"
  28976. }
  28977. },
  28978. rump: {
  28979. height: math.unit(1.72, "feet"),
  28980. name: "Rump",
  28981. image: {
  28982. source: "./media/characters/acidrenamon/rump.svg"
  28983. }
  28984. },
  28985. tail: {
  28986. height: math.unit(4.2, "feet"),
  28987. name: "Tail",
  28988. image: {
  28989. source: "./media/characters/acidrenamon/tail.svg"
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Normal",
  28996. height: math.unit(2, "meters"),
  28997. default: true
  28998. },
  28999. {
  29000. name: "Minimacro",
  29001. height: math.unit(7, "meters")
  29002. },
  29003. {
  29004. name: "Macro",
  29005. height: math.unit(200, "meters")
  29006. },
  29007. {
  29008. name: "Gigamacro",
  29009. height: math.unit(0.2, "earths")
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29015. {
  29016. front: {
  29017. height: math.unit(152, "feet"),
  29018. name: "Front",
  29019. image: {
  29020. source: "./media/characters/kenzie-lee/front.svg",
  29021. extra: 1869/1774,
  29022. bottom: 128/1997
  29023. }
  29024. },
  29025. side: {
  29026. height: math.unit(86, "feet"),
  29027. name: "Side",
  29028. image: {
  29029. source: "./media/characters/kenzie-lee/side.svg",
  29030. extra: 930/815,
  29031. bottom: 177/1107
  29032. }
  29033. },
  29034. paw: {
  29035. height: math.unit(15, "feet"),
  29036. name: "Paw",
  29037. image: {
  29038. source: "./media/characters/kenzie-lee/paw.svg"
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Kenzie Flea",
  29045. height: math.unit(2, "mm"),
  29046. default: true
  29047. },
  29048. {
  29049. name: "Micro",
  29050. height: math.unit(2, "inches")
  29051. },
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(152, "feet")
  29055. },
  29056. {
  29057. name: "Megamacro",
  29058. height: math.unit(7, "miles")
  29059. },
  29060. {
  29061. name: "Gigamacro",
  29062. height: math.unit(8000, "miles")
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6, "feet"),
  29071. name: "Front",
  29072. image: {
  29073. source: "./media/characters/withers/front.svg",
  29074. extra: 1935/1760,
  29075. bottom: 72/2007
  29076. }
  29077. },
  29078. back: {
  29079. height: math.unit(6, "feet"),
  29080. name: "Back",
  29081. image: {
  29082. source: "./media/characters/withers/back.svg",
  29083. extra: 1944/1792,
  29084. bottom: 12/1956
  29085. }
  29086. },
  29087. dressed: {
  29088. height: math.unit(6, "feet"),
  29089. name: "Dressed",
  29090. image: {
  29091. source: "./media/characters/withers/dressed.svg",
  29092. extra: 1937/1765,
  29093. bottom: 73/2010
  29094. }
  29095. },
  29096. phase1: {
  29097. height: math.unit(1.1, "feet"),
  29098. name: "Phase 1",
  29099. image: {
  29100. source: "./media/characters/withers/phase-1.svg",
  29101. extra: 1885/1232,
  29102. bottom: 0/1885
  29103. }
  29104. },
  29105. phase2: {
  29106. height: math.unit(1.05, "feet"),
  29107. name: "Phase 2",
  29108. image: {
  29109. source: "./media/characters/withers/phase-2.svg",
  29110. extra: 1792/1090,
  29111. bottom: 0/1792
  29112. }
  29113. },
  29114. partyWipe: {
  29115. height: math.unit(1.1, "feet"),
  29116. name: "Party Wipe",
  29117. image: {
  29118. source: "./media/characters/withers/party-wipe.svg",
  29119. extra: 1864/1207,
  29120. bottom: 0/1864
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Macro",
  29127. height: math.unit(167, "feet"),
  29128. default: true
  29129. },
  29130. {
  29131. name: "Megamacro",
  29132. height: math.unit(15, "miles")
  29133. }
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(6 + 7 / 12, "feet"),
  29141. weight: math.unit(250, "lb"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/nemoskii/front.svg",
  29145. extra: 2270 / 1734,
  29146. bottom: 86 / 2354
  29147. }
  29148. },
  29149. back: {
  29150. height: math.unit(6 + 7 / 12, "feet"),
  29151. weight: math.unit(250, "lb"),
  29152. name: "Back",
  29153. image: {
  29154. source: "./media/characters/nemoskii/back.svg",
  29155. extra: 1845 / 1788,
  29156. bottom: 10.5 / 1852
  29157. }
  29158. },
  29159. head: {
  29160. height: math.unit(1.31, "feet"),
  29161. name: "Head",
  29162. image: {
  29163. source: "./media/characters/nemoskii/head.svg"
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Micro",
  29170. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29171. },
  29172. {
  29173. name: "Normal",
  29174. height: math.unit(6 + 7 / 12, "feet"),
  29175. default: true
  29176. },
  29177. {
  29178. name: "Macro",
  29179. height: math.unit((6 + 7 / 12) * 150, "feet")
  29180. },
  29181. {
  29182. name: "Macro+",
  29183. height: math.unit((6 + 7 / 12) * 500, "feet")
  29184. },
  29185. {
  29186. name: "Megamacro",
  29187. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(1, "mile"),
  29196. weight: math.unit(265261.9, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/shui/front.svg",
  29200. extra: 1633 / 1564,
  29201. bottom: 91.5 / 1726
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(1, "mile"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(12 + 6 / 12, "feet"),
  29218. weight: math.unit(1342, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/arokh-takakura/front.svg",
  29222. extra: 1089 / 1043,
  29223. bottom: 77.4 / 1176.7
  29224. }
  29225. },
  29226. back: {
  29227. height: math.unit(12 + 6 / 12, "feet"),
  29228. weight: math.unit(1342, "lb"),
  29229. name: "Back",
  29230. image: {
  29231. source: "./media/characters/arokh-takakura/back.svg",
  29232. extra: 1046 / 1019,
  29233. bottom: 102 / 1150
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Big",
  29240. height: math.unit(12 + 6 / 12, "feet"),
  29241. default: true
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(5 + 6 / 12, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/theo/front.svg",
  29254. extra: 1184 / 1131,
  29255. bottom: 7.4 / 1191
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Micro",
  29262. height: math.unit(5, "inches")
  29263. },
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(5 + 6 / 12, "feet"),
  29267. default: true
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(5 + 9 / 12, "feet"),
  29276. weight: math.unit(130, "lb"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/cecelia-swift/front.svg",
  29280. extra: 502 / 484,
  29281. bottom: 23 / 523
  29282. }
  29283. },
  29284. back: {
  29285. height: math.unit(5 + 9 / 12, "feet"),
  29286. weight: math.unit(130, "lb"),
  29287. name: "Back",
  29288. image: {
  29289. source: "./media/characters/cecelia-swift/back.svg",
  29290. extra: 499 / 485,
  29291. bottom: 12 / 511
  29292. }
  29293. },
  29294. head: {
  29295. height: math.unit(0.90, "feet"),
  29296. name: "Head",
  29297. image: {
  29298. source: "./media/characters/cecelia-swift/head.svg"
  29299. }
  29300. },
  29301. rump: {
  29302. height: math.unit(1.75, "feet"),
  29303. name: "Rump",
  29304. image: {
  29305. source: "./media/characters/cecelia-swift/rump.svg"
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(5 + 9 / 12, "feet"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Big",
  29317. height: math.unit(50, "feet")
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(100, "feet")
  29322. },
  29323. {
  29324. name: "Macro+",
  29325. height: math.unit(500, "feet")
  29326. },
  29327. {
  29328. name: "Macro++",
  29329. height: math.unit(1000, "feet")
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(6, "feet"),
  29338. weight: math.unit(150, "lb"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/kaunan/front.svg",
  29342. extra: 2890 / 2523,
  29343. bottom: 49 / 2939
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Macro",
  29350. height: math.unit(150, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29357. {
  29358. dressed: {
  29359. height: math.unit(175, "cm"),
  29360. weight: math.unit(60, "kg"),
  29361. name: "Dressed",
  29362. image: {
  29363. source: "./media/characters/fei/dressed.svg",
  29364. extra: 1402/1278,
  29365. bottom: 27/1429
  29366. }
  29367. },
  29368. nude: {
  29369. height: math.unit(175, "cm"),
  29370. weight: math.unit(60, "kg"),
  29371. name: "Nude",
  29372. image: {
  29373. source: "./media/characters/fei/nude.svg",
  29374. extra: 1402/1278,
  29375. bottom: 27/1429
  29376. }
  29377. },
  29378. heels: {
  29379. height: math.unit(0.466, "feet"),
  29380. name: "Heels",
  29381. image: {
  29382. source: "./media/characters/fei/heels.svg",
  29383. extra: 156/152,
  29384. bottom: 28/184
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Mortal",
  29391. height: math.unit(175, "cm")
  29392. },
  29393. {
  29394. name: "Normal",
  29395. height: math.unit(3500, "m")
  29396. },
  29397. {
  29398. name: "Stroll",
  29399. height: math.unit(18.4, "km"),
  29400. default: true
  29401. },
  29402. {
  29403. name: "Showoff",
  29404. height: math.unit(175, "km")
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(7, "feet"),
  29413. weight: math.unit(1000, "kg"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/edrax/front.svg",
  29417. extra: 2838 / 2550,
  29418. bottom: 130 / 2968
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Small",
  29425. height: math.unit(7, "feet")
  29426. },
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(1500, "meters")
  29430. },
  29431. {
  29432. name: "Mega",
  29433. height: math.unit(12000000, "km"),
  29434. default: true
  29435. },
  29436. {
  29437. name: "Megamacro",
  29438. height: math.unit(10600000, "lightyears")
  29439. },
  29440. {
  29441. name: "Hypermacro",
  29442. height: math.unit(256, "yottameters")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(10, "feet"),
  29451. weight: math.unit(750, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/clove/front.svg",
  29455. extra: 1918/1751,
  29456. bottom: 52/1970
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(10, "feet"),
  29461. weight: math.unit(750, "lb"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/clove/back.svg",
  29465. extra: 1912/1747,
  29466. bottom: 50/1962
  29467. }
  29468. },
  29469. },
  29470. [
  29471. {
  29472. name: "Normal",
  29473. height: math.unit(10, "feet"),
  29474. default: true
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29480. {
  29481. front: {
  29482. height: math.unit(4, "feet"),
  29483. weight: math.unit(50, "lb"),
  29484. name: "Front",
  29485. image: {
  29486. source: "./media/characters/alex-rabbit/front.svg",
  29487. extra: 507 / 458,
  29488. bottom: 18.5 / 527
  29489. }
  29490. },
  29491. back: {
  29492. height: math.unit(4, "feet"),
  29493. weight: math.unit(50, "lb"),
  29494. name: "Back",
  29495. image: {
  29496. source: "./media/characters/alex-rabbit/back.svg",
  29497. extra: 502 / 460,
  29498. bottom: 18.9 / 521
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(4, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(1 + 3 / 12, "feet"),
  29515. weight: math.unit(80, "lb"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/zander-rose/front.svg",
  29519. extra: 916 / 797,
  29520. bottom: 17 / 933
  29521. }
  29522. },
  29523. back: {
  29524. height: math.unit(1 + 3 / 12, "feet"),
  29525. weight: math.unit(80, "lb"),
  29526. name: "Back",
  29527. image: {
  29528. source: "./media/characters/zander-rose/back.svg",
  29529. extra: 903 / 779,
  29530. bottom: 31 / 934
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(1 + 3 / 12, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29544. {
  29545. anthro: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Anthro",
  29549. image: {
  29550. source: "./media/characters/razz/anthro.svg",
  29551. extra: 1437 / 1343,
  29552. bottom: 48 / 1485
  29553. }
  29554. },
  29555. feral: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Feral",
  29559. image: {
  29560. source: "./media/characters/razz/feral.svg",
  29561. extra: 2569 / 1385,
  29562. bottom: 95 / 2664
  29563. }
  29564. },
  29565. },
  29566. [
  29567. {
  29568. name: "Normal",
  29569. height: math.unit(6, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29576. {
  29577. front: {
  29578. height: math.unit(9 + 4 / 12, "feet"),
  29579. weight: math.unit(500, "lb"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/morrigan/front.svg",
  29583. extra: 2707 / 2579,
  29584. bottom: 156 / 2863
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(9 + 4 / 12, "feet"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(5, "stories"),
  29601. weight: math.unit(4000, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/jenene/front.svg",
  29605. extra: 1780 / 1710,
  29606. bottom: 57 / 1837
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(5, "stories"),
  29614. default: true
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29620. {
  29621. taurSfw: {
  29622. height: math.unit(10, "meters"),
  29623. weight: math.unit(17500, "kg"),
  29624. name: "Taur",
  29625. image: {
  29626. source: "./media/characters/faey/taur-sfw.svg",
  29627. extra: 1200 / 968,
  29628. bottom: 41 / 1241
  29629. }
  29630. },
  29631. chestmaw: {
  29632. height: math.unit(2.01, "meters"),
  29633. name: "Chestmaw",
  29634. image: {
  29635. source: "./media/characters/faey/chestmaw.svg"
  29636. }
  29637. },
  29638. foot: {
  29639. height: math.unit(2.43, "meters"),
  29640. name: "Foot",
  29641. image: {
  29642. source: "./media/characters/faey/foot.svg"
  29643. }
  29644. },
  29645. jaws: {
  29646. height: math.unit(1.66, "meters"),
  29647. name: "Jaws",
  29648. image: {
  29649. source: "./media/characters/faey/jaws.svg"
  29650. }
  29651. },
  29652. tongues: {
  29653. height: math.unit(2.01, "meters"),
  29654. name: "Tongues",
  29655. image: {
  29656. source: "./media/characters/faey/tongues.svg"
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Small",
  29663. height: math.unit(10, "meters"),
  29664. default: true
  29665. },
  29666. {
  29667. name: "Big",
  29668. height: math.unit(500000, "km")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(7, "feet"),
  29677. weight: math.unit(275, "lb"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/roku/front.svg",
  29681. extra: 903 / 878,
  29682. bottom: 37 / 940
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Normal",
  29689. height: math.unit(7, "feet"),
  29690. default: true
  29691. },
  29692. {
  29693. name: "Macro",
  29694. height: math.unit(500, "feet")
  29695. },
  29696. {
  29697. name: "Megamacro",
  29698. height: math.unit(200, "miles")
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(6 + 2 / 12, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/lira/front.svg",
  29711. extra: 1727 / 1605,
  29712. bottom: 26 / 1753
  29713. }
  29714. },
  29715. back: {
  29716. height: math.unit(6 + 2 / 12, "feet"),
  29717. weight: math.unit(150, "lb"),
  29718. name: "Back",
  29719. image: {
  29720. source: "./media/characters/lira/back.svg",
  29721. extra: 1713/1621,
  29722. bottom: 20/1733
  29723. }
  29724. },
  29725. hand: {
  29726. height: math.unit(0.75, "feet"),
  29727. name: "Hand",
  29728. image: {
  29729. source: "./media/characters/lira/hand.svg"
  29730. }
  29731. },
  29732. maw: {
  29733. height: math.unit(0.65, "feet"),
  29734. name: "Maw",
  29735. image: {
  29736. source: "./media/characters/lira/maw.svg"
  29737. }
  29738. },
  29739. pawDigi: {
  29740. height: math.unit(1.6, "feet"),
  29741. name: "Paw Digi",
  29742. image: {
  29743. source: "./media/characters/lira/paw-digi.svg"
  29744. }
  29745. },
  29746. pawPlanti: {
  29747. height: math.unit(1.4, "feet"),
  29748. name: "Paw Planti",
  29749. image: {
  29750. source: "./media/characters/lira/paw-planti.svg"
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(6 + 2 / 12, "feet"),
  29758. default: true
  29759. },
  29760. {
  29761. name: "Macro",
  29762. height: math.unit(100, "feet")
  29763. },
  29764. {
  29765. name: "Macro²",
  29766. height: math.unit(1600, "feet")
  29767. },
  29768. {
  29769. name: "Planetary",
  29770. height: math.unit(20, "earths")
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(6, "feet"),
  29779. weight: math.unit(150, "lb"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/hadjet/front.svg",
  29783. extra: 1480 / 1346,
  29784. bottom: 26 / 1506
  29785. }
  29786. },
  29787. frontNsfw: {
  29788. height: math.unit(6, "feet"),
  29789. weight: math.unit(150, "lb"),
  29790. name: "Front (NSFW)",
  29791. image: {
  29792. source: "./media/characters/hadjet/front-nsfw.svg",
  29793. extra: 1440 / 1358,
  29794. bottom: 52 / 1492
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Macro",
  29801. height: math.unit(10, "stories"),
  29802. default: true
  29803. },
  29804. {
  29805. name: "Megamacro",
  29806. height: math.unit(1.5, "miles")
  29807. },
  29808. {
  29809. name: "Megamacro+",
  29810. height: math.unit(5, "miles")
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29816. {
  29817. side: {
  29818. height: math.unit(106, "feet"),
  29819. weight: math.unit(500, "tonnes"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/kodran/side.svg",
  29823. extra: 553 / 480,
  29824. bottom: 33 / 586
  29825. }
  29826. },
  29827. front: {
  29828. height: math.unit(132, "feet"),
  29829. weight: math.unit(500, "tonnes"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/kodran/front.svg",
  29833. extra: 667 / 643,
  29834. bottom: 42 / 709
  29835. }
  29836. },
  29837. flying: {
  29838. height: math.unit(350, "feet"),
  29839. weight: math.unit(500, "tonnes"),
  29840. name: "Flying",
  29841. image: {
  29842. source: "./media/characters/kodran/flying.svg"
  29843. }
  29844. },
  29845. foot: {
  29846. height: math.unit(33, "feet"),
  29847. name: "Foot",
  29848. image: {
  29849. source: "./media/characters/kodran/foot.svg"
  29850. }
  29851. },
  29852. footFront: {
  29853. height: math.unit(19, "feet"),
  29854. name: "Foot (Front)",
  29855. image: {
  29856. source: "./media/characters/kodran/foot-front.svg",
  29857. extra: 261 / 261,
  29858. bottom: 91 / 352
  29859. }
  29860. },
  29861. headFront: {
  29862. height: math.unit(53, "feet"),
  29863. name: "Head (Front)",
  29864. image: {
  29865. source: "./media/characters/kodran/head-front.svg"
  29866. }
  29867. },
  29868. headSide: {
  29869. height: math.unit(65, "feet"),
  29870. name: "Head (Side)",
  29871. image: {
  29872. source: "./media/characters/kodran/head-side.svg"
  29873. }
  29874. },
  29875. throat: {
  29876. height: math.unit(79, "feet"),
  29877. name: "Throat",
  29878. image: {
  29879. source: "./media/characters/kodran/throat.svg"
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Large",
  29886. height: math.unit(106, "feet"),
  29887. default: true
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29893. {
  29894. side: {
  29895. height: math.unit(11, "feet"),
  29896. weight: math.unit(150, "lb"),
  29897. name: "Side",
  29898. image: {
  29899. source: "./media/characters/pyxaron/side.svg",
  29900. extra: 305 / 195,
  29901. bottom: 17 / 322
  29902. }
  29903. },
  29904. },
  29905. [
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(11, "feet"),
  29909. default: true
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(6, "feet"),
  29918. weight: math.unit(150, "lb"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/meep/front.svg",
  29922. extra: 88 / 80,
  29923. bottom: 6 / 94
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "Fun Sized",
  29930. height: math.unit(2, "inches"),
  29931. default: true
  29932. },
  29933. {
  29934. name: "Friend Sized",
  29935. height: math.unit(8, "inches")
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(15, "feet"),
  29944. weight: math.unit(2500, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/holly-rabbit/front.svg",
  29948. extra: 1433 / 1233,
  29949. bottom: 125 / 1558
  29950. }
  29951. },
  29952. dick: {
  29953. height: math.unit(4.6, "feet"),
  29954. name: "Dick",
  29955. image: {
  29956. source: "./media/characters/holly-rabbit/dick.svg"
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(15, "feet"),
  29964. default: true
  29965. },
  29966. {
  29967. name: "Macro",
  29968. height: math.unit(250, "feet")
  29969. },
  29970. {
  29971. name: "Macro+",
  29972. height: math.unit(2500, "feet")
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29978. {
  29979. front: {
  29980. height: math.unit(3.02, "meters"),
  29981. weight: math.unit(500, "kg"),
  29982. name: "Front",
  29983. image: {
  29984. source: "./media/characters/drena/front.svg",
  29985. extra: 282 / 243,
  29986. bottom: 8 / 290
  29987. }
  29988. },
  29989. side: {
  29990. height: math.unit(3.02, "meters"),
  29991. weight: math.unit(500, "kg"),
  29992. name: "Side",
  29993. image: {
  29994. source: "./media/characters/drena/side.svg",
  29995. extra: 280 / 245,
  29996. bottom: 10 / 290
  29997. }
  29998. },
  29999. back: {
  30000. height: math.unit(3.02, "meters"),
  30001. weight: math.unit(500, "kg"),
  30002. name: "Back",
  30003. image: {
  30004. source: "./media/characters/drena/back.svg",
  30005. extra: 278 / 243,
  30006. bottom: 2 / 280
  30007. }
  30008. },
  30009. foot: {
  30010. height: math.unit(0.75, "meters"),
  30011. name: "Foot",
  30012. image: {
  30013. source: "./media/characters/drena/foot.svg"
  30014. }
  30015. },
  30016. maw: {
  30017. height: math.unit(0.82, "meters"),
  30018. name: "Maw",
  30019. image: {
  30020. source: "./media/characters/drena/maw.svg"
  30021. }
  30022. },
  30023. eating: {
  30024. height: math.unit(0.75, "meters"),
  30025. name: "Eating",
  30026. image: {
  30027. source: "./media/characters/drena/eating.svg"
  30028. }
  30029. },
  30030. rump: {
  30031. height: math.unit(0.93, "meters"),
  30032. name: "Rump",
  30033. image: {
  30034. source: "./media/characters/drena/rump.svg"
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(3.02, "meters"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(6 + 4 / 12, "feet"),
  30051. weight: math.unit(250, "lb"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/remmyzilla/front.svg",
  30055. extra: 4033 / 3588,
  30056. bottom: 123 / 4156
  30057. }
  30058. },
  30059. back: {
  30060. height: math.unit(6 + 4 / 12, "feet"),
  30061. weight: math.unit(250, "lb"),
  30062. name: "Back",
  30063. image: {
  30064. source: "./media/characters/remmyzilla/back.svg",
  30065. extra: 2687 / 2555,
  30066. bottom: 48 / 2735
  30067. }
  30068. },
  30069. paw: {
  30070. height: math.unit(1.73, "feet"),
  30071. name: "Paw",
  30072. image: {
  30073. source: "./media/characters/remmyzilla/paw.svg"
  30074. },
  30075. extraAttributes: {
  30076. "toeSize": {
  30077. name: "Toe Size",
  30078. power: 2,
  30079. type: "area",
  30080. base: math.unit(0.0035, "m^2")
  30081. },
  30082. "padSize": {
  30083. name: "Pad Size",
  30084. power: 2,
  30085. type: "area",
  30086. base: math.unit(0.015, "m^2")
  30087. },
  30088. "pawsize": {
  30089. name: "Paw Size",
  30090. power: 2,
  30091. type: "area",
  30092. base: math.unit(0.072, "m^2")
  30093. },
  30094. }
  30095. },
  30096. maw: {
  30097. height: math.unit(1.73, "feet"),
  30098. name: "Maw",
  30099. image: {
  30100. source: "./media/characters/remmyzilla/maw.svg"
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(6 + 4 / 12, "feet")
  30108. },
  30109. {
  30110. name: "Minimacro",
  30111. height: math.unit(12 + 8 / 12, "feet")
  30112. },
  30113. {
  30114. name: "Normal",
  30115. height: math.unit(640, "feet"),
  30116. default: true
  30117. },
  30118. {
  30119. name: "Megamacro",
  30120. height: math.unit(6400, "feet")
  30121. },
  30122. {
  30123. name: "Gigamacro",
  30124. height: math.unit(64000, "miles")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(2.5, "meters"),
  30133. weight: math.unit(300, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/lawrence/front.svg",
  30137. extra: 357 / 335,
  30138. bottom: 30 / 387
  30139. }
  30140. },
  30141. back: {
  30142. height: math.unit(2.5, "meters"),
  30143. weight: math.unit(300, "lb"),
  30144. name: "Back",
  30145. image: {
  30146. source: "./media/characters/lawrence/back.svg",
  30147. extra: 357 / 338,
  30148. bottom: 16 / 373
  30149. }
  30150. },
  30151. head: {
  30152. height: math.unit(0.9, "meter"),
  30153. name: "Head",
  30154. image: {
  30155. source: "./media/characters/lawrence/head.svg"
  30156. }
  30157. },
  30158. maw: {
  30159. height: math.unit(0.7, "meter"),
  30160. name: "Maw",
  30161. image: {
  30162. source: "./media/characters/lawrence/maw.svg"
  30163. }
  30164. },
  30165. footBottom: {
  30166. height: math.unit(0.5, "meter"),
  30167. name: "Foot (Bottom)",
  30168. image: {
  30169. source: "./media/characters/lawrence/foot-bottom.svg"
  30170. }
  30171. },
  30172. footTop: {
  30173. height: math.unit(0.5, "meter"),
  30174. name: "Foot (Top)",
  30175. image: {
  30176. source: "./media/characters/lawrence/foot-top.svg"
  30177. }
  30178. },
  30179. },
  30180. [
  30181. {
  30182. name: "Normal",
  30183. height: math.unit(2.5, "meters"),
  30184. default: true
  30185. },
  30186. {
  30187. name: "Macro",
  30188. height: math.unit(95, "meters")
  30189. },
  30190. {
  30191. name: "Megamacro",
  30192. height: math.unit(150, "km")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30198. {
  30199. front: {
  30200. height: math.unit(4.2, "meters"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/sydney/front.svg",
  30204. extra: 1323 / 1277,
  30205. bottom: 111 / 1434
  30206. }
  30207. },
  30208. },
  30209. [
  30210. {
  30211. name: "Normal",
  30212. height: math.unit(4.2, "meters"),
  30213. default: true
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30219. {
  30220. back: {
  30221. height: math.unit(201, "feet"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/jessica/back.svg",
  30225. extra: 273 / 259,
  30226. bottom: 7 / 280
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Normal",
  30233. height: math.unit(201, "feet"),
  30234. default: true
  30235. },
  30236. {
  30237. name: "Megamacro",
  30238. height: math.unit(8, "miles")
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30244. {
  30245. side: {
  30246. height: math.unit(5.6, "m"),
  30247. weight: math.unit(8000, "kg"),
  30248. name: "Side",
  30249. image: {
  30250. source: "./media/characters/victoria/side.svg",
  30251. extra: 1542/1229,
  30252. bottom: 124/1666
  30253. }
  30254. },
  30255. maw: {
  30256. height: math.unit(7.14, "feet"),
  30257. name: "Maw",
  30258. image: {
  30259. source: "./media/characters/victoria/maw.svg"
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(5.6, "m"),
  30267. default: true
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30273. {
  30274. front: {
  30275. height: math.unit(5 + 6 / 12, "feet"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/cat/front.svg",
  30279. extra: 1449/1295,
  30280. bottom: 34/1483
  30281. },
  30282. form: "cat",
  30283. default: true
  30284. },
  30285. back: {
  30286. height: math.unit(5 + 6 / 12, "feet"),
  30287. name: "Back",
  30288. image: {
  30289. source: "./media/characters/cat/back.svg",
  30290. extra: 1466/1301,
  30291. bottom: 19/1485
  30292. },
  30293. form: "cat"
  30294. },
  30295. taur: {
  30296. height: math.unit(7, "feet"),
  30297. name: "Taur",
  30298. image: {
  30299. source: "./media/characters/cat/taur.svg",
  30300. extra: 1389/1233,
  30301. bottom: 83/1472
  30302. },
  30303. form: "taur",
  30304. default: true
  30305. },
  30306. lucarioFront: {
  30307. height: math.unit(4, "feet"),
  30308. name: "Lucario (Front)",
  30309. image: {
  30310. source: "./media/characters/cat/lucario-front.svg",
  30311. extra: 1149/1019,
  30312. bottom: 84/1233
  30313. },
  30314. form: "lucario",
  30315. default: true
  30316. },
  30317. lucarioBack: {
  30318. height: math.unit(4, "feet"),
  30319. name: "Lucario (Back)",
  30320. image: {
  30321. source: "./media/characters/cat/lucario-back.svg",
  30322. extra: 1190/1059,
  30323. bottom: 33/1223
  30324. },
  30325. form: "lucario"
  30326. },
  30327. megaLucario: {
  30328. height: math.unit(4, "feet"),
  30329. name: "Mega Lucario",
  30330. image: {
  30331. source: "./media/characters/cat/mega-lucario.svg",
  30332. extra: 1515 / 1319,
  30333. bottom: 63 / 1578
  30334. },
  30335. form: "lucario"
  30336. },
  30337. nickit: {
  30338. height: math.unit(2, "feet"),
  30339. name: "Nickit",
  30340. image: {
  30341. source: "./media/characters/cat/nickit.svg",
  30342. extra: 1980 / 1585,
  30343. bottom: 102 / 2082
  30344. },
  30345. form: "nickit",
  30346. default: true
  30347. },
  30348. lopunnyFront: {
  30349. height: math.unit(5, "feet"),
  30350. name: "Lopunny (Front)",
  30351. image: {
  30352. source: "./media/characters/cat/lopunny-front.svg",
  30353. extra: 1782 / 1469,
  30354. bottom: 38 / 1820
  30355. },
  30356. form: "lopunny",
  30357. default: true
  30358. },
  30359. lopunnyBack: {
  30360. height: math.unit(5, "feet"),
  30361. name: "Lopunny (Back)",
  30362. image: {
  30363. source: "./media/characters/cat/lopunny-back.svg",
  30364. extra: 1660 / 1490,
  30365. bottom: 25 / 1685
  30366. },
  30367. form: "lopunny"
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Really small",
  30373. height: math.unit(1, "nm")
  30374. },
  30375. {
  30376. name: "Micro",
  30377. height: math.unit(5, "inches")
  30378. },
  30379. {
  30380. name: "Normal",
  30381. height: math.unit(5 + 6 / 12, "feet"),
  30382. default: true
  30383. },
  30384. {
  30385. name: "Macro",
  30386. height: math.unit(50, "feet")
  30387. },
  30388. {
  30389. name: "Macro+",
  30390. height: math.unit(150, "feet")
  30391. },
  30392. {
  30393. name: "Megamacro",
  30394. height: math.unit(100, "miles")
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(63.4, "meters"),
  30403. weight: math.unit(3.28349e+6, "kilograms"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/kirina-violet/front.svg",
  30407. extra: 2812 / 2725,
  30408. bottom: 0 / 2812
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(63.4, "meters"),
  30413. weight: math.unit(3.28349e+6, "kilograms"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/kirina-violet/back.svg",
  30417. extra: 2812 / 2725,
  30418. bottom: 0 / 2812
  30419. }
  30420. },
  30421. mouth: {
  30422. height: math.unit(4.35, "meters"),
  30423. name: "Mouth",
  30424. image: {
  30425. source: "./media/characters/kirina-violet/mouth.svg"
  30426. }
  30427. },
  30428. paw: {
  30429. height: math.unit(5.6, "meters"),
  30430. name: "Paw",
  30431. image: {
  30432. source: "./media/characters/kirina-violet/paw.svg"
  30433. }
  30434. },
  30435. tail: {
  30436. height: math.unit(18, "meters"),
  30437. name: "Tail",
  30438. image: {
  30439. source: "./media/characters/kirina-violet/tail.svg"
  30440. }
  30441. },
  30442. },
  30443. [
  30444. {
  30445. name: "Macro",
  30446. height: math.unit(63.4, "meters"),
  30447. default: true
  30448. },
  30449. ]
  30450. ))
  30451. characterMakers.push(() => makeCharacter(
  30452. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30453. {
  30454. front: {
  30455. height: math.unit(75, "feet"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/cat-gigachu/front.svg",
  30459. extra: 1239/1027,
  30460. bottom: 32/1271
  30461. }
  30462. },
  30463. back: {
  30464. height: math.unit(75, "feet"),
  30465. name: "Back",
  30466. image: {
  30467. source: "./media/characters/cat-gigachu/back.svg",
  30468. extra: 1229/1030,
  30469. bottom: 9/1238
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Dynamax",
  30476. height: math.unit(75, "feet"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/sfaiyan/front.svg",
  30490. extra: 999 / 978,
  30491. bottom: 5 / 1004
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(1.82, "meters")
  30499. },
  30500. {
  30501. name: "Giant",
  30502. height: math.unit(2.27, "km"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(179, "cm"),
  30512. weight: math.unit(100, "kg"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/raunehkeli/front.svg",
  30516. extra: 1934 / 1926,
  30517. bottom: 0 / 1934
  30518. }
  30519. },
  30520. },
  30521. [
  30522. {
  30523. name: "Normal",
  30524. height: math.unit(179, "cm")
  30525. },
  30526. {
  30527. name: "Maximum",
  30528. height: math.unit(575, "meters"),
  30529. default: true
  30530. },
  30531. ]
  30532. ))
  30533. characterMakers.push(() => makeCharacter(
  30534. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30535. {
  30536. front: {
  30537. height: math.unit(6, "feet"),
  30538. weight: math.unit(150, "lb"),
  30539. name: "Front",
  30540. image: {
  30541. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30542. extra: 2625 / 2518,
  30543. bottom: 60 / 2685
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(6 + 2 / 12, "feet")
  30551. },
  30552. {
  30553. name: "Macro",
  30554. height: math.unit(1180, "feet"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(5 + 6 / 12, "feet"),
  30564. weight: math.unit(108, "lb"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/lilith-zott/front.svg",
  30568. extra: 2510 / 2238,
  30569. bottom: 100 / 2610
  30570. }
  30571. },
  30572. frontDressed: {
  30573. height: math.unit(5 + 6 / 12, "feet"),
  30574. weight: math.unit(108, "lb"),
  30575. name: "Front (Dressed)",
  30576. image: {
  30577. source: "./media/characters/lilith-zott/front-dressed.svg",
  30578. extra: 2510 / 2238,
  30579. bottom: 100 / 2610
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(5 + 6 / 12, "feet")
  30587. },
  30588. {
  30589. name: "Macro",
  30590. height: math.unit(1030, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(6, "feet"),
  30600. weight: math.unit(150, "lb"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30604. extra: 2567 / 2435,
  30605. bottom: 39 / 2606
  30606. }
  30607. },
  30608. frontSuper: {
  30609. height: math.unit(6, "feet"),
  30610. name: "Front (Super)",
  30611. image: {
  30612. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30613. extra: 2567 / 2435,
  30614. bottom: 39 / 2606
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Normal",
  30621. height: math.unit(5 + 10 / 12, "feet")
  30622. },
  30623. {
  30624. name: "Macro",
  30625. height: math.unit(1100, "feet"),
  30626. default: true
  30627. },
  30628. ]
  30629. ))
  30630. characterMakers.push(() => makeCharacter(
  30631. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30632. {
  30633. front: {
  30634. height: math.unit(100, "miles"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/sona/front.svg",
  30638. extra: 2433 / 2201,
  30639. bottom: 53 / 2486
  30640. }
  30641. },
  30642. foot: {
  30643. height: math.unit(16.1, "miles"),
  30644. name: "Foot",
  30645. image: {
  30646. source: "./media/characters/sona/foot.svg"
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(100, "miles"),
  30654. default: true
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30660. {
  30661. front: {
  30662. height: math.unit(6, "feet"),
  30663. weight: math.unit(150, "lb"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/bailey/front.svg",
  30667. extra: 1778 / 1724,
  30668. bottom: 30 / 1808
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Micro",
  30675. height: math.unit(4, "inches")
  30676. },
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(5 + 5 / 12, "feet"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit(250, "feet")
  30685. },
  30686. {
  30687. name: "Megamacro",
  30688. height: math.unit(100, "miles")
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30694. {
  30695. front: {
  30696. height: math.unit(5 + 2 / 12, "feet"),
  30697. weight: math.unit(120, "lb"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/snaps/front.svg",
  30701. extra: 2370 / 2177,
  30702. bottom: 48 / 2418
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(5 + 2 / 12, "feet"),
  30707. weight: math.unit(120, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/snaps/back.svg",
  30711. extra: 2408 / 2258,
  30712. bottom: 15 / 2423
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Micro",
  30719. height: math.unit(9, "inches")
  30720. },
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(5 + 2 / 12, "feet"),
  30724. default: true
  30725. },
  30726. {
  30727. name: "Mini Macro",
  30728. height: math.unit(10, "feet")
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(1.8, "meters"),
  30737. weight: math.unit(85, "kg"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/azteck/front.svg",
  30741. extra: 2815 / 2625,
  30742. bottom: 89 / 2904
  30743. }
  30744. },
  30745. back: {
  30746. height: math.unit(1.8, "meters"),
  30747. weight: math.unit(85, "kg"),
  30748. name: "Back",
  30749. image: {
  30750. source: "./media/characters/azteck/back.svg",
  30751. extra: 2856 / 2648,
  30752. bottom: 85 / 2941
  30753. }
  30754. },
  30755. frontDressed: {
  30756. height: math.unit(1.8, "meters"),
  30757. weight: math.unit(85, "kg"),
  30758. name: "Front (Dressed)",
  30759. image: {
  30760. source: "./media/characters/azteck/front-dressed.svg",
  30761. extra: 2147 / 2003,
  30762. bottom: 68 / 2215
  30763. }
  30764. },
  30765. head: {
  30766. height: math.unit(0.47, "meters"),
  30767. weight: math.unit(85, "kg"),
  30768. name: "Head",
  30769. image: {
  30770. source: "./media/characters/azteck/head.svg"
  30771. }
  30772. },
  30773. },
  30774. [
  30775. {
  30776. name: "Bite sized",
  30777. height: math.unit(16, "cm")
  30778. },
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(1.8, "meters"),
  30782. default: true
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/pidge/front.svg",
  30795. extra: 1936/1820,
  30796. bottom: 0/1936
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(150, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/pidge/back.svg",
  30805. extra: 1938/1843,
  30806. bottom: 0/1938
  30807. }
  30808. },
  30809. casual: {
  30810. height: math.unit(6, "feet"),
  30811. weight: math.unit(150, "lb"),
  30812. name: "Casual",
  30813. image: {
  30814. source: "./media/characters/pidge/casual.svg",
  30815. extra: 1936/1820,
  30816. bottom: 0/1936
  30817. }
  30818. },
  30819. tech: {
  30820. height: math.unit(6, "feet"),
  30821. weight: math.unit(150, "lb"),
  30822. name: "Tech",
  30823. image: {
  30824. source: "./media/characters/pidge/tech.svg",
  30825. extra: 1802/1682,
  30826. bottom: 0/1802
  30827. }
  30828. },
  30829. head: {
  30830. height: math.unit(1.61, "feet"),
  30831. name: "Head",
  30832. image: {
  30833. source: "./media/characters/pidge/head.svg"
  30834. }
  30835. },
  30836. collar: {
  30837. height: math.unit(0.82, "feet"),
  30838. name: "Collar",
  30839. image: {
  30840. source: "./media/characters/pidge/collar.svg"
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Macro",
  30847. height: math.unit(2, "mile"),
  30848. default: true
  30849. },
  30850. {
  30851. name: "PUPPY",
  30852. height: math.unit(20, "miles")
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30858. {
  30859. front: {
  30860. height: math.unit(6, "feet"),
  30861. weight: math.unit(150, "lb"),
  30862. name: "Front",
  30863. image: {
  30864. source: "./media/characters/en/front.svg",
  30865. extra: 1697 / 1563,
  30866. bottom: 103 / 1800
  30867. }
  30868. },
  30869. back: {
  30870. height: math.unit(6, "feet"),
  30871. weight: math.unit(150, "lb"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/en/back.svg",
  30875. extra: 1700 / 1570,
  30876. bottom: 51 / 1751
  30877. }
  30878. },
  30879. frontDressed: {
  30880. height: math.unit(6, "feet"),
  30881. weight: math.unit(150, "lb"),
  30882. name: "Front (Dressed)",
  30883. image: {
  30884. source: "./media/characters/en/front-dressed.svg",
  30885. extra: 1697 / 1563,
  30886. bottom: 103 / 1800
  30887. }
  30888. },
  30889. backDressed: {
  30890. height: math.unit(6, "feet"),
  30891. weight: math.unit(150, "lb"),
  30892. name: "Back (Dressed)",
  30893. image: {
  30894. source: "./media/characters/en/back-dressed.svg",
  30895. extra: 1700 / 1570,
  30896. bottom: 51 / 1751
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Macro",
  30903. height: math.unit(210, "feet"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/haze-orris/front.svg",
  30917. extra: 3975 / 3525,
  30918. bottom: 137 / 4112
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Micro",
  30925. height: math.unit(150, "mm"),
  30926. default: true
  30927. },
  30928. ]
  30929. ))
  30930. characterMakers.push(() => makeCharacter(
  30931. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30932. {
  30933. front: {
  30934. height: math.unit(6, "feet"),
  30935. weight: math.unit(150, "lb"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/casselene-yaro/front.svg",
  30939. extra: 4721 / 4541,
  30940. bottom: 82 / 4803
  30941. }
  30942. },
  30943. back: {
  30944. height: math.unit(6, "feet"),
  30945. weight: math.unit(150, "lb"),
  30946. name: "Back",
  30947. image: {
  30948. source: "./media/characters/casselene-yaro/back.svg",
  30949. extra: 4569 / 4377,
  30950. bottom: 69 / 4638
  30951. }
  30952. },
  30953. dressed: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Dressed",
  30957. image: {
  30958. source: "./media/characters/casselene-yaro/dressed.svg",
  30959. extra: 4721 / 4541,
  30960. bottom: 82 / 4803
  30961. }
  30962. },
  30963. maw: {
  30964. height: math.unit(1, "feet"),
  30965. name: "Maw",
  30966. image: {
  30967. source: "./media/characters/casselene-yaro/maw.svg"
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Macro",
  30974. height: math.unit(190, "feet"),
  30975. default: true
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(10, "feet"),
  30984. weight: math.unit(15015, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/platine/front.svg",
  30988. extra: 1741/1650,
  30989. bottom: 84/1825
  30990. }
  30991. },
  30992. side: {
  30993. height: math.unit(10, "feet"),
  30994. weight: math.unit(15015, "lb"),
  30995. name: "Side",
  30996. image: {
  30997. source: "./media/characters/platine/side.svg",
  30998. extra: 1790/1705,
  30999. bottom: 29/1819
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(10, "feet"),
  31007. default: true
  31008. },
  31009. {
  31010. name: "Macro",
  31011. height: math.unit(100, "feet")
  31012. },
  31013. {
  31014. name: "Megamacro",
  31015. height: math.unit(1000, "feet")
  31016. },
  31017. ]
  31018. ))
  31019. characterMakers.push(() => makeCharacter(
  31020. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31021. {
  31022. front: {
  31023. height: math.unit(15 + 5 / 12, "feet"),
  31024. weight: math.unit(4600, "lb"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/neapolitan-ananassa/front.svg",
  31028. extra: 2903 / 2736,
  31029. bottom: 0 / 2903
  31030. }
  31031. },
  31032. side: {
  31033. height: math.unit(15 + 5 / 12, "feet"),
  31034. weight: math.unit(4600, "lb"),
  31035. name: "Side",
  31036. image: {
  31037. source: "./media/characters/neapolitan-ananassa/side.svg",
  31038. extra: 2925 / 2719,
  31039. bottom: 0 / 2925
  31040. }
  31041. },
  31042. back: {
  31043. height: math.unit(15 + 5 / 12, "feet"),
  31044. weight: math.unit(4600, "lb"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/neapolitan-ananassa/back.svg",
  31048. extra: 2903 / 2736,
  31049. bottom: 0 / 2903
  31050. }
  31051. },
  31052. },
  31053. [
  31054. {
  31055. name: "Normal",
  31056. height: math.unit(15 + 5 / 12, "feet"),
  31057. default: true
  31058. },
  31059. {
  31060. name: "Post-Millenium",
  31061. height: math.unit(35 + 5 / 12, "feet")
  31062. },
  31063. {
  31064. name: "Post-Era",
  31065. height: math.unit(450 + 5 / 12, "feet")
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(300, "meters"),
  31074. weight: math.unit(125000, "tonnes"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/pazuzu/front.svg",
  31078. extra: 877 / 794,
  31079. bottom: 47 / 924
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Macro",
  31086. height: math.unit(300, "meters"),
  31087. default: true
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31093. {
  31094. side: {
  31095. height: math.unit(10 + 7 / 12, "feet"),
  31096. weight: math.unit(2.5, "tons"),
  31097. name: "Side",
  31098. image: {
  31099. source: "./media/characters/aasha/side.svg",
  31100. extra: 1345 / 1245,
  31101. bottom: 111 / 1456
  31102. }
  31103. },
  31104. back: {
  31105. height: math.unit(10 + 7 / 12, "feet"),
  31106. weight: math.unit(2.5, "tons"),
  31107. name: "Back",
  31108. image: {
  31109. source: "./media/characters/aasha/back.svg",
  31110. extra: 1133 / 1057,
  31111. bottom: 257 / 1390
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Normal",
  31118. height: math.unit(10 + 7 / 12, "feet"),
  31119. default: true
  31120. },
  31121. ]
  31122. ))
  31123. characterMakers.push(() => makeCharacter(
  31124. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31125. {
  31126. front: {
  31127. height: math.unit(6 + 3 / 12, "feet"),
  31128. name: "Front",
  31129. image: {
  31130. source: "./media/characters/nevan/front.svg",
  31131. extra: 704 / 704,
  31132. bottom: 28 / 732
  31133. }
  31134. },
  31135. back: {
  31136. height: math.unit(6 + 3 / 12, "feet"),
  31137. name: "Back",
  31138. image: {
  31139. source: "./media/characters/nevan/back.svg",
  31140. extra: 714 / 714,
  31141. bottom: 21 / 735
  31142. }
  31143. },
  31144. frontFlaccid: {
  31145. height: math.unit(6 + 3 / 12, "feet"),
  31146. name: "Front (Flaccid)",
  31147. image: {
  31148. source: "./media/characters/nevan/front-flaccid.svg",
  31149. extra: 704 / 704,
  31150. bottom: 28 / 732
  31151. }
  31152. },
  31153. frontErect: {
  31154. height: math.unit(6 + 3 / 12, "feet"),
  31155. name: "Front (Erect)",
  31156. image: {
  31157. source: "./media/characters/nevan/front-erect.svg",
  31158. extra: 704 / 704,
  31159. bottom: 28 / 732
  31160. }
  31161. },
  31162. backFlaccid: {
  31163. height: math.unit(6 + 3 / 12, "feet"),
  31164. name: "Back (Flaccid)",
  31165. image: {
  31166. source: "./media/characters/nevan/back-flaccid.svg",
  31167. extra: 714 / 714,
  31168. bottom: 21 / 735
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(6 + 3 / 12, "feet"),
  31176. default: true
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(4, "feet"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/arhan/front.svg",
  31188. extra: 3368 / 3133,
  31189. bottom: 0 / 3368
  31190. }
  31191. },
  31192. side: {
  31193. height: math.unit(4, "feet"),
  31194. name: "Side",
  31195. image: {
  31196. source: "./media/characters/arhan/side.svg",
  31197. extra: 3347 / 3105,
  31198. bottom: 0 / 3347
  31199. }
  31200. },
  31201. tongue: {
  31202. height: math.unit(1.42, "feet"),
  31203. name: "Tongue",
  31204. image: {
  31205. source: "./media/characters/arhan/tongue.svg"
  31206. }
  31207. },
  31208. head: {
  31209. height: math.unit(0.85, "feet"),
  31210. name: "Head",
  31211. image: {
  31212. source: "./media/characters/arhan/head.svg"
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Normal",
  31219. height: math.unit(4, "feet"),
  31220. default: true
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31226. {
  31227. front: {
  31228. height: math.unit(5 + 7.5 / 12, "feet"),
  31229. weight: math.unit(120, "lb"),
  31230. name: "Front",
  31231. image: {
  31232. source: "./media/characters/digi-duncan/front.svg",
  31233. extra: 330 / 326,
  31234. bottom: 16 / 346
  31235. }
  31236. },
  31237. side: {
  31238. height: math.unit(5 + 7.5 / 12, "feet"),
  31239. weight: math.unit(120, "lb"),
  31240. name: "Side",
  31241. image: {
  31242. source: "./media/characters/digi-duncan/side.svg",
  31243. extra: 341 / 337,
  31244. bottom: 1 / 342
  31245. }
  31246. },
  31247. back: {
  31248. height: math.unit(5 + 7.5 / 12, "feet"),
  31249. weight: math.unit(120, "lb"),
  31250. name: "Back",
  31251. image: {
  31252. source: "./media/characters/digi-duncan/back.svg",
  31253. extra: 330 / 326,
  31254. bottom: 12 / 342
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Speck",
  31261. height: math.unit(0.25, "mm")
  31262. },
  31263. {
  31264. name: "Micro",
  31265. height: math.unit(5, "mm")
  31266. },
  31267. {
  31268. name: "Tiny",
  31269. height: math.unit(0.5, "inches"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "Human",
  31274. height: math.unit(5 + 7.5 / 12, "feet")
  31275. },
  31276. {
  31277. name: "Minigiant",
  31278. height: math.unit(8 + 5.25, "feet")
  31279. },
  31280. {
  31281. name: "Giant",
  31282. height: math.unit(2000, "feet")
  31283. },
  31284. {
  31285. name: "Mega",
  31286. height: math.unit(371.1, "miles")
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31292. {
  31293. front: {
  31294. height: math.unit(2, "meters"),
  31295. weight: math.unit(350, "kg"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31299. extra: 898 / 838,
  31300. bottom: 9 / 907
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Micro",
  31307. height: math.unit(8, "meters")
  31308. },
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(50, "meters"),
  31312. default: true
  31313. },
  31314. {
  31315. name: "Macro",
  31316. height: math.unit(500, "meters")
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(6 + 6 / 12, "feet"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/khardesh/front.svg",
  31328. extra: 1788/1596,
  31329. bottom: 66/1854
  31330. }
  31331. },
  31332. back: {
  31333. height: math.unit(6 + 6 / 12, "feet"),
  31334. name: "Back",
  31335. image: {
  31336. source: "./media/characters/khardesh/back.svg",
  31337. extra: 1781/1584,
  31338. bottom: 68/1849
  31339. }
  31340. },
  31341. },
  31342. [
  31343. {
  31344. name: "Normal",
  31345. height: math.unit(6 + 6 / 12, "feet"),
  31346. default: true
  31347. },
  31348. {
  31349. name: "Normal+",
  31350. height: math.unit(4, "meters")
  31351. },
  31352. {
  31353. name: "Macro",
  31354. height: math.unit(50, "meters")
  31355. },
  31356. {
  31357. name: "Macro+",
  31358. height: math.unit(100, "meters")
  31359. },
  31360. {
  31361. name: "Megamacro",
  31362. height: math.unit(20, "km")
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(6, "feet"),
  31371. weight: math.unit(150, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/kosho/front.svg",
  31375. extra: 1847 / 1847,
  31376. bottom: 86 / 1933
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Second-stage micro",
  31383. height: math.unit(0.5, "inches")
  31384. },
  31385. {
  31386. name: "First-stage micro",
  31387. height: math.unit(6, "inches")
  31388. },
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(6, "feet"),
  31392. default: true
  31393. },
  31394. {
  31395. name: "First-stage macro",
  31396. height: math.unit(72, "feet")
  31397. },
  31398. {
  31399. name: "Second-stage macro",
  31400. height: math.unit(864, "feet")
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31406. {
  31407. normal: {
  31408. height: math.unit(4 + 6 / 12, "feet"),
  31409. name: "Normal",
  31410. image: {
  31411. source: "./media/characters/hydra/normal.svg",
  31412. extra: 2833 / 2634,
  31413. bottom: 68 / 2901
  31414. }
  31415. },
  31416. smol: {
  31417. height: math.unit(0.705, "inches"),
  31418. name: "Smol",
  31419. image: {
  31420. source: "./media/characters/hydra/smol.svg",
  31421. extra: 2715 / 2540,
  31422. bottom: 0 / 2715
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(4 + 6 / 12, "feet"),
  31430. default: true
  31431. }
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(0.6, "cm"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/daz/front.svg",
  31442. extra: 1682 / 1164,
  31443. bottom: 42 / 1724
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(0.6, "cm"),
  31451. default: true
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(6, "feet"),
  31460. weight: math.unit(235, "lb"),
  31461. name: "Front",
  31462. image: {
  31463. source: "./media/characters/theo-pangolin/front.svg",
  31464. extra: 1996 / 1969,
  31465. bottom: 115 / 2111
  31466. }
  31467. },
  31468. back: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(235, "lb"),
  31471. name: "Back",
  31472. image: {
  31473. source: "./media/characters/theo-pangolin/back.svg",
  31474. extra: 1979 / 1979,
  31475. bottom: 40 / 2019
  31476. }
  31477. },
  31478. feral: {
  31479. height: math.unit(2, "feet"),
  31480. weight: math.unit(30, "lb"),
  31481. name: "Feral",
  31482. image: {
  31483. source: "./media/characters/theo-pangolin/feral.svg",
  31484. extra: 803 / 791,
  31485. bottom: 181 / 984
  31486. }
  31487. },
  31488. footFive: {
  31489. height: math.unit(1.43, "feet"),
  31490. name: "Foot (Five Toes)",
  31491. image: {
  31492. source: "./media/characters/theo-pangolin/foot-five.svg"
  31493. }
  31494. },
  31495. footFour: {
  31496. height: math.unit(1.43, "feet"),
  31497. name: "Foot (Four Toes)",
  31498. image: {
  31499. source: "./media/characters/theo-pangolin/foot-four.svg"
  31500. }
  31501. },
  31502. handFour: {
  31503. height: math.unit(0.81, "feet"),
  31504. name: "Hand (Four Fingers)",
  31505. image: {
  31506. source: "./media/characters/theo-pangolin/hand-four.svg"
  31507. }
  31508. },
  31509. handThree: {
  31510. height: math.unit(0.81, "feet"),
  31511. name: "Hand (Three Fingers)",
  31512. image: {
  31513. source: "./media/characters/theo-pangolin/hand-three.svg"
  31514. }
  31515. },
  31516. headFront: {
  31517. height: math.unit(1.37, "feet"),
  31518. name: "Head (Front)",
  31519. image: {
  31520. source: "./media/characters/theo-pangolin/head-front.svg"
  31521. }
  31522. },
  31523. headSide: {
  31524. height: math.unit(1.43, "feet"),
  31525. name: "Head (Side)",
  31526. image: {
  31527. source: "./media/characters/theo-pangolin/head-side.svg"
  31528. }
  31529. },
  31530. tongue: {
  31531. height: math.unit(2.29, "feet"),
  31532. name: "Tongue",
  31533. image: {
  31534. source: "./media/characters/theo-pangolin/tongue.svg"
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(6, "feet")
  31542. },
  31543. {
  31544. name: "Macro",
  31545. height: math.unit(400, "feet"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(6, "inches"),
  31555. weight: math.unit(0.036, "kg"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/renée/front.svg",
  31559. extra: 900 / 886,
  31560. bottom: 8 / 908
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Nano",
  31567. height: math.unit(1, "nm")
  31568. },
  31569. {
  31570. name: "Micro",
  31571. height: math.unit(1, "mm")
  31572. },
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(6, "inches")
  31576. },
  31577. {
  31578. name: "Macro",
  31579. height: math.unit(2000, "feet"),
  31580. default: true
  31581. },
  31582. {
  31583. name: "Megamacro",
  31584. height: math.unit(2, "km")
  31585. },
  31586. {
  31587. name: "Gigamacro",
  31588. height: math.unit(2000, "km")
  31589. },
  31590. {
  31591. name: "Teramacro",
  31592. height: math.unit(250000, "km")
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(4, "meters"),
  31601. weight: math.unit(150, "kg"),
  31602. name: "Front",
  31603. image: {
  31604. source: "./media/characters/caledvwlch/front.svg",
  31605. extra: 1760 / 1551,
  31606. bottom: 28 / 1788
  31607. }
  31608. },
  31609. side: {
  31610. height: math.unit(4, "meters"),
  31611. weight: math.unit(150, "kg"),
  31612. name: "Side",
  31613. image: {
  31614. source: "./media/characters/caledvwlch/side.svg",
  31615. extra: 1605 / 1536,
  31616. bottom: 31 / 1636
  31617. }
  31618. },
  31619. back: {
  31620. height: math.unit(4, "meters"),
  31621. weight: math.unit(150, "kg"),
  31622. name: "Back",
  31623. image: {
  31624. source: "./media/characters/caledvwlch/back.svg",
  31625. extra: 1635 / 1565,
  31626. bottom: 27 / 1662
  31627. }
  31628. },
  31629. },
  31630. [
  31631. {
  31632. name: "\"Incognito\"",
  31633. height: math.unit(4, "meters")
  31634. },
  31635. {
  31636. name: "Small rampage",
  31637. height: math.unit(600, "meters")
  31638. },
  31639. {
  31640. name: "Mega",
  31641. height: math.unit(30, "km")
  31642. },
  31643. {
  31644. name: "Home-size",
  31645. height: math.unit(50, "km"),
  31646. default: true
  31647. },
  31648. {
  31649. name: "Giga",
  31650. height: math.unit(300, "km")
  31651. },
  31652. {
  31653. name: "Lounging",
  31654. height: math.unit(11000, "km")
  31655. },
  31656. {
  31657. name: "Planet snacking",
  31658. height: math.unit(2000000, "km")
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(6, "feet"),
  31667. weight: math.unit(215, "lb"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/sapphire-svell/front.svg",
  31671. extra: 495 / 455,
  31672. bottom: 20 / 515
  31673. }
  31674. },
  31675. back: {
  31676. height: math.unit(6, "feet"),
  31677. weight: math.unit(216, "lb"),
  31678. name: "Back",
  31679. image: {
  31680. source: "./media/characters/sapphire-svell/back.svg",
  31681. extra: 497 / 477,
  31682. bottom: 7 / 504
  31683. }
  31684. },
  31685. maw: {
  31686. height: math.unit(1.57, "feet"),
  31687. name: "Maw",
  31688. image: {
  31689. source: "./media/characters/sapphire-svell/maw.svg"
  31690. }
  31691. },
  31692. foot: {
  31693. height: math.unit(1.07, "feet"),
  31694. name: "Foot",
  31695. image: {
  31696. source: "./media/characters/sapphire-svell/foot.svg"
  31697. }
  31698. },
  31699. toering: {
  31700. height: math.unit(1.7, "inch"),
  31701. name: "Toering",
  31702. image: {
  31703. source: "./media/characters/sapphire-svell/toering.svg"
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(300, "feet"),
  31711. default: true
  31712. },
  31713. {
  31714. name: "Augmented",
  31715. height: math.unit(1250, "feet")
  31716. },
  31717. {
  31718. name: "Unleashed",
  31719. height: math.unit(3000, "feet")
  31720. },
  31721. ]
  31722. ))
  31723. characterMakers.push(() => makeCharacter(
  31724. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31725. {
  31726. side: {
  31727. height: math.unit(2 + 3 / 12, "feet"),
  31728. weight: math.unit(110, "lb"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/glitch-flux/side.svg",
  31732. extra: 997 / 805,
  31733. bottom: 20 / 1017
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(2 + 3 / 12, "feet"),
  31741. default: true
  31742. },
  31743. ]
  31744. ))
  31745. characterMakers.push(() => makeCharacter(
  31746. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31747. {
  31748. front: {
  31749. height: math.unit(4, "meters"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/mid/front.svg",
  31753. extra: 507 / 476,
  31754. bottom: 17 / 524
  31755. }
  31756. },
  31757. back: {
  31758. height: math.unit(4, "meters"),
  31759. name: "Back",
  31760. image: {
  31761. source: "./media/characters/mid/back.svg",
  31762. extra: 519 / 487,
  31763. bottom: 7 / 526
  31764. }
  31765. },
  31766. stuck: {
  31767. height: math.unit(2.2, "meters"),
  31768. name: "Stuck",
  31769. image: {
  31770. source: "./media/characters/mid/stuck.svg",
  31771. extra: 1951 / 1869,
  31772. bottom: 88 / 2039
  31773. }
  31774. }
  31775. },
  31776. [
  31777. {
  31778. name: "Normal",
  31779. height: math.unit(4, "meters"),
  31780. default: true
  31781. },
  31782. {
  31783. name: "Big",
  31784. height: math.unit(10, "meters")
  31785. },
  31786. {
  31787. name: "Macro",
  31788. height: math.unit(800, "meters")
  31789. },
  31790. {
  31791. name: "Megamacro",
  31792. height: math.unit(100, "km")
  31793. },
  31794. {
  31795. name: "Overgrown",
  31796. height: math.unit(1, "parsec")
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(2.5, "meters"),
  31805. weight: math.unit(225, "kg"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/iris/front.svg",
  31809. extra: 3348 / 3251,
  31810. bottom: 205 / 3553
  31811. }
  31812. },
  31813. maw: {
  31814. height: math.unit(0.56, "meter"),
  31815. name: "Maw",
  31816. image: {
  31817. source: "./media/characters/iris/maw.svg"
  31818. }
  31819. },
  31820. },
  31821. [
  31822. {
  31823. name: "Mewter cat",
  31824. height: math.unit(1.2, "meters")
  31825. },
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(2.5, "meters"),
  31829. default: true
  31830. },
  31831. {
  31832. name: "Minimacro",
  31833. height: math.unit(18, "feet")
  31834. },
  31835. {
  31836. name: "Macro",
  31837. height: math.unit(140, "feet")
  31838. },
  31839. {
  31840. name: "Macro+",
  31841. height: math.unit(180, "meters")
  31842. },
  31843. {
  31844. name: "Megamacro",
  31845. height: math.unit(2746, "meters")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(6, "feet"),
  31854. weight: math.unit(135, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/axel/front.svg",
  31858. extra: 908 / 908,
  31859. bottom: 58 / 966
  31860. }
  31861. },
  31862. side: {
  31863. height: math.unit(6, "feet"),
  31864. weight: math.unit(135, "lb"),
  31865. name: "Side",
  31866. image: {
  31867. source: "./media/characters/axel/side.svg",
  31868. extra: 958 / 958,
  31869. bottom: 11 / 969
  31870. }
  31871. },
  31872. back: {
  31873. height: math.unit(6, "feet"),
  31874. weight: math.unit(135, "lb"),
  31875. name: "Back",
  31876. image: {
  31877. source: "./media/characters/axel/back.svg",
  31878. extra: 887 / 887,
  31879. bottom: 34 / 921
  31880. }
  31881. },
  31882. head: {
  31883. height: math.unit(1.07, "feet"),
  31884. name: "Head",
  31885. image: {
  31886. source: "./media/characters/axel/head.svg"
  31887. }
  31888. },
  31889. beak: {
  31890. height: math.unit(1.4, "feet"),
  31891. name: "Beak",
  31892. image: {
  31893. source: "./media/characters/axel/beak.svg"
  31894. }
  31895. },
  31896. beakSide: {
  31897. height: math.unit(1.4, "feet"),
  31898. name: "Beak Side",
  31899. image: {
  31900. source: "./media/characters/axel/beak-side.svg"
  31901. }
  31902. },
  31903. sheath: {
  31904. height: math.unit(0.5, "feet"),
  31905. name: "Sheath",
  31906. image: {
  31907. source: "./media/characters/axel/sheath.svg"
  31908. }
  31909. },
  31910. dick: {
  31911. height: math.unit(0.98, "feet"),
  31912. name: "Dick",
  31913. image: {
  31914. source: "./media/characters/axel/dick.svg"
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(68, "meters"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(3.5, "meters"),
  31931. weight: math.unit(1200, "kg"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/joanna/front.svg",
  31935. extra: 1596 / 1488,
  31936. bottom: 29 / 1625
  31937. }
  31938. },
  31939. back: {
  31940. height: math.unit(3.5, "meters"),
  31941. weight: math.unit(1200, "kg"),
  31942. name: "Back",
  31943. image: {
  31944. source: "./media/characters/joanna/back.svg",
  31945. extra: 1594 / 1495,
  31946. bottom: 26 / 1620
  31947. }
  31948. },
  31949. frontShorts: {
  31950. height: math.unit(3.5, "meters"),
  31951. weight: math.unit(1200, "kg"),
  31952. name: "Front (Shorts)",
  31953. image: {
  31954. source: "./media/characters/joanna/front-shorts.svg",
  31955. extra: 1596 / 1488,
  31956. bottom: 29 / 1625
  31957. }
  31958. },
  31959. frontBiker: {
  31960. height: math.unit(3.5, "meters"),
  31961. weight: math.unit(1200, "kg"),
  31962. name: "Front (Biker)",
  31963. image: {
  31964. source: "./media/characters/joanna/front-biker.svg",
  31965. extra: 1596 / 1488,
  31966. bottom: 29 / 1625
  31967. }
  31968. },
  31969. backBiker: {
  31970. height: math.unit(3.5, "meters"),
  31971. weight: math.unit(1200, "kg"),
  31972. name: "Back (Biker)",
  31973. image: {
  31974. source: "./media/characters/joanna/back-biker.svg",
  31975. extra: 1594 / 1495,
  31976. bottom: 88 / 1682
  31977. }
  31978. },
  31979. bikeLeft: {
  31980. height: math.unit(2.4, "meters"),
  31981. weight: math.unit(1600, "kg"),
  31982. name: "Bike (Left)",
  31983. image: {
  31984. source: "./media/characters/joanna/bike-left.svg",
  31985. extra: 720 / 720,
  31986. bottom: 8 / 728
  31987. }
  31988. },
  31989. bikeRight: {
  31990. height: math.unit(2.4, "meters"),
  31991. weight: math.unit(1600, "kg"),
  31992. name: "Bike (Right)",
  31993. image: {
  31994. source: "./media/characters/joanna/bike-right.svg",
  31995. extra: 720 / 720,
  31996. bottom: 8 / 728
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Incognito",
  32003. height: math.unit(3.5, "meters")
  32004. },
  32005. {
  32006. name: "Casual Big",
  32007. height: math.unit(200, "meters")
  32008. },
  32009. {
  32010. name: "Macro",
  32011. height: math.unit(600, "meters")
  32012. },
  32013. {
  32014. name: "Original",
  32015. height: math.unit(20, "km"),
  32016. default: true
  32017. },
  32018. {
  32019. name: "Giga",
  32020. height: math.unit(400, "km")
  32021. },
  32022. {
  32023. name: "Lounging",
  32024. height: math.unit(1500, "km")
  32025. },
  32026. {
  32027. name: "Planetary",
  32028. height: math.unit(200000, "km")
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(6, "feet"),
  32037. weight: math.unit(150, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/hugo-sigil/front.svg",
  32041. extra: 522 / 500,
  32042. bottom: 2 / 524
  32043. }
  32044. },
  32045. back: {
  32046. height: math.unit(6, "feet"),
  32047. weight: math.unit(150, "lb"),
  32048. name: "Back",
  32049. image: {
  32050. source: "./media/characters/hugo-sigil/back.svg",
  32051. extra: 519 / 495,
  32052. bottom: 5 / 524
  32053. }
  32054. },
  32055. maw: {
  32056. height: math.unit(1.4, "feet"),
  32057. weight: math.unit(150, "lb"),
  32058. name: "Maw",
  32059. image: {
  32060. source: "./media/characters/hugo-sigil/maw.svg"
  32061. }
  32062. },
  32063. feet: {
  32064. height: math.unit(1.56, "feet"),
  32065. weight: math.unit(150, "lb"),
  32066. name: "Feet",
  32067. image: {
  32068. source: "./media/characters/hugo-sigil/feet.svg",
  32069. extra: 177 / 177,
  32070. bottom: 12 / 189
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(6, "feet")
  32078. },
  32079. {
  32080. name: "Macro",
  32081. height: math.unit(200, "feet"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32088. {
  32089. front: {
  32090. height: math.unit(6, "feet"),
  32091. weight: math.unit(150, "lb"),
  32092. name: "Front",
  32093. image: {
  32094. source: "./media/characters/peri/front.svg",
  32095. extra: 2354 / 2233,
  32096. bottom: 49 / 2403
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Really Small",
  32103. height: math.unit(1, "nm")
  32104. },
  32105. {
  32106. name: "Micro",
  32107. height: math.unit(4, "inches")
  32108. },
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(7, "inches"),
  32112. default: true
  32113. },
  32114. {
  32115. name: "Macro",
  32116. height: math.unit(400, "feet")
  32117. },
  32118. {
  32119. name: "Megamacro",
  32120. height: math.unit(100, "miles")
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32126. {
  32127. frontSlim: {
  32128. height: math.unit(7, "feet"),
  32129. name: "Front (Slim)",
  32130. image: {
  32131. source: "./media/characters/issilora/front-slim.svg",
  32132. extra: 529 / 449,
  32133. bottom: 53 / 582
  32134. }
  32135. },
  32136. sideSlim: {
  32137. height: math.unit(7, "feet"),
  32138. name: "Side (Slim)",
  32139. image: {
  32140. source: "./media/characters/issilora/side-slim.svg",
  32141. extra: 570 / 480,
  32142. bottom: 30 / 600
  32143. }
  32144. },
  32145. backSlim: {
  32146. height: math.unit(7, "feet"),
  32147. name: "Back (Slim)",
  32148. image: {
  32149. source: "./media/characters/issilora/back-slim.svg",
  32150. extra: 537 / 455,
  32151. bottom: 46 / 583
  32152. }
  32153. },
  32154. frontBuff: {
  32155. height: math.unit(7, "feet"),
  32156. name: "Front (Buff)",
  32157. image: {
  32158. source: "./media/characters/issilora/front-buff.svg",
  32159. extra: 2310 / 2035,
  32160. bottom: 335 / 2645
  32161. }
  32162. },
  32163. head: {
  32164. height: math.unit(1.94, "feet"),
  32165. name: "Head",
  32166. image: {
  32167. source: "./media/characters/issilora/head.svg"
  32168. }
  32169. },
  32170. },
  32171. [
  32172. {
  32173. name: "Minimum",
  32174. height: math.unit(7, "feet")
  32175. },
  32176. {
  32177. name: "Comfortable",
  32178. height: math.unit(17, "feet")
  32179. },
  32180. {
  32181. name: "Fun Size",
  32182. height: math.unit(47, "feet")
  32183. },
  32184. {
  32185. name: "Natural Macro",
  32186. height: math.unit(137, "feet"),
  32187. default: true
  32188. },
  32189. {
  32190. name: "Maximum Kaiju",
  32191. height: math.unit(397, "feet")
  32192. },
  32193. ]
  32194. ))
  32195. characterMakers.push(() => makeCharacter(
  32196. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32197. {
  32198. front: {
  32199. height: math.unit(50 + 9/12, "feet"),
  32200. weight: math.unit(32.8, "tons"),
  32201. name: "Front",
  32202. image: {
  32203. source: "./media/characters/irb'iiritaahn/front.svg",
  32204. extra: 1878/1826,
  32205. bottom: 326/2204
  32206. }
  32207. },
  32208. back: {
  32209. height: math.unit(50 + 9/12, "feet"),
  32210. weight: math.unit(32.8, "tons"),
  32211. name: "Back",
  32212. image: {
  32213. source: "./media/characters/irb'iiritaahn/back.svg",
  32214. extra: 2052/2018,
  32215. bottom: 152/2204
  32216. }
  32217. },
  32218. head: {
  32219. height: math.unit(12.86, "feet"),
  32220. name: "Head",
  32221. image: {
  32222. source: "./media/characters/irb'iiritaahn/head.svg"
  32223. }
  32224. },
  32225. maw: {
  32226. height: math.unit(9.66, "feet"),
  32227. name: "Maw",
  32228. image: {
  32229. source: "./media/characters/irb'iiritaahn/maw.svg"
  32230. }
  32231. },
  32232. frontDick: {
  32233. height: math.unit(8.78461, "feet"),
  32234. name: "Front Dick",
  32235. image: {
  32236. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32237. }
  32238. },
  32239. rearDick: {
  32240. height: math.unit(8.78461, "feet"),
  32241. name: "Rear Dick",
  32242. image: {
  32243. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32244. }
  32245. },
  32246. rearDickUnfolded: {
  32247. height: math.unit(8.78, "feet"),
  32248. name: "Rear Dick (Unfolded)",
  32249. image: {
  32250. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32251. }
  32252. },
  32253. wings: {
  32254. height: math.unit(43, "feet"),
  32255. name: "Wings",
  32256. image: {
  32257. source: "./media/characters/irb'iiritaahn/wings.svg"
  32258. }
  32259. },
  32260. },
  32261. [
  32262. {
  32263. name: "Macro",
  32264. height: math.unit(50 + 9/12, "feet"),
  32265. default: true
  32266. },
  32267. ]
  32268. ))
  32269. characterMakers.push(() => makeCharacter(
  32270. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32271. {
  32272. front: {
  32273. height: math.unit(205, "cm"),
  32274. weight: math.unit(102, "kg"),
  32275. name: "Front",
  32276. image: {
  32277. source: "./media/characters/irbisgreif/front.svg",
  32278. extra: 785/706,
  32279. bottom: 13/798
  32280. }
  32281. },
  32282. back: {
  32283. height: math.unit(205, "cm"),
  32284. weight: math.unit(102, "kg"),
  32285. name: "Back",
  32286. image: {
  32287. source: "./media/characters/irbisgreif/back.svg",
  32288. extra: 713/701,
  32289. bottom: 26/739
  32290. }
  32291. },
  32292. frontDressed: {
  32293. height: math.unit(216, "cm"),
  32294. weight: math.unit(102, "kg"),
  32295. name: "Front-dressed",
  32296. image: {
  32297. source: "./media/characters/irbisgreif/front-dressed.svg",
  32298. extra: 902/776,
  32299. bottom: 14/916
  32300. }
  32301. },
  32302. sideDressed: {
  32303. height: math.unit(195, "cm"),
  32304. weight: math.unit(102, "kg"),
  32305. name: "Side-dressed",
  32306. image: {
  32307. source: "./media/characters/irbisgreif/side-dressed.svg",
  32308. extra: 788/688,
  32309. bottom: 21/809
  32310. }
  32311. },
  32312. backDressed: {
  32313. height: math.unit(216, "cm"),
  32314. weight: math.unit(102, "kg"),
  32315. name: "Back-dressed",
  32316. image: {
  32317. source: "./media/characters/irbisgreif/back-dressed.svg",
  32318. extra: 901/783,
  32319. bottom: 10/911
  32320. }
  32321. },
  32322. dick: {
  32323. height: math.unit(0.49, "feet"),
  32324. name: "Dick",
  32325. image: {
  32326. source: "./media/characters/irbisgreif/dick.svg"
  32327. }
  32328. },
  32329. wingTop: {
  32330. height: math.unit(1.93 , "feet"),
  32331. name: "Wing-top",
  32332. image: {
  32333. source: "./media/characters/irbisgreif/wing-top.svg"
  32334. }
  32335. },
  32336. wingBottom: {
  32337. height: math.unit(1.93 , "feet"),
  32338. name: "Wing-bottom",
  32339. image: {
  32340. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(216, "cm"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(6, "feet"),
  32357. weight: math.unit(150, "lb"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/pride/front.svg",
  32361. extra: 1299/1230,
  32362. bottom: 18/1317
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Normal",
  32369. height: math.unit(7, "feet")
  32370. },
  32371. {
  32372. name: "Mini-macro",
  32373. height: math.unit(11, "feet")
  32374. },
  32375. {
  32376. name: "Macro",
  32377. height: math.unit(15, "meters"),
  32378. default: true
  32379. },
  32380. {
  32381. name: "Macro+",
  32382. height: math.unit(40, "meters")
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32388. {
  32389. front: {
  32390. height: math.unit(4 + 2 / 12, "feet"),
  32391. weight: math.unit(95, "lb"),
  32392. name: "Front",
  32393. image: {
  32394. source: "./media/characters/vaelophis-nyx/front.svg",
  32395. extra: 2532/2330,
  32396. bottom: 0/2532
  32397. }
  32398. },
  32399. back: {
  32400. height: math.unit(4 + 2 / 12, "feet"),
  32401. weight: math.unit(95, "lb"),
  32402. name: "Back",
  32403. image: {
  32404. source: "./media/characters/vaelophis-nyx/back.svg",
  32405. extra: 2484/2361,
  32406. bottom: 0/2484
  32407. }
  32408. },
  32409. feralSide: {
  32410. height: math.unit(2 + 1/12, "feet"),
  32411. weight: math.unit(20, "lb"),
  32412. name: "Feral (Side)",
  32413. image: {
  32414. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32415. extra: 1721/1581,
  32416. bottom: 70/1791
  32417. }
  32418. },
  32419. feralLazing: {
  32420. height: math.unit(1.08, "feet"),
  32421. weight: math.unit(20, "lb"),
  32422. name: "Feral (Lazing)",
  32423. image: {
  32424. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32425. extra: 822/822,
  32426. bottom: 248/1070
  32427. }
  32428. },
  32429. ear: {
  32430. height: math.unit(0.416, "feet"),
  32431. name: "Ear",
  32432. image: {
  32433. source: "./media/characters/vaelophis-nyx/ear.svg"
  32434. }
  32435. },
  32436. eye: {
  32437. height: math.unit(0.0748, "feet"),
  32438. name: "Eye",
  32439. image: {
  32440. source: "./media/characters/vaelophis-nyx/eye.svg"
  32441. }
  32442. },
  32443. mouth: {
  32444. height: math.unit(0.378, "feet"),
  32445. name: "Mouth",
  32446. image: {
  32447. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32448. }
  32449. },
  32450. spade: {
  32451. height: math.unit(0.55, "feet"),
  32452. name: "Spade",
  32453. image: {
  32454. source: "./media/characters/vaelophis-nyx/spade.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Normal",
  32461. height: math.unit(4 + 2/12, "feet"),
  32462. default: true
  32463. },
  32464. ]
  32465. ))
  32466. characterMakers.push(() => makeCharacter(
  32467. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32468. {
  32469. front: {
  32470. height: math.unit(7, "feet"),
  32471. weight: math.unit(231, "lb"),
  32472. name: "Front",
  32473. image: {
  32474. source: "./media/characters/flux/front.svg",
  32475. extra: 919/871,
  32476. bottom: 0/919
  32477. }
  32478. },
  32479. back: {
  32480. height: math.unit(7, "feet"),
  32481. weight: math.unit(231, "lb"),
  32482. name: "Back",
  32483. image: {
  32484. source: "./media/characters/flux/back.svg",
  32485. extra: 1040/992,
  32486. bottom: 0/1040
  32487. }
  32488. },
  32489. frontDressed: {
  32490. height: math.unit(7, "feet"),
  32491. weight: math.unit(231, "lb"),
  32492. name: "Front (Dressed)",
  32493. image: {
  32494. source: "./media/characters/flux/front-dressed.svg",
  32495. extra: 919/871,
  32496. bottom: 0/919
  32497. }
  32498. },
  32499. feralSide: {
  32500. height: math.unit(5, "feet"),
  32501. weight: math.unit(150, "lb"),
  32502. name: "Feral (Side)",
  32503. image: {
  32504. source: "./media/characters/flux/feral-side.svg",
  32505. extra: 598/528,
  32506. bottom: 28/626
  32507. }
  32508. },
  32509. head: {
  32510. height: math.unit(1.585, "feet"),
  32511. name: "Head",
  32512. image: {
  32513. source: "./media/characters/flux/head.svg"
  32514. }
  32515. },
  32516. headSide: {
  32517. height: math.unit(1.74, "feet"),
  32518. name: "Head (Side)",
  32519. image: {
  32520. source: "./media/characters/flux/head-side.svg"
  32521. }
  32522. },
  32523. headSideFire: {
  32524. height: math.unit(1.76, "feet"),
  32525. name: "Head (Side, Fire)",
  32526. image: {
  32527. source: "./media/characters/flux/head-side-fire.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(7, "feet"),
  32535. default: true
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32541. {
  32542. front: {
  32543. height: math.unit(9, "feet"),
  32544. weight: math.unit(1012, "lb"),
  32545. name: "Front",
  32546. image: {
  32547. source: "./media/characters/ulfra-lupae/front.svg",
  32548. extra: 1083/1011,
  32549. bottom: 67/1150
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Micro",
  32556. height: math.unit(6, "inches")
  32557. },
  32558. {
  32559. name: "Socializing",
  32560. height: math.unit(6 + 5/12, "feet")
  32561. },
  32562. {
  32563. name: "Normal",
  32564. height: math.unit(9, "feet"),
  32565. default: true
  32566. },
  32567. {
  32568. name: "Macro",
  32569. height: math.unit(150, "feet")
  32570. },
  32571. ]
  32572. ))
  32573. characterMakers.push(() => makeCharacter(
  32574. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32575. {
  32576. front: {
  32577. height: math.unit(5 + 2/12, "feet"),
  32578. weight: math.unit(120, "lb"),
  32579. name: "Front",
  32580. image: {
  32581. source: "./media/characters/timber/front.svg",
  32582. extra: 2814/2705,
  32583. bottom: 181/2995
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(5 + 2/12, "feet"),
  32591. default: true
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(9, "feet"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/nicki/front.svg",
  32603. extra: 1240/990,
  32604. bottom: 45/1285
  32605. },
  32606. form: "anthro",
  32607. default: true
  32608. },
  32609. side: {
  32610. height: math.unit(9, "feet"),
  32611. name: "Side",
  32612. image: {
  32613. source: "./media/characters/nicki/side.svg",
  32614. extra: 1047/973,
  32615. bottom: 61/1108
  32616. },
  32617. form: "anthro"
  32618. },
  32619. back: {
  32620. height: math.unit(9, "feet"),
  32621. name: "Back",
  32622. image: {
  32623. source: "./media/characters/nicki/back.svg",
  32624. extra: 1006/965,
  32625. bottom: 39/1045
  32626. },
  32627. form: "anthro"
  32628. },
  32629. taur: {
  32630. height: math.unit(15, "feet"),
  32631. name: "Taur",
  32632. image: {
  32633. source: "./media/characters/nicki/taur.svg",
  32634. extra: 1592/1347,
  32635. bottom: 0/1592
  32636. },
  32637. form: "taur",
  32638. default: true
  32639. },
  32640. },
  32641. [
  32642. {
  32643. name: "Normal",
  32644. height: math.unit(9, "feet"),
  32645. form: "anthro",
  32646. default: true
  32647. },
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(15, "feet"),
  32651. form: "taur",
  32652. default: true
  32653. }
  32654. ],
  32655. {
  32656. "anthro": {
  32657. name: "Anthro",
  32658. default: true
  32659. },
  32660. "taur": {
  32661. name: "Taur"
  32662. }
  32663. }
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32667. {
  32668. front: {
  32669. height: math.unit(7 + 10/12, "feet"),
  32670. weight: math.unit(3.5, "tons"),
  32671. name: "Front",
  32672. image: {
  32673. source: "./media/characters/lee/front.svg",
  32674. extra: 1773/1615,
  32675. bottom: 86/1859
  32676. }
  32677. },
  32678. hand: {
  32679. height: math.unit(1.78, "feet"),
  32680. name: "Hand",
  32681. image: {
  32682. source: "./media/characters/lee/hand.svg"
  32683. }
  32684. },
  32685. maw: {
  32686. height: math.unit(1.18, "feet"),
  32687. name: "Maw",
  32688. image: {
  32689. source: "./media/characters/lee/maw.svg"
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(7 + 10/12, "feet"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32703. {
  32704. front: {
  32705. height: math.unit(9, "feet"),
  32706. name: "Front",
  32707. image: {
  32708. source: "./media/characters/guti/front.svg",
  32709. extra: 4551/4355,
  32710. bottom: 123/4674
  32711. }
  32712. },
  32713. tongue: {
  32714. height: math.unit(1, "feet"),
  32715. name: "Tongue",
  32716. image: {
  32717. source: "./media/characters/guti/tongue.svg"
  32718. }
  32719. },
  32720. paw: {
  32721. height: math.unit(1.18, "feet"),
  32722. name: "Paw",
  32723. image: {
  32724. source: "./media/characters/guti/paw.svg"
  32725. }
  32726. },
  32727. },
  32728. [
  32729. {
  32730. name: "Normal",
  32731. height: math.unit(9, "feet"),
  32732. default: true
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32738. {
  32739. side: {
  32740. height: math.unit(5, "meters"),
  32741. name: "Side",
  32742. image: {
  32743. source: "./media/characters/vesper/side.svg",
  32744. extra: 1605/1518,
  32745. bottom: 0/1605
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Small",
  32752. height: math.unit(5, "meters")
  32753. },
  32754. {
  32755. name: "Sage",
  32756. height: math.unit(100, "meters"),
  32757. default: true
  32758. },
  32759. {
  32760. name: "Fun Size",
  32761. height: math.unit(600, "meters")
  32762. },
  32763. {
  32764. name: "Goddess",
  32765. height: math.unit(20000, "km")
  32766. },
  32767. {
  32768. name: "Maximum",
  32769. height: math.unit(5, "galaxies")
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(6 + 3/12, "feet"),
  32778. weight: math.unit(190, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/gawain/front.svg",
  32782. extra: 2222/2139,
  32783. bottom: 90/2312
  32784. }
  32785. },
  32786. back: {
  32787. height: math.unit(6 + 3/12, "feet"),
  32788. weight: math.unit(190, "lb"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/gawain/back.svg",
  32792. extra: 2199/2111,
  32793. bottom: 73/2272
  32794. }
  32795. },
  32796. },
  32797. [
  32798. {
  32799. name: "Normal",
  32800. height: math.unit(6 + 3/12, "feet"),
  32801. default: true
  32802. },
  32803. ]
  32804. ))
  32805. characterMakers.push(() => makeCharacter(
  32806. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32807. {
  32808. side: {
  32809. height: math.unit(3.5, "meters"),
  32810. weight: math.unit(16000, "lb"),
  32811. name: "Side",
  32812. image: {
  32813. source: "./media/characters/dascalti/side.svg",
  32814. extra: 392/273,
  32815. bottom: 47/439
  32816. }
  32817. },
  32818. breath: {
  32819. height: math.unit(7.4, "feet"),
  32820. name: "Breath",
  32821. image: {
  32822. source: "./media/characters/dascalti/breath.svg"
  32823. }
  32824. },
  32825. fed: {
  32826. height: math.unit(3.6, "meters"),
  32827. weight: math.unit(16000, "lb"),
  32828. name: "Fed",
  32829. image: {
  32830. source: "./media/characters/dascalti/fed.svg",
  32831. extra: 1419/820,
  32832. bottom: 95/1514
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(3.5, "meters"),
  32840. default: true
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32846. {
  32847. front: {
  32848. height: math.unit(3 + 5/12, "feet"),
  32849. name: "Front",
  32850. image: {
  32851. source: "./media/characters/mauve/front.svg",
  32852. extra: 1126/1033,
  32853. bottom: 65/1191
  32854. }
  32855. },
  32856. side: {
  32857. height: math.unit(3 + 5/12, "feet"),
  32858. name: "Side",
  32859. image: {
  32860. source: "./media/characters/mauve/side.svg",
  32861. extra: 1089/1001,
  32862. bottom: 29/1118
  32863. }
  32864. },
  32865. back: {
  32866. height: math.unit(3 + 5/12, "feet"),
  32867. name: "Back",
  32868. image: {
  32869. source: "./media/characters/mauve/back.svg",
  32870. extra: 1173/1053,
  32871. bottom: 109/1282
  32872. }
  32873. },
  32874. },
  32875. [
  32876. {
  32877. name: "Normal",
  32878. height: math.unit(3 + 5/12, "feet"),
  32879. default: true
  32880. },
  32881. ]
  32882. ))
  32883. characterMakers.push(() => makeCharacter(
  32884. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32885. {
  32886. front: {
  32887. height: math.unit(6 + 3/12, "feet"),
  32888. weight: math.unit(430, "lb"),
  32889. name: "Front",
  32890. image: {
  32891. source: "./media/characters/carlos/front.svg",
  32892. extra: 1964/1913,
  32893. bottom: 70/2034
  32894. }
  32895. },
  32896. },
  32897. [
  32898. {
  32899. name: "Normal",
  32900. height: math.unit(6 + 3/12, "feet"),
  32901. default: true
  32902. },
  32903. ]
  32904. ))
  32905. characterMakers.push(() => makeCharacter(
  32906. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32907. {
  32908. back: {
  32909. height: math.unit(5 + 10/12, "feet"),
  32910. weight: math.unit(200, "lb"),
  32911. name: "Back",
  32912. image: {
  32913. source: "./media/characters/jax/back.svg",
  32914. extra: 764/739,
  32915. bottom: 25/789
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(5 + 10/12, "feet"),
  32923. default: true
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(8, "feet"),
  32932. weight: math.unit(250, "lb"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/eikthynir/front.svg",
  32936. extra: 1332/1166,
  32937. bottom: 82/1414
  32938. }
  32939. },
  32940. back: {
  32941. height: math.unit(8, "feet"),
  32942. weight: math.unit(250, "lb"),
  32943. name: "Back",
  32944. image: {
  32945. source: "./media/characters/eikthynir/back.svg",
  32946. extra: 1342/1190,
  32947. bottom: 19/1361
  32948. }
  32949. },
  32950. dick: {
  32951. height: math.unit(2.35, "feet"),
  32952. name: "Dick",
  32953. image: {
  32954. source: "./media/characters/eikthynir/dick.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(8, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(99, "meters"),
  32971. weight: math.unit(13000, "tons"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/zlmos/front.svg",
  32975. extra: 2202/1992,
  32976. bottom: 315/2517
  32977. }
  32978. },
  32979. },
  32980. [
  32981. {
  32982. name: "Macro",
  32983. height: math.unit(99, "meters"),
  32984. default: true
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32990. {
  32991. front: {
  32992. height: math.unit(6 + 5/12, "feet"),
  32993. name: "Front",
  32994. image: {
  32995. source: "./media/characters/purri/front.svg",
  32996. extra: 1698/1610,
  32997. bottom: 32/1730
  32998. }
  32999. },
  33000. frontAlt: {
  33001. height: math.unit(6 + 5/12, "feet"),
  33002. name: "Front (Alt)",
  33003. image: {
  33004. source: "./media/characters/purri/front-alt.svg",
  33005. extra: 450/420,
  33006. bottom: 26/476
  33007. }
  33008. },
  33009. boots: {
  33010. height: math.unit(5.5, "feet"),
  33011. name: "Boots",
  33012. image: {
  33013. source: "./media/characters/purri/boots.svg",
  33014. extra: 905/853,
  33015. bottom: 18/923
  33016. }
  33017. },
  33018. lying: {
  33019. height: math.unit(2, "feet"),
  33020. name: "Lying",
  33021. image: {
  33022. source: "./media/characters/purri/lying.svg",
  33023. extra: 940/843,
  33024. bottom: 146/1086
  33025. }
  33026. },
  33027. devious: {
  33028. height: math.unit(1.77, "feet"),
  33029. name: "Devious",
  33030. image: {
  33031. source: "./media/characters/purri/devious.svg",
  33032. extra: 1440/1155,
  33033. bottom: 147/1587
  33034. }
  33035. },
  33036. bean: {
  33037. height: math.unit(1.94, "feet"),
  33038. name: "Bean",
  33039. image: {
  33040. source: "./media/characters/purri/bean.svg"
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Micro",
  33047. height: math.unit(1, "mm")
  33048. },
  33049. {
  33050. name: "Normal",
  33051. height: math.unit(6 + 5/12, "feet"),
  33052. default: true
  33053. },
  33054. {
  33055. name: "Macro :3c",
  33056. height: math.unit(2, "miles")
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(6 + 2/12, "feet"),
  33065. weight: math.unit(250, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/moonlight/front.svg",
  33069. extra: 1044/908,
  33070. bottom: 56/1100
  33071. }
  33072. },
  33073. feral: {
  33074. height: math.unit(3 + 1/12, "feet"),
  33075. weight: math.unit(50, "kg"),
  33076. name: "Feral",
  33077. image: {
  33078. source: "./media/characters/moonlight/feral.svg",
  33079. extra: 3705/2791,
  33080. bottom: 145/3850
  33081. }
  33082. },
  33083. paw: {
  33084. height: math.unit(1, "feet"),
  33085. name: "Paw",
  33086. image: {
  33087. source: "./media/characters/moonlight/paw.svg"
  33088. }
  33089. },
  33090. paws: {
  33091. height: math.unit(0.98, "feet"),
  33092. name: "Paws",
  33093. image: {
  33094. source: "./media/characters/moonlight/paws.svg",
  33095. extra: 939/939,
  33096. bottom: 50/989
  33097. }
  33098. },
  33099. mouth: {
  33100. height: math.unit(0.48, "feet"),
  33101. name: "Mouth",
  33102. image: {
  33103. source: "./media/characters/moonlight/mouth.svg"
  33104. }
  33105. },
  33106. dick: {
  33107. height: math.unit(1.46, "feet"),
  33108. name: "Dick",
  33109. image: {
  33110. source: "./media/characters/moonlight/dick.svg"
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Normal",
  33117. height: math.unit(6 + 2/12, "feet"),
  33118. default: true
  33119. },
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(300, "feet")
  33123. },
  33124. {
  33125. name: "Macro+",
  33126. height: math.unit(1, "mile")
  33127. },
  33128. {
  33129. name: "Mt. Moon",
  33130. height: math.unit(5, "miles")
  33131. },
  33132. {
  33133. name: "Megamacro",
  33134. height: math.unit(15, "miles")
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33140. {
  33141. back: {
  33142. height: math.unit(6, "feet"),
  33143. weight: math.unit(150, "lb"),
  33144. name: "Back",
  33145. image: {
  33146. source: "./media/characters/sylen/back.svg",
  33147. extra: 1335/1273,
  33148. bottom: 107/1442
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(5 + 5/12, "feet")
  33156. },
  33157. {
  33158. name: "Megamacro",
  33159. height: math.unit(3, "miles"),
  33160. default: true
  33161. },
  33162. ]
  33163. ))
  33164. characterMakers.push(() => makeCharacter(
  33165. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33166. {
  33167. front: {
  33168. height: math.unit(6, "feet"),
  33169. weight: math.unit(190, "lb"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/huttser/front.svg",
  33173. extra: 1152/1058,
  33174. bottom: 23/1175
  33175. }
  33176. },
  33177. side: {
  33178. height: math.unit(6, "feet"),
  33179. weight: math.unit(190, "lb"),
  33180. name: "Side",
  33181. image: {
  33182. source: "./media/characters/huttser/side.svg",
  33183. extra: 1174/1065,
  33184. bottom: 18/1192
  33185. }
  33186. },
  33187. back: {
  33188. height: math.unit(6, "feet"),
  33189. weight: math.unit(190, "lb"),
  33190. name: "Back",
  33191. image: {
  33192. source: "./media/characters/huttser/back.svg",
  33193. extra: 1158/1056,
  33194. bottom: 12/1170
  33195. }
  33196. },
  33197. },
  33198. [
  33199. ]
  33200. ))
  33201. characterMakers.push(() => makeCharacter(
  33202. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33203. {
  33204. side: {
  33205. height: math.unit(12 + 9/12, "feet"),
  33206. weight: math.unit(15000, "lb"),
  33207. name: "Side",
  33208. image: {
  33209. source: "./media/characters/faan/side.svg",
  33210. extra: 2747/2697,
  33211. bottom: 0/2747
  33212. }
  33213. },
  33214. front: {
  33215. height: math.unit(12 + 9/12, "feet"),
  33216. weight: math.unit(15000, "lb"),
  33217. name: "Front",
  33218. image: {
  33219. source: "./media/characters/faan/front.svg",
  33220. extra: 607/571,
  33221. bottom: 24/631
  33222. }
  33223. },
  33224. head: {
  33225. height: math.unit(2.85, "feet"),
  33226. name: "Head",
  33227. image: {
  33228. source: "./media/characters/faan/head.svg"
  33229. }
  33230. },
  33231. headAlt: {
  33232. height: math.unit(3.13, "feet"),
  33233. name: "Head-alt",
  33234. image: {
  33235. source: "./media/characters/faan/head-alt.svg"
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(12 + 9/12, "feet"),
  33243. default: true
  33244. },
  33245. ]
  33246. ))
  33247. characterMakers.push(() => makeCharacter(
  33248. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33249. {
  33250. front: {
  33251. height: math.unit(6, "feet"),
  33252. weight: math.unit(300, "lb"),
  33253. name: "Front",
  33254. image: {
  33255. source: "./media/characters/tanio/front.svg",
  33256. extra: 711/673,
  33257. bottom: 25/736
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(6, "feet"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(3, "inches"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/noboru/front.svg",
  33277. extra: 1039/932,
  33278. bottom: 18/1057
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Micro",
  33285. height: math.unit(3, "inches"),
  33286. default: true
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(1.85, "meters"),
  33295. weight: math.unit(80, "kg"),
  33296. name: "Front",
  33297. image: {
  33298. source: "./media/characters/daniel-barrett/front.svg",
  33299. extra: 355/337,
  33300. bottom: 9/364
  33301. }
  33302. },
  33303. },
  33304. [
  33305. {
  33306. name: "Pico",
  33307. height: math.unit(0.0433, "mm")
  33308. },
  33309. {
  33310. name: "Nano",
  33311. height: math.unit(1.5, "mm")
  33312. },
  33313. {
  33314. name: "Micro",
  33315. height: math.unit(5.3, "cm"),
  33316. default: true
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(1.85, "meters")
  33321. },
  33322. {
  33323. name: "Macro",
  33324. height: math.unit(64.7, "meters")
  33325. },
  33326. {
  33327. name: "Megamacro",
  33328. height: math.unit(2.26, "km")
  33329. },
  33330. {
  33331. name: "Gigamacro",
  33332. height: math.unit(79, "km")
  33333. },
  33334. {
  33335. name: "Teramacro",
  33336. height: math.unit(2765, "km")
  33337. },
  33338. {
  33339. name: "Petamacro",
  33340. height: math.unit(96678, "km")
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(30, "meters"),
  33349. weight: math.unit(400, "tons"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/zeel/front.svg",
  33353. extra: 2599/2599,
  33354. bottom: 226/2825
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Macro",
  33361. height: math.unit(30, "meters"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(6 + 7/12, "feet"),
  33371. weight: math.unit(210, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/tarn/front.svg",
  33375. extra: 3517/3220,
  33376. bottom: 91/3608
  33377. }
  33378. },
  33379. back: {
  33380. height: math.unit(6 + 7/12, "feet"),
  33381. weight: math.unit(210, "lb"),
  33382. name: "Back",
  33383. image: {
  33384. source: "./media/characters/tarn/back.svg",
  33385. extra: 3566/3241,
  33386. bottom: 34/3600
  33387. }
  33388. },
  33389. dick: {
  33390. height: math.unit(1.65, "feet"),
  33391. name: "Dick",
  33392. image: {
  33393. source: "./media/characters/tarn/dick.svg"
  33394. }
  33395. },
  33396. paw: {
  33397. height: math.unit(1.80, "feet"),
  33398. name: "Paw",
  33399. image: {
  33400. source: "./media/characters/tarn/paw.svg"
  33401. }
  33402. },
  33403. tongue: {
  33404. height: math.unit(0.97, "feet"),
  33405. name: "Tongue",
  33406. image: {
  33407. source: "./media/characters/tarn/tongue.svg"
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Micro",
  33414. height: math.unit(4, "inches")
  33415. },
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(6 + 7/12, "feet"),
  33419. default: true
  33420. },
  33421. {
  33422. name: "Macro",
  33423. height: math.unit(300, "feet")
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(5 + 7/12, "feet"),
  33432. weight: math.unit(80, "kg"),
  33433. name: "Front",
  33434. image: {
  33435. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33436. extra: 3023/2865,
  33437. bottom: 33/3056
  33438. }
  33439. },
  33440. back: {
  33441. height: math.unit(5 + 7/12, "feet"),
  33442. weight: math.unit(80, "kg"),
  33443. name: "Back",
  33444. image: {
  33445. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33446. extra: 3020/2886,
  33447. bottom: 30/3050
  33448. }
  33449. },
  33450. dick: {
  33451. height: math.unit(0.98, "feet"),
  33452. name: "Dick",
  33453. image: {
  33454. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33455. }
  33456. },
  33457. anatomy: {
  33458. height: math.unit(2.86, "feet"),
  33459. name: "Anatomy",
  33460. image: {
  33461. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Really Small",
  33468. height: math.unit(2, "inches")
  33469. },
  33470. {
  33471. name: "Micro",
  33472. height: math.unit(5.583, "inches")
  33473. },
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(5 + 7/12, "feet"),
  33477. default: true
  33478. },
  33479. {
  33480. name: "Macro",
  33481. height: math.unit(67, "feet")
  33482. },
  33483. {
  33484. name: "Megamacro",
  33485. height: math.unit(134, "feet")
  33486. },
  33487. ]
  33488. ))
  33489. characterMakers.push(() => makeCharacter(
  33490. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33491. {
  33492. front: {
  33493. height: math.unit(9, "feet"),
  33494. weight: math.unit(120, "lb"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/sally/front.svg",
  33498. extra: 1506/1349,
  33499. bottom: 66/1572
  33500. }
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(9, "feet"),
  33507. default: true
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33513. {
  33514. front: {
  33515. height: math.unit(8, "feet"),
  33516. weight: math.unit(900, "lb"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/owen/front.svg",
  33520. extra: 1761/1657,
  33521. bottom: 74/1835
  33522. }
  33523. },
  33524. side: {
  33525. height: math.unit(8, "feet"),
  33526. weight: math.unit(900, "lb"),
  33527. name: "Side",
  33528. image: {
  33529. source: "./media/characters/owen/side.svg",
  33530. extra: 1797/1734,
  33531. bottom: 30/1827
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(8, "feet"),
  33536. weight: math.unit(900, "lb"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/owen/back.svg",
  33540. extra: 1796/1706,
  33541. bottom: 59/1855
  33542. }
  33543. },
  33544. maw: {
  33545. height: math.unit(1.76, "feet"),
  33546. name: "Maw",
  33547. image: {
  33548. source: "./media/characters/owen/maw.svg"
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Normal",
  33555. height: math.unit(8, "feet"),
  33556. default: true
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33562. {
  33563. front: {
  33564. height: math.unit(4, "feet"),
  33565. weight: math.unit(400, "lb"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/ryth/front.svg",
  33569. extra: 1920/1748,
  33570. bottom: 42/1962
  33571. }
  33572. },
  33573. back: {
  33574. height: math.unit(4, "feet"),
  33575. weight: math.unit(400, "lb"),
  33576. name: "Back",
  33577. image: {
  33578. source: "./media/characters/ryth/back.svg",
  33579. extra: 1897/1690,
  33580. bottom: 89/1986
  33581. }
  33582. },
  33583. mouth: {
  33584. height: math.unit(1.39, "feet"),
  33585. name: "Mouth",
  33586. image: {
  33587. source: "./media/characters/ryth/mouth.svg"
  33588. }
  33589. },
  33590. tailmaw: {
  33591. height: math.unit(1.23, "feet"),
  33592. name: "Tailmaw",
  33593. image: {
  33594. source: "./media/characters/ryth/tailmaw.svg"
  33595. }
  33596. },
  33597. goia: {
  33598. height: math.unit(4, "meters"),
  33599. weight: math.unit(10800, "lb"),
  33600. name: "Goia",
  33601. image: {
  33602. source: "./media/characters/ryth/goia.svg",
  33603. extra: 745/640,
  33604. bottom: 107/852
  33605. }
  33606. },
  33607. goiaFront: {
  33608. height: math.unit(4, "meters"),
  33609. weight: math.unit(10800, "lb"),
  33610. name: "Goia (Front)",
  33611. image: {
  33612. source: "./media/characters/ryth/goia-front.svg",
  33613. extra: 750/586,
  33614. bottom: 114/864
  33615. }
  33616. },
  33617. goiaMaw: {
  33618. height: math.unit(5.55, "feet"),
  33619. name: "Goia Maw",
  33620. image: {
  33621. source: "./media/characters/ryth/goia-maw.svg"
  33622. }
  33623. },
  33624. goiaForepaw: {
  33625. height: math.unit(3.5, "feet"),
  33626. name: "Goia Forepaw",
  33627. image: {
  33628. source: "./media/characters/ryth/goia-forepaw.svg"
  33629. }
  33630. },
  33631. goiaHindpaw: {
  33632. height: math.unit(5.55, "feet"),
  33633. name: "Goia Hindpaw",
  33634. image: {
  33635. source: "./media/characters/ryth/goia-hindpaw.svg"
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(4, "feet"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(7, "feet"),
  33652. weight: math.unit(180, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/necrolance/front.svg",
  33656. extra: 1062/947,
  33657. bottom: 41/1103
  33658. }
  33659. },
  33660. back: {
  33661. height: math.unit(7, "feet"),
  33662. weight: math.unit(180, "lb"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/necrolance/back.svg",
  33666. extra: 1045/984,
  33667. bottom: 14/1059
  33668. }
  33669. },
  33670. wing: {
  33671. height: math.unit(2.67, "feet"),
  33672. name: "Wing",
  33673. image: {
  33674. source: "./media/characters/necrolance/wing.svg"
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(7, "feet"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33688. {
  33689. front: {
  33690. height: math.unit(76, "meters"),
  33691. weight: math.unit(30000, "tons"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/tyler/front.svg",
  33695. extra: 1640/1640,
  33696. bottom: 114/1754
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Macro",
  33703. height: math.unit(76, "meters"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(4 + 11/12, "feet"),
  33713. weight: math.unit(132, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/icey/front.svg",
  33717. extra: 2750/2550,
  33718. bottom: 33/2783
  33719. }
  33720. },
  33721. back: {
  33722. height: math.unit(4 + 11/12, "feet"),
  33723. weight: math.unit(132, "lb"),
  33724. name: "Back",
  33725. image: {
  33726. source: "./media/characters/icey/back.svg",
  33727. extra: 2624/2481,
  33728. bottom: 35/2659
  33729. }
  33730. },
  33731. },
  33732. [
  33733. {
  33734. name: "Normal",
  33735. height: math.unit(4 + 11/12, "feet"),
  33736. default: true
  33737. },
  33738. ]
  33739. ))
  33740. characterMakers.push(() => makeCharacter(
  33741. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33742. {
  33743. front: {
  33744. height: math.unit(100, "feet"),
  33745. weight: math.unit(0, "lb"),
  33746. name: "Front",
  33747. image: {
  33748. source: "./media/characters/smile/front.svg",
  33749. extra: 2983/2912,
  33750. bottom: 162/3145
  33751. }
  33752. },
  33753. back: {
  33754. height: math.unit(100, "feet"),
  33755. weight: math.unit(0, "lb"),
  33756. name: "Back",
  33757. image: {
  33758. source: "./media/characters/smile/back.svg",
  33759. extra: 3143/3031,
  33760. bottom: 91/3234
  33761. }
  33762. },
  33763. head: {
  33764. height: math.unit(26.3, "feet"),
  33765. weight: math.unit(0, "lb"),
  33766. name: "Head",
  33767. image: {
  33768. source: "./media/characters/smile/head.svg"
  33769. }
  33770. },
  33771. collar: {
  33772. height: math.unit(5.3, "feet"),
  33773. weight: math.unit(0, "lb"),
  33774. name: "Collar",
  33775. image: {
  33776. source: "./media/characters/smile/collar.svg"
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Macro",
  33783. height: math.unit(100, "feet"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33790. {
  33791. dragon: {
  33792. height: math.unit(26, "feet"),
  33793. weight: math.unit(36, "tons"),
  33794. name: "Dragon",
  33795. image: {
  33796. source: "./media/characters/arimphae/dragon.svg",
  33797. extra: 1574/983,
  33798. bottom: 357/1931
  33799. }
  33800. },
  33801. drake: {
  33802. height: math.unit(9, "feet"),
  33803. weight: math.unit(1.5, "tons"),
  33804. name: "Drake",
  33805. image: {
  33806. source: "./media/characters/arimphae/drake.svg",
  33807. extra: 1120/925,
  33808. bottom: 435/1555
  33809. }
  33810. },
  33811. },
  33812. [
  33813. {
  33814. name: "Small",
  33815. height: math.unit(26*5/9, "feet")
  33816. },
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(26, "feet"),
  33820. default: true
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33826. {
  33827. front: {
  33828. height: math.unit(8 + 9/12, "feet"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/xander/front.svg",
  33832. extra: 1237/974,
  33833. bottom: 94/1331
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Normal",
  33840. height: math.unit(8 + 9/12, "feet"),
  33841. default: true
  33842. },
  33843. {
  33844. name: "Gaze Grabber",
  33845. height: math.unit(13 + 8/12, "feet")
  33846. },
  33847. {
  33848. name: "Jaw Dropper",
  33849. height: math.unit(27, "feet")
  33850. },
  33851. {
  33852. name: "Show Stopper",
  33853. height: math.unit(136, "feet")
  33854. },
  33855. {
  33856. name: "Superstar",
  33857. height: math.unit(1.9e6, "miles")
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33863. {
  33864. side: {
  33865. height: math.unit(2100, "feet"),
  33866. name: "Side",
  33867. image: {
  33868. source: "./media/characters/osiris/side.svg",
  33869. extra: 1105/939,
  33870. bottom: 167/1272
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Macro",
  33877. height: math.unit(2100, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33884. {
  33885. front: {
  33886. height: math.unit(6 + 8/12, "feet"),
  33887. weight: math.unit(225, "lb"),
  33888. name: "Front",
  33889. image: {
  33890. source: "./media/characters/rhys-londe/front.svg",
  33891. extra: 2258/2141,
  33892. bottom: 188/2446
  33893. }
  33894. },
  33895. back: {
  33896. height: math.unit(6 + 8/12, "feet"),
  33897. weight: math.unit(225, "lb"),
  33898. name: "Back",
  33899. image: {
  33900. source: "./media/characters/rhys-londe/back.svg",
  33901. extra: 2237/2137,
  33902. bottom: 63/2300
  33903. }
  33904. },
  33905. frontNsfw: {
  33906. height: math.unit(6 + 8/12, "feet"),
  33907. weight: math.unit(225, "lb"),
  33908. name: "Front (NSFW)",
  33909. image: {
  33910. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33911. extra: 2258/2141,
  33912. bottom: 188/2446
  33913. }
  33914. },
  33915. backNsfw: {
  33916. height: math.unit(6 + 8/12, "feet"),
  33917. weight: math.unit(225, "lb"),
  33918. name: "Back (NSFW)",
  33919. image: {
  33920. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33921. extra: 2237/2137,
  33922. bottom: 63/2300
  33923. }
  33924. },
  33925. dick: {
  33926. height: math.unit(30, "inches"),
  33927. name: "Dick",
  33928. image: {
  33929. source: "./media/characters/rhys-londe/dick.svg"
  33930. }
  33931. },
  33932. maw: {
  33933. height: math.unit(1.6, "feet"),
  33934. name: "Maw",
  33935. image: {
  33936. source: "./media/characters/rhys-londe/maw.svg"
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Normal",
  33943. height: math.unit(6 + 8/12, "feet"),
  33944. default: true
  33945. },
  33946. ]
  33947. ))
  33948. characterMakers.push(() => makeCharacter(
  33949. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33950. {
  33951. front: {
  33952. height: math.unit(3 + 10/12, "feet"),
  33953. weight: math.unit(90, "lb"),
  33954. name: "Front",
  33955. image: {
  33956. source: "./media/characters/taivas-ensim/front.svg",
  33957. extra: 1327/1216,
  33958. bottom: 96/1423
  33959. }
  33960. },
  33961. back: {
  33962. height: math.unit(3 + 10/12, "feet"),
  33963. weight: math.unit(90, "lb"),
  33964. name: "Back",
  33965. image: {
  33966. source: "./media/characters/taivas-ensim/back.svg",
  33967. extra: 1355/1247,
  33968. bottom: 11/1366
  33969. }
  33970. },
  33971. frontNsfw: {
  33972. height: math.unit(3 + 10/12, "feet"),
  33973. weight: math.unit(90, "lb"),
  33974. name: "Front (NSFW)",
  33975. image: {
  33976. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33977. extra: 1327/1216,
  33978. bottom: 96/1423
  33979. }
  33980. },
  33981. backNsfw: {
  33982. height: math.unit(3 + 10/12, "feet"),
  33983. weight: math.unit(90, "lb"),
  33984. name: "Back (NSFW)",
  33985. image: {
  33986. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33987. extra: 1355/1247,
  33988. bottom: 11/1366
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(3 + 10/12, "feet"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(9 + 6/12, "feet"),
  34005. weight: math.unit(940, "lb"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/byliss/front.svg",
  34009. extra: 1327/1290,
  34010. bottom: 82/1409
  34011. }
  34012. },
  34013. back: {
  34014. height: math.unit(9 + 6/12, "feet"),
  34015. weight: math.unit(940, "lb"),
  34016. name: "Back",
  34017. image: {
  34018. source: "./media/characters/byliss/back.svg",
  34019. extra: 1376/1349,
  34020. bottom: 9/1385
  34021. }
  34022. },
  34023. frontNsfw: {
  34024. height: math.unit(9 + 6/12, "feet"),
  34025. weight: math.unit(940, "lb"),
  34026. name: "Front (NSFW)",
  34027. image: {
  34028. source: "./media/characters/byliss/front-nsfw.svg",
  34029. extra: 1327/1290,
  34030. bottom: 82/1409
  34031. }
  34032. },
  34033. backNsfw: {
  34034. height: math.unit(9 + 6/12, "feet"),
  34035. weight: math.unit(940, "lb"),
  34036. name: "Back (NSFW)",
  34037. image: {
  34038. source: "./media/characters/byliss/back-nsfw.svg",
  34039. extra: 1376/1349,
  34040. bottom: 9/1385
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(9 + 6/12, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(5 + 2/12, "feet"),
  34057. weight: math.unit(200, "lb"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/noraly/front.svg",
  34061. extra: 4985/4773,
  34062. bottom: 150/5135
  34063. }
  34064. },
  34065. full: {
  34066. height: math.unit(5 + 2/12, "feet"),
  34067. weight: math.unit(164, "lb"),
  34068. name: "Full",
  34069. image: {
  34070. source: "./media/characters/noraly/full.svg",
  34071. extra: 1114/1059,
  34072. bottom: 35/1149
  34073. }
  34074. },
  34075. fuller: {
  34076. height: math.unit(5 + 2/12, "feet"),
  34077. weight: math.unit(230, "lb"),
  34078. name: "Fuller",
  34079. image: {
  34080. source: "./media/characters/noraly/fuller.svg",
  34081. extra: 1114/1059,
  34082. bottom: 35/1149
  34083. }
  34084. },
  34085. fullest: {
  34086. height: math.unit(5 + 2/12, "feet"),
  34087. weight: math.unit(300, "lb"),
  34088. name: "Fullest",
  34089. image: {
  34090. source: "./media/characters/noraly/fullest.svg",
  34091. extra: 1114/1059,
  34092. bottom: 35/1149
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Normal",
  34099. height: math.unit(5 + 2/12, "feet"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34106. {
  34107. front: {
  34108. height: math.unit(5 + 2/12, "feet"),
  34109. weight: math.unit(210, "lb"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/pera/front.svg",
  34113. extra: 1560/1531,
  34114. bottom: 165/1725
  34115. }
  34116. },
  34117. back: {
  34118. height: math.unit(5 + 2/12, "feet"),
  34119. weight: math.unit(210, "lb"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/pera/back.svg",
  34123. extra: 1523/1493,
  34124. bottom: 152/1675
  34125. }
  34126. },
  34127. dick: {
  34128. height: math.unit(2.4, "feet"),
  34129. name: "Dick",
  34130. image: {
  34131. source: "./media/characters/pera/dick.svg"
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Normal",
  34138. height: math.unit(5 + 2/12, "feet"),
  34139. default: true
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34145. {
  34146. front: {
  34147. height: math.unit(12, "feet"),
  34148. weight: math.unit(3200, "lb"),
  34149. name: "Front",
  34150. image: {
  34151. source: "./media/characters/julian/front.svg",
  34152. extra: 2962/2701,
  34153. bottom: 184/3146
  34154. }
  34155. },
  34156. maw: {
  34157. height: math.unit(5.35, "feet"),
  34158. name: "Maw",
  34159. image: {
  34160. source: "./media/characters/julian/maw.svg"
  34161. }
  34162. },
  34163. paw: {
  34164. height: math.unit(3.07, "feet"),
  34165. name: "Paw",
  34166. image: {
  34167. source: "./media/characters/julian/paw.svg"
  34168. }
  34169. },
  34170. },
  34171. [
  34172. {
  34173. name: "Default",
  34174. height: math.unit(12, "feet"),
  34175. default: true
  34176. },
  34177. {
  34178. name: "Big",
  34179. height: math.unit(50, "feet")
  34180. },
  34181. {
  34182. name: "Really Big",
  34183. height: math.unit(1, "mile")
  34184. },
  34185. {
  34186. name: "Extremely Big",
  34187. height: math.unit(100, "miles")
  34188. },
  34189. {
  34190. name: "Planet Hugger",
  34191. height: math.unit(200, "megameters")
  34192. },
  34193. {
  34194. name: "Unreasonably Big",
  34195. height: math.unit(1e300, "meters")
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34201. {
  34202. solgooleo: {
  34203. height: math.unit(4, "meters"),
  34204. weight: math.unit(6000*1.5, "kg"),
  34205. volume: math.unit(6000, "liters"),
  34206. name: "Solgooleo",
  34207. image: {
  34208. source: "./media/characters/pi/solgooleo.svg",
  34209. extra: 388/331,
  34210. bottom: 29/417
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(4, "meters"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(8, "feet"),
  34227. weight: math.unit(4, "tons"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/shaun/front.svg",
  34231. extra: 503/495,
  34232. bottom: 20/523
  34233. }
  34234. },
  34235. back: {
  34236. height: math.unit(8, "feet"),
  34237. weight: math.unit(4, "tons"),
  34238. name: "Back",
  34239. image: {
  34240. source: "./media/characters/shaun/back.svg",
  34241. extra: 487/480,
  34242. bottom: 20/507
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Lorg",
  34249. height: math.unit(8, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34256. {
  34257. frontAnthro: {
  34258. height: math.unit(7, "feet"),
  34259. name: "Front",
  34260. image: {
  34261. source: "./media/characters/sini/front-anthro.svg",
  34262. extra: 726/678,
  34263. bottom: 35/761
  34264. },
  34265. form: "anthro",
  34266. default: true
  34267. },
  34268. backAnthro: {
  34269. height: math.unit(7, "feet"),
  34270. name: "Back",
  34271. image: {
  34272. source: "./media/characters/sini/back-anthro.svg",
  34273. extra: 743/701,
  34274. bottom: 12/755
  34275. },
  34276. form: "anthro",
  34277. },
  34278. frontAnthroNsfw: {
  34279. height: math.unit(7, "feet"),
  34280. name: "Front (NSFW)",
  34281. image: {
  34282. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34283. extra: 726/678,
  34284. bottom: 35/761
  34285. },
  34286. form: "anthro"
  34287. },
  34288. backAnthroNsfw: {
  34289. height: math.unit(7, "feet"),
  34290. name: "Back (NSFW)",
  34291. image: {
  34292. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34293. extra: 743/701,
  34294. bottom: 12/755
  34295. },
  34296. form: "anthro",
  34297. },
  34298. mawAnthro: {
  34299. height: math.unit(2.14, "feet"),
  34300. name: "Maw",
  34301. image: {
  34302. source: "./media/characters/sini/maw-anthro.svg"
  34303. },
  34304. form: "anthro"
  34305. },
  34306. dick: {
  34307. height: math.unit(1.45, "feet"),
  34308. name: "Dick",
  34309. image: {
  34310. source: "./media/characters/sini/dick-anthro.svg"
  34311. },
  34312. form: "anthro"
  34313. },
  34314. feral: {
  34315. height: math.unit(16, "feet"),
  34316. name: "Feral",
  34317. image: {
  34318. source: "./media/characters/sini/feral.svg",
  34319. extra: 814/605,
  34320. bottom: 11/825
  34321. },
  34322. form: "feral",
  34323. default: true
  34324. },
  34325. feralNsfw: {
  34326. height: math.unit(16, "feet"),
  34327. name: "Feral (NSFW)",
  34328. image: {
  34329. source: "./media/characters/sini/feral-nsfw.svg",
  34330. extra: 814/605,
  34331. bottom: 11/825
  34332. },
  34333. form: "feral"
  34334. },
  34335. mawFeral: {
  34336. height: math.unit(5.66, "feet"),
  34337. name: "Maw",
  34338. image: {
  34339. source: "./media/characters/sini/maw-feral.svg"
  34340. },
  34341. form: "feral",
  34342. },
  34343. pawFeral: {
  34344. height: math.unit(5.17, "feet"),
  34345. name: "Paw",
  34346. image: {
  34347. source: "./media/characters/sini/paw-feral.svg"
  34348. },
  34349. form: "feral",
  34350. },
  34351. rumpFeral: {
  34352. height: math.unit(13.11, "feet"),
  34353. name: "Rump",
  34354. image: {
  34355. source: "./media/characters/sini/rump-feral.svg"
  34356. },
  34357. form: "feral",
  34358. },
  34359. dickFeral: {
  34360. height: math.unit(1, "feet"),
  34361. name: "Dick",
  34362. image: {
  34363. source: "./media/characters/sini/dick-feral.svg"
  34364. },
  34365. form: "feral",
  34366. },
  34367. eyeFeral: {
  34368. height: math.unit(1.23, "feet"),
  34369. name: "Eye",
  34370. image: {
  34371. source: "./media/characters/sini/eye-feral.svg"
  34372. },
  34373. form: "feral",
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(7, "feet"),
  34380. default: true,
  34381. form: "anthro"
  34382. },
  34383. {
  34384. name: "Normal",
  34385. height: math.unit(16, "feet"),
  34386. default: true,
  34387. form: "feral"
  34388. },
  34389. ],
  34390. {
  34391. "anthro": {
  34392. name: "Anthro",
  34393. default: true
  34394. },
  34395. "feral": {
  34396. name: "Feral",
  34397. }
  34398. }
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34402. {
  34403. side: {
  34404. height: math.unit(47.2, "meters"),
  34405. weight: math.unit(10000, "tons"),
  34406. name: "Side",
  34407. image: {
  34408. source: "./media/characters/raylldo/side.svg",
  34409. extra: 2363/642,
  34410. bottom: 221/2584
  34411. }
  34412. },
  34413. top: {
  34414. height: math.unit(240, "meters"),
  34415. weight: math.unit(10000, "tons"),
  34416. name: "Top",
  34417. image: {
  34418. source: "./media/characters/raylldo/top.svg"
  34419. }
  34420. },
  34421. bottom: {
  34422. height: math.unit(240, "meters"),
  34423. weight: math.unit(10000, "tons"),
  34424. name: "Bottom",
  34425. image: {
  34426. source: "./media/characters/raylldo/bottom.svg"
  34427. }
  34428. },
  34429. head: {
  34430. height: math.unit(38.6, "meters"),
  34431. name: "Head",
  34432. image: {
  34433. source: "./media/characters/raylldo/head.svg",
  34434. extra: 1335/1112,
  34435. bottom: 0/1335
  34436. }
  34437. },
  34438. maw: {
  34439. height: math.unit(16.37, "meters"),
  34440. name: "Maw",
  34441. image: {
  34442. source: "./media/characters/raylldo/maw.svg",
  34443. extra: 883/660,
  34444. bottom: 0/883
  34445. },
  34446. extraAttributes: {
  34447. preyCapacity: {
  34448. name: "Capacity",
  34449. power: 3,
  34450. type: "volume",
  34451. base: math.unit(1000, "people")
  34452. },
  34453. tongueSize: {
  34454. name: "Tongue Size",
  34455. power: 2,
  34456. type: "area",
  34457. base: math.unit(21, "m^2")
  34458. }
  34459. }
  34460. },
  34461. forepaw: {
  34462. height: math.unit(18, "meters"),
  34463. name: "Forepaw",
  34464. image: {
  34465. source: "./media/characters/raylldo/forepaw.svg"
  34466. }
  34467. },
  34468. hindpaw: {
  34469. height: math.unit(23, "meters"),
  34470. name: "Hindpaw",
  34471. image: {
  34472. source: "./media/characters/raylldo/hindpaw.svg"
  34473. }
  34474. },
  34475. genitals: {
  34476. height: math.unit(42, "meters"),
  34477. name: "Genitals",
  34478. image: {
  34479. source: "./media/characters/raylldo/genitals.svg"
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(47.2, "meters"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34493. {
  34494. anthroFront: {
  34495. height: math.unit(9, "feet"),
  34496. weight: math.unit(600, "lb"),
  34497. name: "Anthro (Front)",
  34498. image: {
  34499. source: "./media/characters/glint/anthro-front.svg",
  34500. extra: 1097/1018,
  34501. bottom: 28/1125
  34502. }
  34503. },
  34504. anthroBack: {
  34505. height: math.unit(9, "feet"),
  34506. weight: math.unit(600, "lb"),
  34507. name: "Anthro (Back)",
  34508. image: {
  34509. source: "./media/characters/glint/anthro-back.svg",
  34510. extra: 1154/997,
  34511. bottom: 36/1190
  34512. }
  34513. },
  34514. feral: {
  34515. height: math.unit(11, "feet"),
  34516. weight: math.unit(50000, "lb"),
  34517. name: "Feral",
  34518. image: {
  34519. source: "./media/characters/glint/feral.svg",
  34520. extra: 3035/1585,
  34521. bottom: 1169/4204
  34522. }
  34523. },
  34524. dickAnthro: {
  34525. height: math.unit(0.7, "meters"),
  34526. name: "Dick (Anthro)",
  34527. image: {
  34528. source: "./media/characters/glint/dick-anthro.svg"
  34529. }
  34530. },
  34531. dickFeral: {
  34532. height: math.unit(2.65, "meters"),
  34533. name: "Dick (Feral)",
  34534. image: {
  34535. source: "./media/characters/glint/dick-feral.svg"
  34536. }
  34537. },
  34538. slitHidden: {
  34539. height: math.unit(5.85, "meters"),
  34540. name: "Slit (Hidden)",
  34541. image: {
  34542. source: "./media/characters/glint/slit-hidden.svg"
  34543. }
  34544. },
  34545. slitErect: {
  34546. height: math.unit(5.85, "meters"),
  34547. name: "Slit (Erect)",
  34548. image: {
  34549. source: "./media/characters/glint/slit-erect.svg"
  34550. }
  34551. },
  34552. mawAnthro: {
  34553. height: math.unit(0.63, "meters"),
  34554. name: "Maw (Anthro)",
  34555. image: {
  34556. source: "./media/characters/glint/maw.svg"
  34557. }
  34558. },
  34559. mawFeral: {
  34560. height: math.unit(2.89, "meters"),
  34561. name: "Maw (Feral)",
  34562. image: {
  34563. source: "./media/characters/glint/maw.svg"
  34564. }
  34565. },
  34566. },
  34567. [
  34568. {
  34569. name: "Normal",
  34570. height: math.unit(9, "feet"),
  34571. default: true
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34577. {
  34578. side: {
  34579. height: math.unit(15, "feet"),
  34580. weight: math.unit(5000, "kg"),
  34581. name: "Side",
  34582. image: {
  34583. source: "./media/characters/kairne/side.svg",
  34584. extra: 979/811,
  34585. bottom: 13/992
  34586. }
  34587. },
  34588. front: {
  34589. height: math.unit(15, "feet"),
  34590. weight: math.unit(5000, "kg"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/kairne/front.svg",
  34594. extra: 908/814,
  34595. bottom: 26/934
  34596. }
  34597. },
  34598. sideNsfw: {
  34599. height: math.unit(15, "feet"),
  34600. weight: math.unit(5000, "kg"),
  34601. name: "Side (NSFW)",
  34602. image: {
  34603. source: "./media/characters/kairne/side-nsfw.svg",
  34604. extra: 979/811,
  34605. bottom: 13/992
  34606. }
  34607. },
  34608. frontNsfw: {
  34609. height: math.unit(15, "feet"),
  34610. weight: math.unit(5000, "kg"),
  34611. name: "Front (NSFW)",
  34612. image: {
  34613. source: "./media/characters/kairne/front-nsfw.svg",
  34614. extra: 908/814,
  34615. bottom: 26/934
  34616. }
  34617. },
  34618. dickCaged: {
  34619. height: math.unit(0.65, "meters"),
  34620. name: "Dick-caged",
  34621. image: {
  34622. source: "./media/characters/kairne/dick-caged.svg"
  34623. }
  34624. },
  34625. dick: {
  34626. height: math.unit(0.79, "meters"),
  34627. name: "Dick",
  34628. image: {
  34629. source: "./media/characters/kairne/dick.svg"
  34630. }
  34631. },
  34632. genitals: {
  34633. height: math.unit(1.29, "meters"),
  34634. name: "Genitals",
  34635. image: {
  34636. source: "./media/characters/kairne/genitals.svg"
  34637. }
  34638. },
  34639. maw: {
  34640. height: math.unit(1.73, "meters"),
  34641. name: "Maw",
  34642. image: {
  34643. source: "./media/characters/kairne/maw.svg"
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Normal",
  34650. height: math.unit(15, "feet"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(5 + 8/12, "feet"),
  34660. weight: math.unit(139, "lb"),
  34661. name: "Front",
  34662. image: {
  34663. source: "./media/characters/biscuit-jackal/front.svg",
  34664. extra: 2106/1961,
  34665. bottom: 58/2164
  34666. }
  34667. },
  34668. back: {
  34669. height: math.unit(5 + 8/12, "feet"),
  34670. weight: math.unit(139, "lb"),
  34671. name: "Back",
  34672. image: {
  34673. source: "./media/characters/biscuit-jackal/back.svg",
  34674. extra: 2132/1976,
  34675. bottom: 57/2189
  34676. }
  34677. },
  34678. werejackal: {
  34679. height: math.unit(6 + 3/12, "feet"),
  34680. weight: math.unit(188, "lb"),
  34681. name: "Werejackal",
  34682. image: {
  34683. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34684. extra: 2373/2178,
  34685. bottom: 53/2426
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(5 + 8/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(140, "cm"),
  34702. weight: math.unit(45, "kg"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/tayra-white/front.svg",
  34706. extra: 2229/2192,
  34707. bottom: 75/2304
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(140, "cm"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(4 + 5/12, "feet"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/scoop/front.svg",
  34727. extra: 1257/1136,
  34728. bottom: 69/1326
  34729. }
  34730. },
  34731. back: {
  34732. height: math.unit(4 + 5/12, "feet"),
  34733. name: "Back",
  34734. image: {
  34735. source: "./media/characters/scoop/back.svg",
  34736. extra: 1321/1152,
  34737. bottom: 32/1353
  34738. }
  34739. },
  34740. maw: {
  34741. height: math.unit(0.68, "feet"),
  34742. name: "Maw",
  34743. image: {
  34744. source: "./media/characters/scoop/maw.svg"
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Really Small",
  34751. height: math.unit(1, "mm")
  34752. },
  34753. {
  34754. name: "Micro",
  34755. height: math.unit(1, "inch")
  34756. },
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(4 + 5/12, "feet"),
  34760. default: true
  34761. },
  34762. {
  34763. name: "Macro",
  34764. height: math.unit(200, "feet")
  34765. },
  34766. {
  34767. name: "Megamacro",
  34768. height: math.unit(3240, "feet")
  34769. },
  34770. {
  34771. name: "Teramacro",
  34772. height: math.unit(2500, "miles")
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(15 + 7/12, "feet"),
  34781. weight: math.unit(1150, "tons"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/saphinara/front.svg",
  34785. extra: 1837/1643,
  34786. bottom: 84/1921
  34787. },
  34788. form: "normal",
  34789. default: true
  34790. },
  34791. side: {
  34792. height: math.unit(15 + 7/12, "feet"),
  34793. weight: math.unit(1150, "tons"),
  34794. name: "Side",
  34795. image: {
  34796. source: "./media/characters/saphinara/side.svg",
  34797. extra: 605/547,
  34798. bottom: 6/611
  34799. },
  34800. form: "normal"
  34801. },
  34802. back: {
  34803. height: math.unit(15 + 7/12, "feet"),
  34804. weight: math.unit(1150, "tons"),
  34805. name: "Back",
  34806. image: {
  34807. source: "./media/characters/saphinara/back.svg",
  34808. extra: 591/531,
  34809. bottom: 13/604
  34810. },
  34811. form: "normal"
  34812. },
  34813. frontTail: {
  34814. height: math.unit(15 + 7/12, "feet"),
  34815. weight: math.unit(1150, "tons"),
  34816. name: "Front (Full Tail)",
  34817. image: {
  34818. source: "./media/characters/saphinara/front-tail.svg",
  34819. extra: 2256/1630,
  34820. bottom: 261/2517
  34821. },
  34822. form: "normal"
  34823. },
  34824. insides: {
  34825. height: math.unit(11.92, "feet"),
  34826. name: "Insides",
  34827. image: {
  34828. source: "./media/characters/saphinara/insides.svg"
  34829. },
  34830. form: "normal"
  34831. },
  34832. head: {
  34833. height: math.unit(4.17, "feet"),
  34834. name: "Head",
  34835. image: {
  34836. source: "./media/characters/saphinara/head.svg"
  34837. },
  34838. form: "normal"
  34839. },
  34840. tongue: {
  34841. height: math.unit(4.60, "feet"),
  34842. name: "Tongue",
  34843. image: {
  34844. source: "./media/characters/saphinara/tongue.svg"
  34845. },
  34846. form: "normal"
  34847. },
  34848. headEnraged: {
  34849. height: math.unit(5.55, "feet"),
  34850. name: "Head (Enraged)",
  34851. image: {
  34852. source: "./media/characters/saphinara/head-enraged.svg"
  34853. },
  34854. form: "normal"
  34855. },
  34856. wings: {
  34857. height: math.unit(11.95, "feet"),
  34858. name: "Wings",
  34859. image: {
  34860. source: "./media/characters/saphinara/wings.svg"
  34861. },
  34862. form: "normal"
  34863. },
  34864. feathers: {
  34865. height: math.unit(8.92, "feet"),
  34866. name: "Feathers",
  34867. image: {
  34868. source: "./media/characters/saphinara/feathers.svg"
  34869. },
  34870. form: "normal"
  34871. },
  34872. shackles: {
  34873. height: math.unit(2, "feet"),
  34874. name: "Shackles",
  34875. image: {
  34876. source: "./media/characters/saphinara/shackles.svg"
  34877. },
  34878. form: "normal"
  34879. },
  34880. eyes: {
  34881. height: math.unit(1.331, "feet"),
  34882. name: "Eyes",
  34883. image: {
  34884. source: "./media/characters/saphinara/eyes.svg"
  34885. },
  34886. form: "normal"
  34887. },
  34888. eyesEnraged: {
  34889. height: math.unit(1.331, "feet"),
  34890. name: "Eyes (Enraged)",
  34891. image: {
  34892. source: "./media/characters/saphinara/eyes-enraged.svg"
  34893. },
  34894. form: "normal"
  34895. },
  34896. trueFormSide: {
  34897. height: math.unit(200, "feet"),
  34898. weight: math.unit(1e7, "tons"),
  34899. name: "Side",
  34900. image: {
  34901. source: "./media/characters/saphinara/true-form-side.svg",
  34902. extra: 1399/770,
  34903. bottom: 97/1496
  34904. },
  34905. form: "true-form",
  34906. default: true
  34907. },
  34908. trueFormMaw: {
  34909. height: math.unit(71.5, "feet"),
  34910. name: "Maw",
  34911. image: {
  34912. source: "./media/characters/saphinara/true-form-maw.svg",
  34913. extra: 2302/1453,
  34914. bottom: 0/2302
  34915. },
  34916. form: "true-form"
  34917. },
  34918. meowberusSide: {
  34919. height: math.unit(75, "feet"),
  34920. weight: math.unit(180000, "kg"),
  34921. preyCapacity: math.unit(50000, "people"),
  34922. name: "Side",
  34923. image: {
  34924. source: "./media/characters/saphinara/meowberus-side.svg",
  34925. extra: 1400/711,
  34926. bottom: 126/1526
  34927. },
  34928. form: "meowberus",
  34929. extraAttributes: {
  34930. "pawArea": {
  34931. name: "Paw Size",
  34932. power: 2,
  34933. type: "area",
  34934. base: math.unit(35, "m^2")
  34935. }
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(15 + 7/12, "feet"),
  34943. default: true,
  34944. form: "normal"
  34945. },
  34946. {
  34947. name: "Angry",
  34948. height: math.unit(30 + 6/12, "feet"),
  34949. form: "normal"
  34950. },
  34951. {
  34952. name: "Enraged",
  34953. height: math.unit(102 + 1/12, "feet"),
  34954. form: "normal"
  34955. },
  34956. {
  34957. name: "True",
  34958. height: math.unit(200, "feet"),
  34959. default: true,
  34960. form: "true-form"
  34961. },
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(75, "feet"),
  34965. default: true,
  34966. form: "meowberus"
  34967. },
  34968. ],
  34969. {
  34970. "normal": {
  34971. name: "Normal",
  34972. default: true
  34973. },
  34974. "true-form": {
  34975. name: "True Form"
  34976. },
  34977. "meowberus": {
  34978. name: "Meowberus",
  34979. },
  34980. }
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(6 + 8/12, "feet"),
  34987. weight: math.unit(300, "lb"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/jrain/front.svg",
  34991. extra: 3039/2865,
  34992. bottom: 399/3438
  34993. }
  34994. },
  34995. back: {
  34996. height: math.unit(6 + 8/12, "feet"),
  34997. weight: math.unit(300, "lb"),
  34998. name: "Back",
  34999. image: {
  35000. source: "./media/characters/jrain/back.svg",
  35001. extra: 3089/2938,
  35002. bottom: 172/3261
  35003. }
  35004. },
  35005. head: {
  35006. height: math.unit(2.14, "feet"),
  35007. name: "Head",
  35008. image: {
  35009. source: "./media/characters/jrain/head.svg"
  35010. }
  35011. },
  35012. maw: {
  35013. height: math.unit(1.77, "feet"),
  35014. name: "Maw",
  35015. image: {
  35016. source: "./media/characters/jrain/maw.svg"
  35017. }
  35018. },
  35019. leftHand: {
  35020. height: math.unit(1.1, "feet"),
  35021. name: "Left Hand",
  35022. image: {
  35023. source: "./media/characters/jrain/left-hand.svg"
  35024. }
  35025. },
  35026. rightHand: {
  35027. height: math.unit(1.1, "feet"),
  35028. name: "Right Hand",
  35029. image: {
  35030. source: "./media/characters/jrain/right-hand.svg"
  35031. }
  35032. },
  35033. eye: {
  35034. height: math.unit(0.35, "feet"),
  35035. name: "Eye",
  35036. image: {
  35037. source: "./media/characters/jrain/eye.svg"
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(6 + 8/12, "feet"),
  35045. default: true
  35046. },
  35047. {
  35048. name: "Casually Large",
  35049. height: math.unit(25, "feet")
  35050. },
  35051. {
  35052. name: "Giant",
  35053. height: math.unit(100, "feet")
  35054. },
  35055. {
  35056. name: "Kaiju",
  35057. height: math.unit(300, "feet")
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35063. {
  35064. dragon: {
  35065. height: math.unit(5, "meters"),
  35066. name: "Dragon",
  35067. image: {
  35068. source: "./media/characters/sabrina/dragon.svg",
  35069. extra: 3670 / 2365,
  35070. bottom: 333 / 4003
  35071. }
  35072. },
  35073. gryphon: {
  35074. height: math.unit(3, "meters"),
  35075. name: "Gryphon",
  35076. image: {
  35077. source: "./media/characters/sabrina/gryphon.svg",
  35078. extra: 1576 / 945,
  35079. bottom: 71 / 1647
  35080. }
  35081. },
  35082. snake: {
  35083. height: math.unit(12, "meters"),
  35084. name: "Snake",
  35085. image: {
  35086. source: "./media/characters/sabrina/snake.svg",
  35087. extra: 1758 / 1320,
  35088. bottom: 186 / 1944
  35089. }
  35090. },
  35091. collar: {
  35092. height: math.unit(1.86, "meters"),
  35093. name: "Collar",
  35094. image: {
  35095. source: "./media/characters/sabrina/collar.svg"
  35096. }
  35097. },
  35098. eye: {
  35099. height: math.unit(0.53, "meters"),
  35100. name: "Eye",
  35101. image: {
  35102. source: "./media/characters/sabrina/eye.svg"
  35103. }
  35104. },
  35105. foot: {
  35106. height: math.unit(1.86, "meters"),
  35107. name: "Foot",
  35108. image: {
  35109. source: "./media/characters/sabrina/foot.svg"
  35110. }
  35111. },
  35112. hand: {
  35113. height: math.unit(1.32, "meters"),
  35114. name: "Hand",
  35115. image: {
  35116. source: "./media/characters/sabrina/hand.svg"
  35117. }
  35118. },
  35119. head: {
  35120. height: math.unit(2.44, "meters"),
  35121. name: "Head",
  35122. image: {
  35123. source: "./media/characters/sabrina/head.svg"
  35124. }
  35125. },
  35126. headAngry: {
  35127. height: math.unit(2.44, "meters"),
  35128. name: "Head (Angry))",
  35129. image: {
  35130. source: "./media/characters/sabrina/head-angry.svg"
  35131. }
  35132. },
  35133. maw: {
  35134. height: math.unit(1.65, "meters"),
  35135. name: "Maw",
  35136. image: {
  35137. source: "./media/characters/sabrina/maw.svg"
  35138. }
  35139. },
  35140. spikes: {
  35141. height: math.unit(1.69, "meters"),
  35142. name: "Spikes",
  35143. image: {
  35144. source: "./media/characters/sabrina/spikes.svg"
  35145. }
  35146. },
  35147. stomach: {
  35148. height: math.unit(1.15, "meters"),
  35149. name: "Stomach",
  35150. image: {
  35151. source: "./media/characters/sabrina/stomach.svg"
  35152. }
  35153. },
  35154. tongue: {
  35155. height: math.unit(1.27, "meters"),
  35156. name: "Tongue",
  35157. image: {
  35158. source: "./media/characters/sabrina/tongue.svg"
  35159. }
  35160. },
  35161. wingDorsal: {
  35162. height: math.unit(4.85, "meters"),
  35163. name: "Wing (Dorsal)",
  35164. image: {
  35165. source: "./media/characters/sabrina/wing-dorsal.svg"
  35166. }
  35167. },
  35168. wingVentral: {
  35169. height: math.unit(4.85, "meters"),
  35170. name: "Wing (Ventral)",
  35171. image: {
  35172. source: "./media/characters/sabrina/wing-ventral.svg"
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(5, "meters"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35186. {
  35187. frontMaid: {
  35188. height: math.unit(5 + 5/12, "feet"),
  35189. weight: math.unit(130, "lb"),
  35190. name: "Front (Maid)",
  35191. image: {
  35192. source: "./media/characters/midnight-tales/front-maid.svg",
  35193. extra: 489/454,
  35194. bottom: 61/550
  35195. }
  35196. },
  35197. frontFormal: {
  35198. height: math.unit(5 + 5/12, "feet"),
  35199. weight: math.unit(130, "lb"),
  35200. name: "Front (Formal)",
  35201. image: {
  35202. source: "./media/characters/midnight-tales/front-formal.svg",
  35203. extra: 489/454,
  35204. bottom: 61/550
  35205. }
  35206. },
  35207. back: {
  35208. height: math.unit(5 + 5/12, "feet"),
  35209. weight: math.unit(130, "lb"),
  35210. name: "Back",
  35211. image: {
  35212. source: "./media/characters/midnight-tales/back.svg",
  35213. extra: 498/456,
  35214. bottom: 33/531
  35215. }
  35216. },
  35217. frontBeast: {
  35218. height: math.unit(40, "feet"),
  35219. weight: math.unit(64000, "lb"),
  35220. name: "Front (Beast)",
  35221. image: {
  35222. source: "./media/characters/midnight-tales/front-beast.svg",
  35223. extra: 927/860,
  35224. bottom: 53/980
  35225. }
  35226. },
  35227. backBeast: {
  35228. height: math.unit(40, "feet"),
  35229. weight: math.unit(64000, "lb"),
  35230. name: "Back (Beast)",
  35231. image: {
  35232. source: "./media/characters/midnight-tales/back-beast.svg",
  35233. extra: 929/855,
  35234. bottom: 16/945
  35235. }
  35236. },
  35237. footBeast: {
  35238. height: math.unit(6.7, "feet"),
  35239. name: "Foot (Beast)",
  35240. image: {
  35241. source: "./media/characters/midnight-tales/foot-beast.svg"
  35242. }
  35243. },
  35244. headBeast: {
  35245. height: math.unit(8, "feet"),
  35246. name: "Head (Beast)",
  35247. image: {
  35248. source: "./media/characters/midnight-tales/head-beast.svg"
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(5 + 5 / 12, "feet"),
  35256. default: true
  35257. },
  35258. {
  35259. name: "Macro",
  35260. height: math.unit(25, "feet")
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(5 + 10/12, "feet"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/argon/front.svg",
  35272. extra: 2009/1935,
  35273. bottom: 118/2127
  35274. }
  35275. },
  35276. back: {
  35277. height: math.unit(5 + 10/12, "feet"),
  35278. name: "Back",
  35279. image: {
  35280. source: "./media/characters/argon/back.svg",
  35281. extra: 2047/1992,
  35282. bottom: 20/2067
  35283. }
  35284. },
  35285. frontDressed: {
  35286. height: math.unit(5 + 10/12, "feet"),
  35287. name: "Front (Dressed)",
  35288. image: {
  35289. source: "./media/characters/argon/front-dressed.svg",
  35290. extra: 2009/1935,
  35291. bottom: 118/2127
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(5 + 10/12, "feet"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(8 + 6/12, "feet"),
  35308. weight: math.unit(1150, "lb"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/kichi/front.svg",
  35312. extra: 1267/1164,
  35313. bottom: 61/1328
  35314. }
  35315. },
  35316. back: {
  35317. height: math.unit(8 + 6/12, "feet"),
  35318. weight: math.unit(1150, "lb"),
  35319. name: "Back",
  35320. image: {
  35321. source: "./media/characters/kichi/back.svg",
  35322. extra: 1273/1166,
  35323. bottom: 33/1306
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(8 + 6/12, "feet"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35337. {
  35338. front: {
  35339. height: math.unit(6, "feet"),
  35340. weight: math.unit(210, "lb"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/manetel-greyscale/front.svg",
  35344. extra: 350/312,
  35345. bottom: 8/358
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Micro",
  35352. height: math.unit(2, "inches")
  35353. },
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(6, "feet"),
  35357. default: true
  35358. },
  35359. {
  35360. name: "Minimacro",
  35361. height: math.unit(17, "feet")
  35362. },
  35363. {
  35364. name: "Macro",
  35365. height: math.unit(117, "feet")
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35371. {
  35372. side: {
  35373. height: math.unit(5 + 1/12, "feet"),
  35374. weight: math.unit(418, "lb"),
  35375. name: "Side",
  35376. image: {
  35377. source: "./media/characters/softpurr/side.svg",
  35378. extra: 1993/1945,
  35379. bottom: 134/2127
  35380. }
  35381. },
  35382. front: {
  35383. height: math.unit(5 + 1/12, "feet"),
  35384. weight: math.unit(418, "lb"),
  35385. name: "Front",
  35386. image: {
  35387. source: "./media/characters/softpurr/front.svg",
  35388. extra: 1950/1856,
  35389. bottom: 174/2124
  35390. }
  35391. },
  35392. paw: {
  35393. height: math.unit(1, "feet"),
  35394. name: "Paw",
  35395. image: {
  35396. source: "./media/characters/softpurr/paw.svg"
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(5 + 1/12, "feet"),
  35404. default: true
  35405. },
  35406. ]
  35407. ))
  35408. characterMakers.push(() => makeCharacter(
  35409. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35410. {
  35411. front: {
  35412. height: math.unit(260, "meters"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/anahita/front.svg",
  35416. extra: 665/635,
  35417. bottom: 89/754
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Macro",
  35424. height: math.unit(260, "meters"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(4 + 10/12, "feet"),
  35434. weight: math.unit(160, "lb"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/chip-mouse/front.svg",
  35438. extra: 3528/3408,
  35439. bottom: 0/3528
  35440. }
  35441. },
  35442. frontNsfw: {
  35443. height: math.unit(4 + 10/12, "feet"),
  35444. weight: math.unit(160, "lb"),
  35445. name: "Front (NSFW)",
  35446. image: {
  35447. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35448. extra: 3528/3408,
  35449. bottom: 0/3528
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(4 + 10/12, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35463. {
  35464. side: {
  35465. height: math.unit(10, "feet"),
  35466. weight: math.unit(14000, "lb"),
  35467. name: "Side",
  35468. image: {
  35469. source: "./media/characters/kremm/side.svg",
  35470. extra: 1390/1053,
  35471. bottom: 90/1480
  35472. }
  35473. },
  35474. gut: {
  35475. height: math.unit(5.8, "feet"),
  35476. name: "Gut",
  35477. image: {
  35478. source: "./media/characters/kremm/gut.svg"
  35479. }
  35480. },
  35481. ass: {
  35482. height: math.unit(6.1, "feet"),
  35483. name: "Ass",
  35484. image: {
  35485. source: "./media/characters/kremm/ass.svg"
  35486. }
  35487. },
  35488. jaws: {
  35489. height: math.unit(2.2, "feet"),
  35490. name: "Jaws",
  35491. image: {
  35492. source: "./media/characters/kremm/jaws.svg"
  35493. }
  35494. },
  35495. dick: {
  35496. height: math.unit(4.26, "feet"),
  35497. name: "Dick",
  35498. image: {
  35499. source: "./media/characters/kremm/dick.svg"
  35500. }
  35501. },
  35502. },
  35503. [
  35504. {
  35505. name: "Normal",
  35506. height: math.unit(10, "feet"),
  35507. default: true
  35508. },
  35509. ]
  35510. ))
  35511. characterMakers.push(() => makeCharacter(
  35512. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35513. {
  35514. front: {
  35515. height: math.unit(30, "stories"),
  35516. name: "Front",
  35517. image: {
  35518. source: "./media/characters/kai/front.svg",
  35519. extra: 1892/1718,
  35520. bottom: 162/2054
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Macro",
  35527. height: math.unit(30, "stories"),
  35528. default: true
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(6 + 4/12, "feet"),
  35537. weight: math.unit(145, "lb"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/sykes/front.svg",
  35541. extra: 1321 / 1187,
  35542. bottom: 66 / 1387
  35543. }
  35544. },
  35545. back: {
  35546. height: math.unit(6 + 4/12, "feet"),
  35547. weight: math.unit(145, "lb"),
  35548. name: "Back",
  35549. image: {
  35550. source: "./media/characters/sykes/back.svg",
  35551. extra: 1326/1181,
  35552. bottom: 31/1357
  35553. }
  35554. },
  35555. traditionalOutfit: {
  35556. height: math.unit(6 + 4/12, "feet"),
  35557. weight: math.unit(145, "lb"),
  35558. name: "Traditional Outfit",
  35559. image: {
  35560. source: "./media/characters/sykes/traditional-outfit.svg",
  35561. extra: 1321 / 1187,
  35562. bottom: 66 / 1387
  35563. }
  35564. },
  35565. adventureOutfit: {
  35566. height: math.unit(6 + 4/12, "feet"),
  35567. weight: math.unit(145, "lb"),
  35568. name: "Adventure Outfit",
  35569. image: {
  35570. source: "./media/characters/sykes/adventure-outfit.svg",
  35571. extra: 1321 / 1187,
  35572. bottom: 66 / 1387
  35573. }
  35574. },
  35575. handLeft: {
  35576. height: math.unit(0.9, "feet"),
  35577. name: "Hand (Left)",
  35578. image: {
  35579. source: "./media/characters/sykes/hand-left.svg"
  35580. }
  35581. },
  35582. handRight: {
  35583. height: math.unit(0.839, "feet"),
  35584. name: "Hand (Right)",
  35585. image: {
  35586. source: "./media/characters/sykes/hand-right.svg"
  35587. }
  35588. },
  35589. leftFoot: {
  35590. height: math.unit(1.2, "feet"),
  35591. name: "Foot (Left)",
  35592. image: {
  35593. source: "./media/characters/sykes/foot-left.svg"
  35594. }
  35595. },
  35596. rightFoot: {
  35597. height: math.unit(1.2, "feet"),
  35598. name: "Foot (Right)",
  35599. image: {
  35600. source: "./media/characters/sykes/foot-right.svg"
  35601. }
  35602. },
  35603. maw: {
  35604. height: math.unit(1.93, "feet"),
  35605. name: "Maw",
  35606. image: {
  35607. source: "./media/characters/sykes/maw.svg"
  35608. }
  35609. },
  35610. teeth: {
  35611. height: math.unit(0.51, "feet"),
  35612. name: "Teeth",
  35613. image: {
  35614. source: "./media/characters/sykes/teeth.svg"
  35615. }
  35616. },
  35617. tongue: {
  35618. height: math.unit(2.13, "feet"),
  35619. name: "Tongue",
  35620. image: {
  35621. source: "./media/characters/sykes/tongue.svg"
  35622. }
  35623. },
  35624. uvula: {
  35625. height: math.unit(0.16, "feet"),
  35626. name: "Uvula",
  35627. image: {
  35628. source: "./media/characters/sykes/uvula.svg"
  35629. }
  35630. },
  35631. collar: {
  35632. height: math.unit(0.287, "feet"),
  35633. name: "Collar",
  35634. image: {
  35635. source: "./media/characters/sykes/collar.svg"
  35636. }
  35637. },
  35638. tail: {
  35639. height: math.unit(3.8, "feet"),
  35640. name: "Tail",
  35641. image: {
  35642. source: "./media/characters/sykes/tail.svg"
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Shrunken",
  35649. height: math.unit(5, "inches")
  35650. },
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(6 + 4 / 12, "feet"),
  35654. default: true
  35655. },
  35656. {
  35657. name: "Big",
  35658. height: math.unit(15, "feet")
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(5 + 8/12, "feet"),
  35667. weight: math.unit(190, "lb"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/oven-otter/front.svg",
  35671. extra: 1809/1740,
  35672. bottom: 181/1990
  35673. }
  35674. },
  35675. back: {
  35676. height: math.unit(5 + 8/12, "feet"),
  35677. weight: math.unit(190, "lb"),
  35678. name: "Back",
  35679. image: {
  35680. source: "./media/characters/oven-otter/back.svg",
  35681. extra: 1709/1635,
  35682. bottom: 118/1827
  35683. }
  35684. },
  35685. hand: {
  35686. height: math.unit(1.07, "feet"),
  35687. name: "Hand",
  35688. image: {
  35689. source: "./media/characters/oven-otter/hand.svg"
  35690. }
  35691. },
  35692. beans: {
  35693. height: math.unit(1.74, "feet"),
  35694. name: "Beans",
  35695. image: {
  35696. source: "./media/characters/oven-otter/beans.svg"
  35697. }
  35698. },
  35699. },
  35700. [
  35701. {
  35702. name: "Micro",
  35703. height: math.unit(0.5, "inches")
  35704. },
  35705. {
  35706. name: "Normal",
  35707. height: math.unit(5 + 8/12, "feet"),
  35708. default: true
  35709. },
  35710. {
  35711. name: "Macro",
  35712. height: math.unit(250, "feet")
  35713. },
  35714. {
  35715. name: "Really High",
  35716. height: math.unit(420, "feet")
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(5, "meters"),
  35725. weight: math.unit(292000000000000, "kg"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/devourer/front.svg",
  35729. extra: 1800/1733,
  35730. bottom: 211/2011
  35731. }
  35732. },
  35733. maw: {
  35734. height: math.unit(1.1, "meter"),
  35735. name: "Maw",
  35736. image: {
  35737. source: "./media/characters/devourer/maw.svg"
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Small",
  35744. height: math.unit(3, "meters")
  35745. },
  35746. {
  35747. name: "Large",
  35748. height: math.unit(5, "meters"),
  35749. default: true
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35755. {
  35756. front: {
  35757. height: math.unit(6, "feet"),
  35758. weight: math.unit(400, "lb"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/ellarby/front.svg",
  35762. extra: 1909/1763,
  35763. bottom: 80/1989
  35764. }
  35765. },
  35766. back: {
  35767. height: math.unit(6, "feet"),
  35768. weight: math.unit(400, "lb"),
  35769. name: "Back",
  35770. image: {
  35771. source: "./media/characters/ellarby/back.svg",
  35772. extra: 1914/1784,
  35773. bottom: 172/2086
  35774. }
  35775. },
  35776. },
  35777. [
  35778. {
  35779. name: "Mischief",
  35780. height: math.unit(18, "inches")
  35781. },
  35782. {
  35783. name: "Trouble",
  35784. height: math.unit(12, "feet")
  35785. },
  35786. {
  35787. name: "Havoc",
  35788. height: math.unit(200, "feet"),
  35789. default: true
  35790. },
  35791. {
  35792. name: "Pandemonium",
  35793. height: math.unit(1, "mile")
  35794. },
  35795. {
  35796. name: "Catastrophe",
  35797. height: math.unit(100, "miles")
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35803. {
  35804. front: {
  35805. height: math.unit(4.7, "meters"),
  35806. weight: math.unit(6500, "kg"),
  35807. name: "Front",
  35808. image: {
  35809. source: "./media/characters/vex/front.svg",
  35810. extra: 1288/1140,
  35811. bottom: 100/1388
  35812. }
  35813. },
  35814. },
  35815. [
  35816. {
  35817. name: "Normal",
  35818. height: math.unit(4.7, "meters"),
  35819. default: true
  35820. },
  35821. ]
  35822. ))
  35823. characterMakers.push(() => makeCharacter(
  35824. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35825. {
  35826. normal: {
  35827. height: math.unit(6, "feet"),
  35828. weight: math.unit(350, "lb"),
  35829. name: "Normal",
  35830. image: {
  35831. source: "./media/characters/teshy/normal.svg",
  35832. extra: 1795/1735,
  35833. bottom: 16/1811
  35834. }
  35835. },
  35836. monsterFront: {
  35837. height: math.unit(12, "feet"),
  35838. weight: math.unit(4700, "lb"),
  35839. name: "Monster (Front)",
  35840. image: {
  35841. source: "./media/characters/teshy/monster-front.svg",
  35842. extra: 2042/2034,
  35843. bottom: 128/2170
  35844. }
  35845. },
  35846. monsterSide: {
  35847. height: math.unit(12, "feet"),
  35848. weight: math.unit(4700, "lb"),
  35849. name: "Monster (Side)",
  35850. image: {
  35851. source: "./media/characters/teshy/monster-side.svg",
  35852. extra: 2067/2056,
  35853. bottom: 70/2137
  35854. }
  35855. },
  35856. monsterBack: {
  35857. height: math.unit(12, "feet"),
  35858. weight: math.unit(4700, "lb"),
  35859. name: "Monster (Back)",
  35860. image: {
  35861. source: "./media/characters/teshy/monster-back.svg",
  35862. extra: 1921/1914,
  35863. bottom: 171/2092
  35864. }
  35865. },
  35866. },
  35867. [
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(6, "feet"),
  35871. default: true
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(6, "feet"),
  35880. name: "Front",
  35881. image: {
  35882. source: "./media/characters/ramey/front.svg",
  35883. extra: 790/787,
  35884. bottom: 27/817
  35885. }
  35886. },
  35887. },
  35888. [
  35889. {
  35890. name: "Normal",
  35891. height: math.unit(6, "feet"),
  35892. default: true
  35893. },
  35894. ]
  35895. ))
  35896. characterMakers.push(() => makeCharacter(
  35897. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35898. {
  35899. front: {
  35900. height: math.unit(5 + 5/12, "feet"),
  35901. weight: math.unit(120, "lb"),
  35902. name: "Front",
  35903. image: {
  35904. source: "./media/characters/phirae/front.svg",
  35905. extra: 2491/2436,
  35906. bottom: 38/2529
  35907. }
  35908. },
  35909. },
  35910. [
  35911. {
  35912. name: "Normal",
  35913. height: math.unit(5 + 5/12, "feet"),
  35914. default: true
  35915. },
  35916. ]
  35917. ))
  35918. characterMakers.push(() => makeCharacter(
  35919. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35920. {
  35921. front: {
  35922. height: math.unit(5 + 3/12, "feet"),
  35923. name: "Front",
  35924. image: {
  35925. source: "./media/characters/stagglas/front.svg",
  35926. extra: 962/882,
  35927. bottom: 53/1015
  35928. }
  35929. },
  35930. feral: {
  35931. height: math.unit(335, "cm"),
  35932. name: "Feral",
  35933. image: {
  35934. source: "./media/characters/stagglas/feral.svg",
  35935. extra: 1732/1090,
  35936. bottom: 48/1780
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(5 + 3/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35950. {
  35951. front: {
  35952. height: math.unit(5 + 4/12, "feet"),
  35953. weight: math.unit(145, "lb"),
  35954. name: "Front",
  35955. image: {
  35956. source: "./media/characters/starra/front.svg",
  35957. extra: 1790/1691,
  35958. bottom: 91/1881
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(5 + 4/12, "feet"),
  35966. default: true
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35972. {
  35973. front: {
  35974. height: math.unit(2.2, "meters"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35978. extra: 1248/972,
  35979. bottom: 38/1286
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(2.2, "meters"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35993. {
  35994. side: {
  35995. height: math.unit(8 + 2/12, "feet"),
  35996. weight: math.unit(1240, "lb"),
  35997. name: "Side",
  35998. image: {
  35999. source: "./media/characters/mika-valentine/side.svg",
  36000. extra: 2670/2501,
  36001. bottom: 250/2920
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(8 + 2/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(7 + 2/12, "feet"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/xoltol/front.svg",
  36021. extra: 2212/2124,
  36022. bottom: 84/2296
  36023. }
  36024. },
  36025. side: {
  36026. height: math.unit(7 + 2/12, "feet"),
  36027. name: "Side",
  36028. image: {
  36029. source: "./media/characters/xoltol/side.svg",
  36030. extra: 2273/2197,
  36031. bottom: 26/2299
  36032. }
  36033. },
  36034. hand: {
  36035. height: math.unit(2.5, "feet"),
  36036. name: "Hand",
  36037. image: {
  36038. source: "./media/characters/xoltol/hand.svg"
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Small-ish",
  36045. height: math.unit(5 + 11/12, "feet")
  36046. },
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(7 + 2/12, "feet")
  36050. },
  36051. {
  36052. name: "\"Macro\"",
  36053. height: math.unit(14 + 9/12, "feet"),
  36054. default: true
  36055. },
  36056. {
  36057. name: "Alternate Height",
  36058. height: math.unit(20, "feet")
  36059. },
  36060. {
  36061. name: "Actually Macro",
  36062. height: math.unit(100, "feet")
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(5 + 2/12, "feet"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/kotetsu-redwood/front.svg",
  36074. extra: 1053/942,
  36075. bottom: 60/1113
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(5 + 2/12, "feet"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(2.4, "meters"),
  36092. weight: math.unit(125, "kg"),
  36093. name: "Front",
  36094. image: {
  36095. source: "./media/characters/lilith/front.svg",
  36096. extra: 1590/1513,
  36097. bottom: 203/1793
  36098. }
  36099. },
  36100. },
  36101. [
  36102. {
  36103. name: "Humanoid",
  36104. height: math.unit(2.4, "meters")
  36105. },
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(6, "meters"),
  36109. default: true
  36110. },
  36111. {
  36112. name: "Largest",
  36113. height: math.unit(55, "meters")
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(8 + 4/12, "feet"),
  36122. weight: math.unit(535, "lb"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/beh'kah-bolger/front.svg",
  36126. extra: 1660/1603,
  36127. bottom: 37/1697
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(8 + 4/12, "feet"),
  36135. default: true
  36136. },
  36137. {
  36138. name: "Kaiju",
  36139. height: math.unit(250, "feet")
  36140. },
  36141. {
  36142. name: "Still Growing",
  36143. height: math.unit(10, "miles")
  36144. },
  36145. {
  36146. name: "Continental",
  36147. height: math.unit(5000, "miles")
  36148. },
  36149. {
  36150. name: "Final Form",
  36151. height: math.unit(2500000, "miles")
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(7 + 2/12, "feet"),
  36160. weight: math.unit(230, "kg"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/tatyana-milewska/front.svg",
  36164. extra: 1199/1150,
  36165. bottom: 86/1285
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(7 + 2/12, "feet"),
  36173. default: true
  36174. },
  36175. {
  36176. name: "Big",
  36177. height: math.unit(12, "feet")
  36178. },
  36179. {
  36180. name: "Minimacro",
  36181. height: math.unit(20, "feet")
  36182. },
  36183. {
  36184. name: "Macro",
  36185. height: math.unit(120, "feet")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(7 + 8/12, "feet"),
  36194. weight: math.unit(152, "kg"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/helen-arri/front.svg",
  36198. extra: 440/423,
  36199. bottom: 14/454
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(7 + 8/12, "feet"),
  36204. weight: math.unit(152, "kg"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/helen-arri/back.svg",
  36208. extra: 443/426,
  36209. bottom: 8/451
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(7 + 8/12, "feet"),
  36217. default: true
  36218. },
  36219. {
  36220. name: "Big",
  36221. height: math.unit(14, "feet")
  36222. },
  36223. {
  36224. name: "Minimacro",
  36225. height: math.unit(24, "feet")
  36226. },
  36227. {
  36228. name: "Macro",
  36229. height: math.unit(140, "feet")
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(6, "meters"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/ehanu-rehu/front.svg",
  36241. extra: 1800/1800,
  36242. bottom: 59/1859
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(6, "meters"),
  36250. default: true
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36256. {
  36257. front: {
  36258. height: math.unit(7 + 3/12, "feet"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/renholder/front.svg",
  36262. extra: 3096/2960,
  36263. bottom: 250/3346
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal Bat",
  36270. height: math.unit(7 + 3/12, "feet"),
  36271. default: true
  36272. },
  36273. {
  36274. name: "Slightly Tall Bat",
  36275. height: math.unit(100, "feet")
  36276. },
  36277. {
  36278. name: "Big Bat",
  36279. height: math.unit(1000, "feet")
  36280. },
  36281. {
  36282. name: "City-Sized Bat",
  36283. height: math.unit(200000, "feet")
  36284. },
  36285. {
  36286. name: "Bigger Bat",
  36287. height: math.unit(10000, "miles")
  36288. },
  36289. {
  36290. name: "Solar Sized Bat",
  36291. height: math.unit(100, "AU")
  36292. },
  36293. {
  36294. name: "Galactic Bat",
  36295. height: math.unit(200000, "lightyears")
  36296. },
  36297. {
  36298. name: "Universally Known Bat",
  36299. height: math.unit(1, "universe")
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36305. {
  36306. front: {
  36307. height: math.unit(6 + 11/12, "feet"),
  36308. weight: math.unit(250, "lb"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/cookiecat/front.svg",
  36312. extra: 893/827,
  36313. bottom: 14/907
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Micro",
  36320. height: math.unit(3, "inches")
  36321. },
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(6 + 11/12, "feet"),
  36325. default: true
  36326. },
  36327. {
  36328. name: "Macro",
  36329. height: math.unit(100, "feet")
  36330. },
  36331. {
  36332. name: "Macro+",
  36333. height: math.unit(404, "feet")
  36334. },
  36335. {
  36336. name: "Megamacro",
  36337. height: math.unit(165, "miles")
  36338. },
  36339. {
  36340. name: "Planetary",
  36341. height: math.unit(4600, "miles")
  36342. },
  36343. ]
  36344. ))
  36345. characterMakers.push(() => makeCharacter(
  36346. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36347. {
  36348. front: {
  36349. height: math.unit(10 + 3/12, "feet"),
  36350. weight: math.unit(1500, "lb"),
  36351. name: "Front",
  36352. image: {
  36353. source: "./media/characters/tux-kusanagi/front.svg",
  36354. extra: 944/840,
  36355. bottom: 39/983
  36356. }
  36357. },
  36358. back: {
  36359. height: math.unit(10 + 3/12, "feet"),
  36360. weight: math.unit(1500, "lb"),
  36361. name: "Back",
  36362. image: {
  36363. source: "./media/characters/tux-kusanagi/back.svg",
  36364. extra: 941/842,
  36365. bottom: 28/969
  36366. }
  36367. },
  36368. rump: {
  36369. height: math.unit(5.25, "feet"),
  36370. name: "Rump",
  36371. image: {
  36372. source: "./media/characters/tux-kusanagi/rump.svg"
  36373. }
  36374. },
  36375. beak: {
  36376. height: math.unit(1.54, "feet"),
  36377. name: "Beak",
  36378. image: {
  36379. source: "./media/characters/tux-kusanagi/beak.svg"
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(10 + 3/12, "feet"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(58, "feet"),
  36396. weight: math.unit(200, "tons"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/uzarmazari/front.svg",
  36400. extra: 1575/1455,
  36401. bottom: 152/1727
  36402. }
  36403. },
  36404. back: {
  36405. height: math.unit(58, "feet"),
  36406. weight: math.unit(200, "tons"),
  36407. name: "Back",
  36408. image: {
  36409. source: "./media/characters/uzarmazari/back.svg",
  36410. extra: 1585/1510,
  36411. bottom: 157/1742
  36412. }
  36413. },
  36414. head: {
  36415. height: math.unit(26, "feet"),
  36416. name: "Head",
  36417. image: {
  36418. source: "./media/characters/uzarmazari/head.svg"
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Normal",
  36425. height: math.unit(58, "feet"),
  36426. default: true
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36432. {
  36433. side: {
  36434. height: math.unit(15, "feet"),
  36435. name: "Side",
  36436. image: {
  36437. source: "./media/characters/akitu/side.svg",
  36438. extra: 1421/1321,
  36439. bottom: 157/1578
  36440. }
  36441. },
  36442. front: {
  36443. height: math.unit(15, "feet"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/akitu/front.svg",
  36447. extra: 1435/1326,
  36448. bottom: 232/1667
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(15, "feet"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36462. {
  36463. front: {
  36464. height: math.unit(10 + 8/12, "feet"),
  36465. name: "Front",
  36466. image: {
  36467. source: "./media/characters/azalie-croixland/front.svg",
  36468. extra: 1972/1856,
  36469. bottom: 31/2003
  36470. }
  36471. },
  36472. },
  36473. [
  36474. {
  36475. name: "Original Height",
  36476. height: math.unit(5 + 4/12, "feet")
  36477. },
  36478. {
  36479. name: "Normal Height",
  36480. height: math.unit(10 + 8/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36487. {
  36488. side: {
  36489. height: math.unit(7 + 1/12, "feet"),
  36490. weight: math.unit(245, "lb"),
  36491. name: "Side",
  36492. image: {
  36493. source: "./media/characters/kavus-kazian/side.svg",
  36494. extra: 349/342,
  36495. bottom: 15/364
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(7 + 1/12, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36509. {
  36510. normalFront: {
  36511. height: math.unit(5 + 11/12, "feet"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/moonlight-rose/normal-front.svg",
  36515. extra: 1980/1825,
  36516. bottom: 18/1998
  36517. },
  36518. form: "normal",
  36519. default: true
  36520. },
  36521. normalBack: {
  36522. height: math.unit(5 + 11/12, "feet"),
  36523. name: "Back",
  36524. image: {
  36525. source: "./media/characters/moonlight-rose/normal-back.svg",
  36526. extra: 2010/1839,
  36527. bottom: 10/2020
  36528. },
  36529. form: "normal"
  36530. },
  36531. demonFront: {
  36532. height: math.unit(1.5, "earths"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/moonlight-rose/demon.svg",
  36536. extra: 1400/1294,
  36537. bottom: 45/1445
  36538. },
  36539. form: "demon",
  36540. default: true
  36541. },
  36542. terraFront: {
  36543. height: math.unit(1.5, "earths"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/moonlight-rose/terra.svg"
  36547. },
  36548. form: "terra",
  36549. default: true
  36550. },
  36551. jupiterFront: {
  36552. height: math.unit(69911*2, "km"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36556. extra: 1367/1286,
  36557. bottom: 55/1422
  36558. },
  36559. form: "jupiter",
  36560. default: true
  36561. },
  36562. neptuneFront: {
  36563. height: math.unit(24622*2, "feet"),
  36564. name: "Front",
  36565. image: {
  36566. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36567. extra: 1851/1712,
  36568. bottom: 0/1851
  36569. },
  36570. form: "neptune",
  36571. default: true
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "\"Natural\" Height",
  36577. height: math.unit(5 + 11/12, "feet"),
  36578. form: "normal"
  36579. },
  36580. {
  36581. name: "Smallest comfortable size",
  36582. height: math.unit(40, "meters"),
  36583. form: "normal"
  36584. },
  36585. {
  36586. name: "Common size",
  36587. height: math.unit(50, "km"),
  36588. form: "normal",
  36589. default: true
  36590. },
  36591. {
  36592. name: "Normal",
  36593. height: math.unit(1.5, "earths"),
  36594. form: "demon",
  36595. default: true
  36596. },
  36597. {
  36598. name: "Universal",
  36599. height: math.unit(15, "universes"),
  36600. form: "demon"
  36601. },
  36602. {
  36603. name: "Earth",
  36604. height: math.unit(1.5, "earths"),
  36605. form: "terra",
  36606. default: true
  36607. },
  36608. {
  36609. name: "Super Earth",
  36610. height: math.unit(67.5, "earths"),
  36611. form: "terra"
  36612. },
  36613. {
  36614. name: "Doesn't fit in a solar system...",
  36615. height: math.unit(1, "galaxy"),
  36616. form: "terra"
  36617. },
  36618. {
  36619. name: "Saturn",
  36620. height: math.unit(58232*2, "km"),
  36621. form: "jupiter"
  36622. },
  36623. {
  36624. name: "Jupiter",
  36625. height: math.unit(69911*2, "km"),
  36626. form: "jupiter",
  36627. default: true
  36628. },
  36629. {
  36630. name: "HD 100546 b",
  36631. height: math.unit(482938, "km"),
  36632. form: "jupiter"
  36633. },
  36634. {
  36635. name: "Enceladus",
  36636. height: math.unit(513*2, "km"),
  36637. form: "neptune"
  36638. },
  36639. {
  36640. name: "Europe",
  36641. height: math.unit(1560*2, "km"),
  36642. form: "neptune"
  36643. },
  36644. {
  36645. name: "Neptune",
  36646. height: math.unit(24622*2, "km"),
  36647. form: "neptune",
  36648. default: true
  36649. },
  36650. {
  36651. name: "CoRoT-9b",
  36652. height: math.unit(75067*2, "km"),
  36653. form: "neptune"
  36654. },
  36655. ],
  36656. {
  36657. "normal": {
  36658. name: "Normal",
  36659. default: true
  36660. },
  36661. "demon": {
  36662. name: "Demon"
  36663. },
  36664. "terra": {
  36665. name: "Terra"
  36666. },
  36667. "jupiter": {
  36668. name: "Jupiter"
  36669. },
  36670. "neptune": {
  36671. name: "Neptune"
  36672. }
  36673. }
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(16, "feet"),
  36680. weight: math.unit(610, "kg"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/huckle/front.svg",
  36684. extra: 1731/1625,
  36685. bottom: 33/1764
  36686. }
  36687. },
  36688. back: {
  36689. height: math.unit(16, "feet"),
  36690. weight: math.unit(610, "kg"),
  36691. name: "Back",
  36692. image: {
  36693. source: "./media/characters/huckle/back.svg",
  36694. extra: 1738/1651,
  36695. bottom: 37/1775
  36696. }
  36697. },
  36698. laughing: {
  36699. height: math.unit(3.75, "feet"),
  36700. name: "Laughing",
  36701. image: {
  36702. source: "./media/characters/huckle/laughing.svg"
  36703. }
  36704. },
  36705. angry: {
  36706. height: math.unit(4.15, "feet"),
  36707. name: "Angry",
  36708. image: {
  36709. source: "./media/characters/huckle/angry.svg"
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(16, "feet"),
  36717. default: true
  36718. },
  36719. {
  36720. name: "Mini Macro",
  36721. height: math.unit(463, "feet")
  36722. },
  36723. {
  36724. name: "Macro",
  36725. height: math.unit(1680, "meters")
  36726. },
  36727. {
  36728. name: "Mega Macro",
  36729. height: math.unit(175, "km")
  36730. },
  36731. {
  36732. name: "Terra Macro",
  36733. height: math.unit(32, "gigameters")
  36734. },
  36735. {
  36736. name: "Multiverse+",
  36737. height: math.unit(2.56e23, "yottameters")
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(6 + 9/12, "feet"),
  36746. weight: math.unit(280, "lb"),
  36747. name: "Front",
  36748. image: {
  36749. source: "./media/characters/candy/front.svg",
  36750. extra: 234/217,
  36751. bottom: 11/245
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Really Small",
  36758. height: math.unit(0.1, "nm")
  36759. },
  36760. {
  36761. name: "Micro",
  36762. height: math.unit(2, "inches")
  36763. },
  36764. {
  36765. name: "Normal",
  36766. height: math.unit(6 + 9/12, "feet"),
  36767. default: true
  36768. },
  36769. {
  36770. name: "Small Macro",
  36771. height: math.unit(69, "feet")
  36772. },
  36773. {
  36774. name: "Macro",
  36775. height: math.unit(160, "feet")
  36776. },
  36777. {
  36778. name: "Megamacro",
  36779. height: math.unit(22000, "miles")
  36780. },
  36781. {
  36782. name: "Gigamacro",
  36783. height: math.unit(50000, "miles")
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(4, "feet"),
  36792. weight: math.unit(90, "lb"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/joey-mcdonald/front.svg",
  36796. extra: 1059/852,
  36797. bottom: 33/1092
  36798. }
  36799. },
  36800. back: {
  36801. height: math.unit(4, "feet"),
  36802. weight: math.unit(90, "lb"),
  36803. name: "Back",
  36804. image: {
  36805. source: "./media/characters/joey-mcdonald/back.svg",
  36806. extra: 1077/879,
  36807. bottom: 5/1082
  36808. }
  36809. },
  36810. frontKobold: {
  36811. height: math.unit(4, "feet"),
  36812. weight: math.unit(100, "lb"),
  36813. name: "Front-kobold",
  36814. image: {
  36815. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36816. extra: 1480/1367,
  36817. bottom: 0/1480
  36818. }
  36819. },
  36820. backKobold: {
  36821. height: math.unit(4, "feet"),
  36822. weight: math.unit(100, "lb"),
  36823. name: "Back-kobold",
  36824. image: {
  36825. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36826. extra: 1449/1361,
  36827. bottom: 0/1449
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(4, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(12 + 6/12, "feet"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/kass-lockheed/front.svg",
  36847. extra: 354/343,
  36848. bottom: 9/363
  36849. }
  36850. },
  36851. back: {
  36852. height: math.unit(12 + 6/12, "feet"),
  36853. name: "Back",
  36854. image: {
  36855. source: "./media/characters/kass-lockheed/back.svg",
  36856. extra: 364/352,
  36857. bottom: 3/367
  36858. }
  36859. },
  36860. dick: {
  36861. height: math.unit(3.12, "feet"),
  36862. name: "Dick",
  36863. image: {
  36864. source: "./media/characters/kass-lockheed/dick.svg"
  36865. }
  36866. },
  36867. head: {
  36868. height: math.unit(2.6, "feet"),
  36869. name: "Head",
  36870. image: {
  36871. source: "./media/characters/kass-lockheed/head.svg"
  36872. }
  36873. },
  36874. bleh: {
  36875. height: math.unit(2.85, "feet"),
  36876. name: "Bleh",
  36877. image: {
  36878. source: "./media/characters/kass-lockheed/bleh.svg"
  36879. }
  36880. },
  36881. smug: {
  36882. height: math.unit(2.85, "feet"),
  36883. name: "Smug",
  36884. image: {
  36885. source: "./media/characters/kass-lockheed/smug.svg"
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(12 + 6/12, "feet"),
  36893. default: true
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36899. {
  36900. front: {
  36901. height: math.unit(6 + 2/12, "feet"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/taylor/front.svg",
  36905. extra: 639/495,
  36906. bottom: 12/651
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Normal",
  36913. height: math.unit(6 + 2/12, "feet"),
  36914. default: true
  36915. },
  36916. {
  36917. name: "Big",
  36918. height: math.unit(15, "feet")
  36919. },
  36920. {
  36921. name: "Lorg",
  36922. height: math.unit(80, "feet")
  36923. },
  36924. {
  36925. name: "Too Lorg",
  36926. height: math.unit(120, "feet")
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36932. {
  36933. front: {
  36934. height: math.unit(15, "feet"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/kaizer/front.svg",
  36938. extra: 1612/1436,
  36939. bottom: 43/1655
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(15, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(2, "feet"),
  36956. weight: math.unit(30, "lb"),
  36957. name: "Front",
  36958. image: {
  36959. source: "./media/characters/sandy/front.svg",
  36960. extra: 1439/1307,
  36961. bottom: 194/1633
  36962. }
  36963. },
  36964. },
  36965. [
  36966. {
  36967. name: "Normal",
  36968. height: math.unit(2, "feet"),
  36969. default: true
  36970. },
  36971. ]
  36972. ))
  36973. characterMakers.push(() => makeCharacter(
  36974. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36975. {
  36976. front: {
  36977. height: math.unit(3, "feet"),
  36978. name: "Front",
  36979. image: {
  36980. source: "./media/characters/mellvi/front.svg",
  36981. extra: 1831/1630,
  36982. bottom: 58/1889
  36983. }
  36984. },
  36985. },
  36986. [
  36987. {
  36988. name: "Normal",
  36989. height: math.unit(3, "feet"),
  36990. default: true
  36991. },
  36992. ]
  36993. ))
  36994. characterMakers.push(() => makeCharacter(
  36995. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36996. {
  36997. front: {
  36998. height: math.unit(5 + 11/12, "feet"),
  36999. weight: math.unit(200, "lb"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/shirou/front.svg",
  37003. extra: 2491/2383,
  37004. bottom: 189/2680
  37005. }
  37006. },
  37007. back: {
  37008. height: math.unit(5 + 11/12, "feet"),
  37009. weight: math.unit(200, "lb"),
  37010. name: "Back",
  37011. image: {
  37012. source: "./media/characters/shirou/back.svg",
  37013. extra: 2554/2450,
  37014. bottom: 76/2630
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Normal",
  37021. height: math.unit(5 + 11/12, "feet"),
  37022. default: true
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(6 + 3/12, "feet"),
  37031. weight: math.unit(177, "lb"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/noryu/front.svg",
  37035. extra: 973/885,
  37036. bottom: 10/983
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Normal",
  37043. height: math.unit(6 + 3/12, "feet"),
  37044. default: true
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(5 + 6/12, "feet"),
  37053. weight: math.unit(170, "lb"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/mevolas-rubenido/front.svg",
  37057. extra: 2109/1901,
  37058. bottom: 96/2205
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(5 + 6/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(100, "feet"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/dee/front.svg",
  37078. extra: 2153/2036,
  37079. bottom: 59/2212
  37080. }
  37081. },
  37082. back: {
  37083. height: math.unit(100, "feet"),
  37084. name: "Back",
  37085. image: {
  37086. source: "./media/characters/dee/back.svg",
  37087. extra: 2183/2058,
  37088. bottom: 75/2258
  37089. }
  37090. },
  37091. foot: {
  37092. height: math.unit(19.43, "feet"),
  37093. name: "Foot",
  37094. image: {
  37095. source: "./media/characters/dee/foot.svg"
  37096. }
  37097. },
  37098. hoof: {
  37099. height: math.unit(20.6, "feet"),
  37100. name: "Hoof",
  37101. image: {
  37102. source: "./media/characters/dee/hoof.svg"
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Macro",
  37109. height: math.unit(100, "feet"),
  37110. default: true
  37111. },
  37112. ]
  37113. ))
  37114. characterMakers.push(() => makeCharacter(
  37115. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37116. {
  37117. front: {
  37118. height: math.unit(5 + 6/12, "feet"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/teh/front.svg",
  37122. extra: 1002/847,
  37123. bottom: 62/1064
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(5 + 6/12, "feet"),
  37131. default: true
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37137. {
  37138. side: {
  37139. height: math.unit(6 + 1/12, "feet"),
  37140. weight: math.unit(204, "lb"),
  37141. name: "Side",
  37142. image: {
  37143. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37144. extra: 974/775,
  37145. bottom: 169/1143
  37146. }
  37147. },
  37148. sitting: {
  37149. height: math.unit(6 + 2/12, "feet"),
  37150. weight: math.unit(204, "lb"),
  37151. name: "Sitting",
  37152. image: {
  37153. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37154. extra: 1175/964,
  37155. bottom: 378/1553
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(6 + 1/12, "feet"),
  37163. default: true
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(6, "inches"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/tululi/front.svg",
  37175. extra: 1997/1876,
  37176. bottom: 20/2017
  37177. }
  37178. },
  37179. },
  37180. [
  37181. {
  37182. name: "Normal",
  37183. height: math.unit(6, "inches"),
  37184. default: true
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(4 + 1/12, "feet"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/star/front.svg",
  37196. extra: 1493/1189,
  37197. bottom: 48/1541
  37198. }
  37199. },
  37200. },
  37201. [
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(4 + 1/12, "feet"),
  37205. default: true
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(6 + 3/12, "feet"),
  37214. name: "Front",
  37215. image: {
  37216. source: "./media/characters/comet/front.svg",
  37217. extra: 1681/1462,
  37218. bottom: 26/1707
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(6 + 3/12, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(950, "feet"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/vortex/front.svg",
  37238. extra: 1497/1434,
  37239. bottom: 56/1553
  37240. }
  37241. },
  37242. maw: {
  37243. height: math.unit(285, "feet"),
  37244. name: "Maw",
  37245. image: {
  37246. source: "./media/characters/vortex/maw.svg"
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Macro",
  37253. height: math.unit(950, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(600, "feet"),
  37263. weight: math.unit(0.02, "grams"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/doodle/front.svg",
  37267. extra: 1578/1413,
  37268. bottom: 37/1615
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(600, "feet"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(6 + 6/12, "feet"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/jai/front.svg",
  37288. extra: 1645/1534,
  37289. bottom: 115/1760
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(6 + 6/12, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(6 + 8/12, "feet"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/pixel/front.svg",
  37309. extra: 1900/1735,
  37310. bottom: 63/1963
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(6 + 8/12, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37324. {
  37325. back: {
  37326. height: math.unit(4 + 1/12, "feet"),
  37327. weight: math.unit(75, "lb"),
  37328. name: "Back",
  37329. image: {
  37330. source: "./media/characters/rhett/back.svg",
  37331. extra: 930/878,
  37332. bottom: 25/955
  37333. }
  37334. },
  37335. front: {
  37336. height: math.unit(4 + 1/12, "feet"),
  37337. weight: math.unit(75, "lb"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/rhett/front.svg",
  37341. extra: 1682/1586,
  37342. bottom: 92/1774
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Micro",
  37349. height: math.unit(8, "inches")
  37350. },
  37351. {
  37352. name: "Tiny",
  37353. height: math.unit(2, "feet")
  37354. },
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(4 + 1/12, "feet"),
  37358. default: true
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(3 + 3/12, "feet"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/penny/front.svg",
  37370. extra: 1406/1311,
  37371. bottom: 26/1432
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Normal",
  37378. height: math.unit(3 + 3/12, "feet"),
  37379. default: true
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(4 + 11/12, "feet"),
  37388. name: "Front",
  37389. image: {
  37390. source: "./media/characters/monty/front.svg",
  37391. extra: 1479/1209,
  37392. bottom: 0/1479
  37393. }
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(4 + 11/12, "feet"),
  37400. default: true
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37406. {
  37407. front: {
  37408. height: math.unit(8 + 4/12, "feet"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/sterling/front.svg",
  37412. extra: 1420/1236,
  37413. bottom: 27/1447
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(8 + 4/12, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(15, "feet"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/marble/front.svg",
  37433. extra: 973/937,
  37434. bottom: 32/1005
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(15, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37448. {
  37449. front: {
  37450. height: math.unit(3, "inches"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/powder/front.svg",
  37454. extra: 1504/1334,
  37455. bottom: 518/2022
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(3, "inches"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(4 + 5/12, "feet"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/joey-raccoon/front.svg",
  37475. extra: 1273/1197,
  37476. bottom: 0/1273
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(4 + 5/12, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(8 + 4/12, "feet"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/vick/front.svg",
  37496. extra: 2187/2118,
  37497. bottom: 47/2234
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(8 + 4/12, "feet"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(5 + 5/12, "feet"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/mitsy/front.svg",
  37517. extra: 1842/1695,
  37518. bottom: 0/1842
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(5 + 5/12, "feet"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(6 + 3/12, "feet"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/silvy/front.svg",
  37538. extra: 1995/1836,
  37539. bottom: 225/2220
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(6 + 3/12, "feet"),
  37547. default: true
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(3 + 8/12, "feet"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/rodney/front.svg",
  37559. extra: 1956/1747,
  37560. bottom: 31/1987
  37561. }
  37562. },
  37563. frontDressed: {
  37564. height: math.unit(2.9, "feet"),
  37565. name: "Front (Dressed)",
  37566. image: {
  37567. source: "./media/characters/rodney/front-dressed.svg",
  37568. extra: 1382/1241,
  37569. bottom: 385/1767
  37570. }
  37571. },
  37572. },
  37573. [
  37574. {
  37575. name: "Normal",
  37576. height: math.unit(3 + 8/12, "feet"),
  37577. default: true
  37578. },
  37579. ]
  37580. ))
  37581. characterMakers.push(() => makeCharacter(
  37582. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37583. {
  37584. front: {
  37585. height: math.unit(5 + 9/12, "feet"),
  37586. weight: math.unit(194, "lbs"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/zakail-sudekai/front.svg",
  37590. extra: 2696/2533,
  37591. bottom: 248/2944
  37592. }
  37593. },
  37594. maw: {
  37595. height: math.unit(1.35, "feet"),
  37596. name: "Maw",
  37597. image: {
  37598. source: "./media/characters/zakail-sudekai/maw.svg"
  37599. }
  37600. },
  37601. },
  37602. [
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(5 + 9/12, "feet"),
  37606. default: true
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(8 + 4/12, "feet"),
  37615. weight: math.unit(1200, "lb"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/eleanor/front.svg",
  37619. extra: 1226/1192,
  37620. bottom: 52/1278
  37621. }
  37622. },
  37623. back: {
  37624. height: math.unit(8 + 4/12, "feet"),
  37625. weight: math.unit(1200, "lb"),
  37626. name: "Back",
  37627. image: {
  37628. source: "./media/characters/eleanor/back.svg",
  37629. extra: 1242/1184,
  37630. bottom: 60/1302
  37631. }
  37632. },
  37633. head: {
  37634. height: math.unit(2.62, "feet"),
  37635. name: "Head",
  37636. image: {
  37637. source: "./media/characters/eleanor/head.svg"
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(8 + 4/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(8 + 4/12, "feet"),
  37654. weight: math.unit(750, "lb"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/tanya/front.svg",
  37658. extra: 1749/1615,
  37659. bottom: 33/1782
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(8 + 4/12, "feet"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(5, "feet"),
  37676. weight: math.unit(225, "lb"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/cindy/front.svg",
  37680. extra: 1320/1250,
  37681. bottom: 42/1362
  37682. }
  37683. },
  37684. frontDressed: {
  37685. height: math.unit(5, "feet"),
  37686. weight: math.unit(225, "lb"),
  37687. name: "Front (Dressed)",
  37688. image: {
  37689. source: "./media/characters/cindy/front-dressed.svg",
  37690. extra: 1320/1250,
  37691. bottom: 42/1362
  37692. }
  37693. },
  37694. back: {
  37695. height: math.unit(5, "feet"),
  37696. weight: math.unit(225, "lb"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/cindy/back.svg",
  37700. extra: 1384/1346,
  37701. bottom: 14/1398
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(5, "feet"),
  37709. default: true
  37710. },
  37711. ]
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37715. {
  37716. front: {
  37717. height: math.unit(6 + 9/12, "feet"),
  37718. weight: math.unit(440, "lb"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/wilbur-owen/front.svg",
  37722. extra: 1575/1448,
  37723. bottom: 72/1647
  37724. }
  37725. },
  37726. back: {
  37727. height: math.unit(6 + 9/12, "feet"),
  37728. weight: math.unit(440, "lb"),
  37729. name: "Back",
  37730. image: {
  37731. source: "./media/characters/wilbur-owen/back.svg",
  37732. extra: 1578/1445,
  37733. bottom: 36/1614
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(6 + 9/12, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(6 + 5/12, "feet"),
  37750. weight: math.unit(650, "lb"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/keegan/front.svg",
  37754. extra: 2387/2198,
  37755. bottom: 33/2420
  37756. }
  37757. },
  37758. side: {
  37759. height: math.unit(6 + 5/12, "feet"),
  37760. weight: math.unit(650, "lb"),
  37761. name: "Side",
  37762. image: {
  37763. source: "./media/characters/keegan/side.svg",
  37764. extra: 2390/2202,
  37765. bottom: 47/2437
  37766. }
  37767. },
  37768. back: {
  37769. height: math.unit(6 + 5/12, "feet"),
  37770. weight: math.unit(650, "lb"),
  37771. name: "Back",
  37772. image: {
  37773. source: "./media/characters/keegan/back.svg",
  37774. extra: 2418/2268,
  37775. bottom: 15/2433
  37776. }
  37777. },
  37778. frontSfw: {
  37779. height: math.unit(6 + 5/12, "feet"),
  37780. weight: math.unit(650, "lb"),
  37781. name: "Front (SFW)",
  37782. image: {
  37783. source: "./media/characters/keegan/front-sfw.svg",
  37784. extra: 2387/2198,
  37785. bottom: 33/2420
  37786. }
  37787. },
  37788. beans: {
  37789. height: math.unit(1.85, "feet"),
  37790. name: "Beans",
  37791. image: {
  37792. source: "./media/characters/keegan/beans.svg"
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Normal",
  37799. height: math.unit(6 + 5/12, "feet"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(9, "feet"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/colton/front.svg",
  37812. extra: 1589/1326,
  37813. bottom: 139/1728
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(9, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(2 + 9/12, "feet"),
  37830. name: "Front",
  37831. image: {
  37832. source: "./media/characters/bora/front.svg",
  37833. extra: 1265/1250,
  37834. bottom: 24/1289
  37835. }
  37836. },
  37837. },
  37838. [
  37839. {
  37840. name: "Normal",
  37841. height: math.unit(2 + 9/12, "feet"),
  37842. default: true
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(8, "feet"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/myu-myu/front.svg",
  37854. extra: 1949/1857,
  37855. bottom: 90/2039
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(8, "feet"),
  37863. default: true
  37864. },
  37865. {
  37866. name: "Big",
  37867. height: math.unit(15, "feet")
  37868. },
  37869. {
  37870. name: "BIG",
  37871. height: math.unit(25, "feet")
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37877. {
  37878. side: {
  37879. height: math.unit(7 + 5/12, "feet"),
  37880. weight: math.unit(2800, "lb"),
  37881. name: "Side",
  37882. image: {
  37883. source: "./media/characters/haloren/side.svg",
  37884. extra: 1793/409,
  37885. bottom: 59/1852
  37886. }
  37887. },
  37888. frontPaw: {
  37889. height: math.unit(2.36, "feet"),
  37890. name: "Front paw",
  37891. image: {
  37892. source: "./media/characters/haloren/front-paw.svg"
  37893. }
  37894. },
  37895. hindPaw: {
  37896. height: math.unit(3.18, "feet"),
  37897. name: "Hind paw",
  37898. image: {
  37899. source: "./media/characters/haloren/hind-paw.svg"
  37900. }
  37901. },
  37902. maw: {
  37903. height: math.unit(5.05, "feet"),
  37904. name: "Maw",
  37905. image: {
  37906. source: "./media/characters/haloren/maw.svg"
  37907. }
  37908. },
  37909. dick: {
  37910. height: math.unit(2.90, "feet"),
  37911. name: "Dick",
  37912. image: {
  37913. source: "./media/characters/haloren/dick.svg"
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(7 + 5/12, "feet"),
  37921. default: true
  37922. },
  37923. {
  37924. name: "Enhanced",
  37925. height: math.unit(14 + 3/12, "feet")
  37926. },
  37927. ]
  37928. ))
  37929. characterMakers.push(() => makeCharacter(
  37930. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37931. {
  37932. front: {
  37933. height: math.unit(171, "cm"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/kimmy/front.svg",
  37937. extra: 1491/1435,
  37938. bottom: 53/1544
  37939. }
  37940. },
  37941. },
  37942. [
  37943. {
  37944. name: "Small",
  37945. height: math.unit(9, "cm")
  37946. },
  37947. {
  37948. name: "Normal",
  37949. height: math.unit(171, "cm"),
  37950. default: true
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37956. {
  37957. front: {
  37958. height: math.unit(8, "feet"),
  37959. weight: math.unit(300, "lb"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/galeboomer/front.svg",
  37963. extra: 4651/4415,
  37964. bottom: 162/4813
  37965. }
  37966. },
  37967. back: {
  37968. height: math.unit(8, "feet"),
  37969. weight: math.unit(300, "lb"),
  37970. name: "Back",
  37971. image: {
  37972. source: "./media/characters/galeboomer/back.svg",
  37973. extra: 4544/4314,
  37974. bottom: 16/4560
  37975. }
  37976. },
  37977. frontAlt: {
  37978. height: math.unit(8, "feet"),
  37979. weight: math.unit(300, "lb"),
  37980. name: "Front (Alt)",
  37981. image: {
  37982. source: "./media/characters/galeboomer/front-alt.svg",
  37983. extra: 4458/4228,
  37984. bottom: 68/4526
  37985. }
  37986. },
  37987. maw: {
  37988. height: math.unit(1.2, "feet"),
  37989. name: "Maw",
  37990. image: {
  37991. source: "./media/characters/galeboomer/maw.svg"
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(8, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(5 + 9/12, "feet"),
  38008. weight: math.unit(120, "lb"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/chyr/front.svg",
  38012. extra: 1323/1254,
  38013. bottom: 63/1386
  38014. }
  38015. },
  38016. back: {
  38017. height: math.unit(5 + 9/12, "feet"),
  38018. weight: math.unit(120, "lb"),
  38019. name: "Back",
  38020. image: {
  38021. source: "./media/characters/chyr/back.svg",
  38022. extra: 1323/1252,
  38023. bottom: 48/1371
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(5 + 9/12, "feet"),
  38031. default: true
  38032. },
  38033. ]
  38034. ))
  38035. characterMakers.push(() => makeCharacter(
  38036. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38037. {
  38038. front: {
  38039. height: math.unit(7, "feet"),
  38040. weight: math.unit(310, "lb"),
  38041. name: "Front",
  38042. image: {
  38043. source: "./media/characters/solarus/front.svg",
  38044. extra: 2415/2021,
  38045. bottom: 103/2518
  38046. }
  38047. },
  38048. back: {
  38049. height: math.unit(7, "feet"),
  38050. weight: math.unit(310, "lb"),
  38051. name: "Back",
  38052. image: {
  38053. source: "./media/characters/solarus/back.svg",
  38054. extra: 2463/2089,
  38055. bottom: 79/2542
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(7, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(16, "feet"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38075. extra: 1844/1780,
  38076. bottom: 58/1902
  38077. }
  38078. },
  38079. winterCoat: {
  38080. height: math.unit(16, "feet"),
  38081. name: "Winter Coat",
  38082. image: {
  38083. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38084. extra: 1807/1775,
  38085. bottom: 69/1876
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(16, "feet"),
  38093. default: true
  38094. },
  38095. {
  38096. name: "Chicago Size",
  38097. height: math.unit(560, "feet")
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(11 + 6/12, "feet"),
  38106. weight: math.unit(1366, "lb"),
  38107. name: "Front",
  38108. image: {
  38109. source: "./media/characters/lexor/front.svg",
  38110. extra: 1560/1481,
  38111. bottom: 211/1771
  38112. }
  38113. },
  38114. back: {
  38115. height: math.unit(11 + 6/12, "feet"),
  38116. weight: math.unit(1366, "lb"),
  38117. name: "Back",
  38118. image: {
  38119. source: "./media/characters/lexor/back.svg",
  38120. extra: 1614/1533,
  38121. bottom: 76/1690
  38122. }
  38123. },
  38124. maw: {
  38125. height: math.unit(3, "feet"),
  38126. name: "Maw",
  38127. image: {
  38128. source: "./media/characters/lexor/maw.svg"
  38129. }
  38130. },
  38131. dick: {
  38132. height: math.unit(2.59, "feet"),
  38133. name: "Dick",
  38134. image: {
  38135. source: "./media/characters/lexor/dick.svg"
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Normal",
  38142. height: math.unit(11 + 6/12, "feet"),
  38143. default: true
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(5 + 8/12, "feet"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/magnum/front.svg",
  38155. extra: 942/855,
  38156. bottom: 26/968
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(5 + 8/12, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(18 + 4/12, "feet"),
  38173. weight: math.unit(1500, "kg"),
  38174. name: "Front",
  38175. image: {
  38176. source: "./media/characters/solas-sharpsman/front.svg",
  38177. extra: 1698/1589,
  38178. bottom: 0/1698
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Normal",
  38185. height: math.unit(18 + 4/12, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(5 + 5/12, "feet"),
  38195. weight: math.unit(180, "lb"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/october/front.svg",
  38199. extra: 1800/1650,
  38200. bottom: 0/1800
  38201. }
  38202. },
  38203. frontNsfw: {
  38204. height: math.unit(5 + 5/12, "feet"),
  38205. weight: math.unit(180, "lb"),
  38206. name: "Front (NSFW)",
  38207. image: {
  38208. source: "./media/characters/october/front-nsfw.svg",
  38209. extra: 1392/1307,
  38210. bottom: 42/1434
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(5 + 5/12, "feet"),
  38218. default: true
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(8 + 6/12, "feet"),
  38227. name: "Front",
  38228. image: {
  38229. source: "./media/characters/essynkardi/front.svg",
  38230. extra: 1914/1846,
  38231. bottom: 22/1936
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(8 + 6/12, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(6 + 6/12, "feet"),
  38248. weight: math.unit(7, "lb"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/icky/front.svg",
  38252. extra: 813/782,
  38253. bottom: 66/879
  38254. }
  38255. },
  38256. back: {
  38257. height: math.unit(6 + 6/12, "feet"),
  38258. weight: math.unit(7, "lb"),
  38259. name: "Back",
  38260. image: {
  38261. source: "./media/characters/icky/back.svg",
  38262. extra: 754/735,
  38263. bottom: 56/810
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Normal",
  38270. height: math.unit(6 + 6/12, "feet"),
  38271. default: true
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38277. {
  38278. front: {
  38279. height: math.unit(15, "feet"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/rojas/front.svg",
  38283. extra: 1462/1408,
  38284. bottom: 95/1557
  38285. }
  38286. },
  38287. back: {
  38288. height: math.unit(15, "feet"),
  38289. name: "Back",
  38290. image: {
  38291. source: "./media/characters/rojas/back.svg",
  38292. extra: 1023/954,
  38293. bottom: 28/1051
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(15, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38307. {
  38308. frontHuman: {
  38309. height: math.unit(5 + 7/12, "feet"),
  38310. name: "Front (Human)",
  38311. image: {
  38312. source: "./media/characters/alek-dryagan/front-human.svg",
  38313. extra: 1687/1667,
  38314. bottom: 69/1756
  38315. }
  38316. },
  38317. backHuman: {
  38318. height: math.unit(5 + 7/12, "feet"),
  38319. name: "Back (Human)",
  38320. image: {
  38321. source: "./media/characters/alek-dryagan/back-human.svg",
  38322. extra: 1670/1649,
  38323. bottom: 65/1735
  38324. }
  38325. },
  38326. frontDemi: {
  38327. height: math.unit(65, "feet"),
  38328. name: "Front (Demi)",
  38329. image: {
  38330. source: "./media/characters/alek-dryagan/front-demi.svg",
  38331. extra: 1669/1642,
  38332. bottom: 49/1718
  38333. }
  38334. },
  38335. backDemi: {
  38336. height: math.unit(65, "feet"),
  38337. name: "Back (Demi)",
  38338. image: {
  38339. source: "./media/characters/alek-dryagan/back-demi.svg",
  38340. extra: 1658/1637,
  38341. bottom: 40/1698
  38342. }
  38343. },
  38344. mawHuman: {
  38345. height: math.unit(0.3, "feet"),
  38346. name: "Maw (Human)",
  38347. image: {
  38348. source: "./media/characters/alek-dryagan/maw-human.svg"
  38349. }
  38350. },
  38351. mawDemi: {
  38352. height: math.unit(3.8, "feet"),
  38353. name: "Maw (Demi)",
  38354. image: {
  38355. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38356. }
  38357. },
  38358. },
  38359. [
  38360. {
  38361. name: "Normal",
  38362. height: math.unit(5 + 7/12, "feet"),
  38363. default: true
  38364. },
  38365. ]
  38366. ))
  38367. characterMakers.push(() => makeCharacter(
  38368. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38369. {
  38370. frontHuman: {
  38371. height: math.unit(5 + 2/12, "feet"),
  38372. name: "Front (Human)",
  38373. image: {
  38374. source: "./media/characters/gen/front-human.svg",
  38375. extra: 1627/1538,
  38376. bottom: 71/1698
  38377. }
  38378. },
  38379. backHuman: {
  38380. height: math.unit(5 + 2/12, "feet"),
  38381. name: "Back (Human)",
  38382. image: {
  38383. source: "./media/characters/gen/back-human.svg",
  38384. extra: 1638/1548,
  38385. bottom: 69/1707
  38386. }
  38387. },
  38388. frontDemi: {
  38389. height: math.unit(5 + 2/12, "feet"),
  38390. name: "Front (Demi)",
  38391. image: {
  38392. source: "./media/characters/gen/front-demi.svg",
  38393. extra: 1627/1538,
  38394. bottom: 71/1698
  38395. }
  38396. },
  38397. backDemi: {
  38398. height: math.unit(5 + 2/12, "feet"),
  38399. name: "Back (Demi)",
  38400. image: {
  38401. source: "./media/characters/gen/back-demi.svg",
  38402. extra: 1638/1548,
  38403. bottom: 69/1707
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(5 + 2/12, "feet"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38417. {
  38418. frontImp: {
  38419. height: math.unit(1 + 11/12, "feet"),
  38420. name: "Front (Imp)",
  38421. image: {
  38422. source: "./media/characters/max-kobold/front-imp.svg",
  38423. extra: 1238/1134,
  38424. bottom: 81/1319
  38425. }
  38426. },
  38427. backImp: {
  38428. height: math.unit(1 + 11/12, "feet"),
  38429. name: "Back (Imp)",
  38430. image: {
  38431. source: "./media/characters/max-kobold/back-imp.svg",
  38432. extra: 1334/1175,
  38433. bottom: 34/1368
  38434. }
  38435. },
  38436. frontDemi: {
  38437. height: math.unit(5 + 9/12, "feet"),
  38438. name: "Front (Demi)",
  38439. image: {
  38440. source: "./media/characters/max-kobold/front-demi.svg",
  38441. extra: 1715/1685,
  38442. bottom: 54/1769
  38443. }
  38444. },
  38445. backDemi: {
  38446. height: math.unit(5 + 9/12, "feet"),
  38447. name: "Back (Demi)",
  38448. image: {
  38449. source: "./media/characters/max-kobold/back-demi.svg",
  38450. extra: 1752/1729,
  38451. bottom: 41/1793
  38452. }
  38453. },
  38454. handImp: {
  38455. height: math.unit(0.45, "feet"),
  38456. name: "Hand (Imp)",
  38457. image: {
  38458. source: "./media/characters/max-kobold/hand.svg"
  38459. }
  38460. },
  38461. pawImp: {
  38462. height: math.unit(0.46, "feet"),
  38463. name: "Paw (Imp)",
  38464. image: {
  38465. source: "./media/characters/max-kobold/paw.svg"
  38466. }
  38467. },
  38468. handDemi: {
  38469. height: math.unit(0.80, "feet"),
  38470. name: "Hand (Demi)",
  38471. image: {
  38472. source: "./media/characters/max-kobold/hand.svg"
  38473. }
  38474. },
  38475. pawDemi: {
  38476. height: math.unit(1.1, "feet"),
  38477. name: "Paw (Demi)",
  38478. image: {
  38479. source: "./media/characters/max-kobold/paw.svg"
  38480. }
  38481. },
  38482. headImp: {
  38483. height: math.unit(1.33, "feet"),
  38484. name: "Head (Imp)",
  38485. image: {
  38486. source: "./media/characters/max-kobold/head-imp.svg"
  38487. }
  38488. },
  38489. mawImp: {
  38490. height: math.unit(0.75, "feet"),
  38491. name: "Maw (Imp)",
  38492. image: {
  38493. source: "./media/characters/max-kobold/maw-imp.svg"
  38494. }
  38495. },
  38496. mawDemi: {
  38497. height: math.unit(0.42, "feet"),
  38498. name: "Maw (Demi)",
  38499. image: {
  38500. source: "./media/characters/max-kobold/maw-demi.svg"
  38501. }
  38502. },
  38503. },
  38504. [
  38505. {
  38506. name: "Normal",
  38507. height: math.unit(1 + 11/12, "feet"),
  38508. default: true
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(7 + 5/12, "feet"),
  38517. name: "Front",
  38518. image: {
  38519. source: "./media/characters/carbon/front.svg",
  38520. extra: 1754/1689,
  38521. bottom: 65/1819
  38522. }
  38523. },
  38524. back: {
  38525. height: math.unit(7 + 5/12, "feet"),
  38526. name: "Back",
  38527. image: {
  38528. source: "./media/characters/carbon/back.svg",
  38529. extra: 1762/1695,
  38530. bottom: 24/1786
  38531. }
  38532. },
  38533. frontGigantamax: {
  38534. height: math.unit(150, "feet"),
  38535. name: "Front (Gigantamax)",
  38536. image: {
  38537. source: "./media/characters/carbon/front-gigantamax.svg",
  38538. extra: 1826/1669,
  38539. bottom: 59/1885
  38540. }
  38541. },
  38542. backGigantamax: {
  38543. height: math.unit(150, "feet"),
  38544. name: "Back (Gigantamax)",
  38545. image: {
  38546. source: "./media/characters/carbon/back-gigantamax.svg",
  38547. extra: 1796/1653,
  38548. bottom: 53/1849
  38549. }
  38550. },
  38551. maw: {
  38552. height: math.unit(0.48, "feet"),
  38553. name: "Maw",
  38554. image: {
  38555. source: "./media/characters/carbon/maw.svg"
  38556. }
  38557. },
  38558. mawGigantamax: {
  38559. height: math.unit(7.5, "feet"),
  38560. name: "Maw (Gigantamax)",
  38561. image: {
  38562. source: "./media/characters/carbon/maw-gigantamax.svg"
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(7 + 5/12, "feet"),
  38570. default: true
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38576. {
  38577. front: {
  38578. height: math.unit(6, "feet"),
  38579. name: "Front",
  38580. image: {
  38581. source: "./media/characters/maverick/front.svg",
  38582. extra: 1672/1661,
  38583. bottom: 85/1757
  38584. }
  38585. },
  38586. back: {
  38587. height: math.unit(6, "feet"),
  38588. name: "Back",
  38589. image: {
  38590. source: "./media/characters/maverick/back.svg",
  38591. extra: 1642/1631,
  38592. bottom: 38/1680
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(6, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(15, "feet"),
  38609. weight: math.unit(615, "lb"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/grockle/front.svg",
  38613. extra: 1535/1427,
  38614. bottom: 56/1591
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(15, "feet"),
  38622. default: true
  38623. },
  38624. {
  38625. name: "Large",
  38626. height: math.unit(150, "feet")
  38627. },
  38628. {
  38629. name: "Macro",
  38630. height: math.unit(1876, "feet")
  38631. },
  38632. {
  38633. name: "Mega Macro",
  38634. height: math.unit(121940, "feet")
  38635. },
  38636. {
  38637. name: "Giga Macro",
  38638. height: math.unit(750, "km")
  38639. },
  38640. {
  38641. name: "Tera Macro",
  38642. height: math.unit(750000, "km")
  38643. },
  38644. {
  38645. name: "Galactic",
  38646. height: math.unit(1.4e5, "km")
  38647. },
  38648. {
  38649. name: "Godlike",
  38650. height: math.unit(9.8e280, "galaxies")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(11, "meters"),
  38659. weight: math.unit(20, "tonnes"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/alistair/front.svg",
  38663. extra: 1265/1009,
  38664. bottom: 93/1358
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Normal",
  38671. height: math.unit(11, "meters"),
  38672. default: true
  38673. },
  38674. ]
  38675. ))
  38676. characterMakers.push(() => makeCharacter(
  38677. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38678. {
  38679. front: {
  38680. height: math.unit(5 + 8/12, "feet"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/haruka/front.svg",
  38684. extra: 2012/1952,
  38685. bottom: 0/2012
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(5 + 8/12, "feet"),
  38693. default: true
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38699. {
  38700. back: {
  38701. height: math.unit(9, "feet"),
  38702. name: "Back",
  38703. image: {
  38704. source: "./media/characters/vivian-sylveon/back.svg",
  38705. extra: 1853/1714,
  38706. bottom: 0/1853
  38707. }
  38708. },
  38709. },
  38710. [
  38711. {
  38712. name: "Normal",
  38713. height: math.unit(9, "feet"),
  38714. default: true
  38715. },
  38716. {
  38717. name: "Macro",
  38718. height: math.unit(500, "feet")
  38719. },
  38720. {
  38721. name: "Megamacro",
  38722. height: math.unit(600, "miles")
  38723. },
  38724. {
  38725. name: "Gigamacro",
  38726. height: math.unit(30000, "miles")
  38727. },
  38728. ]
  38729. ))
  38730. characterMakers.push(() => makeCharacter(
  38731. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38732. {
  38733. anthro: {
  38734. height: math.unit(5 + 10/12, "feet"),
  38735. weight: math.unit(100, "lb"),
  38736. name: "Anthro",
  38737. image: {
  38738. source: "./media/characters/daiki/anthro.svg",
  38739. extra: 1115/1027,
  38740. bottom: 69/1184
  38741. }
  38742. },
  38743. feral: {
  38744. height: math.unit(200, "feet"),
  38745. name: "Feral",
  38746. image: {
  38747. source: "./media/characters/daiki/feral.svg",
  38748. extra: 1256/313,
  38749. bottom: 39/1295
  38750. }
  38751. },
  38752. feralHead: {
  38753. height: math.unit(171, "feet"),
  38754. name: "Feral Head",
  38755. image: {
  38756. source: "./media/characters/daiki/feral-head.svg"
  38757. }
  38758. },
  38759. manaDragon: {
  38760. height: math.unit(170, "meters"),
  38761. name: "Mana-dragon",
  38762. image: {
  38763. source: "./media/characters/daiki/mana-dragon.svg",
  38764. extra: 763/420,
  38765. bottom: 97/860
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(5 + 10/12, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38779. {
  38780. fullyEquippedFront: {
  38781. height: math.unit(3 + 1/12, "feet"),
  38782. weight: math.unit(24, "lb"),
  38783. name: "Fully Equipped (Front)",
  38784. image: {
  38785. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38786. extra: 687/605,
  38787. bottom: 18/705
  38788. }
  38789. },
  38790. fullyEquippedBack: {
  38791. height: math.unit(3 + 1/12, "feet"),
  38792. weight: math.unit(24, "lb"),
  38793. name: "Fully Equipped (Back)",
  38794. image: {
  38795. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38796. extra: 689/590,
  38797. bottom: 18/707
  38798. }
  38799. },
  38800. dailyWear: {
  38801. height: math.unit(3 + 1/12, "feet"),
  38802. weight: math.unit(24, "lb"),
  38803. name: "Daily Wear",
  38804. image: {
  38805. source: "./media/characters/tea-spot/daily-wear.svg",
  38806. extra: 701/620,
  38807. bottom: 21/722
  38808. }
  38809. },
  38810. maidWork: {
  38811. height: math.unit(3 + 1/12, "feet"),
  38812. weight: math.unit(24, "lb"),
  38813. name: "Maid Work",
  38814. image: {
  38815. source: "./media/characters/tea-spot/maid-work.svg",
  38816. extra: 693/609,
  38817. bottom: 15/708
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(3 + 1/12, "feet"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(175, "cm"),
  38834. weight: math.unit(75, "kg"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/chee/front.svg",
  38838. extra: 1796/1740,
  38839. bottom: 40/1836
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Micro-Micro",
  38846. height: math.unit(1, "nm")
  38847. },
  38848. {
  38849. name: "Micro-erst",
  38850. height: math.unit(1, "micrometer")
  38851. },
  38852. {
  38853. name: "Micro-er",
  38854. height: math.unit(1, "cm")
  38855. },
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(175, "cm"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "Macro",
  38863. height: math.unit(100, "m")
  38864. },
  38865. {
  38866. name: "Macro-er",
  38867. height: math.unit(1, "km")
  38868. },
  38869. {
  38870. name: "Macro-erst",
  38871. height: math.unit(10, "km")
  38872. },
  38873. {
  38874. name: "Macro-Macro",
  38875. height: math.unit(100, "km")
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(11 + 9/12, "feet"),
  38884. weight: math.unit(935, "lb"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/kingsley/front.svg",
  38888. extra: 1803/1674,
  38889. bottom: 127/1930
  38890. }
  38891. },
  38892. frontNude: {
  38893. height: math.unit(11 + 9/12, "feet"),
  38894. weight: math.unit(935, "lb"),
  38895. name: "Front (Nude)",
  38896. image: {
  38897. source: "./media/characters/kingsley/front-nude.svg",
  38898. extra: 1803/1674,
  38899. bottom: 127/1930
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(11 + 9/12, "feet"),
  38907. default: true
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38913. {
  38914. side: {
  38915. height: math.unit(9, "feet"),
  38916. name: "Side",
  38917. image: {
  38918. source: "./media/characters/rymel/side.svg",
  38919. extra: 792/469,
  38920. bottom: 121/913
  38921. }
  38922. },
  38923. maw: {
  38924. height: math.unit(2.4, "meters"),
  38925. name: "Maw",
  38926. image: {
  38927. source: "./media/characters/rymel/maw.svg"
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "House Drake",
  38934. height: math.unit(2, "feet")
  38935. },
  38936. {
  38937. name: "Reduced",
  38938. height: math.unit(4.5, "feet")
  38939. },
  38940. {
  38941. name: "Normal",
  38942. height: math.unit(9, "feet"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38949. {
  38950. front: {
  38951. height: math.unit(1.74, "meters"),
  38952. weight: math.unit(55, "kg"),
  38953. name: "Front",
  38954. image: {
  38955. source: "./media/characters/rubus/front.svg",
  38956. extra: 1894/1742,
  38957. bottom: 44/1938
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(1.74, "meters"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(5 + 2/12, "feet"),
  38974. weight: math.unit(112, "lb"),
  38975. name: "Front",
  38976. image: {
  38977. source: "./media/characters/cassie-kingston/front.svg",
  38978. extra: 1438/1390,
  38979. bottom: 47/1485
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Normal",
  38986. height: math.unit(5 + 2/12, "feet"),
  38987. default: true
  38988. },
  38989. {
  38990. name: "Macro",
  38991. height: math.unit(128, "feet")
  38992. },
  38993. {
  38994. name: "Megamacro",
  38995. height: math.unit(2.56, "miles")
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(7, "feet"),
  39004. name: "Front",
  39005. image: {
  39006. source: "./media/characters/fox/front.svg",
  39007. extra: 1798/1703,
  39008. bottom: 55/1853
  39009. }
  39010. },
  39011. back: {
  39012. height: math.unit(7, "feet"),
  39013. name: "Back",
  39014. image: {
  39015. source: "./media/characters/fox/back.svg",
  39016. extra: 1748/1649,
  39017. bottom: 32/1780
  39018. }
  39019. },
  39020. head: {
  39021. height: math.unit(1.95, "feet"),
  39022. name: "Head",
  39023. image: {
  39024. source: "./media/characters/fox/head.svg"
  39025. }
  39026. },
  39027. dick: {
  39028. height: math.unit(1.33, "feet"),
  39029. name: "Dick",
  39030. image: {
  39031. source: "./media/characters/fox/dick.svg"
  39032. }
  39033. },
  39034. foot: {
  39035. height: math.unit(1, "feet"),
  39036. name: "Foot",
  39037. image: {
  39038. source: "./media/characters/fox/foot.svg"
  39039. }
  39040. },
  39041. paw: {
  39042. height: math.unit(0.92, "feet"),
  39043. name: "Paw",
  39044. image: {
  39045. source: "./media/characters/fox/paw.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Small",
  39052. height: math.unit(3, "inches")
  39053. },
  39054. {
  39055. name: "\"Realistic\"",
  39056. height: math.unit(7, "feet")
  39057. },
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(150, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "BIG",
  39065. height: math.unit(1200, "feet")
  39066. },
  39067. {
  39068. name: "👀",
  39069. height: math.unit(5, "miles")
  39070. },
  39071. {
  39072. name: "👀👀👀",
  39073. height: math.unit(64, "miles")
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(625, "feet"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/asonja-rossa/front.svg",
  39085. extra: 1833/1686,
  39086. bottom: 24/1857
  39087. }
  39088. },
  39089. back: {
  39090. height: math.unit(625, "feet"),
  39091. name: "Back",
  39092. image: {
  39093. source: "./media/characters/asonja-rossa/back.svg",
  39094. extra: 1852/1753,
  39095. bottom: 26/1878
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Macro",
  39102. height: math.unit(625, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39109. {
  39110. side: {
  39111. height: math.unit(8, "feet"),
  39112. name: "Side",
  39113. image: {
  39114. source: "./media/characters/rezukii/side.svg",
  39115. extra: 979/542,
  39116. bottom: 87/1066
  39117. }
  39118. },
  39119. sitting: {
  39120. height: math.unit(14.6, "feet"),
  39121. name: "Sitting",
  39122. image: {
  39123. source: "./media/characters/rezukii/sitting.svg",
  39124. extra: 1023/813,
  39125. bottom: 45/1068
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Tiny",
  39132. height: math.unit(2, "feet")
  39133. },
  39134. {
  39135. name: "Smol",
  39136. height: math.unit(4, "feet")
  39137. },
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(8, "feet"),
  39141. default: true
  39142. },
  39143. {
  39144. name: "Big",
  39145. height: math.unit(12, "feet")
  39146. },
  39147. {
  39148. name: "Macro",
  39149. height: math.unit(30, "feet")
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(14, "feet"),
  39158. weight: math.unit(9.5, "tonnes"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/dawnheart/front.svg",
  39162. extra: 2792/2675,
  39163. bottom: 64/2856
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(14, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39177. {
  39178. front: {
  39179. height: math.unit(1.7, "m"),
  39180. name: "Front",
  39181. image: {
  39182. source: "./media/characters/gladi/front.svg",
  39183. extra: 1460/1362,
  39184. bottom: 19/1479
  39185. }
  39186. },
  39187. back: {
  39188. height: math.unit(1.7, "m"),
  39189. name: "Back",
  39190. image: {
  39191. source: "./media/characters/gladi/back.svg",
  39192. extra: 1459/1357,
  39193. bottom: 12/1471
  39194. }
  39195. },
  39196. feral: {
  39197. height: math.unit(2.05, "m"),
  39198. name: "Feral",
  39199. image: {
  39200. source: "./media/characters/gladi/feral.svg",
  39201. extra: 821/557,
  39202. bottom: 91/912
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Shortest",
  39209. height: math.unit(70, "cm")
  39210. },
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(1.7, "m")
  39214. },
  39215. {
  39216. name: "Macro",
  39217. height: math.unit(10, "m"),
  39218. default: true
  39219. },
  39220. {
  39221. name: "Tallest",
  39222. height: math.unit(200, "m")
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(5 + 7/12, "feet"),
  39231. weight: math.unit(2, "tons"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/erdno/front.svg",
  39235. extra: 1234/1129,
  39236. bottom: 35/1269
  39237. }
  39238. },
  39239. angled: {
  39240. height: math.unit(5 + 7/12, "feet"),
  39241. weight: math.unit(2, "tons"),
  39242. name: "Angled",
  39243. image: {
  39244. source: "./media/characters/erdno/angled.svg",
  39245. extra: 1185/1139,
  39246. bottom: 36/1221
  39247. }
  39248. },
  39249. side: {
  39250. height: math.unit(5 + 7/12, "feet"),
  39251. weight: math.unit(2, "tons"),
  39252. name: "Side",
  39253. image: {
  39254. source: "./media/characters/erdno/side.svg",
  39255. extra: 1191/1144,
  39256. bottom: 40/1231
  39257. }
  39258. },
  39259. back: {
  39260. height: math.unit(5 + 7/12, "feet"),
  39261. weight: math.unit(2, "tons"),
  39262. name: "Back",
  39263. image: {
  39264. source: "./media/characters/erdno/back.svg",
  39265. extra: 1202/1146,
  39266. bottom: 17/1219
  39267. }
  39268. },
  39269. frontNsfw: {
  39270. height: math.unit(5 + 7/12, "feet"),
  39271. weight: math.unit(2, "tons"),
  39272. name: "Front (NSFW)",
  39273. image: {
  39274. source: "./media/characters/erdno/front-nsfw.svg",
  39275. extra: 1234/1129,
  39276. bottom: 35/1269
  39277. }
  39278. },
  39279. angledNsfw: {
  39280. height: math.unit(5 + 7/12, "feet"),
  39281. weight: math.unit(2, "tons"),
  39282. name: "Angled (NSFW)",
  39283. image: {
  39284. source: "./media/characters/erdno/angled-nsfw.svg",
  39285. extra: 1185/1139,
  39286. bottom: 36/1221
  39287. }
  39288. },
  39289. sideNsfw: {
  39290. height: math.unit(5 + 7/12, "feet"),
  39291. weight: math.unit(2, "tons"),
  39292. name: "Side (NSFW)",
  39293. image: {
  39294. source: "./media/characters/erdno/side-nsfw.svg",
  39295. extra: 1191/1144,
  39296. bottom: 40/1231
  39297. }
  39298. },
  39299. backNsfw: {
  39300. height: math.unit(5 + 7/12, "feet"),
  39301. weight: math.unit(2, "tons"),
  39302. name: "Back (NSFW)",
  39303. image: {
  39304. source: "./media/characters/erdno/back-nsfw.svg",
  39305. extra: 1202/1146,
  39306. bottom: 17/1219
  39307. }
  39308. },
  39309. frontHyper: {
  39310. height: math.unit(5 + 7/12, "feet"),
  39311. weight: math.unit(2, "tons"),
  39312. name: "Front (Hyper)",
  39313. image: {
  39314. source: "./media/characters/erdno/front-hyper.svg",
  39315. extra: 1298/1136,
  39316. bottom: 35/1333
  39317. }
  39318. },
  39319. },
  39320. [
  39321. {
  39322. name: "Normal",
  39323. height: math.unit(5 + 7/12, "feet"),
  39324. default: true
  39325. },
  39326. {
  39327. name: "Big",
  39328. height: math.unit(5.7, "meters")
  39329. },
  39330. {
  39331. name: "Macro",
  39332. height: math.unit(5.7, "kilometers")
  39333. },
  39334. {
  39335. name: "Megamacro",
  39336. height: math.unit(5.7, "earths")
  39337. },
  39338. ]
  39339. ))
  39340. characterMakers.push(() => makeCharacter(
  39341. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39342. {
  39343. front: {
  39344. height: math.unit(5 + 10/12, "feet"),
  39345. weight: math.unit(150, "lb"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/jamie/front.svg",
  39349. extra: 1908/1768,
  39350. bottom: 19/1927
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Minimum",
  39357. height: math.unit(2, "cm")
  39358. },
  39359. {
  39360. name: "Micro",
  39361. height: math.unit(3, "inches")
  39362. },
  39363. {
  39364. name: "Normal",
  39365. height: math.unit(5 + 10/12, "feet"),
  39366. default: true
  39367. },
  39368. {
  39369. name: "Macro",
  39370. height: math.unit(150, "feet")
  39371. },
  39372. {
  39373. name: "Megamacro",
  39374. height: math.unit(10000, "m")
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(2, "meters"),
  39383. weight: math.unit(100, "kg"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/shiron/front.svg",
  39387. extra: 2103/1985,
  39388. bottom: 98/2201
  39389. }
  39390. },
  39391. back: {
  39392. height: math.unit(2, "meters"),
  39393. weight: math.unit(100, "kg"),
  39394. name: "Back",
  39395. image: {
  39396. source: "./media/characters/shiron/back.svg",
  39397. extra: 2110/2015,
  39398. bottom: 89/2199
  39399. }
  39400. },
  39401. hand: {
  39402. height: math.unit(0.96, "feet"),
  39403. name: "Hand",
  39404. image: {
  39405. source: "./media/characters/shiron/hand.svg"
  39406. }
  39407. },
  39408. foot: {
  39409. height: math.unit(1.464, "feet"),
  39410. name: "Foot",
  39411. image: {
  39412. source: "./media/characters/shiron/foot.svg"
  39413. }
  39414. },
  39415. },
  39416. [
  39417. {
  39418. name: "Normal",
  39419. height: math.unit(2, "meters")
  39420. },
  39421. {
  39422. name: "Macro",
  39423. height: math.unit(500, "meters"),
  39424. default: true
  39425. },
  39426. {
  39427. name: "Megamacro",
  39428. height: math.unit(20, "km")
  39429. },
  39430. ]
  39431. ))
  39432. characterMakers.push(() => makeCharacter(
  39433. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39434. {
  39435. front: {
  39436. height: math.unit(6, "feet"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/sam/front.svg",
  39440. extra: 849/826,
  39441. bottom: 19/868
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(6, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(8 + 4/12, "feet"),
  39458. weight: math.unit(122, "kg"),
  39459. name: "Front",
  39460. image: {
  39461. source: "./media/characters/namori-kurogawa/front.svg",
  39462. extra: 1894/1576,
  39463. bottom: 34/1928
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(8 + 4/12, "feet"),
  39471. default: true
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(9, "feet"),
  39480. weight: math.unit(621, "lb"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/unmru/front.svg",
  39484. extra: 1853/1747,
  39485. bottom: 73/1926
  39486. }
  39487. },
  39488. side: {
  39489. height: math.unit(9, "feet"),
  39490. weight: math.unit(621, "lb"),
  39491. name: "Side",
  39492. image: {
  39493. source: "./media/characters/unmru/side.svg",
  39494. extra: 1781/1671,
  39495. bottom: 127/1908
  39496. }
  39497. },
  39498. back: {
  39499. height: math.unit(9, "feet"),
  39500. weight: math.unit(621, "lb"),
  39501. name: "Back",
  39502. image: {
  39503. source: "./media/characters/unmru/back.svg",
  39504. extra: 1894/1765,
  39505. bottom: 75/1969
  39506. }
  39507. },
  39508. dick: {
  39509. height: math.unit(3, "feet"),
  39510. weight: math.unit(35, "lb"),
  39511. name: "Dick",
  39512. image: {
  39513. source: "./media/characters/unmru/dick.svg"
  39514. }
  39515. },
  39516. },
  39517. [
  39518. {
  39519. name: "Normal",
  39520. height: math.unit(9, "feet")
  39521. },
  39522. {
  39523. name: "Natural",
  39524. height: math.unit(27, "feet"),
  39525. default: true
  39526. },
  39527. {
  39528. name: "Giant",
  39529. height: math.unit(90, "feet")
  39530. },
  39531. {
  39532. name: "Kaiju",
  39533. height: math.unit(270, "feet")
  39534. },
  39535. {
  39536. name: "Macro",
  39537. height: math.unit(900, "feet")
  39538. },
  39539. {
  39540. name: "Macro+",
  39541. height: math.unit(2700, "feet")
  39542. },
  39543. {
  39544. name: "Megamacro",
  39545. height: math.unit(9000, "feet")
  39546. },
  39547. {
  39548. name: "City-Crushing",
  39549. height: math.unit(27000, "feet")
  39550. },
  39551. {
  39552. name: "Mountain-Mashing",
  39553. height: math.unit(90000, "feet")
  39554. },
  39555. {
  39556. name: "Earth-Eclipsing",
  39557. height: math.unit(2.7e8, "feet")
  39558. },
  39559. {
  39560. name: "Sol-Swallowing",
  39561. height: math.unit(9e10, "feet")
  39562. },
  39563. {
  39564. name: "Majoris-Munching",
  39565. height: math.unit(2.7e13, "feet")
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39571. {
  39572. front: {
  39573. height: math.unit(1, "inch"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/squeaks-mouse/front.svg",
  39577. extra: 352/308,
  39578. bottom: 25/377
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Micro",
  39585. height: math.unit(1, "inch"),
  39586. default: true
  39587. },
  39588. ]
  39589. ))
  39590. characterMakers.push(() => makeCharacter(
  39591. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39592. {
  39593. side: {
  39594. height: math.unit(35, "feet"),
  39595. name: "Side",
  39596. image: {
  39597. source: "./media/characters/sayko/side.svg",
  39598. extra: 1697/1021,
  39599. bottom: 82/1779
  39600. }
  39601. },
  39602. head: {
  39603. height: math.unit(16, "feet"),
  39604. name: "Head",
  39605. image: {
  39606. source: "./media/characters/sayko/head.svg"
  39607. }
  39608. },
  39609. forepaw: {
  39610. height: math.unit(7.85, "feet"),
  39611. name: "Forepaw",
  39612. image: {
  39613. source: "./media/characters/sayko/forepaw.svg"
  39614. }
  39615. },
  39616. hindpaw: {
  39617. height: math.unit(8.8, "feet"),
  39618. name: "Hindpaw",
  39619. image: {
  39620. source: "./media/characters/sayko/hindpaw.svg"
  39621. }
  39622. },
  39623. },
  39624. [
  39625. {
  39626. name: "Normal",
  39627. height: math.unit(35, "feet"),
  39628. default: true
  39629. },
  39630. {
  39631. name: "Colossus",
  39632. height: math.unit(100, "meters")
  39633. },
  39634. {
  39635. name: "\"Small\" Deity",
  39636. height: math.unit(1, "km")
  39637. },
  39638. {
  39639. name: "\"Large\" Deity",
  39640. height: math.unit(15, "km")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(6, "feet"),
  39649. weight: math.unit(250, "lb"),
  39650. name: "Front",
  39651. image: {
  39652. source: "./media/characters/mukiro/front.svg",
  39653. extra: 1368/1310,
  39654. bottom: 34/1402
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(6, "feet"),
  39662. default: true
  39663. },
  39664. ]
  39665. ))
  39666. characterMakers.push(() => makeCharacter(
  39667. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39668. {
  39669. front: {
  39670. height: math.unit(12 + 4/12, "feet"),
  39671. name: "Front",
  39672. image: {
  39673. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39674. extra: 1346/1311,
  39675. bottom: 65/1411
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Base",
  39682. height: math.unit(12 + 4/12, "feet"),
  39683. default: true
  39684. },
  39685. {
  39686. name: "Macro",
  39687. height: math.unit(150, "feet")
  39688. },
  39689. {
  39690. name: "Mega",
  39691. height: math.unit(2, "miles")
  39692. },
  39693. {
  39694. name: "Demi God",
  39695. height: math.unit(4, "AU")
  39696. },
  39697. {
  39698. name: "God Size",
  39699. height: math.unit(1, "universe")
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39705. {
  39706. front: {
  39707. height: math.unit(3 + 3/12, "feet"),
  39708. weight: math.unit(88, "lb"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/trey/front.svg",
  39712. extra: 1815/1509,
  39713. bottom: 60/1875
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(3 + 3/12, "feet"),
  39721. default: true
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39727. {
  39728. front: {
  39729. height: math.unit(4, "meters"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/adelonda/front.svg",
  39733. extra: 1077/982,
  39734. bottom: 39/1116
  39735. }
  39736. },
  39737. back: {
  39738. height: math.unit(4, "meters"),
  39739. name: "Back",
  39740. image: {
  39741. source: "./media/characters/adelonda/back.svg",
  39742. extra: 1105/1003,
  39743. bottom: 25/1130
  39744. }
  39745. },
  39746. feral: {
  39747. height: math.unit(40/1.5, "meters"),
  39748. name: "Feral",
  39749. image: {
  39750. source: "./media/characters/adelonda/feral.svg",
  39751. extra: 597/271,
  39752. bottom: 387/984
  39753. }
  39754. },
  39755. },
  39756. [
  39757. {
  39758. name: "Normal",
  39759. height: math.unit(4, "meters"),
  39760. default: true
  39761. },
  39762. ]
  39763. ))
  39764. characterMakers.push(() => makeCharacter(
  39765. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39766. {
  39767. front: {
  39768. height: math.unit(8 + 4/12, "feet"),
  39769. weight: math.unit(670, "lb"),
  39770. name: "Front",
  39771. image: {
  39772. source: "./media/characters/acadiel/front.svg",
  39773. extra: 1901/1595,
  39774. bottom: 142/2043
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(8 + 4/12, "feet"),
  39782. default: true
  39783. },
  39784. {
  39785. name: "Macro",
  39786. height: math.unit(200, "feet")
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(6 + 2/12, "feet"),
  39795. weight: math.unit(185, "lb"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/kayne-ein/front.svg",
  39799. extra: 1780/1560,
  39800. bottom: 81/1861
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(6 + 2/12, "feet"),
  39808. default: true
  39809. },
  39810. {
  39811. name: "Transformation Stage",
  39812. height: math.unit(15, "feet")
  39813. },
  39814. {
  39815. name: "Macro",
  39816. height: math.unit(150, "feet")
  39817. },
  39818. {
  39819. name: "Earth's Shadow",
  39820. height: math.unit(6200, "miles")
  39821. },
  39822. {
  39823. name: "Universal Demon",
  39824. height: math.unit(28e9, "parsecs")
  39825. },
  39826. {
  39827. name: "Multiverse God",
  39828. height: math.unit(3, "multiverses")
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39834. {
  39835. front: {
  39836. height: math.unit(5 + 5/12, "feet"),
  39837. name: "Front",
  39838. image: {
  39839. source: "./media/characters/fawn/front.svg",
  39840. extra: 1873/1731,
  39841. bottom: 95/1968
  39842. }
  39843. },
  39844. back: {
  39845. height: math.unit(5 + 5/12, "feet"),
  39846. name: "Back",
  39847. image: {
  39848. source: "./media/characters/fawn/back.svg",
  39849. extra: 1813/1700,
  39850. bottom: 14/1827
  39851. }
  39852. },
  39853. hoof: {
  39854. height: math.unit(1.45, "feet"),
  39855. name: "Hoof",
  39856. image: {
  39857. source: "./media/characters/fawn/hoof.svg"
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(5 + 5/12, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(2 + 5/12, "feet"),
  39874. name: "Front",
  39875. image: {
  39876. source: "./media/characters/orion/front.svg",
  39877. extra: 1366/1304,
  39878. bottom: 43/1409
  39879. }
  39880. },
  39881. paw: {
  39882. height: math.unit(0.52, "feet"),
  39883. name: "Paw",
  39884. image: {
  39885. source: "./media/characters/orion/paw.svg"
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(2 + 5/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(5 + 10/12, "feet"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/vera/front.svg",
  39905. extra: 1680/1575,
  39906. bottom: 49/1729
  39907. }
  39908. },
  39909. back: {
  39910. height: math.unit(5 + 10/12, "feet"),
  39911. name: "Back",
  39912. image: {
  39913. source: "./media/characters/vera/back.svg",
  39914. extra: 1700/1588,
  39915. bottom: 18/1718
  39916. }
  39917. },
  39918. arcanine: {
  39919. height: math.unit(6 + 8/12, "feet"),
  39920. name: "Arcanine",
  39921. image: {
  39922. source: "./media/characters/vera/arcanine.svg",
  39923. extra: 1590/1511,
  39924. bottom: 71/1661
  39925. }
  39926. },
  39927. maw: {
  39928. height: math.unit(0.82, "feet"),
  39929. name: "Maw",
  39930. image: {
  39931. source: "./media/characters/vera/maw.svg"
  39932. }
  39933. },
  39934. mawArcanine: {
  39935. height: math.unit(0.97, "feet"),
  39936. name: "Maw (Arcanine)",
  39937. image: {
  39938. source: "./media/characters/vera/maw-arcanine.svg"
  39939. }
  39940. },
  39941. paw: {
  39942. height: math.unit(0.75, "feet"),
  39943. name: "Paw",
  39944. image: {
  39945. source: "./media/characters/vera/paw.svg"
  39946. }
  39947. },
  39948. pawprint: {
  39949. height: math.unit(0.52, "feet"),
  39950. name: "Pawprint",
  39951. image: {
  39952. source: "./media/characters/vera/pawprint.svg"
  39953. }
  39954. },
  39955. },
  39956. [
  39957. {
  39958. name: "Normal",
  39959. height: math.unit(5 + 10/12, "feet"),
  39960. default: true
  39961. },
  39962. {
  39963. name: "Macro",
  39964. height: math.unit(75, "feet")
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(4, "feet"),
  39973. weight: math.unit(40, "lb"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/orvan-rabbit/front.svg",
  39977. extra: 1896/1642,
  39978. bottom: 29/1925
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(4, "feet"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(6, "feet"),
  39995. weight: math.unit(168, "lb"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/lisa/front.svg",
  39999. extra: 2065/1867,
  40000. bottom: 46/2111
  40001. }
  40002. },
  40003. back: {
  40004. height: math.unit(6, "feet"),
  40005. weight: math.unit(168, "lb"),
  40006. name: "Back",
  40007. image: {
  40008. source: "./media/characters/lisa/back.svg",
  40009. extra: 1982/1838,
  40010. bottom: 29/2011
  40011. }
  40012. },
  40013. maw: {
  40014. height: math.unit(0.81, "feet"),
  40015. name: "Maw",
  40016. image: {
  40017. source: "./media/characters/lisa/maw.svg"
  40018. }
  40019. },
  40020. paw: {
  40021. height: math.unit(0.9, "feet"),
  40022. name: "Paw",
  40023. image: {
  40024. source: "./media/characters/lisa/paw.svg"
  40025. }
  40026. },
  40027. caribousune: {
  40028. height: math.unit(7 + 2/12, "feet"),
  40029. weight: math.unit(268, "lb"),
  40030. name: "Caribousune",
  40031. image: {
  40032. source: "./media/characters/lisa/caribousune.svg",
  40033. extra: 1843/1633,
  40034. bottom: 29/1872
  40035. }
  40036. },
  40037. frontCaribousune: {
  40038. height: math.unit(7 + 2/12, "feet"),
  40039. weight: math.unit(268, "lb"),
  40040. name: "Front (Caribousune)",
  40041. image: {
  40042. source: "./media/characters/lisa/front-caribousune.svg",
  40043. extra: 1818/1638,
  40044. bottom: 52/1870
  40045. }
  40046. },
  40047. sideCaribousune: {
  40048. height: math.unit(7 + 2/12, "feet"),
  40049. weight: math.unit(268, "lb"),
  40050. name: "Side (Caribousune)",
  40051. image: {
  40052. source: "./media/characters/lisa/side-caribousune.svg",
  40053. extra: 1851/1635,
  40054. bottom: 16/1867
  40055. }
  40056. },
  40057. backCaribousune: {
  40058. height: math.unit(7 + 2/12, "feet"),
  40059. weight: math.unit(268, "lb"),
  40060. name: "Back (Caribousune)",
  40061. image: {
  40062. source: "./media/characters/lisa/back-caribousune.svg",
  40063. extra: 1801/1604,
  40064. bottom: 44/1845
  40065. }
  40066. },
  40067. caribou: {
  40068. height: math.unit(7 + 2/12, "feet"),
  40069. weight: math.unit(268, "lb"),
  40070. name: "Caribou",
  40071. image: {
  40072. source: "./media/characters/lisa/caribou.svg",
  40073. extra: 1843/1633,
  40074. bottom: 29/1872
  40075. }
  40076. },
  40077. frontCaribou: {
  40078. height: math.unit(7 + 2/12, "feet"),
  40079. weight: math.unit(268, "lb"),
  40080. name: "Front (Caribou)",
  40081. image: {
  40082. source: "./media/characters/lisa/front-caribou.svg",
  40083. extra: 1818/1638,
  40084. bottom: 52/1870
  40085. }
  40086. },
  40087. sideCaribou: {
  40088. height: math.unit(7 + 2/12, "feet"),
  40089. weight: math.unit(268, "lb"),
  40090. name: "Side (Caribou)",
  40091. image: {
  40092. source: "./media/characters/lisa/side-caribou.svg",
  40093. extra: 1851/1635,
  40094. bottom: 16/1867
  40095. }
  40096. },
  40097. backCaribou: {
  40098. height: math.unit(7 + 2/12, "feet"),
  40099. weight: math.unit(268, "lb"),
  40100. name: "Back (Caribou)",
  40101. image: {
  40102. source: "./media/characters/lisa/back-caribou.svg",
  40103. extra: 1801/1604,
  40104. bottom: 44/1845
  40105. }
  40106. },
  40107. mawCaribou: {
  40108. height: math.unit(1.45, "feet"),
  40109. name: "Maw (Caribou)",
  40110. image: {
  40111. source: "./media/characters/lisa/maw-caribou.svg"
  40112. }
  40113. },
  40114. mawCaribousune: {
  40115. height: math.unit(1.45, "feet"),
  40116. name: "Maw (Caribousune)",
  40117. image: {
  40118. source: "./media/characters/lisa/maw-caribousune.svg"
  40119. }
  40120. },
  40121. pawCaribousune: {
  40122. height: math.unit(1.61, "feet"),
  40123. name: "Paw (Caribou)",
  40124. image: {
  40125. source: "./media/characters/lisa/paw-caribousune.svg"
  40126. }
  40127. },
  40128. },
  40129. [
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(6, "feet")
  40133. },
  40134. {
  40135. name: "God Size",
  40136. height: math.unit(72, "feet"),
  40137. default: true
  40138. },
  40139. {
  40140. name: "Towering",
  40141. height: math.unit(288, "feet")
  40142. },
  40143. {
  40144. name: "City Size",
  40145. height: math.unit(48384, "feet")
  40146. },
  40147. {
  40148. name: "Continental",
  40149. height: math.unit(4200, "miles")
  40150. },
  40151. {
  40152. name: "Planet Eater",
  40153. height: math.unit(42, "earths")
  40154. },
  40155. {
  40156. name: "Star Swallower",
  40157. height: math.unit(42, "solarradii")
  40158. },
  40159. {
  40160. name: "System Swallower",
  40161. height: math.unit(84000, "AU")
  40162. },
  40163. {
  40164. name: "Galaxy Gobbler",
  40165. height: math.unit(42, "galaxies")
  40166. },
  40167. {
  40168. name: "Universe Devourer",
  40169. height: math.unit(42, "universes")
  40170. },
  40171. {
  40172. name: "Multiverse Muncher",
  40173. height: math.unit(42, "multiverses")
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40179. {
  40180. front: {
  40181. height: math.unit(36, "feet"),
  40182. name: "Front",
  40183. image: {
  40184. source: "./media/characters/shadow-rat/front.svg",
  40185. extra: 1845/1758,
  40186. bottom: 83/1928
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(36, "feet"),
  40194. default: true
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40200. {
  40201. side: {
  40202. height: math.unit(8, "feet"),
  40203. weight: math.unit(2630, "lb"),
  40204. name: "Side",
  40205. image: {
  40206. source: "./media/characters/torallia/side.svg",
  40207. extra: 2164/2021,
  40208. bottom: 371/2535
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Mortal Interaction",
  40215. height: math.unit(8, "feet")
  40216. },
  40217. {
  40218. name: "Natural",
  40219. height: math.unit(24, "feet"),
  40220. default: true
  40221. },
  40222. {
  40223. name: "Giant",
  40224. height: math.unit(80, "feet")
  40225. },
  40226. {
  40227. name: "Kaiju",
  40228. height: math.unit(240, "feet")
  40229. },
  40230. {
  40231. name: "Macro",
  40232. height: math.unit(800, "feet")
  40233. },
  40234. {
  40235. name: "Macro+",
  40236. height: math.unit(2400, "feet")
  40237. },
  40238. {
  40239. name: "Macro++",
  40240. height: math.unit(8000, "feet")
  40241. },
  40242. {
  40243. name: "City-Crushing",
  40244. height: math.unit(24000, "feet")
  40245. },
  40246. {
  40247. name: "Mountain-Mashing",
  40248. height: math.unit(80000, "feet")
  40249. },
  40250. {
  40251. name: "District Demolisher",
  40252. height: math.unit(240000, "feet")
  40253. },
  40254. {
  40255. name: "Tri-County Terror",
  40256. height: math.unit(800000, "feet")
  40257. },
  40258. {
  40259. name: "State Smasher",
  40260. height: math.unit(2.4e6, "feet")
  40261. },
  40262. {
  40263. name: "Nation Nemesis",
  40264. height: math.unit(8e6, "feet")
  40265. },
  40266. {
  40267. name: "Continent Cracker",
  40268. height: math.unit(2.4e7, "feet")
  40269. },
  40270. {
  40271. name: "Planet-Pillaging",
  40272. height: math.unit(8e7, "feet")
  40273. },
  40274. {
  40275. name: "Earth-Eclipsing",
  40276. height: math.unit(2.4e8, "feet")
  40277. },
  40278. {
  40279. name: "Jovian-Jostling",
  40280. height: math.unit(8e8, "feet")
  40281. },
  40282. {
  40283. name: "Gas Giant Gulper",
  40284. height: math.unit(2.4e9, "feet")
  40285. },
  40286. {
  40287. name: "Astral Annihilator",
  40288. height: math.unit(8e9, "feet")
  40289. },
  40290. {
  40291. name: "Celestial Conqueror",
  40292. height: math.unit(2.4e10, "feet")
  40293. },
  40294. {
  40295. name: "Sol-Swallowing",
  40296. height: math.unit(8e10, "feet")
  40297. },
  40298. {
  40299. name: "Hunter of the Heavens",
  40300. height: math.unit(2.4e13, "feet")
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(6 + 8/12, "feet"),
  40309. weight: math.unit(250, "kilograms"),
  40310. volume: math.unit(28, "liters"),
  40311. name: "Front",
  40312. image: {
  40313. source: "./media/characters/rebecca-pawlson/front.svg",
  40314. extra: 1737/1596,
  40315. bottom: 107/1844
  40316. }
  40317. },
  40318. back: {
  40319. height: math.unit(6 + 8/12, "feet"),
  40320. weight: math.unit(250, "kilograms"),
  40321. volume: math.unit(28, "liters"),
  40322. name: "Back",
  40323. image: {
  40324. source: "./media/characters/rebecca-pawlson/back.svg",
  40325. extra: 1702/1523,
  40326. bottom: 86/1788
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(6 + 8/12, "feet")
  40334. },
  40335. {
  40336. name: "Mini Macro",
  40337. height: math.unit(10, "feet"),
  40338. default: true
  40339. },
  40340. {
  40341. name: "Macro",
  40342. height: math.unit(100, "feet")
  40343. },
  40344. {
  40345. name: "Mega Macro",
  40346. height: math.unit(2500, "feet")
  40347. },
  40348. {
  40349. name: "Giga Macro",
  40350. height: math.unit(50, "miles")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(7 + 6/12, "feet"),
  40359. weight: math.unit(600, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/moxie-nova/front.svg",
  40363. extra: 1734/1652,
  40364. bottom: 41/1775
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(7 + 6/12, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40378. {
  40379. goat: {
  40380. height: math.unit(4, "feet"),
  40381. weight: math.unit(180, "lb"),
  40382. name: "Goat",
  40383. image: {
  40384. source: "./media/characters/tiffany/goat.svg",
  40385. extra: 1845/1595,
  40386. bottom: 106/1951
  40387. }
  40388. },
  40389. front: {
  40390. height: math.unit(5, "feet"),
  40391. weight: math.unit(150, "lb"),
  40392. name: "Foxcoon",
  40393. image: {
  40394. source: "./media/characters/tiffany/foxcoon.svg",
  40395. extra: 1941/1845,
  40396. bottom: 58/1999
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(5, "feet"),
  40404. default: true
  40405. },
  40406. ]
  40407. ))
  40408. characterMakers.push(() => makeCharacter(
  40409. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40410. {
  40411. front: {
  40412. height: math.unit(8, "feet"),
  40413. weight: math.unit(300, "lb"),
  40414. name: "Front",
  40415. image: {
  40416. source: "./media/characters/raxinath/front.svg",
  40417. extra: 1407/1309,
  40418. bottom: 39/1446
  40419. }
  40420. },
  40421. back: {
  40422. height: math.unit(8, "feet"),
  40423. weight: math.unit(300, "lb"),
  40424. name: "Back",
  40425. image: {
  40426. source: "./media/characters/raxinath/back.svg",
  40427. extra: 1405/1315,
  40428. bottom: 9/1414
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Speck",
  40435. height: math.unit(0.5, "nm")
  40436. },
  40437. {
  40438. name: "Micro",
  40439. height: math.unit(3, "inches")
  40440. },
  40441. {
  40442. name: "Kobold",
  40443. height: math.unit(3, "feet")
  40444. },
  40445. {
  40446. name: "Normal",
  40447. height: math.unit(8, "feet"),
  40448. default: true
  40449. },
  40450. {
  40451. name: "Giant",
  40452. height: math.unit(50, "feet")
  40453. },
  40454. {
  40455. name: "Macro",
  40456. height: math.unit(1000, "feet")
  40457. },
  40458. {
  40459. name: "Megamacro",
  40460. height: math.unit(1, "mile")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(10, "feet"),
  40469. weight: math.unit(1442, "lb"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/mal-dragon/front.svg",
  40473. extra: 1515/1444,
  40474. bottom: 113/1628
  40475. }
  40476. },
  40477. back: {
  40478. height: math.unit(10, "feet"),
  40479. weight: math.unit(1442, "lb"),
  40480. name: "Back",
  40481. image: {
  40482. source: "./media/characters/mal-dragon/back.svg",
  40483. extra: 1527/1434,
  40484. bottom: 25/1552
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Mortal Interaction",
  40491. height: math.unit(10, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Large",
  40496. height: math.unit(30, "feet")
  40497. },
  40498. {
  40499. name: "Kaiju",
  40500. height: math.unit(300, "feet")
  40501. },
  40502. {
  40503. name: "Megamacro",
  40504. height: math.unit(10000, "feet")
  40505. },
  40506. {
  40507. name: "Continent Cracker",
  40508. height: math.unit(30000000, "feet")
  40509. },
  40510. {
  40511. name: "Sol-Swallowing",
  40512. height: math.unit(1e11, "feet")
  40513. },
  40514. {
  40515. name: "Light Universal",
  40516. height: math.unit(5, "universes")
  40517. },
  40518. {
  40519. name: "Universe Atoms",
  40520. height: math.unit(1.829e9, "universes")
  40521. },
  40522. {
  40523. name: "Light Multiversal",
  40524. height: math.unit(5, "multiverses")
  40525. },
  40526. {
  40527. name: "Multiverse Atoms",
  40528. height: math.unit(1.829e9, "multiverses")
  40529. },
  40530. {
  40531. name: "Fabric of Time",
  40532. height: math.unit(1e262, "multiverses")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(9, "feet"),
  40541. weight: math.unit(1050, "lb"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/tabitha/front.svg",
  40545. extra: 2083/1994,
  40546. bottom: 68/2151
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Baseline",
  40553. height: math.unit(9, "feet"),
  40554. default: true
  40555. },
  40556. {
  40557. name: "Giant",
  40558. height: math.unit(90, "feet")
  40559. },
  40560. {
  40561. name: "Macro",
  40562. height: math.unit(900, "feet")
  40563. },
  40564. {
  40565. name: "Megamacro",
  40566. height: math.unit(9000, "feet")
  40567. },
  40568. {
  40569. name: "City-Crushing",
  40570. height: math.unit(27000, "feet")
  40571. },
  40572. {
  40573. name: "Mountain-Mashing",
  40574. height: math.unit(90000, "feet")
  40575. },
  40576. {
  40577. name: "Nation Nemesis",
  40578. height: math.unit(9e6, "feet")
  40579. },
  40580. {
  40581. name: "Continent Cracker",
  40582. height: math.unit(27e6, "feet")
  40583. },
  40584. {
  40585. name: "Earth-Eclipsing",
  40586. height: math.unit(2.7e8, "feet")
  40587. },
  40588. {
  40589. name: "Gas Giant Gulper",
  40590. height: math.unit(2.7e9, "feet")
  40591. },
  40592. {
  40593. name: "Sol-Swallowing",
  40594. height: math.unit(9e10, "feet")
  40595. },
  40596. {
  40597. name: "Galaxy Gulper",
  40598. height: math.unit(9, "galaxies")
  40599. },
  40600. {
  40601. name: "Cosmos Churner",
  40602. height: math.unit(9, "universes")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(160, "cm"),
  40611. weight: math.unit(55, "kg"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/tow/front.svg",
  40615. extra: 1751/1722,
  40616. bottom: 74/1825
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Norm",
  40623. height: math.unit(160, "cm")
  40624. },
  40625. {
  40626. name: "Casual",
  40627. height: math.unit(3200, "m"),
  40628. default: true
  40629. },
  40630. {
  40631. name: "Show-Off",
  40632. height: math.unit(160, "km")
  40633. },
  40634. ]
  40635. ))
  40636. characterMakers.push(() => makeCharacter(
  40637. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40638. {
  40639. front: {
  40640. height: math.unit(7 + 11/12, "feet"),
  40641. weight: math.unit(342.8, "lb"),
  40642. name: "Front",
  40643. image: {
  40644. source: "./media/characters/vivian-orca-dragon/front.svg",
  40645. extra: 1890/1865,
  40646. bottom: 28/1918
  40647. }
  40648. },
  40649. },
  40650. [
  40651. {
  40652. name: "Micro",
  40653. height: math.unit(5, "inches")
  40654. },
  40655. {
  40656. name: "Normal",
  40657. height: math.unit(7 + 11/12, "feet"),
  40658. default: true
  40659. },
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(395 + 7/12, "feet")
  40663. },
  40664. ]
  40665. ))
  40666. characterMakers.push(() => makeCharacter(
  40667. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40668. {
  40669. side: {
  40670. height: math.unit(10, "feet"),
  40671. weight: math.unit(1442, "lb"),
  40672. name: "Side",
  40673. image: {
  40674. source: "./media/characters/lotherakon/side.svg",
  40675. extra: 1604/1497,
  40676. bottom: 89/1693
  40677. }
  40678. },
  40679. },
  40680. [
  40681. {
  40682. name: "Mortal Interaction",
  40683. height: math.unit(10, "feet")
  40684. },
  40685. {
  40686. name: "Large",
  40687. height: math.unit(30, "feet"),
  40688. default: true
  40689. },
  40690. {
  40691. name: "Giant",
  40692. height: math.unit(100, "feet")
  40693. },
  40694. {
  40695. name: "Kaiju",
  40696. height: math.unit(300, "feet")
  40697. },
  40698. {
  40699. name: "Macro",
  40700. height: math.unit(1000, "feet")
  40701. },
  40702. {
  40703. name: "Macro+",
  40704. height: math.unit(3000, "feet")
  40705. },
  40706. {
  40707. name: "Megamacro",
  40708. height: math.unit(10000, "feet")
  40709. },
  40710. {
  40711. name: "City-Crushing",
  40712. height: math.unit(30000, "feet")
  40713. },
  40714. {
  40715. name: "Continent Cracker",
  40716. height: math.unit(30e6, "feet")
  40717. },
  40718. {
  40719. name: "Earth Eclipsing",
  40720. height: math.unit(3e8, "feet")
  40721. },
  40722. {
  40723. name: "Gas Giant Gulper",
  40724. height: math.unit(3e9, "feet")
  40725. },
  40726. {
  40727. name: "Sol-Swallowing",
  40728. height: math.unit(1e11, "feet")
  40729. },
  40730. {
  40731. name: "System Swallower",
  40732. height: math.unit(3e14, "feet")
  40733. },
  40734. {
  40735. name: "Galaxy Gulper",
  40736. height: math.unit(10, "galaxies")
  40737. },
  40738. {
  40739. name: "Light Universal",
  40740. height: math.unit(5, "universes")
  40741. },
  40742. {
  40743. name: "Universe Palm",
  40744. height: math.unit(20, "universes")
  40745. },
  40746. {
  40747. name: "Light Multiversal",
  40748. height: math.unit(5, "multiverses")
  40749. },
  40750. {
  40751. name: "Multiverse Palm",
  40752. height: math.unit(20, "multiverses")
  40753. },
  40754. {
  40755. name: "Inferno Incarnate",
  40756. height: math.unit(1e7, "multiverses")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(8, "feet"),
  40765. weight: math.unit(1200, "lb"),
  40766. name: "Front",
  40767. image: {
  40768. source: "./media/characters/malithee/front.svg",
  40769. extra: 1675/1640,
  40770. bottom: 162/1837
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Mortal Interaction",
  40777. height: math.unit(8, "feet"),
  40778. default: true
  40779. },
  40780. {
  40781. name: "Large",
  40782. height: math.unit(24, "feet")
  40783. },
  40784. {
  40785. name: "Kaiju",
  40786. height: math.unit(240, "feet")
  40787. },
  40788. {
  40789. name: "Megamacro",
  40790. height: math.unit(8000, "feet")
  40791. },
  40792. {
  40793. name: "Continent Cracker",
  40794. height: math.unit(24e6, "feet")
  40795. },
  40796. {
  40797. name: "Earth-Eclipsing",
  40798. height: math.unit(2.4e8, "feet")
  40799. },
  40800. {
  40801. name: "Sol-Swallowing",
  40802. height: math.unit(8e10, "feet")
  40803. },
  40804. {
  40805. name: "Galaxy Gulper",
  40806. height: math.unit(8, "galaxies")
  40807. },
  40808. {
  40809. name: "Light Universal",
  40810. height: math.unit(4, "universes")
  40811. },
  40812. {
  40813. name: "Universe Atoms",
  40814. height: math.unit(1.829e9, "universes")
  40815. },
  40816. {
  40817. name: "Light Multiversal",
  40818. height: math.unit(4, "multiverses")
  40819. },
  40820. {
  40821. name: "Multiverse Atoms",
  40822. height: math.unit(1.829e9, "multiverses")
  40823. },
  40824. {
  40825. name: "Nigh-Omnipresence",
  40826. height: math.unit(8e261, "multiverses")
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(10, "feet"),
  40835. weight: math.unit(1500, "lb"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/miles-thestia/front.svg",
  40839. extra: 1812/1727,
  40840. bottom: 86/1898
  40841. }
  40842. },
  40843. back: {
  40844. height: math.unit(10, "feet"),
  40845. weight: math.unit(1500, "lb"),
  40846. name: "Back",
  40847. image: {
  40848. source: "./media/characters/miles-thestia/back.svg",
  40849. extra: 1799/1690,
  40850. bottom: 47/1846
  40851. }
  40852. },
  40853. frontNsfw: {
  40854. height: math.unit(10, "feet"),
  40855. weight: math.unit(1500, "lb"),
  40856. name: "Front (NSFW)",
  40857. image: {
  40858. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40859. extra: 1812/1727,
  40860. bottom: 86/1898
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Mini-Macro",
  40867. height: math.unit(10, "feet"),
  40868. default: true
  40869. },
  40870. ]
  40871. ))
  40872. characterMakers.push(() => makeCharacter(
  40873. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40874. {
  40875. front: {
  40876. height: math.unit(25, "feet"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/titan-s-wulf/front.svg",
  40880. extra: 1560/1484,
  40881. bottom: 76/1636
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Smallest",
  40888. height: math.unit(25, "feet"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(200, "feet")
  40894. },
  40895. {
  40896. name: "Macro",
  40897. height: math.unit(200000, "feet")
  40898. },
  40899. {
  40900. name: "Multiversal Original",
  40901. height: math.unit(10000, "multiverses")
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(8, "feet"),
  40910. weight: math.unit(553, "lb"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/tawendeh/front.svg",
  40914. extra: 2365/2268,
  40915. bottom: 83/2448
  40916. }
  40917. },
  40918. frontClothed: {
  40919. height: math.unit(8, "feet"),
  40920. weight: math.unit(553, "lb"),
  40921. name: "Front (Clothed)",
  40922. image: {
  40923. source: "./media/characters/tawendeh/front-clothed.svg",
  40924. extra: 2365/2268,
  40925. bottom: 83/2448
  40926. }
  40927. },
  40928. back: {
  40929. height: math.unit(8, "feet"),
  40930. weight: math.unit(553, "lb"),
  40931. name: "Back",
  40932. image: {
  40933. source: "./media/characters/tawendeh/back.svg",
  40934. extra: 2397/2294,
  40935. bottom: 42/2439
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Mortal Interaction",
  40942. height: math.unit(8, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Giant",
  40947. height: math.unit(80, "feet")
  40948. },
  40949. {
  40950. name: "Macro",
  40951. height: math.unit(800, "feet")
  40952. },
  40953. {
  40954. name: "Megamacro",
  40955. height: math.unit(8000, "feet")
  40956. },
  40957. {
  40958. name: "City-Crushing",
  40959. height: math.unit(24000, "feet")
  40960. },
  40961. {
  40962. name: "Mountain-Mashing",
  40963. height: math.unit(80000, "feet")
  40964. },
  40965. {
  40966. name: "Nation Nemesis",
  40967. height: math.unit(8e6, "feet")
  40968. },
  40969. {
  40970. name: "Continent Cracker",
  40971. height: math.unit(24e6, "feet")
  40972. },
  40973. {
  40974. name: "Earth-Eclipsing",
  40975. height: math.unit(2.4e8, "feet")
  40976. },
  40977. {
  40978. name: "Gas Giant Gulper",
  40979. height: math.unit(2.4e9, "feet")
  40980. },
  40981. {
  40982. name: "Sol-Swallowing",
  40983. height: math.unit(8e10, "feet")
  40984. },
  40985. {
  40986. name: "Galaxy Gulper",
  40987. height: math.unit(8, "galaxies")
  40988. },
  40989. {
  40990. name: "Cosmos Churner",
  40991. height: math.unit(8, "universes")
  40992. },
  40993. {
  40994. name: "Omnipotent Otter",
  40995. height: math.unit(80, "universes")
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(2.6, "meters"),
  41004. weight: math.unit(900, "kg"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/neesha/front.svg",
  41008. extra: 1803/1653,
  41009. bottom: 128/1931
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(2.6, "meters"),
  41017. default: true
  41018. },
  41019. {
  41020. name: "Macro",
  41021. height: math.unit(50, "meters")
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(5, "feet"),
  41030. weight: math.unit(185, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/kyera/front.svg",
  41034. extra: 1875/1790,
  41035. bottom: 96/1971
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(5, "feet"),
  41043. default: true
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41049. {
  41050. front: {
  41051. height: math.unit(7 + 6/12, "feet"),
  41052. weight: math.unit(540, "lb"),
  41053. name: "Front",
  41054. image: {
  41055. source: "./media/characters/yuko/front.svg",
  41056. extra: 1282/1222,
  41057. bottom: 101/1383
  41058. }
  41059. },
  41060. frontClothed: {
  41061. height: math.unit(7 + 6/12, "feet"),
  41062. weight: math.unit(540, "lb"),
  41063. name: "Front (Clothed)",
  41064. image: {
  41065. source: "./media/characters/yuko/front-clothed.svg",
  41066. extra: 1282/1222,
  41067. bottom: 101/1383
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(7 + 6/12, "feet"),
  41075. default: true
  41076. },
  41077. {
  41078. name: "Macro",
  41079. height: math.unit(26 + 9/12, "feet")
  41080. },
  41081. {
  41082. name: "Megamacro",
  41083. height: math.unit(300, "feet")
  41084. },
  41085. {
  41086. name: "Gigamacro",
  41087. height: math.unit(5000, "feet")
  41088. },
  41089. {
  41090. name: "Planetary",
  41091. height: math.unit(10000, "miles")
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(8 + 2/12, "feet"),
  41100. weight: math.unit(600, "lb"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/deam-nitrel/front.svg",
  41104. extra: 1308/1234,
  41105. bottom: 125/1433
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Normal",
  41112. height: math.unit(8 + 2/12, "feet"),
  41113. default: true
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(6.1, "feet"),
  41122. weight: math.unit(180, "lb"),
  41123. name: "Front",
  41124. image: {
  41125. source: "./media/characters/skyress/front.svg",
  41126. extra: 1045/915,
  41127. bottom: 28/1073
  41128. }
  41129. },
  41130. maw: {
  41131. height: math.unit(1, "feet"),
  41132. name: "Maw",
  41133. image: {
  41134. source: "./media/characters/skyress/maw.svg"
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(6.1, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Macro",
  41146. height: math.unit(200, "feet")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(4 + 2/12, "feet"),
  41155. weight: math.unit(40, "kg"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/amethyst-jones/front.svg",
  41159. extra: 1220/1150,
  41160. bottom: 101/1321
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(4 + 2/12, "feet"),
  41168. default: true
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41174. {
  41175. front: {
  41176. height: math.unit(1.7, "m"),
  41177. weight: math.unit(135, "lb"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/jade/front.svg",
  41181. extra: 1818/1767,
  41182. bottom: 32/1850
  41183. }
  41184. },
  41185. back: {
  41186. height: math.unit(1.7, "m"),
  41187. weight: math.unit(135, "lb"),
  41188. name: "Back",
  41189. image: {
  41190. source: "./media/characters/jade/back.svg",
  41191. extra: 1869/1809,
  41192. bottom: 35/1904
  41193. }
  41194. },
  41195. hand: {
  41196. height: math.unit(0.24, "m"),
  41197. name: "Hand",
  41198. image: {
  41199. source: "./media/characters/jade/hand.svg"
  41200. }
  41201. },
  41202. foot: {
  41203. height: math.unit(0.263, "m"),
  41204. name: "Foot",
  41205. image: {
  41206. source: "./media/characters/jade/foot.svg"
  41207. }
  41208. },
  41209. dick: {
  41210. height: math.unit(0.47, "m"),
  41211. name: "Dick",
  41212. image: {
  41213. source: "./media/characters/jade/dick.svg"
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Micro",
  41220. height: math.unit(22, "cm")
  41221. },
  41222. {
  41223. name: "Normal",
  41224. height: math.unit(1.7, "m"),
  41225. default: true
  41226. },
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(152, "m")
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(100, "miles"),
  41238. weight: math.unit(20000, "tons"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/cookie/front.svg",
  41242. extra: 1125/1070,
  41243. bottom: 30/1155
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Big",
  41250. height: math.unit(50, "feet")
  41251. },
  41252. {
  41253. name: "Macro",
  41254. height: math.unit(100, "miles"),
  41255. default: true
  41256. },
  41257. {
  41258. name: "Megamacro",
  41259. height: math.unit(90000, "miles")
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41265. {
  41266. front: {
  41267. height: math.unit(6, "feet"),
  41268. weight: math.unit(145, "lb"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/farzian/front.svg",
  41272. extra: 1902/1693,
  41273. bottom: 108/2010
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Macro",
  41280. height: math.unit(500, "feet"),
  41281. default: true
  41282. },
  41283. ]
  41284. ))
  41285. characterMakers.push(() => makeCharacter(
  41286. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41287. {
  41288. front: {
  41289. height: math.unit(3 + 6/12, "feet"),
  41290. weight: math.unit(50, "lb"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/kimberly-tilson/front.svg",
  41294. extra: 1400/1322,
  41295. bottom: 36/1436
  41296. }
  41297. },
  41298. back: {
  41299. height: math.unit(3 + 6/12, "feet"),
  41300. weight: math.unit(50, "lb"),
  41301. name: "Back",
  41302. image: {
  41303. source: "./media/characters/kimberly-tilson/back.svg",
  41304. extra: 1370/1307,
  41305. bottom: 20/1390
  41306. }
  41307. },
  41308. },
  41309. [
  41310. {
  41311. name: "Normal",
  41312. height: math.unit(3 + 6/12, "feet"),
  41313. default: true
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(1148, "feet"),
  41322. weight: math.unit(34057, "lb"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/harthos/front.svg",
  41326. extra: 1391/1339,
  41327. bottom: 13/1404
  41328. }
  41329. },
  41330. },
  41331. [
  41332. {
  41333. name: "Macro",
  41334. height: math.unit(1148, "feet"),
  41335. default: true
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(15, "feet"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/hypatia/front.svg",
  41347. extra: 1653/1591,
  41348. bottom: 79/1732
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Normal",
  41355. height: math.unit(15, "feet")
  41356. },
  41357. {
  41358. name: "Small",
  41359. height: math.unit(300, "feet")
  41360. },
  41361. {
  41362. name: "Macro",
  41363. height: math.unit(2500, "feet"),
  41364. default: true
  41365. },
  41366. {
  41367. name: "Mega Macro",
  41368. height: math.unit(1500, "miles")
  41369. },
  41370. {
  41371. name: "Giga Macro",
  41372. height: math.unit(1.5e6, "miles")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(6, "feet"),
  41381. weight: math.unit(200, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/wulver/front.svg",
  41385. extra: 1724/1632,
  41386. bottom: 130/1854
  41387. }
  41388. },
  41389. frontNsfw: {
  41390. height: math.unit(6, "feet"),
  41391. weight: math.unit(200, "lb"),
  41392. name: "Front (NSFW)",
  41393. image: {
  41394. source: "./media/characters/wulver/front-nsfw.svg",
  41395. extra: 1724/1632,
  41396. bottom: 130/1854
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Human-Sized",
  41403. height: math.unit(6, "feet")
  41404. },
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(4, "meters"),
  41408. default: true
  41409. },
  41410. {
  41411. name: "Large",
  41412. height: math.unit(6, "m")
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(7, "feet"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/maru/front.svg",
  41424. extra: 1595/1570,
  41425. bottom: 0/1595
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(7, "feet"),
  41433. default: true
  41434. },
  41435. {
  41436. name: "Macro",
  41437. height: math.unit(700, "feet")
  41438. },
  41439. {
  41440. name: "Mega Macro",
  41441. height: math.unit(25, "miles")
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(6, "feet"),
  41450. weight: math.unit(170, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/xenon/front.svg",
  41454. extra: 1376/1305,
  41455. bottom: 56/1432
  41456. }
  41457. },
  41458. back: {
  41459. height: math.unit(6, "feet"),
  41460. weight: math.unit(170, "lb"),
  41461. name: "Back",
  41462. image: {
  41463. source: "./media/characters/xenon/back.svg",
  41464. extra: 1328/1259,
  41465. bottom: 95/1423
  41466. }
  41467. },
  41468. maw: {
  41469. height: math.unit(0.52, "feet"),
  41470. name: "Maw",
  41471. image: {
  41472. source: "./media/characters/xenon/maw.svg"
  41473. }
  41474. },
  41475. handLeft: {
  41476. height: math.unit(0.82 * 169 / 153, "feet"),
  41477. name: "Hand (Left)",
  41478. image: {
  41479. source: "./media/characters/xenon/hand-left.svg"
  41480. }
  41481. },
  41482. handRight: {
  41483. height: math.unit(0.82, "feet"),
  41484. name: "Hand (Right)",
  41485. image: {
  41486. source: "./media/characters/xenon/hand-right.svg"
  41487. }
  41488. },
  41489. footLeft: {
  41490. height: math.unit(1.13, "feet"),
  41491. name: "Foot (Left)",
  41492. image: {
  41493. source: "./media/characters/xenon/foot-left.svg"
  41494. }
  41495. },
  41496. footRight: {
  41497. height: math.unit(1.13 * 194 / 196, "feet"),
  41498. name: "Foot (Right)",
  41499. image: {
  41500. source: "./media/characters/xenon/foot-right.svg"
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Micro",
  41507. height: math.unit(0.8, "inches")
  41508. },
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(6, "feet")
  41512. },
  41513. {
  41514. name: "Macro",
  41515. height: math.unit(50, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Macro+",
  41520. height: math.unit(250, "feet")
  41521. },
  41522. {
  41523. name: "Megamacro",
  41524. height: math.unit(1500, "feet")
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(7 + 5/12, "feet"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/zane/front.svg",
  41536. extra: 1260/1203,
  41537. bottom: 94/1354
  41538. }
  41539. },
  41540. back: {
  41541. height: math.unit(5.05, "feet"),
  41542. name: "Back",
  41543. image: {
  41544. source: "./media/characters/zane/back.svg",
  41545. extra: 893/829,
  41546. bottom: 30/923
  41547. }
  41548. },
  41549. werewolf: {
  41550. height: math.unit(11, "feet"),
  41551. name: "Werewolf",
  41552. image: {
  41553. source: "./media/characters/zane/werewolf.svg",
  41554. extra: 1383/1323,
  41555. bottom: 89/1472
  41556. }
  41557. },
  41558. foot: {
  41559. height: math.unit(1.46, "feet"),
  41560. name: "Foot",
  41561. image: {
  41562. source: "./media/characters/zane/foot.svg"
  41563. }
  41564. },
  41565. footFront: {
  41566. height: math.unit(0.784, "feet"),
  41567. name: "Foot (Front)",
  41568. image: {
  41569. source: "./media/characters/zane/foot-front.svg"
  41570. }
  41571. },
  41572. dick: {
  41573. height: math.unit(1.95, "feet"),
  41574. name: "Dick",
  41575. image: {
  41576. source: "./media/characters/zane/dick.svg"
  41577. }
  41578. },
  41579. dickWerewolf: {
  41580. height: math.unit(3.77, "feet"),
  41581. name: "Dick (Werewolf)",
  41582. image: {
  41583. source: "./media/characters/zane/dick.svg"
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(7 + 5/12, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(6 + 2/12, "feet"),
  41600. weight: math.unit(284, "lb"),
  41601. name: "Front",
  41602. image: {
  41603. source: "./media/characters/benni-desparque/front.svg",
  41604. extra: 1353/1126,
  41605. bottom: 69/1422
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Civilian",
  41612. height: math.unit(6 + 2/12, "feet")
  41613. },
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(98, "feet"),
  41617. default: true
  41618. },
  41619. {
  41620. name: "Kaiju Fighter",
  41621. height: math.unit(268, "feet")
  41622. },
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41627. {
  41628. front: {
  41629. height: math.unit(5, "feet"),
  41630. weight: math.unit(105, "lb"),
  41631. name: "Front",
  41632. image: {
  41633. source: "./media/characters/maxine/front.svg",
  41634. extra: 1386/1250,
  41635. bottom: 71/1457
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(5, "feet"),
  41643. default: true
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41649. {
  41650. front: {
  41651. height: math.unit(11 + 7/12, "feet"),
  41652. weight: math.unit(9576, "lb"),
  41653. name: "Front",
  41654. image: {
  41655. source: "./media/characters/scaly/front.svg",
  41656. extra: 888/867,
  41657. bottom: 36/924
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Normal",
  41664. height: math.unit(11 + 7/12, "feet"),
  41665. default: true
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41671. {
  41672. front: {
  41673. height: math.unit(6 + 3/12, "feet"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/saelria/front.svg",
  41677. extra: 1243/1138,
  41678. bottom: 46/1289
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Micro",
  41685. height: math.unit(6, "inches"),
  41686. },
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(6 + 3/12, "feet"),
  41690. default: true
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(25, "feet")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(80, "meters"),
  41703. weight: math.unit(7000, "tonnes"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/tef/front.svg",
  41707. extra: 2036/1991,
  41708. bottom: 54/2090
  41709. }
  41710. },
  41711. back: {
  41712. height: math.unit(80, "meters"),
  41713. weight: math.unit(7000, "tonnes"),
  41714. name: "Back",
  41715. image: {
  41716. source: "./media/characters/tef/back.svg",
  41717. extra: 2036/1991,
  41718. bottom: 54/2090
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Macro",
  41725. height: math.unit(80, "meters"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(13, "feet"),
  41735. weight: math.unit(6, "tons"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/rover/front.svg",
  41739. extra: 1233/1156,
  41740. bottom: 50/1283
  41741. }
  41742. },
  41743. back: {
  41744. height: math.unit(13, "feet"),
  41745. weight: math.unit(6, "tons"),
  41746. name: "Back",
  41747. image: {
  41748. source: "./media/characters/rover/back.svg",
  41749. extra: 1327/1258,
  41750. bottom: 39/1366
  41751. }
  41752. },
  41753. },
  41754. [
  41755. {
  41756. name: "Normal",
  41757. height: math.unit(13, "feet"),
  41758. default: true
  41759. },
  41760. {
  41761. name: "Macro",
  41762. height: math.unit(1300, "feet")
  41763. },
  41764. {
  41765. name: "Megamacro",
  41766. height: math.unit(1300, "miles")
  41767. },
  41768. {
  41769. name: "Gigamacro",
  41770. height: math.unit(1300000, "miles")
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(6, "feet"),
  41779. weight: math.unit(150, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/ariz/front.svg",
  41783. extra: 1401/1346,
  41784. bottom: 5/1406
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(10, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(6, "feet"),
  41801. weight: math.unit(140, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/sigrun/front.svg",
  41805. extra: 1418/1359,
  41806. bottom: 27/1445
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Macro",
  41813. height: math.unit(35, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41820. {
  41821. front: {
  41822. height: math.unit(6, "feet"),
  41823. weight: math.unit(150, "lb"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/numin/front.svg",
  41827. extra: 1433/1388,
  41828. bottom: 12/1445
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Macro",
  41835. height: math.unit(21.5, "km"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41842. {
  41843. front: {
  41844. height: math.unit(6, "feet"),
  41845. weight: math.unit(463, "lb"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/melwa/front.svg",
  41849. extra: 1307/1248,
  41850. bottom: 93/1400
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Macro",
  41857. height: math.unit(50, "meters"),
  41858. default: true
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(325, "feet"),
  41867. name: "Front",
  41868. image: {
  41869. source: "./media/characters/zorkaiju/front.svg",
  41870. extra: 1955/1814,
  41871. bottom: 40/1995
  41872. }
  41873. },
  41874. frontExtended: {
  41875. height: math.unit(325, "feet"),
  41876. name: "Front (Extended)",
  41877. image: {
  41878. source: "./media/characters/zorkaiju/front-extended.svg",
  41879. extra: 1955/1814,
  41880. bottom: 40/1995
  41881. }
  41882. },
  41883. side: {
  41884. height: math.unit(325, "feet"),
  41885. name: "Side",
  41886. image: {
  41887. source: "./media/characters/zorkaiju/side.svg",
  41888. extra: 1495/1396,
  41889. bottom: 17/1512
  41890. }
  41891. },
  41892. sideExtended: {
  41893. height: math.unit(325, "feet"),
  41894. name: "Side (Extended)",
  41895. image: {
  41896. source: "./media/characters/zorkaiju/side-extended.svg",
  41897. extra: 1495/1396,
  41898. bottom: 17/1512
  41899. }
  41900. },
  41901. back: {
  41902. height: math.unit(325, "feet"),
  41903. name: "Back",
  41904. image: {
  41905. source: "./media/characters/zorkaiju/back.svg",
  41906. extra: 1959/1821,
  41907. bottom: 31/1990
  41908. }
  41909. },
  41910. backExtended: {
  41911. height: math.unit(325, "feet"),
  41912. name: "Back (Extended)",
  41913. image: {
  41914. source: "./media/characters/zorkaiju/back-extended.svg",
  41915. extra: 1959/1821,
  41916. bottom: 31/1990
  41917. }
  41918. },
  41919. hand: {
  41920. height: math.unit(58.4, "feet"),
  41921. name: "Hand",
  41922. image: {
  41923. source: "./media/characters/zorkaiju/hand.svg"
  41924. }
  41925. },
  41926. handExtended: {
  41927. height: math.unit(61.4, "feet"),
  41928. name: "Hand (Extended)",
  41929. image: {
  41930. source: "./media/characters/zorkaiju/hand-extended.svg"
  41931. }
  41932. },
  41933. foot: {
  41934. height: math.unit(95, "feet"),
  41935. name: "Foot",
  41936. image: {
  41937. source: "./media/characters/zorkaiju/foot.svg"
  41938. }
  41939. },
  41940. leftArm: {
  41941. height: math.unit(59, "feet"),
  41942. name: "Left Arm",
  41943. image: {
  41944. source: "./media/characters/zorkaiju/left-arm.svg"
  41945. }
  41946. },
  41947. rightArm: {
  41948. height: math.unit(59, "feet"),
  41949. name: "Right Arm",
  41950. image: {
  41951. source: "./media/characters/zorkaiju/right-arm.svg"
  41952. }
  41953. },
  41954. leftArmExtended: {
  41955. height: math.unit(59 * 1.033546, "feet"),
  41956. name: "Left Arm (Extended)",
  41957. image: {
  41958. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41959. }
  41960. },
  41961. rightArmExtended: {
  41962. height: math.unit(59 * 1.0496, "feet"),
  41963. name: "Right Arm (Extended)",
  41964. image: {
  41965. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41966. }
  41967. },
  41968. tail: {
  41969. height: math.unit(104, "feet"),
  41970. name: "Tail",
  41971. image: {
  41972. source: "./media/characters/zorkaiju/tail.svg"
  41973. }
  41974. },
  41975. tailExtended: {
  41976. height: math.unit(104, "feet"),
  41977. name: "Tail (Extended)",
  41978. image: {
  41979. source: "./media/characters/zorkaiju/tail-extended.svg"
  41980. }
  41981. },
  41982. tailBottom: {
  41983. height: math.unit(104, "feet"),
  41984. name: "Tail Bottom",
  41985. image: {
  41986. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41987. }
  41988. },
  41989. crystal: {
  41990. height: math.unit(27.54, "feet"),
  41991. name: "Crystal",
  41992. image: {
  41993. source: "./media/characters/zorkaiju/crystal.svg"
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Kaiju",
  42000. height: math.unit(325, "feet"),
  42001. default: true
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(6 + 1/12, "feet"),
  42010. weight: math.unit(115, "lb"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/bailey-belfry/front.svg",
  42014. extra: 1240/1121,
  42015. bottom: 101/1341
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(6 + 1/12, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42029. {
  42030. side: {
  42031. height: math.unit(4, "meters"),
  42032. weight: math.unit(250, "kg"),
  42033. name: "Side",
  42034. image: {
  42035. source: "./media/characters/blacky/side.svg",
  42036. extra: 1027/919,
  42037. bottom: 43/1070
  42038. }
  42039. },
  42040. maw: {
  42041. height: math.unit(1, "meters"),
  42042. name: "Maw",
  42043. image: {
  42044. source: "./media/characters/blacky/maw.svg"
  42045. }
  42046. },
  42047. paw: {
  42048. height: math.unit(1, "meters"),
  42049. name: "Paw",
  42050. image: {
  42051. source: "./media/characters/blacky/paw.svg"
  42052. }
  42053. },
  42054. },
  42055. [
  42056. {
  42057. name: "Normal",
  42058. height: math.unit(4, "meters"),
  42059. default: true
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(170, "cm"),
  42068. weight: math.unit(66, "kg"),
  42069. name: "Front",
  42070. image: {
  42071. source: "./media/characters/thux-ei/front.svg",
  42072. extra: 1109/1011,
  42073. bottom: 8/1117
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(170, "cm"),
  42081. default: true
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(5, "feet"),
  42090. weight: math.unit(120, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/roxanne-voltaire/front.svg",
  42094. extra: 1901/1779,
  42095. bottom: 53/1954
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Normal",
  42102. height: math.unit(5, "feet"),
  42103. default: true
  42104. },
  42105. {
  42106. name: "Giant",
  42107. height: math.unit(50, "feet")
  42108. },
  42109. {
  42110. name: "Titan",
  42111. height: math.unit(500, "feet")
  42112. },
  42113. {
  42114. name: "Macro",
  42115. height: math.unit(5000, "feet")
  42116. },
  42117. {
  42118. name: "Megamacro",
  42119. height: math.unit(50000, "feet")
  42120. },
  42121. {
  42122. name: "Gigamacro",
  42123. height: math.unit(500000, "feet")
  42124. },
  42125. {
  42126. name: "Teramacro",
  42127. height: math.unit(5e6, "feet")
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(6 + 2/12, "feet"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/squeaks/front.svg",
  42139. extra: 1823/1768,
  42140. bottom: 138/1961
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Micro",
  42147. height: math.unit(0.5, "inches")
  42148. },
  42149. {
  42150. name: "Normal",
  42151. height: math.unit(6 + 2/12, "feet"),
  42152. default: true
  42153. },
  42154. {
  42155. name: "Macro",
  42156. height: math.unit(600, "feet")
  42157. },
  42158. ]
  42159. ))
  42160. characterMakers.push(() => makeCharacter(
  42161. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42162. {
  42163. front: {
  42164. height: math.unit(1.72, "meters"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/archinger/front.svg",
  42168. extra: 1861/1675,
  42169. bottom: 125/1986
  42170. }
  42171. },
  42172. back: {
  42173. height: math.unit(1.72, "meters"),
  42174. name: "Back",
  42175. image: {
  42176. source: "./media/characters/archinger/back.svg",
  42177. extra: 1844/1701,
  42178. bottom: 104/1948
  42179. }
  42180. },
  42181. cock: {
  42182. height: math.unit(0.59, "feet"),
  42183. name: "Cock",
  42184. image: {
  42185. source: "./media/characters/archinger/cock.svg"
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(1.72, "meters"),
  42193. default: true
  42194. },
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(84, "meters")
  42198. },
  42199. {
  42200. name: "Macro+",
  42201. height: math.unit(112, "meters")
  42202. },
  42203. {
  42204. name: "Macro++",
  42205. height: math.unit(960, "meters")
  42206. },
  42207. {
  42208. name: "Macro+++",
  42209. height: math.unit(4, "km")
  42210. },
  42211. {
  42212. name: "Macro++++",
  42213. height: math.unit(48, "km")
  42214. },
  42215. {
  42216. name: "Macro+++++",
  42217. height: math.unit(4500, "km")
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42223. {
  42224. front: {
  42225. height: math.unit(5 + 5/12, "feet"),
  42226. name: "Front",
  42227. image: {
  42228. source: "./media/characters/alsnapz/front.svg",
  42229. extra: 1157/1065,
  42230. bottom: 42/1199
  42231. }
  42232. },
  42233. },
  42234. [
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(5 + 5/12, "feet"),
  42238. default: true
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42244. {
  42245. side: {
  42246. height: math.unit(3.2, "earths"),
  42247. name: "Side",
  42248. image: {
  42249. source: "./media/characters/mag/side.svg",
  42250. extra: 1331/1008,
  42251. bottom: 52/1383
  42252. }
  42253. },
  42254. wing: {
  42255. height: math.unit(1.94, "earths"),
  42256. name: "Wing",
  42257. image: {
  42258. source: "./media/characters/mag/wing.svg"
  42259. }
  42260. },
  42261. dick: {
  42262. height: math.unit(1.8, "earths"),
  42263. name: "Dick",
  42264. image: {
  42265. source: "./media/characters/mag/dick.svg"
  42266. }
  42267. },
  42268. ass: {
  42269. height: math.unit(1.33, "earths"),
  42270. name: "Ass",
  42271. image: {
  42272. source: "./media/characters/mag/ass.svg"
  42273. }
  42274. },
  42275. head: {
  42276. height: math.unit(1.1, "earths"),
  42277. name: "Head",
  42278. image: {
  42279. source: "./media/characters/mag/head.svg"
  42280. }
  42281. },
  42282. maw: {
  42283. height: math.unit(1.62, "earths"),
  42284. name: "Maw",
  42285. image: {
  42286. source: "./media/characters/mag/maw.svg"
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Small",
  42293. height: math.unit(162, "feet")
  42294. },
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(3.2, "earths"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42304. {
  42305. front: {
  42306. height: math.unit(512, "feet"),
  42307. weight: math.unit(63509, "tonnes"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/vorrel-harroc/front.svg",
  42311. extra: 1075/1063,
  42312. bottom: 62/1137
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(10, "feet")
  42320. },
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(512, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Megamacro",
  42328. height: math.unit(256, "miles")
  42329. },
  42330. {
  42331. name: "Gigamacro",
  42332. height: math.unit(4096, "miles")
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42338. {
  42339. side: {
  42340. height: math.unit(50, "feet"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/froimar/side.svg",
  42344. extra: 855/638,
  42345. bottom: 99/954
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Macro",
  42352. height: math.unit(50, "feet"),
  42353. default: true
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42359. {
  42360. front: {
  42361. height: math.unit(210, "miles"),
  42362. name: "Front",
  42363. image: {
  42364. source: "./media/characters/timothy/front.svg",
  42365. extra: 1007/943,
  42366. bottom: 62/1069
  42367. }
  42368. },
  42369. frontSkirt: {
  42370. height: math.unit(210, "miles"),
  42371. name: "Front (Skirt)",
  42372. image: {
  42373. source: "./media/characters/timothy/front-skirt.svg",
  42374. extra: 1007/943,
  42375. bottom: 62/1069
  42376. }
  42377. },
  42378. frontCoat: {
  42379. height: math.unit(210, "miles"),
  42380. name: "Front (Coat)",
  42381. image: {
  42382. source: "./media/characters/timothy/front-coat.svg",
  42383. extra: 1007/943,
  42384. bottom: 62/1069
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Macro",
  42391. height: math.unit(210, "miles"),
  42392. default: true
  42393. },
  42394. {
  42395. name: "Megamacro",
  42396. height: math.unit(210000, "miles")
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(188, "feet"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/pyotr/front.svg",
  42408. extra: 1912/1826,
  42409. bottom: 18/1930
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Macro",
  42416. height: math.unit(188, "feet"),
  42417. default: true
  42418. },
  42419. {
  42420. name: "Megamacro",
  42421. height: math.unit(8, "miles")
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42427. {
  42428. side: {
  42429. height: math.unit(10, "feet"),
  42430. weight: math.unit(4500, "lb"),
  42431. name: "Side",
  42432. image: {
  42433. source: "./media/characters/ackart/side.svg",
  42434. extra: 1776/1668,
  42435. bottom: 116/1892
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(10, "feet"),
  42443. default: true
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42449. {
  42450. side: {
  42451. height: math.unit(21, "feet"),
  42452. name: "Side",
  42453. image: {
  42454. source: "./media/characters/nolow/side.svg",
  42455. extra: 1484/1434,
  42456. bottom: 85/1569
  42457. }
  42458. },
  42459. sideErect: {
  42460. height: math.unit(21, "feet"),
  42461. name: "Side-erect",
  42462. image: {
  42463. source: "./media/characters/nolow/side-erect.svg",
  42464. extra: 1484/1434,
  42465. bottom: 85/1569
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Regular",
  42472. height: math.unit(12, "feet")
  42473. },
  42474. {
  42475. name: "Big Chee",
  42476. height: math.unit(21, "feet"),
  42477. default: true
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(7, "feet"),
  42486. weight: math.unit(250, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/nines/front.svg",
  42490. extra: 1741/1607,
  42491. bottom: 41/1782
  42492. }
  42493. },
  42494. side: {
  42495. height: math.unit(7, "feet"),
  42496. weight: math.unit(250, "lb"),
  42497. name: "Side",
  42498. image: {
  42499. source: "./media/characters/nines/side.svg",
  42500. extra: 1854/1735,
  42501. bottom: 93/1947
  42502. }
  42503. },
  42504. back: {
  42505. height: math.unit(7, "feet"),
  42506. weight: math.unit(250, "lb"),
  42507. name: "Back",
  42508. image: {
  42509. source: "./media/characters/nines/back.svg",
  42510. extra: 1748/1615,
  42511. bottom: 20/1768
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Megamacro",
  42518. height: math.unit(99, "km"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42525. {
  42526. front: {
  42527. height: math.unit(5 + 10/12, "feet"),
  42528. weight: math.unit(210, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/zenith/front.svg",
  42532. extra: 1531/1452,
  42533. bottom: 198/1729
  42534. }
  42535. },
  42536. back: {
  42537. height: math.unit(5 + 10/12, "feet"),
  42538. weight: math.unit(210, "lb"),
  42539. name: "Back",
  42540. image: {
  42541. source: "./media/characters/zenith/back.svg",
  42542. extra: 1571/1487,
  42543. bottom: 75/1646
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(5 + 10/12, "feet"),
  42551. default: true
  42552. }
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(4, "feet"),
  42560. weight: math.unit(60, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/jasper/front.svg",
  42564. extra: 1450/1379,
  42565. bottom: 19/1469
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(4, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(6 + 5/12, "feet"),
  42582. weight: math.unit(290, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/tiberius-thyben/front.svg",
  42586. extra: 757/739,
  42587. bottom: 39/796
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Micro",
  42594. height: math.unit(1.5, "inches")
  42595. },
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(6 + 5/12, "feet"),
  42599. default: true
  42600. },
  42601. {
  42602. name: "Macro",
  42603. height: math.unit(300, "feet")
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(5 + 6/12, "feet"),
  42612. weight: math.unit(60, "kg"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/sabre/front.svg",
  42616. extra: 738/671,
  42617. bottom: 27/765
  42618. }
  42619. },
  42620. },
  42621. [
  42622. {
  42623. name: "Teeny",
  42624. height: math.unit(2, "inches")
  42625. },
  42626. {
  42627. name: "Smol",
  42628. height: math.unit(8, "inches")
  42629. },
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(5 + 6/12, "feet"),
  42633. default: true
  42634. },
  42635. {
  42636. name: "Mini-Macro",
  42637. height: math.unit(15, "feet")
  42638. },
  42639. {
  42640. name: "Macro",
  42641. height: math.unit(50, "feet")
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(6 + 4/12, "feet"),
  42650. weight: math.unit(170, "lb"),
  42651. name: "Front",
  42652. image: {
  42653. source: "./media/characters/charlie/front.svg",
  42654. extra: 1348/1228,
  42655. bottom: 15/1363
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Macro",
  42662. height: math.unit(1700, "meters"),
  42663. default: true
  42664. },
  42665. {
  42666. name: "MegaMacro",
  42667. height: math.unit(20400, "meters")
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(6 + 3/12, "feet"),
  42676. weight: math.unit(185, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/susan-grant/front.svg",
  42680. extra: 1351/1327,
  42681. bottom: 26/1377
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(6 + 3/12, "feet"),
  42689. default: true
  42690. },
  42691. {
  42692. name: "Macro",
  42693. height: math.unit(225, "feet")
  42694. },
  42695. {
  42696. name: "Macro+",
  42697. height: math.unit(900, "feet")
  42698. },
  42699. {
  42700. name: "MegaMacro",
  42701. height: math.unit(14400, "feet")
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(5 + 4/12, "feet"),
  42710. weight: math.unit(110, "lb"),
  42711. name: "Front",
  42712. image: {
  42713. source: "./media/characters/axel-isanov/front.svg",
  42714. extra: 1096/1065,
  42715. bottom: 13/1109
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Normal",
  42722. height: math.unit(5 + 4/12, "feet"),
  42723. default: true
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(9, "feet"),
  42732. weight: math.unit(467, "lb"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/necahual/front.svg",
  42736. extra: 920/873,
  42737. bottom: 26/946
  42738. }
  42739. },
  42740. back: {
  42741. height: math.unit(9, "feet"),
  42742. weight: math.unit(467, "lb"),
  42743. name: "Back",
  42744. image: {
  42745. source: "./media/characters/necahual/back.svg",
  42746. extra: 930/884,
  42747. bottom: 16/946
  42748. }
  42749. },
  42750. frontUnderwear: {
  42751. height: math.unit(9, "feet"),
  42752. weight: math.unit(467, "lb"),
  42753. name: "Front (Underwear)",
  42754. image: {
  42755. source: "./media/characters/necahual/front-underwear.svg",
  42756. extra: 920/873,
  42757. bottom: 26/946
  42758. }
  42759. },
  42760. frontDressed: {
  42761. height: math.unit(9, "feet"),
  42762. weight: math.unit(467, "lb"),
  42763. name: "Front (Dressed)",
  42764. image: {
  42765. source: "./media/characters/necahual/front-dressed.svg",
  42766. extra: 920/873,
  42767. bottom: 26/946
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Comprsesed",
  42774. height: math.unit(9, "feet")
  42775. },
  42776. {
  42777. name: "Natural",
  42778. height: math.unit(15, "feet"),
  42779. default: true
  42780. },
  42781. {
  42782. name: "Boosted",
  42783. height: math.unit(50, "feet")
  42784. },
  42785. {
  42786. name: "Boosted+",
  42787. height: math.unit(150, "feet")
  42788. },
  42789. {
  42790. name: "Max",
  42791. height: math.unit(500, "feet")
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(22 + 1/12, "feet"),
  42800. weight: math.unit(3200, "lb"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/theo-acacia/front.svg",
  42804. extra: 1796/1741,
  42805. bottom: 83/1879
  42806. }
  42807. },
  42808. frontUnderwear: {
  42809. height: math.unit(22 + 1/12, "feet"),
  42810. weight: math.unit(3200, "lb"),
  42811. name: "Front (Underwear)",
  42812. image: {
  42813. source: "./media/characters/theo-acacia/front-underwear.svg",
  42814. extra: 1796/1741,
  42815. bottom: 83/1879
  42816. }
  42817. },
  42818. frontNude: {
  42819. height: math.unit(22 + 1/12, "feet"),
  42820. weight: math.unit(3200, "lb"),
  42821. name: "Front (Nude)",
  42822. image: {
  42823. source: "./media/characters/theo-acacia/front-nude.svg",
  42824. extra: 1796/1741,
  42825. bottom: 83/1879
  42826. }
  42827. },
  42828. },
  42829. [
  42830. {
  42831. name: "Normal",
  42832. height: math.unit(22 + 1/12, "feet"),
  42833. default: true
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42839. {
  42840. front: {
  42841. height: math.unit(20, "feet"),
  42842. name: "Front",
  42843. image: {
  42844. source: "./media/characters/astra/front.svg",
  42845. extra: 1850/1714,
  42846. bottom: 106/1956
  42847. }
  42848. },
  42849. frontUndressed: {
  42850. height: math.unit(20, "feet"),
  42851. name: "Front (Undressed)",
  42852. image: {
  42853. source: "./media/characters/astra/front-undressed.svg",
  42854. extra: 1926/1749,
  42855. bottom: 0/1926
  42856. }
  42857. },
  42858. hand: {
  42859. height: math.unit(1.53, "feet"),
  42860. name: "Hand",
  42861. image: {
  42862. source: "./media/characters/astra/hand.svg"
  42863. }
  42864. },
  42865. paw: {
  42866. height: math.unit(1.53, "feet"),
  42867. name: "Paw",
  42868. image: {
  42869. source: "./media/characters/astra/paw.svg"
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Smallest",
  42876. height: math.unit(20, "feet")
  42877. },
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(1e9, "miles"),
  42881. default: true
  42882. },
  42883. {
  42884. name: "Larger",
  42885. height: math.unit(5, "multiverses")
  42886. },
  42887. {
  42888. name: "Largest",
  42889. height: math.unit(1e9, "multiverses")
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(8, "feet"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/breanna/front.svg",
  42901. extra: 1912/1632,
  42902. bottom: 33/1945
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Smallest",
  42909. height: math.unit(8, "feet")
  42910. },
  42911. {
  42912. name: "Normal",
  42913. height: math.unit(1, "mile"),
  42914. default: true
  42915. },
  42916. {
  42917. name: "Maximum",
  42918. height: math.unit(1500000000000, "lightyears")
  42919. },
  42920. ]
  42921. ))
  42922. characterMakers.push(() => makeCharacter(
  42923. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42924. {
  42925. front: {
  42926. height: math.unit(5 + 11/12, "feet"),
  42927. weight: math.unit(155, "lb"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/cai/front.svg",
  42931. extra: 1823/1702,
  42932. bottom: 32/1855
  42933. }
  42934. },
  42935. back: {
  42936. height: math.unit(5 + 11/12, "feet"),
  42937. weight: math.unit(155, "lb"),
  42938. name: "Back",
  42939. image: {
  42940. source: "./media/characters/cai/back.svg",
  42941. extra: 1809/1708,
  42942. bottom: 31/1840
  42943. }
  42944. },
  42945. },
  42946. [
  42947. {
  42948. name: "Normal",
  42949. height: math.unit(5 + 11/12, "feet"),
  42950. default: true
  42951. },
  42952. {
  42953. name: "Big",
  42954. height: math.unit(15, "feet")
  42955. },
  42956. {
  42957. name: "Macro",
  42958. height: math.unit(200, "feet")
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(5 + 6/12, "feet"),
  42967. weight: math.unit(160, "lb"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42971. extra: 1227/1174,
  42972. bottom: 37/1264
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Macro",
  42979. height: math.unit(444, "meters"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(18 + 7/12, "feet"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/rex/front.svg",
  42992. extra: 1941/1807,
  42993. bottom: 66/2007
  42994. }
  42995. },
  42996. back: {
  42997. height: math.unit(18 + 7/12, "feet"),
  42998. name: "Back",
  42999. image: {
  43000. source: "./media/characters/rex/back.svg",
  43001. extra: 1937/1822,
  43002. bottom: 42/1979
  43003. }
  43004. },
  43005. boot: {
  43006. height: math.unit(3.45, "feet"),
  43007. name: "Boot",
  43008. image: {
  43009. source: "./media/characters/rex/boot.svg"
  43010. }
  43011. },
  43012. paw: {
  43013. height: math.unit(4.17, "feet"),
  43014. name: "Paw",
  43015. image: {
  43016. source: "./media/characters/rex/paw.svg"
  43017. }
  43018. },
  43019. head: {
  43020. height: math.unit(6.728, "feet"),
  43021. name: "Head",
  43022. image: {
  43023. source: "./media/characters/rex/head.svg"
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Nano",
  43030. height: math.unit(18 + 7/12, "feet")
  43031. },
  43032. {
  43033. name: "Micro",
  43034. height: math.unit(1.5, "megameters")
  43035. },
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(440, "megameters"),
  43039. default: true
  43040. },
  43041. {
  43042. name: "Macro",
  43043. height: math.unit(2.5, "gigameters")
  43044. },
  43045. {
  43046. name: "Gigamacro",
  43047. height: math.unit(2, "galaxies")
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43053. {
  43054. side: {
  43055. height: math.unit(32, "feet"),
  43056. weight: math.unit(250000, "lb"),
  43057. name: "Side",
  43058. image: {
  43059. source: "./media/characters/silverwing/side.svg",
  43060. extra: 1100/1019,
  43061. bottom: 204/1304
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(32, "feet"),
  43069. default: true
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43075. {
  43076. front: {
  43077. height: math.unit(6 + 6/12, "feet"),
  43078. weight: math.unit(350, "lb"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/tristan-hawthorne/front.svg",
  43082. extra: 1159/1124,
  43083. bottom: 37/1196
  43084. },
  43085. form: "labrador",
  43086. default: true
  43087. },
  43088. skunkFront: {
  43089. height: math.unit(4 + 6/12, "feet"),
  43090. weight: math.unit(120, "lb"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43094. extra: 1609/1551,
  43095. bottom: 169/1778
  43096. },
  43097. form: "skunk",
  43098. default: true
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(6 + 6/12, "feet"),
  43105. form: "labrador",
  43106. default: true
  43107. },
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(4 + 6/12, "feet"),
  43111. form: "skunk",
  43112. default: true
  43113. },
  43114. ],
  43115. {
  43116. "labrador": {
  43117. name: "Labrador",
  43118. default: true
  43119. },
  43120. "skunk": {
  43121. name: "Skunk"
  43122. }
  43123. }
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(5 + 11/12, "feet"),
  43130. weight: math.unit(190, "lb"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/mizu/front.svg",
  43134. extra: 1988/1788,
  43135. bottom: 14/2002
  43136. }
  43137. },
  43138. },
  43139. [
  43140. {
  43141. name: "Normal",
  43142. height: math.unit(5 + 11/12, "feet"),
  43143. default: true
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43149. {
  43150. front: {
  43151. height: math.unit(1.7, "feet"),
  43152. weight: math.unit(50, "lb"),
  43153. name: "Front",
  43154. image: {
  43155. source: "./media/characters/dechroma/front.svg",
  43156. extra: 1095/859,
  43157. bottom: 64/1159
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(1.7, "feet"),
  43165. default: true
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43171. {
  43172. side: {
  43173. height: math.unit(30, "feet"),
  43174. name: "Side",
  43175. image: {
  43176. source: "./media/characters/veluren-thanazel/side.svg",
  43177. extra: 1611/633,
  43178. bottom: 118/1729
  43179. }
  43180. },
  43181. front: {
  43182. height: math.unit(30, "feet"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/veluren-thanazel/front.svg",
  43186. extra: 1486/636,
  43187. bottom: 238/1724
  43188. }
  43189. },
  43190. head: {
  43191. height: math.unit(21.4, "feet"),
  43192. name: "Head",
  43193. image: {
  43194. source: "./media/characters/veluren-thanazel/head.svg"
  43195. }
  43196. },
  43197. genitals: {
  43198. height: math.unit(19.4, "feet"),
  43199. name: "Genitals",
  43200. image: {
  43201. source: "./media/characters/veluren-thanazel/genitals.svg"
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Social",
  43208. height: math.unit(6, "feet")
  43209. },
  43210. {
  43211. name: "Play",
  43212. height: math.unit(12, "feet")
  43213. },
  43214. {
  43215. name: "True",
  43216. height: math.unit(30, "feet"),
  43217. default: true
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(7 + 6/12, "feet"),
  43226. weight: math.unit(500, "kg"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/arcturas/front.svg",
  43230. extra: 1700/1500,
  43231. bottom: 145/1845
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Normal",
  43238. height: math.unit(7 + 6/12, "feet"),
  43239. default: true
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43245. {
  43246. side: {
  43247. height: math.unit(6, "feet"),
  43248. weight: math.unit(2, "tons"),
  43249. name: "Side",
  43250. image: {
  43251. source: "./media/characters/vitaen/side.svg",
  43252. extra: 1157/617,
  43253. bottom: 122/1279
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Normal",
  43260. height: math.unit(6, "feet"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(19, "feet"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/fia-dreamweaver/front.svg",
  43273. extra: 1630/1504,
  43274. bottom: 25/1655
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(19, "feet"),
  43282. default: true
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43288. {
  43289. front: {
  43290. height: math.unit(5 + 4/12, "feet"),
  43291. name: "Front",
  43292. image: {
  43293. source: "./media/characters/artan/front.svg",
  43294. extra: 1618/1535,
  43295. bottom: 46/1664
  43296. }
  43297. },
  43298. back: {
  43299. height: math.unit(5 + 4/12, "feet"),
  43300. name: "Back",
  43301. image: {
  43302. source: "./media/characters/artan/back.svg",
  43303. extra: 1618/1543,
  43304. bottom: 31/1649
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Normal",
  43311. height: math.unit(5 + 4/12, "feet"),
  43312. default: true
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43318. {
  43319. side: {
  43320. height: math.unit(182, "cm"),
  43321. weight: math.unit(1000, "lb"),
  43322. name: "Side",
  43323. image: {
  43324. source: "./media/characters/silver-dragon/side.svg",
  43325. extra: 710/287,
  43326. bottom: 88/798
  43327. }
  43328. },
  43329. },
  43330. [
  43331. {
  43332. name: "Normal",
  43333. height: math.unit(182, "cm"),
  43334. default: true
  43335. },
  43336. ]
  43337. ))
  43338. characterMakers.push(() => makeCharacter(
  43339. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43340. {
  43341. side: {
  43342. height: math.unit(6 + 6/12, "feet"),
  43343. weight: math.unit(1.5, "tons"),
  43344. name: "Side",
  43345. image: {
  43346. source: "./media/characters/zephyr/side.svg",
  43347. extra: 1433/586,
  43348. bottom: 109/1542
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Normal",
  43355. height: math.unit(6 + 6/12, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43362. {
  43363. side: {
  43364. height: math.unit(1, "feet"),
  43365. name: "Side",
  43366. image: {
  43367. source: "./media/characters/vixye/side.svg",
  43368. extra: 632/541,
  43369. bottom: 0/632
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Normal",
  43376. height: math.unit(1, "feet"),
  43377. default: true
  43378. },
  43379. {
  43380. name: "True",
  43381. height: math.unit(1e15, "multiverses")
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(8 + 2/12, "feet"),
  43390. weight: math.unit(650, "lb"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43394. extra: 1174/1137,
  43395. bottom: 82/1256
  43396. }
  43397. },
  43398. back: {
  43399. height: math.unit(8 + 2/12, "feet"),
  43400. weight: math.unit(650, "lb"),
  43401. name: "Back",
  43402. image: {
  43403. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43404. extra: 1204/1157,
  43405. bottom: 46/1250
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Wildform",
  43412. height: math.unit(8 + 2/12, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43419. {
  43420. front: {
  43421. height: math.unit(18, "feet"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/cyphin/front.svg",
  43425. extra: 970/886,
  43426. bottom: 42/1012
  43427. }
  43428. },
  43429. back: {
  43430. height: math.unit(18, "feet"),
  43431. name: "Back",
  43432. image: {
  43433. source: "./media/characters/cyphin/back.svg",
  43434. extra: 1009/894,
  43435. bottom: 24/1033
  43436. }
  43437. },
  43438. head: {
  43439. height: math.unit(5.05, "feet"),
  43440. name: "Head",
  43441. image: {
  43442. source: "./media/characters/cyphin/head.svg"
  43443. }
  43444. },
  43445. tailbud: {
  43446. height: math.unit(5, "feet"),
  43447. name: "Tailbud",
  43448. image: {
  43449. source: "./media/characters/cyphin/tailbud.svg"
  43450. }
  43451. },
  43452. },
  43453. [
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43458. {
  43459. side: {
  43460. height: math.unit(10, "feet"),
  43461. weight: math.unit(6, "tons"),
  43462. name: "Side",
  43463. image: {
  43464. source: "./media/characters/raijin/side.svg",
  43465. extra: 1529/613,
  43466. bottom: 337/1866
  43467. }
  43468. },
  43469. },
  43470. [
  43471. {
  43472. name: "Normal",
  43473. height: math.unit(10, "feet"),
  43474. default: true
  43475. },
  43476. ]
  43477. ))
  43478. characterMakers.push(() => makeCharacter(
  43479. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43480. {
  43481. side: {
  43482. height: math.unit(9, "feet"),
  43483. name: "Side",
  43484. image: {
  43485. source: "./media/characters/nilghais/side.svg",
  43486. extra: 1047/744,
  43487. bottom: 91/1138
  43488. }
  43489. },
  43490. head: {
  43491. height: math.unit(3.14, "feet"),
  43492. name: "Head",
  43493. image: {
  43494. source: "./media/characters/nilghais/head.svg"
  43495. }
  43496. },
  43497. mouth: {
  43498. height: math.unit(4.6, "feet"),
  43499. name: "Mouth",
  43500. image: {
  43501. source: "./media/characters/nilghais/mouth.svg"
  43502. }
  43503. },
  43504. wings: {
  43505. height: math.unit(24, "feet"),
  43506. name: "Wings",
  43507. image: {
  43508. source: "./media/characters/nilghais/wings.svg"
  43509. }
  43510. },
  43511. ass: {
  43512. height: math.unit(6.12, "feet"),
  43513. name: "Ass",
  43514. image: {
  43515. source: "./media/characters/nilghais/ass.svg"
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(9, "feet"),
  43523. default: true
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43529. {
  43530. regular: {
  43531. height: math.unit(16 + 2/12, "feet"),
  43532. weight: math.unit(2300, "lb"),
  43533. name: "Regular",
  43534. image: {
  43535. source: "./media/characters/zolgar/regular.svg",
  43536. extra: 1246/1004,
  43537. bottom: 124/1370
  43538. }
  43539. },
  43540. boxers: {
  43541. height: math.unit(16 + 2/12, "feet"),
  43542. weight: math.unit(2300, "lb"),
  43543. name: "Boxers",
  43544. image: {
  43545. source: "./media/characters/zolgar/boxers.svg",
  43546. extra: 1246/1004,
  43547. bottom: 124/1370
  43548. }
  43549. },
  43550. armored: {
  43551. height: math.unit(16 + 2/12, "feet"),
  43552. weight: math.unit(2300, "lb"),
  43553. name: "Armored",
  43554. image: {
  43555. source: "./media/characters/zolgar/armored.svg",
  43556. extra: 1246/1004,
  43557. bottom: 124/1370
  43558. }
  43559. },
  43560. goth: {
  43561. height: math.unit(16 + 2/12, "feet"),
  43562. weight: math.unit(2300, "lb"),
  43563. name: "Goth",
  43564. image: {
  43565. source: "./media/characters/zolgar/goth.svg",
  43566. extra: 1246/1004,
  43567. bottom: 124/1370
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Shrunken Down",
  43574. height: math.unit(9 + 2/12, "feet")
  43575. },
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(16 + 2/12, "feet"),
  43579. default: true
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43585. {
  43586. front: {
  43587. height: math.unit(6, "feet"),
  43588. weight: math.unit(168, "lb"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/luca/front.svg",
  43592. extra: 841/667,
  43593. bottom: 102/943
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Normal",
  43600. height: math.unit(6, "feet"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43607. {
  43608. side: {
  43609. height: math.unit(7 + 3/12, "feet"),
  43610. weight: math.unit(312, "lb"),
  43611. name: "Side",
  43612. image: {
  43613. source: "./media/characters/zezo/side.svg",
  43614. extra: 1192/1067,
  43615. bottom: 63/1255
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(7 + 3/12, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(5 + 5/12, "feet"),
  43632. weight: math.unit(170, "lb"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/mayso/front.svg",
  43636. extra: 1215/1108,
  43637. bottom: 16/1231
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(5 + 5/12, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(4 + 3/12, "feet"),
  43654. weight: math.unit(80, "lb"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/hess/front.svg",
  43658. extra: 1200/1123,
  43659. bottom: 16/1216
  43660. }
  43661. },
  43662. },
  43663. [
  43664. {
  43665. name: "Normal",
  43666. height: math.unit(4 + 3/12, "feet"),
  43667. default: true
  43668. },
  43669. ]
  43670. ))
  43671. characterMakers.push(() => makeCharacter(
  43672. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43673. {
  43674. front: {
  43675. height: math.unit(1.9, "meters"),
  43676. name: "Front",
  43677. image: {
  43678. source: "./media/characters/ashgar/front.svg",
  43679. extra: 1177/1146,
  43680. bottom: 99/1276
  43681. }
  43682. },
  43683. back: {
  43684. height: math.unit(1.9, "meters"),
  43685. name: "Back",
  43686. image: {
  43687. source: "./media/characters/ashgar/back.svg",
  43688. extra: 1201/1183,
  43689. bottom: 53/1254
  43690. }
  43691. },
  43692. feral: {
  43693. height: math.unit(1.4, "meters"),
  43694. name: "Feral",
  43695. image: {
  43696. source: "./media/characters/ashgar/feral.svg",
  43697. extra: 370/345,
  43698. bottom: 45/415
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Normal",
  43705. height: math.unit(1.9, "meters"),
  43706. default: true
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43712. {
  43713. regular: {
  43714. height: math.unit(6, "feet"),
  43715. weight: math.unit(220, "lb"),
  43716. name: "Regular",
  43717. image: {
  43718. source: "./media/characters/phillip/regular.svg",
  43719. extra: 1373/1277,
  43720. bottom: 75/1448
  43721. }
  43722. },
  43723. dressed: {
  43724. height: math.unit(6, "feet"),
  43725. weight: math.unit(220, "lb"),
  43726. name: "Dressed",
  43727. image: {
  43728. source: "./media/characters/phillip/dressed.svg",
  43729. extra: 1373/1277,
  43730. bottom: 75/1448
  43731. }
  43732. },
  43733. paw: {
  43734. height: math.unit(1.44, "feet"),
  43735. name: "Paw",
  43736. image: {
  43737. source: "./media/characters/phillip/paw.svg"
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Normal",
  43744. height: math.unit(6, "feet"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43751. {
  43752. side: {
  43753. height: math.unit(42, "feet"),
  43754. name: "Side",
  43755. image: {
  43756. source: "./media/characters/uvula/side.svg",
  43757. extra: 683/586,
  43758. bottom: 60/743
  43759. }
  43760. },
  43761. front: {
  43762. height: math.unit(42, "feet"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/uvula/front.svg",
  43766. extra: 705/613,
  43767. bottom: 54/759
  43768. }
  43769. },
  43770. maw: {
  43771. height: math.unit(23.5, "feet"),
  43772. name: "Maw",
  43773. image: {
  43774. source: "./media/characters/uvula/maw.svg"
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Original Size",
  43781. height: math.unit(14, "inches")
  43782. },
  43783. {
  43784. name: "Human Size",
  43785. height: math.unit(6, "feet")
  43786. },
  43787. {
  43788. name: "Big",
  43789. height: math.unit(42, "feet"),
  43790. default: true
  43791. },
  43792. {
  43793. name: "Bigger",
  43794. height: math.unit(100, "feet")
  43795. },
  43796. ]
  43797. ))
  43798. characterMakers.push(() => makeCharacter(
  43799. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43800. {
  43801. front: {
  43802. height: math.unit(5 + 11/12, "feet"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/lannah/front.svg",
  43806. extra: 1208/1113,
  43807. bottom: 97/1305
  43808. }
  43809. },
  43810. },
  43811. [
  43812. {
  43813. name: "Normal",
  43814. height: math.unit(5 + 11/12, "feet"),
  43815. default: true
  43816. },
  43817. ]
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43821. {
  43822. front: {
  43823. height: math.unit(6 + 3/12, "feet"),
  43824. weight: math.unit(3.5, "tons"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/emberflame/front.svg",
  43828. extra: 1198/672,
  43829. bottom: 82/1280
  43830. }
  43831. },
  43832. side: {
  43833. height: math.unit(6 + 3/12, "feet"),
  43834. weight: math.unit(3.5, "tons"),
  43835. name: "Side",
  43836. image: {
  43837. source: "./media/characters/emberflame/side.svg",
  43838. extra: 938/527,
  43839. bottom: 56/994
  43840. }
  43841. },
  43842. },
  43843. [
  43844. {
  43845. name: "Normal",
  43846. height: math.unit(6 + 3/12, "feet"),
  43847. default: true
  43848. },
  43849. ]
  43850. ))
  43851. characterMakers.push(() => makeCharacter(
  43852. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43853. {
  43854. side: {
  43855. height: math.unit(17.5, "feet"),
  43856. weight: math.unit(35, "tons"),
  43857. name: "Side",
  43858. image: {
  43859. source: "./media/characters/sophie-ambrose/side.svg",
  43860. extra: 1573/1242,
  43861. bottom: 71/1644
  43862. }
  43863. },
  43864. maw: {
  43865. height: math.unit(7.4, "feet"),
  43866. name: "Maw",
  43867. image: {
  43868. source: "./media/characters/sophie-ambrose/maw.svg"
  43869. }
  43870. },
  43871. },
  43872. [
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(17.5, "feet"),
  43876. default: true
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43882. {
  43883. front: {
  43884. height: math.unit(280, "feet"),
  43885. weight: math.unit(550, "tons"),
  43886. name: "Front",
  43887. image: {
  43888. source: "./media/characters/king-mugi/front.svg",
  43889. extra: 1102/947,
  43890. bottom: 104/1206
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "King Mugi",
  43897. height: math.unit(280, "feet"),
  43898. default: true
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(64, "meters"),
  43907. name: "Front",
  43908. image: {
  43909. source: "./media/characters/nova-fox/front.svg",
  43910. extra: 1310/1246,
  43911. bottom: 65/1375
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Macro",
  43918. height: math.unit(64, "meters"),
  43919. default: true
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43925. {
  43926. front: {
  43927. height: math.unit(6 + 3/12, "feet"),
  43928. weight: math.unit(170, "lb"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/sam-bat/front.svg",
  43932. extra: 1601/1411,
  43933. bottom: 125/1726
  43934. }
  43935. },
  43936. back: {
  43937. height: math.unit(6 + 3/12, "feet"),
  43938. weight: math.unit(170, "lb"),
  43939. name: "Back",
  43940. image: {
  43941. source: "./media/characters/sam-bat/back.svg",
  43942. extra: 1577/1405,
  43943. bottom: 58/1635
  43944. }
  43945. },
  43946. },
  43947. [
  43948. {
  43949. name: "Normal",
  43950. height: math.unit(6 + 3/12, "feet"),
  43951. default: true
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43957. {
  43958. front: {
  43959. height: math.unit(59, "feet"),
  43960. weight: math.unit(40000, "lb"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/inari/front.svg",
  43964. extra: 1884/1350,
  43965. bottom: 95/1979
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Gigantamax",
  43972. height: math.unit(59, "feet"),
  43973. default: true
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43979. {
  43980. front: {
  43981. height: math.unit(5 + 8/12, "feet"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/elizabeth/front.svg",
  43985. extra: 1395/1298,
  43986. bottom: 54/1449
  43987. }
  43988. },
  43989. mouth: {
  43990. height: math.unit(1.97, "feet"),
  43991. name: "Mouth",
  43992. image: {
  43993. source: "./media/characters/elizabeth/mouth.svg"
  43994. }
  43995. },
  43996. foot: {
  43997. height: math.unit(1.17, "feet"),
  43998. name: "Foot",
  43999. image: {
  44000. source: "./media/characters/elizabeth/foot.svg"
  44001. }
  44002. },
  44003. },
  44004. [
  44005. {
  44006. name: "Normal",
  44007. height: math.unit(5 + 8/12, "feet"),
  44008. default: true
  44009. },
  44010. {
  44011. name: "Minimacro",
  44012. height: math.unit(18, "feet")
  44013. },
  44014. {
  44015. name: "Macro",
  44016. height: math.unit(180, "feet")
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(5 + 2/12, "feet"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/october-gossamer/front.svg",
  44028. extra: 505/454,
  44029. bottom: 7/512
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(5 + 2/12, "feet"),
  44034. name: "Back",
  44035. image: {
  44036. source: "./media/characters/october-gossamer/back.svg",
  44037. extra: 501/454,
  44038. bottom: 11/512
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Normal",
  44045. height: math.unit(5 + 2/12, "feet"),
  44046. default: true
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44052. {
  44053. front: {
  44054. height: math.unit(5, "feet"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/epiglottis/front.svg",
  44058. extra: 923/849,
  44059. bottom: 17/940
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Original Size",
  44066. height: math.unit(10, "inches")
  44067. },
  44068. {
  44069. name: "Human Size",
  44070. height: math.unit(5, "feet"),
  44071. default: true
  44072. },
  44073. {
  44074. name: "Big",
  44075. height: math.unit(25, "feet")
  44076. },
  44077. {
  44078. name: "Bigger",
  44079. height: math.unit(50, "feet")
  44080. },
  44081. {
  44082. name: "oh lawd",
  44083. height: math.unit(75, "feet")
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(2 + 4/12, "feet"),
  44092. weight: math.unit(60, "lb"),
  44093. name: "Front",
  44094. image: {
  44095. source: "./media/characters/lerm/front.svg",
  44096. extra: 796/790,
  44097. bottom: 79/875
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(2 + 4/12, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(5.5, "feet"),
  44114. weight: math.unit(130, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/xena-nebadon/front.svg",
  44118. extra: 1828/1730,
  44119. bottom: 79/1907
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Tiny Puppy",
  44126. height: math.unit(3, "inches")
  44127. },
  44128. {
  44129. name: "Normal",
  44130. height: math.unit(5.5, "feet"),
  44131. default: true
  44132. },
  44133. {
  44134. name: "Lotta Lady",
  44135. height: math.unit(12, "feet")
  44136. },
  44137. {
  44138. name: "Pretty Big",
  44139. height: math.unit(100, "feet")
  44140. },
  44141. {
  44142. name: "Big",
  44143. height: math.unit(500, "feet")
  44144. },
  44145. {
  44146. name: "Skyscraper Toys",
  44147. height: math.unit(2500, "feet")
  44148. },
  44149. {
  44150. name: "Plane Catcher",
  44151. height: math.unit(8, "miles")
  44152. },
  44153. {
  44154. name: "Planet Toys",
  44155. height: math.unit(15, "earths")
  44156. },
  44157. {
  44158. name: "Stardust",
  44159. height: math.unit(0.25, "galaxies")
  44160. },
  44161. {
  44162. name: "Snacks",
  44163. height: math.unit(70, "universes")
  44164. },
  44165. ]
  44166. ))
  44167. characterMakers.push(() => makeCharacter(
  44168. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44169. {
  44170. front: {
  44171. height: math.unit(1.6, "meters"),
  44172. weight: math.unit(60, "kg"),
  44173. name: "Front",
  44174. image: {
  44175. source: "./media/characters/bounty/front.svg",
  44176. extra: 1426/1308,
  44177. bottom: 15/1441
  44178. }
  44179. },
  44180. back: {
  44181. height: math.unit(1.6, "meters"),
  44182. weight: math.unit(60, "kg"),
  44183. name: "Back",
  44184. image: {
  44185. source: "./media/characters/bounty/back.svg",
  44186. extra: 1417/1307,
  44187. bottom: 8/1425
  44188. }
  44189. },
  44190. },
  44191. [
  44192. {
  44193. name: "Normal",
  44194. height: math.unit(1.6, "meters"),
  44195. default: true
  44196. },
  44197. {
  44198. name: "Macro",
  44199. height: math.unit(300, "meters")
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44205. {
  44206. front: {
  44207. height: math.unit(2 + 8/12, "feet"),
  44208. weight: math.unit(15, "lb"),
  44209. name: "Front",
  44210. image: {
  44211. source: "./media/characters/mochi/front.svg",
  44212. extra: 1022/852,
  44213. bottom: 435/1457
  44214. }
  44215. },
  44216. back: {
  44217. height: math.unit(2 + 8/12, "feet"),
  44218. weight: math.unit(15, "lb"),
  44219. name: "Back",
  44220. image: {
  44221. source: "./media/characters/mochi/back.svg",
  44222. extra: 1335/1119,
  44223. bottom: 39/1374
  44224. }
  44225. },
  44226. bird: {
  44227. height: math.unit(2 + 8/12, "feet"),
  44228. weight: math.unit(15, "lb"),
  44229. name: "Bird",
  44230. image: {
  44231. source: "./media/characters/mochi/bird.svg",
  44232. extra: 1251/1113,
  44233. bottom: 178/1429
  44234. }
  44235. },
  44236. kaiju: {
  44237. height: math.unit(154, "feet"),
  44238. weight: math.unit(1e7, "lb"),
  44239. name: "Kaiju",
  44240. image: {
  44241. source: "./media/characters/mochi/kaiju.svg",
  44242. extra: 460/324,
  44243. bottom: 40/500
  44244. }
  44245. },
  44246. head: {
  44247. height: math.unit(1.21, "feet"),
  44248. name: "Head",
  44249. image: {
  44250. source: "./media/characters/mochi/head.svg"
  44251. }
  44252. },
  44253. alternateTail: {
  44254. height: math.unit(2 + 8/12, "feet"),
  44255. weight: math.unit(45, "lb"),
  44256. name: "Alternate Tail",
  44257. image: {
  44258. source: "./media/characters/mochi/alternate-tail.svg",
  44259. extra: 139/76,
  44260. bottom: 45/184
  44261. }
  44262. },
  44263. },
  44264. [
  44265. {
  44266. name: "Micro",
  44267. height: math.unit(2, "inches")
  44268. },
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(2 + 8/12, "feet"),
  44272. default: true
  44273. },
  44274. {
  44275. name: "Macro",
  44276. height: math.unit(106, "feet")
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(5.67, "feet"),
  44285. weight: math.unit(135, "lb"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/sarel/front.svg",
  44289. extra: 865/788,
  44290. bottom: 97/962
  44291. }
  44292. },
  44293. back: {
  44294. height: math.unit(5.67, "feet"),
  44295. weight: math.unit(135, "lb"),
  44296. name: "Back",
  44297. image: {
  44298. source: "./media/characters/sarel/back.svg",
  44299. extra: 857/777,
  44300. bottom: 32/889
  44301. }
  44302. },
  44303. chozoan: {
  44304. height: math.unit(5.67, "feet"),
  44305. weight: math.unit(135, "lb"),
  44306. name: "Chozoan",
  44307. image: {
  44308. source: "./media/characters/sarel/chozoan.svg",
  44309. extra: 865/788,
  44310. bottom: 97/962
  44311. }
  44312. },
  44313. current: {
  44314. height: math.unit(5.67, "feet"),
  44315. weight: math.unit(135, "lb"),
  44316. name: "Current",
  44317. image: {
  44318. source: "./media/characters/sarel/current.svg",
  44319. extra: 865/788,
  44320. bottom: 97/962
  44321. }
  44322. },
  44323. head: {
  44324. height: math.unit(1.77, "feet"),
  44325. name: "Head",
  44326. image: {
  44327. source: "./media/characters/sarel/head.svg"
  44328. }
  44329. },
  44330. claws: {
  44331. height: math.unit(1.8, "feet"),
  44332. name: "Claws",
  44333. image: {
  44334. source: "./media/characters/sarel/claws.svg"
  44335. }
  44336. },
  44337. clawsAlt: {
  44338. height: math.unit(1.8, "feet"),
  44339. name: "Claws-alt",
  44340. image: {
  44341. source: "./media/characters/sarel/claws-alt.svg"
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(5.67, "feet"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44355. {
  44356. front: {
  44357. height: math.unit(5500, "feet"),
  44358. name: "Front",
  44359. image: {
  44360. source: "./media/characters/alyonia/front.svg",
  44361. extra: 1200/1135,
  44362. bottom: 29/1229
  44363. }
  44364. },
  44365. back: {
  44366. height: math.unit(5500, "feet"),
  44367. name: "Back",
  44368. image: {
  44369. source: "./media/characters/alyonia/back.svg",
  44370. extra: 1205/1138,
  44371. bottom: 10/1215
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Small",
  44378. height: math.unit(10, "feet")
  44379. },
  44380. {
  44381. name: "Macro",
  44382. height: math.unit(500, "feet")
  44383. },
  44384. {
  44385. name: "Mega Macro",
  44386. height: math.unit(5500, "feet"),
  44387. default: true
  44388. },
  44389. {
  44390. name: "Mega Macro+",
  44391. height: math.unit(500000, "feet")
  44392. },
  44393. {
  44394. name: "Giga Macro",
  44395. height: math.unit(3000, "miles")
  44396. },
  44397. {
  44398. name: "Tera Macro",
  44399. height: math.unit(2.8e6, "miles")
  44400. },
  44401. {
  44402. name: "Galactic",
  44403. height: math.unit(120000, "lightyears")
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44409. {
  44410. werewolf: {
  44411. height: math.unit(8, "feet"),
  44412. weight: math.unit(425, "lb"),
  44413. name: "Werewolf",
  44414. image: {
  44415. source: "./media/characters/autumn/werewolf.svg",
  44416. extra: 2154/2031,
  44417. bottom: 160/2314
  44418. }
  44419. },
  44420. human: {
  44421. height: math.unit(5 + 8/12, "feet"),
  44422. weight: math.unit(150, "lb"),
  44423. name: "Human",
  44424. image: {
  44425. source: "./media/characters/autumn/human.svg",
  44426. extra: 1200/1149,
  44427. bottom: 30/1230
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Normal",
  44434. height: math.unit(8, "feet"),
  44435. default: true
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44441. {
  44442. front: {
  44443. height: math.unit(8 + 5/12, "feet"),
  44444. weight: math.unit(825, "lb"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/cobalt-charizard/front.svg",
  44448. extra: 1268/1155,
  44449. bottom: 122/1390
  44450. }
  44451. },
  44452. side: {
  44453. height: math.unit(8 + 5/12, "feet"),
  44454. weight: math.unit(825, "lb"),
  44455. name: "Side",
  44456. image: {
  44457. source: "./media/characters/cobalt-charizard/side.svg",
  44458. extra: 1348/1257,
  44459. bottom: 58/1406
  44460. }
  44461. },
  44462. gMax: {
  44463. height: math.unit(134 + 11/12, "feet"),
  44464. name: "G-Max",
  44465. image: {
  44466. source: "./media/characters/cobalt-charizard/g-max.svg",
  44467. extra: 1835/1541,
  44468. bottom: 151/1986
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(8 + 5/12, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(6 + 3/12, "feet"),
  44485. weight: math.unit(210, "lb"),
  44486. name: "Front",
  44487. image: {
  44488. source: "./media/characters/stella/front.svg",
  44489. extra: 3549/3335,
  44490. bottom: 51/3600
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(6 + 3/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(5, "feet"),
  44507. weight: math.unit(90, "lb"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/riley-bishop/front.svg",
  44511. extra: 1450/1428,
  44512. bottom: 152/1602
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(5, "feet"),
  44520. default: true
  44521. },
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44526. {
  44527. side: {
  44528. height: math.unit(8 + 2/12, "feet"),
  44529. weight: math.unit(500, "kg"),
  44530. name: "Side",
  44531. image: {
  44532. source: "./media/characters/theo-arcanine/side.svg",
  44533. extra: 1342/1074,
  44534. bottom: 111/1453
  44535. }
  44536. },
  44537. },
  44538. [
  44539. {
  44540. name: "Normal",
  44541. height: math.unit(8 + 2/12, "feet"),
  44542. default: true
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44548. {
  44549. front: {
  44550. height: math.unit(4, "feet"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/kali/front.svg",
  44554. extra: 1921/1357,
  44555. bottom: 70/1991
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(4, "feet"),
  44563. default: true
  44564. },
  44565. {
  44566. name: "Macro",
  44567. height: math.unit(32, "meters")
  44568. },
  44569. {
  44570. name: "Macro+",
  44571. height: math.unit(150, "meters")
  44572. },
  44573. {
  44574. name: "Megamacro",
  44575. height: math.unit(7500, "meters")
  44576. },
  44577. {
  44578. name: "Megamacro+",
  44579. height: math.unit(80, "kilometers")
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44585. {
  44586. side: {
  44587. height: math.unit(5 + 11/12, "feet"),
  44588. weight: math.unit(236, "lb"),
  44589. name: "Side",
  44590. image: {
  44591. source: "./media/characters/gapp/side.svg",
  44592. extra: 775/340,
  44593. bottom: 58/833
  44594. }
  44595. },
  44596. mouth: {
  44597. height: math.unit(2.98, "feet"),
  44598. name: "Mouth",
  44599. image: {
  44600. source: "./media/characters/gapp/mouth.svg"
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "Normal",
  44607. height: math.unit(5 + 1/12, "feet"),
  44608. default: true
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(6, "feet"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/persephone/front.svg",
  44620. extra: 1895/1717,
  44621. bottom: 96/1991
  44622. }
  44623. },
  44624. back: {
  44625. height: math.unit(6, "feet"),
  44626. name: "Back",
  44627. image: {
  44628. source: "./media/characters/persephone/back.svg",
  44629. extra: 1868/1679,
  44630. bottom: 26/1894
  44631. }
  44632. },
  44633. casual: {
  44634. height: math.unit(6, "feet"),
  44635. name: "Casual",
  44636. image: {
  44637. source: "./media/characters/persephone/casual.svg",
  44638. extra: 1713/1541,
  44639. bottom: 76/1789
  44640. }
  44641. },
  44642. },
  44643. [
  44644. {
  44645. name: "Human Size",
  44646. height: math.unit(6, "feet")
  44647. },
  44648. {
  44649. name: "Big Steppy",
  44650. height: math.unit(600, "meters"),
  44651. default: true
  44652. },
  44653. {
  44654. name: "Galaxy Brain",
  44655. height: math.unit(1, "zettameter")
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44661. {
  44662. front: {
  44663. height: math.unit(1.85, "meters"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/riley-foxthing/front.svg",
  44667. extra: 1495/1354,
  44668. bottom: 122/1617
  44669. }
  44670. },
  44671. frontAlt: {
  44672. height: math.unit(1.85, "meters"),
  44673. name: "Front (Alt)",
  44674. image: {
  44675. source: "./media/characters/riley-foxthing/front-alt.svg",
  44676. extra: 1572/1389,
  44677. bottom: 116/1688
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal Sized",
  44684. height: math.unit(1.85, "meters"),
  44685. default: true
  44686. },
  44687. {
  44688. name: "Quite Sizable",
  44689. height: math.unit(5, "meters")
  44690. },
  44691. {
  44692. name: "Rather Large",
  44693. height: math.unit(20, "meters")
  44694. },
  44695. {
  44696. name: "Macro",
  44697. height: math.unit(450, "meters")
  44698. },
  44699. {
  44700. name: "Giga",
  44701. height: math.unit(5, "km")
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44707. {
  44708. front: {
  44709. height: math.unit(6, "feet"),
  44710. weight: math.unit(200, "lb"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/blizzard/front.svg",
  44714. extra: 1136/990,
  44715. bottom: 136/1272
  44716. }
  44717. },
  44718. back: {
  44719. height: math.unit(6, "feet"),
  44720. weight: math.unit(200, "lb"),
  44721. name: "Back",
  44722. image: {
  44723. source: "./media/characters/blizzard/back.svg",
  44724. extra: 1175/1034,
  44725. bottom: 97/1272
  44726. }
  44727. },
  44728. sitting: {
  44729. height: math.unit(3.725, "feet"),
  44730. weight: math.unit(200, "lb"),
  44731. name: "Sitting",
  44732. image: {
  44733. source: "./media/characters/blizzard/sitting.svg",
  44734. extra: 581/485,
  44735. bottom: 90/671
  44736. }
  44737. },
  44738. frontWizard: {
  44739. height: math.unit(7.9, "feet"),
  44740. weight: math.unit(200, "lb"),
  44741. name: "Front (Wizard)",
  44742. image: {
  44743. source: "./media/characters/blizzard/front-wizard.svg"
  44744. }
  44745. },
  44746. backWizard: {
  44747. height: math.unit(7.9, "feet"),
  44748. weight: math.unit(200, "lb"),
  44749. name: "Back (Wizard)",
  44750. image: {
  44751. source: "./media/characters/blizzard/back-wizard.svg"
  44752. }
  44753. },
  44754. frontNsfw: {
  44755. height: math.unit(6, "feet"),
  44756. weight: math.unit(200, "lb"),
  44757. name: "Front (NSFW)",
  44758. image: {
  44759. source: "./media/characters/blizzard/front-nsfw.svg",
  44760. extra: 1136/990,
  44761. bottom: 136/1272
  44762. }
  44763. },
  44764. backNsfw: {
  44765. height: math.unit(6, "feet"),
  44766. weight: math.unit(200, "lb"),
  44767. name: "Back (NSFW)",
  44768. image: {
  44769. source: "./media/characters/blizzard/back-nsfw.svg",
  44770. extra: 1175/1034,
  44771. bottom: 97/1272
  44772. }
  44773. },
  44774. sittingNsfw: {
  44775. height: math.unit(3.725, "feet"),
  44776. weight: math.unit(200, "lb"),
  44777. name: "Sitting (NSFW)",
  44778. image: {
  44779. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44780. extra: 581/485,
  44781. bottom: 90/671
  44782. }
  44783. },
  44784. wizardFrontNsfw: {
  44785. height: math.unit(7.9, "feet"),
  44786. weight: math.unit(200, "lb"),
  44787. name: "Wizard (Front, NSFW)",
  44788. image: {
  44789. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Normal",
  44796. height: math.unit(6, "feet"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(5 + 2/12, "feet"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/lumi/front.svg",
  44809. extra: 1328/1268,
  44810. bottom: 103/1431
  44811. }
  44812. },
  44813. back: {
  44814. height: math.unit(5 + 2/12, "feet"),
  44815. name: "Back",
  44816. image: {
  44817. source: "./media/characters/lumi/back.svg",
  44818. extra: 1381/1327,
  44819. bottom: 43/1424
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(5 + 2/12, "feet"),
  44827. default: true
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(5 + 9/12, "feet"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/aliya-cotton/front.svg",
  44839. extra: 577/564,
  44840. bottom: 29/606
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Normal",
  44847. height: math.unit(5 + 9/12, "feet"),
  44848. default: true
  44849. },
  44850. ]
  44851. ))
  44852. characterMakers.push(() => makeCharacter(
  44853. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44854. {
  44855. front: {
  44856. height: math.unit(2.7, "meters"),
  44857. weight: math.unit(25000, "lb"),
  44858. name: "Front",
  44859. image: {
  44860. source: "./media/characters/noah-luxray/front.svg",
  44861. extra: 1644/825,
  44862. bottom: 339/1983
  44863. }
  44864. },
  44865. side: {
  44866. height: math.unit(2.97, "meters"),
  44867. weight: math.unit(25000, "lb"),
  44868. name: "Side",
  44869. image: {
  44870. source: "./media/characters/noah-luxray/side.svg",
  44871. extra: 1319/650,
  44872. bottom: 163/1482
  44873. }
  44874. },
  44875. dick: {
  44876. height: math.unit(7.4, "feet"),
  44877. weight: math.unit(2500, "lb"),
  44878. name: "Dick",
  44879. image: {
  44880. source: "./media/characters/noah-luxray/dick.svg"
  44881. }
  44882. },
  44883. dickAlt: {
  44884. height: math.unit(10.83, "feet"),
  44885. weight: math.unit(2500, "lb"),
  44886. name: "Dick-alt",
  44887. image: {
  44888. source: "./media/characters/noah-luxray/dick-alt.svg"
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "BIG",
  44895. height: math.unit(2.7, "meters"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44902. {
  44903. standing: {
  44904. height: math.unit(183, "cm"),
  44905. weight: math.unit(68, "kg"),
  44906. name: "Standing",
  44907. image: {
  44908. source: "./media/characters/arion/standing.svg",
  44909. extra: 1869/1807,
  44910. bottom: 93/1962
  44911. }
  44912. },
  44913. reclining: {
  44914. height: math.unit(70.5, "cm"),
  44915. weight: math.unit(68, "lb"),
  44916. name: "Reclining",
  44917. image: {
  44918. source: "./media/characters/arion/reclining.svg",
  44919. extra: 937/870,
  44920. bottom: 63/1000
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Colossus Size, Low",
  44927. height: math.unit(33, "meters"),
  44928. default: true
  44929. },
  44930. {
  44931. name: "Colossus Size, Mid",
  44932. height: math.unit(52, "meters")
  44933. },
  44934. {
  44935. name: "Colossus Size, High",
  44936. height: math.unit(60, "meters")
  44937. },
  44938. {
  44939. name: "Titan Size, Low",
  44940. height: math.unit(91, "meters"),
  44941. },
  44942. {
  44943. name: "Titan Size, Mid",
  44944. height: math.unit(122, "meters")
  44945. },
  44946. {
  44947. name: "Titan Size, High",
  44948. height: math.unit(162, "meters")
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(53, "meters"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/stellar-marbey/front.svg",
  44960. extra: 1913/1805,
  44961. bottom: 92/2005
  44962. }
  44963. },
  44964. back: {
  44965. height: math.unit(53, "meters"),
  44966. name: "Back",
  44967. image: {
  44968. source: "./media/characters/stellar-marbey/back.svg",
  44969. extra: 1960/1851,
  44970. bottom: 28/1988
  44971. }
  44972. },
  44973. mouth: {
  44974. height: math.unit(3.5, "meters"),
  44975. name: "Mouth",
  44976. image: {
  44977. source: "./media/characters/stellar-marbey/mouth.svg"
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Macro",
  44984. height: math.unit(53, "meters"),
  44985. default: true
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44991. {
  44992. front: {
  44993. height: math.unit(8 + 1/12, "feet"),
  44994. weight: math.unit(233, "lb"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/matsu/front.svg",
  44998. extra: 832/772,
  44999. bottom: 40/872
  45000. }
  45001. },
  45002. back: {
  45003. height: math.unit(8 + 1/12, "feet"),
  45004. weight: math.unit(233, "lb"),
  45005. name: "Back",
  45006. image: {
  45007. source: "./media/characters/matsu/back.svg",
  45008. extra: 839/780,
  45009. bottom: 47/886
  45010. }
  45011. },
  45012. },
  45013. [
  45014. {
  45015. name: "Normal",
  45016. height: math.unit(8 + 1/12, "feet"),
  45017. default: true
  45018. },
  45019. ]
  45020. ))
  45021. characterMakers.push(() => makeCharacter(
  45022. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45023. {
  45024. front: {
  45025. height: math.unit(4, "feet"),
  45026. weight: math.unit(148, "lb"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/thiz/front.svg",
  45030. extra: 1913/1748,
  45031. bottom: 62/1975
  45032. }
  45033. },
  45034. },
  45035. [
  45036. {
  45037. name: "Normal",
  45038. height: math.unit(4, "feet"),
  45039. default: true
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45045. {
  45046. front: {
  45047. height: math.unit(7 + 6/12, "feet"),
  45048. weight: math.unit(267, "lb"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/marcel/front.svg",
  45052. extra: 1221/1096,
  45053. bottom: 76/1297
  45054. }
  45055. },
  45056. },
  45057. [
  45058. {
  45059. name: "Normal",
  45060. height: math.unit(7 + 6/12, "feet"),
  45061. default: true
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45067. {
  45068. side: {
  45069. height: math.unit(42, "meters"),
  45070. name: "Side",
  45071. image: {
  45072. source: "./media/characters/flake/side.svg",
  45073. extra: 1525/1306,
  45074. bottom: 209/1734
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(42, "meters"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45088. {
  45089. dressed: {
  45090. height: math.unit(6 + 4/12, "feet"),
  45091. weight: math.unit(520, "lb"),
  45092. name: "Dressed",
  45093. image: {
  45094. source: "./media/characters/someonne/dressed.svg",
  45095. extra: 1020/1010,
  45096. bottom: 178/1198
  45097. }
  45098. },
  45099. undressed: {
  45100. height: math.unit(6 + 4/12, "feet"),
  45101. weight: math.unit(520, "lb"),
  45102. name: "Undressed",
  45103. image: {
  45104. source: "./media/characters/someonne/undressed.svg",
  45105. extra: 1019/1014,
  45106. bottom: 169/1188
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Normal",
  45113. height: math.unit(6 + 4/12, "feet"),
  45114. default: true
  45115. },
  45116. ]
  45117. ))
  45118. characterMakers.push(() => makeCharacter(
  45119. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45120. {
  45121. front: {
  45122. height: math.unit(3, "feet"),
  45123. weight: math.unit(30, "lb"),
  45124. name: "Front",
  45125. image: {
  45126. source: "./media/characters/till/front.svg",
  45127. extra: 892/823,
  45128. bottom: 55/947
  45129. }
  45130. },
  45131. },
  45132. [
  45133. {
  45134. name: "Normal",
  45135. height: math.unit(3, "feet"),
  45136. default: true
  45137. },
  45138. ]
  45139. ))
  45140. characterMakers.push(() => makeCharacter(
  45141. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45142. {
  45143. front: {
  45144. height: math.unit(9 + 8/12, "feet"),
  45145. weight: math.unit(800, "lb"),
  45146. name: "Front",
  45147. image: {
  45148. source: "./media/characters/sydney-heki/front.svg",
  45149. extra: 1360/1300,
  45150. bottom: 22/1382
  45151. }
  45152. },
  45153. back: {
  45154. height: math.unit(9 + 8/12, "feet"),
  45155. weight: math.unit(800, "lb"),
  45156. name: "Back",
  45157. image: {
  45158. source: "./media/characters/sydney-heki/back.svg",
  45159. extra: 1356/1293,
  45160. bottom: 12/1368
  45161. }
  45162. },
  45163. frontDressed: {
  45164. height: math.unit(9 + 8/12, "feet"),
  45165. weight: math.unit(800, "lb"),
  45166. name: "Front-dressed",
  45167. image: {
  45168. source: "./media/characters/sydney-heki/front-dressed.svg",
  45169. extra: 1360/1300,
  45170. bottom: 22/1382
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Normal",
  45177. height: math.unit(9 + 8/12, "feet"),
  45178. default: true
  45179. },
  45180. {
  45181. name: "Macro",
  45182. height: math.unit(500, "feet")
  45183. },
  45184. {
  45185. name: "Megamacro",
  45186. height: math.unit(3.6, "miles")
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(200, "cm"),
  45195. weight: math.unit(250, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/fowler-karlsson/front.svg",
  45199. extra: 897/845,
  45200. bottom: 123/1020
  45201. }
  45202. },
  45203. back: {
  45204. height: math.unit(200, "cm"),
  45205. weight: math.unit(250, "lb"),
  45206. name: "Back",
  45207. image: {
  45208. source: "./media/characters/fowler-karlsson/back.svg",
  45209. extra: 999/944,
  45210. bottom: 26/1025
  45211. }
  45212. },
  45213. dick: {
  45214. height: math.unit(1.92, "feet"),
  45215. weight: math.unit(150, "lb"),
  45216. name: "Dick",
  45217. image: {
  45218. source: "./media/characters/fowler-karlsson/dick.svg"
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(200, "cm"),
  45226. default: true
  45227. },
  45228. {
  45229. name: "Smaller Macro",
  45230. height: math.unit(90, "m")
  45231. },
  45232. {
  45233. name: "Macro",
  45234. height: math.unit(150, "m")
  45235. },
  45236. {
  45237. name: "Bigger Macro",
  45238. height: math.unit(300, "m")
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45244. {
  45245. side: {
  45246. height: math.unit(8 + 2/12, "feet"),
  45247. weight: math.unit(1, "tonne"),
  45248. name: "Side",
  45249. image: {
  45250. source: "./media/characters/rylide/side.svg",
  45251. extra: 1318/1034,
  45252. bottom: 106/1424
  45253. }
  45254. },
  45255. sitting: {
  45256. height: math.unit(303, "cm"),
  45257. weight: math.unit(1, "tonne"),
  45258. name: "Sitting",
  45259. image: {
  45260. source: "./media/characters/rylide/sitting.svg",
  45261. extra: 1303/1103,
  45262. bottom: 36/1339
  45263. }
  45264. },
  45265. },
  45266. [
  45267. {
  45268. name: "Normal",
  45269. height: math.unit(8 + 2/12, "feet"),
  45270. default: true
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45276. {
  45277. front: {
  45278. height: math.unit(5 + 10/12, "feet"),
  45279. weight: math.unit(160, "lb"),
  45280. name: "Front",
  45281. image: {
  45282. source: "./media/characters/pudask/front.svg",
  45283. extra: 1616/1590,
  45284. bottom: 161/1777
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Ferret Height",
  45291. height: math.unit(2 + 5/12, "feet")
  45292. },
  45293. {
  45294. name: "Canon Height",
  45295. height: math.unit(5 + 10/12, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(3 + 6/12, "feet"),
  45305. weight: math.unit(60, "lb"),
  45306. name: "Front",
  45307. image: {
  45308. source: "./media/characters/ramita/front.svg",
  45309. extra: 1402/1232,
  45310. bottom: 62/1464
  45311. }
  45312. },
  45313. dressed: {
  45314. height: math.unit(3 + 6/12, "feet"),
  45315. weight: math.unit(60, "lb"),
  45316. name: "Dressed",
  45317. image: {
  45318. source: "./media/characters/ramita/dressed.svg",
  45319. extra: 1534/1249,
  45320. bottom: 50/1584
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(3 + 6/12, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(8, "feet"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/ark/front.svg",
  45340. extra: 772/693,
  45341. bottom: 45/817
  45342. }
  45343. },
  45344. },
  45345. [
  45346. {
  45347. name: "Normal",
  45348. height: math.unit(8, "feet"),
  45349. default: true
  45350. },
  45351. ]
  45352. ))
  45353. characterMakers.push(() => makeCharacter(
  45354. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45355. {
  45356. front: {
  45357. height: math.unit(6, "feet"),
  45358. weight: math.unit(250, "lb"),
  45359. volume: math.unit(5/8, "gallons"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/ludwig-horn/front.svg",
  45363. extra: 1782/1635,
  45364. bottom: 96/1878
  45365. }
  45366. },
  45367. back: {
  45368. height: math.unit(6, "feet"),
  45369. weight: math.unit(250, "lb"),
  45370. volume: math.unit(5/8, "gallons"),
  45371. name: "Back",
  45372. image: {
  45373. source: "./media/characters/ludwig-horn/back.svg",
  45374. extra: 1874/1729,
  45375. bottom: 27/1901
  45376. }
  45377. },
  45378. dick: {
  45379. height: math.unit(1.05, "feet"),
  45380. weight: math.unit(15, "lb"),
  45381. volume: math.unit(5/8, "gallons"),
  45382. name: "Dick",
  45383. image: {
  45384. source: "./media/characters/ludwig-horn/dick.svg"
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Small",
  45391. height: math.unit(6, "feet")
  45392. },
  45393. {
  45394. name: "Typical",
  45395. height: math.unit(12, "feet"),
  45396. default: true
  45397. },
  45398. {
  45399. name: "Building",
  45400. height: math.unit(80, "feet")
  45401. },
  45402. {
  45403. name: "Town",
  45404. height: math.unit(800, "feet")
  45405. },
  45406. {
  45407. name: "Kingdom",
  45408. height: math.unit(80000, "feet")
  45409. },
  45410. {
  45411. name: "Planet",
  45412. height: math.unit(8000000, "feet")
  45413. },
  45414. {
  45415. name: "Universe",
  45416. height: math.unit(8000000000, "feet")
  45417. },
  45418. {
  45419. name: "Transcended",
  45420. height: math.unit(8e27, "feet")
  45421. },
  45422. ]
  45423. ))
  45424. characterMakers.push(() => makeCharacter(
  45425. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45426. {
  45427. front: {
  45428. height: math.unit(5, "feet"),
  45429. weight: math.unit(50, "kg"),
  45430. name: "Front",
  45431. image: {
  45432. source: "./media/characters/biot-avery/front.svg",
  45433. extra: 1295/1232,
  45434. bottom: 86/1381
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(5, "feet"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(6, "feet"),
  45451. name: "Front",
  45452. image: {
  45453. source: "./media/characters/kitsune-kiro/front.svg",
  45454. extra: 1270/1158,
  45455. bottom: 42/1312
  45456. }
  45457. },
  45458. frontAlt: {
  45459. height: math.unit(6, "feet"),
  45460. name: "Front-alt",
  45461. image: {
  45462. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45463. extra: 1130/1081,
  45464. bottom: 36/1166
  45465. }
  45466. },
  45467. },
  45468. [
  45469. {
  45470. name: "Smol",
  45471. height: math.unit(3, "feet")
  45472. },
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(6, "feet"),
  45476. default: true
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(6, "feet"),
  45485. weight: math.unit(125, "lb"),
  45486. name: "Front",
  45487. image: {
  45488. source: "./media/characters/jack-thatcher/front.svg",
  45489. extra: 1474/1370,
  45490. bottom: 26/1500
  45491. }
  45492. },
  45493. back: {
  45494. height: math.unit(6, "feet"),
  45495. weight: math.unit(125, "lb"),
  45496. name: "Back",
  45497. image: {
  45498. source: "./media/characters/jack-thatcher/back.svg",
  45499. extra: 1489/1384,
  45500. bottom: 18/1507
  45501. }
  45502. },
  45503. },
  45504. [
  45505. {
  45506. name: "Normal",
  45507. height: math.unit(6, "feet"),
  45508. default: true
  45509. },
  45510. {
  45511. name: "Macro",
  45512. height: math.unit(75, "feet")
  45513. },
  45514. {
  45515. name: "Macro-er",
  45516. height: math.unit(250, "feet")
  45517. },
  45518. ]
  45519. ))
  45520. characterMakers.push(() => makeCharacter(
  45521. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45522. {
  45523. front: {
  45524. height: math.unit(7, "feet"),
  45525. weight: math.unit(110, "kg"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/max-hyper/front.svg",
  45529. extra: 1969/1881,
  45530. bottom: 49/2018
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(7, "feet"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(5 + 5/12, "feet"),
  45547. weight: math.unit(160, "lb"),
  45548. name: "Front",
  45549. image: {
  45550. source: "./media/characters/spook/front.svg",
  45551. extra: 794/791,
  45552. bottom: 54/848
  45553. }
  45554. },
  45555. back: {
  45556. height: math.unit(5 + 5/12, "feet"),
  45557. weight: math.unit(160, "lb"),
  45558. name: "Back",
  45559. image: {
  45560. source: "./media/characters/spook/back.svg",
  45561. extra: 812/798,
  45562. bottom: 32/844
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(5 + 5/12, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(18, "feet"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/xeaduulix/front.svg",
  45582. extra: 1380/1166,
  45583. bottom: 110/1490
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(18, "feet"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/xeaduulix/back.svg",
  45591. extra: 1592/1170,
  45592. bottom: 128/1720
  45593. }
  45594. },
  45595. frontNsfw: {
  45596. height: math.unit(18, "feet"),
  45597. name: "Front (NSFW)",
  45598. image: {
  45599. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45600. extra: 1380/1166,
  45601. bottom: 110/1490
  45602. }
  45603. },
  45604. backNsfw: {
  45605. height: math.unit(18, "feet"),
  45606. name: "Back (NSFW)",
  45607. image: {
  45608. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45609. extra: 1592/1170,
  45610. bottom: 128/1720
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Normal",
  45617. height: math.unit(18, "feet"),
  45618. default: true
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45624. {
  45625. spreadWings: {
  45626. height: math.unit(20, "feet"),
  45627. name: "Spread Wings",
  45628. image: {
  45629. source: "./media/characters/fledge/spread-wings.svg",
  45630. extra: 693/635,
  45631. bottom: 26/719
  45632. }
  45633. },
  45634. front: {
  45635. height: math.unit(20, "feet"),
  45636. name: "Front",
  45637. image: {
  45638. source: "./media/characters/fledge/front.svg",
  45639. extra: 684/637,
  45640. bottom: 18/702
  45641. }
  45642. },
  45643. frontAlt: {
  45644. height: math.unit(20, "feet"),
  45645. name: "Front (Alt)",
  45646. image: {
  45647. source: "./media/characters/fledge/front-alt.svg",
  45648. extra: 708/664,
  45649. bottom: 13/721
  45650. }
  45651. },
  45652. back: {
  45653. height: math.unit(20, "feet"),
  45654. name: "Back",
  45655. image: {
  45656. source: "./media/characters/fledge/back.svg",
  45657. extra: 718/634,
  45658. bottom: 22/740
  45659. }
  45660. },
  45661. head: {
  45662. height: math.unit(5.55, "feet"),
  45663. name: "Head",
  45664. image: {
  45665. source: "./media/characters/fledge/head.svg"
  45666. }
  45667. },
  45668. headAlt: {
  45669. height: math.unit(5.1, "feet"),
  45670. name: "Head (Alt)",
  45671. image: {
  45672. source: "./media/characters/fledge/head-alt.svg"
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Small",
  45679. height: math.unit(6 + 2/12, "feet")
  45680. },
  45681. {
  45682. name: "Big",
  45683. height: math.unit(20, "feet"),
  45684. default: true
  45685. },
  45686. {
  45687. name: "Giant",
  45688. height: math.unit(100, "feet")
  45689. },
  45690. {
  45691. name: "Macro",
  45692. height: math.unit(200, "feet")
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45698. {
  45699. front: {
  45700. height: math.unit(1, "meter"),
  45701. name: "Front",
  45702. image: {
  45703. source: "./media/characters/atlas-morenai/front.svg",
  45704. extra: 1275/1043,
  45705. bottom: 19/1294
  45706. }
  45707. },
  45708. back: {
  45709. height: math.unit(1, "meter"),
  45710. name: "Back",
  45711. image: {
  45712. source: "./media/characters/atlas-morenai/back.svg",
  45713. extra: 1141/1001,
  45714. bottom: 25/1166
  45715. }
  45716. },
  45717. },
  45718. [
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(1, "meter"),
  45722. default: true
  45723. },
  45724. {
  45725. name: "Magic-Infused",
  45726. height: math.unit(5, "meters")
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45732. {
  45733. front: {
  45734. height: math.unit(5, "meters"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/cintia/front.svg",
  45738. extra: 1312/1228,
  45739. bottom: 38/1350
  45740. }
  45741. },
  45742. back: {
  45743. height: math.unit(5, "meters"),
  45744. name: "Back",
  45745. image: {
  45746. source: "./media/characters/cintia/back.svg",
  45747. extra: 1260/1166,
  45748. bottom: 98/1358
  45749. }
  45750. },
  45751. frontDick: {
  45752. height: math.unit(5, "meters"),
  45753. name: "Front (Dick)",
  45754. image: {
  45755. source: "./media/characters/cintia/front-dick.svg",
  45756. extra: 1312/1228,
  45757. bottom: 38/1350
  45758. }
  45759. },
  45760. backDick: {
  45761. height: math.unit(5, "meters"),
  45762. name: "Back (Dick)",
  45763. image: {
  45764. source: "./media/characters/cintia/back-dick.svg",
  45765. extra: 1260/1166,
  45766. bottom: 98/1358
  45767. }
  45768. },
  45769. bust: {
  45770. height: math.unit(1.97, "meters"),
  45771. name: "Bust",
  45772. image: {
  45773. source: "./media/characters/cintia/bust.svg",
  45774. extra: 617/565,
  45775. bottom: 0/617
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(5, "meters"),
  45783. default: true
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45789. {
  45790. side: {
  45791. height: math.unit(100, "feet"),
  45792. name: "Side",
  45793. image: {
  45794. source: "./media/characters/denora/side.svg",
  45795. extra: 875/803,
  45796. bottom: 9/884
  45797. }
  45798. },
  45799. },
  45800. [
  45801. {
  45802. name: "Standard",
  45803. height: math.unit(100, "feet"),
  45804. default: true
  45805. },
  45806. {
  45807. name: "Grand",
  45808. height: math.unit(1000, "feet")
  45809. },
  45810. {
  45811. name: "Conquering",
  45812. height: math.unit(10000, "feet")
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45818. {
  45819. dressed: {
  45820. height: math.unit(8 + 5/12, "feet"),
  45821. weight: math.unit(700, "lb"),
  45822. name: "Dressed",
  45823. image: {
  45824. source: "./media/characters/kiva/dressed.svg",
  45825. extra: 1102/1055,
  45826. bottom: 60/1162
  45827. }
  45828. },
  45829. nude: {
  45830. height: math.unit(8 + 5/12, "feet"),
  45831. weight: math.unit(700, "lb"),
  45832. name: "Nude",
  45833. image: {
  45834. source: "./media/characters/kiva/nude.svg",
  45835. extra: 1102/1055,
  45836. bottom: 60/1162
  45837. }
  45838. },
  45839. },
  45840. [
  45841. {
  45842. name: "Base Height",
  45843. height: math.unit(8 + 5/12, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Macro",
  45848. height: math.unit(100, "feet")
  45849. },
  45850. {
  45851. name: "Max",
  45852. height: math.unit(3280, "feet")
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(6 + 8/12, "feet"),
  45861. weight: math.unit(250, "lb"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/ztragon/front.svg",
  45865. extra: 1825/1684,
  45866. bottom: 98/1923
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "Normal",
  45873. height: math.unit(6 + 8/12, "feet"),
  45874. default: true
  45875. },
  45876. {
  45877. name: "Macro",
  45878. height: math.unit(80, "feet")
  45879. },
  45880. ]
  45881. ))
  45882. characterMakers.push(() => makeCharacter(
  45883. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45884. {
  45885. front: {
  45886. height: math.unit(10.4, "feet"),
  45887. weight: math.unit(2, "tons"),
  45888. name: "Front",
  45889. image: {
  45890. source: "./media/characters/yesenia/front.svg",
  45891. extra: 1479/1474,
  45892. bottom: 233/1712
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Normal",
  45899. height: math.unit(10.4, "feet"),
  45900. default: true
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45906. {
  45907. normal: {
  45908. height: math.unit(6 + 1/12, "feet"),
  45909. weight: math.unit(180, "lb"),
  45910. name: "Normal",
  45911. image: {
  45912. source: "./media/characters/leanne-lycheborne/normal.svg",
  45913. extra: 1748/1660,
  45914. bottom: 98/1846
  45915. }
  45916. },
  45917. were: {
  45918. height: math.unit(12, "feet"),
  45919. weight: math.unit(1600, "lb"),
  45920. name: "Were",
  45921. image: {
  45922. source: "./media/characters/leanne-lycheborne/were.svg",
  45923. extra: 1485/1432,
  45924. bottom: 66/1551
  45925. }
  45926. },
  45927. },
  45928. [
  45929. {
  45930. name: "Normal",
  45931. height: math.unit(6 + 1/12, "feet"),
  45932. default: true
  45933. },
  45934. ]
  45935. ))
  45936. characterMakers.push(() => makeCharacter(
  45937. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45938. {
  45939. side: {
  45940. height: math.unit(13, "feet"),
  45941. name: "Side",
  45942. image: {
  45943. source: "./media/characters/kira-tyler/side.svg",
  45944. extra: 693/393,
  45945. bottom: 58/751
  45946. }
  45947. },
  45948. },
  45949. [
  45950. {
  45951. name: "Normal",
  45952. height: math.unit(13, "feet"),
  45953. default: true
  45954. },
  45955. ]
  45956. ))
  45957. characterMakers.push(() => makeCharacter(
  45958. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45959. {
  45960. front: {
  45961. height: math.unit(10.3, "feet"),
  45962. weight: math.unit(150, "lb"),
  45963. name: "Front",
  45964. image: {
  45965. source: "./media/characters/blaze/front.svg",
  45966. extra: 1378/1286,
  45967. bottom: 172/1550
  45968. }
  45969. },
  45970. },
  45971. [
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(10.3, "feet"),
  45975. default: true
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45981. {
  45982. side: {
  45983. height: math.unit(2, "meters"),
  45984. weight: math.unit(400, "kg"),
  45985. name: "Side",
  45986. image: {
  45987. source: "./media/characters/anu/side.svg",
  45988. extra: 506/394,
  45989. bottom: 18/524
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Humanoid",
  45996. height: math.unit(2, "meters")
  45997. },
  45998. {
  45999. name: "Normal",
  46000. height: math.unit(5, "meters"),
  46001. default: true
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46007. {
  46008. front: {
  46009. height: math.unit(5 + 5/12, "feet"),
  46010. weight: math.unit(170, "lb"),
  46011. name: "Front",
  46012. image: {
  46013. source: "./media/characters/synx-the-lynx/front.svg",
  46014. extra: 1893/1745,
  46015. bottom: 17/1910
  46016. }
  46017. },
  46018. side: {
  46019. height: math.unit(5 + 5/12, "feet"),
  46020. weight: math.unit(170, "lb"),
  46021. name: "Side",
  46022. image: {
  46023. source: "./media/characters/synx-the-lynx/side.svg",
  46024. extra: 1884/1740,
  46025. bottom: 39/1923
  46026. }
  46027. },
  46028. back: {
  46029. height: math.unit(5 + 5/12, "feet"),
  46030. weight: math.unit(170, "lb"),
  46031. name: "Back",
  46032. image: {
  46033. source: "./media/characters/synx-the-lynx/back.svg",
  46034. extra: 1903/1755,
  46035. bottom: 14/1917
  46036. }
  46037. },
  46038. },
  46039. [
  46040. {
  46041. name: "Normal",
  46042. height: math.unit(5 + 5/12, "feet"),
  46043. default: true
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46049. {
  46050. back: {
  46051. height: math.unit(15, "feet"),
  46052. name: "Back",
  46053. image: {
  46054. source: "./media/characters/nadezda-fex/back.svg",
  46055. extra: 1695/1481,
  46056. bottom: 25/1720
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(15, "feet"),
  46064. default: true
  46065. },
  46066. {
  46067. name: "Macro",
  46068. height: math.unit(2.5, "miles")
  46069. },
  46070. {
  46071. name: "Goddess",
  46072. height: math.unit(2, "multiverses")
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46078. {
  46079. front: {
  46080. height: math.unit(216, "cm"),
  46081. name: "Front",
  46082. image: {
  46083. source: "./media/characters/lev/front.svg",
  46084. extra: 1728/1670,
  46085. bottom: 82/1810
  46086. }
  46087. },
  46088. back: {
  46089. height: math.unit(216, "cm"),
  46090. name: "Back",
  46091. image: {
  46092. source: "./media/characters/lev/back.svg",
  46093. extra: 1738/1675,
  46094. bottom: 24/1762
  46095. }
  46096. },
  46097. dressed: {
  46098. height: math.unit(216, "cm"),
  46099. name: "Dressed",
  46100. image: {
  46101. source: "./media/characters/lev/dressed.svg",
  46102. extra: 1397/1351,
  46103. bottom: 73/1470
  46104. }
  46105. },
  46106. head: {
  46107. height: math.unit(0.51, "meter"),
  46108. name: "Head",
  46109. image: {
  46110. source: "./media/characters/lev/head.svg"
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Normal",
  46117. height: math.unit(216, "cm"),
  46118. default: true
  46119. },
  46120. {
  46121. name: "Relatively Macro",
  46122. height: math.unit(80, "meters")
  46123. },
  46124. {
  46125. name: "Megamacro",
  46126. height: math.unit(21600, "meters")
  46127. },
  46128. {
  46129. name: "Megamacro+",
  46130. height: math.unit(64800, "meters")
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46136. {
  46137. front: {
  46138. height: math.unit(2, "meters"),
  46139. weight: math.unit(80, "kg"),
  46140. name: "Front",
  46141. image: {
  46142. source: "./media/characters/moka/front.svg",
  46143. extra: 1337/1255,
  46144. bottom: 58/1395
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Micro",
  46151. height: math.unit(15, "cm")
  46152. },
  46153. {
  46154. name: "Normal",
  46155. height: math.unit(2, "meters"),
  46156. default: true
  46157. },
  46158. {
  46159. name: "Macro",
  46160. height: math.unit(20, "meters"),
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46166. {
  46167. front: {
  46168. height: math.unit(9, "feet"),
  46169. weight: math.unit(240, "lb"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/kuzco/front.svg",
  46173. extra: 1593/1487,
  46174. bottom: 32/1625
  46175. }
  46176. },
  46177. side: {
  46178. height: math.unit(9, "feet"),
  46179. weight: math.unit(240, "lb"),
  46180. name: "Side",
  46181. image: {
  46182. source: "./media/characters/kuzco/side.svg",
  46183. extra: 1575/1485,
  46184. bottom: 30/1605
  46185. }
  46186. },
  46187. back: {
  46188. height: math.unit(9, "feet"),
  46189. weight: math.unit(240, "lb"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/kuzco/back.svg",
  46193. extra: 1603/1514,
  46194. bottom: 14/1617
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(9, "feet"),
  46202. default: true
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46208. {
  46209. side: {
  46210. height: math.unit(2, "meters"),
  46211. weight: math.unit(300, "kg"),
  46212. name: "Side",
  46213. image: {
  46214. source: "./media/characters/ceruleus/side.svg",
  46215. extra: 1068/974,
  46216. bottom: 126/1194
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(16, "meters"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(9, "feet"),
  46233. weight: math.unit(500, "kg"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/acouya/front.svg",
  46237. extra: 1660/1473,
  46238. bottom: 28/1688
  46239. }
  46240. },
  46241. },
  46242. [
  46243. {
  46244. name: "Normal",
  46245. height: math.unit(9, "feet"),
  46246. default: true
  46247. },
  46248. ]
  46249. ))
  46250. characterMakers.push(() => makeCharacter(
  46251. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46252. {
  46253. front: {
  46254. height: math.unit(5 + 6/12, "feet"),
  46255. weight: math.unit(195, "lb"),
  46256. name: "Front",
  46257. image: {
  46258. source: "./media/characters/vant/front.svg",
  46259. extra: 1396/1320,
  46260. bottom: 20/1416
  46261. }
  46262. },
  46263. back: {
  46264. height: math.unit(5 + 6/12, "feet"),
  46265. weight: math.unit(195, "lb"),
  46266. name: "Back",
  46267. image: {
  46268. source: "./media/characters/vant/back.svg",
  46269. extra: 1396/1320,
  46270. bottom: 20/1416
  46271. }
  46272. },
  46273. maw: {
  46274. height: math.unit(0.75, "feet"),
  46275. name: "Maw",
  46276. image: {
  46277. source: "./media/characters/vant/maw.svg"
  46278. }
  46279. },
  46280. paw: {
  46281. height: math.unit(1.07, "feet"),
  46282. name: "Paw",
  46283. image: {
  46284. source: "./media/characters/vant/paw.svg"
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Micro",
  46291. height: math.unit(0.25, "inches")
  46292. },
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(5 + 6/12, "feet"),
  46296. default: true
  46297. },
  46298. {
  46299. name: "Macro",
  46300. height: math.unit(75, "feet")
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46306. {
  46307. front: {
  46308. height: math.unit(30, "meters"),
  46309. weight: math.unit(363, "tons"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/ahra/front.svg",
  46313. extra: 1914/1814,
  46314. bottom: 46/1960
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Macro",
  46321. height: math.unit(30, "meters"),
  46322. default: true
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46328. {
  46329. undressed: {
  46330. height: math.unit(2, "m"),
  46331. weight: math.unit(250, "kg"),
  46332. name: "Undressed",
  46333. image: {
  46334. source: "./media/characters/coriander/undressed.svg",
  46335. extra: 1757/1606,
  46336. bottom: 107/1864
  46337. }
  46338. },
  46339. dressed: {
  46340. height: math.unit(2, "m"),
  46341. weight: math.unit(250, "kg"),
  46342. name: "Dressed",
  46343. image: {
  46344. source: "./media/characters/coriander/dressed.svg",
  46345. extra: 1757/1606,
  46346. bottom: 107/1864
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(4, "meters"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "XL",
  46358. height: math.unit(6, "meters")
  46359. },
  46360. {
  46361. name: "XXL",
  46362. height: math.unit(8, "meters")
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46368. {
  46369. front: {
  46370. height: math.unit(6, "feet"),
  46371. name: "Front",
  46372. image: {
  46373. source: "./media/characters/syrinx/front.svg",
  46374. extra: 1557/1259,
  46375. bottom: 171/1728
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal",
  46382. height: math.unit(6 + 3/12, "feet"),
  46383. default: true
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46389. {
  46390. front: {
  46391. height: math.unit(11 + 6/12, "feet"),
  46392. weight: math.unit(1.5, "tons"),
  46393. name: "Front",
  46394. image: {
  46395. source: "./media/characters/bor/front.svg",
  46396. extra: 1189/1109,
  46397. bottom: 170/1359
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(11 + 6/12, "feet"),
  46405. default: true
  46406. },
  46407. {
  46408. name: "Macro",
  46409. height: math.unit(32 + 9/12, "feet")
  46410. },
  46411. ]
  46412. ))
  46413. characterMakers.push(() => makeCharacter(
  46414. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46415. {
  46416. anthro: {
  46417. height: math.unit(9, "feet"),
  46418. weight: math.unit(2076, "lb"),
  46419. name: "Anthro",
  46420. image: {
  46421. source: "./media/characters/abacus/anthro.svg",
  46422. extra: 1540/1494,
  46423. bottom: 233/1773
  46424. }
  46425. },
  46426. pigeon: {
  46427. height: math.unit(1, "feet"),
  46428. name: "Pigeon",
  46429. image: {
  46430. source: "./media/characters/abacus/pigeon.svg",
  46431. extra: 528/525,
  46432. bottom: 46/574
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(9, "feet"),
  46440. default: true
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46446. {
  46447. side: {
  46448. height: math.unit(6, "feet"),
  46449. name: "Side",
  46450. image: {
  46451. source: "./media/characters/delkhan/side.svg",
  46452. extra: 1884/1786,
  46453. bottom: 308/2192
  46454. }
  46455. },
  46456. head: {
  46457. height: math.unit(3.38, "feet"),
  46458. name: "Head",
  46459. image: {
  46460. source: "./media/characters/delkhan/head.svg"
  46461. }
  46462. },
  46463. },
  46464. [
  46465. {
  46466. name: "Normal",
  46467. height: math.unit(72, "feet"),
  46468. default: true
  46469. },
  46470. {
  46471. name: "Giant",
  46472. height: math.unit(172, "feet")
  46473. },
  46474. ]
  46475. ))
  46476. characterMakers.push(() => makeCharacter(
  46477. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46478. {
  46479. standing: {
  46480. height: math.unit(6, "feet"),
  46481. name: "Standing",
  46482. image: {
  46483. source: "./media/characters/euchidat/standing.svg",
  46484. extra: 1612/1553,
  46485. bottom: 116/1728
  46486. }
  46487. },
  46488. leaning: {
  46489. height: math.unit(6, "feet"),
  46490. name: "Leaning",
  46491. image: {
  46492. source: "./media/characters/euchidat/leaning.svg",
  46493. extra: 1719/1674,
  46494. bottom: 27/1746
  46495. }
  46496. },
  46497. },
  46498. [
  46499. {
  46500. name: "Normal",
  46501. height: math.unit(175, "feet"),
  46502. default: true
  46503. },
  46504. {
  46505. name: "Megamacro",
  46506. height: math.unit(190, "miles")
  46507. },
  46508. {
  46509. name: "Gigamacro",
  46510. height: math.unit(190000, "miles")
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(6, "feet"),
  46519. weight: math.unit(150, "lb"),
  46520. name: "Front",
  46521. image: {
  46522. source: "./media/characters/rebecca-stack/front.svg",
  46523. extra: 1256/1201,
  46524. bottom: 18/1274
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(5 + 8/12, "feet"),
  46532. default: true
  46533. },
  46534. {
  46535. name: "Demolitionist",
  46536. height: math.unit(200, "feet")
  46537. },
  46538. {
  46539. name: "Out of Control",
  46540. height: math.unit(2, "miles")
  46541. },
  46542. {
  46543. name: "Giga",
  46544. height: math.unit(7200, "miles")
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46550. {
  46551. front: {
  46552. height: math.unit(6, "feet"),
  46553. weight: math.unit(150, "lb"),
  46554. name: "Front",
  46555. image: {
  46556. source: "./media/characters/jenny-cartwright/front.svg",
  46557. extra: 1384/1376,
  46558. bottom: 58/1442
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(6 + 7/12, "feet"),
  46566. default: true
  46567. },
  46568. {
  46569. name: "Librarian",
  46570. height: math.unit(55, "feet")
  46571. },
  46572. {
  46573. name: "Sightseer",
  46574. height: math.unit(50, "miles")
  46575. },
  46576. {
  46577. name: "Giga",
  46578. height: math.unit(30000, "miles")
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46584. {
  46585. nude: {
  46586. height: math.unit(8, "feet"),
  46587. weight: math.unit(225, "lb"),
  46588. name: "Nude",
  46589. image: {
  46590. source: "./media/characters/marvy/nude.svg",
  46591. extra: 1900/1683,
  46592. bottom: 89/1989
  46593. }
  46594. },
  46595. dressed: {
  46596. height: math.unit(8, "feet"),
  46597. weight: math.unit(225, "lb"),
  46598. name: "Dressed",
  46599. image: {
  46600. source: "./media/characters/marvy/dressed.svg",
  46601. extra: 1900/1683,
  46602. bottom: 89/1989
  46603. }
  46604. },
  46605. head: {
  46606. height: math.unit(2.85, "feet"),
  46607. name: "Head",
  46608. image: {
  46609. source: "./media/characters/marvy/head.svg"
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(8, "feet"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46623. {
  46624. front: {
  46625. height: math.unit(8, "feet"),
  46626. weight: math.unit(250, "lb"),
  46627. name: "Front",
  46628. image: {
  46629. source: "./media/characters/leah/front.svg",
  46630. extra: 1257/1149,
  46631. bottom: 109/1366
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(8, "feet"),
  46639. default: true
  46640. },
  46641. {
  46642. name: "Minimacro",
  46643. height: math.unit(40, "feet")
  46644. },
  46645. {
  46646. name: "Macro",
  46647. height: math.unit(124, "feet")
  46648. },
  46649. {
  46650. name: "Megamacro",
  46651. height: math.unit(850, "feet")
  46652. },
  46653. ]
  46654. ))
  46655. characterMakers.push(() => makeCharacter(
  46656. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46657. {
  46658. side: {
  46659. height: math.unit(13 + 6/12, "feet"),
  46660. weight: math.unit(3200, "lb"),
  46661. name: "Side",
  46662. image: {
  46663. source: "./media/characters/alvir/side.svg",
  46664. extra: 896/589,
  46665. bottom: 26/922
  46666. }
  46667. },
  46668. },
  46669. [
  46670. {
  46671. name: "Normal",
  46672. height: math.unit(13 + 6/12, "feet"),
  46673. default: true
  46674. },
  46675. ]
  46676. ))
  46677. characterMakers.push(() => makeCharacter(
  46678. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46679. {
  46680. front: {
  46681. height: math.unit(5 + 4/12, "feet"),
  46682. weight: math.unit(236, "lb"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/zaina-khalil/front.svg",
  46686. extra: 1533/1485,
  46687. bottom: 94/1627
  46688. }
  46689. },
  46690. side: {
  46691. height: math.unit(5 + 4/12, "feet"),
  46692. weight: math.unit(236, "lb"),
  46693. name: "Side",
  46694. image: {
  46695. source: "./media/characters/zaina-khalil/side.svg",
  46696. extra: 1537/1498,
  46697. bottom: 66/1603
  46698. }
  46699. },
  46700. back: {
  46701. height: math.unit(5 + 4/12, "feet"),
  46702. weight: math.unit(236, "lb"),
  46703. name: "Back",
  46704. image: {
  46705. source: "./media/characters/zaina-khalil/back.svg",
  46706. extra: 1546/1494,
  46707. bottom: 89/1635
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(5 + 4/12, "feet"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46721. {
  46722. side: {
  46723. height: math.unit(12, "feet"),
  46724. weight: math.unit(4000, "lb"),
  46725. name: "Side",
  46726. image: {
  46727. source: "./media/characters/terry/side.svg",
  46728. extra: 1518/1439,
  46729. bottom: 149/1667
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(12, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(12, "feet"),
  46746. weight: math.unit(1500, "lb"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/kahea/front.svg",
  46750. extra: 1722/1617,
  46751. bottom: 179/1901
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(12, "feet"),
  46759. default: true
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46765. {
  46766. demonFront: {
  46767. height: math.unit(36, "feet"),
  46768. name: "Front",
  46769. image: {
  46770. source: "./media/characters/alex-xuria/demon-front.svg",
  46771. extra: 1705/1673,
  46772. bottom: 198/1903
  46773. },
  46774. form: "demon",
  46775. default: true
  46776. },
  46777. demonBack: {
  46778. height: math.unit(36, "feet"),
  46779. name: "Back",
  46780. image: {
  46781. source: "./media/characters/alex-xuria/demon-back.svg",
  46782. extra: 1725/1693,
  46783. bottom: 70/1795
  46784. },
  46785. form: "demon"
  46786. },
  46787. demonHead: {
  46788. height: math.unit(2.14, "meters"),
  46789. name: "Head",
  46790. image: {
  46791. source: "./media/characters/alex-xuria/demon-head.svg"
  46792. },
  46793. form: "demon"
  46794. },
  46795. demonHand: {
  46796. height: math.unit(1.61, "meters"),
  46797. name: "Hand",
  46798. image: {
  46799. source: "./media/characters/alex-xuria/demon-hand.svg"
  46800. },
  46801. form: "demon"
  46802. },
  46803. demonPaw: {
  46804. height: math.unit(1.35, "meters"),
  46805. name: "Paw",
  46806. image: {
  46807. source: "./media/characters/alex-xuria/demon-paw.svg"
  46808. },
  46809. form: "demon"
  46810. },
  46811. demonFoot: {
  46812. height: math.unit(2.2, "meters"),
  46813. name: "Foot",
  46814. image: {
  46815. source: "./media/characters/alex-xuria/demon-foot.svg"
  46816. },
  46817. form: "demon"
  46818. },
  46819. demonCock: {
  46820. height: math.unit(1.74, "meters"),
  46821. name: "Cock",
  46822. image: {
  46823. source: "./media/characters/alex-xuria/demon-cock.svg"
  46824. },
  46825. form: "demon"
  46826. },
  46827. demonTailClosed: {
  46828. height: math.unit(1.47, "meters"),
  46829. name: "Tail (Closed)",
  46830. image: {
  46831. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46832. },
  46833. form: "demon"
  46834. },
  46835. demonTailOpen: {
  46836. height: math.unit(2.85, "meters"),
  46837. name: "Tail (Open)",
  46838. image: {
  46839. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46840. },
  46841. form: "demon"
  46842. },
  46843. incubusFront: {
  46844. height: math.unit(12, "feet"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/alex-xuria/incubus-front.svg",
  46848. extra: 1754/1677,
  46849. bottom: 125/1879
  46850. },
  46851. form: "incubus",
  46852. default: true
  46853. },
  46854. incubusBack: {
  46855. height: math.unit(12, "feet"),
  46856. name: "Back",
  46857. image: {
  46858. source: "./media/characters/alex-xuria/incubus-back.svg",
  46859. extra: 1702/1647,
  46860. bottom: 30/1732
  46861. },
  46862. form: "incubus"
  46863. },
  46864. incubusHead: {
  46865. height: math.unit(3.45, "feet"),
  46866. name: "Head",
  46867. image: {
  46868. source: "./media/characters/alex-xuria/incubus-head.svg"
  46869. },
  46870. form: "incubus"
  46871. },
  46872. rabbitFront: {
  46873. height: math.unit(6, "feet"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46877. extra: 1369/1349,
  46878. bottom: 45/1414
  46879. },
  46880. form: "rabbit",
  46881. default: true
  46882. },
  46883. rabbitSide: {
  46884. height: math.unit(6, "feet"),
  46885. name: "Side",
  46886. image: {
  46887. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46888. extra: 1370/1356,
  46889. bottom: 37/1407
  46890. },
  46891. form: "rabbit"
  46892. },
  46893. rabbitBack: {
  46894. height: math.unit(6, "feet"),
  46895. name: "Back",
  46896. image: {
  46897. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46898. extra: 1375/1358,
  46899. bottom: 43/1418
  46900. },
  46901. form: "rabbit"
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Normal",
  46907. height: math.unit(6, "feet"),
  46908. default: true,
  46909. form: "rabbit"
  46910. },
  46911. {
  46912. name: "Incubus",
  46913. height: math.unit(12, "feet"),
  46914. default: true,
  46915. form: "incubus"
  46916. },
  46917. {
  46918. name: "Demon",
  46919. height: math.unit(36, "feet"),
  46920. default: true,
  46921. form: "demon"
  46922. }
  46923. ],
  46924. {
  46925. "demon": {
  46926. name: "Demon",
  46927. default: true
  46928. },
  46929. "incubus": {
  46930. name: "Incubus",
  46931. },
  46932. "rabbit": {
  46933. name: "Rabbit"
  46934. }
  46935. }
  46936. ))
  46937. characterMakers.push(() => makeCharacter(
  46938. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46939. {
  46940. front: {
  46941. height: math.unit(7 + 5/12, "feet"),
  46942. weight: math.unit(510, "lb"),
  46943. name: "Front",
  46944. image: {
  46945. source: "./media/characters/syrup/front.svg",
  46946. extra: 932/916,
  46947. bottom: 26/958
  46948. }
  46949. },
  46950. },
  46951. [
  46952. {
  46953. name: "Normal",
  46954. height: math.unit(7 + 5/12, "feet"),
  46955. default: true
  46956. },
  46957. {
  46958. name: "Big",
  46959. height: math.unit(50, "feet")
  46960. },
  46961. {
  46962. name: "Macro",
  46963. height: math.unit(300, "feet")
  46964. },
  46965. {
  46966. name: "Megamacro",
  46967. height: math.unit(1, "mile")
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(6 + 9/12, "feet"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/zeimne/front.svg",
  46979. extra: 1969/1806,
  46980. bottom: 53/2022
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(6 + 9/12, "feet"),
  46988. default: true
  46989. },
  46990. {
  46991. name: "Giant",
  46992. height: math.unit(550, "feet")
  46993. },
  46994. {
  46995. name: "Mega",
  46996. height: math.unit(3, "miles")
  46997. },
  46998. {
  46999. name: "Giga",
  47000. height: math.unit(250, "miles")
  47001. },
  47002. {
  47003. name: "Tera",
  47004. height: math.unit(1, "AU")
  47005. },
  47006. ]
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47010. {
  47011. front: {
  47012. height: math.unit(5 + 2/12, "feet"),
  47013. name: "Front",
  47014. image: {
  47015. source: "./media/characters/grar/front.svg",
  47016. extra: 1331/1119,
  47017. bottom: 60/1391
  47018. }
  47019. },
  47020. back: {
  47021. height: math.unit(5 + 2/12, "feet"),
  47022. name: "Back",
  47023. image: {
  47024. source: "./media/characters/grar/back.svg",
  47025. extra: 1385/1169,
  47026. bottom: 23/1408
  47027. }
  47028. },
  47029. },
  47030. [
  47031. {
  47032. name: "Normal",
  47033. height: math.unit(5 + 2/12, "feet"),
  47034. default: true
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47040. {
  47041. front: {
  47042. height: math.unit(13 + 7/12, "feet"),
  47043. weight: math.unit(2200, "lb"),
  47044. name: "Front",
  47045. image: {
  47046. source: "./media/characters/endraya/front.svg",
  47047. extra: 1289/1215,
  47048. bottom: 50/1339
  47049. }
  47050. },
  47051. nude: {
  47052. height: math.unit(13 + 7/12, "feet"),
  47053. weight: math.unit(2200, "lb"),
  47054. name: "Nude",
  47055. image: {
  47056. source: "./media/characters/endraya/nude.svg",
  47057. extra: 1247/1171,
  47058. bottom: 40/1287
  47059. }
  47060. },
  47061. head: {
  47062. height: math.unit(2.6, "feet"),
  47063. name: "Head",
  47064. image: {
  47065. source: "./media/characters/endraya/head.svg"
  47066. }
  47067. },
  47068. slit: {
  47069. height: math.unit(3.4, "feet"),
  47070. name: "Slit",
  47071. image: {
  47072. source: "./media/characters/endraya/slit.svg"
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(13 + 7/12, "feet"),
  47080. default: true
  47081. },
  47082. {
  47083. name: "Macro",
  47084. height: math.unit(200, "feet")
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47090. {
  47091. front: {
  47092. height: math.unit(1.81, "meters"),
  47093. weight: math.unit(69, "kg"),
  47094. name: "Front",
  47095. image: {
  47096. source: "./media/characters/rodryana/front.svg",
  47097. extra: 2002/1921,
  47098. bottom: 53/2055
  47099. }
  47100. },
  47101. back: {
  47102. height: math.unit(1.81, "meters"),
  47103. weight: math.unit(69, "kg"),
  47104. name: "Back",
  47105. image: {
  47106. source: "./media/characters/rodryana/back.svg",
  47107. extra: 1993/1926,
  47108. bottom: 48/2041
  47109. }
  47110. },
  47111. maw: {
  47112. height: math.unit(0.19769417475, "meters"),
  47113. name: "Maw",
  47114. image: {
  47115. source: "./media/characters/rodryana/maw.svg"
  47116. }
  47117. },
  47118. slit: {
  47119. height: math.unit(0.31631067961, "meters"),
  47120. name: "Slit",
  47121. image: {
  47122. source: "./media/characters/rodryana/slit.svg"
  47123. }
  47124. },
  47125. },
  47126. [
  47127. {
  47128. name: "Normal",
  47129. height: math.unit(1.81, "meters")
  47130. },
  47131. {
  47132. name: "Mini Macro",
  47133. height: math.unit(181, "meters")
  47134. },
  47135. {
  47136. name: "Macro",
  47137. height: math.unit(452, "meters"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Mega Macro",
  47142. height: math.unit(1.375, "km")
  47143. },
  47144. {
  47145. name: "Giga Macro",
  47146. height: math.unit(13.575, "km")
  47147. },
  47148. ]
  47149. ))
  47150. characterMakers.push(() => makeCharacter(
  47151. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47152. {
  47153. front: {
  47154. height: math.unit(6, "feet"),
  47155. weight: math.unit(1000, "lb"),
  47156. name: "Front",
  47157. image: {
  47158. source: "./media/characters/asaya/front.svg",
  47159. extra: 1460/1200,
  47160. bottom: 71/1531
  47161. }
  47162. },
  47163. },
  47164. [
  47165. {
  47166. name: "Normal",
  47167. height: math.unit(8, "km"),
  47168. default: true
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47174. {
  47175. front: {
  47176. height: math.unit(3.5, "meters"),
  47177. name: "Front",
  47178. image: {
  47179. source: "./media/characters/sarzu-and-israz/front.svg",
  47180. extra: 1570/1558,
  47181. bottom: 150/1720
  47182. },
  47183. },
  47184. back: {
  47185. height: math.unit(3.5, "meters"),
  47186. name: "Back",
  47187. image: {
  47188. source: "./media/characters/sarzu-and-israz/back.svg",
  47189. extra: 1523/1509,
  47190. bottom: 132/1655
  47191. },
  47192. },
  47193. frontFemale: {
  47194. height: math.unit(3.5, "meters"),
  47195. name: "Front (Female)",
  47196. image: {
  47197. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47198. extra: 1570/1558,
  47199. bottom: 150/1720
  47200. },
  47201. },
  47202. frontHerm: {
  47203. height: math.unit(3.5, "meters"),
  47204. name: "Front (Herm)",
  47205. image: {
  47206. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47207. extra: 1570/1558,
  47208. bottom: 150/1720
  47209. },
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(3.5, "meters"),
  47216. default: true,
  47217. },
  47218. {
  47219. name: "Macro",
  47220. height: math.unit(65.5, "meters"),
  47221. },
  47222. ],
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47226. {
  47227. front: {
  47228. height: math.unit(6, "feet"),
  47229. weight: math.unit(250, "lb"),
  47230. name: "Front",
  47231. image: {
  47232. source: "./media/characters/zenimma/front.svg",
  47233. extra: 1346/1320,
  47234. bottom: 58/1404
  47235. }
  47236. },
  47237. back: {
  47238. height: math.unit(6, "feet"),
  47239. weight: math.unit(250, "lb"),
  47240. name: "Back",
  47241. image: {
  47242. source: "./media/characters/zenimma/back.svg",
  47243. extra: 1324/1308,
  47244. bottom: 44/1368
  47245. }
  47246. },
  47247. dick: {
  47248. height: math.unit(1.44, "feet"),
  47249. name: "Dick",
  47250. image: {
  47251. source: "./media/characters/zenimma/dick.svg"
  47252. }
  47253. },
  47254. },
  47255. [
  47256. {
  47257. name: "Canon Height",
  47258. height: math.unit(66, "miles"),
  47259. default: true
  47260. },
  47261. ]
  47262. ))
  47263. characterMakers.push(() => makeCharacter(
  47264. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47265. {
  47266. nude: {
  47267. height: math.unit(6, "feet"),
  47268. weight: math.unit(150, "lb"),
  47269. name: "Nude",
  47270. image: {
  47271. source: "./media/characters/shavon/nude.svg",
  47272. extra: 1242/1096,
  47273. bottom: 98/1340
  47274. }
  47275. },
  47276. dressed: {
  47277. height: math.unit(6, "feet"),
  47278. weight: math.unit(150, "lb"),
  47279. name: "Dressed",
  47280. image: {
  47281. source: "./media/characters/shavon/dressed.svg",
  47282. extra: 1242/1096,
  47283. bottom: 98/1340
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Macro",
  47290. height: math.unit(255, "feet"),
  47291. default: true
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47297. {
  47298. front: {
  47299. height: math.unit(6, "feet"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/steph/front.svg",
  47303. extra: 1430/1330,
  47304. bottom: 54/1484
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(6, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(9, "feet"),
  47321. weight: math.unit(400, "lb"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/kil'aman/front.svg",
  47325. extra: 1210/1159,
  47326. bottom: 109/1319
  47327. }
  47328. },
  47329. head: {
  47330. height: math.unit(2.14, "feet"),
  47331. name: "Head",
  47332. image: {
  47333. source: "./media/characters/kil'aman/head.svg"
  47334. }
  47335. },
  47336. maw: {
  47337. height: math.unit(1.21, "feet"),
  47338. name: "Maw",
  47339. image: {
  47340. source: "./media/characters/kil'aman/maw.svg"
  47341. }
  47342. },
  47343. foot: {
  47344. height: math.unit(1.7, "feet"),
  47345. name: "Foot",
  47346. image: {
  47347. source: "./media/characters/kil'aman/foot.svg"
  47348. }
  47349. },
  47350. dick: {
  47351. height: math.unit(2.1, "feet"),
  47352. name: "Dick",
  47353. image: {
  47354. source: "./media/characters/kil'aman/dick.svg"
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(9, "feet")
  47362. },
  47363. {
  47364. name: "Canon Height",
  47365. height: math.unit(10, "miles"),
  47366. default: true
  47367. },
  47368. {
  47369. name: "Maximum",
  47370. height: math.unit(6e9, "miles")
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47376. {
  47377. front: {
  47378. height: math.unit(90, "feet"),
  47379. weight: math.unit(675000, "lb"),
  47380. name: "Front",
  47381. image: {
  47382. source: "./media/characters/qadan/front.svg",
  47383. extra: 1012/1004,
  47384. bottom: 78/1090
  47385. }
  47386. },
  47387. back: {
  47388. height: math.unit(90, "feet"),
  47389. weight: math.unit(675000, "lb"),
  47390. name: "Back",
  47391. image: {
  47392. source: "./media/characters/qadan/back.svg",
  47393. extra: 1042/1031,
  47394. bottom: 55/1097
  47395. }
  47396. },
  47397. armored: {
  47398. height: math.unit(90, "feet"),
  47399. weight: math.unit(675000, "lb"),
  47400. name: "Armored",
  47401. image: {
  47402. source: "./media/characters/qadan/armored.svg",
  47403. extra: 1047/1037,
  47404. bottom: 48/1095
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(90, "feet"),
  47412. default: true
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(6, "feet"),
  47421. weight: math.unit(225, "lb"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/brooke/front.svg",
  47425. extra: 1050/1010,
  47426. bottom: 66/1116
  47427. }
  47428. },
  47429. back: {
  47430. height: math.unit(6, "feet"),
  47431. weight: math.unit(225, "lb"),
  47432. name: "Back",
  47433. image: {
  47434. source: "./media/characters/brooke/back.svg",
  47435. extra: 1053/1013,
  47436. bottom: 41/1094
  47437. }
  47438. },
  47439. dressed: {
  47440. height: math.unit(6, "feet"),
  47441. weight: math.unit(225, "lb"),
  47442. name: "Dressed",
  47443. image: {
  47444. source: "./media/characters/brooke/dressed.svg",
  47445. extra: 1050/1010,
  47446. bottom: 66/1116
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Canon Height",
  47453. height: math.unit(500, "miles"),
  47454. default: true
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(6 + 2/12, "feet"),
  47463. weight: math.unit(210, "lb"),
  47464. name: "Front",
  47465. image: {
  47466. source: "./media/characters/wubs/front.svg",
  47467. extra: 1345/1325,
  47468. bottom: 70/1415
  47469. }
  47470. },
  47471. back: {
  47472. height: math.unit(6 + 2/12, "feet"),
  47473. weight: math.unit(210, "lb"),
  47474. name: "Back",
  47475. image: {
  47476. source: "./media/characters/wubs/back.svg",
  47477. extra: 1296/1275,
  47478. bottom: 58/1354
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(6 + 2/12, "feet"),
  47486. default: true
  47487. },
  47488. {
  47489. name: "Macro",
  47490. height: math.unit(1000, "feet")
  47491. },
  47492. {
  47493. name: "Megamacro",
  47494. height: math.unit(1, "mile")
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47500. {
  47501. front: {
  47502. height: math.unit(4, "feet"),
  47503. weight: math.unit(120, "lb"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/blue/front.svg",
  47507. extra: 1636/1525,
  47508. bottom: 43/1679
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(4, "feet"),
  47513. weight: math.unit(120, "lb"),
  47514. name: "Back",
  47515. image: {
  47516. source: "./media/characters/blue/back.svg",
  47517. extra: 1660/1560,
  47518. bottom: 57/1717
  47519. }
  47520. },
  47521. paws: {
  47522. height: math.unit(0.826, "feet"),
  47523. name: "Paws",
  47524. image: {
  47525. source: "./media/characters/blue/paws.svg"
  47526. }
  47527. },
  47528. },
  47529. [
  47530. {
  47531. name: "Micro",
  47532. height: math.unit(3, "inches")
  47533. },
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(4, "feet"),
  47537. default: true
  47538. },
  47539. {
  47540. name: "Femenine Form",
  47541. height: math.unit(14, "feet")
  47542. },
  47543. {
  47544. name: "Werebat Form",
  47545. height: math.unit(18, "feet")
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47551. {
  47552. female: {
  47553. height: math.unit(7 + 4/12, "feet"),
  47554. weight: math.unit(243, "lb"),
  47555. name: "Female",
  47556. image: {
  47557. source: "./media/characters/kaya/female.svg",
  47558. extra: 975/898,
  47559. bottom: 34/1009
  47560. }
  47561. },
  47562. herm: {
  47563. height: math.unit(7 + 4/12, "feet"),
  47564. weight: math.unit(243, "lb"),
  47565. name: "Herm",
  47566. image: {
  47567. source: "./media/characters/kaya/herm.svg",
  47568. extra: 975/898,
  47569. bottom: 34/1009
  47570. }
  47571. },
  47572. },
  47573. [
  47574. {
  47575. name: "Normal",
  47576. height: math.unit(7 + 4/12, "feet"),
  47577. default: true
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47583. {
  47584. female: {
  47585. height: math.unit(9 + 4/12, "feet"),
  47586. weight: math.unit(398, "lb"),
  47587. name: "Female",
  47588. image: {
  47589. source: "./media/characters/kassandra/female.svg",
  47590. extra: 908/839,
  47591. bottom: 61/969
  47592. }
  47593. },
  47594. intersex: {
  47595. height: math.unit(9 + 4/12, "feet"),
  47596. weight: math.unit(398, "lb"),
  47597. name: "Intersex",
  47598. image: {
  47599. source: "./media/characters/kassandra/intersex.svg",
  47600. extra: 908/839,
  47601. bottom: 61/969
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Normal",
  47608. height: math.unit(9 + 4/12, "feet"),
  47609. default: true
  47610. },
  47611. ]
  47612. ))
  47613. characterMakers.push(() => makeCharacter(
  47614. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47615. {
  47616. front: {
  47617. height: math.unit(3, "meters"),
  47618. name: "Front",
  47619. image: {
  47620. source: "./media/characters/amy/front.svg",
  47621. extra: 1380/1343,
  47622. bottom: 70/1450
  47623. }
  47624. },
  47625. back: {
  47626. height: math.unit(3, "meters"),
  47627. name: "Back",
  47628. image: {
  47629. source: "./media/characters/amy/back.svg",
  47630. extra: 1380/1347,
  47631. bottom: 66/1446
  47632. }
  47633. },
  47634. },
  47635. [
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(3, "meters"),
  47639. default: true
  47640. },
  47641. ]
  47642. ))
  47643. characterMakers.push(() => makeCharacter(
  47644. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47645. {
  47646. side: {
  47647. height: math.unit(47, "cm"),
  47648. weight: math.unit(10.8, "kg"),
  47649. name: "Side",
  47650. image: {
  47651. source: "./media/characters/alphaschakal/side.svg",
  47652. extra: 1058/568,
  47653. bottom: 62/1120
  47654. }
  47655. },
  47656. back: {
  47657. height: math.unit(78, "cm"),
  47658. weight: math.unit(10.8, "kg"),
  47659. name: "Back",
  47660. image: {
  47661. source: "./media/characters/alphaschakal/back.svg",
  47662. extra: 1102/942,
  47663. bottom: 185/1287
  47664. }
  47665. },
  47666. head: {
  47667. height: math.unit(28, "cm"),
  47668. name: "Head",
  47669. image: {
  47670. source: "./media/characters/alphaschakal/head.svg",
  47671. extra: 696/508,
  47672. bottom: 0/696
  47673. }
  47674. },
  47675. paw: {
  47676. height: math.unit(16, "cm"),
  47677. name: "Paw",
  47678. image: {
  47679. source: "./media/characters/alphaschakal/paw.svg"
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Normal",
  47686. height: math.unit(47, "cm"),
  47687. default: true
  47688. },
  47689. {
  47690. name: "Macro",
  47691. height: math.unit(340, "cm")
  47692. },
  47693. ]
  47694. ))
  47695. characterMakers.push(() => makeCharacter(
  47696. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47697. {
  47698. front: {
  47699. height: math.unit(36, "earths"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/ecobyss/front.svg",
  47703. extra: 1282/1215,
  47704. bottom: 11/1293
  47705. }
  47706. },
  47707. back: {
  47708. height: math.unit(36, "earths"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/ecobyss/back.svg",
  47712. extra: 1291/1222,
  47713. bottom: 8/1299
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(36, "earths"),
  47721. default: true
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47727. {
  47728. front: {
  47729. height: math.unit(12, "feet"),
  47730. name: "Front",
  47731. image: {
  47732. source: "./media/characters/vasuk/front.svg",
  47733. extra: 1326/1207,
  47734. bottom: 64/1390
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(12, "feet"),
  47742. default: true
  47743. },
  47744. ]
  47745. ))
  47746. characterMakers.push(() => makeCharacter(
  47747. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47748. {
  47749. side: {
  47750. height: math.unit(100, "feet"),
  47751. name: "Side",
  47752. image: {
  47753. source: "./media/characters/linneaus/side.svg",
  47754. extra: 987/807,
  47755. bottom: 47/1034
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Macro",
  47762. height: math.unit(100, "feet"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47769. {
  47770. front: {
  47771. height: math.unit(8, "feet"),
  47772. weight: math.unit(1200, "lb"),
  47773. name: "Front",
  47774. image: {
  47775. source: "./media/characters/nyterious-daligdig/front.svg",
  47776. extra: 1284/1094,
  47777. bottom: 84/1368
  47778. }
  47779. },
  47780. back: {
  47781. height: math.unit(8, "feet"),
  47782. weight: math.unit(1200, "lb"),
  47783. name: "Back",
  47784. image: {
  47785. source: "./media/characters/nyterious-daligdig/back.svg",
  47786. extra: 1301/1121,
  47787. bottom: 129/1430
  47788. }
  47789. },
  47790. mouth: {
  47791. height: math.unit(1.464, "feet"),
  47792. name: "Mouth",
  47793. image: {
  47794. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Small",
  47801. height: math.unit(8, "feet"),
  47802. default: true
  47803. },
  47804. {
  47805. name: "Normal",
  47806. height: math.unit(15, "feet")
  47807. },
  47808. {
  47809. name: "Macro",
  47810. height: math.unit(90, "feet")
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47816. {
  47817. front: {
  47818. height: math.unit(7 + 4/12, "feet"),
  47819. weight: math.unit(252, "lb"),
  47820. name: "Front",
  47821. image: {
  47822. source: "./media/characters/bandel/front.svg",
  47823. extra: 1946/1775,
  47824. bottom: 26/1972
  47825. }
  47826. },
  47827. back: {
  47828. height: math.unit(7 + 4/12, "feet"),
  47829. weight: math.unit(252, "lb"),
  47830. name: "Back",
  47831. image: {
  47832. source: "./media/characters/bandel/back.svg",
  47833. extra: 1940/1770,
  47834. bottom: 25/1965
  47835. }
  47836. },
  47837. maw: {
  47838. height: math.unit(2.15, "feet"),
  47839. name: "Maw",
  47840. image: {
  47841. source: "./media/characters/bandel/maw.svg"
  47842. }
  47843. },
  47844. stomach: {
  47845. height: math.unit(1.95, "feet"),
  47846. name: "Stomach",
  47847. image: {
  47848. source: "./media/characters/bandel/stomach.svg"
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(7 + 4/12, "feet"),
  47856. default: true
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(10 + 5/12, "feet"),
  47865. weight: math.unit(773.5, "kg"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/zed/front.svg",
  47869. extra: 987/941,
  47870. bottom: 52/1039
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Short",
  47877. height: math.unit(5 + 4/12, "feet")
  47878. },
  47879. {
  47880. name: "Average",
  47881. height: math.unit(10 + 5/12, "feet"),
  47882. default: true
  47883. },
  47884. {
  47885. name: "Mini-Macro",
  47886. height: math.unit(24 + 9/12, "feet")
  47887. },
  47888. {
  47889. name: "Macro",
  47890. height: math.unit(249, "feet")
  47891. },
  47892. {
  47893. name: "Mega-Macro",
  47894. height: math.unit(12490, "feet")
  47895. },
  47896. {
  47897. name: "Giga-Macro",
  47898. height: math.unit(24.9, "miles")
  47899. },
  47900. {
  47901. name: "Tera-Macro",
  47902. height: math.unit(24900, "miles")
  47903. },
  47904. {
  47905. name: "Cosmic Scale",
  47906. height: math.unit(38.9, "lightyears")
  47907. },
  47908. {
  47909. name: "Universal Scale",
  47910. height: math.unit(138e12, "lightyears")
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47916. {
  47917. front: {
  47918. height: math.unit(1561, "inches"),
  47919. name: "Front",
  47920. image: {
  47921. source: "./media/characters/ivan/front.svg",
  47922. extra: 1126/1071,
  47923. bottom: 26/1152
  47924. }
  47925. },
  47926. back: {
  47927. height: math.unit(1561, "inches"),
  47928. name: "Back",
  47929. image: {
  47930. source: "./media/characters/ivan/back.svg",
  47931. extra: 1134/1079,
  47932. bottom: 30/1164
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Normal",
  47939. height: math.unit(1561, "inches"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47946. {
  47947. front: {
  47948. height: math.unit(5 + 7/12, "feet"),
  47949. weight: math.unit(150, "lb"),
  47950. name: "Front",
  47951. image: {
  47952. source: "./media/characters/robin-arctic-hare/front.svg",
  47953. extra: 1148/974,
  47954. bottom: 20/1168
  47955. }
  47956. },
  47957. },
  47958. [
  47959. {
  47960. name: "Normal",
  47961. height: math.unit(5 + 7/12, "feet"),
  47962. default: true
  47963. },
  47964. ]
  47965. ))
  47966. characterMakers.push(() => makeCharacter(
  47967. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47968. {
  47969. side: {
  47970. height: math.unit(5, "feet"),
  47971. name: "Side",
  47972. image: {
  47973. source: "./media/characters/birch/side.svg",
  47974. extra: 985/796,
  47975. bottom: 111/1096
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Normal",
  47982. height: math.unit(5, "feet"),
  47983. default: true
  47984. },
  47985. ]
  47986. ))
  47987. characterMakers.push(() => makeCharacter(
  47988. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47989. {
  47990. front: {
  47991. height: math.unit(4, "feet"),
  47992. name: "Front",
  47993. image: {
  47994. source: "./media/characters/rasp/front.svg",
  47995. extra: 561/478,
  47996. bottom: 74/635
  47997. }
  47998. },
  47999. },
  48000. [
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(4, "feet"),
  48004. default: true
  48005. },
  48006. ]
  48007. ))
  48008. characterMakers.push(() => makeCharacter(
  48009. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48010. {
  48011. front: {
  48012. height: math.unit(4 + 6/12, "feet"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/agatha/front.svg",
  48016. extra: 947/933,
  48017. bottom: 42/989
  48018. }
  48019. },
  48020. back: {
  48021. height: math.unit(4 + 6/12, "feet"),
  48022. name: "Back",
  48023. image: {
  48024. source: "./media/characters/agatha/back.svg",
  48025. extra: 935/922,
  48026. bottom: 48/983
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(4 + 6 /12, "feet"),
  48034. default: true
  48035. },
  48036. {
  48037. name: "Max Size",
  48038. height: math.unit(500, "feet")
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48044. {
  48045. side: {
  48046. height: math.unit(30, "feet"),
  48047. name: "Side",
  48048. image: {
  48049. source: "./media/characters/roggy/side.svg",
  48050. extra: 909/643,
  48051. bottom: 63/972
  48052. }
  48053. },
  48054. lounging: {
  48055. height: math.unit(20, "feet"),
  48056. name: "Lounging",
  48057. image: {
  48058. source: "./media/characters/roggy/lounging.svg",
  48059. extra: 643/479,
  48060. bottom: 145/788
  48061. }
  48062. },
  48063. handpaw: {
  48064. height: math.unit(13.1, "feet"),
  48065. name: "Handpaw",
  48066. image: {
  48067. source: "./media/characters/roggy/handpaw.svg"
  48068. }
  48069. },
  48070. footpaw: {
  48071. height: math.unit(15.8, "feet"),
  48072. name: "Footpaw",
  48073. image: {
  48074. source: "./media/characters/roggy/footpaw.svg"
  48075. }
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Menacing",
  48081. height: math.unit(30, "feet"),
  48082. default: true
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48088. {
  48089. front: {
  48090. height: math.unit(5 + 7/12, "feet"),
  48091. weight: math.unit(135, "lb"),
  48092. name: "Front",
  48093. image: {
  48094. source: "./media/characters/naomi/front.svg",
  48095. extra: 1209/1154,
  48096. bottom: 129/1338
  48097. }
  48098. },
  48099. back: {
  48100. height: math.unit(5 + 7/12, "feet"),
  48101. weight: math.unit(135, "lb"),
  48102. name: "Back",
  48103. image: {
  48104. source: "./media/characters/naomi/back.svg",
  48105. extra: 1252/1190,
  48106. bottom: 23/1275
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(5 + 7 /12, "feet"),
  48114. default: true
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48120. {
  48121. side: {
  48122. height: math.unit(35, "meters"),
  48123. name: "Side",
  48124. image: {
  48125. source: "./media/characters/kimpi/side.svg",
  48126. extra: 419/382,
  48127. bottom: 63/482
  48128. }
  48129. },
  48130. hand: {
  48131. height: math.unit(8.96, "meters"),
  48132. name: "Hand",
  48133. image: {
  48134. source: "./media/characters/kimpi/hand.svg"
  48135. }
  48136. },
  48137. },
  48138. [
  48139. {
  48140. name: "Normal",
  48141. height: math.unit(35, "meters"),
  48142. default: true
  48143. },
  48144. ]
  48145. ))
  48146. characterMakers.push(() => makeCharacter(
  48147. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48148. {
  48149. front: {
  48150. height: math.unit(4 + 4/12, "feet"),
  48151. name: "Front",
  48152. image: {
  48153. source: "./media/characters/pepper-purrloin/front.svg",
  48154. extra: 1141/1024,
  48155. bottom: 21/1162
  48156. }
  48157. },
  48158. },
  48159. [
  48160. {
  48161. name: "Normal",
  48162. height: math.unit(4 + 4/12, "feet"),
  48163. default: true
  48164. },
  48165. ]
  48166. ))
  48167. characterMakers.push(() => makeCharacter(
  48168. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48169. {
  48170. front: {
  48171. height: math.unit(6 + 2/12, "feet"),
  48172. name: "Front",
  48173. image: {
  48174. source: "./media/characters/raphael/front.svg",
  48175. extra: 1101/962,
  48176. bottom: 59/1160
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(6 + 2/12, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48190. {
  48191. front: {
  48192. height: math.unit(6, "feet"),
  48193. weight: math.unit(150, "lb"),
  48194. name: "Front",
  48195. image: {
  48196. source: "./media/characters/victor-williams/front.svg",
  48197. extra: 1894/1825,
  48198. bottom: 67/1961
  48199. }
  48200. },
  48201. },
  48202. [
  48203. {
  48204. name: "Normal",
  48205. height: math.unit(6, "feet"),
  48206. default: true
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48212. {
  48213. front: {
  48214. height: math.unit(5 + 8/12, "feet"),
  48215. weight: math.unit(150, "lb"),
  48216. name: "Front",
  48217. image: {
  48218. source: "./media/characters/rachel/front.svg",
  48219. extra: 1902/1787,
  48220. bottom: 46/1948
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Base Height",
  48227. height: math.unit(5 + 8/12, "feet"),
  48228. default: true
  48229. },
  48230. {
  48231. name: "Macro",
  48232. height: math.unit(200, "feet")
  48233. },
  48234. {
  48235. name: "Mega Macro",
  48236. height: math.unit(1, "mile")
  48237. },
  48238. {
  48239. name: "Giga Macro",
  48240. height: math.unit(1500, "miles")
  48241. },
  48242. {
  48243. name: "Tera Macro",
  48244. height: math.unit(8000, "miles")
  48245. },
  48246. {
  48247. name: "Tera Macro+",
  48248. height: math.unit(2e5, "miles")
  48249. },
  48250. ]
  48251. ))
  48252. characterMakers.push(() => makeCharacter(
  48253. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48254. {
  48255. front: {
  48256. height: math.unit(6.5, "feet"),
  48257. name: "Front",
  48258. image: {
  48259. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48260. extra: 860/819,
  48261. bottom: 307/1167
  48262. }
  48263. },
  48264. back: {
  48265. height: math.unit(6.5, "feet"),
  48266. name: "Back",
  48267. image: {
  48268. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48269. extra: 880/837,
  48270. bottom: 395/1275
  48271. }
  48272. },
  48273. sleeping: {
  48274. height: math.unit(2.79, "feet"),
  48275. name: "Sleeping",
  48276. image: {
  48277. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48278. extra: 465/383,
  48279. bottom: 263/728
  48280. }
  48281. },
  48282. maw: {
  48283. height: math.unit(2.52, "feet"),
  48284. name: "Maw",
  48285. image: {
  48286. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48287. }
  48288. },
  48289. },
  48290. [
  48291. {
  48292. name: "Normal",
  48293. height: math.unit(6.5, "feet"),
  48294. default: true
  48295. },
  48296. ]
  48297. ))
  48298. characterMakers.push(() => makeCharacter(
  48299. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48300. {
  48301. front: {
  48302. height: math.unit(5, "feet"),
  48303. name: "Front",
  48304. image: {
  48305. source: "./media/characters/nova-nerium/front.svg",
  48306. extra: 1548/1392,
  48307. bottom: 374/1922
  48308. }
  48309. },
  48310. back: {
  48311. height: math.unit(5, "feet"),
  48312. name: "Back",
  48313. image: {
  48314. source: "./media/characters/nova-nerium/back.svg",
  48315. extra: 1658/1468,
  48316. bottom: 257/1915
  48317. }
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(5, "feet"),
  48324. default: true
  48325. },
  48326. ]
  48327. ))
  48328. characterMakers.push(() => makeCharacter(
  48329. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48330. {
  48331. front: {
  48332. height: math.unit(5 + 4/12, "feet"),
  48333. name: "Front",
  48334. image: {
  48335. source: "./media/characters/ashe-pyriph/front.svg",
  48336. extra: 1935/1747,
  48337. bottom: 60/1995
  48338. }
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(5 + 4/12, "feet"),
  48345. default: true
  48346. },
  48347. ]
  48348. ))
  48349. characterMakers.push(() => makeCharacter(
  48350. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48351. {
  48352. front: {
  48353. height: math.unit(8.7, "feet"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/flicker-wisp/front.svg",
  48357. extra: 1835/1613,
  48358. bottom: 449/2284
  48359. }
  48360. },
  48361. side: {
  48362. height: math.unit(8.7, "feet"),
  48363. name: "Side",
  48364. image: {
  48365. source: "./media/characters/flicker-wisp/side.svg",
  48366. extra: 1841/1642,
  48367. bottom: 336/2177
  48368. },
  48369. default: true
  48370. },
  48371. maw: {
  48372. height: math.unit(3.35, "feet"),
  48373. name: "Maw",
  48374. image: {
  48375. source: "./media/characters/flicker-wisp/maw.svg",
  48376. extra: 2338/1506,
  48377. bottom: 0/2338
  48378. }
  48379. },
  48380. ovipositor: {
  48381. height: math.unit(4.95, "feet"),
  48382. name: "Ovipositor",
  48383. image: {
  48384. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48385. }
  48386. },
  48387. egg: {
  48388. height: math.unit(0.385, "feet"),
  48389. weight: math.unit(2, "lb"),
  48390. name: "Egg",
  48391. image: {
  48392. source: "./media/characters/flicker-wisp/egg.svg"
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Normal",
  48399. height: math.unit(8.7, "feet"),
  48400. default: true
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48406. {
  48407. side: {
  48408. height: math.unit(11, "feet"),
  48409. name: "Side",
  48410. image: {
  48411. source: "./media/characters/faefnul/side.svg",
  48412. extra: 1100/1007,
  48413. bottom: 0/1100
  48414. }
  48415. },
  48416. },
  48417. [
  48418. {
  48419. name: "Normal",
  48420. height: math.unit(11, "feet"),
  48421. default: true
  48422. },
  48423. ]
  48424. ))
  48425. characterMakers.push(() => makeCharacter(
  48426. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48427. {
  48428. front: {
  48429. height: math.unit(6 + 2/12, "feet"),
  48430. name: "Front",
  48431. image: {
  48432. source: "./media/characters/shady/front.svg",
  48433. extra: 502/461,
  48434. bottom: 9/511
  48435. }
  48436. },
  48437. kneeling: {
  48438. height: math.unit(4.6, "feet"),
  48439. name: "Kneeling",
  48440. image: {
  48441. source: "./media/characters/shady/kneeling.svg",
  48442. extra: 1328/1219,
  48443. bottom: 117/1445
  48444. }
  48445. },
  48446. maw: {
  48447. height: math.unit(2, "feet"),
  48448. name: "Maw",
  48449. image: {
  48450. source: "./media/characters/shady/maw.svg"
  48451. }
  48452. },
  48453. },
  48454. [
  48455. {
  48456. name: "Nano",
  48457. height: math.unit(1, "mm")
  48458. },
  48459. {
  48460. name: "Micro",
  48461. height: math.unit(12, "mm")
  48462. },
  48463. {
  48464. name: "Tiny",
  48465. height: math.unit(3, "inches")
  48466. },
  48467. {
  48468. name: "Normal",
  48469. height: math.unit(6 + 2/12, "feet"),
  48470. default: true
  48471. },
  48472. {
  48473. name: "Big",
  48474. height: math.unit(15, "feet")
  48475. },
  48476. {
  48477. name: "Macro",
  48478. height: math.unit(150, "feet")
  48479. },
  48480. {
  48481. name: "Titanic",
  48482. height: math.unit(500, "feet")
  48483. },
  48484. ]
  48485. ))
  48486. characterMakers.push(() => makeCharacter(
  48487. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48488. {
  48489. front: {
  48490. height: math.unit(12, "feet"),
  48491. name: "Front",
  48492. image: {
  48493. source: "./media/characters/fenrir/front.svg",
  48494. extra: 968/875,
  48495. bottom: 22/990
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Big",
  48502. height: math.unit(12, "feet"),
  48503. default: true
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48509. {
  48510. front: {
  48511. height: math.unit(5 + 4/12, "feet"),
  48512. name: "Front",
  48513. image: {
  48514. source: "./media/characters/makar/front.svg",
  48515. extra: 1181/1112,
  48516. bottom: 78/1259
  48517. }
  48518. },
  48519. },
  48520. [
  48521. {
  48522. name: "Normal",
  48523. height: math.unit(5 + 4/12, "feet"),
  48524. default: true
  48525. },
  48526. ]
  48527. ))
  48528. characterMakers.push(() => makeCharacter(
  48529. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48530. {
  48531. front: {
  48532. height: math.unit(5 + 7/12, "feet"),
  48533. name: "Front",
  48534. image: {
  48535. source: "./media/characters/callow/front.svg",
  48536. extra: 1482/1304,
  48537. bottom: 23/1505
  48538. }
  48539. },
  48540. back: {
  48541. height: math.unit(5 + 7/12, "feet"),
  48542. name: "Back",
  48543. image: {
  48544. source: "./media/characters/callow/back.svg",
  48545. extra: 1484/1296,
  48546. bottom: 25/1509
  48547. }
  48548. },
  48549. },
  48550. [
  48551. {
  48552. name: "Micro",
  48553. height: math.unit(3, "inches"),
  48554. default: true
  48555. },
  48556. {
  48557. name: "Normal",
  48558. height: math.unit(5 + 7/12, "feet")
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48564. {
  48565. front: {
  48566. height: math.unit(6 + 2/12, "feet"),
  48567. name: "Front",
  48568. image: {
  48569. source: "./media/characters/natel/front.svg",
  48570. extra: 1833/1692,
  48571. bottom: 166/1999
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(6 + 2/12, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48585. {
  48586. front: {
  48587. height: math.unit(1.75, "meters"),
  48588. name: "Front",
  48589. image: {
  48590. source: "./media/characters/misu/front.svg",
  48591. extra: 1690/1558,
  48592. bottom: 234/1924
  48593. }
  48594. },
  48595. back: {
  48596. height: math.unit(1.75, "meters"),
  48597. name: "Back",
  48598. image: {
  48599. source: "./media/characters/misu/back.svg",
  48600. extra: 1762/1618,
  48601. bottom: 146/1908
  48602. }
  48603. },
  48604. frontNude: {
  48605. height: math.unit(1.75, "meters"),
  48606. name: "Front (Nude)",
  48607. image: {
  48608. source: "./media/characters/misu/front-nude.svg",
  48609. extra: 1690/1558,
  48610. bottom: 234/1924
  48611. }
  48612. },
  48613. backNude: {
  48614. height: math.unit(1.75, "meters"),
  48615. name: "Back (Nude)",
  48616. image: {
  48617. source: "./media/characters/misu/back-nude.svg",
  48618. extra: 1762/1618,
  48619. bottom: 146/1908
  48620. }
  48621. },
  48622. frontErect: {
  48623. height: math.unit(1.75, "meters"),
  48624. name: "Front (Erect)",
  48625. image: {
  48626. source: "./media/characters/misu/front-erect.svg",
  48627. extra: 1690/1558,
  48628. bottom: 234/1924
  48629. }
  48630. },
  48631. maw: {
  48632. height: math.unit(0.47, "meters"),
  48633. name: "Maw",
  48634. image: {
  48635. source: "./media/characters/misu/maw.svg"
  48636. }
  48637. },
  48638. head: {
  48639. height: math.unit(0.35, "meters"),
  48640. name: "Head",
  48641. image: {
  48642. source: "./media/characters/misu/head.svg"
  48643. }
  48644. },
  48645. rear: {
  48646. height: math.unit(0.47, "meters"),
  48647. name: "Rear",
  48648. image: {
  48649. source: "./media/characters/misu/rear.svg"
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Normal",
  48656. height: math.unit(1.75, "meters")
  48657. },
  48658. {
  48659. name: "Not good for the people",
  48660. height: math.unit(42, "meters")
  48661. },
  48662. {
  48663. name: "Not good for the neighborhood",
  48664. height: math.unit(135, "meters")
  48665. },
  48666. {
  48667. name: "Bit bigger problem",
  48668. height: math.unit(380, "meters"),
  48669. default: true
  48670. },
  48671. {
  48672. name: "Not good for the city",
  48673. height: math.unit(1.5, "km")
  48674. },
  48675. {
  48676. name: "Not good for the county",
  48677. height: math.unit(5.5, "km")
  48678. },
  48679. {
  48680. name: "Not good for the state",
  48681. height: math.unit(25, "km")
  48682. },
  48683. {
  48684. name: "Not good for the country",
  48685. height: math.unit(125, "km")
  48686. },
  48687. {
  48688. name: "Not good for the continent",
  48689. height: math.unit(2100, "km")
  48690. },
  48691. {
  48692. name: "Not good for the planet",
  48693. height: math.unit(35000, "km")
  48694. },
  48695. {
  48696. name: "Just no",
  48697. height: math.unit(8.5e18, "km")
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48703. {
  48704. front: {
  48705. height: math.unit(6.5, "feet"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/poppy/front.svg",
  48709. extra: 1878/1812,
  48710. bottom: 43/1921
  48711. }
  48712. },
  48713. feet: {
  48714. height: math.unit(1.06, "feet"),
  48715. name: "Feet",
  48716. image: {
  48717. source: "./media/characters/poppy/feet.svg",
  48718. extra: 1083/1083,
  48719. bottom: 87/1170
  48720. }
  48721. },
  48722. },
  48723. [
  48724. {
  48725. name: "Human",
  48726. height: math.unit(6.5, "feet")
  48727. },
  48728. {
  48729. name: "Default",
  48730. height: math.unit(300, "feet"),
  48731. default: true
  48732. },
  48733. {
  48734. name: "Huge",
  48735. height: math.unit(850, "feet")
  48736. },
  48737. {
  48738. name: "Mega",
  48739. height: math.unit(8000, "feet")
  48740. },
  48741. {
  48742. name: "Giga",
  48743. height: math.unit(300, "miles")
  48744. },
  48745. ]
  48746. ))
  48747. characterMakers.push(() => makeCharacter(
  48748. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48749. {
  48750. bipedal: {
  48751. height: math.unit(7, "feet"),
  48752. name: "Bipedal",
  48753. image: {
  48754. source: "./media/characters/zener/bipedal.svg",
  48755. extra: 874/805,
  48756. bottom: 109/983
  48757. }
  48758. },
  48759. quadrupedal: {
  48760. height: math.unit(4.64, "feet"),
  48761. name: "Quadrupedal",
  48762. image: {
  48763. source: "./media/characters/zener/quadrupedal.svg",
  48764. extra: 638/507,
  48765. bottom: 190/828
  48766. }
  48767. },
  48768. cock: {
  48769. height: math.unit(18, "inches"),
  48770. name: "Cock",
  48771. image: {
  48772. source: "./media/characters/zener/cock.svg"
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Normal",
  48779. height: math.unit(7, "feet"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48786. {
  48787. nude: {
  48788. height: math.unit(5 + 6/12, "feet"),
  48789. name: "Nude",
  48790. image: {
  48791. source: "./media/characters/charlie-dog/nude.svg",
  48792. extra: 768/734,
  48793. bottom: 26/794
  48794. }
  48795. },
  48796. dressed: {
  48797. height: math.unit(5 + 6/12, "feet"),
  48798. name: "Dressed",
  48799. image: {
  48800. source: "./media/characters/charlie-dog/dressed.svg",
  48801. extra: 768/734,
  48802. bottom: 26/794
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(5 + 6/12, "feet"),
  48810. default: true
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(6 + 4/12, "feet"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/ir'istrasz/front.svg",
  48822. extra: 1014/977,
  48823. bottom: 65/1079
  48824. }
  48825. },
  48826. back: {
  48827. height: math.unit(6 + 4/12, "feet"),
  48828. name: "Back",
  48829. image: {
  48830. source: "./media/characters/ir'istrasz/back.svg",
  48831. extra: 1024/992,
  48832. bottom: 34/1058
  48833. }
  48834. },
  48835. },
  48836. [
  48837. {
  48838. name: "Normal",
  48839. height: math.unit(6 + 4/12, "feet"),
  48840. default: true
  48841. },
  48842. ]
  48843. ))
  48844. characterMakers.push(() => makeCharacter(
  48845. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48846. {
  48847. front: {
  48848. height: math.unit(5 + 8/12, "feet"),
  48849. name: "Front",
  48850. image: {
  48851. source: "./media/characters/dee-ditto/front.svg",
  48852. extra: 1874/1785,
  48853. bottom: 68/1942
  48854. }
  48855. },
  48856. back: {
  48857. height: math.unit(5 + 8/12, "feet"),
  48858. name: "Back",
  48859. image: {
  48860. source: "./media/characters/dee-ditto/back.svg",
  48861. extra: 1870/1783,
  48862. bottom: 77/1947
  48863. }
  48864. },
  48865. },
  48866. [
  48867. {
  48868. name: "Normal",
  48869. height: math.unit(5 + 8/12, "feet"),
  48870. default: true
  48871. },
  48872. ]
  48873. ))
  48874. characterMakers.push(() => makeCharacter(
  48875. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48876. {
  48877. front: {
  48878. height: math.unit(7 + 6/12, "feet"),
  48879. name: "Front",
  48880. image: {
  48881. source: "./media/characters/fey/front.svg",
  48882. extra: 995/979,
  48883. bottom: 30/1025
  48884. }
  48885. },
  48886. back: {
  48887. height: math.unit(7 + 6/12, "feet"),
  48888. name: "Back",
  48889. image: {
  48890. source: "./media/characters/fey/back.svg",
  48891. extra: 1079/1008,
  48892. bottom: 5/1084
  48893. }
  48894. },
  48895. dressed: {
  48896. height: math.unit(7 + 6/12, "feet"),
  48897. name: "Dressed",
  48898. image: {
  48899. source: "./media/characters/fey/dressed.svg",
  48900. extra: 995/979,
  48901. bottom: 30/1025
  48902. }
  48903. },
  48904. },
  48905. [
  48906. {
  48907. name: "Normal",
  48908. height: math.unit(7 + 6/12, "feet"),
  48909. default: true
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48915. {
  48916. standing: {
  48917. height: math.unit(17, "feet"),
  48918. name: "Standing",
  48919. image: {
  48920. source: "./media/characters/aster/standing.svg",
  48921. extra: 1798/1598,
  48922. bottom: 117/1915
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(17, "feet"),
  48930. default: true
  48931. },
  48932. {
  48933. name: "Homewrecker",
  48934. height: math.unit(95, "feet")
  48935. },
  48936. {
  48937. name: "Planet Devourer",
  48938. height: math.unit(1008000, "miles")
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48944. {
  48945. front: {
  48946. height: math.unit(6 + 5/12, "feet"),
  48947. weight: math.unit(265, "lb"),
  48948. name: "Front",
  48949. image: {
  48950. source: "./media/characters/devon-childs/front.svg",
  48951. extra: 1795/1721,
  48952. bottom: 41/1836
  48953. }
  48954. },
  48955. side: {
  48956. height: math.unit(6 + 5/12, "feet"),
  48957. weight: math.unit(265, "lb"),
  48958. name: "Side",
  48959. image: {
  48960. source: "./media/characters/devon-childs/side.svg",
  48961. extra: 1812/1738,
  48962. bottom: 30/1842
  48963. }
  48964. },
  48965. back: {
  48966. height: math.unit(6 + 5/12, "feet"),
  48967. weight: math.unit(265, "lb"),
  48968. name: "Back",
  48969. image: {
  48970. source: "./media/characters/devon-childs/back.svg",
  48971. extra: 1808/1735,
  48972. bottom: 23/1831
  48973. }
  48974. },
  48975. hand: {
  48976. height: math.unit(1.464, "feet"),
  48977. name: "Hand",
  48978. image: {
  48979. source: "./media/characters/devon-childs/hand.svg"
  48980. }
  48981. },
  48982. foot: {
  48983. height: math.unit(1.6, "feet"),
  48984. name: "Foot",
  48985. image: {
  48986. source: "./media/characters/devon-childs/foot.svg"
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Micro",
  48993. height: math.unit(7, "cm")
  48994. },
  48995. {
  48996. name: "Normal",
  48997. height: math.unit(6 + 5/12, "feet"),
  48998. default: true
  48999. },
  49000. {
  49001. name: "Macro",
  49002. height: math.unit(154, "feet")
  49003. },
  49004. ]
  49005. ))
  49006. characterMakers.push(() => makeCharacter(
  49007. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49008. {
  49009. front: {
  49010. height: math.unit(6, "feet"),
  49011. weight: math.unit(180, "lb"),
  49012. name: "Front",
  49013. image: {
  49014. source: "./media/characters/lydemox-vir/front.svg",
  49015. extra: 1632/1435,
  49016. bottom: 58/1690
  49017. }
  49018. },
  49019. frontSFW: {
  49020. height: math.unit(6, "feet"),
  49021. weight: math.unit(180, "lb"),
  49022. name: "Front (SFW)",
  49023. image: {
  49024. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49025. extra: 1632/1435,
  49026. bottom: 58/1690
  49027. }
  49028. },
  49029. back: {
  49030. height: math.unit(6, "feet"),
  49031. weight: math.unit(180, "lb"),
  49032. name: "Back",
  49033. image: {
  49034. source: "./media/characters/lydemox-vir/back.svg",
  49035. extra: 1593/1408,
  49036. bottom: 31/1624
  49037. }
  49038. },
  49039. paw: {
  49040. height: math.unit(1.85, "feet"),
  49041. name: "Paw",
  49042. image: {
  49043. source: "./media/characters/lydemox-vir/paw.svg"
  49044. }
  49045. },
  49046. dick: {
  49047. height: math.unit(1.8, "feet"),
  49048. name: "Dick",
  49049. image: {
  49050. source: "./media/characters/lydemox-vir/dick.svg"
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Macro",
  49057. height: math.unit(100, "feet"),
  49058. default: true
  49059. },
  49060. {
  49061. name: "Teramacro",
  49062. height: math.unit(1, "earth")
  49063. },
  49064. {
  49065. name: "Planetary",
  49066. height: math.unit(20, "earths")
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(15 + 8/12, "feet"),
  49075. weight: math.unit(1237, "kg"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/mia/front.svg",
  49079. extra: 1573/1446,
  49080. bottom: 58/1631
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Small",
  49087. height: math.unit(9 + 5/12, "feet")
  49088. },
  49089. {
  49090. name: "Normal",
  49091. height: math.unit(15 + 8/12, "feet"),
  49092. default: true
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(10 + 6/12, "feet"),
  49101. weight: math.unit(1.3, "tons"),
  49102. name: "Front",
  49103. image: {
  49104. source: "./media/characters/mr-graves/front.svg",
  49105. extra: 1779/1695,
  49106. bottom: 198/1977
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(10 + 6 /12, "feet"),
  49114. default: true
  49115. },
  49116. ]
  49117. ))
  49118. characterMakers.push(() => makeCharacter(
  49119. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49120. {
  49121. dressedFront: {
  49122. height: math.unit(5 + 8/12, "feet"),
  49123. weight: math.unit(125, "lb"),
  49124. name: "Dressed (Front)",
  49125. image: {
  49126. source: "./media/characters/jess/dressed-front.svg",
  49127. extra: 1176/1152,
  49128. bottom: 42/1218
  49129. }
  49130. },
  49131. dressedSide: {
  49132. height: math.unit(5 + 8/12, "feet"),
  49133. weight: math.unit(125, "lb"),
  49134. name: "Dressed (Side)",
  49135. image: {
  49136. source: "./media/characters/jess/dressed-side.svg",
  49137. extra: 1204/1190,
  49138. bottom: 6/1210
  49139. }
  49140. },
  49141. nudeFront: {
  49142. height: math.unit(5 + 8/12, "feet"),
  49143. weight: math.unit(125, "lb"),
  49144. name: "Nude (Front)",
  49145. image: {
  49146. source: "./media/characters/jess/nude-front.svg",
  49147. extra: 1176/1152,
  49148. bottom: 42/1218
  49149. }
  49150. },
  49151. nudeSide: {
  49152. height: math.unit(5 + 8/12, "feet"),
  49153. weight: math.unit(125, "lb"),
  49154. name: "Nude (Side)",
  49155. image: {
  49156. source: "./media/characters/jess/nude-side.svg",
  49157. extra: 1204/1190,
  49158. bottom: 6/1210
  49159. }
  49160. },
  49161. organsFront: {
  49162. height: math.unit(2.83799342105, "feet"),
  49163. name: "Organs (Front)",
  49164. image: {
  49165. source: "./media/characters/jess/organs-front.svg"
  49166. }
  49167. },
  49168. organsSide: {
  49169. height: math.unit(2.64225290474, "feet"),
  49170. name: "Organs (Side)",
  49171. image: {
  49172. source: "./media/characters/jess/organs-side.svg"
  49173. }
  49174. },
  49175. digestiveTractFront: {
  49176. height: math.unit(2.8106580871, "feet"),
  49177. name: "Digestive Tract (Front)",
  49178. image: {
  49179. source: "./media/characters/jess/digestive-tract-front.svg"
  49180. }
  49181. },
  49182. digestiveTractSide: {
  49183. height: math.unit(2.54365045014, "feet"),
  49184. name: "Digestive Tract (Side)",
  49185. image: {
  49186. source: "./media/characters/jess/digestive-tract-side.svg"
  49187. }
  49188. },
  49189. respiratorySystemFront: {
  49190. height: math.unit(1.11196233456, "feet"),
  49191. name: "Respiratory System (Front)",
  49192. image: {
  49193. source: "./media/characters/jess/respiratory-system-front.svg"
  49194. }
  49195. },
  49196. respiratorySystemSide: {
  49197. height: math.unit(0.89327966297, "feet"),
  49198. name: "Respiratory System (Side)",
  49199. image: {
  49200. source: "./media/characters/jess/respiratory-system-side.svg"
  49201. }
  49202. },
  49203. urinaryTractFront: {
  49204. height: math.unit(1.16126356186, "feet"),
  49205. name: "Urinary Tract (Front)",
  49206. image: {
  49207. source: "./media/characters/jess/urinary-tract-front.svg"
  49208. }
  49209. },
  49210. urinaryTractSide: {
  49211. height: math.unit(1.20910039627, "feet"),
  49212. name: "Urinary Tract (Side)",
  49213. image: {
  49214. source: "./media/characters/jess/urinary-tract-side.svg"
  49215. }
  49216. },
  49217. reproductiveOrgansFront: {
  49218. height: math.unit(0.48422591566, "feet"),
  49219. name: "Reproductive Organs (Front)",
  49220. image: {
  49221. source: "./media/characters/jess/reproductive-organs-front.svg"
  49222. }
  49223. },
  49224. reproductiveOrgansSide: {
  49225. height: math.unit(0.61553314481, "feet"),
  49226. name: "Reproductive Organs (Side)",
  49227. image: {
  49228. source: "./media/characters/jess/reproductive-organs-side.svg"
  49229. }
  49230. },
  49231. breastsFront: {
  49232. height: math.unit(0.47690395121, "feet"),
  49233. name: "Breasts (Front)",
  49234. image: {
  49235. source: "./media/characters/jess/breasts-front.svg"
  49236. }
  49237. },
  49238. breastsSide: {
  49239. height: math.unit(0.30556998307, "feet"),
  49240. name: "Breasts (Side)",
  49241. image: {
  49242. source: "./media/characters/jess/breasts-side.svg"
  49243. }
  49244. },
  49245. heartFront: {
  49246. height: math.unit(0.53011022622, "feet"),
  49247. name: "Heart (Front)",
  49248. image: {
  49249. source: "./media/characters/jess/heart-front.svg"
  49250. }
  49251. },
  49252. heartSide: {
  49253. height: math.unit(0.51790695213, "feet"),
  49254. name: "Heart (Side)",
  49255. image: {
  49256. source: "./media/characters/jess/heart-side.svg"
  49257. }
  49258. },
  49259. earsAndNoseFront: {
  49260. height: math.unit(0.29385483995, "feet"),
  49261. name: "Ears and Nose (Front)",
  49262. image: {
  49263. source: "./media/characters/jess/ears-and-nose-front.svg"
  49264. }
  49265. },
  49266. earsAndNoseSide: {
  49267. height: math.unit(0.18109658741, "feet"),
  49268. name: "Ears and Nose (Side)",
  49269. image: {
  49270. source: "./media/characters/jess/ears-and-nose-side.svg"
  49271. }
  49272. },
  49273. },
  49274. [
  49275. {
  49276. name: "Normal",
  49277. height: math.unit(5 + 8/12, "feet"),
  49278. default: true
  49279. },
  49280. ]
  49281. ))
  49282. characterMakers.push(() => makeCharacter(
  49283. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49284. {
  49285. front: {
  49286. height: math.unit(6, "feet"),
  49287. weight: math.unit(6.64467e-7, "grams"),
  49288. name: "Front",
  49289. image: {
  49290. source: "./media/characters/wimpering/front.svg",
  49291. extra: 597/587,
  49292. bottom: 34/631
  49293. }
  49294. },
  49295. },
  49296. [
  49297. {
  49298. name: "Micro",
  49299. height: math.unit(0.4, "mm"),
  49300. default: true
  49301. },
  49302. ]
  49303. ))
  49304. characterMakers.push(() => makeCharacter(
  49305. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49306. {
  49307. front: {
  49308. height: math.unit(5 + 2/12, "feet"),
  49309. weight: math.unit(110, "lb"),
  49310. name: "Front",
  49311. image: {
  49312. source: "./media/characters/keltre/front.svg",
  49313. extra: 1099/1057,
  49314. bottom: 22/1121
  49315. }
  49316. },
  49317. back: {
  49318. height: math.unit(5 + 2/12, "feet"),
  49319. weight: math.unit(110, "lb"),
  49320. name: "Back",
  49321. image: {
  49322. source: "./media/characters/keltre/back.svg",
  49323. extra: 1095/1053,
  49324. bottom: 17/1112
  49325. }
  49326. },
  49327. dressed: {
  49328. height: math.unit(5 + 2/12, "feet"),
  49329. weight: math.unit(110, "lb"),
  49330. name: "Dressed",
  49331. image: {
  49332. source: "./media/characters/keltre/dressed.svg",
  49333. extra: 1099/1057,
  49334. bottom: 22/1121
  49335. }
  49336. },
  49337. winter: {
  49338. height: math.unit(5 + 2/12, "feet"),
  49339. weight: math.unit(110, "lb"),
  49340. name: "Winter",
  49341. image: {
  49342. source: "./media/characters/keltre/winter.svg",
  49343. extra: 1099/1057,
  49344. bottom: 22/1121
  49345. }
  49346. },
  49347. head: {
  49348. height: math.unit(1.61 * 0.86, "feet"),
  49349. name: "Head",
  49350. image: {
  49351. source: "./media/characters/keltre/head.svg",
  49352. extra: 534/421,
  49353. bottom: 0/534
  49354. }
  49355. },
  49356. hand: {
  49357. height: math.unit(1.3 * 0.86, "feet"),
  49358. name: "Hand",
  49359. image: {
  49360. source: "./media/characters/keltre/hand.svg"
  49361. }
  49362. },
  49363. foot: {
  49364. height: math.unit(1.8 * 0.86, "feet"),
  49365. name: "Foot",
  49366. image: {
  49367. source: "./media/characters/keltre/foot.svg"
  49368. }
  49369. },
  49370. },
  49371. [
  49372. {
  49373. name: "Fine",
  49374. height: math.unit(1, "inch")
  49375. },
  49376. {
  49377. name: "Dimnutive",
  49378. height: math.unit(4, "inches")
  49379. },
  49380. {
  49381. name: "Tiny",
  49382. height: math.unit(1, "foot")
  49383. },
  49384. {
  49385. name: "Small",
  49386. height: math.unit(3, "feet")
  49387. },
  49388. {
  49389. name: "Normal",
  49390. height: math.unit(5 + 2/12, "feet"),
  49391. default: true
  49392. },
  49393. ]
  49394. ))
  49395. characterMakers.push(() => makeCharacter(
  49396. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49397. {
  49398. front: {
  49399. height: math.unit(6 + 2/12, "feet"),
  49400. name: "Front",
  49401. image: {
  49402. source: "./media/characters/nox/front.svg",
  49403. extra: 1917/1830,
  49404. bottom: 74/1991
  49405. }
  49406. },
  49407. back: {
  49408. height: math.unit(6 + 2/12, "feet"),
  49409. name: "Back",
  49410. image: {
  49411. source: "./media/characters/nox/back.svg",
  49412. extra: 1896/1815,
  49413. bottom: 21/1917
  49414. }
  49415. },
  49416. head: {
  49417. height: math.unit(1.1, "feet"),
  49418. name: "Head",
  49419. image: {
  49420. source: "./media/characters/nox/head.svg",
  49421. extra: 874/704,
  49422. bottom: 0/874
  49423. }
  49424. },
  49425. tattoo: {
  49426. height: math.unit(0.729, "feet"),
  49427. name: "Tattoo",
  49428. image: {
  49429. source: "./media/characters/nox/tattoo.svg"
  49430. }
  49431. },
  49432. },
  49433. [
  49434. {
  49435. name: "Normal",
  49436. height: math.unit(6 + 2/12, "feet")
  49437. },
  49438. {
  49439. name: "Gigamacro",
  49440. height: math.unit(2, "earths"),
  49441. default: true
  49442. },
  49443. {
  49444. name: "Cosmic",
  49445. height: math.unit(867, "yottameters")
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49451. {
  49452. front: {
  49453. height: math.unit(6, "feet"),
  49454. weight: math.unit(150, "lb"),
  49455. name: "Front",
  49456. image: {
  49457. source: "./media/characters/caspian/front.svg",
  49458. extra: 1443/1359,
  49459. bottom: 0/1443
  49460. }
  49461. },
  49462. back: {
  49463. height: math.unit(6, "feet"),
  49464. weight: math.unit(150, "lb"),
  49465. name: "Back",
  49466. image: {
  49467. source: "./media/characters/caspian/back.svg",
  49468. extra: 1379/1309,
  49469. bottom: 0/1379
  49470. }
  49471. },
  49472. head: {
  49473. height: math.unit(0.9, "feet"),
  49474. name: "Head",
  49475. image: {
  49476. source: "./media/characters/caspian/head.svg",
  49477. extra: 692/492,
  49478. bottom: 0/692
  49479. }
  49480. },
  49481. headAlt: {
  49482. height: math.unit(0.95, "feet"),
  49483. name: "Head (Alt)",
  49484. image: {
  49485. source: "./media/characters/caspian/head-alt.svg",
  49486. extra: 668/508,
  49487. bottom: 0/668
  49488. }
  49489. },
  49490. hand: {
  49491. height: math.unit(0.8, "feet"),
  49492. name: "Hand",
  49493. image: {
  49494. source: "./media/characters/caspian/hand.svg"
  49495. }
  49496. },
  49497. paw: {
  49498. height: math.unit(0.95, "feet"),
  49499. name: "Paw",
  49500. image: {
  49501. source: "./media/characters/caspian/paw.svg"
  49502. }
  49503. },
  49504. },
  49505. [
  49506. {
  49507. name: "Normal",
  49508. height: math.unit(162, "feet"),
  49509. default: true
  49510. },
  49511. ]
  49512. ))
  49513. characterMakers.push(() => makeCharacter(
  49514. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49515. {
  49516. front: {
  49517. height: math.unit(6, "feet"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/myra-aisling/front.svg",
  49521. extra: 1268/1166,
  49522. bottom: 73/1341
  49523. }
  49524. },
  49525. back: {
  49526. height: math.unit(6, "feet"),
  49527. name: "Back",
  49528. image: {
  49529. source: "./media/characters/myra-aisling/back.svg",
  49530. extra: 1249/1149,
  49531. bottom: 79/1328
  49532. }
  49533. },
  49534. dressed: {
  49535. height: math.unit(6, "feet"),
  49536. name: "Dressed",
  49537. image: {
  49538. source: "./media/characters/myra-aisling/dressed.svg",
  49539. extra: 1290/1189,
  49540. bottom: 47/1337
  49541. }
  49542. },
  49543. hand: {
  49544. height: math.unit(1.1, "feet"),
  49545. name: "Hand",
  49546. image: {
  49547. source: "./media/characters/myra-aisling/hand.svg"
  49548. }
  49549. },
  49550. paw: {
  49551. height: math.unit(1.23, "feet"),
  49552. name: "Paw",
  49553. image: {
  49554. source: "./media/characters/myra-aisling/paw.svg"
  49555. }
  49556. },
  49557. },
  49558. [
  49559. {
  49560. name: "Normal",
  49561. height: math.unit(160, "feet"),
  49562. default: true
  49563. },
  49564. ]
  49565. ))
  49566. characterMakers.push(() => makeCharacter(
  49567. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49568. {
  49569. front: {
  49570. height: math.unit(6, "feet"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/tenley-sidero/front.svg",
  49574. extra: 1365/1276,
  49575. bottom: 47/1412
  49576. }
  49577. },
  49578. back: {
  49579. height: math.unit(6, "feet"),
  49580. name: "Back",
  49581. image: {
  49582. source: "./media/characters/tenley-sidero/back.svg",
  49583. extra: 1383/1283,
  49584. bottom: 35/1418
  49585. }
  49586. },
  49587. dressed: {
  49588. height: math.unit(6, "feet"),
  49589. name: "Dressed",
  49590. image: {
  49591. source: "./media/characters/tenley-sidero/dressed.svg",
  49592. extra: 1364/1275,
  49593. bottom: 42/1406
  49594. }
  49595. },
  49596. head: {
  49597. height: math.unit(1.47, "feet"),
  49598. name: "Head",
  49599. image: {
  49600. source: "./media/characters/tenley-sidero/head.svg",
  49601. extra: 610/490,
  49602. bottom: 0/610
  49603. }
  49604. },
  49605. },
  49606. [
  49607. {
  49608. name: "Normal",
  49609. height: math.unit(154, "feet"),
  49610. default: true
  49611. },
  49612. ]
  49613. ))
  49614. characterMakers.push(() => makeCharacter(
  49615. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49616. {
  49617. front: {
  49618. height: math.unit(5, "inches"),
  49619. name: "Front",
  49620. image: {
  49621. source: "./media/characters/mallory/front.svg",
  49622. extra: 1919/1678,
  49623. bottom: 29/1948
  49624. }
  49625. },
  49626. hand: {
  49627. height: math.unit(0.73, "inches"),
  49628. name: "Hand",
  49629. image: {
  49630. source: "./media/characters/mallory/hand.svg"
  49631. }
  49632. },
  49633. paw: {
  49634. height: math.unit(0.68, "inches"),
  49635. name: "Paw",
  49636. image: {
  49637. source: "./media/characters/mallory/paw.svg"
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Small",
  49644. height: math.unit(5, "inches"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49651. {
  49652. naked: {
  49653. height: math.unit(6, "feet"),
  49654. name: "Naked",
  49655. image: {
  49656. source: "./media/characters/mab/naked.svg",
  49657. extra: 1855/1757,
  49658. bottom: 208/2063
  49659. }
  49660. },
  49661. outside: {
  49662. height: math.unit(6, "feet"),
  49663. name: "Outside",
  49664. image: {
  49665. source: "./media/characters/mab/outside.svg",
  49666. extra: 1855/1757,
  49667. bottom: 208/2063
  49668. }
  49669. },
  49670. party: {
  49671. height: math.unit(6, "feet"),
  49672. name: "Party",
  49673. image: {
  49674. source: "./media/characters/mab/party.svg",
  49675. extra: 1855/1757,
  49676. bottom: 208/2063
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Normal",
  49683. height: math.unit(165, "feet"),
  49684. default: true
  49685. },
  49686. ]
  49687. ))
  49688. characterMakers.push(() => makeCharacter(
  49689. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49690. {
  49691. feral: {
  49692. height: math.unit(12, "feet"),
  49693. weight: math.unit(20000, "lb"),
  49694. name: "Side",
  49695. image: {
  49696. source: "./media/characters/winter/feral.svg",
  49697. extra: 1286/943,
  49698. bottom: 112/1398
  49699. },
  49700. form: "feral",
  49701. default: true
  49702. },
  49703. feralNsfw: {
  49704. height: math.unit(12, "feet"),
  49705. weight: math.unit(20000, "lb"),
  49706. name: "Side (NSFW)",
  49707. image: {
  49708. source: "./media/characters/winter/feral-nsfw.svg",
  49709. extra: 1286/943,
  49710. bottom: 112/1398
  49711. },
  49712. form: "feral"
  49713. },
  49714. dick: {
  49715. height: math.unit(3.79, "feet"),
  49716. name: "Dick",
  49717. image: {
  49718. source: "./media/characters/winter/dick.svg"
  49719. },
  49720. form: "feral"
  49721. },
  49722. anthro: {
  49723. height: math.unit(12, "feet"),
  49724. weight: math.unit(10, "tons"),
  49725. name: "Anthro",
  49726. image: {
  49727. source: "./media/characters/winter/anthro.svg",
  49728. extra: 1701/1553,
  49729. bottom: 64/1765
  49730. },
  49731. form: "anthro",
  49732. default: true
  49733. },
  49734. },
  49735. [
  49736. {
  49737. name: "Big",
  49738. height: math.unit(12, "feet"),
  49739. default: true,
  49740. form: "feral"
  49741. },
  49742. {
  49743. name: "Big",
  49744. height: math.unit(12, "feet"),
  49745. default: true,
  49746. form: "anthro"
  49747. },
  49748. ],
  49749. {
  49750. "feral": {
  49751. name: "Feral",
  49752. default: true
  49753. },
  49754. "anthro": {
  49755. name: "Anthro"
  49756. }
  49757. }
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(4.1, "inches"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/alto/front.svg",
  49767. extra: 736/627,
  49768. bottom: 90/826
  49769. }
  49770. },
  49771. },
  49772. [
  49773. {
  49774. name: "Normal",
  49775. height: math.unit(4.1, "inches"),
  49776. default: true
  49777. },
  49778. ]
  49779. ))
  49780. characterMakers.push(() => makeCharacter(
  49781. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49782. {
  49783. sitting: {
  49784. height: math.unit(3, "feet"),
  49785. name: "Sitting",
  49786. image: {
  49787. source: "./media/characters/ratstrid-v/sitting.svg",
  49788. extra: 355/310,
  49789. bottom: 136/491
  49790. }
  49791. },
  49792. },
  49793. [
  49794. {
  49795. name: "Normal",
  49796. height: math.unit(3, "feet"),
  49797. default: true
  49798. },
  49799. ]
  49800. ))
  49801. characterMakers.push(() => makeCharacter(
  49802. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49803. {
  49804. back: {
  49805. height: math.unit(6, "feet"),
  49806. weight: math.unit(350, "lb"),
  49807. name: "Back",
  49808. image: {
  49809. source: "./media/characters/siz/back.svg",
  49810. extra: 1449/1274,
  49811. bottom: 13/1462
  49812. }
  49813. },
  49814. },
  49815. [
  49816. {
  49817. name: "Over-Overcompressed",
  49818. height: math.unit(8, "feet")
  49819. },
  49820. {
  49821. name: "Overcompressed",
  49822. height: math.unit(32, "feet")
  49823. },
  49824. {
  49825. name: "Compressed",
  49826. height: math.unit(128, "feet"),
  49827. default: true
  49828. },
  49829. {
  49830. name: "Half-Compressed",
  49831. height: math.unit(512, "feet")
  49832. },
  49833. {
  49834. name: "Quarter-Compressed",
  49835. height: math.unit(2048, "feet")
  49836. },
  49837. {
  49838. name: "Uncompressed?",
  49839. height: math.unit(8192, "feet")
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49845. {
  49846. front: {
  49847. height: math.unit(5 + 9/12, "feet"),
  49848. weight: math.unit(150, "lb"),
  49849. name: "Front",
  49850. image: {
  49851. source: "./media/characters/ven/front.svg",
  49852. extra: 1372/1320,
  49853. bottom: 73/1445
  49854. }
  49855. },
  49856. side: {
  49857. height: math.unit(5 + 9/12, "feet"),
  49858. weight: math.unit(1150, "lb"),
  49859. name: "Side",
  49860. image: {
  49861. source: "./media/characters/ven/side.svg",
  49862. extra: 1119/1070,
  49863. bottom: 42/1161
  49864. },
  49865. default: true
  49866. },
  49867. },
  49868. [
  49869. {
  49870. name: "Normal",
  49871. height: math.unit(5 + 9/12, "feet"),
  49872. default: true
  49873. },
  49874. ]
  49875. ))
  49876. characterMakers.push(() => makeCharacter(
  49877. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49878. {
  49879. front: {
  49880. height: math.unit(12, "feet"),
  49881. weight: math.unit(1000, "kg"),
  49882. name: "Front",
  49883. image: {
  49884. source: "./media/characters/maple/front.svg",
  49885. extra: 1193/1081,
  49886. bottom: 22/1215
  49887. }
  49888. },
  49889. },
  49890. [
  49891. {
  49892. name: "Compressed",
  49893. height: math.unit(7, "feet")
  49894. },
  49895. {
  49896. name: "Normal",
  49897. height: math.unit(12, "feet"),
  49898. default: true
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(9, "feet"),
  49907. weight: math.unit(1500, "lb"),
  49908. name: "Front",
  49909. image: {
  49910. source: "./media/characters/nora/front.svg",
  49911. extra: 1348/1286,
  49912. bottom: 218/1566
  49913. }
  49914. },
  49915. erect: {
  49916. height: math.unit(9, "feet"),
  49917. weight: math.unit(11500, "lb"),
  49918. name: "Erect",
  49919. image: {
  49920. source: "./media/characters/nora/erect.svg",
  49921. extra: 1488/1433,
  49922. bottom: 133/1621
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(9, "feet"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49936. {
  49937. front: {
  49938. height: math.unit(25, "feet"),
  49939. weight: math.unit(27500, "lb"),
  49940. name: "Front",
  49941. image: {
  49942. source: "./media/characters/north-caudin/front.svg",
  49943. extra: 1184/1082,
  49944. bottom: 23/1207
  49945. }
  49946. },
  49947. },
  49948. [
  49949. {
  49950. name: "Compressed",
  49951. height: math.unit(10, "feet")
  49952. },
  49953. {
  49954. name: "Normal",
  49955. height: math.unit(25, "feet"),
  49956. default: true
  49957. },
  49958. ]
  49959. ))
  49960. characterMakers.push(() => makeCharacter(
  49961. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49962. {
  49963. front: {
  49964. height: math.unit(9, "feet"),
  49965. weight: math.unit(1250, "lb"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/merrian/front.svg",
  49969. extra: 2393/2304,
  49970. bottom: 40/2433
  49971. }
  49972. },
  49973. },
  49974. [
  49975. {
  49976. name: "Normal",
  49977. height: math.unit(9, "feet"),
  49978. default: true
  49979. },
  49980. ]
  49981. ))
  49982. characterMakers.push(() => makeCharacter(
  49983. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49984. {
  49985. front: {
  49986. height: math.unit(9, "feet"),
  49987. weight: math.unit(1000, "lb"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/hazel/front.svg",
  49991. extra: 2351/2298,
  49992. bottom: 38/2389
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(9, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(13, "feet"),
  50009. weight: math.unit(3200, "lb"),
  50010. name: "Front",
  50011. image: {
  50012. source: "./media/characters/emma/front.svg",
  50013. extra: 2263/2029,
  50014. bottom: 68/2331
  50015. }
  50016. },
  50017. },
  50018. [
  50019. {
  50020. name: "Normal",
  50021. height: math.unit(13, "feet"),
  50022. default: true
  50023. },
  50024. ]
  50025. ))
  50026. characterMakers.push(() => makeCharacter(
  50027. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50028. {
  50029. front: {
  50030. height: math.unit(11 + 9/12, "feet"),
  50031. weight: math.unit(2500, "lb"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/ilumina/front.svg",
  50035. extra: 2248/2209,
  50036. bottom: 164/2412
  50037. }
  50038. },
  50039. },
  50040. [
  50041. {
  50042. name: "Normal",
  50043. height: math.unit(11 + 9/12, "feet"),
  50044. default: true
  50045. },
  50046. ]
  50047. ))
  50048. characterMakers.push(() => makeCharacter(
  50049. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50050. {
  50051. front: {
  50052. height: math.unit(8 + 10/12, "feet"),
  50053. weight: math.unit(1350, "lb"),
  50054. name: "Front",
  50055. image: {
  50056. source: "./media/characters/moonshine/front.svg",
  50057. extra: 2395/2288,
  50058. bottom: 40/2435
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(8 + 10/12, "feet"),
  50066. default: true
  50067. },
  50068. ]
  50069. ))
  50070. characterMakers.push(() => makeCharacter(
  50071. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50072. {
  50073. front: {
  50074. height: math.unit(14, "feet"),
  50075. weight: math.unit(3400, "lb"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/aletia/front.svg",
  50079. extra: 1185/1052,
  50080. bottom: 21/1206
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Compressed",
  50087. height: math.unit(8, "feet")
  50088. },
  50089. {
  50090. name: "Normal",
  50091. height: math.unit(14, "feet"),
  50092. default: true
  50093. },
  50094. ]
  50095. ))
  50096. characterMakers.push(() => makeCharacter(
  50097. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50098. {
  50099. front: {
  50100. height: math.unit(17, "feet"),
  50101. weight: math.unit(6500, "lb"),
  50102. name: "Front",
  50103. image: {
  50104. source: "./media/characters/deidra/front.svg",
  50105. extra: 1201/1081,
  50106. bottom: 16/1217
  50107. }
  50108. },
  50109. },
  50110. [
  50111. {
  50112. name: "Compressed",
  50113. height: math.unit(9 + 6/12, "feet")
  50114. },
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(17, "feet"),
  50118. default: true
  50119. },
  50120. ]
  50121. ))
  50122. characterMakers.push(() => makeCharacter(
  50123. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50124. {
  50125. front: {
  50126. height: math.unit(7 + 4/12, "feet"),
  50127. weight: math.unit(280, "lb"),
  50128. name: "Front",
  50129. image: {
  50130. source: "./media/characters/freki-yrmori/front.svg",
  50131. extra: 1286/1182,
  50132. bottom: 29/1315
  50133. }
  50134. },
  50135. maw: {
  50136. height: math.unit(0.9, "feet"),
  50137. name: "Maw",
  50138. image: {
  50139. source: "./media/characters/freki-yrmori/maw.svg"
  50140. }
  50141. },
  50142. },
  50143. [
  50144. {
  50145. name: "Normal",
  50146. height: math.unit(7 + 4/12, "feet"),
  50147. default: true
  50148. },
  50149. {
  50150. name: "Macro",
  50151. height: math.unit(38.5, "meters")
  50152. },
  50153. ]
  50154. ))
  50155. characterMakers.push(() => makeCharacter(
  50156. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50157. {
  50158. side: {
  50159. height: math.unit(47.2, "meters"),
  50160. weight: math.unit(10000, "tons"),
  50161. name: "Side",
  50162. image: {
  50163. source: "./media/characters/aetherios/side.svg",
  50164. extra: 2363/642,
  50165. bottom: 221/2584
  50166. }
  50167. },
  50168. top: {
  50169. height: math.unit(240, "meters"),
  50170. weight: math.unit(10000, "tons"),
  50171. name: "Top",
  50172. image: {
  50173. source: "./media/characters/aetherios/top.svg"
  50174. }
  50175. },
  50176. bottom: {
  50177. height: math.unit(240, "meters"),
  50178. weight: math.unit(10000, "tons"),
  50179. name: "Bottom",
  50180. image: {
  50181. source: "./media/characters/aetherios/bottom.svg"
  50182. }
  50183. },
  50184. head: {
  50185. height: math.unit(38.6, "meters"),
  50186. name: "Head",
  50187. image: {
  50188. source: "./media/characters/aetherios/head.svg",
  50189. extra: 1335/1112,
  50190. bottom: 0/1335
  50191. }
  50192. },
  50193. front: {
  50194. height: math.unit(29, "meters"),
  50195. name: "Front",
  50196. image: {
  50197. source: "./media/characters/aetherios/front.svg",
  50198. extra: 1266/953,
  50199. bottom: 158/1424
  50200. }
  50201. },
  50202. maw: {
  50203. height: math.unit(16.37, "meters"),
  50204. name: "Maw",
  50205. image: {
  50206. source: "./media/characters/aetherios/maw.svg",
  50207. extra: 748/637,
  50208. bottom: 0/748
  50209. },
  50210. extraAttributes: {
  50211. preyCapacity: {
  50212. name: "Capacity",
  50213. power: 3,
  50214. type: "volume",
  50215. base: math.unit(1000, "people")
  50216. },
  50217. tongueSize: {
  50218. name: "Tongue Size",
  50219. power: 2,
  50220. type: "area",
  50221. base: math.unit(21, "m^2")
  50222. }
  50223. }
  50224. },
  50225. forepaw: {
  50226. height: math.unit(18, "meters"),
  50227. name: "Forepaw",
  50228. image: {
  50229. source: "./media/characters/aetherios/forepaw.svg"
  50230. }
  50231. },
  50232. hindpaw: {
  50233. height: math.unit(23, "meters"),
  50234. name: "Hindpaw",
  50235. image: {
  50236. source: "./media/characters/aetherios/hindpaw.svg"
  50237. }
  50238. },
  50239. genitals: {
  50240. height: math.unit(42, "meters"),
  50241. name: "Genitals",
  50242. image: {
  50243. source: "./media/characters/aetherios/genitals.svg"
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Normal",
  50250. height: math.unit(47.2, "meters"),
  50251. default: true
  50252. },
  50253. {
  50254. name: "Macro",
  50255. height: math.unit(160, "meters")
  50256. },
  50257. {
  50258. name: "Mega",
  50259. height: math.unit(1.87, "km")
  50260. },
  50261. {
  50262. name: "Giga",
  50263. height: math.unit(40000, "km")
  50264. },
  50265. {
  50266. name: "Stellar",
  50267. height: math.unit(158000000, "km")
  50268. },
  50269. {
  50270. name: "Cosmic",
  50271. height: math.unit(9.46e12, "km")
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(5 + 4/12, "feet"),
  50280. weight: math.unit(80, "lb"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/mizu-gieeg/front.svg",
  50284. extra: 850/709,
  50285. bottom: 52/902
  50286. }
  50287. },
  50288. back: {
  50289. height: math.unit(5 + 4/12, "feet"),
  50290. weight: math.unit(80, "lb"),
  50291. name: "Back",
  50292. image: {
  50293. source: "./media/characters/mizu-gieeg/back.svg",
  50294. extra: 882/745,
  50295. bottom: 25/907
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(5 + 4/12, "feet"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50309. {
  50310. front: {
  50311. height: math.unit(6, "feet"),
  50312. name: "Front",
  50313. image: {
  50314. source: "./media/characters/roselle-st-papier/front.svg",
  50315. extra: 1430/1280,
  50316. bottom: 37/1467
  50317. }
  50318. },
  50319. back: {
  50320. height: math.unit(6, "feet"),
  50321. name: "Back",
  50322. image: {
  50323. source: "./media/characters/roselle-st-papier/back.svg",
  50324. extra: 1491/1296,
  50325. bottom: 23/1514
  50326. }
  50327. },
  50328. ear: {
  50329. height: math.unit(1.26, "feet"),
  50330. name: "Ear",
  50331. image: {
  50332. source: "./media/characters/roselle-st-papier/ear.svg"
  50333. }
  50334. },
  50335. },
  50336. [
  50337. {
  50338. name: "Normal",
  50339. height: math.unit(150, "feet"),
  50340. default: true
  50341. },
  50342. ]
  50343. ))
  50344. characterMakers.push(() => makeCharacter(
  50345. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50346. {
  50347. front: {
  50348. height: math.unit(1, "inches"),
  50349. name: "Front",
  50350. image: {
  50351. source: "./media/characters/valargent/front.svg",
  50352. extra: 1825/1694,
  50353. bottom: 62/1887
  50354. }
  50355. },
  50356. back: {
  50357. height: math.unit(1, "inches"),
  50358. name: "Back",
  50359. image: {
  50360. source: "./media/characters/valargent/back.svg",
  50361. extra: 1775/1682,
  50362. bottom: 88/1863
  50363. }
  50364. },
  50365. },
  50366. [
  50367. {
  50368. name: "Micro",
  50369. height: math.unit(1, "inch"),
  50370. default: true
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50376. {
  50377. front: {
  50378. height: math.unit(3.4, "meters"),
  50379. name: "Front",
  50380. image: {
  50381. source: "./media/characters/zarina/front.svg",
  50382. extra: 1733/1425,
  50383. bottom: 93/1826
  50384. }
  50385. },
  50386. squatting: {
  50387. height: math.unit(2.14, "meters"),
  50388. name: "Squatting",
  50389. image: {
  50390. source: "./media/characters/zarina/squatting.svg",
  50391. extra: 1073/788,
  50392. bottom: 63/1136
  50393. }
  50394. },
  50395. back: {
  50396. height: math.unit(2.14, "meters"),
  50397. name: "Back",
  50398. image: {
  50399. source: "./media/characters/zarina/back.svg",
  50400. extra: 1128/885,
  50401. bottom: 0/1128
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(3.4, "meters"),
  50409. default: true
  50410. },
  50411. {
  50412. name: "Big",
  50413. height: math.unit(5, "meters")
  50414. },
  50415. {
  50416. name: "Macro",
  50417. height: math.unit(110, "meters")
  50418. },
  50419. ]
  50420. ))
  50421. characterMakers.push(() => makeCharacter(
  50422. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50423. {
  50424. front: {
  50425. height: math.unit(7, "feet"),
  50426. name: "Front",
  50427. image: {
  50428. source: "./media/characters/ventus-astro-fox/front.svg",
  50429. extra: 1792/1623,
  50430. bottom: 28/1820
  50431. }
  50432. },
  50433. back: {
  50434. height: math.unit(7, "feet"),
  50435. name: "Back",
  50436. image: {
  50437. source: "./media/characters/ventus-astro-fox/back.svg",
  50438. extra: 1789/1620,
  50439. bottom: 31/1820
  50440. }
  50441. },
  50442. outfit: {
  50443. height: math.unit(7, "feet"),
  50444. name: "Outfit",
  50445. image: {
  50446. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50447. extra: 1054/925,
  50448. bottom: 15/1069
  50449. }
  50450. },
  50451. head: {
  50452. height: math.unit(1.12, "feet"),
  50453. name: "Head",
  50454. image: {
  50455. source: "./media/characters/ventus-astro-fox/head.svg",
  50456. extra: 866/504,
  50457. bottom: 0/866
  50458. }
  50459. },
  50460. hand: {
  50461. height: math.unit(1, "feet"),
  50462. name: "Hand",
  50463. image: {
  50464. source: "./media/characters/ventus-astro-fox/hand.svg"
  50465. }
  50466. },
  50467. paw: {
  50468. height: math.unit(1.5, "feet"),
  50469. name: "Paw",
  50470. image: {
  50471. source: "./media/characters/ventus-astro-fox/paw.svg"
  50472. }
  50473. },
  50474. },
  50475. [
  50476. {
  50477. name: "Normal",
  50478. height: math.unit(7, "feet"),
  50479. default: true
  50480. },
  50481. {
  50482. name: "Macro",
  50483. height: math.unit(200, "feet")
  50484. },
  50485. {
  50486. name: "Cosmic",
  50487. height: math.unit(3, "universes")
  50488. },
  50489. ]
  50490. ))
  50491. characterMakers.push(() => makeCharacter(
  50492. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50493. {
  50494. front: {
  50495. height: math.unit(3, "meters"),
  50496. weight: math.unit(7000, "lb"),
  50497. name: "Front",
  50498. image: {
  50499. source: "./media/characters/core-t/front.svg",
  50500. extra: 5729/4941,
  50501. bottom: 1129/6858
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Big",
  50508. height: math.unit(3, "meters"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50515. {
  50516. normal: {
  50517. height: math.unit(6 + 6/12, "feet"),
  50518. weight: math.unit(275, "lb"),
  50519. name: "Front",
  50520. image: {
  50521. source: "./media/characters/cadbunny/normal.svg",
  50522. extra: 1129/947,
  50523. bottom: 93/1222
  50524. },
  50525. default: true,
  50526. form: "normal"
  50527. },
  50528. gigantamax: {
  50529. height: math.unit(26, "feet"),
  50530. weight: math.unit(16000, "lb"),
  50531. name: "Front",
  50532. image: {
  50533. source: "./media/characters/cadbunny/gigantamax.svg",
  50534. extra: 1133/944,
  50535. bottom: 90/1223
  50536. },
  50537. default: true,
  50538. form: "gigantamax"
  50539. },
  50540. },
  50541. [
  50542. {
  50543. name: "Normal",
  50544. height: math.unit(6 + 6/12, "feet"),
  50545. default: true,
  50546. form: "normal"
  50547. },
  50548. {
  50549. name: "Small",
  50550. height: math.unit(26, "feet"),
  50551. default: true,
  50552. form: "gigantamax"
  50553. },
  50554. {
  50555. name: "Large",
  50556. height: math.unit(78, "feet"),
  50557. form: "gigantamax"
  50558. },
  50559. ],
  50560. {
  50561. "normal": {
  50562. name: "Normal",
  50563. default: true
  50564. },
  50565. "gigantamax": {
  50566. name: "Gigantamax"
  50567. }
  50568. }
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50572. {
  50573. anthroFront: {
  50574. height: math.unit(8, "feet"),
  50575. weight: math.unit(300, "lb"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50579. extra: 1272/1176,
  50580. bottom: 53/1325
  50581. },
  50582. form: "anthro",
  50583. default: true
  50584. },
  50585. feralSide: {
  50586. height: math.unit(4, "feet"),
  50587. weight: math.unit(250, "lb"),
  50588. name: "Side",
  50589. image: {
  50590. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50591. extra: 731/621,
  50592. bottom: 0/731
  50593. },
  50594. form: "feral",
  50595. default: true
  50596. },
  50597. },
  50598. [
  50599. {
  50600. name: "Regular",
  50601. height: math.unit(8, "feet"),
  50602. form: "anthro"
  50603. },
  50604. {
  50605. name: "Macro",
  50606. height: math.unit(250, "feet"),
  50607. form: "anthro",
  50608. default: true
  50609. },
  50610. {
  50611. name: "Regular",
  50612. height: math.unit(4, "feet"),
  50613. form: "feral"
  50614. },
  50615. {
  50616. name: "Macro",
  50617. height: math.unit(125, "feet"),
  50618. form: "feral",
  50619. default: true
  50620. },
  50621. ],
  50622. {
  50623. "anthro": {
  50624. name: "Anthro",
  50625. default: true
  50626. },
  50627. "feral": {
  50628. name: "Feral",
  50629. },
  50630. }
  50631. ))
  50632. characterMakers.push(() => makeCharacter(
  50633. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50634. {
  50635. front: {
  50636. height: math.unit(11 + 10/12, "feet"),
  50637. weight: math.unit(1587, "kg"),
  50638. name: "Front",
  50639. image: {
  50640. source: "./media/characters/maple-javira-dragon/front.svg",
  50641. extra: 1136/744,
  50642. bottom: 73/1209
  50643. }
  50644. },
  50645. side: {
  50646. height: math.unit(11 + 10/12, "feet"),
  50647. weight: math.unit(1587, "kg"),
  50648. name: "Side",
  50649. image: {
  50650. source: "./media/characters/maple-javira-dragon/side.svg",
  50651. extra: 712/505,
  50652. bottom: 17/729
  50653. }
  50654. },
  50655. head: {
  50656. height: math.unit(8.05, "feet"),
  50657. name: "Head",
  50658. image: {
  50659. source: "./media/characters/maple-javira-dragon/head.svg",
  50660. extra: 1420/1344,
  50661. bottom: 0/1420
  50662. }
  50663. },
  50664. },
  50665. [
  50666. {
  50667. name: "Normal",
  50668. height: math.unit(11 + 10/12, "feet"),
  50669. default: true
  50670. },
  50671. ]
  50672. ))
  50673. characterMakers.push(() => makeCharacter(
  50674. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50675. {
  50676. front: {
  50677. height: math.unit(117, "cm"),
  50678. weight: math.unit(50, "kg"),
  50679. name: "Front",
  50680. image: {
  50681. source: "./media/characters/sonia-wyverntail/front.svg",
  50682. extra: 708/592,
  50683. bottom: 25/733
  50684. }
  50685. },
  50686. },
  50687. [
  50688. {
  50689. name: "Normal",
  50690. height: math.unit(117, "cm"),
  50691. default: true
  50692. },
  50693. ]
  50694. ))
  50695. characterMakers.push(() => makeCharacter(
  50696. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50697. {
  50698. front: {
  50699. height: math.unit(6 + 5/12, "feet"),
  50700. name: "Front",
  50701. image: {
  50702. source: "./media/characters/micah/front.svg",
  50703. extra: 1758/1546,
  50704. bottom: 214/1972
  50705. }
  50706. },
  50707. },
  50708. [
  50709. {
  50710. name: "Normal",
  50711. height: math.unit(6 + 5/12, "feet"),
  50712. default: true
  50713. },
  50714. ]
  50715. ))
  50716. characterMakers.push(() => makeCharacter(
  50717. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50718. {
  50719. front: {
  50720. height: math.unit(5 + 10/12, "feet"),
  50721. weight: math.unit(220, "lb"),
  50722. name: "Front",
  50723. image: {
  50724. source: "./media/characters/zarya/front.svg",
  50725. extra: 593/572,
  50726. bottom: 50/643
  50727. }
  50728. },
  50729. back: {
  50730. height: math.unit(5 + 10/12, "feet"),
  50731. weight: math.unit(220, "lb"),
  50732. name: "Back",
  50733. image: {
  50734. source: "./media/characters/zarya/back.svg",
  50735. extra: 603/582,
  50736. bottom: 38/641
  50737. }
  50738. },
  50739. },
  50740. [
  50741. {
  50742. name: "Normal",
  50743. height: math.unit(5 + 10/12, "feet"),
  50744. default: true
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50750. {
  50751. front: {
  50752. height: math.unit(7.5, "feet"),
  50753. name: "Front",
  50754. image: {
  50755. source: "./media/characters/sven-hatisson/front.svg",
  50756. extra: 917/857,
  50757. bottom: 42/959
  50758. }
  50759. },
  50760. back: {
  50761. height: math.unit(7.5, "feet"),
  50762. name: "Back",
  50763. image: {
  50764. source: "./media/characters/sven-hatisson/back.svg",
  50765. extra: 903/856,
  50766. bottom: 15/918
  50767. }
  50768. },
  50769. },
  50770. [
  50771. {
  50772. name: "Base Height",
  50773. height: math.unit(7.5, "feet")
  50774. },
  50775. {
  50776. name: "Usual Height",
  50777. height: math.unit(13.5, "feet"),
  50778. default: true
  50779. },
  50780. {
  50781. name: "Smaller Macro",
  50782. height: math.unit(85, "feet")
  50783. },
  50784. {
  50785. name: "Moderate Macro",
  50786. height: math.unit(320, "feet")
  50787. },
  50788. {
  50789. name: "Large Macro",
  50790. height: math.unit(1000, "feet")
  50791. },
  50792. {
  50793. name: "Largest Size",
  50794. height: math.unit(2, "miles")
  50795. },
  50796. ]
  50797. ))
  50798. characterMakers.push(() => makeCharacter(
  50799. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50800. {
  50801. side: {
  50802. height: math.unit(1.8, "meters"),
  50803. weight: math.unit(275, "kg"),
  50804. name: "Side",
  50805. image: {
  50806. source: "./media/characters/terra/side.svg",
  50807. extra: 1273/1147,
  50808. bottom: 0/1273
  50809. }
  50810. },
  50811. },
  50812. [
  50813. {
  50814. name: "Normal",
  50815. height: math.unit(16.2, "meters"),
  50816. default: true
  50817. },
  50818. ]
  50819. ))
  50820. characterMakers.push(() => makeCharacter(
  50821. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50822. {
  50823. borzoiFront: {
  50824. height: math.unit(6 + 9/12, "feet"),
  50825. name: "Front",
  50826. image: {
  50827. source: "./media/characters/rae/borzoi-front.svg",
  50828. extra: 1161/1098,
  50829. bottom: 31/1192
  50830. },
  50831. form: "borzoi",
  50832. default: true
  50833. },
  50834. werewolfFront: {
  50835. height: math.unit(8 + 7/12, "feet"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/rae/werewolf-front.svg",
  50839. extra: 1411/1334,
  50840. bottom: 127/1538
  50841. },
  50842. form: "werewolf",
  50843. default: true
  50844. },
  50845. },
  50846. [
  50847. {
  50848. name: "Normal",
  50849. height: math.unit(6 + 9/12, "feet"),
  50850. default: true,
  50851. form: "borzoi"
  50852. },
  50853. {
  50854. name: "Normal",
  50855. height: math.unit(8 + 7/12, "feet"),
  50856. default: true,
  50857. form: "werewolf"
  50858. },
  50859. ],
  50860. {
  50861. "borzoi": {
  50862. name: "Borzoi",
  50863. default: true
  50864. },
  50865. "werewolf": {
  50866. name: "Werewolf",
  50867. },
  50868. }
  50869. ))
  50870. characterMakers.push(() => makeCharacter(
  50871. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50872. {
  50873. front: {
  50874. height: math.unit(8 + 7/12, "feet"),
  50875. weight: math.unit(482, "lb"),
  50876. name: "Front",
  50877. image: {
  50878. source: "./media/characters/kit/front.svg",
  50879. extra: 1247/1103,
  50880. bottom: 41/1288
  50881. }
  50882. },
  50883. back: {
  50884. height: math.unit(8 + 7/12, "feet"),
  50885. weight: math.unit(482, "lb"),
  50886. name: "Back",
  50887. image: {
  50888. source: "./media/characters/kit/back.svg",
  50889. extra: 1252/1123,
  50890. bottom: 21/1273
  50891. }
  50892. },
  50893. paw: {
  50894. height: math.unit(1.46, "feet"),
  50895. name: "Paw",
  50896. image: {
  50897. source: "./media/characters/kit/paw.svg"
  50898. }
  50899. },
  50900. },
  50901. [
  50902. {
  50903. name: "Normal",
  50904. height: math.unit(2.61, "meters"),
  50905. default: true
  50906. },
  50907. {
  50908. name: "\"Tall\"",
  50909. height: math.unit(8.21, "meters")
  50910. },
  50911. {
  50912. name: "Tall",
  50913. height: math.unit(19.6, "meters")
  50914. },
  50915. {
  50916. name: "Very Tall",
  50917. height: math.unit(57.91, "meters")
  50918. },
  50919. {
  50920. name: "Semi-Macro",
  50921. height: math.unit(138.64, "meters")
  50922. },
  50923. {
  50924. name: "Macro",
  50925. height: math.unit(831.99, "meters")
  50926. },
  50927. {
  50928. name: "EX-Macro",
  50929. height: math.unit(96451121, "meters")
  50930. },
  50931. {
  50932. name: "S1-Omnipotent",
  50933. height: math.unit(4.42074e+9, "meters")
  50934. },
  50935. {
  50936. name: "S2-Omnipotent",
  50937. height: math.unit(9.42074e+17, "meters")
  50938. },
  50939. {
  50940. name: "Omnipotent",
  50941. height: math.unit(4.23112e+24, "meters")
  50942. },
  50943. {
  50944. name: "Hypergod",
  50945. height: math.unit(5.05176e+27, "meters")
  50946. },
  50947. {
  50948. name: "Hypergod-EX",
  50949. height: math.unit(9.45532e+49, "meters")
  50950. },
  50951. {
  50952. name: "Hypergod-SP",
  50953. height: math.unit(9.45532e+195, "meters")
  50954. },
  50955. ]
  50956. ))
  50957. characterMakers.push(() => makeCharacter(
  50958. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50959. {
  50960. side: {
  50961. height: math.unit(0.6, "meters"),
  50962. weight: math.unit(24, "kg"),
  50963. name: "Side",
  50964. image: {
  50965. source: "./media/characters/celeste/side.svg",
  50966. extra: 810/517,
  50967. bottom: 53/863
  50968. }
  50969. },
  50970. },
  50971. [
  50972. {
  50973. name: "Velociraptor",
  50974. height: math.unit(0.6, "meters"),
  50975. default: true
  50976. },
  50977. {
  50978. name: "Utahraptor",
  50979. height: math.unit(1.8, "meters")
  50980. },
  50981. {
  50982. name: "Gallimimus",
  50983. height: math.unit(4.0, "meters")
  50984. },
  50985. {
  50986. name: "Large",
  50987. height: math.unit(20, "meters")
  50988. },
  50989. {
  50990. name: "Planetary",
  50991. height: math.unit(50, "megameters")
  50992. },
  50993. {
  50994. name: "Stellar",
  50995. height: math.unit(1.5, "gigameters")
  50996. },
  50997. {
  50998. name: "Galactic",
  50999. height: math.unit(100, "exameters")
  51000. },
  51001. ]
  51002. ))
  51003. characterMakers.push(() => makeCharacter(
  51004. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51005. {
  51006. front: {
  51007. height: math.unit(6, "feet"),
  51008. weight: math.unit(210, "lb"),
  51009. name: "Front",
  51010. image: {
  51011. source: "./media/characters/glacia/front.svg",
  51012. extra: 958/901,
  51013. bottom: 45/1003
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Macro",
  51020. height: math.unit(1000, "meters"),
  51021. default: true
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51027. {
  51028. front: {
  51029. height: math.unit(4, "meters"),
  51030. name: "Front",
  51031. image: {
  51032. source: "./media/characters/giri/front.svg",
  51033. extra: 966/894,
  51034. bottom: 21/987
  51035. }
  51036. },
  51037. },
  51038. [
  51039. {
  51040. name: "Normal",
  51041. height: math.unit(4, "meters"),
  51042. default: true
  51043. },
  51044. ]
  51045. ))
  51046. characterMakers.push(() => makeCharacter(
  51047. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51048. {
  51049. back: {
  51050. height: math.unit(4, "feet"),
  51051. weight: math.unit(37, "lb"),
  51052. name: "Back",
  51053. image: {
  51054. source: "./media/characters/tin/back.svg",
  51055. extra: 845/780,
  51056. bottom: 28/873
  51057. }
  51058. },
  51059. },
  51060. [
  51061. {
  51062. name: "Normal",
  51063. height: math.unit(4, "feet"),
  51064. default: true
  51065. },
  51066. ]
  51067. ))
  51068. characterMakers.push(() => makeCharacter(
  51069. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51070. {
  51071. front: {
  51072. height: math.unit(25, "feet"),
  51073. name: "Front",
  51074. image: {
  51075. source: "./media/characters/cadenza-vivace/front.svg",
  51076. extra: 1842/1578,
  51077. bottom: 30/1872
  51078. }
  51079. },
  51080. },
  51081. [
  51082. {
  51083. name: "Macro",
  51084. height: math.unit(25, "feet"),
  51085. default: true
  51086. },
  51087. ]
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51091. {
  51092. front: {
  51093. height: math.unit(10, "feet"),
  51094. weight: math.unit(625, "kg"),
  51095. name: "Front",
  51096. image: {
  51097. source: "./media/characters/zain/front.svg",
  51098. extra: 1682/1498,
  51099. bottom: 223/1905
  51100. }
  51101. },
  51102. back: {
  51103. height: math.unit(10, "feet"),
  51104. weight: math.unit(625, "kg"),
  51105. name: "Back",
  51106. image: {
  51107. source: "./media/characters/zain/back.svg",
  51108. extra: 1814/1657,
  51109. bottom: 152/1966
  51110. }
  51111. },
  51112. head: {
  51113. height: math.unit(10, "feet"),
  51114. weight: math.unit(625, "kg"),
  51115. name: "Head",
  51116. image: {
  51117. source: "./media/characters/zain/head.svg",
  51118. extra: 1059/762,
  51119. bottom: 0/1059
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(10, "feet"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(6 + 5/12, "feet"),
  51136. weight: math.unit(750, "lb"),
  51137. name: "Front",
  51138. image: {
  51139. source: "./media/characters/ruchex/front.svg",
  51140. extra: 877/820,
  51141. bottom: 17/894
  51142. },
  51143. extraAttributes: {
  51144. "width": {
  51145. name: "Width",
  51146. power: 1,
  51147. type: "length",
  51148. base: math.unit(4.757, "feet")
  51149. },
  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: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51163. {
  51164. dressedFront: {
  51165. height: math.unit(191, "cm"),
  51166. weight: math.unit(80, "kg"),
  51167. name: "Front",
  51168. image: {
  51169. source: "./media/characters/buster/dressed-front.svg",
  51170. extra: 1022/973,
  51171. bottom: 69/1091
  51172. }
  51173. },
  51174. dressedBack: {
  51175. height: math.unit(191, "cm"),
  51176. weight: math.unit(80, "kg"),
  51177. name: "Back",
  51178. image: {
  51179. source: "./media/characters/buster/dressed-back.svg",
  51180. extra: 1018/970,
  51181. bottom: 55/1073
  51182. }
  51183. },
  51184. nudeFront: {
  51185. height: math.unit(191, "cm"),
  51186. weight: math.unit(80, "kg"),
  51187. name: "Front (Nude)",
  51188. image: {
  51189. source: "./media/characters/buster/nude-front.svg",
  51190. extra: 1022/973,
  51191. bottom: 69/1091
  51192. }
  51193. },
  51194. nudeBack: {
  51195. height: math.unit(191, "cm"),
  51196. weight: math.unit(80, "kg"),
  51197. name: "Back (Nude)",
  51198. image: {
  51199. source: "./media/characters/buster/nude-back.svg",
  51200. extra: 1018/970,
  51201. bottom: 55/1073
  51202. }
  51203. },
  51204. dick: {
  51205. height: math.unit(2.59, "feet"),
  51206. name: "Dick",
  51207. image: {
  51208. source: "./media/characters/buster/dick.svg"
  51209. }
  51210. },
  51211. ass: {
  51212. height: math.unit(1.2, "feet"),
  51213. name: "Ass",
  51214. image: {
  51215. source: "./media/characters/buster/ass.svg"
  51216. }
  51217. },
  51218. },
  51219. [
  51220. {
  51221. name: "Normal",
  51222. height: math.unit(191, "cm"),
  51223. default: true
  51224. },
  51225. ]
  51226. ))
  51227. characterMakers.push(() => makeCharacter(
  51228. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51229. {
  51230. side: {
  51231. height: math.unit(8.1, "feet"),
  51232. weight: math.unit(3500, "lb"),
  51233. name: "Side",
  51234. image: {
  51235. source: "./media/characters/sonya/side.svg",
  51236. extra: 1730/1317,
  51237. bottom: 86/1816
  51238. }
  51239. },
  51240. },
  51241. [
  51242. {
  51243. name: "Normal",
  51244. height: math.unit(8.1, "feet"),
  51245. default: true
  51246. },
  51247. ]
  51248. ))
  51249. characterMakers.push(() => makeCharacter(
  51250. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51251. {
  51252. front: {
  51253. height: math.unit(6, "feet"),
  51254. weight: math.unit(150, "lb"),
  51255. name: "Front",
  51256. image: {
  51257. source: "./media/characters/cadence-andrysiak/front.svg",
  51258. extra: 1164/1121,
  51259. bottom: 60/1224
  51260. }
  51261. },
  51262. back: {
  51263. height: math.unit(6, "feet"),
  51264. weight: math.unit(150, "lb"),
  51265. name: "Back",
  51266. image: {
  51267. source: "./media/characters/cadence-andrysiak/back.svg",
  51268. extra: 1200/1165,
  51269. bottom: 9/1209
  51270. }
  51271. },
  51272. dressed: {
  51273. height: math.unit(6, "feet"),
  51274. weight: math.unit(150, "lb"),
  51275. name: "Dressed",
  51276. image: {
  51277. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51278. extra: 1164/1121,
  51279. bottom: 60/1224
  51280. }
  51281. },
  51282. },
  51283. [
  51284. {
  51285. name: "Micro",
  51286. height: math.unit(1, "mm")
  51287. },
  51288. {
  51289. name: "Normal",
  51290. height: math.unit(6, "feet"),
  51291. default: true
  51292. },
  51293. ]
  51294. ))
  51295. characterMakers.push(() => makeCharacter(
  51296. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51297. {
  51298. front: {
  51299. height: math.unit(60, "inches"),
  51300. weight: math.unit(16, "lb"),
  51301. preyCapacity: math.unit(80, "liters"),
  51302. name: "Front",
  51303. image: {
  51304. source: "./media/characters/penny-lynx/front.svg",
  51305. extra: 1959/1769,
  51306. bottom: 49/2008
  51307. }
  51308. },
  51309. },
  51310. [
  51311. {
  51312. name: "Nokia",
  51313. height: math.unit(2, "inches")
  51314. },
  51315. {
  51316. name: "Desktop",
  51317. height: math.unit(24, "inches")
  51318. },
  51319. {
  51320. name: "TV",
  51321. height: math.unit(60, "inches")
  51322. },
  51323. {
  51324. name: "Jumbotron",
  51325. height: math.unit(12, "feet")
  51326. },
  51327. {
  51328. name: "Billboard",
  51329. height: math.unit(48, "feet"),
  51330. default: true
  51331. },
  51332. {
  51333. name: "IMAX",
  51334. height: math.unit(96, "feet")
  51335. },
  51336. {
  51337. name: "SINGULARITY",
  51338. height: math.unit(864938, "miles")
  51339. },
  51340. ]
  51341. ))
  51342. characterMakers.push(() => makeCharacter(
  51343. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51344. {
  51345. front: {
  51346. height: math.unit(5 + 4/12, "feet"),
  51347. weight: math.unit(230, "lb"),
  51348. name: "Front",
  51349. image: {
  51350. source: "./media/characters/sukebe/front.svg",
  51351. extra: 2130/2038,
  51352. bottom: 90/2220
  51353. }
  51354. },
  51355. back: {
  51356. height: math.unit(3.48, "feet"),
  51357. weight: math.unit(230, "lb"),
  51358. name: "Back",
  51359. image: {
  51360. source: "./media/characters/sukebe/back.svg",
  51361. extra: 1670/1604,
  51362. bottom: 0/1670
  51363. }
  51364. },
  51365. },
  51366. [
  51367. {
  51368. name: "Normal",
  51369. height: math.unit(5 + 4/12, "feet"),
  51370. default: true
  51371. },
  51372. ]
  51373. ))
  51374. characterMakers.push(() => makeCharacter(
  51375. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51376. {
  51377. front: {
  51378. height: math.unit(6, "feet"),
  51379. name: "Front",
  51380. image: {
  51381. source: "./media/characters/nylla/front.svg",
  51382. extra: 1868/1699,
  51383. bottom: 97/1965
  51384. }
  51385. },
  51386. back: {
  51387. height: math.unit(6, "feet"),
  51388. name: "Back",
  51389. image: {
  51390. source: "./media/characters/nylla/back.svg",
  51391. extra: 1889/1712,
  51392. bottom: 93/1982
  51393. }
  51394. },
  51395. frontNsfw: {
  51396. height: math.unit(6, "feet"),
  51397. name: "Front (NSFW)",
  51398. image: {
  51399. source: "./media/characters/nylla/front-nsfw.svg",
  51400. extra: 1868/1699,
  51401. bottom: 97/1965
  51402. },
  51403. extraAttributes: {
  51404. "dickLength": {
  51405. name: "Dick Length",
  51406. power: 1,
  51407. type: "length",
  51408. base: math.unit(1.4, "feet")
  51409. },
  51410. "cumVolume": {
  51411. name: "Cum Volume",
  51412. power: 3,
  51413. type: "volume",
  51414. base: math.unit(100, "mL")
  51415. },
  51416. }
  51417. },
  51418. backNsfw: {
  51419. height: math.unit(6, "feet"),
  51420. name: "Back (NSFW)",
  51421. image: {
  51422. source: "./media/characters/nylla/back-nsfw.svg",
  51423. extra: 1889/1712,
  51424. bottom: 93/1982
  51425. }
  51426. },
  51427. maw: {
  51428. height: math.unit(2.10, "feet"),
  51429. name: "Maw",
  51430. image: {
  51431. source: "./media/characters/nylla/maw.svg"
  51432. }
  51433. },
  51434. paws: {
  51435. height: math.unit(2.06, "feet"),
  51436. name: "Paws",
  51437. image: {
  51438. source: "./media/characters/nylla/paws.svg"
  51439. }
  51440. },
  51441. muzzle: {
  51442. height: math.unit(0.61, "feet"),
  51443. name: "Muzzle",
  51444. image: {
  51445. source: "./media/characters/nylla/muzzle.svg"
  51446. }
  51447. },
  51448. sheath: {
  51449. height: math.unit(1.305, "feet"),
  51450. name: "Sheath",
  51451. image: {
  51452. source: "./media/characters/nylla/sheath.svg"
  51453. }
  51454. },
  51455. },
  51456. [
  51457. {
  51458. name: "Micro",
  51459. height: math.unit(7.5, "inches")
  51460. },
  51461. {
  51462. name: "Normal",
  51463. height: math.unit(7, "feet"),
  51464. default: true
  51465. },
  51466. {
  51467. name: "Macro",
  51468. height: math.unit(60, "feet")
  51469. },
  51470. {
  51471. name: "Mega",
  51472. height: math.unit(200, "feet")
  51473. },
  51474. ]
  51475. ))
  51476. characterMakers.push(() => makeCharacter(
  51477. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51478. {
  51479. front: {
  51480. height: math.unit(10, "feet"),
  51481. weight: math.unit(2300, "lb"),
  51482. name: "Front",
  51483. image: {
  51484. source: "./media/characters/hunt3r/front.svg",
  51485. extra: 1909/1742,
  51486. bottom: 46/1955
  51487. }
  51488. },
  51489. },
  51490. [
  51491. {
  51492. name: "Normal",
  51493. height: math.unit(10, "feet"),
  51494. default: true
  51495. },
  51496. ]
  51497. ))
  51498. characterMakers.push(() => makeCharacter(
  51499. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51500. {
  51501. dressed: {
  51502. height: math.unit(11, "feet"),
  51503. weight: math.unit(18500, "lb"),
  51504. preyCapacity: math.unit(9, "people"),
  51505. name: "Dressed",
  51506. image: {
  51507. source: "./media/characters/cylphis/dressed.svg",
  51508. extra: 1028/1003,
  51509. bottom: 75/1103
  51510. },
  51511. },
  51512. undressed: {
  51513. height: math.unit(11, "feet"),
  51514. weight: math.unit(18500, "lb"),
  51515. preyCapacity: math.unit(9, "people"),
  51516. name: "Undressed",
  51517. image: {
  51518. source: "./media/characters/cylphis/undressed.svg",
  51519. extra: 1028/1003,
  51520. bottom: 75/1103
  51521. }
  51522. },
  51523. full: {
  51524. height: math.unit(11, "feet"),
  51525. weight: math.unit(18500 + 150*9, "lb"),
  51526. preyCapacity: math.unit(9, "people"),
  51527. name: "Full",
  51528. image: {
  51529. source: "./media/characters/cylphis/full.svg",
  51530. extra: 1028/1003,
  51531. bottom: 75/1103
  51532. }
  51533. },
  51534. },
  51535. [
  51536. {
  51537. name: "Small",
  51538. height: math.unit(8, "feet")
  51539. },
  51540. {
  51541. name: "Normal",
  51542. height: math.unit(11, "feet"),
  51543. default: true
  51544. },
  51545. ]
  51546. ))
  51547. characterMakers.push(() => makeCharacter(
  51548. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51549. {
  51550. front: {
  51551. height: math.unit(2 + 7/12, "feet"),
  51552. name: "Front",
  51553. image: {
  51554. source: "./media/characters/orishan/front.svg",
  51555. extra: 1058/1023,
  51556. bottom: 23/1081
  51557. }
  51558. },
  51559. back: {
  51560. height: math.unit(2 + 7/12, "feet"),
  51561. name: "Back",
  51562. image: {
  51563. source: "./media/characters/orishan/back.svg",
  51564. extra: 1058/1023,
  51565. bottom: 23/1081
  51566. }
  51567. },
  51568. },
  51569. [
  51570. {
  51571. name: "Micro",
  51572. height: math.unit(2, "cm")
  51573. },
  51574. {
  51575. name: "Normal",
  51576. height: math.unit(2 + 7/12, "feet"),
  51577. default: true
  51578. },
  51579. ]
  51580. ))
  51581. characterMakers.push(() => makeCharacter(
  51582. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51583. {
  51584. front: {
  51585. height: math.unit(3, "meters"),
  51586. weight: math.unit(508, "kg"),
  51587. name: "Front",
  51588. image: {
  51589. source: "./media/characters/seranis/front.svg",
  51590. extra: 1478/1454,
  51591. bottom: 41/1519
  51592. }
  51593. },
  51594. },
  51595. [
  51596. {
  51597. name: "Normal",
  51598. height: math.unit(3, "meters"),
  51599. default: true
  51600. },
  51601. {
  51602. name: "Macro",
  51603. height: math.unit(108, "meters")
  51604. },
  51605. {
  51606. name: "Megamacro",
  51607. height: math.unit(1250, "meters")
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51613. {
  51614. undressed: {
  51615. height: math.unit(5 + 3/12, "feet"),
  51616. name: "Undressed",
  51617. image: {
  51618. source: "./media/characters/ankou/undressed.svg",
  51619. extra: 1301/1213,
  51620. bottom: 87/1388
  51621. }
  51622. },
  51623. dressed: {
  51624. height: math.unit(5 + 3/12, "feet"),
  51625. name: "Dressed",
  51626. image: {
  51627. source: "./media/characters/ankou/dressed.svg",
  51628. extra: 1301/1213,
  51629. bottom: 87/1388
  51630. }
  51631. },
  51632. head: {
  51633. height: math.unit(1.61, "feet"),
  51634. name: "Head",
  51635. image: {
  51636. source: "./media/characters/ankou/head.svg"
  51637. }
  51638. },
  51639. },
  51640. [
  51641. {
  51642. name: "Normal",
  51643. height: math.unit(5 + 3/12, "feet"),
  51644. default: true
  51645. },
  51646. ]
  51647. ))
  51648. characterMakers.push(() => makeCharacter(
  51649. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51650. {
  51651. side: {
  51652. height: math.unit(6 + 3/12, "feet"),
  51653. weight: math.unit(200, "kg"),
  51654. name: "Side",
  51655. image: {
  51656. source: "./media/characters/juniper-skunktaur/side.svg",
  51657. extra: 1574/1229,
  51658. bottom: 38/1612
  51659. }
  51660. },
  51661. front: {
  51662. height: math.unit(6 + 3/12, "feet"),
  51663. weight: math.unit(200, "kg"),
  51664. name: "Front",
  51665. image: {
  51666. source: "./media/characters/juniper-skunktaur/front.svg",
  51667. extra: 1337/1278,
  51668. bottom: 22/1359
  51669. }
  51670. },
  51671. back: {
  51672. height: math.unit(6 + 3/12, "feet"),
  51673. weight: math.unit(200, "kg"),
  51674. name: "Back",
  51675. image: {
  51676. source: "./media/characters/juniper-skunktaur/back.svg",
  51677. extra: 1618/1273,
  51678. bottom: 13/1631
  51679. }
  51680. },
  51681. top: {
  51682. height: math.unit(2.62, "feet"),
  51683. weight: math.unit(200, "kg"),
  51684. name: "Top",
  51685. image: {
  51686. source: "./media/characters/juniper-skunktaur/top.svg"
  51687. }
  51688. },
  51689. },
  51690. [
  51691. {
  51692. name: "Normal",
  51693. height: math.unit(6 + 3/12, "feet"),
  51694. default: true
  51695. },
  51696. ]
  51697. ))
  51698. characterMakers.push(() => makeCharacter(
  51699. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51700. {
  51701. front: {
  51702. height: math.unit(20.5, "feet"),
  51703. name: "Front",
  51704. image: {
  51705. source: "./media/characters/rei/front.svg",
  51706. extra: 1349/1195,
  51707. bottom: 31/1380
  51708. }
  51709. },
  51710. back: {
  51711. height: math.unit(20.5, "feet"),
  51712. name: "Back",
  51713. image: {
  51714. source: "./media/characters/rei/back.svg",
  51715. extra: 1358/1204,
  51716. bottom: 22/1380
  51717. }
  51718. },
  51719. pawsDigi: {
  51720. height: math.unit(3.45, "feet"),
  51721. name: "Paws (Digi)",
  51722. image: {
  51723. source: "./media/characters/rei/paws-digi.svg"
  51724. }
  51725. },
  51726. pawsPlanti: {
  51727. height: math.unit(3.45, "feet"),
  51728. name: "Paws (Planti)",
  51729. image: {
  51730. source: "./media/characters/rei/paws-planti.svg"
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Normal",
  51737. height: math.unit(20.5, "feet"),
  51738. default: true
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51744. {
  51745. front: {
  51746. height: math.unit(5 + 11/12, "feet"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/carina/front.svg",
  51750. extra: 1720/1449,
  51751. bottom: 14/1734
  51752. }
  51753. },
  51754. back: {
  51755. height: math.unit(5 + 11/12, "feet"),
  51756. name: "Back",
  51757. image: {
  51758. source: "./media/characters/carina/back.svg",
  51759. extra: 1493/1445,
  51760. bottom: 17/1510
  51761. }
  51762. },
  51763. paw: {
  51764. height: math.unit(0.92, "feet"),
  51765. name: "Paw",
  51766. image: {
  51767. source: "./media/characters/carina/paw.svg"
  51768. }
  51769. },
  51770. },
  51771. [
  51772. {
  51773. name: "Normal",
  51774. height: math.unit(5 + 11/12, "feet"),
  51775. default: true
  51776. },
  51777. ]
  51778. ))
  51779. characterMakers.push(() => makeCharacter(
  51780. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51781. {
  51782. front: {
  51783. height: math.unit(4.88, "meters"),
  51784. name: "Front",
  51785. image: {
  51786. source: "./media/characters/maya/front.svg",
  51787. extra: 1222/1145,
  51788. bottom: 57/1279
  51789. }
  51790. },
  51791. },
  51792. [
  51793. {
  51794. name: "Normal",
  51795. height: math.unit(4.88, "meters"),
  51796. default: true
  51797. },
  51798. {
  51799. name: "Macro",
  51800. height: math.unit(38.1, "meters")
  51801. },
  51802. {
  51803. name: "Macro+",
  51804. height: math.unit(152.4, "meters")
  51805. },
  51806. {
  51807. name: "Macro++",
  51808. height: math.unit(16.09, "km")
  51809. },
  51810. {
  51811. name: "Mega-macro",
  51812. height: math.unit(700, "megameters")
  51813. },
  51814. ]
  51815. ))
  51816. characterMakers.push(() => makeCharacter(
  51817. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51818. {
  51819. front: {
  51820. height: math.unit(6 + 2/12, "feet"),
  51821. weight: math.unit(500, "lb"),
  51822. preyCapacity: math.unit(4, "people"),
  51823. name: "Front",
  51824. image: {
  51825. source: "./media/characters/yepir/front.svg"
  51826. }
  51827. },
  51828. side: {
  51829. height: math.unit(6 + 2/12, "feet"),
  51830. weight: math.unit(500, "lb"),
  51831. preyCapacity: math.unit(4, "people"),
  51832. name: "Side",
  51833. image: {
  51834. source: "./media/characters/yepir/side.svg"
  51835. }
  51836. },
  51837. paw: {
  51838. height: math.unit(1.05, "feet"),
  51839. name: "Paw",
  51840. image: {
  51841. source: "./media/characters/yepir/paw.svg"
  51842. }
  51843. },
  51844. },
  51845. [
  51846. {
  51847. name: "Normal",
  51848. height: math.unit(6 + 2/12, "feet"),
  51849. default: true
  51850. },
  51851. ]
  51852. ))
  51853. characterMakers.push(() => makeCharacter(
  51854. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51855. {
  51856. front: {
  51857. height: math.unit(5 + 4/12, "feet"),
  51858. name: "Front",
  51859. image: {
  51860. source: "./media/characters/russec/front.svg",
  51861. extra: 1926/1626,
  51862. bottom: 72/1998
  51863. }
  51864. },
  51865. back: {
  51866. height: math.unit(5 + 4/12, "feet"),
  51867. name: "Back",
  51868. image: {
  51869. source: "./media/characters/russec/back.svg",
  51870. extra: 1910/1591,
  51871. bottom: 48/1958
  51872. }
  51873. },
  51874. },
  51875. [
  51876. {
  51877. name: "Small",
  51878. height: math.unit(5 + 4/12, "feet")
  51879. },
  51880. {
  51881. name: "Normal",
  51882. height: math.unit(72, "feet"),
  51883. default: true
  51884. },
  51885. ]
  51886. ))
  51887. characterMakers.push(() => makeCharacter(
  51888. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51889. {
  51890. side: {
  51891. height: math.unit(12, "feet"),
  51892. name: "Side",
  51893. image: {
  51894. source: "./media/characters/cianus/side.svg",
  51895. extra: 808/526,
  51896. bottom: 61/869
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(12, "feet"),
  51904. default: true
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(9 + 6/12, "feet"),
  51913. weight: math.unit(300, "lb"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/ahab/front.svg",
  51917. extra: 1897/1868,
  51918. bottom: 121/2018
  51919. }
  51920. },
  51921. frontNsfw: {
  51922. height: math.unit(9 + 6/12, "feet"),
  51923. weight: math.unit(300, "lb"),
  51924. name: "Front-nsfw",
  51925. image: {
  51926. source: "./media/characters/ahab/front-nsfw.svg",
  51927. extra: 1897/1868,
  51928. bottom: 121/2018
  51929. }
  51930. },
  51931. },
  51932. [
  51933. {
  51934. name: "Normal",
  51935. height: math.unit(9 + 6/12, "feet")
  51936. },
  51937. {
  51938. name: "Macro",
  51939. height: math.unit(657, "feet"),
  51940. default: true
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51946. {
  51947. front: {
  51948. height: math.unit(2.69, "meters"),
  51949. weight: math.unit(132, "kg"),
  51950. name: "Front",
  51951. image: {
  51952. source: "./media/characters/aarkus/front.svg",
  51953. extra: 1400/1231,
  51954. bottom: 34/1434
  51955. }
  51956. },
  51957. back: {
  51958. height: math.unit(2.69, "meters"),
  51959. weight: math.unit(132, "kg"),
  51960. name: "Back",
  51961. image: {
  51962. source: "./media/characters/aarkus/back.svg",
  51963. extra: 1381/1218,
  51964. bottom: 30/1411
  51965. }
  51966. },
  51967. frontNsfw: {
  51968. height: math.unit(2.69, "meters"),
  51969. weight: math.unit(132, "kg"),
  51970. name: "Front (NSFW)",
  51971. image: {
  51972. source: "./media/characters/aarkus/front-nsfw.svg",
  51973. extra: 1400/1231,
  51974. bottom: 34/1434
  51975. }
  51976. },
  51977. foot: {
  51978. height: math.unit(1.45, "feet"),
  51979. name: "Foot",
  51980. image: {
  51981. source: "./media/characters/aarkus/foot.svg"
  51982. }
  51983. },
  51984. head: {
  51985. height: math.unit(2.85, "feet"),
  51986. name: "Head",
  51987. image: {
  51988. source: "./media/characters/aarkus/head.svg"
  51989. }
  51990. },
  51991. headAlt: {
  51992. height: math.unit(3.07, "feet"),
  51993. name: "Head (Alt)",
  51994. image: {
  51995. source: "./media/characters/aarkus/head-alt.svg"
  51996. }
  51997. },
  51998. mouth: {
  51999. height: math.unit(1.25, "feet"),
  52000. name: "Mouth",
  52001. image: {
  52002. source: "./media/characters/aarkus/mouth.svg"
  52003. }
  52004. },
  52005. dick: {
  52006. height: math.unit(1.77, "feet"),
  52007. name: "Dick",
  52008. image: {
  52009. source: "./media/characters/aarkus/dick.svg"
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Normal",
  52016. height: math.unit(2.69, "meters"),
  52017. default: true
  52018. },
  52019. {
  52020. name: "Macro",
  52021. height: math.unit(269, "meters")
  52022. },
  52023. {
  52024. name: "Macro+",
  52025. height: math.unit(672.5, "meters")
  52026. },
  52027. {
  52028. name: "Megamacro",
  52029. height: math.unit(2.017, "km")
  52030. },
  52031. ]
  52032. ))
  52033. characterMakers.push(() => makeCharacter(
  52034. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52035. {
  52036. front: {
  52037. height: math.unit(23.47, "cm"),
  52038. weight: math.unit(600, "grams"),
  52039. name: "Front",
  52040. image: {
  52041. source: "./media/characters/diode/front.svg",
  52042. extra: 1778/1396,
  52043. bottom: 95/1873
  52044. }
  52045. },
  52046. side: {
  52047. height: math.unit(23.47, "cm"),
  52048. weight: math.unit(600, "grams"),
  52049. name: "Side",
  52050. image: {
  52051. source: "./media/characters/diode/side.svg",
  52052. extra: 1831/1404,
  52053. bottom: 86/1917
  52054. }
  52055. },
  52056. wings: {
  52057. height: math.unit(0.683, "feet"),
  52058. name: "Wings",
  52059. image: {
  52060. source: "./media/characters/diode/wings.svg"
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(23.47, "cm"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52074. {
  52075. front: {
  52076. height: math.unit(6 + 3/12, "feet"),
  52077. weight: math.unit(250, "lb"),
  52078. name: "Front",
  52079. image: {
  52080. source: "./media/characters/reika/front.svg",
  52081. extra: 1120/1078,
  52082. bottom: 86/1206
  52083. }
  52084. },
  52085. },
  52086. [
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(6 + 3/12, "feet"),
  52090. default: true
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(16 + 8/12, "feet"),
  52099. weight: math.unit(9000, "lb"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/lokuto-takama/front.svg",
  52103. extra: 1774/1632,
  52104. bottom: 147/1921
  52105. },
  52106. extraAttributes: {
  52107. "bustWidth": {
  52108. name: "Bust Width",
  52109. power: 1,
  52110. type: "length",
  52111. base: math.unit(2.4, "meters")
  52112. },
  52113. "breastWeight": {
  52114. name: "Breast Weight",
  52115. power: 3,
  52116. type: "mass",
  52117. base: math.unit(1000, "kg")
  52118. },
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(16 + 8/12, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(10, "cm"),
  52135. weight: math.unit(850, "grams"),
  52136. name: "Front",
  52137. image: {
  52138. source: "./media/characters/owak-bone/front.svg",
  52139. extra: 1965/1801,
  52140. bottom: 31/1996
  52141. }
  52142. },
  52143. },
  52144. [
  52145. {
  52146. name: "Normal",
  52147. height: math.unit(10, "cm"),
  52148. default: true
  52149. },
  52150. ]
  52151. ))
  52152. characterMakers.push(() => makeCharacter(
  52153. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52154. {
  52155. front: {
  52156. height: math.unit(2 + 6/12, "feet"),
  52157. weight: math.unit(9, "lb"),
  52158. name: "Front",
  52159. image: {
  52160. source: "./media/characters/muffin/front.svg",
  52161. extra: 1220/1195,
  52162. bottom: 84/1304
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(2 + 6/12, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(7, "feet"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/chimera/front.svg",
  52182. extra: 1752/1614,
  52183. bottom: 68/1820
  52184. }
  52185. },
  52186. },
  52187. [
  52188. {
  52189. name: "Normal",
  52190. height: math.unit(7, "feet")
  52191. },
  52192. {
  52193. name: "Gigamacro",
  52194. height: math.unit(2.9, "gigameters"),
  52195. default: true
  52196. },
  52197. {
  52198. name: "Universal",
  52199. height: math.unit(1.56e26, "yottameters")
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52205. {
  52206. front: {
  52207. height: math.unit(3, "feet"),
  52208. weight: math.unit(20, "lb"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/kit-fennec-fox/front.svg",
  52212. extra: 1027/932,
  52213. bottom: 16/1043
  52214. }
  52215. },
  52216. back: {
  52217. height: math.unit(3, "feet"),
  52218. weight: math.unit(20, "lb"),
  52219. name: "Back",
  52220. image: {
  52221. source: "./media/characters/kit-fennec-fox/back.svg",
  52222. extra: 1027/932,
  52223. bottom: 16/1043
  52224. }
  52225. },
  52226. },
  52227. [
  52228. {
  52229. name: "Normal",
  52230. height: math.unit(3, "feet"),
  52231. default: true
  52232. },
  52233. ]
  52234. ))
  52235. characterMakers.push(() => makeCharacter(
  52236. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52237. {
  52238. front: {
  52239. height: math.unit(167, "cm"),
  52240. name: "Front",
  52241. image: {
  52242. source: "./media/characters/blue-otter/front.svg",
  52243. extra: 1951/1920,
  52244. bottom: 31/1982
  52245. }
  52246. },
  52247. },
  52248. [
  52249. {
  52250. name: "Otter-Sized",
  52251. height: math.unit(100, "cm")
  52252. },
  52253. {
  52254. name: "Normal",
  52255. height: math.unit(167, "cm"),
  52256. default: true
  52257. },
  52258. ]
  52259. ))
  52260. characterMakers.push(() => makeCharacter(
  52261. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52262. {
  52263. front: {
  52264. height: math.unit(4 + 4/12, "feet"),
  52265. name: "Front",
  52266. image: {
  52267. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52268. extra: 1072/1067,
  52269. bottom: 117/1189
  52270. }
  52271. },
  52272. back: {
  52273. height: math.unit(4 + 4/12, "feet"),
  52274. name: "Back",
  52275. image: {
  52276. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52277. extra: 1135/1129,
  52278. bottom: 57/1192
  52279. }
  52280. },
  52281. head: {
  52282. height: math.unit(1.77, "feet"),
  52283. name: "Head",
  52284. image: {
  52285. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(4 + 4/12, "feet"),
  52293. default: true
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(2, "inches"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/carley-hartford/front.svg",
  52305. extra: 1035/988,
  52306. bottom: 23/1058
  52307. }
  52308. },
  52309. back: {
  52310. height: math.unit(2, "inches"),
  52311. name: "Back",
  52312. image: {
  52313. source: "./media/characters/carley-hartford/back.svg",
  52314. extra: 1035/988,
  52315. bottom: 23/1058
  52316. }
  52317. },
  52318. dressed: {
  52319. height: math.unit(2, "inches"),
  52320. name: "Dressed",
  52321. image: {
  52322. source: "./media/characters/carley-hartford/dressed.svg",
  52323. extra: 651/620,
  52324. bottom: 0/651
  52325. }
  52326. },
  52327. },
  52328. [
  52329. {
  52330. name: "Micro",
  52331. height: math.unit(2, "inches"),
  52332. default: true
  52333. },
  52334. {
  52335. name: "Macro",
  52336. height: math.unit(6 + 3/12, "feet")
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52342. {
  52343. front: {
  52344. height: math.unit(2 + 3/12, "feet"),
  52345. weight: math.unit(15 + 7/16, "lb"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/duke/front.svg",
  52349. extra: 910/815,
  52350. bottom: 30/940
  52351. }
  52352. },
  52353. },
  52354. [
  52355. {
  52356. name: "Normal",
  52357. height: math.unit(2 + 3/12, "feet"),
  52358. default: true
  52359. },
  52360. ]
  52361. ))
  52362. characterMakers.push(() => makeCharacter(
  52363. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52364. {
  52365. front: {
  52366. height: math.unit(5 + 4/12, "feet"),
  52367. weight: math.unit(156, "lb"),
  52368. name: "Front",
  52369. image: {
  52370. source: "./media/characters/dein/front.svg",
  52371. extra: 855/815,
  52372. bottom: 48/903
  52373. }
  52374. },
  52375. side: {
  52376. height: math.unit(5 + 4/12, "feet"),
  52377. weight: math.unit(156, "lb"),
  52378. name: "side",
  52379. image: {
  52380. source: "./media/characters/dein/side.svg",
  52381. extra: 846/803,
  52382. bottom: 25/871
  52383. }
  52384. },
  52385. maw: {
  52386. height: math.unit(1.45, "feet"),
  52387. name: "Maw",
  52388. image: {
  52389. source: "./media/characters/dein/maw.svg"
  52390. }
  52391. },
  52392. },
  52393. [
  52394. {
  52395. name: "Ferret Sized",
  52396. height: math.unit(2 + 5/12, "feet")
  52397. },
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(5 + 4/12, "feet"),
  52401. default: true
  52402. },
  52403. ]
  52404. ))
  52405. characterMakers.push(() => makeCharacter(
  52406. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52407. {
  52408. front: {
  52409. height: math.unit(84 + 8/12, "feet"),
  52410. weight: math.unit(942180, "lb"),
  52411. name: "Front",
  52412. image: {
  52413. source: "./media/characters/daurine-arima/front.svg",
  52414. extra: 1989/1782,
  52415. bottom: 37/2026
  52416. }
  52417. },
  52418. side: {
  52419. height: math.unit(84 + 8/12, "feet"),
  52420. weight: math.unit(942180, "lb"),
  52421. name: "Side",
  52422. image: {
  52423. source: "./media/characters/daurine-arima/side.svg",
  52424. extra: 1997/1790,
  52425. bottom: 21/2018
  52426. }
  52427. },
  52428. back: {
  52429. height: math.unit(84 + 8/12, "feet"),
  52430. weight: math.unit(942180, "lb"),
  52431. name: "Back",
  52432. image: {
  52433. source: "./media/characters/daurine-arima/back.svg",
  52434. extra: 1992/1800,
  52435. bottom: 12/2004
  52436. }
  52437. },
  52438. head: {
  52439. height: math.unit(15.5, "feet"),
  52440. name: "Head",
  52441. image: {
  52442. source: "./media/characters/daurine-arima/head.svg"
  52443. }
  52444. },
  52445. headAlt: {
  52446. height: math.unit(19.19, "feet"),
  52447. name: "Head (Alt)",
  52448. image: {
  52449. source: "./media/characters/daurine-arima/head-alt.svg"
  52450. }
  52451. },
  52452. },
  52453. [
  52454. {
  52455. name: "Minimum height",
  52456. height: math.unit(8 + 10/12, "feet")
  52457. },
  52458. {
  52459. name: "Comfort height",
  52460. height: math.unit(19 + 6 /12, "feet")
  52461. },
  52462. {
  52463. name: "\"Normal\" height",
  52464. height: math.unit(28 + 10/12, "feet")
  52465. },
  52466. {
  52467. name: "Base height",
  52468. height: math.unit(84 + 8/12, "feet"),
  52469. default: true
  52470. },
  52471. {
  52472. name: "Mini-macro",
  52473. height: math.unit(2360, "feet")
  52474. },
  52475. {
  52476. name: "Macro",
  52477. height: math.unit(10, "miles")
  52478. },
  52479. {
  52480. name: "Goddess",
  52481. height: math.unit(9.99e40, "yottameters")
  52482. },
  52483. ]
  52484. ))
  52485. characterMakers.push(() => makeCharacter(
  52486. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52487. {
  52488. front: {
  52489. height: math.unit(2.3, "meters"),
  52490. name: "Front",
  52491. image: {
  52492. source: "./media/characters/cilenomon/front.svg",
  52493. extra: 1963/1778,
  52494. bottom: 54/2017
  52495. }
  52496. },
  52497. },
  52498. [
  52499. {
  52500. name: "Normal",
  52501. height: math.unit(2.3, "meters"),
  52502. default: true
  52503. },
  52504. {
  52505. name: "Big",
  52506. height: math.unit(5, "meters")
  52507. },
  52508. {
  52509. name: "Macro",
  52510. height: math.unit(30, "meters")
  52511. },
  52512. {
  52513. name: "True",
  52514. height: math.unit(1, "universe")
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52520. {
  52521. front: {
  52522. height: math.unit(5, "feet"),
  52523. name: "Front",
  52524. image: {
  52525. source: "./media/characters/sen-mink/front.svg",
  52526. extra: 1727/1675,
  52527. bottom: 35/1762
  52528. }
  52529. },
  52530. },
  52531. [
  52532. {
  52533. name: "Normal",
  52534. height: math.unit(5, "feet"),
  52535. default: true
  52536. },
  52537. ]
  52538. ))
  52539. characterMakers.push(() => makeCharacter(
  52540. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52541. {
  52542. front: {
  52543. height: math.unit(5.42999, "feet"),
  52544. weight: math.unit(100, "lb"),
  52545. name: "Front",
  52546. image: {
  52547. source: "./media/characters/ophois/front.svg",
  52548. extra: 1429/1286,
  52549. bottom: 60/1489
  52550. }
  52551. },
  52552. },
  52553. [
  52554. {
  52555. name: "Normal",
  52556. height: math.unit(5.42999, "feet"),
  52557. default: true
  52558. },
  52559. ]
  52560. ))
  52561. characterMakers.push(() => makeCharacter(
  52562. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52563. {
  52564. front: {
  52565. height: math.unit(2, "meters"),
  52566. name: "Front",
  52567. image: {
  52568. source: "./media/characters/riley/front.svg",
  52569. extra: 1779/1754,
  52570. bottom: 139/1918
  52571. }
  52572. },
  52573. },
  52574. [
  52575. {
  52576. name: "Normal",
  52577. height: math.unit(2, "meters"),
  52578. default: true
  52579. },
  52580. ]
  52581. ))
  52582. characterMakers.push(() => makeCharacter(
  52583. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52584. {
  52585. front: {
  52586. height: math.unit(6 + 2/12, "feet"),
  52587. weight: math.unit(195, "lb"),
  52588. preyCapacity: math.unit(6, "people"),
  52589. name: "Front",
  52590. image: {
  52591. source: "./media/characters/shuken-flash/front.svg",
  52592. extra: 1905/1739,
  52593. bottom: 65/1970
  52594. }
  52595. },
  52596. back: {
  52597. height: math.unit(6 + 2/12, "feet"),
  52598. weight: math.unit(195, "lb"),
  52599. preyCapacity: math.unit(6, "people"),
  52600. name: "Back",
  52601. image: {
  52602. source: "./media/characters/shuken-flash/back.svg",
  52603. extra: 1912/1751,
  52604. bottom: 13/1925
  52605. }
  52606. },
  52607. },
  52608. [
  52609. {
  52610. name: "Normal",
  52611. height: math.unit(6 + 2/12, "feet"),
  52612. default: true
  52613. },
  52614. ]
  52615. ))
  52616. characterMakers.push(() => makeCharacter(
  52617. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52618. {
  52619. front: {
  52620. height: math.unit(5 + 9/12, "feet"),
  52621. weight: math.unit(150, "lb"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/plat/front.svg",
  52625. extra: 1816/1703,
  52626. bottom: 43/1859
  52627. }
  52628. },
  52629. side: {
  52630. height: math.unit(5 + 9/12, "feet"),
  52631. weight: math.unit(300, "lb"),
  52632. name: "Side",
  52633. image: {
  52634. source: "./media/characters/plat/side.svg",
  52635. extra: 1824/1699,
  52636. bottom: 18/1842
  52637. }
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(5 + 9/12, "feet"),
  52644. default: true
  52645. },
  52646. ]
  52647. ))
  52648. characterMakers.push(() => makeCharacter(
  52649. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52650. {
  52651. front: {
  52652. height: math.unit(9, "feet"),
  52653. weight: math.unit(1800, "lb"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/elaine/front.svg",
  52657. extra: 1833/1354,
  52658. bottom: 25/1858
  52659. }
  52660. },
  52661. back: {
  52662. height: math.unit(8.8, "feet"),
  52663. weight: math.unit(1800, "lb"),
  52664. name: "Back",
  52665. image: {
  52666. source: "./media/characters/elaine/back.svg",
  52667. extra: 1641/1233,
  52668. bottom: 53/1694
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(9, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52682. {
  52683. front: {
  52684. height: math.unit(17 + 9/12, "feet"),
  52685. weight: math.unit(8000, "lb"),
  52686. name: "Front",
  52687. image: {
  52688. source: "./media/characters/vera-raven/front.svg",
  52689. extra: 1457/1412,
  52690. bottom: 121/1578
  52691. }
  52692. },
  52693. side: {
  52694. height: math.unit(17 + 9/12, "feet"),
  52695. weight: math.unit(8000, "lb"),
  52696. name: "Side",
  52697. image: {
  52698. source: "./media/characters/vera-raven/side.svg",
  52699. extra: 1510/1464,
  52700. bottom: 54/1564
  52701. }
  52702. },
  52703. },
  52704. [
  52705. {
  52706. name: "Normal",
  52707. height: math.unit(17 + 9/12, "feet"),
  52708. default: true
  52709. },
  52710. ]
  52711. ))
  52712. characterMakers.push(() => makeCharacter(
  52713. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52714. {
  52715. dressed: {
  52716. height: math.unit(6 + 9/12, "feet"),
  52717. name: "Dressed",
  52718. image: {
  52719. source: "./media/characters/nakisha/dressed.svg",
  52720. extra: 1909/1757,
  52721. bottom: 48/1957
  52722. }
  52723. },
  52724. nude: {
  52725. height: math.unit(6 + 9/12, "feet"),
  52726. name: "Nude",
  52727. image: {
  52728. source: "./media/characters/nakisha/nude.svg",
  52729. extra: 1917/1765,
  52730. bottom: 34/1951
  52731. }
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Normal",
  52737. height: math.unit(6 + 9/12, "feet"),
  52738. default: true
  52739. },
  52740. ]
  52741. ))
  52742. characterMakers.push(() => makeCharacter(
  52743. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52744. {
  52745. front: {
  52746. height: math.unit(87, "meters"),
  52747. name: "Front",
  52748. image: {
  52749. source: "./media/characters/serafin/front.svg",
  52750. extra: 1919/1776,
  52751. bottom: 65/1984
  52752. }
  52753. },
  52754. },
  52755. [
  52756. {
  52757. name: "Normal",
  52758. height: math.unit(87, "meters"),
  52759. default: true
  52760. },
  52761. ]
  52762. ))
  52763. characterMakers.push(() => makeCharacter(
  52764. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52765. {
  52766. front: {
  52767. height: math.unit(6, "feet"),
  52768. weight: math.unit(200, "lb"),
  52769. name: "Front",
  52770. image: {
  52771. source: "./media/characters/poptart/front.svg",
  52772. extra: 615/583,
  52773. bottom: 23/638
  52774. }
  52775. },
  52776. back: {
  52777. height: math.unit(6, "feet"),
  52778. weight: math.unit(200, "lb"),
  52779. name: "Back",
  52780. image: {
  52781. source: "./media/characters/poptart/back.svg",
  52782. extra: 617/584,
  52783. bottom: 22/639
  52784. }
  52785. },
  52786. frontNsfw: {
  52787. height: math.unit(6, "feet"),
  52788. weight: math.unit(200, "lb"),
  52789. name: "Front (NSFW)",
  52790. image: {
  52791. source: "./media/characters/poptart/front-nsfw.svg",
  52792. extra: 615/583,
  52793. bottom: 23/638
  52794. }
  52795. },
  52796. backNsfw: {
  52797. height: math.unit(6, "feet"),
  52798. weight: math.unit(200, "lb"),
  52799. name: "Back (NSFW)",
  52800. image: {
  52801. source: "./media/characters/poptart/back-nsfw.svg",
  52802. extra: 617/584,
  52803. bottom: 22/639
  52804. }
  52805. },
  52806. hand: {
  52807. height: math.unit(1.14, "feet"),
  52808. name: "Hand",
  52809. image: {
  52810. source: "./media/characters/poptart/hand.svg"
  52811. }
  52812. },
  52813. foot: {
  52814. height: math.unit(1.5, "feet"),
  52815. name: "Foot",
  52816. image: {
  52817. source: "./media/characters/poptart/foot.svg"
  52818. }
  52819. },
  52820. },
  52821. [
  52822. {
  52823. name: "Normal",
  52824. height: math.unit(6, "feet"),
  52825. default: true
  52826. },
  52827. {
  52828. name: "Grande",
  52829. height: math.unit(350, "feet")
  52830. },
  52831. {
  52832. name: "Massif",
  52833. height: math.unit(967, "feet")
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52839. {
  52840. hyenaSide: {
  52841. height: math.unit(120, "cm"),
  52842. weight: math.unit(120, "lb"),
  52843. name: "Side",
  52844. image: {
  52845. source: "./media/characters/trance/hyena-side.svg",
  52846. extra: 998/904,
  52847. bottom: 76/1074
  52848. }
  52849. },
  52850. },
  52851. [
  52852. {
  52853. name: "Normal",
  52854. height: math.unit(120, "cm"),
  52855. default: true
  52856. },
  52857. {
  52858. name: "Dire",
  52859. height: math.unit(230, "cm")
  52860. },
  52861. {
  52862. name: "Macro",
  52863. height: math.unit(37, "feet")
  52864. },
  52865. ]
  52866. ))
  52867. characterMakers.push(() => makeCharacter(
  52868. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52869. {
  52870. front: {
  52871. height: math.unit(6 + 3/12, "feet"),
  52872. name: "Front",
  52873. image: {
  52874. source: "./media/characters/michael-berretta/front.svg",
  52875. extra: 515/494,
  52876. bottom: 20/535
  52877. }
  52878. },
  52879. back: {
  52880. height: math.unit(6 + 3/12, "feet"),
  52881. name: "Back",
  52882. image: {
  52883. source: "./media/characters/michael-berretta/back.svg",
  52884. extra: 520/497,
  52885. bottom: 21/541
  52886. }
  52887. },
  52888. frontNsfw: {
  52889. height: math.unit(6 + 3/12, "feet"),
  52890. name: "Front (NSFW)",
  52891. image: {
  52892. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52893. extra: 515/494,
  52894. bottom: 20/535
  52895. }
  52896. },
  52897. dick: {
  52898. height: math.unit(1, "feet"),
  52899. name: "Dick",
  52900. image: {
  52901. source: "./media/characters/michael-berretta/dick.svg"
  52902. }
  52903. },
  52904. },
  52905. [
  52906. {
  52907. name: "Normal",
  52908. height: math.unit(6 + 3/12, "feet"),
  52909. default: true
  52910. },
  52911. {
  52912. name: "Big",
  52913. height: math.unit(12, "feet")
  52914. },
  52915. {
  52916. name: "Macro",
  52917. height: math.unit(187.5, "feet")
  52918. },
  52919. ]
  52920. ))
  52921. characterMakers.push(() => makeCharacter(
  52922. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52923. {
  52924. front: {
  52925. height: math.unit(9 + 9/12, "feet"),
  52926. weight: math.unit(1244, "lb"),
  52927. name: "Front",
  52928. image: {
  52929. source: "./media/characters/stella-edgecomb/front.svg",
  52930. extra: 1835/1706,
  52931. bottom: 49/1884
  52932. }
  52933. },
  52934. pen: {
  52935. height: math.unit(0.95, "feet"),
  52936. name: "Pen",
  52937. image: {
  52938. source: "./media/characters/stella-edgecomb/pen.svg"
  52939. }
  52940. },
  52941. },
  52942. [
  52943. {
  52944. name: "Cozy Bear",
  52945. height: math.unit(0.5, "inches")
  52946. },
  52947. {
  52948. name: "Normal",
  52949. height: math.unit(9 + 9/12, "feet"),
  52950. default: true
  52951. },
  52952. {
  52953. name: "Giga Bear",
  52954. height: math.unit(1, "mile")
  52955. },
  52956. {
  52957. name: "Great Bear",
  52958. height: math.unit(53, "miles")
  52959. },
  52960. {
  52961. name: "Goddess Bear",
  52962. height: math.unit(40000, "miles")
  52963. },
  52964. {
  52965. name: "Sun Bear",
  52966. height: math.unit(900000, "miles")
  52967. },
  52968. ]
  52969. ))
  52970. characterMakers.push(() => makeCharacter(
  52971. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52972. {
  52973. anthroFront: {
  52974. height: math.unit(556, "cm"),
  52975. weight: math.unit(2650, "kg"),
  52976. preyCapacity: math.unit(3, "people"),
  52977. name: "Front",
  52978. image: {
  52979. source: "./media/characters/ash´iika/front.svg",
  52980. extra: 710/673,
  52981. bottom: 15/725
  52982. },
  52983. form: "anthro",
  52984. default: true
  52985. },
  52986. anthroSide: {
  52987. height: math.unit(556, "cm"),
  52988. weight: math.unit(2650, "kg"),
  52989. preyCapacity: math.unit(3, "people"),
  52990. name: "Side",
  52991. image: {
  52992. source: "./media/characters/ash´iika/side.svg",
  52993. extra: 696/676,
  52994. bottom: 13/709
  52995. },
  52996. form: "anthro"
  52997. },
  52998. anthroDressed: {
  52999. height: math.unit(556, "cm"),
  53000. weight: math.unit(2650, "kg"),
  53001. preyCapacity: math.unit(3, "people"),
  53002. name: "Dressed",
  53003. image: {
  53004. source: "./media/characters/ash´iika/dressed.svg",
  53005. extra: 710/673,
  53006. bottom: 15/725
  53007. },
  53008. form: "anthro"
  53009. },
  53010. anthroHead: {
  53011. height: math.unit(3.5, "feet"),
  53012. name: "Head",
  53013. image: {
  53014. source: "./media/characters/ash´iika/head.svg",
  53015. extra: 348/291,
  53016. bottom: 45/393
  53017. },
  53018. form: "anthro"
  53019. },
  53020. feralSide: {
  53021. height: math.unit(870, "cm"),
  53022. weight: math.unit(17500, "kg"),
  53023. preyCapacity: math.unit(15, "people"),
  53024. name: "Side",
  53025. image: {
  53026. source: "./media/characters/ash´iika/feral.svg",
  53027. extra: 595/199,
  53028. bottom: 7/602
  53029. },
  53030. form: "feral",
  53031. default: true,
  53032. },
  53033. },
  53034. [
  53035. {
  53036. name: "Normal",
  53037. height: math.unit(556, "cm"),
  53038. default: true,
  53039. form: "anthro"
  53040. },
  53041. {
  53042. name: "Macro",
  53043. height: math.unit(88, "meters"),
  53044. form: "anthro"
  53045. },
  53046. {
  53047. name: "Normal",
  53048. height: math.unit(870, "cm"),
  53049. default: true,
  53050. form: "feral"
  53051. },
  53052. {
  53053. name: "Large",
  53054. height: math.unit(25, "meters"),
  53055. form: "feral"
  53056. },
  53057. ],
  53058. {
  53059. "anthro": {
  53060. name: "Anthro",
  53061. default: true
  53062. },
  53063. "feral": {
  53064. name: "Feral",
  53065. },
  53066. }
  53067. ))
  53068. characterMakers.push(() => makeCharacter(
  53069. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53070. {
  53071. front: {
  53072. height: math.unit(10, "feet"),
  53073. weight: math.unit(800, "lb"),
  53074. name: "Front",
  53075. image: {
  53076. source: "./media/characters/yen/front.svg",
  53077. extra: 443/411,
  53078. bottom: 6/449
  53079. }
  53080. },
  53081. sleeping: {
  53082. height: math.unit(10, "feet"),
  53083. weight: math.unit(800, "lb"),
  53084. name: "Sleeping",
  53085. image: {
  53086. source: "./media/characters/yen/sleeping.svg",
  53087. extra: 470/422,
  53088. bottom: 0/470
  53089. }
  53090. },
  53091. head: {
  53092. height: math.unit(2.2, "feet"),
  53093. name: "Head",
  53094. image: {
  53095. source: "./media/characters/yen/head.svg"
  53096. }
  53097. },
  53098. headAlt: {
  53099. height: math.unit(2.1, "feet"),
  53100. name: "Head (Alt)",
  53101. image: {
  53102. source: "./media/characters/yen/head-alt.svg"
  53103. }
  53104. },
  53105. },
  53106. [
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(10, "feet"),
  53110. default: true
  53111. },
  53112. ]
  53113. ))
  53114. characterMakers.push(() => makeCharacter(
  53115. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53116. {
  53117. front: {
  53118. height: math.unit(12, "feet"),
  53119. name: "Front",
  53120. image: {
  53121. source: "./media/characters/citra/front.svg",
  53122. extra: 1950/1710,
  53123. bottom: 47/1997
  53124. }
  53125. },
  53126. },
  53127. [
  53128. {
  53129. name: "Normal",
  53130. height: math.unit(12, "feet"),
  53131. default: true
  53132. },
  53133. ]
  53134. ))
  53135. characterMakers.push(() => makeCharacter(
  53136. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53137. {
  53138. side: {
  53139. height: math.unit(7 + 10/12, "feet"),
  53140. name: "Side",
  53141. image: {
  53142. source: "./media/characters/sholstim/side.svg",
  53143. extra: 786/682,
  53144. bottom: 40/826
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(7 + 10/12, "feet"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53158. {
  53159. front: {
  53160. height: math.unit(3.10, "meters"),
  53161. name: "Front",
  53162. image: {
  53163. source: "./media/characters/aggyn/front.svg",
  53164. extra: 1188/963,
  53165. bottom: 24/1212
  53166. }
  53167. },
  53168. },
  53169. [
  53170. {
  53171. name: "Normal",
  53172. height: math.unit(3.10, "meters"),
  53173. default: true
  53174. },
  53175. ]
  53176. ))
  53177. characterMakers.push(() => makeCharacter(
  53178. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53179. {
  53180. front: {
  53181. height: math.unit(7 + 5/12, "feet"),
  53182. weight: math.unit(687, "lb"),
  53183. name: "Front",
  53184. image: {
  53185. source: "./media/characters/alsandair-hergenroether/front.svg",
  53186. extra: 1251/1186,
  53187. bottom: 75/1326
  53188. }
  53189. },
  53190. back: {
  53191. height: math.unit(7 + 5/12, "feet"),
  53192. weight: math.unit(687, "lb"),
  53193. name: "Back",
  53194. image: {
  53195. source: "./media/characters/alsandair-hergenroether/back.svg",
  53196. extra: 1290/1229,
  53197. bottom: 17/1307
  53198. }
  53199. },
  53200. },
  53201. [
  53202. {
  53203. name: "Max Compression",
  53204. height: math.unit(7 + 5/12, "feet"),
  53205. default: true
  53206. },
  53207. {
  53208. name: "\"Normal\"",
  53209. height: math.unit(2, "universes")
  53210. },
  53211. ]
  53212. ))
  53213. characterMakers.push(() => makeCharacter(
  53214. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53215. {
  53216. front: {
  53217. height: math.unit(4 + 1/12, "feet"),
  53218. weight: math.unit(92, "lb"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/ie/front.svg",
  53222. extra: 1585/1352,
  53223. bottom: 91/1676
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(4 + 1/12, "feet"),
  53231. default: true
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53237. {
  53238. anthro: {
  53239. height: math.unit(6, "feet"),
  53240. weight: math.unit(150, "lb"),
  53241. name: "Front",
  53242. image: {
  53243. source: "./media/characters/willow/anthro.svg",
  53244. extra: 1073/986,
  53245. bottom: 34/1107
  53246. },
  53247. form: "anthro",
  53248. default: true
  53249. },
  53250. taur: {
  53251. height: math.unit(6, "feet"),
  53252. weight: math.unit(150, "lb"),
  53253. name: "Side",
  53254. image: {
  53255. source: "./media/characters/willow/taur.svg",
  53256. extra: 647/512,
  53257. bottom: 136/783
  53258. },
  53259. form: "taur",
  53260. default: true
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Humanoid",
  53266. height: math.unit(2.7, "meters"),
  53267. form: "anthro"
  53268. },
  53269. {
  53270. name: "Normal",
  53271. height: math.unit(9, "meters"),
  53272. form: "anthro",
  53273. default: true
  53274. },
  53275. {
  53276. name: "Humanoid",
  53277. height: math.unit(2.1, "meters"),
  53278. form: "taur"
  53279. },
  53280. {
  53281. name: "Normal",
  53282. height: math.unit(7, "meters"),
  53283. form: "taur",
  53284. default: true
  53285. },
  53286. ],
  53287. {
  53288. "anthro": {
  53289. name: "Anthro",
  53290. default: true
  53291. },
  53292. "taur": {
  53293. name: "Taur",
  53294. },
  53295. }
  53296. ))
  53297. characterMakers.push(() => makeCharacter(
  53298. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53299. {
  53300. front: {
  53301. height: math.unit(2 + 5/12, "feet"),
  53302. name: "Front",
  53303. image: {
  53304. source: "./media/characters/kyan/front.svg",
  53305. extra: 460/334,
  53306. bottom: 23/483
  53307. },
  53308. extraAttributes: {
  53309. "toeLength": {
  53310. name: "Toe Length",
  53311. power: 1,
  53312. type: "length",
  53313. base: math.unit(7, "cm")
  53314. },
  53315. "toeclawLength": {
  53316. name: "Toeclaw Length",
  53317. power: 1,
  53318. type: "length",
  53319. base: math.unit(4.7, "cm")
  53320. },
  53321. "earHeight": {
  53322. name: "Ear Height",
  53323. power: 1,
  53324. type: "length",
  53325. base: math.unit(14.1, "cm")
  53326. },
  53327. }
  53328. },
  53329. paws: {
  53330. height: math.unit(0.45, "feet"),
  53331. name: "Paws",
  53332. image: {
  53333. source: "./media/characters/kyan/paws.svg",
  53334. extra: 581/581,
  53335. bottom: 114/695
  53336. }
  53337. },
  53338. },
  53339. [
  53340. {
  53341. name: "Normal",
  53342. height: math.unit(2 + 5/12, "feet"),
  53343. default: true
  53344. },
  53345. ]
  53346. ))
  53347. characterMakers.push(() => makeCharacter(
  53348. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53349. {
  53350. front: {
  53351. height: math.unit(2 + 2/3, "feet"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/xazzon/front.svg",
  53355. extra: 1109/984,
  53356. bottom: 42/1151
  53357. }
  53358. },
  53359. back: {
  53360. height: math.unit(2 + 2/3, "feet"),
  53361. name: "Back",
  53362. image: {
  53363. source: "./media/characters/xazzon/back.svg",
  53364. extra: 1095/971,
  53365. bottom: 23/1118
  53366. }
  53367. },
  53368. },
  53369. [
  53370. {
  53371. name: "Normal",
  53372. height: math.unit(2 + 2/3, "feet"),
  53373. default: true
  53374. },
  53375. ]
  53376. ))
  53377. characterMakers.push(() => makeCharacter(
  53378. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53379. {
  53380. dressed: {
  53381. height: math.unit(5 + 7/12, "feet"),
  53382. weight: math.unit(173, "lb"),
  53383. name: "Dressed",
  53384. image: {
  53385. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53386. extra: 3262/2862,
  53387. bottom: 188/3450
  53388. }
  53389. },
  53390. undressed: {
  53391. height: math.unit(5 + 7/12, "feet"),
  53392. weight: math.unit(173, "lb"),
  53393. name: "Undressed",
  53394. image: {
  53395. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53396. extra: 3262/2862,
  53397. bottom: 188/3450
  53398. }
  53399. },
  53400. },
  53401. [
  53402. {
  53403. name: "The void",
  53404. height: math.unit(7.29193e-34, "angstroms")
  53405. },
  53406. {
  53407. name: "Uh-Oh.",
  53408. height: math.unit(5.734e-7, "angstroms")
  53409. },
  53410. {
  53411. name: "Pico",
  53412. height: math.unit(0.876, "angstroms")
  53413. },
  53414. {
  53415. name: "Nano",
  53416. height: math.unit(0.000134200, "mm")
  53417. },
  53418. {
  53419. name: "Micro",
  53420. height: math.unit(0.0673020, "mm")
  53421. },
  53422. {
  53423. name: "Tiny",
  53424. height: math.unit(2.4, "mm")
  53425. },
  53426. {
  53427. name: "Actual Normal",
  53428. height: math.unit(3, "inches"),
  53429. default: true
  53430. },
  53431. {
  53432. name: "Normal",
  53433. height: math.unit(5 + 8/12, "feet")
  53434. },
  53435. {
  53436. name: "Giant",
  53437. height: math.unit(12, "feet")
  53438. },
  53439. {
  53440. name: "City Ruler",
  53441. height: math.unit(270, "meters")
  53442. },
  53443. {
  53444. name: "Giga",
  53445. height: math.unit(1117.6, "km")
  53446. },
  53447. {
  53448. name: "All-Powerful Queen",
  53449. height: math.unit(70.8, "gigameters")
  53450. },
  53451. {
  53452. name: "'Goddess'",
  53453. height: math.unit(600, "yottameters")
  53454. },
  53455. {
  53456. name: "Biggest!",
  53457. height: math.unit(4.23e5, "yottameters")
  53458. },
  53459. ]
  53460. ))
  53461. characterMakers.push(() => makeCharacter(
  53462. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53463. {
  53464. front: {
  53465. height: math.unit(8, "feet"),
  53466. weight: math.unit(300, "lb"),
  53467. name: "Front",
  53468. image: {
  53469. source: "./media/characters/khyla-shadowsong/front.svg",
  53470. extra: 861/798,
  53471. bottom: 32/893
  53472. }
  53473. },
  53474. side: {
  53475. height: math.unit(8, "feet"),
  53476. weight: math.unit(300, "lb"),
  53477. name: "Side",
  53478. image: {
  53479. source: "./media/characters/khyla-shadowsong/side.svg",
  53480. extra: 790/750,
  53481. bottom: 87/877
  53482. }
  53483. },
  53484. back: {
  53485. height: math.unit(8, "feet"),
  53486. weight: math.unit(300, "lb"),
  53487. name: "Back",
  53488. image: {
  53489. source: "./media/characters/khyla-shadowsong/back.svg",
  53490. extra: 855/808,
  53491. bottom: 14/869
  53492. }
  53493. },
  53494. head: {
  53495. height: math.unit(2.7, "feet"),
  53496. name: "Head",
  53497. image: {
  53498. source: "./media/characters/khyla-shadowsong/head.svg"
  53499. }
  53500. },
  53501. },
  53502. [
  53503. {
  53504. name: "Micro",
  53505. height: math.unit(6, "inches")
  53506. },
  53507. {
  53508. name: "Normal",
  53509. height: math.unit(8, "feet"),
  53510. default: true
  53511. },
  53512. ]
  53513. ))
  53514. characterMakers.push(() => makeCharacter(
  53515. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53516. {
  53517. hyperFront: {
  53518. height: math.unit(9 + 4/12, "feet"),
  53519. weight: math.unit(2000, "lb"),
  53520. name: "Front",
  53521. image: {
  53522. source: "./media/characters/tiden/hyper-front.svg",
  53523. extra: 400/382,
  53524. bottom: 6/406
  53525. },
  53526. form: "hyper",
  53527. },
  53528. regularFront: {
  53529. height: math.unit(7 + 10/12, "feet"),
  53530. weight: math.unit(470, "lb"),
  53531. name: "Front",
  53532. image: {
  53533. source: "./media/characters/tiden/regular-front.svg",
  53534. extra: 468/442,
  53535. bottom: 6/474
  53536. },
  53537. form: "regular",
  53538. },
  53539. },
  53540. [
  53541. {
  53542. name: "Normal",
  53543. height: math.unit(9 + 4/12, "feet"),
  53544. default: true,
  53545. form: "hyper"
  53546. },
  53547. {
  53548. name: "Normal",
  53549. height: math.unit(7 + 10/12, "feet"),
  53550. default: true,
  53551. form: "regular"
  53552. },
  53553. ],
  53554. {
  53555. "hyper": {
  53556. name: "Hyper",
  53557. default: true
  53558. },
  53559. "regular": {
  53560. name: "Regular",
  53561. },
  53562. }
  53563. ))
  53564. characterMakers.push(() => makeCharacter(
  53565. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53566. {
  53567. side: {
  53568. height: math.unit(6, "feet"),
  53569. weight: math.unit(150, "lb"),
  53570. name: "Side",
  53571. image: {
  53572. source: "./media/characters/jason-crowe/side.svg",
  53573. extra: 1771/766,
  53574. bottom: 219/1990
  53575. }
  53576. },
  53577. },
  53578. [
  53579. {
  53580. name: "Pocket Gryphon",
  53581. height: math.unit(6, "cm")
  53582. },
  53583. {
  53584. name: "Raven",
  53585. height: math.unit(60, "cm")
  53586. },
  53587. {
  53588. name: "Normal",
  53589. height: math.unit(1, "meter"),
  53590. default: true
  53591. },
  53592. ]
  53593. ))
  53594. //characters
  53595. function makeCharacters() {
  53596. const results = [];
  53597. characterMakers.forEach(character => {
  53598. results.push(character());
  53599. });
  53600. return results;
  53601. }