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.
 
 
 

53616 linhas
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. }
  2051. //species
  2052. function getSpeciesInfo(speciesList) {
  2053. let result = new Set();
  2054. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2055. result.add(entry)
  2056. });
  2057. return Array.from(result);
  2058. };
  2059. function getSpeciesInfoHelper(species) {
  2060. if (!speciesData[species]) {
  2061. console.warn(species + " doesn't exist");
  2062. return [];
  2063. }
  2064. if (speciesData[species].parents) {
  2065. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2066. } else {
  2067. return [species];
  2068. }
  2069. }
  2070. characterMakers.push(() => makeCharacter(
  2071. {
  2072. name: "Fen",
  2073. species: ["crux"],
  2074. description: {
  2075. title: "Bio",
  2076. text: "Very furry. Sheds on everything."
  2077. },
  2078. tags: [
  2079. "anthro",
  2080. "goo"
  2081. ]
  2082. },
  2083. {
  2084. front: {
  2085. height: math.unit(12, "feet"),
  2086. weight: math.unit(2400, "lb"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/fen/front.svg",
  2090. extra: 1804/1562,
  2091. bottom: 205/2009
  2092. },
  2093. extraAttributes: {
  2094. pawSize: {
  2095. name: "Paw Size",
  2096. power: 2,
  2097. type: "area",
  2098. base: math.unit(0.35, "m^2")
  2099. }
  2100. }
  2101. },
  2102. diving: {
  2103. height: math.unit(4.9, "meters"),
  2104. weight: math.unit(2400, "lb"),
  2105. name: "Diving",
  2106. image: {
  2107. source: "./media/characters/fen/diving.svg"
  2108. }
  2109. },
  2110. goo: {
  2111. height: math.unit(12, "feet"),
  2112. weight: math.unit(3600, "lb"),
  2113. volume: math.unit(1000, "liters"),
  2114. preyCapacity: math.unit(6, "people"),
  2115. name: "Goo",
  2116. image: {
  2117. source: "./media/characters/fen/goo.svg",
  2118. extra: 1307/1071,
  2119. bottom: 134/1441
  2120. }
  2121. },
  2122. gooNsfw: {
  2123. height: math.unit(12, "feet"),
  2124. weight: math.unit(3750, "lb"),
  2125. volume: math.unit(1000, "liters"),
  2126. preyCapacity: math.unit(6, "people"),
  2127. name: "Goo (NSFW)",
  2128. image: {
  2129. source: "./media/characters/fen/goo-nsfw.svg",
  2130. extra: 1875/1734,
  2131. bottom: 122/1997
  2132. }
  2133. },
  2134. maw: {
  2135. height: math.unit(5.03, "feet"),
  2136. name: "Maw",
  2137. image: {
  2138. source: "./media/characters/fen/maw.svg"
  2139. }
  2140. },
  2141. gooCeiling: {
  2142. height: math.unit(6.6, "feet"),
  2143. weight: math.unit(3000, "lb"),
  2144. volume: math.unit(1000, "liters"),
  2145. preyCapacity: math.unit(6, "people"),
  2146. name: "Goo (Ceiling)",
  2147. image: {
  2148. source: "./media/characters/fen/goo-ceiling.svg"
  2149. }
  2150. },
  2151. paw: {
  2152. height: math.unit(3.77, "feet"),
  2153. name: "Paw",
  2154. image: {
  2155. source: "./media/characters/fen/paw.svg"
  2156. },
  2157. extraAttributes: {
  2158. "toeSize": {
  2159. name: "Toe Size",
  2160. power: 2,
  2161. type: "area",
  2162. base: math.unit(0.02875, "m^2")
  2163. },
  2164. "pawSize": {
  2165. name: "Paw Size",
  2166. power: 2,
  2167. type: "area",
  2168. base: math.unit(0.378, "m^2")
  2169. },
  2170. }
  2171. },
  2172. tail: {
  2173. height: math.unit(12.1, "feet"),
  2174. name: "Tail",
  2175. image: {
  2176. source: "./media/characters/fen/tail.svg"
  2177. }
  2178. },
  2179. tailFull: {
  2180. height: math.unit(12.1, "feet"),
  2181. name: "Full Tail",
  2182. image: {
  2183. source: "./media/characters/fen/tail-full.svg"
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(12, "feet"),
  2188. weight: math.unit(2400, "lb"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/fen/back.svg",
  2192. },
  2193. info: {
  2194. description: {
  2195. mode: "append",
  2196. text: "\n\nHe is not currently looking at you."
  2197. }
  2198. }
  2199. },
  2200. full: {
  2201. height: math.unit(1.85, "meter"),
  2202. weight: math.unit(3200, "lb"),
  2203. name: "Full",
  2204. image: {
  2205. source: "./media/characters/fen/full.svg",
  2206. extra: 1133/859,
  2207. bottom: 145/1278
  2208. },
  2209. info: {
  2210. description: {
  2211. mode: "append",
  2212. text: "\n\nMunch."
  2213. }
  2214. }
  2215. },
  2216. gooLounging: {
  2217. height: math.unit(4.53, "feet"),
  2218. weight: math.unit(3000, "lb"),
  2219. preyCapacity: math.unit(6, "people"),
  2220. name: "Goo (Lounging)",
  2221. image: {
  2222. source: "./media/characters/fen/goo-lounging.svg",
  2223. bottom: 116 / 613
  2224. }
  2225. },
  2226. lounging: {
  2227. height: math.unit(10.52, "feet"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Lounging",
  2230. image: {
  2231. source: "./media/characters/fen/lounging.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Small",
  2238. height: math.unit(2.2428, "meter")
  2239. },
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(12, "feet"),
  2243. default: true,
  2244. },
  2245. {
  2246. name: "Big",
  2247. height: math.unit(20, "feet")
  2248. },
  2249. {
  2250. name: "Minimacro",
  2251. height: math.unit(40, "feet"),
  2252. info: {
  2253. description: {
  2254. mode: "append",
  2255. text: "\n\nTOO DAMN BIG"
  2256. }
  2257. }
  2258. },
  2259. {
  2260. name: "Macro",
  2261. height: math.unit(100, "feet"),
  2262. info: {
  2263. description: {
  2264. mode: "append",
  2265. text: "\n\nTOO DAMN BIG"
  2266. }
  2267. }
  2268. },
  2269. {
  2270. name: "Megamacro",
  2271. height: math.unit(2, "miles")
  2272. },
  2273. {
  2274. name: "Gigamacro",
  2275. height: math.unit(10, "earths")
  2276. },
  2277. ]
  2278. ))
  2279. characterMakers.push(() => makeCharacter(
  2280. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2281. {
  2282. front: {
  2283. height: math.unit(183, "cm"),
  2284. weight: math.unit(80, "kg"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/sofia-fluttertail/front.svg",
  2288. bottom: 0.01,
  2289. extra: 2154 / 2081
  2290. }
  2291. },
  2292. frontAlt: {
  2293. height: math.unit(183, "cm"),
  2294. weight: math.unit(80, "kg"),
  2295. name: "Front (alt)",
  2296. image: {
  2297. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2298. }
  2299. },
  2300. back: {
  2301. height: math.unit(183, "cm"),
  2302. weight: math.unit(80, "kg"),
  2303. name: "Back",
  2304. image: {
  2305. source: "./media/characters/sofia-fluttertail/back.svg"
  2306. }
  2307. },
  2308. kneeling: {
  2309. height: math.unit(125, "cm"),
  2310. weight: math.unit(80, "kg"),
  2311. name: "Kneeling",
  2312. image: {
  2313. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2314. extra: 1033 / 977,
  2315. bottom: 23.7 / 1057
  2316. }
  2317. },
  2318. maw: {
  2319. height: math.unit(183 / 5, "cm"),
  2320. name: "Maw",
  2321. image: {
  2322. source: "./media/characters/sofia-fluttertail/maw.svg"
  2323. }
  2324. },
  2325. mawcloseup: {
  2326. height: math.unit(183 / 5 * 0.41, "cm"),
  2327. name: "Maw (Closeup)",
  2328. image: {
  2329. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2330. }
  2331. },
  2332. paws: {
  2333. height: math.unit(1.17, "feet"),
  2334. name: "Paws",
  2335. image: {
  2336. source: "./media/characters/sofia-fluttertail/paws.svg",
  2337. extra: 851 / 851,
  2338. bottom: 17 / 868
  2339. }
  2340. },
  2341. },
  2342. [
  2343. {
  2344. name: "Normal",
  2345. height: math.unit(1.83, "meter")
  2346. },
  2347. {
  2348. name: "Size Thief",
  2349. height: math.unit(18, "feet")
  2350. },
  2351. {
  2352. name: "50 Foot Collie",
  2353. height: math.unit(50, "feet")
  2354. },
  2355. {
  2356. name: "Macro",
  2357. height: math.unit(96, "feet"),
  2358. default: true
  2359. },
  2360. {
  2361. name: "Megamerger",
  2362. height: math.unit(650, "feet")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(7, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/march/front.svg",
  2375. extra: 1992/1851,
  2376. bottom: 39/2031
  2377. }
  2378. },
  2379. foot: {
  2380. height: math.unit(0.9, "feet"),
  2381. name: "Foot",
  2382. image: {
  2383. source: "./media/characters/march/foot.svg"
  2384. }
  2385. },
  2386. },
  2387. [
  2388. {
  2389. name: "Normal",
  2390. height: math.unit(7.9, "feet")
  2391. },
  2392. {
  2393. name: "Macro",
  2394. height: math.unit(220, "meters")
  2395. },
  2396. {
  2397. name: "Megamacro",
  2398. height: math.unit(2.98, "km"),
  2399. default: true
  2400. },
  2401. {
  2402. name: "Gigamacro",
  2403. height: math.unit(15963, "km")
  2404. },
  2405. {
  2406. name: "Teramacro",
  2407. height: math.unit(2980000000, "km")
  2408. },
  2409. {
  2410. name: "Examacro",
  2411. height: math.unit(250, "parsecs")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(60, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/noir/front.svg",
  2424. extra: 1,
  2425. bottom: 0.032
  2426. }
  2427. },
  2428. },
  2429. [
  2430. {
  2431. name: "Normal",
  2432. height: math.unit(6.6, "feet")
  2433. },
  2434. {
  2435. name: "Macro",
  2436. height: math.unit(500, "feet")
  2437. },
  2438. {
  2439. name: "Megamacro",
  2440. height: math.unit(2.5, "km"),
  2441. default: true
  2442. },
  2443. {
  2444. name: "Gigamacro",
  2445. height: math.unit(22500, "km")
  2446. },
  2447. {
  2448. name: "Teramacro",
  2449. height: math.unit(2500000000, "km")
  2450. },
  2451. {
  2452. name: "Examacro",
  2453. height: math.unit(200, "parsecs")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(7, "feet"),
  2462. weight: math.unit(100, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/okuri/front.svg",
  2466. extra: 739/665,
  2467. bottom: 39/778
  2468. }
  2469. },
  2470. back: {
  2471. height: math.unit(7, "feet"),
  2472. weight: math.unit(100, "kg"),
  2473. name: "Back",
  2474. image: {
  2475. source: "./media/characters/okuri/back.svg",
  2476. extra: 734/653,
  2477. bottom: 13/747
  2478. }
  2479. },
  2480. sitting: {
  2481. height: math.unit(2.95, "feet"),
  2482. weight: math.unit(100, "kg"),
  2483. name: "Sitting",
  2484. image: {
  2485. source: "./media/characters/okuri/sitting.svg",
  2486. extra: 370/318,
  2487. bottom: 99/469
  2488. }
  2489. },
  2490. },
  2491. [
  2492. {
  2493. name: "Smallest",
  2494. height: math.unit(5 + 2/12, "feet")
  2495. },
  2496. {
  2497. name: "Smaller",
  2498. height: math.unit(300, "feet")
  2499. },
  2500. {
  2501. name: "Small",
  2502. height: math.unit(1000, "feet")
  2503. },
  2504. {
  2505. name: "Macro",
  2506. height: math.unit(1, "mile")
  2507. },
  2508. {
  2509. name: "Mega Macro (Small)",
  2510. height: math.unit(20, "km")
  2511. },
  2512. {
  2513. name: "Mega Macro (Large)",
  2514. height: math.unit(600, "km")
  2515. },
  2516. {
  2517. name: "Giga Macro",
  2518. height: math.unit(10000, "km")
  2519. },
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(577560, "km"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Large",
  2527. height: math.unit(4, "galaxies")
  2528. },
  2529. {
  2530. name: "Largest",
  2531. height: math.unit(15, "multiverses")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(7, "feet"),
  2540. weight: math.unit(100, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/manny/front.svg",
  2544. extra: 1,
  2545. bottom: 0.06
  2546. }
  2547. },
  2548. back: {
  2549. height: math.unit(7, "feet"),
  2550. weight: math.unit(100, "kg"),
  2551. name: "Back",
  2552. image: {
  2553. source: "./media/characters/manny/back.svg",
  2554. extra: 1,
  2555. bottom: 0.014
  2556. }
  2557. },
  2558. },
  2559. [
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(7, "feet"),
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(78, "feet"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Macro+",
  2571. height: math.unit(300, "meters")
  2572. },
  2573. {
  2574. name: "Macro++",
  2575. height: math.unit(2400, "meters")
  2576. },
  2577. {
  2578. name: "Megamacro",
  2579. height: math.unit(5167, "meters")
  2580. },
  2581. {
  2582. name: "Gigamacro",
  2583. height: math.unit(41769, "miles")
  2584. },
  2585. ]
  2586. ))
  2587. characterMakers.push(() => makeCharacter(
  2588. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2589. {
  2590. front: {
  2591. height: math.unit(7, "feet"),
  2592. weight: math.unit(100, "kg"),
  2593. name: "Front",
  2594. image: {
  2595. source: "./media/characters/adake/front-1.svg"
  2596. }
  2597. },
  2598. frontAlt: {
  2599. height: math.unit(7, "feet"),
  2600. weight: math.unit(100, "kg"),
  2601. name: "Front (Alt)",
  2602. image: {
  2603. source: "./media/characters/adake/front-2.svg",
  2604. extra: 1,
  2605. bottom: 0.01
  2606. }
  2607. },
  2608. back: {
  2609. height: math.unit(7, "feet"),
  2610. weight: math.unit(100, "kg"),
  2611. name: "Back",
  2612. image: {
  2613. source: "./media/characters/adake/back.svg",
  2614. }
  2615. },
  2616. kneel: {
  2617. height: math.unit(5.385, "feet"),
  2618. weight: math.unit(100, "kg"),
  2619. name: "Kneeling",
  2620. image: {
  2621. source: "./media/characters/adake/kneel.svg",
  2622. bottom: 0.052
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Normal",
  2629. height: math.unit(7, "feet"),
  2630. },
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(78, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Macro+",
  2638. height: math.unit(300, "meters")
  2639. },
  2640. {
  2641. name: "Macro++",
  2642. height: math.unit(2400, "meters")
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(5167, "meters")
  2647. },
  2648. {
  2649. name: "Gigamacro",
  2650. height: math.unit(41769, "miles")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(1.65, "meters"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/elijah/front.svg",
  2663. extra: 858 / 830,
  2664. bottom: 95.5 / 953.8559
  2665. }
  2666. },
  2667. back: {
  2668. height: math.unit(1.65, "meters"),
  2669. weight: math.unit(50, "kg"),
  2670. name: "Back",
  2671. image: {
  2672. source: "./media/characters/elijah/back.svg",
  2673. extra: 895 / 850,
  2674. bottom: 5.3 / 897.956
  2675. }
  2676. },
  2677. frontNsfw: {
  2678. height: math.unit(1.65, "meters"),
  2679. weight: math.unit(50, "kg"),
  2680. name: "Front (NSFW)",
  2681. image: {
  2682. source: "./media/characters/elijah/front-nsfw.svg",
  2683. extra: 858 / 830,
  2684. bottom: 95.5 / 953.8559
  2685. }
  2686. },
  2687. backNsfw: {
  2688. height: math.unit(1.65, "meters"),
  2689. weight: math.unit(50, "kg"),
  2690. name: "Back (NSFW)",
  2691. image: {
  2692. source: "./media/characters/elijah/back-nsfw.svg",
  2693. extra: 895 / 850,
  2694. bottom: 5.3 / 897.956
  2695. }
  2696. },
  2697. dick: {
  2698. height: math.unit(1, "feet"),
  2699. name: "Dick",
  2700. image: {
  2701. source: "./media/characters/elijah/dick.svg"
  2702. }
  2703. },
  2704. beakOpen: {
  2705. height: math.unit(1.25, "feet"),
  2706. name: "Beak (Open)",
  2707. image: {
  2708. source: "./media/characters/elijah/beak-open.svg"
  2709. }
  2710. },
  2711. beakShut: {
  2712. height: math.unit(1.25, "feet"),
  2713. name: "Beak (Shut)",
  2714. image: {
  2715. source: "./media/characters/elijah/beak-shut.svg"
  2716. }
  2717. },
  2718. footFlexing: {
  2719. height: math.unit(1.61, "feet"),
  2720. name: "Foot (Flexing)",
  2721. image: {
  2722. source: "./media/characters/elijah/foot-flexing.svg"
  2723. }
  2724. },
  2725. footStepping: {
  2726. height: math.unit(1.44, "feet"),
  2727. name: "Foot (Stepping)",
  2728. image: {
  2729. source: "./media/characters/elijah/foot-stepping.svg"
  2730. }
  2731. },
  2732. plantigradeLeg: {
  2733. height: math.unit(2.34, "feet"),
  2734. name: "Plantigrade Leg",
  2735. image: {
  2736. source: "./media/characters/elijah/plantigrade-leg.svg"
  2737. }
  2738. },
  2739. plantigradeFootLeft: {
  2740. height: math.unit(0.9, "feet"),
  2741. name: "Plantigrade Foot (Left)",
  2742. image: {
  2743. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2744. }
  2745. },
  2746. plantigradeFootRight: {
  2747. height: math.unit(0.9, "feet"),
  2748. name: "Plantigrade Foot (Right)",
  2749. image: {
  2750. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(1.65, "meters")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(55, "meters"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Macro+",
  2766. height: math.unit(105, "meters")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(7 + 2/12, "feet"),
  2775. weight: math.unit(320, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/rai/front.svg",
  2779. extra: 1802/1696,
  2780. bottom: 68/1870
  2781. }
  2782. },
  2783. frontDressed: {
  2784. height: math.unit(7 + 2/12, "feet"),
  2785. weight: math.unit(320, "kg"),
  2786. name: "Front (Dressed)",
  2787. image: {
  2788. source: "./media/characters/rai/front-dressed.svg",
  2789. extra: 1802/1696,
  2790. bottom: 68/1870
  2791. }
  2792. },
  2793. side: {
  2794. height: math.unit(7 + 2/12, "feet"),
  2795. weight: math.unit(320, "kg"),
  2796. name: "Side",
  2797. image: {
  2798. source: "./media/characters/rai/side.svg",
  2799. extra: 1789/1710,
  2800. bottom: 115/1904
  2801. }
  2802. },
  2803. back: {
  2804. height: math.unit(7 + 2/12, "feet"),
  2805. weight: math.unit(320, "kg"),
  2806. name: "Back",
  2807. image: {
  2808. source: "./media/characters/rai/back.svg",
  2809. extra: 1770/1707,
  2810. bottom: 28/1798
  2811. }
  2812. },
  2813. feral: {
  2814. height: math.unit(9.5, "feet"),
  2815. weight: math.unit(640, "kg"),
  2816. name: "Feral",
  2817. image: {
  2818. source: "./media/characters/rai/feral.svg",
  2819. extra: 945/553,
  2820. bottom: 176/1121
  2821. }
  2822. },
  2823. dragon: {
  2824. height: math.unit(23, "feet"),
  2825. weight: math.unit(50000, "lb"),
  2826. name: "Dragon",
  2827. image: {
  2828. source: "./media/characters/rai/dragon.svg",
  2829. extra: 2498 / 2030,
  2830. bottom: 85.2 / 2584
  2831. }
  2832. },
  2833. maw: {
  2834. height: math.unit(1.69, "feet"),
  2835. name: "Maw",
  2836. image: {
  2837. source: "./media/characters/rai/maw.svg"
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(7 + 2/12, "feet")
  2845. },
  2846. {
  2847. name: "Big",
  2848. height: math.unit(11, "feet")
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(302, "feet"),
  2853. default: true
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2859. {
  2860. frontDressed: {
  2861. height: math.unit(216, "feet"),
  2862. weight: math.unit(7000000, "lb"),
  2863. name: "Front (Dressed)",
  2864. image: {
  2865. source: "./media/characters/jazzy/front-dressed.svg",
  2866. extra: 2738 / 2651,
  2867. bottom: 41.8 / 2786
  2868. }
  2869. },
  2870. backDressed: {
  2871. height: math.unit(216, "feet"),
  2872. weight: math.unit(7000000, "lb"),
  2873. name: "Back (Dressed)",
  2874. image: {
  2875. source: "./media/characters/jazzy/back-dressed.svg",
  2876. extra: 2775 / 2673,
  2877. bottom: 36.8 / 2817
  2878. }
  2879. },
  2880. front: {
  2881. height: math.unit(216, "feet"),
  2882. weight: math.unit(7000000, "lb"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/jazzy/front.svg",
  2886. extra: 2738 / 2651,
  2887. bottom: 41.8 / 2786
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(216, "feet"),
  2892. weight: math.unit(7000000, "lb"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/jazzy/back.svg",
  2896. extra: 2775 / 2673,
  2897. bottom: 36.8 / 2817
  2898. }
  2899. },
  2900. maw: {
  2901. height: math.unit(20, "feet"),
  2902. name: "Maw",
  2903. image: {
  2904. source: "./media/characters/jazzy/maw.svg"
  2905. }
  2906. },
  2907. paws: {
  2908. height: math.unit(27.5, "feet"),
  2909. name: "Paws",
  2910. image: {
  2911. source: "./media/characters/jazzy/paws.svg"
  2912. }
  2913. },
  2914. eye: {
  2915. height: math.unit(4.4, "feet"),
  2916. name: "Eye",
  2917. image: {
  2918. source: "./media/characters/jazzy/eye.svg"
  2919. }
  2920. },
  2921. droneOffense: {
  2922. height: math.unit(9.5, "inches"),
  2923. name: "Drone (Offense)",
  2924. image: {
  2925. source: "./media/characters/jazzy/drone-offense.svg"
  2926. }
  2927. },
  2928. droneRecon: {
  2929. height: math.unit(9.5, "inches"),
  2930. name: "Drone (Recon)",
  2931. image: {
  2932. source: "./media/characters/jazzy/drone-recon.svg"
  2933. }
  2934. },
  2935. droneDefense: {
  2936. height: math.unit(9.5, "inches"),
  2937. name: "Drone (Defense)",
  2938. image: {
  2939. source: "./media/characters/jazzy/drone-defense.svg"
  2940. }
  2941. },
  2942. },
  2943. [
  2944. {
  2945. name: "Macro",
  2946. height: math.unit(216, "feet"),
  2947. default: true
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(9 + 6/12, "feet"),
  2956. weight: math.unit(700, "lb"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/flamm/front.svg",
  2960. extra: 1751/1632,
  2961. bottom: 46/1797
  2962. }
  2963. },
  2964. buff: {
  2965. height: math.unit(9 + 6/12, "feet"),
  2966. weight: math.unit(950, "lb"),
  2967. name: "Buff",
  2968. image: {
  2969. source: "./media/characters/flamm/buff.svg",
  2970. extra: 3018/2874,
  2971. bottom: 221/3239
  2972. }
  2973. },
  2974. },
  2975. [
  2976. {
  2977. name: "Normal",
  2978. height: math.unit(9.5, "feet")
  2979. },
  2980. {
  2981. name: "Macro",
  2982. height: math.unit(200, "feet"),
  2983. default: true
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(5 + 3/12, "feet"),
  2992. weight: math.unit(60, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/zephiro/front.svg",
  2996. extra: 2309 / 2162,
  2997. bottom: 0.069
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(5 + 3/12, "feet"),
  3002. weight: math.unit(60, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/zephiro/side.svg",
  3006. extra: 2403 / 2279,
  3007. bottom: 0.015
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(5 + 3/12, "feet"),
  3012. weight: math.unit(60, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/zephiro/back.svg",
  3016. extra: 2373 / 2244,
  3017. bottom: 0.013
  3018. }
  3019. },
  3020. hand: {
  3021. height: math.unit(0.68, "feet"),
  3022. name: "Hand",
  3023. image: {
  3024. source: "./media/characters/zephiro/hand.svg"
  3025. }
  3026. },
  3027. paw: {
  3028. height: math.unit(1, "feet"),
  3029. name: "Paw",
  3030. image: {
  3031. source: "./media/characters/zephiro/paw.svg"
  3032. }
  3033. },
  3034. beans: {
  3035. height: math.unit(0.93, "feet"),
  3036. name: "Beans",
  3037. image: {
  3038. source: "./media/characters/zephiro/beans.svg"
  3039. }
  3040. },
  3041. },
  3042. [
  3043. {
  3044. name: "Micro",
  3045. height: math.unit(3, "inches")
  3046. },
  3047. {
  3048. name: "Normal",
  3049. height: math.unit(5 + 3 / 12, "feet"),
  3050. default: true
  3051. },
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(118, "feet")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(5, "feet"),
  3063. weight: math.unit(90, "kg"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/fory/front.svg",
  3067. extra: 2862 / 2674,
  3068. bottom: 180 / 3043.8
  3069. }
  3070. },
  3071. back: {
  3072. height: math.unit(5, "feet"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Back",
  3075. image: {
  3076. source: "./media/characters/fory/back.svg",
  3077. extra: 2962 / 2791,
  3078. bottom: 106 / 3071.8
  3079. }
  3080. },
  3081. foot: {
  3082. height: math.unit(2.14, "feet"),
  3083. name: "Foot",
  3084. image: {
  3085. source: "./media/characters/fory/foot.svg"
  3086. }
  3087. },
  3088. },
  3089. [
  3090. {
  3091. name: "Normal",
  3092. height: math.unit(5, "feet")
  3093. },
  3094. {
  3095. name: "Macro",
  3096. height: math.unit(50, "feet"),
  3097. default: true
  3098. },
  3099. {
  3100. name: "Megamacro",
  3101. height: math.unit(10, "miles")
  3102. },
  3103. {
  3104. name: "Gigamacro",
  3105. height: math.unit(5, "earths")
  3106. },
  3107. ]
  3108. ))
  3109. characterMakers.push(() => makeCharacter(
  3110. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3111. {
  3112. front: {
  3113. height: math.unit(7, "feet"),
  3114. weight: math.unit(90, "kg"),
  3115. name: "Front",
  3116. image: {
  3117. source: "./media/characters/kurrikage/front.svg",
  3118. extra: 1845/1733,
  3119. bottom: 119/1964
  3120. }
  3121. },
  3122. back: {
  3123. height: math.unit(7, "feet"),
  3124. weight: math.unit(90, "kg"),
  3125. name: "Back",
  3126. image: {
  3127. source: "./media/characters/kurrikage/back.svg",
  3128. extra: 1790/1677,
  3129. bottom: 61/1851
  3130. }
  3131. },
  3132. dressed: {
  3133. height: math.unit(7, "feet"),
  3134. weight: math.unit(90, "kg"),
  3135. name: "Dressed",
  3136. image: {
  3137. source: "./media/characters/kurrikage/dressed.svg",
  3138. extra: 1845/1733,
  3139. bottom: 119/1964
  3140. }
  3141. },
  3142. foot: {
  3143. height: math.unit(1.5, "feet"),
  3144. name: "Foot",
  3145. image: {
  3146. source: "./media/characters/kurrikage/foot.svg"
  3147. }
  3148. },
  3149. staff: {
  3150. height: math.unit(6.7, "feet"),
  3151. name: "Staff",
  3152. image: {
  3153. source: "./media/characters/kurrikage/staff.svg"
  3154. }
  3155. },
  3156. peek: {
  3157. height: math.unit(1.05, "feet"),
  3158. name: "Peeking",
  3159. image: {
  3160. source: "./media/characters/kurrikage/peek.svg",
  3161. bottom: 0.08
  3162. }
  3163. },
  3164. },
  3165. [
  3166. {
  3167. name: "Normal",
  3168. height: math.unit(12, "feet"),
  3169. default: true
  3170. },
  3171. {
  3172. name: "Big",
  3173. height: math.unit(20, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(500, "feet")
  3178. },
  3179. {
  3180. name: "Megamacro",
  3181. height: math.unit(20, "miles")
  3182. },
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(6, "feet"),
  3190. weight: math.unit(75, "kg"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/shingo/front.svg",
  3194. extra: 1900/1825,
  3195. bottom: 82/1982
  3196. }
  3197. },
  3198. side: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Side",
  3202. image: {
  3203. source: "./media/characters/shingo/side.svg",
  3204. extra: 1930/1865,
  3205. bottom: 16/1946
  3206. }
  3207. },
  3208. back: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(75, "kg"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/shingo/back.svg",
  3214. extra: 1922/1852,
  3215. bottom: 16/1938
  3216. }
  3217. },
  3218. frontDressed: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(150, "lb"),
  3221. name: "Front-dressed",
  3222. image: {
  3223. source: "./media/characters/shingo/front-dressed.svg",
  3224. extra: 1900/1825,
  3225. bottom: 82/1982
  3226. }
  3227. },
  3228. paw: {
  3229. height: math.unit(1.29, "feet"),
  3230. name: "Paw",
  3231. image: {
  3232. source: "./media/characters/shingo/paw.svg"
  3233. }
  3234. },
  3235. hand: {
  3236. height: math.unit(1.07, "feet"),
  3237. name: "Hand",
  3238. image: {
  3239. source: "./media/characters/shingo/hand.svg"
  3240. }
  3241. },
  3242. frontAlt: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(75, "kg"),
  3245. name: "Front (Alt)",
  3246. image: {
  3247. source: "./media/characters/shingo/front-alt.svg",
  3248. extra: 3511 / 3338,
  3249. bottom: 0.005
  3250. }
  3251. },
  3252. frontAlt2: {
  3253. height: math.unit(6, "feet"),
  3254. weight: math.unit(75, "kg"),
  3255. name: "Front (Alt 2)",
  3256. image: {
  3257. source: "./media/characters/shingo/front-alt-2.svg",
  3258. extra: 706/681,
  3259. bottom: 11/717
  3260. }
  3261. },
  3262. pawAlt: {
  3263. height: math.unit(1, "feet"),
  3264. name: "Paw (Alt)",
  3265. image: {
  3266. source: "./media/characters/shingo/paw-alt.svg"
  3267. }
  3268. },
  3269. },
  3270. [
  3271. {
  3272. name: "Micro",
  3273. height: math.unit(4, "inches")
  3274. },
  3275. {
  3276. name: "Normal",
  3277. height: math.unit(6, "feet"),
  3278. default: true
  3279. },
  3280. {
  3281. name: "Macro",
  3282. height: math.unit(108, "feet")
  3283. },
  3284. {
  3285. name: "Macro+",
  3286. height: math.unit(1500, "feet")
  3287. },
  3288. ]
  3289. ))
  3290. characterMakers.push(() => makeCharacter(
  3291. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3292. {
  3293. side: {
  3294. height: math.unit(6, "feet"),
  3295. weight: math.unit(75, "kg"),
  3296. name: "Side",
  3297. image: {
  3298. source: "./media/characters/aigey/side.svg"
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(200, "feet"),
  3306. default: true
  3307. },
  3308. {
  3309. name: "Megamacro",
  3310. height: math.unit(100, "miles")
  3311. },
  3312. ]
  3313. )
  3314. )
  3315. characterMakers.push(() => makeCharacter(
  3316. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3317. {
  3318. front: {
  3319. height: math.unit(5 + 5 / 12, "feet"),
  3320. weight: math.unit(75, "kg"),
  3321. name: "Front",
  3322. image: {
  3323. source: "./media/characters/natasha/front.svg",
  3324. extra: 859 / 824,
  3325. bottom: 23 / 879.6
  3326. }
  3327. },
  3328. frontNsfw: {
  3329. height: math.unit(5 + 5 / 12, "feet"),
  3330. weight: math.unit(75, "kg"),
  3331. name: "Front (NSFW)",
  3332. image: {
  3333. source: "./media/characters/natasha/front-nsfw.svg",
  3334. extra: 859 / 824,
  3335. bottom: 23 / 879.6
  3336. }
  3337. },
  3338. frontErect: {
  3339. height: math.unit(5 + 5 / 12, "feet"),
  3340. weight: math.unit(75, "kg"),
  3341. name: "Front (Erect)",
  3342. image: {
  3343. source: "./media/characters/natasha/front-erect.svg",
  3344. extra: 859 / 824,
  3345. bottom: 23 / 879.6
  3346. }
  3347. },
  3348. back: {
  3349. height: math.unit(5 + 5 / 12, "feet"),
  3350. weight: math.unit(75, "kg"),
  3351. name: "Back",
  3352. image: {
  3353. source: "./media/characters/natasha/back.svg",
  3354. extra: 887.9 / 852.6,
  3355. bottom: 9.7 / 896.4
  3356. }
  3357. },
  3358. backAlt: {
  3359. height: math.unit(5 + 5 / 12, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Back (Alt)",
  3362. image: {
  3363. source: "./media/characters/natasha/back-alt.svg",
  3364. extra: 1236.7 / 1192,
  3365. bottom: 22.3 / 1258.2
  3366. }
  3367. },
  3368. dick: {
  3369. height: math.unit(1.772, "feet"),
  3370. name: "Dick",
  3371. image: {
  3372. source: "./media/characters/natasha/dick.svg"
  3373. }
  3374. },
  3375. paw: {
  3376. height: math.unit(0.250, "meters"),
  3377. name: "Paw",
  3378. image: {
  3379. source: "./media/characters/natasha/paw.svg"
  3380. },
  3381. extraAttributes: {
  3382. "toeSize": {
  3383. name: "Toe Size",
  3384. power: 2,
  3385. type: "area",
  3386. base: math.unit(0.0024, "m^2")
  3387. },
  3388. "padSize": {
  3389. name: "Pad Size",
  3390. power: 2,
  3391. type: "area",
  3392. base: math.unit(0.00889, "m^2")
  3393. },
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.023667, "m^2")
  3399. },
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Shortstack",
  3406. height: math.unit(3, "feet"),
  3407. default: true
  3408. },
  3409. {
  3410. name: "Normal",
  3411. height: math.unit(5 + 5 / 12, "feet")
  3412. },
  3413. {
  3414. name: "Large",
  3415. height: math.unit(12, "feet")
  3416. },
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(100, "feet")
  3420. },
  3421. {
  3422. name: "Macro+",
  3423. height: math.unit(260, "feet")
  3424. },
  3425. {
  3426. name: "Macro++",
  3427. height: math.unit(1, "mile")
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(6, "feet"),
  3436. weight: math.unit(75, "kg"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/malik/front.svg",
  3440. extra: 1750/1561,
  3441. bottom: 80/1830
  3442. },
  3443. extraAttributes: {
  3444. "toeSize": {
  3445. name: "Toe Size",
  3446. power: 2,
  3447. type: "area",
  3448. base: math.unit(0.0159, "m^2")
  3449. },
  3450. "pawSize": {
  3451. name: "Paw Size",
  3452. power: 2,
  3453. type: "area",
  3454. base: math.unit(0.09834, "m^2")
  3455. },
  3456. }
  3457. },
  3458. side: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Side",
  3462. image: {
  3463. source: "./media/characters/malik/side.svg",
  3464. extra: 1802/1685,
  3465. bottom: 42/1844
  3466. },
  3467. extraAttributes: {
  3468. "toeSize": {
  3469. name: "Toe Size",
  3470. power: 2,
  3471. type: "area",
  3472. base: math.unit(0.0159, "m^2")
  3473. },
  3474. "pawSize": {
  3475. name: "Paw Size",
  3476. power: 2,
  3477. type: "area",
  3478. base: math.unit(0.09834, "m^2")
  3479. },
  3480. }
  3481. },
  3482. back: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Back",
  3486. image: {
  3487. source: "./media/characters/malik/back.svg",
  3488. extra: 1803/1607,
  3489. bottom: 33/1836
  3490. },
  3491. extraAttributes: {
  3492. "toeSize": {
  3493. name: "Toe Size",
  3494. power: 2,
  3495. type: "area",
  3496. base: math.unit(0.0159, "m^2")
  3497. },
  3498. "pawSize": {
  3499. name: "Paw Size",
  3500. power: 2,
  3501. type: "area",
  3502. base: math.unit(0.09834, "m^2")
  3503. },
  3504. }
  3505. },
  3506. },
  3507. [
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(156, "feet"),
  3511. default: true
  3512. },
  3513. {
  3514. name: "Macro+",
  3515. height: math.unit(1188, "feet")
  3516. },
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/sefer/front.svg",
  3528. extra: 848 / 659,
  3529. bottom: 28.3 / 876.442
  3530. }
  3531. },
  3532. back: {
  3533. height: math.unit(6, "feet"),
  3534. weight: math.unit(75, "kg"),
  3535. name: "Back",
  3536. image: {
  3537. source: "./media/characters/sefer/back.svg",
  3538. extra: 864 / 695,
  3539. bottom: 10 / 871
  3540. }
  3541. },
  3542. frontDressed: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Front (Dressed)",
  3546. image: {
  3547. source: "./media/characters/sefer/front-dressed.svg",
  3548. extra: 839 / 653,
  3549. bottom: 37.6 / 878
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Normal",
  3556. height: math.unit(6, "feet"),
  3557. default: true
  3558. },
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3563. {
  3564. body: {
  3565. height: math.unit(2.2428, "meter"),
  3566. weight: math.unit(124.738, "kg"),
  3567. name: "Body",
  3568. image: {
  3569. extra: 1225 / 1050,
  3570. source: "./media/characters/north/front.svg"
  3571. }
  3572. }
  3573. },
  3574. [
  3575. {
  3576. name: "Micro",
  3577. height: math.unit(4, "inches")
  3578. },
  3579. {
  3580. name: "Macro",
  3581. height: math.unit(63, "meters")
  3582. },
  3583. {
  3584. name: "Megamacro",
  3585. height: math.unit(101, "miles"),
  3586. default: true
  3587. }
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3592. {
  3593. angled: {
  3594. height: math.unit(4, "meter"),
  3595. weight: math.unit(150, "kg"),
  3596. name: "Angled",
  3597. image: {
  3598. source: "./media/characters/talan/angled-sfw.svg",
  3599. bottom: 29 / 3734
  3600. }
  3601. },
  3602. angledNsfw: {
  3603. height: math.unit(4, "meter"),
  3604. weight: math.unit(150, "kg"),
  3605. name: "Angled (NSFW)",
  3606. image: {
  3607. source: "./media/characters/talan/angled-nsfw.svg",
  3608. bottom: 29 / 3734
  3609. }
  3610. },
  3611. frontNsfw: {
  3612. height: math.unit(4, "meter"),
  3613. weight: math.unit(150, "kg"),
  3614. name: "Front (NSFW)",
  3615. image: {
  3616. source: "./media/characters/talan/front-nsfw.svg",
  3617. bottom: 29 / 3734
  3618. }
  3619. },
  3620. sideNsfw: {
  3621. height: math.unit(4, "meter"),
  3622. weight: math.unit(150, "kg"),
  3623. name: "Side (NSFW)",
  3624. image: {
  3625. source: "./media/characters/talan/side-nsfw.svg",
  3626. bottom: 29 / 3734
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(4, "meter"),
  3631. weight: math.unit(150, "kg"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/talan/back.svg"
  3635. }
  3636. },
  3637. dickBottom: {
  3638. height: math.unit(0.621, "meter"),
  3639. name: "Dick (Bottom)",
  3640. image: {
  3641. source: "./media/characters/talan/dick-bottom.svg"
  3642. }
  3643. },
  3644. dickTop: {
  3645. height: math.unit(0.621, "meter"),
  3646. name: "Dick (Top)",
  3647. image: {
  3648. source: "./media/characters/talan/dick-top.svg"
  3649. }
  3650. },
  3651. dickSide: {
  3652. height: math.unit(0.305, "meter"),
  3653. name: "Dick (Side)",
  3654. image: {
  3655. source: "./media/characters/talan/dick-side.svg"
  3656. }
  3657. },
  3658. dickFront: {
  3659. height: math.unit(0.305, "meter"),
  3660. name: "Dick (Front)",
  3661. image: {
  3662. source: "./media/characters/talan/dick-front.svg"
  3663. }
  3664. },
  3665. },
  3666. [
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(4, "meters")
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(100, "meters")
  3674. },
  3675. {
  3676. name: "Megamacro",
  3677. height: math.unit(2, "miles"),
  3678. default: true
  3679. },
  3680. {
  3681. name: "Gigamacro",
  3682. height: math.unit(5000, "miles")
  3683. },
  3684. {
  3685. name: "Teramacro",
  3686. height: math.unit(100, "parsecs")
  3687. }
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(2, "meter"),
  3695. weight: math.unit(90, "kg"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/gael'rathus/front.svg"
  3699. }
  3700. },
  3701. frontAlt: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front (alt)",
  3705. image: {
  3706. source: "./media/characters/gael'rathus/front-alt.svg"
  3707. }
  3708. },
  3709. frontAlt2: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Front (alt 2)",
  3713. image: {
  3714. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(9, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Large",
  3726. height: math.unit(25, "feet")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(0.25, "miles")
  3731. },
  3732. {
  3733. name: "Megamacro",
  3734. height: math.unit(10, "miles")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3740. {
  3741. side: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(140, "kg"),
  3744. name: "Side",
  3745. image: {
  3746. source: "./media/characters/sosha/side.svg",
  3747. extra: 1170/1006,
  3748. bottom: 94/1264
  3749. }
  3750. },
  3751. maw: {
  3752. height: math.unit(2.87, "feet"),
  3753. name: "Maw",
  3754. image: {
  3755. source: "./media/characters/sosha/maw.svg",
  3756. extra: 966/865,
  3757. bottom: 0/966
  3758. }
  3759. },
  3760. cooch: {
  3761. height: math.unit(5.6, "feet"),
  3762. name: "Cooch",
  3763. image: {
  3764. source: "./media/characters/sosha/cooch.svg"
  3765. }
  3766. },
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(12, "feet"),
  3772. default: true
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3778. {
  3779. side: {
  3780. height: math.unit(5 + 5 / 12, "feet"),
  3781. weight: math.unit(170, "kg"),
  3782. name: "Side",
  3783. image: {
  3784. source: "./media/characters/runnola/side.svg",
  3785. extra: 741 / 448,
  3786. bottom: 0.05
  3787. }
  3788. },
  3789. },
  3790. [
  3791. {
  3792. name: "Small",
  3793. height: math.unit(3, "feet")
  3794. },
  3795. {
  3796. name: "Normal",
  3797. height: math.unit(5 + 5 / 12, "feet"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Big",
  3802. height: math.unit(10, "feet")
  3803. },
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(2, "meter"),
  3811. weight: math.unit(50, "kg"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/kurribird/front.svg",
  3815. bottom: 0.015
  3816. }
  3817. },
  3818. frontAlt: {
  3819. height: math.unit(1.5, "meter"),
  3820. weight: math.unit(50, "kg"),
  3821. name: "Front (Alt)",
  3822. image: {
  3823. source: "./media/characters/kurribird/front-alt.svg",
  3824. extra: 1.45
  3825. }
  3826. },
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(7, "feet")
  3832. },
  3833. {
  3834. name: "Big",
  3835. height: math.unit(12, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(1500, "feet")
  3841. },
  3842. {
  3843. name: "Megamacro",
  3844. height: math.unit(2, "miles")
  3845. }
  3846. ]
  3847. ))
  3848. characterMakers.push(() => makeCharacter(
  3849. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3850. {
  3851. front: {
  3852. height: math.unit(2, "meter"),
  3853. weight: math.unit(80, "kg"),
  3854. name: "Front",
  3855. image: {
  3856. source: "./media/characters/elbial/front.svg",
  3857. extra: 1643 / 1556,
  3858. bottom: 60.2 / 1696
  3859. }
  3860. },
  3861. side: {
  3862. height: math.unit(2, "meter"),
  3863. weight: math.unit(80, "kg"),
  3864. name: "Side",
  3865. image: {
  3866. source: "./media/characters/elbial/side.svg",
  3867. extra: 1601/1528,
  3868. bottom: 97/1698
  3869. }
  3870. },
  3871. back: {
  3872. height: math.unit(2, "meter"),
  3873. weight: math.unit(80, "kg"),
  3874. name: "Back",
  3875. image: {
  3876. source: "./media/characters/elbial/back.svg",
  3877. extra: 1653/1569,
  3878. bottom: 20/1673
  3879. }
  3880. },
  3881. frontDressed: {
  3882. height: math.unit(2, "meter"),
  3883. weight: math.unit(80, "kg"),
  3884. name: "Front (Dressed)",
  3885. image: {
  3886. source: "./media/characters/elbial/front-dressed.svg",
  3887. extra: 1638/1569,
  3888. bottom: 70/1708
  3889. }
  3890. },
  3891. genitals: {
  3892. height: math.unit(2 / 3.367, "meter"),
  3893. name: "Genitals",
  3894. image: {
  3895. source: "./media/characters/elbial/genitals.svg"
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Large",
  3902. height: math.unit(100, "feet")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(500, "feet"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(10, "miles")
  3912. },
  3913. {
  3914. name: "Gigamacro",
  3915. height: math.unit(25000, "miles")
  3916. },
  3917. {
  3918. name: "Full-Size",
  3919. height: math.unit(8000000, "gigaparsecs")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/noah/front.svg"
  3932. }
  3933. },
  3934. talons: {
  3935. height: math.unit(0.315, "meter"),
  3936. name: "Talons",
  3937. image: {
  3938. source: "./media/characters/noah/talons.svg"
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Large",
  3945. height: math.unit(50, "feet")
  3946. },
  3947. {
  3948. name: "Macro",
  3949. height: math.unit(750, "feet"),
  3950. default: true
  3951. },
  3952. {
  3953. name: "Megamacro",
  3954. height: math.unit(50, "miles")
  3955. },
  3956. {
  3957. name: "Gigamacro",
  3958. height: math.unit(100000, "miles")
  3959. },
  3960. {
  3961. name: "Full-Size",
  3962. height: math.unit(3000000000, "miles")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(2, "meter"),
  3971. weight: math.unit(80, "kg"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/natalya/front.svg"
  3975. }
  3976. },
  3977. back: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(80, "kg"),
  3980. name: "Back",
  3981. image: {
  3982. source: "./media/characters/natalya/back.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Normal",
  3989. height: math.unit(150, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Megamacro",
  3994. height: math.unit(5, "miles")
  3995. },
  3996. {
  3997. name: "Full-Size",
  3998. height: math.unit(600, "kiloparsecs")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(50, "kg"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/erestrebah/front.svg",
  4011. extra: 1262/1162,
  4012. bottom: 96/1358
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(2, "meter"),
  4017. weight: math.unit(50, "kg"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/erestrebah/back.svg",
  4021. extra: 1257/1139,
  4022. bottom: 13/1270
  4023. }
  4024. },
  4025. wing: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(50, "kg"),
  4028. name: "Wing",
  4029. image: {
  4030. source: "./media/characters/erestrebah/wing.svg",
  4031. extra: 1262/1162,
  4032. bottom: 96/1358
  4033. }
  4034. },
  4035. mouth: {
  4036. height: math.unit(0.39, "feet"),
  4037. name: "Mouth",
  4038. image: {
  4039. source: "./media/characters/erestrebah/mouth.svg"
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(10, "feet")
  4047. },
  4048. {
  4049. name: "Large",
  4050. height: math.unit(50, "feet"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(300, "feet")
  4056. },
  4057. {
  4058. name: "Macro+",
  4059. height: math.unit(750, "feet")
  4060. },
  4061. {
  4062. name: "Megamacro",
  4063. height: math.unit(3, "miles")
  4064. }
  4065. ]
  4066. ))
  4067. characterMakers.push(() => makeCharacter(
  4068. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4069. {
  4070. front: {
  4071. height: math.unit(2, "meter"),
  4072. weight: math.unit(80, "kg"),
  4073. name: "Front",
  4074. image: {
  4075. source: "./media/characters/jennifer/front.svg",
  4076. bottom: 0.11,
  4077. extra: 1.16
  4078. }
  4079. },
  4080. frontAlt: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(80, "kg"),
  4083. name: "Front (Alt)",
  4084. image: {
  4085. source: "./media/characters/jennifer/front-alt.svg"
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Canon Height",
  4092. height: math.unit(120, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Macro+",
  4097. height: math.unit(300, "feet")
  4098. },
  4099. {
  4100. name: "Megamacro",
  4101. height: math.unit(20000, "feet")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(50, "kg"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/kalista/front.svg",
  4114. extra: 1314/1145,
  4115. bottom: 101/1415
  4116. }
  4117. },
  4118. back: {
  4119. height: math.unit(2, "meter"),
  4120. weight: math.unit(50, "kg"),
  4121. name: "Back",
  4122. image: {
  4123. source: "./media/characters/kalista/back.svg",
  4124. extra: 1366 / 1156,
  4125. bottom: 33.9 / 1362.78
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Uncomfortably Small",
  4132. height: math.unit(10, "feet")
  4133. },
  4134. {
  4135. name: "Small",
  4136. height: math.unit(30, "feet")
  4137. },
  4138. {
  4139. name: "Macro",
  4140. height: math.unit(100, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Macro+",
  4145. height: math.unit(2000, "feet")
  4146. },
  4147. {
  4148. name: "True Form",
  4149. height: math.unit(8924, "miles")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(120, "kg"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/ggv/front.svg"
  4162. }
  4163. },
  4164. side: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(120, "kg"),
  4167. name: "Side",
  4168. image: {
  4169. source: "./media/characters/ggv/side.svg"
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Extremely Puny",
  4176. height: math.unit(9 + 5 / 12, "feet")
  4177. },
  4178. {
  4179. name: "Horribly Small",
  4180. height: math.unit(47.7, "miles"),
  4181. default: true
  4182. },
  4183. {
  4184. name: "Reasonably Sized",
  4185. height: math.unit(25000, "parsecs")
  4186. },
  4187. {
  4188. name: "Slightly Uncompressed",
  4189. height: math.unit(7.77e31, "parsecs")
  4190. },
  4191. {
  4192. name: "Omniversal",
  4193. height: math.unit(1e300, "meters")
  4194. },
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(75, "lb"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/napalm/front.svg"
  4206. }
  4207. },
  4208. back: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(75, "lb"),
  4211. name: "Back",
  4212. image: {
  4213. source: "./media/characters/napalm/back.svg"
  4214. }
  4215. }
  4216. },
  4217. [
  4218. {
  4219. name: "Standard",
  4220. height: math.unit(55, "feet"),
  4221. default: true
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(7 + 5 / 6, "feet"),
  4230. weight: math.unit(325, "lb"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/asana/front.svg",
  4234. extra: 1133 / 1060,
  4235. bottom: 15.2 / 1148.6
  4236. }
  4237. },
  4238. back: {
  4239. height: math.unit(7 + 5 / 6, "feet"),
  4240. weight: math.unit(325, "lb"),
  4241. name: "Back",
  4242. image: {
  4243. source: "./media/characters/asana/back.svg",
  4244. extra: 1114 / 1043,
  4245. bottom: 5 / 1120
  4246. }
  4247. },
  4248. dressedDark: {
  4249. height: math.unit(7 + 5 / 6, "feet"),
  4250. weight: math.unit(325, "lb"),
  4251. name: "Dressed (Dark)",
  4252. image: {
  4253. source: "./media/characters/asana/dressed-dark.svg",
  4254. extra: 1133 / 1060,
  4255. bottom: 15.2 / 1148.6
  4256. }
  4257. },
  4258. dressedLight: {
  4259. height: math.unit(7 + 5 / 6, "feet"),
  4260. weight: math.unit(325, "lb"),
  4261. name: "Dressed (Light)",
  4262. image: {
  4263. source: "./media/characters/asana/dressed-light.svg",
  4264. extra: 1133 / 1060,
  4265. bottom: 15.2 / 1148.6
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Standard",
  4272. height: math.unit(7 + 5 / 6, "feet"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Large",
  4277. height: math.unit(10, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(2500, "meters")
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(5e6, "meters")
  4286. },
  4287. {
  4288. name: "Examacro",
  4289. height: math.unit(5e12, "lightyears")
  4290. },
  4291. {
  4292. name: "Max Size",
  4293. height: math.unit(1e31, "lightyears")
  4294. }
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(60, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/ebony/front.svg",
  4306. bottom: 0.03,
  4307. extra: 1045 / 810 + 0.03
  4308. }
  4309. },
  4310. side: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(60, "kg"),
  4313. name: "Side",
  4314. image: {
  4315. source: "./media/characters/ebony/side.svg",
  4316. bottom: 0.03,
  4317. extra: 1045 / 810 + 0.03
  4318. }
  4319. },
  4320. back: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(60, "kg"),
  4323. name: "Back",
  4324. image: {
  4325. source: "./media/characters/ebony/back.svg",
  4326. bottom: 0.01,
  4327. extra: 1045 / 810 + 0.01
  4328. }
  4329. },
  4330. },
  4331. [
  4332. // TODO check why I did this lol
  4333. {
  4334. name: "Standard",
  4335. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4336. default: true
  4337. },
  4338. {
  4339. name: "Macro",
  4340. height: math.unit(200, "feet")
  4341. },
  4342. {
  4343. name: "Gigamacro",
  4344. height: math.unit(13000, "km")
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(175, "lb"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/mountain/front.svg",
  4357. extra: 972 / 955,
  4358. bottom: 64 / 1036.6
  4359. }
  4360. },
  4361. back: {
  4362. height: math.unit(6, "feet"),
  4363. weight: math.unit(175, "lb"),
  4364. name: "Back",
  4365. image: {
  4366. source: "./media/characters/mountain/back.svg",
  4367. extra: 970 / 950,
  4368. bottom: 28.25 / 999
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Large",
  4375. height: math.unit(20, "meters")
  4376. },
  4377. {
  4378. name: "Macro",
  4379. height: math.unit(300, "meters")
  4380. },
  4381. {
  4382. name: "Gigamacro",
  4383. height: math.unit(10000, "km"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Examacro",
  4388. height: math.unit(10e9, "lightyears")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(8, "feet"),
  4397. weight: math.unit(500, "lb"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/rick/front.svg"
  4401. }
  4402. }
  4403. },
  4404. [
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(8, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(5, "km")
  4413. }
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4418. {
  4419. front: {
  4420. height: math.unit(8, "feet"),
  4421. weight: math.unit(120, "lb"),
  4422. name: "Front",
  4423. image: {
  4424. source: "./media/characters/ona/front.svg"
  4425. }
  4426. },
  4427. frontAlt: {
  4428. height: math.unit(8, "feet"),
  4429. weight: math.unit(120, "lb"),
  4430. name: "Front (Alt)",
  4431. image: {
  4432. source: "./media/characters/ona/front-alt.svg"
  4433. }
  4434. },
  4435. back: {
  4436. height: math.unit(8, "feet"),
  4437. weight: math.unit(120, "lb"),
  4438. name: "Back",
  4439. image: {
  4440. source: "./media/characters/ona/back.svg"
  4441. }
  4442. },
  4443. foot: {
  4444. height: math.unit(1.1, "feet"),
  4445. name: "Foot",
  4446. image: {
  4447. source: "./media/characters/ona/foot.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Megamacro",
  4454. height: math.unit(70, "km"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(681818, "miles")
  4460. },
  4461. {
  4462. name: "Examacro",
  4463. height: math.unit(3800000, "lightyears")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(12, "feet"),
  4472. weight: math.unit(3000, "lb"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/mech/front.svg",
  4476. extra: 2900 / 2770,
  4477. bottom: 110 / 3010
  4478. }
  4479. },
  4480. back: {
  4481. height: math.unit(12, "feet"),
  4482. weight: math.unit(3000, "lb"),
  4483. name: "Back",
  4484. image: {
  4485. source: "./media/characters/mech/back.svg",
  4486. extra: 3011 / 2890,
  4487. bottom: 94 / 3105
  4488. }
  4489. },
  4490. maw: {
  4491. height: math.unit(3.07, "feet"),
  4492. name: "Maw",
  4493. image: {
  4494. source: "./media/characters/mech/maw.svg"
  4495. }
  4496. },
  4497. head: {
  4498. height: math.unit(3.07, "feet"),
  4499. name: "Head",
  4500. image: {
  4501. source: "./media/characters/mech/head.svg"
  4502. }
  4503. },
  4504. dick: {
  4505. height: math.unit(1.43, "feet"),
  4506. name: "Dick",
  4507. image: {
  4508. source: "./media/characters/mech/dick.svg"
  4509. }
  4510. },
  4511. },
  4512. [
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(12, "feet")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(300, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Macro+",
  4524. height: math.unit(1500, "feet")
  4525. },
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(1.3, "meter"),
  4533. weight: math.unit(30, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/gregory/front.svg",
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(1.3, "meter"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(20, "meter")
  4549. }
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4554. {
  4555. front: {
  4556. height: math.unit(2.8, "meter"),
  4557. weight: math.unit(200, "kg"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/elory/front.svg",
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(2.8, "meter"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(38, "meter")
  4573. }
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(470, "feet"),
  4581. weight: math.unit(924, "tons"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/angelpatamon/front.svg",
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(470, "feet"),
  4592. default: true
  4593. },
  4594. {
  4595. name: "Deity Size I",
  4596. height: math.unit(28651.2, "km")
  4597. },
  4598. {
  4599. name: "Deity Size II",
  4600. height: math.unit(171907.2, "km")
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4606. {
  4607. side: {
  4608. height: math.unit(7.2, "meter"),
  4609. weight: math.unit(8.2, "tons"),
  4610. name: "Side",
  4611. image: {
  4612. source: "./media/characters/cryae/side.svg",
  4613. extra: 3500 / 1500
  4614. }
  4615. }
  4616. },
  4617. [
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(7.2, "meter"),
  4621. default: true
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(175, "lb"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/xera/front.svg",
  4634. extra: 2377 / 1972,
  4635. bottom: 75.5 / 2452
  4636. }
  4637. },
  4638. side: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(175, "lb"),
  4641. name: "Side",
  4642. image: {
  4643. source: "./media/characters/xera/side.svg",
  4644. extra: 2345 / 2019,
  4645. bottom: 39.7 / 2384
  4646. }
  4647. },
  4648. back: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(175, "lb"),
  4651. name: "Back",
  4652. image: {
  4653. source: "./media/characters/xera/back.svg",
  4654. extra: 2095 / 1984,
  4655. bottom: 67 / 2166
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Small",
  4662. height: math.unit(10, "feet")
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(500, "meters"),
  4667. default: true
  4668. },
  4669. {
  4670. name: "Macro+",
  4671. height: math.unit(10, "km")
  4672. },
  4673. {
  4674. name: "Gigamacro",
  4675. height: math.unit(25000, "km")
  4676. },
  4677. {
  4678. name: "Teramacro",
  4679. height: math.unit(3e6, "km")
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4685. {
  4686. front: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(175, "lb"),
  4689. name: "Front",
  4690. image: {
  4691. source: "./media/characters/nebula/front.svg",
  4692. extra: 2566 / 2362,
  4693. bottom: 81 / 2644
  4694. }
  4695. }
  4696. },
  4697. [
  4698. {
  4699. name: "Small",
  4700. height: math.unit(4.5, "meters")
  4701. },
  4702. {
  4703. name: "Macro",
  4704. height: math.unit(1500, "meters"),
  4705. default: true
  4706. },
  4707. {
  4708. name: "Megamacro",
  4709. height: math.unit(150, "km")
  4710. },
  4711. {
  4712. name: "Gigamacro",
  4713. height: math.unit(27000, "km")
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4719. {
  4720. front: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(225, "lb"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/abysgar/front.svg",
  4726. extra: 1739/1614,
  4727. bottom: 71/1810
  4728. }
  4729. },
  4730. frontNsfw: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(225, "lb"),
  4733. name: "Front (NSFW)",
  4734. image: {
  4735. source: "./media/characters/abysgar/front-nsfw.svg",
  4736. extra: 1739/1614,
  4737. bottom: 71/1810
  4738. }
  4739. },
  4740. back: {
  4741. height: math.unit(4.6, "feet"),
  4742. weight: math.unit(225, "lb"),
  4743. name: "Back",
  4744. image: {
  4745. source: "./media/characters/abysgar/back.svg",
  4746. extra: 1384/1327,
  4747. bottom: 0/1384
  4748. }
  4749. },
  4750. head: {
  4751. height: math.unit(1.25, "feet"),
  4752. name: "Head",
  4753. image: {
  4754. source: "./media/characters/abysgar/head.svg",
  4755. extra: 669/569,
  4756. bottom: 0/669
  4757. }
  4758. },
  4759. },
  4760. [
  4761. {
  4762. name: "Small",
  4763. height: math.unit(4.5, "meters")
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(1250, "meters"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Megamacro",
  4772. height: math.unit(125, "km")
  4773. },
  4774. {
  4775. name: "Gigamacro",
  4776. height: math.unit(26000, "km")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(180, "lb"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/yakuz/front.svg"
  4789. }
  4790. }
  4791. },
  4792. [
  4793. {
  4794. name: "Small",
  4795. height: math.unit(5, "meters")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(1500, "meters"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(200, "km")
  4805. },
  4806. {
  4807. name: "Gigamacro",
  4808. height: math.unit(100000, "km")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(175, "lb"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/mirova/front.svg",
  4821. extra: 3334 / 3071,
  4822. bottom: 42 / 3375.6
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Small",
  4829. height: math.unit(5, "meters")
  4830. },
  4831. {
  4832. name: "Macro",
  4833. height: math.unit(900, "meters"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Megamacro",
  4838. height: math.unit(135, "km")
  4839. },
  4840. {
  4841. name: "Gigamacro",
  4842. height: math.unit(20000, "km")
  4843. }
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4848. {
  4849. side: {
  4850. height: math.unit(28.35, "feet"),
  4851. weight: math.unit(99.75, "tons"),
  4852. name: "Side",
  4853. image: {
  4854. source: "./media/characters/asana-mech/side.svg",
  4855. extra: 923 / 699,
  4856. bottom: 50 / 975
  4857. }
  4858. },
  4859. chaingun: {
  4860. height: math.unit(7, "feet"),
  4861. weight: math.unit(2400, "lb"),
  4862. name: "Chaingun",
  4863. image: {
  4864. source: "./media/characters/asana-mech/chaingun.svg"
  4865. }
  4866. },
  4867. laser: {
  4868. height: math.unit(7.12, "feet"),
  4869. weight: math.unit(2000, "lb"),
  4870. name: "Laser",
  4871. image: {
  4872. source: "./media/characters/asana-mech/laser.svg"
  4873. }
  4874. },
  4875. },
  4876. [
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(28.35, "feet"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Macro",
  4884. height: math.unit(2500, "feet")
  4885. },
  4886. {
  4887. name: "Megamacro",
  4888. height: math.unit(25, "miles")
  4889. },
  4890. {
  4891. name: "Examacro",
  4892. height: math.unit(6e8, "lightyears")
  4893. },
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(5, "meters"),
  4901. weight: math.unit(1000, "kg"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/asche/front.svg",
  4905. extra: 1258 / 1190,
  4906. bottom: 47 / 1305
  4907. }
  4908. },
  4909. frontUnderwear: {
  4910. height: math.unit(5, "meters"),
  4911. weight: math.unit(1000, "kg"),
  4912. name: "Front (Underwear)",
  4913. image: {
  4914. source: "./media/characters/asche/front-underwear.svg",
  4915. extra: 1258 / 1190,
  4916. bottom: 47 / 1305
  4917. }
  4918. },
  4919. frontDressed: {
  4920. height: math.unit(5, "meters"),
  4921. weight: math.unit(1000, "kg"),
  4922. name: "Front (Dressed)",
  4923. image: {
  4924. source: "./media/characters/asche/front-dressed.svg",
  4925. extra: 1258 / 1190,
  4926. bottom: 47 / 1305
  4927. }
  4928. },
  4929. frontArmor: {
  4930. height: math.unit(5, "meters"),
  4931. weight: math.unit(1000, "kg"),
  4932. name: "Front (Armored)",
  4933. image: {
  4934. source: "./media/characters/asche/front-armored.svg",
  4935. extra: 1374 / 1308,
  4936. bottom: 23 / 1397
  4937. }
  4938. },
  4939. mp724: {
  4940. height: math.unit(0.96, "meters"),
  4941. weight: math.unit(38, "kg"),
  4942. name: "H&K MP724",
  4943. image: {
  4944. source: "./media/characters/asche/h&k-mp724.svg"
  4945. }
  4946. },
  4947. side: {
  4948. height: math.unit(5, "meters"),
  4949. weight: math.unit(1000, "kg"),
  4950. name: "Side",
  4951. image: {
  4952. source: "./media/characters/asche/side.svg",
  4953. extra: 1717 / 1609,
  4954. bottom: 0.005
  4955. }
  4956. },
  4957. back: {
  4958. height: math.unit(5, "meters"),
  4959. weight: math.unit(1000, "kg"),
  4960. name: "Back",
  4961. image: {
  4962. source: "./media/characters/asche/back.svg",
  4963. extra: 1570 / 1501
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "DEFCON 5",
  4970. height: math.unit(5, "meters")
  4971. },
  4972. {
  4973. name: "DEFCON 4",
  4974. height: math.unit(500, "meters"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "DEFCON 3",
  4979. height: math.unit(5, "km")
  4980. },
  4981. {
  4982. name: "DEFCON 2",
  4983. height: math.unit(500, "km")
  4984. },
  4985. {
  4986. name: "DEFCON 1",
  4987. height: math.unit(500000, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 0",
  4991. height: math.unit(3, "gigaparsecs")
  4992. },
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(2, "meters"),
  5000. weight: math.unit(76, "kg"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/gale/front.svg"
  5004. }
  5005. },
  5006. frontAlt1: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(76, "kg"),
  5009. name: "Front (Alt 1)",
  5010. image: {
  5011. source: "./media/characters/gale/front-alt-1.svg"
  5012. }
  5013. },
  5014. frontAlt2: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(76, "kg"),
  5017. name: "Front (Alt 2)",
  5018. image: {
  5019. source: "./media/characters/gale/front-alt-2.svg"
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(7, "feet")
  5027. },
  5028. {
  5029. name: "Macro",
  5030. height: math.unit(150, "feet"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro+",
  5035. height: math.unit(300, "feet")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(5 + 10/12, "feet"),
  5044. weight: math.unit(67, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/draylen/front.svg",
  5048. extra: 832/777,
  5049. bottom: 85/917
  5050. }
  5051. }
  5052. },
  5053. [
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(5 + 10/12, "feet")
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(150, "feet"),
  5061. default: true
  5062. }
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(7 + 9 / 12, "feet"),
  5070. weight: math.unit(379, "lbs"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/chez/front.svg"
  5074. }
  5075. },
  5076. side: {
  5077. height: math.unit(7 + 9 / 12, "feet"),
  5078. weight: math.unit(379, "lbs"),
  5079. name: "Side",
  5080. image: {
  5081. source: "./media/characters/chez/side.svg"
  5082. }
  5083. }
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(7 + 9 / 12, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "God King",
  5093. height: math.unit(9750000, "meters")
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5099. {
  5100. front: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(275, "lbs"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/kaylum/front.svg",
  5106. bottom: 0.01,
  5107. extra: 1166 / 1031
  5108. }
  5109. },
  5110. frontWingless: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(275, "lbs"),
  5113. name: "Front (Wingless)",
  5114. image: {
  5115. source: "./media/characters/kaylum/front-wingless.svg",
  5116. bottom: 0.01,
  5117. extra: 1117 / 1031
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(3.05, "meters")
  5125. },
  5126. {
  5127. name: "Master",
  5128. height: math.unit(5.5, "meters")
  5129. },
  5130. {
  5131. name: "Rampage",
  5132. height: math.unit(19, "meters")
  5133. },
  5134. {
  5135. name: "Macro Lite",
  5136. height: math.unit(37, "meters")
  5137. },
  5138. {
  5139. name: "Hyper Predator",
  5140. height: math.unit(61, "meters")
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(138, "meters"),
  5145. default: true
  5146. }
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5151. {
  5152. front: {
  5153. height: math.unit(5 + 5 / 12, "feet"),
  5154. weight: math.unit(120, "lbs"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/geta/front.svg",
  5158. extra: 1003/933,
  5159. bottom: 21/1024
  5160. }
  5161. },
  5162. paw: {
  5163. height: math.unit(0.35, "feet"),
  5164. name: "Paw",
  5165. image: {
  5166. source: "./media/characters/geta/paw.svg"
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Micro",
  5173. height: math.unit(3, "inches"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(5 + 5 / 12, "feet")
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(300, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/tyrnn/front.svg"
  5191. }
  5192. }
  5193. },
  5194. [
  5195. {
  5196. name: "Main Height",
  5197. height: math.unit(355, "feet"),
  5198. default: true
  5199. },
  5200. {
  5201. name: "Fave. Height",
  5202. height: math.unit(2400, "feet")
  5203. }
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5208. {
  5209. front: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(300, "lbs"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/appledectomy/front.svg"
  5215. }
  5216. }
  5217. },
  5218. [
  5219. {
  5220. name: "Macro",
  5221. height: math.unit(2500, "feet")
  5222. },
  5223. {
  5224. name: "Megamacro",
  5225. height: math.unit(50, "miles"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Gigamacro",
  5230. height: math.unit(5000, "miles")
  5231. },
  5232. {
  5233. name: "Teramacro",
  5234. height: math.unit(250000, "miles")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(200, "lbs"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/vulpes/front.svg",
  5247. extra: 573 / 543,
  5248. bottom: 0.033
  5249. }
  5250. },
  5251. side: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(200, "lbs"),
  5254. name: "Side",
  5255. image: {
  5256. source: "./media/characters/vulpes/side.svg",
  5257. extra: 577 / 549,
  5258. bottom: 11 / 588
  5259. }
  5260. },
  5261. back: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(200, "lbs"),
  5264. name: "Back",
  5265. image: {
  5266. source: "./media/characters/vulpes/back.svg",
  5267. extra: 573 / 549,
  5268. bottom: 20 / 593
  5269. }
  5270. },
  5271. feet: {
  5272. height: math.unit(1.276, "feet"),
  5273. name: "Feet",
  5274. image: {
  5275. source: "./media/characters/vulpes/feet.svg"
  5276. }
  5277. },
  5278. maw: {
  5279. height: math.unit(1.18, "feet"),
  5280. name: "Maw",
  5281. image: {
  5282. source: "./media/characters/vulpes/maw.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Micro",
  5289. height: math.unit(2, "inches")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(6.3, "feet")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(850, "feet")
  5298. },
  5299. {
  5300. name: "Megamacro",
  5301. height: math.unit(7500, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Gigamacro",
  5306. height: math.unit(570000, "miles")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(210, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/rain-fallen/front.svg"
  5319. }
  5320. },
  5321. side: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(210, "lbs"),
  5324. name: "Side",
  5325. image: {
  5326. source: "./media/characters/rain-fallen/side.svg"
  5327. }
  5328. },
  5329. back: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(210, "lbs"),
  5332. name: "Back",
  5333. image: {
  5334. source: "./media/characters/rain-fallen/back.svg"
  5335. }
  5336. },
  5337. feral: {
  5338. height: math.unit(9, "feet"),
  5339. weight: math.unit(700, "lbs"),
  5340. name: "Feral",
  5341. image: {
  5342. source: "./media/characters/rain-fallen/feral.svg"
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Meddling with Mortals",
  5349. height: math.unit(8 + 8/12, "feet")
  5350. },
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(5, "meter")
  5354. },
  5355. {
  5356. name: "Macro",
  5357. height: math.unit(150, "meter"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Megamacro",
  5362. height: math.unit(278e6, "meter")
  5363. },
  5364. {
  5365. name: "Gigamacro",
  5366. height: math.unit(2e9, "meter")
  5367. },
  5368. {
  5369. name: "Teramacro",
  5370. height: math.unit(8e12, "meter")
  5371. },
  5372. {
  5373. name: "Devourer",
  5374. height: math.unit(14, "zettameters")
  5375. },
  5376. {
  5377. name: "Scarlet King",
  5378. height: math.unit(18, "yottameters")
  5379. },
  5380. {
  5381. name: "Void",
  5382. height: math.unit(1e88, "yottameters")
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5388. {
  5389. standing: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(180, "lbs"),
  5392. name: "Standing",
  5393. image: {
  5394. source: "./media/characters/zaakira/standing.svg",
  5395. extra: 1599/1504,
  5396. bottom: 39/1638
  5397. }
  5398. },
  5399. laying: {
  5400. height: math.unit(3.3, "feet"),
  5401. weight: math.unit(180, "lbs"),
  5402. name: "Laying",
  5403. image: {
  5404. source: "./media/characters/zaakira/laying.svg"
  5405. }
  5406. },
  5407. },
  5408. [
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(12, "feet")
  5412. },
  5413. {
  5414. name: "Macro",
  5415. height: math.unit(279, "feet"),
  5416. default: true
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5422. {
  5423. femSfw: {
  5424. height: math.unit(8, "feet"),
  5425. weight: math.unit(350, "lb"),
  5426. name: "Fem",
  5427. image: {
  5428. source: "./media/characters/sigvald/fem-sfw.svg",
  5429. extra: 182 / 164,
  5430. bottom: 8.7 / 190.5
  5431. }
  5432. },
  5433. femNsfw: {
  5434. height: math.unit(8, "feet"),
  5435. weight: math.unit(350, "lb"),
  5436. name: "Fem (NSFW)",
  5437. image: {
  5438. source: "./media/characters/sigvald/fem-nsfw.svg",
  5439. extra: 182 / 164,
  5440. bottom: 8.7 / 190.5
  5441. }
  5442. },
  5443. maleNsfw: {
  5444. height: math.unit(8, "feet"),
  5445. weight: math.unit(350, "lb"),
  5446. name: "Male (NSFW)",
  5447. image: {
  5448. source: "./media/characters/sigvald/male-nsfw.svg",
  5449. extra: 182 / 164,
  5450. bottom: 8.7 / 190.5
  5451. }
  5452. },
  5453. hermNsfw: {
  5454. height: math.unit(8, "feet"),
  5455. weight: math.unit(350, "lb"),
  5456. name: "Herm (NSFW)",
  5457. image: {
  5458. source: "./media/characters/sigvald/herm-nsfw.svg",
  5459. extra: 182 / 164,
  5460. bottom: 8.7 / 190.5
  5461. }
  5462. },
  5463. dick: {
  5464. height: math.unit(2.36, "feet"),
  5465. name: "Dick",
  5466. image: {
  5467. source: "./media/characters/sigvald/dick.svg"
  5468. }
  5469. },
  5470. eye: {
  5471. height: math.unit(0.31, "feet"),
  5472. name: "Eye",
  5473. image: {
  5474. source: "./media/characters/sigvald/eye.svg"
  5475. }
  5476. },
  5477. mouth: {
  5478. height: math.unit(0.92, "feet"),
  5479. name: "Mouth",
  5480. image: {
  5481. source: "./media/characters/sigvald/mouth.svg"
  5482. }
  5483. },
  5484. paws: {
  5485. height: math.unit(2.2, "feet"),
  5486. name: "Paws",
  5487. image: {
  5488. source: "./media/characters/sigvald/paws.svg"
  5489. }
  5490. }
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(8, "feet")
  5496. },
  5497. {
  5498. name: "Large",
  5499. height: math.unit(12, "feet")
  5500. },
  5501. {
  5502. name: "Larger",
  5503. height: math.unit(20, "feet")
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(150, "feet")
  5508. },
  5509. {
  5510. name: "Macro+",
  5511. height: math.unit(200, "feet"),
  5512. default: true
  5513. },
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5518. {
  5519. side: {
  5520. height: math.unit(12, "feet"),
  5521. weight: math.unit(2000, "kg"),
  5522. name: "Side",
  5523. image: {
  5524. source: "./media/characters/scott/side.svg",
  5525. extra: 754 / 724,
  5526. bottom: 0.069
  5527. }
  5528. },
  5529. upright: {
  5530. height: math.unit(12, "feet"),
  5531. weight: math.unit(2000, "kg"),
  5532. name: "Upright",
  5533. image: {
  5534. source: "./media/characters/scott/upright.svg",
  5535. extra: 3881 / 3722,
  5536. bottom: 0.05
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(12, "feet"),
  5544. default: true
  5545. },
  5546. ]
  5547. ))
  5548. characterMakers.push(() => makeCharacter(
  5549. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5550. {
  5551. side: {
  5552. height: math.unit(8, "meters"),
  5553. weight: math.unit(84755, "lbs"),
  5554. name: "Side",
  5555. image: {
  5556. source: "./media/characters/tobias/side.svg",
  5557. extra: 1474 / 1096,
  5558. bottom: 38.9 / 1513.1235
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "Normal",
  5565. height: math.unit(8, "meters"),
  5566. default: true
  5567. },
  5568. ]
  5569. ))
  5570. characterMakers.push(() => makeCharacter(
  5571. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5572. {
  5573. front: {
  5574. height: math.unit(5.5, "feet"),
  5575. weight: math.unit(400, "lbs"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/kieran/front.svg",
  5579. extra: 2694 / 2364,
  5580. bottom: 217 / 2908
  5581. }
  5582. },
  5583. side: {
  5584. height: math.unit(5.5, "feet"),
  5585. weight: math.unit(400, "lbs"),
  5586. name: "Side",
  5587. image: {
  5588. source: "./media/characters/kieran/side.svg",
  5589. extra: 875 / 777,
  5590. bottom: 84.6 / 959
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "Normal",
  5597. height: math.unit(5.5, "feet"),
  5598. default: true
  5599. },
  5600. ]
  5601. ))
  5602. characterMakers.push(() => makeCharacter(
  5603. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5604. {
  5605. side: {
  5606. height: math.unit(2, "meters"),
  5607. weight: math.unit(70, "kg"),
  5608. name: "Side",
  5609. image: {
  5610. source: "./media/characters/sanya/side.svg",
  5611. bottom: 0.02,
  5612. extra: 1.02
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Small",
  5619. height: math.unit(2, "meters")
  5620. },
  5621. {
  5622. name: "Normal",
  5623. height: math.unit(3, "meters")
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(16, "meters"),
  5628. default: true
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(2, "meters"),
  5637. weight: math.unit(120, "kg"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/miranda/front.svg",
  5641. extra: 195 / 185,
  5642. bottom: 10.9 / 206.5
  5643. }
  5644. },
  5645. back: {
  5646. height: math.unit(2, "meters"),
  5647. weight: math.unit(120, "kg"),
  5648. name: "Back",
  5649. image: {
  5650. source: "./media/characters/miranda/back.svg",
  5651. extra: 201 / 193,
  5652. bottom: 2.3 / 203.7
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(10, "feet"),
  5660. default: true
  5661. }
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "James", species: ["deer"], tags: ["anthro"] },
  5666. {
  5667. side: {
  5668. height: math.unit(2, "meters"),
  5669. weight: math.unit(100, "kg"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/james/front.svg",
  5673. extra: 10 / 8.5
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(8.5, "feet"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5687. {
  5688. side: {
  5689. height: math.unit(9.5, "feet"),
  5690. weight: math.unit(2500, "lbs"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/heather/side.svg"
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(9.5, "feet"),
  5701. default: true
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5707. {
  5708. side: {
  5709. height: math.unit(6.5, "feet"),
  5710. weight: math.unit(400, "lbs"),
  5711. name: "Side",
  5712. image: {
  5713. source: "./media/characters/lukas/side.svg",
  5714. extra: 7.25 / 6.5
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(6.5, "feet"),
  5722. default: true
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5728. {
  5729. side: {
  5730. height: math.unit(5, "feet"),
  5731. weight: math.unit(3000, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/louise/side.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5748. {
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(150, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/ramona/side.svg",
  5755. extra: 871/854,
  5756. bottom: 41/912
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(6 + 4/12, "feet")
  5764. },
  5765. {
  5766. name: "Minimacro",
  5767. height: math.unit(5.3, "meters"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(20, "stories")
  5773. },
  5774. {
  5775. name: "Macro+",
  5776. height: math.unit(50, "stories")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5782. {
  5783. standing: {
  5784. height: math.unit(5.75, "feet"),
  5785. weight: math.unit(160, "lbs"),
  5786. name: "Standing",
  5787. image: {
  5788. source: "./media/characters/deerpuff/standing.svg",
  5789. extra: 682 / 624
  5790. }
  5791. },
  5792. sitting: {
  5793. height: math.unit(5.75 / 1.79, "feet"),
  5794. weight: math.unit(160, "lbs"),
  5795. name: "Sitting",
  5796. image: {
  5797. source: "./media/characters/deerpuff/sitting.svg",
  5798. bottom: 44 / 400,
  5799. extra: 1
  5800. }
  5801. },
  5802. taurLaying: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(400, "lbs"),
  5805. name: "Taur (Laying)",
  5806. image: {
  5807. source: "./media/characters/deerpuff/taur-laying.svg"
  5808. }
  5809. },
  5810. },
  5811. [
  5812. {
  5813. name: "Puffball",
  5814. height: math.unit(6, "inches")
  5815. },
  5816. {
  5817. name: "Normalpuff",
  5818. height: math.unit(5.75, "feet")
  5819. },
  5820. {
  5821. name: "Macropuff",
  5822. height: math.unit(1500, "feet"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Megapuff",
  5827. height: math.unit(500, "miles")
  5828. },
  5829. {
  5830. name: "Gigapuff",
  5831. height: math.unit(250000, "miles")
  5832. },
  5833. {
  5834. name: "Omegapuff",
  5835. height: math.unit(1000, "lightyears")
  5836. },
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5841. {
  5842. stomping: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(170, "lbs"),
  5845. name: "Stomping",
  5846. image: {
  5847. source: "./media/characters/vivian/stomping.svg"
  5848. }
  5849. },
  5850. sitting: {
  5851. height: math.unit(6 / 1.75, "feet"),
  5852. weight: math.unit(170, "lbs"),
  5853. name: "Sitting",
  5854. image: {
  5855. source: "./media/characters/vivian/sitting.svg",
  5856. bottom: 1 / 6.4,
  5857. extra: 1,
  5858. }
  5859. },
  5860. },
  5861. [
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(7, "feet"),
  5865. default: true
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(10, "stories")
  5870. },
  5871. {
  5872. name: "Macro+",
  5873. height: math.unit(30, "stories")
  5874. },
  5875. {
  5876. name: "Megamacro",
  5877. height: math.unit(10, "miles")
  5878. },
  5879. {
  5880. name: "Megamacro+",
  5881. height: math.unit(2750000, "meters")
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(160, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/prince/front.svg",
  5894. extra: 3400 / 3000
  5895. }
  5896. },
  5897. jumping: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(160, "lbs"),
  5900. name: "Jumping",
  5901. image: {
  5902. source: "./media/characters/prince/jump.svg",
  5903. extra: 2555 / 2134
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(7.75, "feet"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Not cute",
  5915. height: math.unit(17, "feet")
  5916. },
  5917. {
  5918. name: "I said NOT",
  5919. height: math.unit(91, "feet")
  5920. },
  5921. {
  5922. name: "Please stop",
  5923. height: math.unit(560, "feet")
  5924. },
  5925. {
  5926. name: "What have you done",
  5927. height: math.unit(2200, "feet")
  5928. },
  5929. {
  5930. name: "Deer God",
  5931. height: math.unit(3.6, "miles")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5937. {
  5938. standing: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(300, "lbs"),
  5941. name: "Standing",
  5942. image: {
  5943. source: "./media/characters/psymon/standing.svg",
  5944. extra: 1888 / 1810,
  5945. bottom: 0.05
  5946. }
  5947. },
  5948. slithering: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(300, "lbs"),
  5951. name: "Slithering",
  5952. image: {
  5953. source: "./media/characters/psymon/slithering.svg",
  5954. extra: 1330 / 1224
  5955. }
  5956. },
  5957. slitheringAlt: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(300, "lbs"),
  5960. name: "Slithering (Alt)",
  5961. image: {
  5962. source: "./media/characters/psymon/slithering-alt.svg",
  5963. extra: 1330 / 1224
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(11.25, "feet"),
  5971. default: true
  5972. },
  5973. {
  5974. name: "Large",
  5975. height: math.unit(27, "feet")
  5976. },
  5977. {
  5978. name: "Giant",
  5979. height: math.unit(87, "feet")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(365, "feet")
  5984. },
  5985. {
  5986. name: "Megamacro",
  5987. height: math.unit(3, "miles")
  5988. },
  5989. {
  5990. name: "World Serpent",
  5991. height: math.unit(8000, "miles")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(180, "lbs"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/daimos/front.svg",
  6004. extra: 4160 / 3897,
  6005. bottom: 0.021
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(8, "feet"),
  6013. default: true
  6014. },
  6015. {
  6016. name: "Big Dog",
  6017. height: math.unit(22, "feet")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(127, "feet")
  6022. },
  6023. {
  6024. name: "Megamacro",
  6025. height: math.unit(3600, "feet")
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6031. {
  6032. side: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(180, "lbs"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/blake/side.svg",
  6038. extra: 1212 / 1120,
  6039. bottom: 0.05
  6040. }
  6041. },
  6042. crouched: {
  6043. height: math.unit(6 * 0.57, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Crouched",
  6046. image: {
  6047. source: "./media/characters/blake/crouched.svg",
  6048. extra: 840 / 587,
  6049. bottom: 0.04
  6050. }
  6051. },
  6052. bent: {
  6053. height: math.unit(6 * 0.75, "feet"),
  6054. weight: math.unit(180, "lbs"),
  6055. name: "Bent",
  6056. image: {
  6057. source: "./media/characters/blake/bent.svg",
  6058. extra: 592 / 544,
  6059. bottom: 0.035
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(8 + 1 / 6, "feet"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Big Backside",
  6071. height: math.unit(37, "feet")
  6072. },
  6073. {
  6074. name: "Subway Shredder",
  6075. height: math.unit(72, "feet")
  6076. },
  6077. {
  6078. name: "City Carver",
  6079. height: math.unit(1675, "feet")
  6080. },
  6081. {
  6082. name: "Tectonic Tweaker",
  6083. height: math.unit(2300, "miles")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6089. {
  6090. front: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(180, "lbs"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/guisetto/front.svg",
  6096. extra: 856 / 817,
  6097. bottom: 0.06
  6098. }
  6099. },
  6100. airborne: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(180, "lbs"),
  6103. name: "Airborne",
  6104. image: {
  6105. source: "./media/characters/guisetto/airborne.svg",
  6106. extra: 584 / 525
  6107. }
  6108. },
  6109. },
  6110. [
  6111. {
  6112. name: "Normal",
  6113. height: math.unit(10 + 11 / 12, "feet"),
  6114. default: true
  6115. },
  6116. {
  6117. name: "Large",
  6118. height: math.unit(35, "feet")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(475, "feet")
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(6, "feet"),
  6131. weight: math.unit(180, "lbs"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/luxor/front.svg",
  6135. extra: 2940 / 2152
  6136. }
  6137. },
  6138. back: {
  6139. height: math.unit(6, "feet"),
  6140. weight: math.unit(180, "lbs"),
  6141. name: "Back",
  6142. image: {
  6143. source: "./media/characters/luxor/back.svg",
  6144. extra: 1083 / 960
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(5 + 5 / 6, "feet"),
  6152. default: true
  6153. },
  6154. {
  6155. name: "Lamp",
  6156. height: math.unit(50, "feet")
  6157. },
  6158. {
  6159. name: "Lämp",
  6160. height: math.unit(300, "feet")
  6161. },
  6162. {
  6163. name: "The sun is a lamp",
  6164. height: math.unit(250000, "miles")
  6165. },
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6170. {
  6171. front: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(50, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/huoyan/front.svg"
  6177. }
  6178. },
  6179. side: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(180, "lbs"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/huoyan/side.svg"
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Chef",
  6191. height: math.unit(9, "feet")
  6192. },
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(65, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Macro",
  6200. height: math.unit(780, "feet")
  6201. },
  6202. {
  6203. name: "Flaming Mountain",
  6204. height: math.unit(4.8, "miles")
  6205. },
  6206. {
  6207. name: "Celestial",
  6208. height: math.unit(765000, "miles")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(5 + 3 / 4, "feet"),
  6217. weight: math.unit(120, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/tails/front.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(5 + 3 / 4, "feet"),
  6228. default: true
  6229. }
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(4, "feet"),
  6237. weight: math.unit(50, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/rainy/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(800, "feet"),
  6248. default: true
  6249. }
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(150, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/rainier/front.svg"
  6261. }
  6262. }
  6263. },
  6264. [
  6265. {
  6266. name: "Micro",
  6267. height: math.unit(2, "mm"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(8 + 4/12, "feet"),
  6277. weight: math.unit(450, "kilograms"),
  6278. volume: math.unit(5, "cups"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/andy-renard/front.svg",
  6282. extra: 1839/1726,
  6283. bottom: 134/1973
  6284. }
  6285. },
  6286. back: {
  6287. height: math.unit(8 + 4/12, "feet"),
  6288. weight: math.unit(450, "kilograms"),
  6289. volume: math.unit(5, "cups"),
  6290. name: "Back",
  6291. image: {
  6292. source: "./media/characters/andy-renard/back.svg",
  6293. extra: 1838/1710,
  6294. bottom: 105/1943
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Tall",
  6301. height: math.unit(8 + 4/12, "feet")
  6302. },
  6303. {
  6304. name: "Mini Macro",
  6305. height: math.unit(15, "feet"),
  6306. default: true
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(100, "feet")
  6311. },
  6312. {
  6313. name: "Mega Macro",
  6314. height: math.unit(1000, "feet")
  6315. },
  6316. {
  6317. name: "Giga Macro",
  6318. height: math.unit(10, "miles")
  6319. },
  6320. {
  6321. name: "God Macro",
  6322. height: math.unit(1, "multiverse")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6328. {
  6329. front: {
  6330. height: math.unit(6, "feet"),
  6331. weight: math.unit(210, "lbs"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/cimmaron/front-sfw.svg",
  6335. extra: 701 / 676,
  6336. bottom: 0.046
  6337. }
  6338. },
  6339. back: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(210, "lbs"),
  6342. name: "Back",
  6343. image: {
  6344. source: "./media/characters/cimmaron/back-sfw.svg",
  6345. extra: 701 / 676,
  6346. bottom: 0.046
  6347. }
  6348. },
  6349. frontNsfw: {
  6350. height: math.unit(6, "feet"),
  6351. weight: math.unit(210, "lbs"),
  6352. name: "Front (NSFW)",
  6353. image: {
  6354. source: "./media/characters/cimmaron/front-nsfw.svg",
  6355. extra: 701 / 676,
  6356. bottom: 0.046
  6357. }
  6358. },
  6359. backNsfw: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(210, "lbs"),
  6362. name: "Back (NSFW)",
  6363. image: {
  6364. source: "./media/characters/cimmaron/back-nsfw.svg",
  6365. extra: 701 / 676,
  6366. bottom: 0.046
  6367. }
  6368. },
  6369. dick: {
  6370. height: math.unit(1.714, "feet"),
  6371. name: "Dick",
  6372. image: {
  6373. source: "./media/characters/cimmaron/dick.svg"
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(6, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Macro Mayor",
  6385. height: math.unit(350, "meters")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(200, "lbs"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/akari/front.svg",
  6398. extra: 962 / 901,
  6399. bottom: 0.04
  6400. }
  6401. }
  6402. },
  6403. [
  6404. {
  6405. name: "Micro",
  6406. height: math.unit(5, "inches"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(7, "feet")
  6412. },
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6417. {
  6418. front: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(140, "lbs"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/cynosura/front.svg",
  6424. extra: 896 / 847
  6425. }
  6426. },
  6427. back: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(140, "lbs"),
  6430. name: "Back",
  6431. image: {
  6432. source: "./media/characters/cynosura/back.svg",
  6433. extra: 1365 / 1250
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(4, "inches")
  6441. },
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(5.75, "feet"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Tall",
  6449. height: math.unit(10, "feet")
  6450. },
  6451. {
  6452. name: "Big",
  6453. height: math.unit(20, "feet")
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(50, "feet")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(13 + 2/12, "feet"),
  6466. weight: math.unit(800, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/gin/front.svg",
  6470. extra: 1312/1191,
  6471. bottom: 45/1357
  6472. }
  6473. },
  6474. mouth: {
  6475. height: math.unit(2.39 * 1.8, "feet"),
  6476. name: "Mouth",
  6477. image: {
  6478. source: "./media/characters/gin/mouth.svg"
  6479. }
  6480. },
  6481. hand: {
  6482. height: math.unit(1.57 * 2.19, "feet"),
  6483. name: "Hand",
  6484. image: {
  6485. source: "./media/characters/gin/hand.svg"
  6486. }
  6487. },
  6488. foot: {
  6489. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6490. name: "Foot",
  6491. image: {
  6492. source: "./media/characters/gin/foot.svg"
  6493. }
  6494. },
  6495. sole: {
  6496. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6497. name: "Sole",
  6498. image: {
  6499. source: "./media/characters/gin/sole.svg"
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Very Small",
  6506. height: math.unit(13 + 2 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Micro",
  6510. height: math.unit(600, "miles")
  6511. },
  6512. {
  6513. name: "Regular",
  6514. height: math.unit(20, "earths"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(2.2, "solarradii")
  6520. },
  6521. {
  6522. name: "Teramacro",
  6523. height: math.unit(1.2, "galaxies")
  6524. },
  6525. {
  6526. name: "Omegamacro",
  6527. height: math.unit(200, "universes")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6533. {
  6534. front: {
  6535. height: math.unit(6 + 1 / 6, "feet"),
  6536. weight: math.unit(178, "lbs"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/guy/front.svg"
  6540. }
  6541. }
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(6 + 1 / 6, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Large",
  6551. height: math.unit(25 + 7 / 12, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(60 + 9 / 12, "feet")
  6556. },
  6557. {
  6558. name: "Macro+",
  6559. height: math.unit(246, "feet")
  6560. },
  6561. {
  6562. name: "Macro++",
  6563. height: math.unit(878, "feet")
  6564. }
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(9, "feet"),
  6572. weight: math.unit(800, "lbs"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/tiberius/front.svg",
  6576. extra: 2295 / 2071
  6577. }
  6578. },
  6579. back: {
  6580. height: math.unit(9, "feet"),
  6581. weight: math.unit(800, "lbs"),
  6582. name: "Back",
  6583. image: {
  6584. source: "./media/characters/tiberius/back.svg",
  6585. extra: 2373 / 2160
  6586. }
  6587. },
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(9, "feet"),
  6593. default: true
  6594. }
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(600, "lbs"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/surgo/front.svg",
  6606. extra: 3591 / 2227
  6607. }
  6608. },
  6609. back: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(600, "lbs"),
  6612. name: "Back",
  6613. image: {
  6614. source: "./media/characters/surgo/back.svg",
  6615. extra: 3557 / 2228
  6616. }
  6617. },
  6618. laying: {
  6619. height: math.unit(6 * 0.85, "feet"),
  6620. weight: math.unit(600, "lbs"),
  6621. name: "Laying",
  6622. image: {
  6623. source: "./media/characters/surgo/laying.svg"
  6624. }
  6625. },
  6626. },
  6627. [
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(6, "feet"),
  6631. default: true
  6632. }
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6637. {
  6638. side: {
  6639. height: math.unit(6, "feet"),
  6640. weight: math.unit(150, "lbs"),
  6641. name: "Side",
  6642. image: {
  6643. source: "./media/characters/cibus/side.svg",
  6644. extra: 800 / 400
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(6, "feet"),
  6652. default: true
  6653. }
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(240, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/nibbles/front.svg"
  6665. }
  6666. },
  6667. side: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(240, "lbs"),
  6670. name: "Side",
  6671. image: {
  6672. source: "./media/characters/nibbles/side.svg"
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(9, "feet"),
  6680. default: true
  6681. }
  6682. ]
  6683. ))
  6684. characterMakers.push(() => makeCharacter(
  6685. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6686. {
  6687. side: {
  6688. height: math.unit(5 + 1 / 6, "feet"),
  6689. weight: math.unit(130, "lbs"),
  6690. name: "Side",
  6691. image: {
  6692. source: "./media/characters/rikky/side.svg",
  6693. extra: 851 / 801
  6694. }
  6695. },
  6696. },
  6697. [
  6698. {
  6699. name: "Normal",
  6700. height: math.unit(5 + 1 / 6, "feet")
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(152, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(7, "miles")
  6710. }
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6715. {
  6716. side: {
  6717. height: math.unit(370, "cm"),
  6718. weight: math.unit(350, "lbs"),
  6719. name: "Side",
  6720. image: {
  6721. source: "./media/characters/malfressa/side.svg"
  6722. }
  6723. },
  6724. walking: {
  6725. height: math.unit(370, "cm"),
  6726. weight: math.unit(350, "lbs"),
  6727. name: "Walking",
  6728. image: {
  6729. source: "./media/characters/malfressa/walking.svg"
  6730. }
  6731. },
  6732. feral: {
  6733. height: math.unit(2500, "cm"),
  6734. weight: math.unit(100000, "lbs"),
  6735. name: "Feral",
  6736. image: {
  6737. source: "./media/characters/malfressa/feral.svg",
  6738. extra: 2108 / 837,
  6739. bottom: 0.02
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(370, "cm")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(300, "meters"),
  6751. default: true
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(60, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/jaro/front.svg",
  6764. extra: 845/817,
  6765. bottom: 45/890
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(60, "kg"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/jaro/back.svg",
  6774. extra: 847/817,
  6775. bottom: 34/881
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Micro",
  6782. height: math.unit(7, "inches")
  6783. },
  6784. {
  6785. name: "Normal",
  6786. height: math.unit(5.5, "feet"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Minimacro",
  6791. height: math.unit(20, "feet")
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(200, "meters")
  6796. }
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(195, "lb"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/rogue/front.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(90, "feet"),
  6815. default: true
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6821. {
  6822. standing: {
  6823. height: math.unit(5 + 8 / 12, "feet"),
  6824. weight: math.unit(140, "lb"),
  6825. name: "Standing",
  6826. image: {
  6827. source: "./media/characters/piper/standing.svg",
  6828. extra: 1440/1284,
  6829. bottom: 66/1506
  6830. }
  6831. },
  6832. running: {
  6833. height: math.unit(5 + 8 / 12, "feet"),
  6834. weight: math.unit(140, "lb"),
  6835. name: "Running",
  6836. image: {
  6837. source: "./media/characters/piper/running.svg",
  6838. extra: 3948/3655,
  6839. bottom: 0/3948
  6840. }
  6841. },
  6842. sole: {
  6843. height: math.unit(0.81, "feet"),
  6844. weight: math.unit(2, "kg"),
  6845. name: "Sole",
  6846. image: {
  6847. source: "./media/characters/piper/sole.svg"
  6848. }
  6849. },
  6850. nipple: {
  6851. height: math.unit(0.25, "feet"),
  6852. weight: math.unit(1.5, "lb"),
  6853. name: "Nipple",
  6854. image: {
  6855. source: "./media/characters/piper/nipple.svg"
  6856. }
  6857. },
  6858. head: {
  6859. height: math.unit(1.1, "feet"),
  6860. name: "Head",
  6861. image: {
  6862. source: "./media/characters/piper/head.svg"
  6863. }
  6864. },
  6865. },
  6866. [
  6867. {
  6868. name: "Micro",
  6869. height: math.unit(2, "inches")
  6870. },
  6871. {
  6872. name: "Normal",
  6873. height: math.unit(5 + 8 / 12, "feet")
  6874. },
  6875. {
  6876. name: "Macro",
  6877. height: math.unit(250, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Megamacro",
  6882. height: math.unit(7, "miles")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(220, "lb"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/gemini/front.svg"
  6895. }
  6896. },
  6897. back: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(220, "lb"),
  6900. name: "Back",
  6901. image: {
  6902. source: "./media/characters/gemini/back.svg"
  6903. }
  6904. },
  6905. kneeling: {
  6906. height: math.unit(6 / 1.5, "feet"),
  6907. weight: math.unit(220, "lb"),
  6908. name: "Kneeling",
  6909. image: {
  6910. source: "./media/characters/gemini/kneeling.svg",
  6911. bottom: 0.02
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(300, "meters"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Megamacro",
  6923. height: math.unit(6900, "meters")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6929. {
  6930. anthro: {
  6931. height: math.unit(2.35, "meters"),
  6932. weight: math.unit(73, "kg"),
  6933. name: "Anthro",
  6934. image: {
  6935. source: "./media/characters/alicia/anthro.svg",
  6936. extra: 2571 / 2385,
  6937. bottom: 75 / 2648
  6938. }
  6939. },
  6940. paw: {
  6941. height: math.unit(1.32, "feet"),
  6942. name: "Paw",
  6943. image: {
  6944. source: "./media/characters/alicia/paw.svg"
  6945. }
  6946. },
  6947. feral: {
  6948. height: math.unit(1.69, "meters"),
  6949. weight: math.unit(73, "kg"),
  6950. name: "Feral",
  6951. image: {
  6952. source: "./media/characters/alicia/feral.svg",
  6953. extra: 2123 / 1715,
  6954. bottom: 222 / 2349
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(2.35, "meters")
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(60, "meters"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Megamacro",
  6970. height: math.unit(10000, "kilometers")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(7, "feet"),
  6979. weight: math.unit(250, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/archy/front.svg"
  6983. }
  6984. }
  6985. },
  6986. [
  6987. {
  6988. name: "Micro",
  6989. height: math.unit(1, "inch")
  6990. },
  6991. {
  6992. name: "Shorty",
  6993. height: math.unit(5, "feet")
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(7, "feet")
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(600, "meters"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(1, "mile")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(1.65, "meters"),
  7015. weight: math.unit(74, "kg"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/berri/front.svg",
  7019. extra: 857 / 837,
  7020. bottom: 18 / 877
  7021. }
  7022. },
  7023. bum: {
  7024. height: math.unit(1.46, "feet"),
  7025. name: "Bum",
  7026. image: {
  7027. source: "./media/characters/berri/bum.svg"
  7028. }
  7029. },
  7030. mouth: {
  7031. height: math.unit(0.44, "feet"),
  7032. name: "Mouth",
  7033. image: {
  7034. source: "./media/characters/berri/mouth.svg"
  7035. }
  7036. },
  7037. paw: {
  7038. height: math.unit(0.826, "feet"),
  7039. name: "Paw",
  7040. image: {
  7041. source: "./media/characters/berri/paw.svg"
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(1.65, "meters")
  7049. },
  7050. {
  7051. name: "Macro",
  7052. height: math.unit(60, "m"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Megamacro",
  7057. height: math.unit(9.213, "km")
  7058. },
  7059. {
  7060. name: "Planet Eater",
  7061. height: math.unit(489, "megameters")
  7062. },
  7063. {
  7064. name: "Teramacro",
  7065. height: math.unit(2471635000000, "meters")
  7066. },
  7067. {
  7068. name: "Examacro",
  7069. height: math.unit(8.0624e+26, "meters")
  7070. }
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(1.72, "meters"),
  7078. weight: math.unit(68, "kg"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/lexi/front.svg"
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Very Smol",
  7088. height: math.unit(10, "mm")
  7089. },
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(6.8, "cm"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(1.72, "m")
  7098. }
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(1.69, "meters"),
  7106. weight: math.unit(68, "kg"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/martin/front.svg",
  7110. extra: 596 / 581
  7111. }
  7112. }
  7113. },
  7114. [
  7115. {
  7116. name: "Micro",
  7117. height: math.unit(6.85, "cm"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(1.69, "m")
  7123. }
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7128. {
  7129. front: {
  7130. height: math.unit(1.69, "meters"),
  7131. weight: math.unit(68, "kg"),
  7132. name: "Front",
  7133. image: {
  7134. source: "./media/characters/juno/front.svg"
  7135. }
  7136. }
  7137. },
  7138. [
  7139. {
  7140. name: "Micro",
  7141. height: math.unit(7, "cm")
  7142. },
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(1.89, "m")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(353, "meters"),
  7150. default: true
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(1.93, "meters"),
  7159. weight: math.unit(83, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/samantha/front.svg"
  7163. }
  7164. },
  7165. frontClothed: {
  7166. height: math.unit(1.93, "meters"),
  7167. weight: math.unit(83, "kg"),
  7168. name: "Front (Clothed)",
  7169. image: {
  7170. source: "./media/characters/samantha/front-clothed.svg"
  7171. }
  7172. },
  7173. back: {
  7174. height: math.unit(1.93, "meters"),
  7175. weight: math.unit(83, "kg"),
  7176. name: "Back",
  7177. image: {
  7178. source: "./media/characters/samantha/back.svg"
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(1.93, "m")
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(74, "meters"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Macro+",
  7194. height: math.unit(223, "meters"),
  7195. },
  7196. {
  7197. name: "Megamacro",
  7198. height: math.unit(8381, "meters"),
  7199. },
  7200. {
  7201. name: "Megamacro+",
  7202. height: math.unit(12000, "kilometers")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(1.92, "meters"),
  7211. weight: math.unit(80, "kg"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/dr-clay/front.svg"
  7215. }
  7216. },
  7217. frontClothed: {
  7218. height: math.unit(1.92, "meters"),
  7219. weight: math.unit(80, "kg"),
  7220. name: "Front (Clothed)",
  7221. image: {
  7222. source: "./media/characters/dr-clay/front-clothed.svg"
  7223. }
  7224. }
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(1.92, "m")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(214, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(12.237, "meters"),
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(557, "megameters"),
  7243. },
  7244. {
  7245. name: "Unimaginable",
  7246. height: math.unit(120e9, "lightyears")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(2, "meters"),
  7255. weight: math.unit(80, "kg"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Teramacro",
  7265. height: math.unit(500000, "lightyears"),
  7266. default: true
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7272. {
  7273. crux: {
  7274. height: math.unit(2, "meters"),
  7275. weight: math.unit(150, "kg"),
  7276. name: "Crux",
  7277. image: {
  7278. source: "./media/characters/vemus/crux.svg",
  7279. extra: 1074/936,
  7280. bottom: 23/1097
  7281. }
  7282. },
  7283. skunkTanuki: {
  7284. height: math.unit(2, "meters"),
  7285. weight: math.unit(150, "kg"),
  7286. name: "Skunk-Tanuki",
  7287. image: {
  7288. source: "./media/characters/vemus/skunk-tanuki.svg",
  7289. extra: 926/893,
  7290. bottom: 20/946
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(4, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Big",
  7302. height: math.unit(8, "meters")
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(100, "meters")
  7307. },
  7308. {
  7309. name: "Macro+",
  7310. height: math.unit(1500, "meters")
  7311. },
  7312. {
  7313. name: "Stellar",
  7314. height: math.unit(14e8, "meters")
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(2, "meters"),
  7323. weight: math.unit(70, "kg"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/beherit/front.svg",
  7327. extra: 1234/1109,
  7328. bottom: 55/1289
  7329. }
  7330. }
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(6, "feet")
  7336. },
  7337. {
  7338. name: "Lorg",
  7339. height: math.unit(25, "feet"),
  7340. default: true
  7341. },
  7342. {
  7343. name: "Lorger",
  7344. height: math.unit(75, "feet")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(200, "meters")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(2, "meters"),
  7357. weight: math.unit(150, "kg"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/everett/front.svg",
  7361. extra: 1017/866,
  7362. bottom: 86/1103
  7363. }
  7364. },
  7365. paw: {
  7366. height: math.unit(2 / 3.6, "meters"),
  7367. name: "Paw",
  7368. image: {
  7369. source: "./media/characters/everett/paw.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(15, "feet"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Lorg",
  7381. height: math.unit(70, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Lorger",
  7386. height: math.unit(250, "feet")
  7387. },
  7388. {
  7389. name: "Macro",
  7390. height: math.unit(500, "meters")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(2, "meters"),
  7399. weight: math.unit(86, "kg"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/rose/front.svg",
  7403. extra: 1785/1636,
  7404. bottom: 30/1815
  7405. },
  7406. form: "liom",
  7407. default: true
  7408. },
  7409. frontSporty: {
  7410. height: math.unit(2, "meters"),
  7411. weight: math.unit(86, "kg"),
  7412. name: "Front (Sporty)",
  7413. image: {
  7414. source: "./media/characters/rose/front-sporty.svg",
  7415. extra: 350/335,
  7416. bottom: 10/360
  7417. },
  7418. form: "liom"
  7419. },
  7420. frontAlt: {
  7421. height: math.unit(1.6, "meters"),
  7422. weight: math.unit(86, "kg"),
  7423. name: "Front (Alt)",
  7424. image: {
  7425. source: "./media/characters/rose/front-alt.svg",
  7426. extra: 299/283,
  7427. bottom: 3/302
  7428. },
  7429. form: "liom"
  7430. },
  7431. plush: {
  7432. height: math.unit(2, "meters"),
  7433. weight: math.unit(86/3, "kg"),
  7434. name: "Plush",
  7435. image: {
  7436. source: "./media/characters/rose/plush.svg",
  7437. extra: 361/337,
  7438. bottom: 11/372
  7439. },
  7440. form: "plush",
  7441. default: true
  7442. },
  7443. faeStanding: {
  7444. height: math.unit(10, "cm"),
  7445. weight: math.unit(10, "grams"),
  7446. name: "Standing",
  7447. image: {
  7448. source: "./media/characters/rose/fae-standing.svg",
  7449. extra: 1189/1060,
  7450. bottom: 27/1216
  7451. },
  7452. form: "fae",
  7453. default: true
  7454. },
  7455. faeSitting: {
  7456. height: math.unit(5, "cm"),
  7457. weight: math.unit(10, "grams"),
  7458. name: "Sitting",
  7459. image: {
  7460. source: "./media/characters/rose/fae-sitting.svg",
  7461. extra: 737/577,
  7462. bottom: 356/1093
  7463. },
  7464. form: "fae"
  7465. },
  7466. faePaw: {
  7467. height: math.unit(1.35, "cm"),
  7468. name: "Paw",
  7469. image: {
  7470. source: "./media/characters/rose/fae-paw.svg"
  7471. },
  7472. form: "fae"
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "True Micro",
  7478. height: math.unit(9, "cm"),
  7479. form: "liom"
  7480. },
  7481. {
  7482. name: "Micro",
  7483. height: math.unit(16, "cm"),
  7484. form: "liom"
  7485. },
  7486. {
  7487. name: "Normal",
  7488. height: math.unit(1.85, "meters"),
  7489. default: true,
  7490. form: "liom"
  7491. },
  7492. {
  7493. name: "Mini-Macro",
  7494. height: math.unit(5, "meters"),
  7495. form: "liom"
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(15, "meters"),
  7500. form: "liom"
  7501. },
  7502. {
  7503. name: "True Macro",
  7504. height: math.unit(40, "meters"),
  7505. form: "liom"
  7506. },
  7507. {
  7508. name: "City Scale",
  7509. height: math.unit(1, "km"),
  7510. form: "liom"
  7511. },
  7512. {
  7513. name: "Plushie",
  7514. height: math.unit(9, "cm"),
  7515. form: "plush",
  7516. default: true
  7517. },
  7518. {
  7519. name: "Fae",
  7520. height: math.unit(10, "cm"),
  7521. form: "fae",
  7522. default: true
  7523. },
  7524. ],
  7525. {
  7526. "liom": {
  7527. name: "Liom"
  7528. },
  7529. "plush": {
  7530. name: "Plush"
  7531. },
  7532. "fae": {
  7533. name: "Fae Fox",
  7534. default: true
  7535. }
  7536. }
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(2, "meters"),
  7543. weight: math.unit(350, "lbs"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/regal/front.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(350, "lbs"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/regal/back.svg"
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(350, "feet"),
  7562. default: true
  7563. }
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(4 + 11 / 12, "feet"),
  7571. weight: math.unit(100, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/opal/front.svg"
  7575. }
  7576. },
  7577. frontAlt: {
  7578. height: math.unit(4 + 11 / 12, "feet"),
  7579. weight: math.unit(100, "lbs"),
  7580. name: "Front (Alt)",
  7581. image: {
  7582. source: "./media/characters/opal/front-alt.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Small",
  7589. height: math.unit(4 + 11 / 12, "feet")
  7590. },
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(20, "feet"),
  7594. default: true
  7595. },
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(120, "feet")
  7599. },
  7600. {
  7601. name: "Megamacro",
  7602. height: math.unit(80, "miles")
  7603. },
  7604. {
  7605. name: "True Size",
  7606. height: math.unit(100000, "lightyears")
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(200, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/vector-wuff/front.svg"
  7619. }
  7620. }
  7621. },
  7622. [
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(2.8, "meters")
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(450, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Megamacro",
  7634. height: math.unit(15, "kilometers")
  7635. }
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(6, "feet"),
  7643. weight: math.unit(256, "lbs"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/dannik/front.svg"
  7647. }
  7648. }
  7649. },
  7650. [
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(69.57, "meters"),
  7654. default: true
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(120, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/azura-saharah/front.svg"
  7667. }
  7668. },
  7669. back: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(120, "lbs"),
  7672. name: "Back",
  7673. image: {
  7674. source: "./media/characters/azura-saharah/back.svg"
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(100, "feet"),
  7682. default: true
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7688. {
  7689. side: {
  7690. height: math.unit(5 + 4 / 12, "feet"),
  7691. weight: math.unit(163, "lbs"),
  7692. name: "Side",
  7693. image: {
  7694. source: "./media/characters/kennedy/side.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Standard Doggo",
  7701. height: math.unit(5 + 4 / 12, "feet")
  7702. },
  7703. {
  7704. name: "Big Doggo",
  7705. height: math.unit(25 + 3 / 12, "feet"),
  7706. default: true
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(5 + 5/12, "feet"),
  7715. weight: math.unit(100, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/odios-de-lunar/front.svg",
  7719. extra: 1468/1323,
  7720. bottom: 22/1490
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Micro",
  7727. height: math.unit(3, "inches")
  7728. },
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(5.5, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(100, "feet")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7742. {
  7743. back: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(220, "lbs"),
  7746. name: "Back",
  7747. image: {
  7748. source: "./media/characters/mandake/back.svg"
  7749. }
  7750. }
  7751. },
  7752. [
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(7, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(78, "feet")
  7761. },
  7762. {
  7763. name: "Macro+",
  7764. height: math.unit(300, "meters")
  7765. },
  7766. {
  7767. name: "Macro++",
  7768. height: math.unit(2400, "feet")
  7769. },
  7770. {
  7771. name: "Megamacro",
  7772. height: math.unit(5167, "meters")
  7773. },
  7774. {
  7775. name: "Gigamacro",
  7776. height: math.unit(41769, "miles")
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(120, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/yozey/front.svg"
  7789. }
  7790. },
  7791. frontAlt: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(120, "lbs"),
  7794. name: "Front (Alt)",
  7795. image: {
  7796. source: "./media/characters/yozey/front-alt.svg"
  7797. }
  7798. },
  7799. side: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "lbs"),
  7802. name: "Side",
  7803. image: {
  7804. source: "./media/characters/yozey/side.svg"
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(3, "inches"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(6, "feet")
  7817. }
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(103, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/valeska-voss/front.svg"
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Mini-Sized Sub",
  7835. height: math.unit(3.1, "inches")
  7836. },
  7837. {
  7838. name: "Mid-Sized Sub",
  7839. height: math.unit(6.2, "inches")
  7840. },
  7841. {
  7842. name: "Full-Sized Sub",
  7843. height: math.unit(9.3, "inches")
  7844. },
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(5 + 2 / 12, "foot"),
  7848. default: true
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(160, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/gene-zeta/front.svg",
  7861. extra: 3006 / 2826,
  7862. bottom: 182 / 3188
  7863. }
  7864. }
  7865. },
  7866. [
  7867. {
  7868. name: "Micro",
  7869. height: math.unit(6, "inches")
  7870. },
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(5 + 11 / 12, "foot"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(140, "feet")
  7879. },
  7880. {
  7881. name: "Supercharged",
  7882. height: math.unit(2500, "feet")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(350, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/razinox/front.svg",
  7895. extra: 1686 / 1548,
  7896. bottom: 28.2 / 1868
  7897. }
  7898. },
  7899. back: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(350, "lbs"),
  7902. name: "Back",
  7903. image: {
  7904. source: "./media/characters/razinox/back.svg",
  7905. extra: 1660 / 1590,
  7906. bottom: 15 / 1665
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(10 + 8 / 12, "foot")
  7914. },
  7915. {
  7916. name: "Minimacro",
  7917. height: math.unit(15, "foot")
  7918. },
  7919. {
  7920. name: "Macro",
  7921. height: math.unit(60, "foot"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Megamacro",
  7926. height: math.unit(5, "miles")
  7927. },
  7928. {
  7929. name: "Gigamacro",
  7930. height: math.unit(6000, "miles")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(150, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/cobalt/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(8 + 1 / 12, "foot")
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(111, "foot"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Supracosmic",
  7958. height: math.unit(1e42, "feet")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(5, "inches"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/amanda/front.svg",
  7970. extra: 926/791,
  7971. bottom: 38/964
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(5, "inches"),
  7976. name: "Back",
  7977. image: {
  7978. source: "./media/characters/amanda/back.svg",
  7979. extra: 909/805,
  7980. bottom: 43/952
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(5, "inches"),
  7988. default: true
  7989. },
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(2.75, "meters"),
  7997. weight: math.unit(1200, "lb"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/teal/front.svg",
  8001. extra: 2463 / 2320,
  8002. bottom: 166 / 2629
  8003. }
  8004. },
  8005. back: {
  8006. height: math.unit(2.75, "meters"),
  8007. weight: math.unit(1200, "lb"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/teal/back.svg",
  8011. extra: 2580 / 2489,
  8012. bottom: 151 / 2731
  8013. }
  8014. },
  8015. sitting: {
  8016. height: math.unit(1.9, "meters"),
  8017. weight: math.unit(1200, "lb"),
  8018. name: "Sitting",
  8019. image: {
  8020. source: "./media/characters/teal/sitting.svg",
  8021. extra: 623 / 590,
  8022. bottom: 121 / 744
  8023. }
  8024. },
  8025. standing: {
  8026. height: math.unit(2.75, "meters"),
  8027. weight: math.unit(1200, "lb"),
  8028. name: "Standing",
  8029. image: {
  8030. source: "./media/characters/teal/standing.svg",
  8031. extra: 923 / 893,
  8032. bottom: 60 / 983
  8033. }
  8034. },
  8035. stretching: {
  8036. height: math.unit(3.65, "meters"),
  8037. weight: math.unit(1200, "lb"),
  8038. name: "Stretching",
  8039. image: {
  8040. source: "./media/characters/teal/stretching.svg",
  8041. extra: 1276 / 1244,
  8042. bottom: 0 / 1276
  8043. }
  8044. },
  8045. legged: {
  8046. height: math.unit(1.3, "meters"),
  8047. weight: math.unit(100, "lb"),
  8048. name: "Legged",
  8049. image: {
  8050. source: "./media/characters/teal/legged.svg",
  8051. extra: 462 / 437,
  8052. bottom: 24 / 486
  8053. }
  8054. },
  8055. naga: {
  8056. height: math.unit(5.4, "meters"),
  8057. weight: math.unit(4000, "lb"),
  8058. name: "Naga",
  8059. image: {
  8060. source: "./media/characters/teal/naga.svg",
  8061. extra: 1902 / 1858,
  8062. bottom: 0 / 1902
  8063. }
  8064. },
  8065. hand: {
  8066. height: math.unit(0.52, "meters"),
  8067. name: "Hand",
  8068. image: {
  8069. source: "./media/characters/teal/hand.svg"
  8070. }
  8071. },
  8072. maw: {
  8073. height: math.unit(0.43, "meters"),
  8074. name: "Maw",
  8075. image: {
  8076. source: "./media/characters/teal/maw.svg"
  8077. }
  8078. },
  8079. slit: {
  8080. height: math.unit(0.25, "meters"),
  8081. name: "Slit",
  8082. image: {
  8083. source: "./media/characters/teal/slit.svg"
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Normal",
  8090. height: math.unit(2.75, "meters"),
  8091. default: true
  8092. },
  8093. {
  8094. name: "Macro",
  8095. height: math.unit(300, "feet")
  8096. },
  8097. {
  8098. name: "Macro+",
  8099. height: math.unit(2000, "feet")
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8105. {
  8106. frontCat: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(180, "lbs"),
  8109. name: "Front (Cat)",
  8110. image: {
  8111. source: "./media/characters/ravin-amulet/front-cat.svg"
  8112. }
  8113. },
  8114. frontCatAlt: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(180, "lbs"),
  8117. name: "Front (Alt, Cat)",
  8118. image: {
  8119. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8120. }
  8121. },
  8122. frontWerewolf: {
  8123. height: math.unit(6 * 1.2, "feet"),
  8124. weight: math.unit(225, "lbs"),
  8125. name: "Front (Werewolf)",
  8126. image: {
  8127. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8128. }
  8129. },
  8130. backWerewolf: {
  8131. height: math.unit(6 * 1.2, "feet"),
  8132. weight: math.unit(225, "lbs"),
  8133. name: "Back (Werewolf)",
  8134. image: {
  8135. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Nano",
  8142. height: math.unit(1, "micrometer")
  8143. },
  8144. {
  8145. name: "Micro",
  8146. height: math.unit(1, "inch")
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(6, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(60, "feet")
  8156. }
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(165, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/fluoresce/front.svg"
  8168. }
  8169. }
  8170. },
  8171. [
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(6, "cm")
  8175. },
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(5 + 7 / 12, "feet"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(56, "feet")
  8184. },
  8185. {
  8186. name: "Megamacro",
  8187. height: math.unit(1.9, "miles")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(9 + 6 / 12, "feet"),
  8196. weight: math.unit(523, "lbs"),
  8197. name: "Side",
  8198. image: {
  8199. source: "./media/characters/aurora/side.svg"
  8200. }
  8201. }
  8202. },
  8203. [
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(9 + 6 / 12, "feet")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(96, "feet"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Macro+",
  8215. height: math.unit(243, "feet")
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(194, "cm"),
  8224. weight: math.unit(90, "kg"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/ranek/front.svg",
  8228. extra: 1862/1791,
  8229. bottom: 80/1942
  8230. }
  8231. },
  8232. back: {
  8233. height: math.unit(194, "cm"),
  8234. weight: math.unit(90, "kg"),
  8235. name: "Back",
  8236. image: {
  8237. source: "./media/characters/ranek/back.svg",
  8238. extra: 1853/1787,
  8239. bottom: 74/1927
  8240. }
  8241. },
  8242. feral: {
  8243. height: math.unit(30, "cm"),
  8244. weight: math.unit(1.6, "lbs"),
  8245. name: "Feral",
  8246. image: {
  8247. source: "./media/characters/ranek/feral.svg",
  8248. extra: 990/631,
  8249. bottom: 29/1019
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(194, "cm"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(100, "meters")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(5 + 6 / 12, "feet"),
  8270. weight: math.unit(153, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/andrew-cooper/front.svg"
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Nano",
  8280. height: math.unit(1, "mm")
  8281. },
  8282. {
  8283. name: "Micro",
  8284. height: math.unit(2, "inches")
  8285. },
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(5 + 6 / 12, "feet"),
  8289. default: true
  8290. }
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(180, "lbs"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/akane-sato/front.svg",
  8302. extra: 1219 / 1140
  8303. }
  8304. },
  8305. back: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(180, "lbs"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/akane-sato/back.svg",
  8311. extra: 1219 / 1170
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(2.5, "meters")
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(250, "meters"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Megamacro",
  8327. height: math.unit(25, "km")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(65, "kg"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/rook/front.svg",
  8340. extra: 960 / 950
  8341. }
  8342. }
  8343. },
  8344. [
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(8.8, "feet")
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(88, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Megamacro",
  8356. height: math.unit(8, "miles")
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(12 + 2 / 12, "feet"),
  8365. weight: math.unit(808, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/prodigy/front.svg"
  8369. }
  8370. }
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(12 + 2 / 12, "feet"),
  8376. default: true
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(143, "feet")
  8381. },
  8382. {
  8383. name: "Macro+",
  8384. height: math.unit(400, "feet")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(225, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/daniel/front.svg"
  8397. }
  8398. },
  8399. leaning: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(225, "lbs"),
  8402. name: "Leaning",
  8403. image: {
  8404. source: "./media/characters/daniel/leaning.svg"
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(1000, "feet"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(88, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/chiros/front.svg",
  8425. extra: 306 / 226
  8426. }
  8427. },
  8428. side: {
  8429. height: math.unit(6, "feet"),
  8430. weight: math.unit(88, "lbs"),
  8431. name: "Side",
  8432. image: {
  8433. source: "./media/characters/chiros/side.svg",
  8434. extra: 306 / 226
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(6, "cm"),
  8442. default: true
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8448. {
  8449. front: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(100, "lbs"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/selka/front.svg",
  8455. extra: 947 / 887
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Normal",
  8462. height: math.unit(5, "cm"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(8 + 3 / 12, "feet"),
  8472. weight: math.unit(424, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/verin/front.svg",
  8476. extra: 1845 / 1550
  8477. }
  8478. },
  8479. frontArmored: {
  8480. height: math.unit(8 + 3 / 12, "feet"),
  8481. weight: math.unit(424, "lbs"),
  8482. name: "Front (Armored)",
  8483. image: {
  8484. source: "./media/characters/verin/front-armor.svg",
  8485. extra: 1845 / 1550,
  8486. bottom: 0.01
  8487. }
  8488. },
  8489. back: {
  8490. height: math.unit(8 + 3 / 12, "feet"),
  8491. weight: math.unit(424, "lbs"),
  8492. name: "Back",
  8493. image: {
  8494. source: "./media/characters/verin/back.svg",
  8495. bottom: 0.1,
  8496. extra: 1
  8497. }
  8498. },
  8499. foot: {
  8500. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8501. name: "Foot",
  8502. image: {
  8503. source: "./media/characters/verin/foot.svg"
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(8 + 3 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Minimacro",
  8514. height: math.unit(21, "feet"),
  8515. default: true
  8516. },
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(626, "feet")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(2.718, "meters"),
  8528. weight: math.unit(150, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/sovrim-terraquian/front.svg",
  8532. extra: 1752/1689,
  8533. bottom: 36/1788
  8534. }
  8535. },
  8536. back: {
  8537. height: math.unit(2.718, "meters"),
  8538. weight: math.unit(150, "lbs"),
  8539. name: "Back",
  8540. image: {
  8541. source: "./media/characters/sovrim-terraquian/back.svg",
  8542. extra: 1698/1657,
  8543. bottom: 58/1756
  8544. }
  8545. },
  8546. tongue: {
  8547. height: math.unit(2.865, "feet"),
  8548. name: "Tongue",
  8549. image: {
  8550. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8551. }
  8552. },
  8553. hand: {
  8554. height: math.unit(1.61, "feet"),
  8555. name: "Hand",
  8556. image: {
  8557. source: "./media/characters/sovrim-terraquian/hand.svg"
  8558. }
  8559. },
  8560. foot: {
  8561. height: math.unit(1.05, "feet"),
  8562. name: "Foot",
  8563. image: {
  8564. source: "./media/characters/sovrim-terraquian/foot.svg"
  8565. }
  8566. },
  8567. footAlt: {
  8568. height: math.unit(0.88, "feet"),
  8569. name: "Foot (Alt)",
  8570. image: {
  8571. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(2, "inches")
  8579. },
  8580. {
  8581. name: "Small",
  8582. height: math.unit(1, "meter")
  8583. },
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(Math.E, "meters"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(20, "meters")
  8592. },
  8593. {
  8594. name: "Macro+",
  8595. height: math.unit(400, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(7, "feet"),
  8604. weight: math.unit(489, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/reece-silvermane/front.svg",
  8608. bottom: 0.02,
  8609. extra: 1
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(1.5, "miles"),
  8617. default: true
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(78, "kg"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/kane/front.svg",
  8630. extra: 978 / 899
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(2.1, "m"),
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(1, "km"),
  8642. default: true
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(200, "kg"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/tegon/front.svg",
  8655. bottom: 0.01,
  8656. extra: 1
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Micro",
  8663. height: math.unit(1, "inch")
  8664. },
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(6 + 3 / 12, "feet"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(300, "feet")
  8673. },
  8674. {
  8675. name: "Megamacro",
  8676. height: math.unit(69, "miles")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8682. {
  8683. side: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(2304, "lbs"),
  8686. name: "Side",
  8687. image: {
  8688. source: "./media/characters/arcturax/side.svg",
  8689. extra: 790 / 376,
  8690. bottom: 0.01
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(2, "inch")
  8698. },
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(6, "feet")
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(39, "feet"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(7, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(50, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/sentri/front.svg",
  8723. extra: 1750 / 1570,
  8724. bottom: 0.025
  8725. }
  8726. },
  8727. frontAlt: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(50, "lbs"),
  8730. name: "Front (Alt)",
  8731. image: {
  8732. source: "./media/characters/sentri/front-alt.svg",
  8733. extra: 1750 / 1570,
  8734. bottom: 0.025
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(15, "feet"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(2500, "feet")
  8747. }
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(5 + 8 / 12, "feet"),
  8755. weight: math.unit(130, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/corvin/front.svg",
  8759. extra: 1803 / 1629
  8760. }
  8761. },
  8762. frontShirt: {
  8763. height: math.unit(5 + 8 / 12, "feet"),
  8764. weight: math.unit(130, "lbs"),
  8765. name: "Front (Shirt)",
  8766. image: {
  8767. source: "./media/characters/corvin/front-shirt.svg",
  8768. extra: 1803 / 1629
  8769. }
  8770. },
  8771. frontPoncho: {
  8772. height: math.unit(5 + 8 / 12, "feet"),
  8773. weight: math.unit(130, "lbs"),
  8774. name: "Front (Poncho)",
  8775. image: {
  8776. source: "./media/characters/corvin/front-poncho.svg",
  8777. extra: 1803 / 1629
  8778. }
  8779. },
  8780. side: {
  8781. height: math.unit(5 + 8 / 12, "feet"),
  8782. weight: math.unit(130, "lbs"),
  8783. name: "Side",
  8784. image: {
  8785. source: "./media/characters/corvin/side.svg",
  8786. extra: 1012 / 945
  8787. }
  8788. },
  8789. back: {
  8790. height: math.unit(5 + 8 / 12, "feet"),
  8791. weight: math.unit(130, "lbs"),
  8792. name: "Back",
  8793. image: {
  8794. source: "./media/characters/corvin/back.svg",
  8795. extra: 1803 / 1629
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(3, "inches")
  8803. },
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(5 + 8 / 12, "feet")
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(300, "feet"),
  8811. default: true
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(500, "miles")
  8816. }
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(135, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/q/front.svg",
  8828. extra: 854 / 752,
  8829. bottom: 0.005
  8830. }
  8831. },
  8832. back: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(130, "lbs"),
  8835. name: "Back",
  8836. image: {
  8837. source: "./media/characters/q/back.svg",
  8838. extra: 854 / 752
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(90, "feet"),
  8846. default: true
  8847. },
  8848. {
  8849. name: "Extra Macro",
  8850. height: math.unit(300, "feet"),
  8851. },
  8852. {
  8853. name: "BIG WALF",
  8854. height: math.unit(750, "feet"),
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8860. {
  8861. front: {
  8862. height: math.unit(3, "feet"),
  8863. weight: math.unit(28, "lbs"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/citrine/front.svg"
  8867. }
  8868. }
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(3, "feet"),
  8874. default: true
  8875. }
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8880. {
  8881. front: {
  8882. height: math.unit(14, "feet"),
  8883. weight: math.unit(1450, "kg"),
  8884. preyCapacity: math.unit(15, "people"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/aura-starwind/front.svg",
  8888. extra: 1440/1327,
  8889. bottom: 11/1451
  8890. }
  8891. },
  8892. side: {
  8893. height: math.unit(14, "feet"),
  8894. weight: math.unit(1450, "kg"),
  8895. preyCapacity: math.unit(15, "people"),
  8896. name: "Side",
  8897. image: {
  8898. source: "./media/characters/aura-starwind/side.svg",
  8899. extra: 1654 / 1497
  8900. }
  8901. },
  8902. taur: {
  8903. height: math.unit(18, "feet"),
  8904. weight: math.unit(5500, "kg"),
  8905. preyCapacity: math.unit(50, "people"),
  8906. name: "Taur",
  8907. image: {
  8908. source: "./media/characters/aura-starwind/taur.svg",
  8909. extra: 1760 / 1650
  8910. }
  8911. },
  8912. feral: {
  8913. height: math.unit(46, "feet"),
  8914. weight: math.unit(25000, "kg"),
  8915. preyCapacity: math.unit(120, "people"),
  8916. name: "Feral",
  8917. image: {
  8918. source: "./media/characters/aura-starwind/feral.svg"
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(14, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(50, "meters")
  8931. },
  8932. {
  8933. name: "Megamacro",
  8934. height: math.unit(5000, "meters")
  8935. },
  8936. {
  8937. name: "Gigamacro",
  8938. height: math.unit(100000, "kilometers")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(2 + 7 / 12, "feet"),
  8947. weight: math.unit(32, "lbs"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/rivet/front.svg",
  8951. extra: 1716 / 1658,
  8952. bottom: 0.03
  8953. }
  8954. },
  8955. foot: {
  8956. height: math.unit(0.551, "feet"),
  8957. name: "Rivet's Foot",
  8958. image: {
  8959. source: "./media/characters/rivet/foot.svg"
  8960. },
  8961. rename: true
  8962. }
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(1.5, "inches"),
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(2 + 7 / 12, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(85, "feet")
  8977. },
  8978. {
  8979. name: "Megamacro",
  8980. height: math.unit(2.2, "km")
  8981. }
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(5 + 9 / 12, "feet"),
  8989. weight: math.unit(150, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/coffee/front.svg",
  8993. extra: 3666 / 3032,
  8994. bottom: 0.04
  8995. }
  8996. },
  8997. foot: {
  8998. height: math.unit(1.29, "feet"),
  8999. name: "Foot",
  9000. image: {
  9001. source: "./media/characters/coffee/foot.svg"
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Micro",
  9008. height: math.unit(2, "inches"),
  9009. },
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(5 + 9 / 12, "feet"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(800, "feet")
  9018. },
  9019. {
  9020. name: "Megamacro",
  9021. height: math.unit(25, "miles")
  9022. }
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(200, "lbs"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/chari-gal/front.svg",
  9034. extra: 1568 / 1385,
  9035. bottom: 0.047
  9036. }
  9037. },
  9038. gigantamax: {
  9039. height: math.unit(6 * 16, "feet"),
  9040. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9041. name: "Gigantamax",
  9042. image: {
  9043. source: "./media/characters/chari-gal/gigantamax.svg",
  9044. extra: 1124 / 888,
  9045. bottom: 0.03
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(5 + 7 / 12, "feet")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(200, "feet"),
  9057. default: true
  9058. }
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(150, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/nova/front.svg",
  9070. extra: 5000 / 4722,
  9071. bottom: 0.02
  9072. }
  9073. }
  9074. },
  9075. [
  9076. {
  9077. name: "Micro-",
  9078. height: math.unit(0.8, "inches")
  9079. },
  9080. {
  9081. name: "Micro",
  9082. height: math.unit(2, "inches"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(3 + 1 / 12, "feet"),
  9092. weight: math.unit(21.7, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/argent/front.svg",
  9096. extra: 1471 / 1331,
  9097. bottom: 100.8 / 1575.5
  9098. }
  9099. }
  9100. },
  9101. [
  9102. {
  9103. name: "Micro",
  9104. height: math.unit(2, "inches")
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(3 + 1 / 12, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(120, "feet")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9119. {
  9120. lamp: {
  9121. height: math.unit(7 * 1559 / 989, "feet"),
  9122. name: "Magic Lamp",
  9123. image: {
  9124. source: "./media/characters/mira-al-cul/lamp.svg",
  9125. extra: 1617 / 1559
  9126. }
  9127. },
  9128. front: {
  9129. height: math.unit(7, "feet"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/mira-al-cul/front.svg",
  9133. extra: 1044 / 990
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Heavily Restricted",
  9140. height: math.unit(7 * 1559 / 989, "feet")
  9141. },
  9142. {
  9143. name: "Freshly Freed",
  9144. height: math.unit(50 * 1559 / 989, "feet")
  9145. },
  9146. {
  9147. name: "World Encompassing",
  9148. height: math.unit(10000 * 1559 / 989, "miles")
  9149. },
  9150. {
  9151. name: "Galactic",
  9152. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9153. },
  9154. {
  9155. name: "Palmed Universe",
  9156. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Multiversal Matriarch",
  9161. height: math.unit(8.87e10, "yottameters")
  9162. },
  9163. {
  9164. name: "Void Mother",
  9165. height: math.unit(3.14e110, "yottaparsecs")
  9166. },
  9167. {
  9168. name: "Toying with Transcendence",
  9169. height: math.unit(1e307, "meters")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9175. {
  9176. front: {
  9177. height: math.unit(17 + 1 / 12, "feet"),
  9178. weight: math.unit(476.2 * 5, "lbs"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/kuro-shi-uchū/front.svg",
  9182. extra: 2329 / 1835,
  9183. bottom: 0.02
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(2, "inches")
  9191. },
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(12, "meters")
  9195. },
  9196. {
  9197. name: "Planetary",
  9198. height: math.unit(0.00929, "AU"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Universal",
  9203. height: math.unit(20, "gigaparsecs")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(5 + 2 / 12, "feet"),
  9212. weight: math.unit(120, "lbs"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/katherine/front.svg",
  9216. extra: 2075 / 1969
  9217. }
  9218. },
  9219. dress: {
  9220. height: math.unit(5 + 2 / 12, "feet"),
  9221. weight: math.unit(120, "lbs"),
  9222. name: "Dress",
  9223. image: {
  9224. source: "./media/characters/katherine/dress.svg",
  9225. extra: 2258 / 2064
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(1, "inches"),
  9233. default: true
  9234. },
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(5 + 2 / 12, "feet")
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(100, "meters")
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(80, "miles")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9251. {
  9252. front: {
  9253. height: math.unit(7 + 8 / 12, "feet"),
  9254. weight: math.unit(250, "lbs"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/yevis/front.svg",
  9258. extra: 1938 / 1755
  9259. }
  9260. }
  9261. },
  9262. [
  9263. {
  9264. name: "Mortal",
  9265. height: math.unit(7 + 8 / 12, "feet")
  9266. },
  9267. {
  9268. name: "Battle",
  9269. height: math.unit(25 + 11 / 12, "feet")
  9270. },
  9271. {
  9272. name: "Wrath",
  9273. height: math.unit(1654 + 11 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Planet Destroyer",
  9277. height: math.unit(12000, "miles")
  9278. },
  9279. {
  9280. name: "Galaxy Conqueror",
  9281. height: math.unit(1.45, "zettameters"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Universal War",
  9286. height: math.unit(184, "gigaparsecs")
  9287. },
  9288. {
  9289. name: "Eternity War",
  9290. height: math.unit(1.98e55, "yottaparsecs")
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(5 + 8 / 12, "feet"),
  9299. weight: math.unit(63, "kg"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/xavier/front.svg",
  9303. extra: 944 / 883
  9304. }
  9305. },
  9306. frontStretch: {
  9307. height: math.unit(5 + 8 / 12, "feet"),
  9308. weight: math.unit(63, "kg"),
  9309. name: "Stretching",
  9310. image: {
  9311. source: "./media/characters/xavier/front-stretch.svg",
  9312. extra: 962 / 820
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(5 + 8 / 12, "feet")
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(100, "meters"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "McLargeHuge",
  9328. height: math.unit(10, "miles")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(5 + 5 / 12, "feet"),
  9337. weight: math.unit(150, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/joshii/front.svg",
  9341. extra: 765 / 653,
  9342. bottom: 51 / 816
  9343. }
  9344. },
  9345. foot: {
  9346. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9347. name: "Foot",
  9348. image: {
  9349. source: "./media/characters/joshii/foot.svg"
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Micro",
  9356. height: math.unit(2, "inches"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(5 + 5 / 12, "feet")
  9362. },
  9363. {
  9364. name: "Macro",
  9365. height: math.unit(785, "feet")
  9366. },
  9367. {
  9368. name: "Megamacro",
  9369. height: math.unit(24.5, "miles")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(150, "lb"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/goddess-elizabeth/front.svg",
  9382. extra: 1800 / 1525,
  9383. bottom: 0.005
  9384. }
  9385. },
  9386. foot: {
  9387. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9388. name: "Foot",
  9389. image: {
  9390. source: "./media/characters/goddess-elizabeth/foot.svg"
  9391. }
  9392. },
  9393. mouth: {
  9394. height: math.unit(6, "feet"),
  9395. name: "Mouth",
  9396. image: {
  9397. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9398. }
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Micro",
  9404. height: math.unit(12, "feet")
  9405. },
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(80, "miles"),
  9409. default: true
  9410. },
  9411. {
  9412. name: "Macro",
  9413. height: math.unit(15000, "parsecs")
  9414. },
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9419. {
  9420. front: {
  9421. height: math.unit(5 + 9 / 12, "feet"),
  9422. weight: math.unit(144, "lb"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/kara/front.svg"
  9426. }
  9427. },
  9428. feet: {
  9429. height: math.unit(6 / 6.765, "feet"),
  9430. name: "Kara's Feet",
  9431. rename: true,
  9432. image: {
  9433. source: "./media/characters/kara/feet.svg"
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(5 + 9 / 12, "feet")
  9441. },
  9442. {
  9443. name: "Macro",
  9444. height: math.unit(174, "feet"),
  9445. default: true
  9446. },
  9447. ]
  9448. ))
  9449. characterMakers.push(() => makeCharacter(
  9450. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9451. {
  9452. front: {
  9453. height: math.unit(18, "feet"),
  9454. weight: math.unit(4050, "lb"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/tyrone/front.svg",
  9458. extra: 2405 / 2270,
  9459. bottom: 182 / 2587
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(18, "feet"),
  9467. default: true
  9468. },
  9469. {
  9470. name: "Macro",
  9471. height: math.unit(300, "feet")
  9472. },
  9473. {
  9474. name: "Megamacro",
  9475. height: math.unit(15, "km")
  9476. },
  9477. {
  9478. name: "Gigamacro",
  9479. height: math.unit(500, "km")
  9480. },
  9481. {
  9482. name: "Teramacro",
  9483. height: math.unit(0.5, "gigameters")
  9484. },
  9485. {
  9486. name: "Omnimacro",
  9487. height: math.unit(1e252, "yottauniverse")
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9493. {
  9494. front: {
  9495. height: math.unit(7 + 8 / 12, "feet"),
  9496. weight: math.unit(120, "lb"),
  9497. name: "Front",
  9498. image: {
  9499. source: "./media/characters/danny/front.svg",
  9500. extra: 1490 / 1350
  9501. }
  9502. },
  9503. back: {
  9504. height: math.unit(7 + 8 / 12, "feet"),
  9505. weight: math.unit(120, "lb"),
  9506. name: "Back",
  9507. image: {
  9508. source: "./media/characters/danny/back.svg",
  9509. extra: 1490 / 1350
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(7 + 8 / 12, "feet"),
  9517. default: true
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(3.5, "inches"),
  9526. weight: math.unit(19, "grams"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/mallow/front.svg",
  9530. extra: 471 / 431
  9531. }
  9532. },
  9533. back: {
  9534. height: math.unit(3.5, "inches"),
  9535. weight: math.unit(19, "grams"),
  9536. name: "Back",
  9537. image: {
  9538. source: "./media/characters/mallow/back.svg",
  9539. extra: 471 / 431
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(3.5, "inches"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(9, "feet"),
  9556. weight: math.unit(230, "kg"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/starry-aqua/front.svg"
  9560. }
  9561. },
  9562. back: {
  9563. height: math.unit(9, "feet"),
  9564. weight: math.unit(230, "kg"),
  9565. name: "Back",
  9566. image: {
  9567. source: "./media/characters/starry-aqua/back.svg"
  9568. }
  9569. },
  9570. hand: {
  9571. height: math.unit(9 * 0.1168, "feet"),
  9572. name: "Hand",
  9573. image: {
  9574. source: "./media/characters/starry-aqua/hand.svg"
  9575. }
  9576. },
  9577. foot: {
  9578. height: math.unit(9 * 0.18, "feet"),
  9579. name: "Foot",
  9580. image: {
  9581. source: "./media/characters/starry-aqua/foot.svg"
  9582. }
  9583. }
  9584. },
  9585. [
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(3, "inches")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(9, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(300, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(3200, "feet")
  9602. }
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(15, "feet"),
  9610. weight: math.unit(5026, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/luka-towers/front.svg",
  9614. extra: 1269/1133,
  9615. bottom: 51/1320
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(15, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Minimacro",
  9627. height: math.unit(25, "feet")
  9628. },
  9629. {
  9630. name: "Macro",
  9631. height: math.unit(320, "feet")
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(35000, "feet")
  9636. },
  9637. {
  9638. name: "Gigamacro",
  9639. height: math.unit(4000, "miles")
  9640. },
  9641. {
  9642. name: "Teramacro",
  9643. height: math.unit(15000, "miles")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/natalie-nightring/front.svg",
  9656. extra: 1,
  9657. bottom: 0.06
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Uh Oh",
  9664. height: math.unit(0.1, "mm")
  9665. },
  9666. {
  9667. name: "Small",
  9668. height: math.unit(3, "inches")
  9669. },
  9670. {
  9671. name: "Human Scale",
  9672. height: math.unit(6, "feet")
  9673. },
  9674. {
  9675. name: "Librarian",
  9676. height: math.unit(50, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Immense",
  9681. height: math.unit(200, "miles")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(180, "lbs"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/danni-rosie/front.svg",
  9694. extra: 1260 / 1128,
  9695. bottom: 0.022
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(2, "inches"),
  9703. default: true
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(5 + 9 / 12, "feet"),
  9712. weight: math.unit(220, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/samantha-kruse/front.svg",
  9716. extra: (985 / 935),
  9717. bottom: 0.03
  9718. }
  9719. },
  9720. frontUndressed: {
  9721. height: math.unit(5 + 9 / 12, "feet"),
  9722. weight: math.unit(220, "lb"),
  9723. name: "Front (Undressed)",
  9724. image: {
  9725. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9726. extra: (973 / 923),
  9727. bottom: 0.025
  9728. }
  9729. },
  9730. fat: {
  9731. height: math.unit(5 + 9 / 12, "feet"),
  9732. weight: math.unit(900, "lb"),
  9733. name: "Front (Fat)",
  9734. image: {
  9735. source: "./media/characters/samantha-kruse/fat.svg",
  9736. extra: 2688 / 2561
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5 + 9 / 12, "feet"),
  9744. default: true
  9745. }
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9750. {
  9751. back: {
  9752. height: math.unit(5 + 4 / 12, "feet"),
  9753. weight: math.unit(4963, "lb"),
  9754. name: "Back",
  9755. image: {
  9756. source: "./media/characters/amelia-rosie/back.svg",
  9757. extra: 1113 / 963,
  9758. bottom: 0.01
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Level 0",
  9765. height: math.unit(5 + 4 / 12, "feet")
  9766. },
  9767. {
  9768. name: "Level 1",
  9769. height: math.unit(164597, "feet"),
  9770. default: true
  9771. },
  9772. {
  9773. name: "Level 2",
  9774. height: math.unit(956243, "miles")
  9775. },
  9776. {
  9777. name: "Level 3",
  9778. height: math.unit(29421709423, "miles")
  9779. },
  9780. {
  9781. name: "Level 4",
  9782. height: math.unit(154, "lightyears")
  9783. },
  9784. {
  9785. name: "Level 5",
  9786. height: math.unit(4738272, "lightyears")
  9787. },
  9788. {
  9789. name: "Level 6",
  9790. height: math.unit(145787152896, "lightyears")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5 + 11 / 12, "feet"),
  9799. weight: math.unit(65, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/rook-kitara/front.svg",
  9803. extra: 1347 / 1274,
  9804. bottom: 0.005
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Totally Unfair",
  9811. height: math.unit(1.8, "mm")
  9812. },
  9813. {
  9814. name: "Lap Rookie",
  9815. height: math.unit(1.4, "feet")
  9816. },
  9817. {
  9818. name: "Normal",
  9819. height: math.unit(5 + 11 / 12, "feet"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "How Did This Happen",
  9824. height: math.unit(80, "miles")
  9825. }
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9830. {
  9831. front: {
  9832. height: math.unit(7, "feet"),
  9833. weight: math.unit(300, "lb"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/pisces/front.svg",
  9837. extra: 2255 / 2115,
  9838. bottom: 0.03
  9839. }
  9840. },
  9841. back: {
  9842. height: math.unit(7, "feet"),
  9843. weight: math.unit(300, "lb"),
  9844. name: "Back",
  9845. image: {
  9846. source: "./media/characters/pisces/back.svg",
  9847. extra: 2146 / 2055,
  9848. bottom: 0.04
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(7, "feet"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Swimming Pool",
  9860. height: math.unit(12.2, "meters")
  9861. },
  9862. {
  9863. name: "Olympic Swimming Pool",
  9864. height: math.unit(56.3, "meters")
  9865. },
  9866. {
  9867. name: "Lake Superior",
  9868. height: math.unit(93900, "meters")
  9869. },
  9870. {
  9871. name: "Mediterranean Sea",
  9872. height: math.unit(644457, "meters")
  9873. },
  9874. {
  9875. name: "World's Oceans",
  9876. height: math.unit(4567491, "meters")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(2.3, "meters"),
  9885. weight: math.unit(120, "kg"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/zelas/front.svg"
  9889. }
  9890. },
  9891. side: {
  9892. height: math.unit(2.3, "meters"),
  9893. weight: math.unit(120, "kg"),
  9894. name: "Side",
  9895. image: {
  9896. source: "./media/characters/zelas/side.svg"
  9897. }
  9898. },
  9899. back: {
  9900. height: math.unit(2.3, "meters"),
  9901. weight: math.unit(120, "kg"),
  9902. name: "Back",
  9903. image: {
  9904. source: "./media/characters/zelas/back.svg"
  9905. }
  9906. },
  9907. foot: {
  9908. height: math.unit(1.116, "feet"),
  9909. name: "Foot",
  9910. image: {
  9911. source: "./media/characters/zelas/foot.svg"
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(2.3, "meters")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(30, "meters"),
  9923. default: true
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(1, "inch"),
  9932. weight: math.unit(0.21, "grams"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/talbot/front.svg",
  9936. extra: 594 / 544
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(1, "inch"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9950. {
  9951. front: {
  9952. height: math.unit(3 + 3 / 12, "feet"),
  9953. weight: math.unit(51.8, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/fliss/front.svg",
  9957. extra: 840 / 640
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Teeny Tiny",
  9964. height: math.unit(1, "mm")
  9965. },
  9966. {
  9967. name: "Small",
  9968. height: math.unit(1, "inch"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Standard Sylveon",
  9973. height: math.unit(3 + 3 / 12, "feet")
  9974. },
  9975. {
  9976. name: "Large Nuisance",
  9977. height: math.unit(33, "feet")
  9978. },
  9979. {
  9980. name: "City Filler",
  9981. height: math.unit(3000, "feet")
  9982. },
  9983. {
  9984. name: "New Horizon",
  9985. height: math.unit(6000, "miles")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(5, "cm"),
  9994. weight: math.unit(1.94, "g"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/fleta/front.svg",
  9998. extra: 835 / 803
  9999. }
  10000. },
  10001. back: {
  10002. height: math.unit(5, "cm"),
  10003. weight: math.unit(1.94, "g"),
  10004. name: "Back",
  10005. image: {
  10006. source: "./media/characters/fleta/back.svg",
  10007. extra: 835 / 803
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Micro",
  10014. height: math.unit(5, "cm"),
  10015. default: true
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(225, "lb"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/dominic/front.svg",
  10028. extra: 1770 / 1620,
  10029. bottom: 0.025
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(225, "lb"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/dominic/back.svg",
  10038. extra: 1745 / 1620,
  10039. bottom: 0.065
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Nano",
  10046. height: math.unit(0.1, "mm")
  10047. },
  10048. {
  10049. name: "Micro-",
  10050. height: math.unit(1, "mm")
  10051. },
  10052. {
  10053. name: "Micro",
  10054. height: math.unit(4, "inches")
  10055. },
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(6 + 4 / 12, "feet"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(115, "feet")
  10064. },
  10065. {
  10066. name: "Macro+",
  10067. height: math.unit(955, "feet")
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(8990, "feet")
  10072. },
  10073. {
  10074. name: "Gigmacro",
  10075. height: math.unit(9310, "miles")
  10076. },
  10077. {
  10078. name: "Teramacro",
  10079. height: math.unit(1567005010, "miles")
  10080. },
  10081. {
  10082. name: "Examacro",
  10083. height: math.unit(1425, "parsecs")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(400, "feet"),
  10092. weight: math.unit(44444444, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/major-colonel/front.svg"
  10096. }
  10097. },
  10098. back: {
  10099. height: math.unit(400, "feet"),
  10100. weight: math.unit(44444444, "lb"),
  10101. name: "Back",
  10102. image: {
  10103. source: "./media/characters/major-colonel/back.svg"
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(400, "feet"),
  10111. default: true
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10117. {
  10118. catFront: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(120, "lb"),
  10121. name: "Front (Cat Side)",
  10122. image: {
  10123. source: "./media/characters/axel-lycan/cat-front.svg",
  10124. extra: 430 / 402,
  10125. bottom: 43 / 472.35
  10126. }
  10127. },
  10128. catBack: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(120, "lb"),
  10131. name: "Back (Cat Side)",
  10132. image: {
  10133. source: "./media/characters/axel-lycan/cat-back.svg",
  10134. extra: 447 / 419,
  10135. bottom: 23.3 / 469
  10136. }
  10137. },
  10138. wolfFront: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(120, "lb"),
  10141. name: "Front (Wolf Side)",
  10142. image: {
  10143. source: "./media/characters/axel-lycan/wolf-front.svg",
  10144. extra: 485 / 456,
  10145. bottom: 19 / 504
  10146. }
  10147. },
  10148. wolfBack: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(120, "lb"),
  10151. name: "Back (Wolf Side)",
  10152. image: {
  10153. source: "./media/characters/axel-lycan/wolf-back.svg",
  10154. extra: 475 / 438,
  10155. bottom: 39.2 / 514
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Macro",
  10162. height: math.unit(1, "km"),
  10163. default: true
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(5 + 9 / 12, "feet"),
  10172. weight: math.unit(175, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/vanrel-hyena/front.svg",
  10176. extra: 1086 / 1010,
  10177. bottom: 0.04
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(5 + 9 / 12, "feet"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(103, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/abbott-absol/front.svg",
  10198. extra: 2010 / 1842
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Megamicro",
  10205. height: math.unit(0.1, "mm")
  10206. },
  10207. {
  10208. name: "Micro",
  10209. height: math.unit(1, "inch")
  10210. },
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(6, "feet"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(264, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/hector/front.svg",
  10227. extra: 2280 / 2130,
  10228. bottom: 0.07
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(12.25, "foot"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(160, "feet")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(150, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/sal/front.svg",
  10253. extra: 1846 / 1699,
  10254. bottom: 0.04
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(10, "miles"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10268. {
  10269. front: {
  10270. height: math.unit(3, "meters"),
  10271. weight: math.unit(450, "kg"),
  10272. name: "front",
  10273. image: {
  10274. source: "./media/characters/ranger/front.svg",
  10275. extra: 2401 / 2243,
  10276. bottom: 0.05
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(3, "meters"),
  10284. default: true
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(14, "feet"),
  10293. weight: math.unit(800, "kg"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/theresa/front.svg",
  10297. extra: 3575 / 3346,
  10298. bottom: 0.03
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(14, "feet"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10312. {
  10313. front: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(3, "kg"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/ine/front.svg",
  10319. extra: 678 / 539,
  10320. bottom: 0.023
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(2.265, "feet"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(5, "feet"),
  10337. weight: math.unit(30, "kg"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/vial/front.svg",
  10341. extra: 1365 / 1277,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(5, "feet"),
  10350. default: true
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10356. {
  10357. side: {
  10358. height: math.unit(3.4, "meters"),
  10359. weight: math.unit(1000, "lb"),
  10360. name: "Side",
  10361. image: {
  10362. source: "./media/characters/rovoska/side.svg",
  10363. extra: 4403 / 1515
  10364. }
  10365. },
  10366. },
  10367. [
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(3.4, "meters"),
  10371. default: true
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(8, "feet"),
  10380. weight: math.unit(315, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/gunner-rotthbauer/front.svg"
  10384. }
  10385. },
  10386. back: {
  10387. height: math.unit(8, "feet"),
  10388. weight: math.unit(315, "lb"),
  10389. name: "Back",
  10390. image: {
  10391. source: "./media/characters/gunner-rotthbauer/back.svg"
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Micro",
  10398. height: math.unit(3.5, "inches")
  10399. },
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(8, "feet"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Macro",
  10407. height: math.unit(250, "feet")
  10408. },
  10409. {
  10410. name: "Megamacro",
  10411. height: math.unit(1, "AU")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(5 + 5 / 12, "feet"),
  10420. weight: math.unit(140, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/allatia/front.svg",
  10424. extra: 1227 / 1180,
  10425. bottom: 0.027
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(5 + 5 / 12, "feet")
  10433. },
  10434. {
  10435. name: "Macro",
  10436. height: math.unit(250, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(8, "miles")
  10442. }
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(6, "feet"),
  10450. weight: math.unit(120, "lb"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/tene/front.svg",
  10454. extra: 814/750,
  10455. bottom: 36/850
  10456. }
  10457. },
  10458. stomping: {
  10459. height: math.unit(2.025, "meters"),
  10460. weight: math.unit(120, "lb"),
  10461. name: "Stomping",
  10462. image: {
  10463. source: "./media/characters/tene/stomping.svg",
  10464. extra: 885/821,
  10465. bottom: 15/900
  10466. }
  10467. },
  10468. sitting: {
  10469. height: math.unit(1, "meter"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Sitting",
  10472. image: {
  10473. source: "./media/characters/tene/sitting.svg",
  10474. extra: 396/366,
  10475. bottom: 79/475
  10476. }
  10477. },
  10478. smiling: {
  10479. height: math.unit(1.2, "feet"),
  10480. name: "Smiling",
  10481. image: {
  10482. source: "./media/characters/tene/smiling.svg",
  10483. extra: 1364/1071,
  10484. bottom: 0/1364
  10485. }
  10486. },
  10487. smug: {
  10488. height: math.unit(1.3, "feet"),
  10489. name: "Smug",
  10490. image: {
  10491. source: "./media/characters/tene/smug.svg",
  10492. extra: 1323/1082,
  10493. bottom: 0/1323
  10494. }
  10495. },
  10496. feral: {
  10497. height: math.unit(3.9, "feet"),
  10498. weight: math.unit(250, "lb"),
  10499. name: "Feral",
  10500. image: {
  10501. source: "./media/characters/tene/feral.svg",
  10502. extra: 717 / 458,
  10503. bottom: 0.179
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(6, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(300, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Megamacro",
  10519. height: math.unit(5, "miles")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10525. {
  10526. side: {
  10527. height: math.unit(6, "feet"),
  10528. name: "Side",
  10529. image: {
  10530. source: "./media/characters/evander/side.svg",
  10531. extra: 877 / 477
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(0.83, "meters"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(12, "feet"),
  10548. weight: math.unit(1000, "lb"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10552. extra: 1762 / 1611
  10553. }
  10554. },
  10555. back: {
  10556. height: math.unit(12, "feet"),
  10557. weight: math.unit(1000, "lb"),
  10558. name: "Back",
  10559. image: {
  10560. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10561. extra: 1762 / 1611
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(12, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Kaiju",
  10573. height: math.unit(150, "feet")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(150, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/zero-alurus/front.svg"
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/zero-alurus/back.svg"
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(5 + 10 / 12, "feet")
  10601. },
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(60, "feet"),
  10605. default: true
  10606. },
  10607. {
  10608. name: "Macro+",
  10609. height: math.unit(450, "feet")
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(200, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/mega-shi/front.svg",
  10622. extra: 1279 / 1250,
  10623. bottom: 0.02
  10624. }
  10625. },
  10626. back: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(200, "lb"),
  10629. name: "Back",
  10630. image: {
  10631. source: "./media/characters/mega-shi/back.svg",
  10632. extra: 1279 / 1250,
  10633. bottom: 0.02
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Micro",
  10640. height: math.unit(16 + 6 / 12, "feet")
  10641. },
  10642. {
  10643. name: "Third Dimension",
  10644. height: math.unit(40, "meters")
  10645. },
  10646. {
  10647. name: "Normal",
  10648. height: math.unit(660, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Megamacro",
  10653. height: math.unit(10, "miles")
  10654. },
  10655. {
  10656. name: "Planetary Launch",
  10657. height: math.unit(500, "miles")
  10658. },
  10659. {
  10660. name: "Interstellar",
  10661. height: math.unit(1e9, "miles")
  10662. },
  10663. {
  10664. name: "Leaving the Universe",
  10665. height: math.unit(1, "gigaparsec")
  10666. },
  10667. {
  10668. name: "Travelling Universes",
  10669. height: math.unit(30e15, "parsecs")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(5 + 4/12, "feet"),
  10678. weight: math.unit(120, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/odyssey/front.svg",
  10682. extra: 1747/1571,
  10683. bottom: 47/1794
  10684. }
  10685. },
  10686. side: {
  10687. height: math.unit(5.1, "feet"),
  10688. weight: math.unit(120, "lb"),
  10689. name: "Side",
  10690. image: {
  10691. source: "./media/characters/odyssey/side.svg",
  10692. extra: 1847/1619,
  10693. bottom: 47/1894
  10694. }
  10695. },
  10696. lounging: {
  10697. height: math.unit(1.464, "feet"),
  10698. weight: math.unit(120, "lb"),
  10699. name: "Lounging",
  10700. image: {
  10701. source: "./media/characters/odyssey/lounging.svg",
  10702. extra: 1235/837,
  10703. bottom: 551/1786
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Normal",
  10710. height: math.unit(5 + 4 / 12, "feet")
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(1, "km")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(3000, "km")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(1, "AU"),
  10723. default: true
  10724. },
  10725. {
  10726. name: "Omniversal",
  10727. height: math.unit(100e14, "lightyears")
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10733. {
  10734. front: {
  10735. height: math.unit(6, "feet"),
  10736. weight: math.unit(300, "lb"),
  10737. name: "Front",
  10738. image: {
  10739. source: "./media/characters/mekuto/front.svg",
  10740. extra: 921 / 832,
  10741. bottom: 0.03
  10742. }
  10743. },
  10744. hand: {
  10745. height: math.unit(6 / 10.24, "feet"),
  10746. name: "Hand",
  10747. image: {
  10748. source: "./media/characters/mekuto/hand.svg"
  10749. }
  10750. },
  10751. foot: {
  10752. height: math.unit(6 / 5.05, "feet"),
  10753. name: "Foot",
  10754. image: {
  10755. source: "./media/characters/mekuto/foot.svg"
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Minimicro",
  10762. height: math.unit(0.2, "inches")
  10763. },
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(1.5, "inches")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(5 + 11 / 12, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(17 + 9 / 12, "feet")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(177.5, "feet")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(152, "miles")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(6.5, "inches"),
  10792. weight: math.unit(13, "oz"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/dafydd-tomos/front.svg",
  10796. extra: 2990 / 2603,
  10797. bottom: 0.03
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Micro",
  10804. height: math.unit(6.5, "inches"),
  10805. default: true
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10811. {
  10812. front: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(150, "lb"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/splinter/front.svg",
  10818. extra: 2990 / 2882,
  10819. bottom: 0.04
  10820. }
  10821. },
  10822. back: {
  10823. height: math.unit(6, "feet"),
  10824. weight: math.unit(150, "lb"),
  10825. name: "Back",
  10826. image: {
  10827. source: "./media/characters/splinter/back.svg",
  10828. extra: 2990 / 2882,
  10829. bottom: 0.04
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(6, "feet")
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(230, "meters"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(4 + 10 / 12, "feet"),
  10850. weight: math.unit(480, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/snow-gabumon/front.svg",
  10854. extra: 1140 / 963,
  10855. bottom: 0.058
  10856. }
  10857. },
  10858. back: {
  10859. height: math.unit(4 + 10 / 12, "feet"),
  10860. weight: math.unit(480, "lb"),
  10861. name: "Back",
  10862. image: {
  10863. source: "./media/characters/snow-gabumon/back.svg",
  10864. extra: 1115 / 962,
  10865. bottom: 0.041
  10866. }
  10867. },
  10868. frontUndresed: {
  10869. height: math.unit(4 + 10 / 12, "feet"),
  10870. weight: math.unit(480, "lb"),
  10871. name: "Front (Undressed)",
  10872. image: {
  10873. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10874. extra: 1061 / 960,
  10875. bottom: 0.045
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(1, "inch")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(4 + 10 / 12, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(200, "feet")
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(120, "miles")
  10896. },
  10897. {
  10898. name: "Gigamacro",
  10899. height: math.unit(9800, "miles")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(1.7, "meters"),
  10908. weight: math.unit(140, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/moody/front.svg",
  10912. extra: 3226 / 3007,
  10913. bottom: 0.087
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Micro",
  10920. height: math.unit(1, "mm")
  10921. },
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(1.7, "meters"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(80, "meters")
  10930. },
  10931. {
  10932. name: "Macro+",
  10933. height: math.unit(500, "meters")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/zyas/front.svg",
  10946. extra: 1180 / 1120,
  10947. bottom: 0.045
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(10, "feet"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Macro",
  10959. height: math.unit(500, "feet")
  10960. },
  10961. {
  10962. name: "Megamacro",
  10963. height: math.unit(5, "miles")
  10964. },
  10965. {
  10966. name: "Teramacro",
  10967. height: math.unit(150000, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10973. {
  10974. front: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(150, "lb"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/cuon/front.svg",
  10980. extra: 1390 / 1320,
  10981. bottom: 0.008
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(3, "inches")
  10989. },
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(18 + 9 / 12, "feet"),
  10993. default: true
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(360, "feet")
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(360, "miles")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(2.4, "meters"),
  11010. weight: math.unit(70, "kg"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/nyanuxk/front.svg",
  11014. extra: 1172 / 1084,
  11015. bottom: 0.065
  11016. }
  11017. },
  11018. side: {
  11019. height: math.unit(2.4, "meters"),
  11020. weight: math.unit(70, "kg"),
  11021. name: "Side",
  11022. image: {
  11023. source: "./media/characters/nyanuxk/side.svg",
  11024. extra: 1190 / 1132,
  11025. bottom: 0.007
  11026. }
  11027. },
  11028. back: {
  11029. height: math.unit(2.4, "meters"),
  11030. weight: math.unit(70, "kg"),
  11031. name: "Back",
  11032. image: {
  11033. source: "./media/characters/nyanuxk/back.svg",
  11034. extra: 1200 / 1141,
  11035. bottom: 0.015
  11036. }
  11037. },
  11038. foot: {
  11039. height: math.unit(0.52, "meters"),
  11040. name: "Foot",
  11041. image: {
  11042. source: "./media/characters/nyanuxk/foot.svg"
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Micro",
  11049. height: math.unit(2, "cm")
  11050. },
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(2.4, "meters"),
  11054. default: true
  11055. },
  11056. {
  11057. name: "Smaller Macro",
  11058. height: math.unit(120, "meters")
  11059. },
  11060. {
  11061. name: "Bigger Macro",
  11062. height: math.unit(1.2, "km")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(15, "kilometers")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(2000, "km")
  11071. },
  11072. {
  11073. name: "Teramacro",
  11074. height: math.unit(500000, "km")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11080. {
  11081. side: {
  11082. height: math.unit(6, "feet"),
  11083. name: "Side",
  11084. image: {
  11085. source: "./media/characters/ailbhe/side.svg",
  11086. extra: 757 / 464,
  11087. bottom: 0.041
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(1.07, "meters"),
  11095. default: true
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(120, "kg"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/zevulfius/front.svg",
  11108. extra: 965 / 903
  11109. }
  11110. },
  11111. side: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(120, "kg"),
  11114. name: "Side",
  11115. image: {
  11116. source: "./media/characters/zevulfius/side.svg",
  11117. extra: 939 / 900
  11118. }
  11119. },
  11120. back: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(120, "kg"),
  11123. name: "Back",
  11124. image: {
  11125. source: "./media/characters/zevulfius/back.svg",
  11126. extra: 918 / 854,
  11127. bottom: 0.005
  11128. }
  11129. },
  11130. foot: {
  11131. height: math.unit(6 / 3.72, "feet"),
  11132. name: "Foot",
  11133. image: {
  11134. source: "./media/characters/zevulfius/foot.svg"
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(750, "meters")
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(20, "km"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Gigamacro",
  11150. height: math.unit(2000, "km")
  11151. },
  11152. {
  11153. name: "Teramacro",
  11154. height: math.unit(250000, "km")
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(100, "feet"),
  11163. weight: math.unit(350, "kg"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/rikes/front.svg",
  11167. extra: 1565 / 1483,
  11168. bottom: 0.017
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Macro",
  11175. height: math.unit(100, "feet"),
  11176. default: true
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(8, "feet"),
  11185. weight: math.unit(356, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/adam-silver-mane/front.svg",
  11189. extra: 1036/937,
  11190. bottom: 63/1099
  11191. }
  11192. },
  11193. side: {
  11194. height: math.unit(8, "feet"),
  11195. weight: math.unit(356, "lb"),
  11196. name: "Side",
  11197. image: {
  11198. source: "./media/characters/adam-silver-mane/side.svg",
  11199. extra: 997/901,
  11200. bottom: 59/1056
  11201. }
  11202. },
  11203. frontNsfw: {
  11204. height: math.unit(8, "feet"),
  11205. weight: math.unit(356, "lb"),
  11206. name: "Front (NSFW)",
  11207. image: {
  11208. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11209. extra: 1036/937,
  11210. bottom: 63/1099
  11211. }
  11212. },
  11213. sideNsfw: {
  11214. height: math.unit(8, "feet"),
  11215. weight: math.unit(356, "lb"),
  11216. name: "Side (NSFW)",
  11217. image: {
  11218. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11219. extra: 997/901,
  11220. bottom: 59/1056
  11221. }
  11222. },
  11223. dick: {
  11224. height: math.unit(2.1, "feet"),
  11225. name: "Dick",
  11226. image: {
  11227. source: "./media/characters/adam-silver-mane/dick.svg"
  11228. }
  11229. },
  11230. taur: {
  11231. height: math.unit(16, "feet"),
  11232. weight: math.unit(1500, "kg"),
  11233. name: "Taur",
  11234. image: {
  11235. source: "./media/characters/adam-silver-mane/taur.svg",
  11236. extra: 1713 / 1571,
  11237. bottom: 0.01
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(8, "feet")
  11245. },
  11246. {
  11247. name: "Minimacro",
  11248. height: math.unit(80, "feet")
  11249. },
  11250. {
  11251. name: "MDA",
  11252. height: math.unit(80, "meters")
  11253. },
  11254. {
  11255. name: "Macro",
  11256. height: math.unit(800, "feet"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(8000, "feet")
  11262. },
  11263. {
  11264. name: "Gigamacro",
  11265. height: math.unit(800, "miles")
  11266. },
  11267. {
  11268. name: "Teramacro",
  11269. height: math.unit(80000, "miles")
  11270. },
  11271. {
  11272. name: "Celestial",
  11273. height: math.unit(8e6, "miles")
  11274. },
  11275. {
  11276. name: "Star Dragon",
  11277. height: math.unit(800000, "parsecs")
  11278. },
  11279. {
  11280. name: "Godly",
  11281. height: math.unit(800, "teraparsecs")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/ky'owin/front.svg",
  11294. extra: 3888 / 3068,
  11295. bottom: 0.015
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(6 + 8 / 12, "feet")
  11303. },
  11304. {
  11305. name: "Large",
  11306. height: math.unit(68, "feet")
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(132, "feet")
  11311. },
  11312. {
  11313. name: "Macro+",
  11314. height: math.unit(340, "feet")
  11315. },
  11316. {
  11317. name: "Macro++",
  11318. height: math.unit(680, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Megamacro",
  11323. height: math.unit(1, "mile")
  11324. },
  11325. {
  11326. name: "Megamacro+",
  11327. height: math.unit(10, "miles")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(4, "feet"),
  11336. weight: math.unit(50, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/mal/front.svg",
  11340. extra: 785 / 724,
  11341. bottom: 0.07
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Micro",
  11348. height: math.unit(4, "inches")
  11349. },
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(4, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Macro",
  11357. height: math.unit(200, "feet")
  11358. },
  11359. ]
  11360. ))
  11361. characterMakers.push(() => makeCharacter(
  11362. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11363. {
  11364. front: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(150, "lb"),
  11367. name: "Front",
  11368. image: {
  11369. source: "./media/characters/jordan-deware/front.svg",
  11370. extra: 1191 / 1012
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Nano",
  11377. height: math.unit(0.01, "mm")
  11378. },
  11379. {
  11380. name: "Minimicro",
  11381. height: math.unit(1, "mm")
  11382. },
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(0.5, "inches")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(4, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Minimacro",
  11394. height: math.unit(40, "meters")
  11395. },
  11396. {
  11397. name: "Small Macro",
  11398. height: math.unit(400, "meters")
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(4, "miles")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(40, "miles")
  11407. },
  11408. {
  11409. name: "Megamacro+",
  11410. height: math.unit(400, "miles")
  11411. },
  11412. {
  11413. name: "Gigamacro",
  11414. height: math.unit(400000, "miles")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11420. {
  11421. side: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/kimiko/side.svg",
  11427. extra: 600 / 358
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(15, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Macro",
  11439. height: math.unit(220, "feet")
  11440. },
  11441. {
  11442. name: "Macro+",
  11443. height: math.unit(1450, "feet")
  11444. },
  11445. {
  11446. name: "Megamacro",
  11447. height: math.unit(11500, "feet")
  11448. },
  11449. {
  11450. name: "Gigamacro",
  11451. height: math.unit(9500, "miles")
  11452. },
  11453. {
  11454. name: "Teramacro",
  11455. height: math.unit(2208005005, "miles")
  11456. },
  11457. {
  11458. name: "Examacro",
  11459. height: math.unit(2750, "parsecs")
  11460. },
  11461. {
  11462. name: "Zettamacro",
  11463. height: math.unit(101500, "parsecs")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(70, "kg"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/andrew-sleepy/front.svg"
  11476. }
  11477. },
  11478. side: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(70, "kg"),
  11481. name: "Side",
  11482. image: {
  11483. source: "./media/characters/andrew-sleepy/side.svg"
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Micro",
  11490. height: math.unit(1, "mm"),
  11491. default: true
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/judio/front.svg",
  11504. extra: 1258 / 1110
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(5 + 6 / 12, "feet")
  11512. },
  11513. {
  11514. name: "Macro",
  11515. height: math.unit(1000, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Megamacro",
  11520. height: math.unit(10, "miles")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11526. {
  11527. frontDressed: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(68, "kg"),
  11530. name: "Front (Dressed)",
  11531. image: {
  11532. source: "./media/characters/nomaxice/front-dressed.svg",
  11533. extra: 1137/824,
  11534. bottom: 74/1211
  11535. }
  11536. },
  11537. frontShorts: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(68, "kg"),
  11540. name: "Front (Shorts)",
  11541. image: {
  11542. source: "./media/characters/nomaxice/front-shorts.svg",
  11543. extra: 1137/824,
  11544. bottom: 74/1211
  11545. }
  11546. },
  11547. back: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(68, "kg"),
  11550. name: "Back",
  11551. image: {
  11552. source: "./media/characters/nomaxice/back.svg",
  11553. extra: 822/786,
  11554. bottom: 39/861
  11555. }
  11556. },
  11557. hand: {
  11558. height: math.unit(0.565, "feet"),
  11559. name: "Hand",
  11560. image: {
  11561. source: "./media/characters/nomaxice/hand.svg"
  11562. }
  11563. },
  11564. foot: {
  11565. height: math.unit(1, "feet"),
  11566. name: "Foot",
  11567. image: {
  11568. source: "./media/characters/nomaxice/foot.svg"
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(8, "cm")
  11576. },
  11577. {
  11578. name: "Norm",
  11579. height: math.unit(1.82, "m")
  11580. },
  11581. {
  11582. name: "Norm+",
  11583. height: math.unit(8.8, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Big",
  11588. height: math.unit(8, "meters")
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(18, "meters")
  11593. },
  11594. {
  11595. name: "Macro+",
  11596. height: math.unit(88, "meters")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(12, "feet"),
  11605. weight: math.unit(1.5, "tons"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/dydros/front.svg",
  11609. extra: 863 / 800,
  11610. bottom: 0.015
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(12, "feet"),
  11615. weight: math.unit(1.5, "tons"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/dydros/back.svg",
  11619. extra: 900 / 843,
  11620. bottom: 0.005
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(12, "feet"),
  11628. default: true
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11634. {
  11635. front: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(100, "kg"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/riggi/front.svg",
  11641. extra: 5787 / 5303
  11642. }
  11643. },
  11644. hyper: {
  11645. height: math.unit(6 * 5 / 3, "feet"),
  11646. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11647. name: "Hyper",
  11648. image: {
  11649. source: "./media/characters/riggi/hyper.svg",
  11650. extra: 3595 / 3485
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Small Macro",
  11657. height: math.unit(50, "feet")
  11658. },
  11659. {
  11660. name: "Default",
  11661. height: math.unit(200, "feet"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Loom",
  11666. height: math.unit(10000, "feet")
  11667. },
  11668. {
  11669. name: "Cruising Altitude",
  11670. height: math.unit(30000, "feet")
  11671. },
  11672. {
  11673. name: "Megamacro",
  11674. height: math.unit(100, "miles")
  11675. },
  11676. {
  11677. name: "Continent Sized",
  11678. height: math.unit(2800, "miles")
  11679. },
  11680. {
  11681. name: "Earth Sized",
  11682. height: math.unit(8000, "miles")
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(6, "feet"),
  11691. weight: math.unit(250, "lb"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/alexi/front.svg",
  11695. extra: 3483 / 3291,
  11696. bottom: 0.04
  11697. }
  11698. },
  11699. back: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(250, "lb"),
  11702. name: "Back",
  11703. image: {
  11704. source: "./media/characters/alexi/back.svg",
  11705. extra: 3533 / 3356,
  11706. bottom: 0.021
  11707. }
  11708. },
  11709. frontTransforming: {
  11710. height: math.unit(8.58, "feet"),
  11711. weight: math.unit(1300, "lb"),
  11712. name: "Transforming",
  11713. image: {
  11714. source: "./media/characters/alexi/front-transforming.svg",
  11715. extra: 437 / 409,
  11716. bottom: 19 / 458.66
  11717. }
  11718. },
  11719. frontTransformed: {
  11720. height: math.unit(12.5, "feet"),
  11721. weight: math.unit(4000, "lb"),
  11722. name: "Transformed",
  11723. image: {
  11724. source: "./media/characters/alexi/front-transformed.svg",
  11725. extra: 639 / 614,
  11726. bottom: 30.55 / 671
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(14, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Minimacro",
  11738. height: math.unit(30, "meters")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(500, "meters")
  11743. },
  11744. {
  11745. name: "Megamacro",
  11746. height: math.unit(9000, "km")
  11747. },
  11748. {
  11749. name: "Teramacro",
  11750. height: math.unit(384000, "km")
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11756. {
  11757. front: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(150, "lb"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/kayroo/front.svg",
  11763. extra: 1153 / 1038,
  11764. bottom: 0.06
  11765. }
  11766. },
  11767. foot: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Foot",
  11771. image: {
  11772. source: "./media/characters/kayroo/foot.svg"
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(8, "feet"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Minimacro",
  11784. height: math.unit(250, "feet")
  11785. },
  11786. {
  11787. name: "Macro",
  11788. height: math.unit(2800, "feet")
  11789. },
  11790. {
  11791. name: "Megamacro",
  11792. height: math.unit(5200, "feet")
  11793. },
  11794. {
  11795. name: "Gigamacro",
  11796. height: math.unit(27000, "feet")
  11797. },
  11798. {
  11799. name: "Omega",
  11800. height: math.unit(45000, "feet")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(18, "feet"),
  11809. weight: math.unit(5800, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/rhys/front.svg",
  11813. extra: 3386 / 3090,
  11814. bottom: 0.07
  11815. }
  11816. },
  11817. },
  11818. [
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(18, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Working Size",
  11826. height: math.unit(200, "feet")
  11827. },
  11828. {
  11829. name: "Demolition Size",
  11830. height: math.unit(2000, "feet")
  11831. },
  11832. {
  11833. name: "Maximum Licensed Size",
  11834. height: math.unit(5, "miles")
  11835. },
  11836. {
  11837. name: "Maximum Observed Size",
  11838. height: math.unit(10, "yottameters")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(250, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/toto/front.svg",
  11851. extra: 527 / 479,
  11852. bottom: 0.05
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Micro",
  11859. height: math.unit(3, "feet")
  11860. },
  11861. {
  11862. name: "Normal",
  11863. height: math.unit(10, "feet")
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(150, "feet"),
  11868. default: true
  11869. },
  11870. {
  11871. name: "Megamacro",
  11872. height: math.unit(1200, "feet")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "King", species: ["lion"], tags: ["anthro"] },
  11878. {
  11879. back: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Back",
  11883. image: {
  11884. source: "./media/characters/king/back.svg"
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(2, "inches")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(8, "feet")
  11896. },
  11897. {
  11898. name: "Macro",
  11899. height: math.unit(200, "feet"),
  11900. default: true
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(50, "miles")
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11910. {
  11911. front: {
  11912. height: math.unit(11, "feet"),
  11913. weight: math.unit(1400, "lb"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/cordite/front.svg",
  11917. extra: 1919/1827,
  11918. bottom: 40/1959
  11919. }
  11920. },
  11921. side: {
  11922. height: math.unit(11, "feet"),
  11923. weight: math.unit(1400, "lb"),
  11924. name: "Side",
  11925. image: {
  11926. source: "./media/characters/cordite/side.svg",
  11927. extra: 1908/1793,
  11928. bottom: 38/1946
  11929. }
  11930. },
  11931. back: {
  11932. height: math.unit(11, "feet"),
  11933. weight: math.unit(1400, "lb"),
  11934. name: "Back",
  11935. image: {
  11936. source: "./media/characters/cordite/back.svg",
  11937. extra: 1938/1837,
  11938. bottom: 10/1948
  11939. }
  11940. },
  11941. feral: {
  11942. height: math.unit(2, "feet"),
  11943. weight: math.unit(90, "lb"),
  11944. name: "Feral",
  11945. image: {
  11946. source: "./media/characters/cordite/feral.svg",
  11947. extra: 1260 / 755,
  11948. bottom: 0.05
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Normal",
  11955. height: math.unit(11, "feet"),
  11956. default: true
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11962. {
  11963. front: {
  11964. height: math.unit(6, "feet"),
  11965. weight: math.unit(150, "lb"),
  11966. name: "Front",
  11967. image: {
  11968. source: "./media/characters/pianostrong/front.svg",
  11969. extra: 6577 / 6254,
  11970. bottom: 0.02
  11971. }
  11972. },
  11973. side: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Side",
  11977. image: {
  11978. source: "./media/characters/pianostrong/side.svg",
  11979. extra: 6106 / 5730
  11980. }
  11981. },
  11982. back: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(150, "lb"),
  11985. name: "Back",
  11986. image: {
  11987. source: "./media/characters/pianostrong/back.svg",
  11988. extra: 6085 / 5733,
  11989. bottom: 0.01
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(100, "feet")
  11997. },
  11998. {
  11999. name: "Macro+",
  12000. height: math.unit(300, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Macro++",
  12005. height: math.unit(1000, "feet")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/kona/front.svg",
  12018. extra: 2960 / 2629,
  12019. bottom: 0.005
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(11 + 8 / 12, "feet")
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(850, "feet"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Macro+",
  12035. height: math.unit(1.5, "km"),
  12036. default: true
  12037. },
  12038. {
  12039. name: "Megamacro",
  12040. height: math.unit(80, "miles")
  12041. },
  12042. {
  12043. name: "Gigamacro",
  12044. height: math.unit(3500, "miles")
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12050. {
  12051. side: {
  12052. height: math.unit(1.9, "meters"),
  12053. weight: math.unit(326, "kg"),
  12054. name: "Side",
  12055. image: {
  12056. source: "./media/characters/levi/side.svg",
  12057. extra: 1704 / 1334,
  12058. bottom: 0.02
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(1.9, "meters"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(20, "meters")
  12071. },
  12072. {
  12073. name: "Macro+",
  12074. height: math.unit(200, "meters")
  12075. },
  12076. {
  12077. name: "Megamacro",
  12078. height: math.unit(2, "km")
  12079. },
  12080. {
  12081. name: "Megamacro+",
  12082. height: math.unit(20, "km")
  12083. },
  12084. {
  12085. name: "Gigamacro",
  12086. height: math.unit(2500, "km")
  12087. },
  12088. {
  12089. name: "Gigamacro+",
  12090. height: math.unit(120000, "km")
  12091. },
  12092. {
  12093. name: "Teramacro",
  12094. height: math.unit(7.77e6, "km")
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(6 + 4/12, "feet"),
  12103. weight: math.unit(190, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/bmc/front.svg",
  12107. extra: 1626/1472,
  12108. bottom: 79/1705
  12109. }
  12110. },
  12111. back: {
  12112. height: math.unit(6 + 4/12, "feet"),
  12113. weight: math.unit(190, "lb"),
  12114. name: "Back",
  12115. image: {
  12116. source: "./media/characters/bmc/back.svg",
  12117. extra: 1640/1479,
  12118. bottom: 45/1685
  12119. }
  12120. },
  12121. frontArmor: {
  12122. height: math.unit(6 + 4/12, "feet"),
  12123. weight: math.unit(190, "lb"),
  12124. name: "Front-armor",
  12125. image: {
  12126. source: "./media/characters/bmc/front-armor.svg",
  12127. extra: 1538/1468,
  12128. bottom: 79/1617
  12129. }
  12130. },
  12131. },
  12132. [
  12133. {
  12134. name: "Human-sized",
  12135. height: math.unit(6 + 4 / 12, "feet")
  12136. },
  12137. {
  12138. name: "Interactive Size",
  12139. height: math.unit(25, "feet")
  12140. },
  12141. {
  12142. name: "Small",
  12143. height: math.unit(250, "feet")
  12144. },
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(1250, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Good Day",
  12152. height: math.unit(88, "miles")
  12153. },
  12154. {
  12155. name: "Largest Measured Size",
  12156. height: math.unit(105.960, "galaxies")
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12162. {
  12163. front: {
  12164. height: math.unit(20, "feet"),
  12165. weight: math.unit(2016, "kg"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/sven-the-kaiju/front.svg",
  12169. extra: 1277/1250,
  12170. bottom: 35/1312
  12171. }
  12172. },
  12173. mouth: {
  12174. height: math.unit(1.85, "feet"),
  12175. name: "Mouth",
  12176. image: {
  12177. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Fairy",
  12184. height: math.unit(6, "inches")
  12185. },
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(20, "feet"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Rampage",
  12193. height: math.unit(200, "feet")
  12194. },
  12195. {
  12196. name: "Archfey Forest Guardian",
  12197. height: math.unit(1, "mile")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(4, "meters"),
  12206. weight: math.unit(2, "tons"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/marik/front.svg",
  12210. extra: 1057 / 1003,
  12211. bottom: 0.08
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Normal",
  12218. height: math.unit(4, "meters"),
  12219. default: true
  12220. },
  12221. {
  12222. name: "Macro",
  12223. height: math.unit(20, "meters")
  12224. },
  12225. {
  12226. name: "Megamacro",
  12227. height: math.unit(50, "km")
  12228. },
  12229. {
  12230. name: "Gigamacro",
  12231. height: math.unit(100, "km")
  12232. },
  12233. {
  12234. name: "Alpha Macro",
  12235. height: math.unit(7.88e7, "yottameters")
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(6, "feet"),
  12244. weight: math.unit(110, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/mel/front.svg",
  12248. extra: 736 / 617,
  12249. bottom: 0.017
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Pico",
  12256. height: math.unit(3, "pm")
  12257. },
  12258. {
  12259. name: "Nano",
  12260. height: math.unit(3, "nm")
  12261. },
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(0.3, "mm"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Micro+",
  12269. height: math.unit(3, "mm")
  12270. },
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(5 + 10.5 / 12, "feet")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12279. {
  12280. kaiju: {
  12281. height: math.unit(1.75, "meters"),
  12282. weight: math.unit(55, "kg"),
  12283. name: "Kaiju",
  12284. image: {
  12285. source: "./media/characters/lykonous/kaiju.svg",
  12286. extra: 1055 / 946,
  12287. bottom: 0.135
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(2.5, "meters"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Kaiju Dragon",
  12299. height: math.unit(60, "meters")
  12300. },
  12301. {
  12302. name: "Mega Kaiju",
  12303. height: math.unit(120, "km")
  12304. },
  12305. {
  12306. name: "Giga Kaiju",
  12307. height: math.unit(200, "megameters")
  12308. },
  12309. {
  12310. name: "Terra Kaiju",
  12311. height: math.unit(400, "gigameters")
  12312. },
  12313. {
  12314. name: "Kaiju Dragon God",
  12315. height: math.unit(13000, "exaparsecs")
  12316. },
  12317. ]
  12318. ))
  12319. characterMakers.push(() => makeCharacter(
  12320. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12321. {
  12322. front: {
  12323. height: math.unit(6, "feet"),
  12324. weight: math.unit(150, "lb"),
  12325. name: "Front",
  12326. image: {
  12327. source: "./media/characters/blü/front.svg",
  12328. extra: 1883 / 1564,
  12329. bottom: 0.031
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(13, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Big Boi",
  12341. height: math.unit(150, "meters")
  12342. },
  12343. {
  12344. name: "Mini Stomper",
  12345. height: math.unit(300, "meters")
  12346. },
  12347. {
  12348. name: "Macro",
  12349. height: math.unit(1000, "meters")
  12350. },
  12351. {
  12352. name: "Megamacro",
  12353. height: math.unit(11000, "meters")
  12354. },
  12355. {
  12356. name: "Gigamacro",
  12357. height: math.unit(11000, "km")
  12358. },
  12359. {
  12360. name: "Teramacro",
  12361. height: math.unit(420000, "km")
  12362. },
  12363. {
  12364. name: "Examacro",
  12365. height: math.unit(120, "parsecs")
  12366. },
  12367. {
  12368. name: "God Tho",
  12369. height: math.unit(98000000000, "parsecs")
  12370. },
  12371. ]
  12372. ))
  12373. characterMakers.push(() => makeCharacter(
  12374. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12375. {
  12376. taurFront: {
  12377. height: math.unit(6, "feet"),
  12378. weight: math.unit(200, "lb"),
  12379. name: "Taur (Front)",
  12380. image: {
  12381. source: "./media/characters/scales/taur-front.svg",
  12382. extra: 1,
  12383. bottom: 0.05
  12384. }
  12385. },
  12386. taurBack: {
  12387. height: math.unit(6, "feet"),
  12388. weight: math.unit(200, "lb"),
  12389. name: "Taur (Back)",
  12390. image: {
  12391. source: "./media/characters/scales/taur-back.svg",
  12392. extra: 1,
  12393. bottom: 0.08
  12394. }
  12395. },
  12396. anthro: {
  12397. height: math.unit(6 * 7 / 12, "feet"),
  12398. weight: math.unit(100, "lb"),
  12399. name: "Anthro",
  12400. image: {
  12401. source: "./media/characters/scales/anthro.svg",
  12402. extra: 1,
  12403. bottom: 0.06
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(12, "feet"),
  12411. default: true
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12417. {
  12418. front: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(150, "lb"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/koragos/front.svg",
  12424. extra: 841 / 794,
  12425. bottom: 0.035
  12426. }
  12427. },
  12428. back: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Back",
  12432. image: {
  12433. source: "./media/characters/koragos/back.svg",
  12434. extra: 841 / 810,
  12435. bottom: 0.022
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(6 + 11 / 12, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(490, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(10, "miles")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(50, "miles")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(6, "feet"),
  12464. weight: math.unit(250, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/xylrem/front.svg",
  12468. extra: 3323 / 3050,
  12469. bottom: 0.065
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Micro",
  12476. height: math.unit(4, "feet")
  12477. },
  12478. {
  12479. name: "Normal",
  12480. height: math.unit(16, "feet"),
  12481. default: true
  12482. },
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(2720, "feet")
  12486. },
  12487. {
  12488. name: "Megamacro",
  12489. height: math.unit(25000, "miles")
  12490. },
  12491. ]
  12492. ))
  12493. characterMakers.push(() => makeCharacter(
  12494. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12495. {
  12496. front: {
  12497. height: math.unit(8, "feet"),
  12498. weight: math.unit(250, "kg"),
  12499. name: "Front",
  12500. image: {
  12501. source: "./media/characters/ikideru/front.svg",
  12502. extra: 930 / 870,
  12503. bottom: 0.087
  12504. }
  12505. },
  12506. back: {
  12507. height: math.unit(8, "feet"),
  12508. weight: math.unit(250, "kg"),
  12509. name: "Back",
  12510. image: {
  12511. source: "./media/characters/ikideru/back.svg",
  12512. extra: 919 / 852,
  12513. bottom: 0.055
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Rare",
  12520. height: math.unit(8, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Playful Loom",
  12525. height: math.unit(80, "feet")
  12526. },
  12527. {
  12528. name: "City Leaner",
  12529. height: math.unit(230, "feet")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(2500, "feet")
  12534. },
  12535. {
  12536. name: "Gigamacro",
  12537. height: math.unit(26400, "feet")
  12538. },
  12539. {
  12540. name: "Tectonic Shifter",
  12541. height: math.unit(1.7, "megameters")
  12542. },
  12543. {
  12544. name: "Planet Carer",
  12545. height: math.unit(21, "megameters")
  12546. },
  12547. {
  12548. name: "God",
  12549. height: math.unit(11157.22, "parsecs")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(120, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/neo/front.svg"
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Micro",
  12568. height: math.unit(2, "inches"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Human Size",
  12573. height: math.unit(5 + 8 / 12, "feet")
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(13 + 10 / 12, "feet"),
  12582. weight: math.unit(5320, "lb"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/chauncey-chantz/front.svg",
  12586. extra: 1587 / 1435,
  12587. bottom: 0.02
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(13 + 10 / 12, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(45, "feet")
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(250, "miles")
  12604. },
  12605. {
  12606. name: "Planetary",
  12607. height: math.unit(10000, "miles")
  12608. },
  12609. {
  12610. name: "Galactic",
  12611. height: math.unit(40000, "parsecs")
  12612. },
  12613. {
  12614. name: "Universal",
  12615. height: math.unit(1, "yottameter")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/epifox/front.svg",
  12628. extra: 1,
  12629. bottom: 0.075
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Micro",
  12636. height: math.unit(6, "inches")
  12637. },
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(12, "feet"),
  12641. default: true
  12642. },
  12643. {
  12644. name: "Macro",
  12645. height: math.unit(3810, "feet")
  12646. },
  12647. {
  12648. name: "Megamacro",
  12649. height: math.unit(500, "miles")
  12650. },
  12651. ]
  12652. ))
  12653. characterMakers.push(() => makeCharacter(
  12654. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12655. {
  12656. front: {
  12657. height: math.unit(1.8796, "m"),
  12658. weight: math.unit(230, "lb"),
  12659. name: "Front",
  12660. image: {
  12661. source: "./media/characters/colin-t/front.svg",
  12662. extra: 1272 / 1193,
  12663. bottom: 0.07
  12664. }
  12665. },
  12666. },
  12667. [
  12668. {
  12669. name: "Micro",
  12670. height: math.unit(0.571, "meters")
  12671. },
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(1.8796, "meters"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Tall",
  12679. height: math.unit(4, "meters")
  12680. },
  12681. {
  12682. name: "Macro",
  12683. height: math.unit(67.241, "meters")
  12684. },
  12685. {
  12686. name: "Megamacro",
  12687. height: math.unit(371.856, "meters")
  12688. },
  12689. {
  12690. name: "Planetary",
  12691. height: math.unit(12631.5689, "km")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(1.85, "meters"),
  12700. weight: math.unit(80, "kg"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/matvei/front.svg",
  12704. extra: 614 / 594,
  12705. bottom: 0.01
  12706. }
  12707. },
  12708. },
  12709. [
  12710. {
  12711. name: "Normal",
  12712. height: math.unit(1.85, "meters"),
  12713. default: true
  12714. },
  12715. ]
  12716. ))
  12717. characterMakers.push(() => makeCharacter(
  12718. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12719. {
  12720. front: {
  12721. height: math.unit(5 + 9 / 12, "feet"),
  12722. weight: math.unit(70, "lb"),
  12723. name: "Front",
  12724. image: {
  12725. source: "./media/characters/quincy/front.svg",
  12726. extra: 3041 / 2751
  12727. }
  12728. },
  12729. back: {
  12730. height: math.unit(5 + 9 / 12, "feet"),
  12731. weight: math.unit(70, "lb"),
  12732. name: "Back",
  12733. image: {
  12734. source: "./media/characters/quincy/back.svg",
  12735. extra: 3041 / 2751
  12736. }
  12737. },
  12738. flying: {
  12739. height: math.unit(5 + 4 / 12, "feet"),
  12740. weight: math.unit(70, "lb"),
  12741. name: "Flying",
  12742. image: {
  12743. source: "./media/characters/quincy/flying.svg",
  12744. extra: 1044 / 930
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Micro",
  12751. height: math.unit(3, "cm")
  12752. },
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(5 + 9 / 12, "feet")
  12756. },
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(200, "meters"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(1000, "meters")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(3 + 11/12, "feet"),
  12773. weight: math.unit(50, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/vanrel/front.svg",
  12777. extra: 1104/949,
  12778. bottom: 52/1156
  12779. }
  12780. },
  12781. back: {
  12782. height: math.unit(3 + 11/12, "feet"),
  12783. weight: math.unit(50, "lb"),
  12784. name: "Back",
  12785. image: {
  12786. source: "./media/characters/vanrel/back.svg",
  12787. extra: 1119/976,
  12788. bottom: 37/1156
  12789. }
  12790. },
  12791. tome: {
  12792. height: math.unit(1.35, "feet"),
  12793. weight: math.unit(10, "lb"),
  12794. name: "Vanrel's Tome",
  12795. rename: true,
  12796. image: {
  12797. source: "./media/characters/vanrel/tome.svg"
  12798. }
  12799. },
  12800. beans: {
  12801. height: math.unit(0.89, "feet"),
  12802. name: "Beans",
  12803. image: {
  12804. source: "./media/characters/vanrel/beans.svg"
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(3 + 11/12, "feet"),
  12812. default: true
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(7 + 5 / 12, "feet"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/kuiper-vanrel/front.svg",
  12824. extra: 1219/1169,
  12825. bottom: 69/1288
  12826. }
  12827. },
  12828. back: {
  12829. height: math.unit(7 + 5 / 12, "feet"),
  12830. name: "Back",
  12831. image: {
  12832. source: "./media/characters/kuiper-vanrel/back.svg",
  12833. extra: 1236/1193,
  12834. bottom: 27/1263
  12835. }
  12836. },
  12837. foot: {
  12838. height: math.unit(0.55, "meters"),
  12839. name: "Foot",
  12840. image: {
  12841. source: "./media/characters/kuiper-vanrel/foot.svg",
  12842. }
  12843. },
  12844. battle: {
  12845. height: math.unit(6.824, "feet"),
  12846. name: "Battle",
  12847. image: {
  12848. source: "./media/characters/kuiper-vanrel/battle.svg",
  12849. extra: 1466 / 1327,
  12850. bottom: 29 / 1492.5
  12851. }
  12852. },
  12853. meerkui: {
  12854. height: math.unit(18, "inches"),
  12855. name: "Meerkui",
  12856. image: {
  12857. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12858. extra: 1354/1289,
  12859. bottom: 69/1423
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(7 + 5 / 12, "feet"),
  12867. default: true
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(8 + 5 / 12, "feet"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/keset-vanrel/front.svg",
  12879. extra: 1231/1148,
  12880. bottom: 82/1313
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(8 + 5 / 12, "feet"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/keset-vanrel/back.svg",
  12888. extra: 1240/1174,
  12889. bottom: 33/1273
  12890. }
  12891. },
  12892. hand: {
  12893. height: math.unit(0.6, "meters"),
  12894. name: "Hand",
  12895. image: {
  12896. source: "./media/characters/keset-vanrel/hand.svg"
  12897. }
  12898. },
  12899. foot: {
  12900. height: math.unit(0.94978, "meters"),
  12901. name: "Foot",
  12902. image: {
  12903. source: "./media/characters/keset-vanrel/foot.svg"
  12904. }
  12905. },
  12906. battle: {
  12907. height: math.unit(7.408, "feet"),
  12908. name: "Battle",
  12909. image: {
  12910. source: "./media/characters/keset-vanrel/battle.svg",
  12911. extra: 1890 / 1386,
  12912. bottom: 73.28 / 1970
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(8 + 5 / 12, "feet"),
  12920. default: true
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(150, "lb"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/neos/front.svg",
  12933. extra: 1696 / 992,
  12934. bottom: 0.14
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(54, "cm"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(100, "m")
  12947. },
  12948. {
  12949. name: "Megamacro",
  12950. height: math.unit(10, "km")
  12951. },
  12952. {
  12953. name: "Megamacro+",
  12954. height: math.unit(100, "km")
  12955. },
  12956. {
  12957. name: "Gigamacro",
  12958. height: math.unit(100, "Mm")
  12959. },
  12960. {
  12961. name: "Teramacro",
  12962. height: math.unit(100, "Gm")
  12963. },
  12964. {
  12965. name: "Examacro",
  12966. height: math.unit(100, "Em")
  12967. },
  12968. {
  12969. name: "Godly",
  12970. height: math.unit(10000, "Ym")
  12971. },
  12972. {
  12973. name: "Beyond Godly",
  12974. height: math.unit(25, "multiverses")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12980. {
  12981. feminine: {
  12982. height: math.unit(5, "feet"),
  12983. weight: math.unit(100, "lb"),
  12984. name: "Feminine",
  12985. image: {
  12986. source: "./media/characters/sammy-mouse/feminine.svg",
  12987. extra: 2526 / 2425,
  12988. bottom: 0.123
  12989. }
  12990. },
  12991. masculine: {
  12992. height: math.unit(5, "feet"),
  12993. weight: math.unit(100, "lb"),
  12994. name: "Masculine",
  12995. image: {
  12996. source: "./media/characters/sammy-mouse/masculine.svg",
  12997. extra: 2526 / 2425,
  12998. bottom: 0.123
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Micro",
  13005. height: math.unit(5, "inches")
  13006. },
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(5, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(60, "feet")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(4, "feet"),
  13023. weight: math.unit(50, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/kole/front.svg",
  13027. extra: 1423 / 1303,
  13028. bottom: 0.025
  13029. }
  13030. },
  13031. back: {
  13032. height: math.unit(4, "feet"),
  13033. weight: math.unit(50, "lb"),
  13034. name: "Back",
  13035. image: {
  13036. source: "./media/characters/kole/back.svg",
  13037. extra: 1426 / 1280,
  13038. bottom: 0.02
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(4, "feet"),
  13046. default: true
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(2.5, "feet"),
  13055. weight: math.unit(32, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/rufran/front.svg",
  13059. extra: 1313/885,
  13060. bottom: 94/1407
  13061. }
  13062. },
  13063. side: {
  13064. height: math.unit(2.5, "feet"),
  13065. weight: math.unit(32, "lb"),
  13066. name: "Side",
  13067. image: {
  13068. source: "./media/characters/rufran/side.svg",
  13069. extra: 1109/852,
  13070. bottom: 118/1227
  13071. }
  13072. },
  13073. back: {
  13074. height: math.unit(2.5, "feet"),
  13075. weight: math.unit(32, "lb"),
  13076. name: "Back",
  13077. image: {
  13078. source: "./media/characters/rufran/back.svg",
  13079. extra: 1280/878,
  13080. bottom: 131/1411
  13081. }
  13082. },
  13083. mouth: {
  13084. height: math.unit(1.13, "feet"),
  13085. name: "Mouth",
  13086. image: {
  13087. source: "./media/characters/rufran/mouth.svg"
  13088. }
  13089. },
  13090. foot: {
  13091. height: math.unit(1.33, "feet"),
  13092. name: "Foot",
  13093. image: {
  13094. source: "./media/characters/rufran/foot.svg"
  13095. }
  13096. },
  13097. koboldFront: {
  13098. height: math.unit(2 + 6 / 12, "feet"),
  13099. weight: math.unit(20, "lb"),
  13100. name: "Front (Kobold)",
  13101. image: {
  13102. source: "./media/characters/rufran/kobold-front.svg",
  13103. extra: 2041 / 1839,
  13104. bottom: 0.055
  13105. }
  13106. },
  13107. koboldBack: {
  13108. height: math.unit(2 + 6 / 12, "feet"),
  13109. weight: math.unit(20, "lb"),
  13110. name: "Back (Kobold)",
  13111. image: {
  13112. source: "./media/characters/rufran/kobold-back.svg",
  13113. extra: 2054 / 1839,
  13114. bottom: 0.01
  13115. }
  13116. },
  13117. koboldHand: {
  13118. height: math.unit(0.2166, "meters"),
  13119. name: "Hand (Kobold)",
  13120. image: {
  13121. source: "./media/characters/rufran/kobold-hand.svg"
  13122. }
  13123. },
  13124. koboldFoot: {
  13125. height: math.unit(0.185, "meters"),
  13126. name: "Foot (Kobold)",
  13127. image: {
  13128. source: "./media/characters/rufran/kobold-foot.svg"
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Micro",
  13135. height: math.unit(1, "inch")
  13136. },
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(2 + 6 / 12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Big",
  13144. height: math.unit(60, "feet")
  13145. },
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(325, "feet")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(0.3, "meters"),
  13157. weight: math.unit(3.5, "kg"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/chip/front.svg",
  13161. extra: 748 / 674
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Micro",
  13168. height: math.unit(1, "inch"),
  13169. default: true
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13175. {
  13176. side: {
  13177. height: math.unit(2.3, "meters"),
  13178. weight: math.unit(3500, "lb"),
  13179. name: "Side",
  13180. image: {
  13181. source: "./media/characters/torvid/side.svg",
  13182. extra: 1972 / 722,
  13183. bottom: 0.035
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Normal",
  13190. height: math.unit(2.3, "meters"),
  13191. default: true
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(2, "meters"),
  13200. weight: math.unit(150.5, "kg"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/susan/front.svg",
  13204. extra: 693 / 635,
  13205. bottom: 0.05
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Megamacro",
  13212. height: math.unit(505, "miles"),
  13213. default: true
  13214. },
  13215. ]
  13216. ))
  13217. characterMakers.push(() => makeCharacter(
  13218. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13219. {
  13220. front: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(150, "lb"),
  13223. name: "Front",
  13224. image: {
  13225. source: "./media/characters/raindrops/front.svg",
  13226. extra: 2655 / 2461,
  13227. bottom: 49 / 2705
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/raindrops/back.svg",
  13236. extra: 2574 / 2400,
  13237. bottom: 65 / 2634
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Micro",
  13244. height: math.unit(6, "inches")
  13245. },
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(6 + 2 / 12, "feet")
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(131, "feet"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(15, "miles")
  13258. },
  13259. {
  13260. name: "Gigamacro",
  13261. height: math.unit(4000, "miles")
  13262. },
  13263. {
  13264. name: "Teramacro",
  13265. height: math.unit(315000, "miles")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(2.794, "meters"),
  13274. weight: math.unit(325, "kg"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/tezwa/front.svg",
  13278. extra: 2083 / 1906,
  13279. bottom: 0.031
  13280. }
  13281. },
  13282. foot: {
  13283. height: math.unit(0.687, "meters"),
  13284. name: "Foot",
  13285. image: {
  13286. source: "./media/characters/tezwa/foot.svg"
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(9 + 2 / 12, "feet"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(58, "feet"),
  13303. weight: math.unit(89000, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/typhus/front.svg",
  13307. extra: 816 / 800,
  13308. bottom: 0.065
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(58, "feet"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(12, "feet"),
  13325. weight: math.unit(6, "tonnes"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/lyra-von-wulf/front.svg",
  13329. extra: 1,
  13330. bottom: 0.10
  13331. }
  13332. },
  13333. frontMecha: {
  13334. height: math.unit(12, "feet"),
  13335. weight: math.unit(12, "tonnes"),
  13336. name: "Front (Mecha)",
  13337. image: {
  13338. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13339. extra: 1,
  13340. bottom: 0.042
  13341. }
  13342. },
  13343. maw: {
  13344. height: math.unit(2.2, "feet"),
  13345. name: "Maw",
  13346. image: {
  13347. source: "./media/characters/lyra-von-wulf/maw.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(12, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Classic",
  13359. height: math.unit(50, "feet")
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(500, "feet")
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(1, "mile")
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(400, "miles")
  13372. },
  13373. {
  13374. name: "Teramacro",
  13375. height: math.unit(22000, "miles")
  13376. },
  13377. {
  13378. name: "Solarmacro",
  13379. height: math.unit(8600000, "miles")
  13380. },
  13381. {
  13382. name: "Galactic",
  13383. height: math.unit(1057000, "lightyears")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6 + 10 / 12, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/dixon/front.svg",
  13396. extra: 3361 / 3209,
  13397. bottom: 0.01
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(6 + 10 / 12, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Big",
  13409. height: math.unit(12, "meters")
  13410. },
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(500, "meters")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(2, "km")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(185, "cm"),
  13426. weight: math.unit(68, "kg"),
  13427. name: "Front",
  13428. image: {
  13429. source: "./media/characters/kauko/front.svg",
  13430. extra: 1455 / 1421,
  13431. bottom: 0.03
  13432. }
  13433. },
  13434. back: {
  13435. height: math.unit(185, "cm"),
  13436. weight: math.unit(68, "kg"),
  13437. name: "Back",
  13438. image: {
  13439. source: "./media/characters/kauko/back.svg",
  13440. extra: 1455 / 1421,
  13441. bottom: 0.004
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Normal",
  13448. height: math.unit(185, "cm"),
  13449. default: true
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(150, "kg"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/varg/front.svg",
  13462. extra: 1108 / 1018,
  13463. bottom: 0.0375
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(5, "meters")
  13471. },
  13472. {
  13473. name: "Macro",
  13474. height: math.unit(200, "meters")
  13475. },
  13476. {
  13477. name: "Megamacro",
  13478. height: math.unit(20, "kilometers")
  13479. },
  13480. {
  13481. name: "True Size",
  13482. height: math.unit(211, "km"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Gigamacro",
  13487. height: math.unit(1000, "km")
  13488. },
  13489. {
  13490. name: "Gigamacro+",
  13491. height: math.unit(8000, "km")
  13492. },
  13493. {
  13494. name: "Teramacro",
  13495. height: math.unit(1000000, "km")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13501. {
  13502. front: {
  13503. height: math.unit(7 + 7 / 12, "feet"),
  13504. weight: math.unit(267, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/dayza/front.svg",
  13508. extra: 1262 / 1200,
  13509. bottom: 0.035
  13510. }
  13511. },
  13512. side: {
  13513. height: math.unit(7 + 7 / 12, "feet"),
  13514. weight: math.unit(267, "lb"),
  13515. name: "Side",
  13516. image: {
  13517. source: "./media/characters/dayza/side.svg",
  13518. extra: 1295 / 1245,
  13519. bottom: 0.05
  13520. }
  13521. },
  13522. back: {
  13523. height: math.unit(7 + 7 / 12, "feet"),
  13524. weight: math.unit(267, "lb"),
  13525. name: "Back",
  13526. image: {
  13527. source: "./media/characters/dayza/back.svg",
  13528. extra: 1241 / 1170
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Normal",
  13535. height: math.unit(7 + 7 / 12, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(155, "feet")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6 + 5 / 12, "feet"),
  13549. weight: math.unit(160, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/xanthos/front.svg",
  13553. extra: 1,
  13554. bottom: 0.04
  13555. }
  13556. },
  13557. back: {
  13558. height: math.unit(6 + 5 / 12, "feet"),
  13559. weight: math.unit(160, "lb"),
  13560. name: "Back",
  13561. image: {
  13562. source: "./media/characters/xanthos/back.svg",
  13563. extra: 1,
  13564. bottom: 0.03
  13565. }
  13566. },
  13567. hand: {
  13568. height: math.unit(0.928, "feet"),
  13569. name: "Hand",
  13570. image: {
  13571. source: "./media/characters/xanthos/hand.svg"
  13572. }
  13573. },
  13574. foot: {
  13575. height: math.unit(1.286, "feet"),
  13576. name: "Foot",
  13577. image: {
  13578. source: "./media/characters/xanthos/foot.svg"
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(6 + 5 / 12, "feet"),
  13586. default: true
  13587. },
  13588. {
  13589. name: "Normal+",
  13590. height: math.unit(6, "meters")
  13591. },
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(40, "feet")
  13595. },
  13596. {
  13597. name: "Macro+",
  13598. height: math.unit(200, "meters")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(20, "km")
  13603. },
  13604. {
  13605. name: "Megamacro+",
  13606. height: math.unit(100, "km")
  13607. },
  13608. {
  13609. name: "Gigamacro",
  13610. height: math.unit(200, "megameters")
  13611. },
  13612. {
  13613. name: "Gigamacro+",
  13614. height: math.unit(1.5, "gigameters")
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13620. {
  13621. front: {
  13622. height: math.unit(6 + 3 / 12, "feet"),
  13623. weight: math.unit(215, "lb"),
  13624. name: "Front",
  13625. image: {
  13626. source: "./media/characters/grynn/front.svg",
  13627. extra: 4627 / 4209,
  13628. bottom: 0.047
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Micro",
  13635. height: math.unit(6, "inches")
  13636. },
  13637. {
  13638. name: "Normal",
  13639. height: math.unit(6 + 3 / 12, "feet"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Big",
  13644. height: math.unit(104, "feet")
  13645. },
  13646. {
  13647. name: "Macro",
  13648. height: math.unit(944, "feet")
  13649. },
  13650. {
  13651. name: "Macro+",
  13652. height: math.unit(9480, "feet")
  13653. },
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(78752, "feet")
  13657. },
  13658. {
  13659. name: "Megamacro+",
  13660. height: math.unit(630128, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro++",
  13664. height: math.unit(3150695, "feet")
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(7 + 5 / 12, "feet"),
  13673. weight: math.unit(450, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/mocha-aura/front.svg",
  13677. extra: 1907 / 1817,
  13678. bottom: 0.04
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(7 + 5 / 12, "feet"),
  13683. weight: math.unit(450, "lb"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/mocha-aura/back.svg",
  13687. extra: 1900 / 1825,
  13688. bottom: 0.045
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Nano",
  13695. height: math.unit(1, "nm")
  13696. },
  13697. {
  13698. name: "Megamicro",
  13699. height: math.unit(1, "mm")
  13700. },
  13701. {
  13702. name: "Micro",
  13703. height: math.unit(3, "inches")
  13704. },
  13705. {
  13706. name: "Normal",
  13707. height: math.unit(7 + 5 / 12, "feet"),
  13708. default: true
  13709. },
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(30, "feet")
  13713. },
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(3500, "feet")
  13717. },
  13718. {
  13719. name: "Teramacro",
  13720. height: math.unit(500000, "miles")
  13721. },
  13722. {
  13723. name: "Petamacro",
  13724. height: math.unit(50000000000000000, "parsecs")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(150, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/ilisha-devya/front.svg",
  13737. extra: 1053/1049,
  13738. bottom: 270/1323
  13739. }
  13740. },
  13741. back: {
  13742. height: math.unit(6, "feet"),
  13743. weight: math.unit(150, "lb"),
  13744. name: "Back",
  13745. image: {
  13746. source: "./media/characters/ilisha-devya/back.svg",
  13747. extra: 1131/1128,
  13748. bottom: 39/1170
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(500, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Megamacro",
  13760. height: math.unit(10, "miles")
  13761. },
  13762. {
  13763. name: "Gigamacro",
  13764. height: math.unit(100000, "miles")
  13765. },
  13766. {
  13767. name: "Examacro",
  13768. height: math.unit(1e9, "lightyears")
  13769. },
  13770. {
  13771. name: "Omniversal",
  13772. height: math.unit(1e33, "lightyears")
  13773. },
  13774. {
  13775. name: "Beyond Infinite",
  13776. height: math.unit(1e100, "lightyears")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13782. {
  13783. Side: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Side",
  13787. image: {
  13788. source: "./media/characters/mira/side.svg",
  13789. extra: 900 / 799,
  13790. bottom: 0.02
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Human Size",
  13797. height: math.unit(6, "feet")
  13798. },
  13799. {
  13800. name: "Macro",
  13801. height: math.unit(100, "feet"),
  13802. default: true
  13803. },
  13804. {
  13805. name: "Megamacro",
  13806. height: math.unit(10, "miles")
  13807. },
  13808. {
  13809. name: "Gigamacro",
  13810. height: math.unit(25000, "miles")
  13811. },
  13812. {
  13813. name: "Teramacro",
  13814. height: math.unit(300, "AU")
  13815. },
  13816. {
  13817. name: "Full Size",
  13818. height: math.unit(4.5e10, "lightyears")
  13819. },
  13820. ]
  13821. ))
  13822. characterMakers.push(() => makeCharacter(
  13823. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13824. {
  13825. front: {
  13826. height: math.unit(6, "feet"),
  13827. weight: math.unit(150, "lb"),
  13828. name: "Front",
  13829. image: {
  13830. source: "./media/characters/holly/front.svg",
  13831. extra: 639 / 606
  13832. }
  13833. },
  13834. back: {
  13835. height: math.unit(6, "feet"),
  13836. weight: math.unit(150, "lb"),
  13837. name: "Back",
  13838. image: {
  13839. source: "./media/characters/holly/back.svg",
  13840. extra: 623 / 598
  13841. }
  13842. },
  13843. frontWorking: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Front (Working)",
  13847. image: {
  13848. source: "./media/characters/holly/front-working.svg",
  13849. extra: 607 / 577,
  13850. bottom: 0.048
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Normal",
  13857. height: math.unit(12 + 3 / 12, "feet"),
  13858. default: true
  13859. },
  13860. ]
  13861. ))
  13862. characterMakers.push(() => makeCharacter(
  13863. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13864. {
  13865. front: {
  13866. height: math.unit(6, "feet"),
  13867. weight: math.unit(150, "lb"),
  13868. name: "Front",
  13869. image: {
  13870. source: "./media/characters/porter/front.svg",
  13871. extra: 1,
  13872. bottom: 0.01
  13873. }
  13874. },
  13875. frontRobes: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front (Robes)",
  13879. image: {
  13880. source: "./media/characters/porter/front-robes.svg",
  13881. extra: 1.01,
  13882. bottom: 0.01
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Normal",
  13889. height: math.unit(11 + 9 / 12, "feet"),
  13890. default: true
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13896. {
  13897. legendary: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Legendary",
  13901. image: {
  13902. source: "./media/characters/lucy/legendary.svg",
  13903. extra: 1355 / 1100,
  13904. bottom: 0.045
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Legendary",
  13911. height: math.unit(86882 * 2, "miles"),
  13912. default: true
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/drusilla/front.svg",
  13925. extra: 678 / 635,
  13926. bottom: 0.03
  13927. }
  13928. },
  13929. back: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Back",
  13933. image: {
  13934. source: "./media/characters/drusilla/back.svg",
  13935. extra: 678 / 635,
  13936. bottom: 0.005
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(100, "feet")
  13944. },
  13945. {
  13946. name: "Canon Height",
  13947. height: math.unit(2000, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(6, "feet"),
  13957. weight: math.unit(180, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/renard-thatch/front.svg",
  13961. extra: 2411 / 2275,
  13962. bottom: 0.01
  13963. }
  13964. },
  13965. frontPosing: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(180, "lb"),
  13968. name: "Front (Posing)",
  13969. image: {
  13970. source: "./media/characters/renard-thatch/front-posing.svg",
  13971. extra: 2381 / 2261,
  13972. bottom: 0.01
  13973. }
  13974. },
  13975. back: {
  13976. height: math.unit(6, "feet"),
  13977. weight: math.unit(180, "lb"),
  13978. name: "Back",
  13979. image: {
  13980. source: "./media/characters/renard-thatch/back.svg",
  13981. extra: 2428 / 2288
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Micro",
  13988. height: math.unit(3, "inches")
  13989. },
  13990. {
  13991. name: "Default",
  13992. height: math.unit(6, "feet"),
  13993. default: true
  13994. },
  13995. {
  13996. name: "Macro",
  13997. height: math.unit(75, "feet")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(1450, "feet"),
  14006. weight: math.unit(1.21e6, "tons"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/sekvra/front.svg",
  14010. extra: 1193/1190,
  14011. bottom: 78/1271
  14012. }
  14013. },
  14014. side: {
  14015. height: math.unit(1450, "feet"),
  14016. weight: math.unit(1.21e6, "tons"),
  14017. name: "Side",
  14018. image: {
  14019. source: "./media/characters/sekvra/side.svg",
  14020. extra: 1193/1190,
  14021. bottom: 52/1245
  14022. }
  14023. },
  14024. back: {
  14025. height: math.unit(1450, "feet"),
  14026. weight: math.unit(1.21e6, "tons"),
  14027. name: "Back",
  14028. image: {
  14029. source: "./media/characters/sekvra/back.svg",
  14030. extra: 1219/1216,
  14031. bottom: 21/1240
  14032. }
  14033. },
  14034. frontClothed: {
  14035. height: math.unit(1450, "feet"),
  14036. weight: math.unit(1.21e6, "tons"),
  14037. name: "Front (Clothed)",
  14038. image: {
  14039. source: "./media/characters/sekvra/front-clothed.svg",
  14040. extra: 1192/1189,
  14041. bottom: 79/1271
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Macro",
  14048. height: math.unit(1450, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(15000, "feet")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/carmine/front.svg",
  14066. extra: 1,
  14067. bottom: 0.035
  14068. }
  14069. },
  14070. frontArmor: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front (Armor)",
  14074. image: {
  14075. source: "./media/characters/carmine/front-armor.svg",
  14076. extra: 1,
  14077. bottom: 0.035
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Large",
  14084. height: math.unit(1, "mile")
  14085. },
  14086. {
  14087. name: "Huge",
  14088. height: math.unit(40, "miles"),
  14089. default: true
  14090. },
  14091. {
  14092. name: "Colossal",
  14093. height: math.unit(2500, "miles")
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(6, "feet"),
  14102. weight: math.unit(150, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/elyssia/front.svg",
  14106. extra: 2201 / 2035,
  14107. bottom: 0.05
  14108. }
  14109. },
  14110. frontClothed: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(150, "lb"),
  14113. name: "Front (Clothed)",
  14114. image: {
  14115. source: "./media/characters/elyssia/front-clothed.svg",
  14116. extra: 2201 / 2035,
  14117. bottom: 0.05
  14118. }
  14119. },
  14120. back: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Back",
  14124. image: {
  14125. source: "./media/characters/elyssia/back.svg",
  14126. extra: 2201 / 2035,
  14127. bottom: 0.013
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Smaller",
  14134. height: math.unit(150, "feet")
  14135. },
  14136. {
  14137. name: "Standard",
  14138. height: math.unit(1400, "feet"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Distracted",
  14143. height: math.unit(15000, "feet")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(7 + 4/12, "feet"),
  14152. weight: math.unit(690, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/geno-maxwell/front.svg",
  14156. extra: 984/856,
  14157. bottom: 87/1071
  14158. }
  14159. },
  14160. back: {
  14161. height: math.unit(7 + 4/12, "feet"),
  14162. weight: math.unit(690, "lb"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/geno-maxwell/back.svg",
  14166. extra: 981/854,
  14167. bottom: 57/1038
  14168. }
  14169. },
  14170. frontCostume: {
  14171. height: math.unit(7 + 4/12, "feet"),
  14172. weight: math.unit(690, "lb"),
  14173. name: "Front (Costume)",
  14174. image: {
  14175. source: "./media/characters/geno-maxwell/front-costume.svg",
  14176. extra: 984/856,
  14177. bottom: 87/1071
  14178. }
  14179. },
  14180. backcostume: {
  14181. height: math.unit(7 + 4/12, "feet"),
  14182. weight: math.unit(690, "lb"),
  14183. name: "Back (Costume)",
  14184. image: {
  14185. source: "./media/characters/geno-maxwell/back-costume.svg",
  14186. extra: 981/854,
  14187. bottom: 57/1038
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Micro",
  14194. height: math.unit(3, "inches")
  14195. },
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(7 + 4 / 12, "feet"),
  14199. default: true
  14200. },
  14201. {
  14202. name: "Macro",
  14203. height: math.unit(220, "feet")
  14204. },
  14205. {
  14206. name: "Megamacro",
  14207. height: math.unit(11, "miles")
  14208. },
  14209. ]
  14210. ))
  14211. characterMakers.push(() => makeCharacter(
  14212. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14213. {
  14214. front: {
  14215. height: math.unit(7 + 4/12, "feet"),
  14216. weight: math.unit(750, "lb"),
  14217. name: "Front",
  14218. image: {
  14219. source: "./media/characters/regena-maxwell/front.svg",
  14220. extra: 984/856,
  14221. bottom: 87/1071
  14222. }
  14223. },
  14224. back: {
  14225. height: math.unit(7 + 4/12, "feet"),
  14226. weight: math.unit(750, "lb"),
  14227. name: "Back",
  14228. image: {
  14229. source: "./media/characters/regena-maxwell/back.svg",
  14230. extra: 981/854,
  14231. bottom: 57/1038
  14232. }
  14233. },
  14234. frontCostume: {
  14235. height: math.unit(7 + 4/12, "feet"),
  14236. weight: math.unit(750, "lb"),
  14237. name: "Front (Costume)",
  14238. image: {
  14239. source: "./media/characters/regena-maxwell/front-costume.svg",
  14240. extra: 984/856,
  14241. bottom: 87/1071
  14242. }
  14243. },
  14244. backcostume: {
  14245. height: math.unit(7 + 4/12, "feet"),
  14246. weight: math.unit(750, "lb"),
  14247. name: "Back (Costume)",
  14248. image: {
  14249. source: "./media/characters/regena-maxwell/back-costume.svg",
  14250. extra: 981/854,
  14251. bottom: 57/1038
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(7 + 4 / 12, "feet"),
  14259. default: true
  14260. },
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(220, "feet")
  14264. },
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(11, "miles")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14280. extra: 860 / 690,
  14281. bottom: 0.03
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(1.7, "meters"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/quilly/front.svg",
  14302. extra: 890 / 776
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Gigamacro",
  14309. height: math.unit(404090, "miles"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(7 + 8 / 12, "feet"),
  14319. weight: math.unit(350, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/tempest/front.svg",
  14323. extra: 1175 / 1086,
  14324. bottom: 0.02
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(7 + 8 / 12, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14338. {
  14339. side: {
  14340. height: math.unit(4 + 5 / 12, "feet"),
  14341. weight: math.unit(80, "lb"),
  14342. name: "Side",
  14343. image: {
  14344. source: "./media/characters/rodger/side.svg",
  14345. extra: 1235 / 1118
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(1, "inch")
  14353. },
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(4 + 5 / 12, "feet"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Macro",
  14361. height: math.unit(120, "feet")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/danyel/front.svg",
  14374. extra: 1185 / 1123,
  14375. bottom: 0.05
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Shrunken",
  14382. height: math.unit(0.5, "mm")
  14383. },
  14384. {
  14385. name: "Micro",
  14386. height: math.unit(1, "mm"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Upsized",
  14391. height: math.unit(5 + 5 / 12, "feet")
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14397. {
  14398. front: {
  14399. height: math.unit(5 + 6 / 12, "feet"),
  14400. weight: math.unit(200, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/vivian-bijoux/front.svg",
  14404. extra: 1217/1209,
  14405. bottom: 76/1293
  14406. }
  14407. },
  14408. back: {
  14409. height: math.unit(5 + 6 / 12, "feet"),
  14410. weight: math.unit(200, "lb"),
  14411. name: "Back",
  14412. image: {
  14413. source: "./media/characters/vivian-bijoux/back.svg",
  14414. extra: 1214/1208,
  14415. bottom: 51/1265
  14416. }
  14417. },
  14418. dressed: {
  14419. height: math.unit(5 + 6 / 12, "feet"),
  14420. weight: math.unit(200, "lb"),
  14421. name: "Dressed",
  14422. image: {
  14423. source: "./media/characters/vivian-bijoux/dressed.svg",
  14424. extra: 1217/1209,
  14425. bottom: 76/1293
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(5 + 6 / 12, "feet"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Bad Dream",
  14437. height: math.unit(500, "feet")
  14438. },
  14439. {
  14440. name: "Nightmare",
  14441. height: math.unit(500, "miles")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6 + 1 / 12, "feet"),
  14450. weight: math.unit(260, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/zeta/front.svg",
  14454. extra: 1968 / 1889,
  14455. bottom: 0.06
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(6 + 1 / 12, "feet"),
  14460. weight: math.unit(260, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/zeta/back.svg",
  14464. extra: 1944 / 1858,
  14465. bottom: 0.03
  14466. }
  14467. },
  14468. hand: {
  14469. height: math.unit(1.112, "feet"),
  14470. name: "Hand",
  14471. image: {
  14472. source: "./media/characters/zeta/hand.svg"
  14473. }
  14474. },
  14475. foot: {
  14476. height: math.unit(1.48, "feet"),
  14477. name: "Foot",
  14478. image: {
  14479. source: "./media/characters/zeta/foot.svg"
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Micro",
  14486. height: math.unit(6, "inches")
  14487. },
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(6 + 1 / 12, "feet"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(20, "feet")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(150, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/jamie-larsen/front.svg",
  14508. extra: 962 / 933,
  14509. bottom: 0.02
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(150, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/jamie-larsen/back.svg",
  14518. extra: 997 / 946
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Macro",
  14525. height: math.unit(28 + 7 / 12, "feet"),
  14526. default: true
  14527. },
  14528. {
  14529. name: "Macro+",
  14530. height: math.unit(180, "feet")
  14531. },
  14532. {
  14533. name: "Megamacro",
  14534. height: math.unit(10, "miles")
  14535. },
  14536. {
  14537. name: "Gigamacro",
  14538. height: math.unit(200000, "miles")
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14544. {
  14545. front: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(120, "lb"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/vance/front.svg",
  14551. extra: 1980 / 1890,
  14552. bottom: 0.09
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(120, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/vance/back.svg",
  14561. extra: 2081 / 1994,
  14562. bottom: 0.014
  14563. }
  14564. },
  14565. hand: {
  14566. height: math.unit(0.88, "feet"),
  14567. name: "Hand",
  14568. image: {
  14569. source: "./media/characters/vance/hand.svg"
  14570. }
  14571. },
  14572. foot: {
  14573. height: math.unit(0.64, "feet"),
  14574. name: "Foot",
  14575. image: {
  14576. source: "./media/characters/vance/foot.svg"
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Small",
  14583. height: math.unit(90, "feet"),
  14584. default: true
  14585. },
  14586. {
  14587. name: "Macro",
  14588. height: math.unit(100, "meters")
  14589. },
  14590. {
  14591. name: "Megamacro",
  14592. height: math.unit(15, "miles")
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(180, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/xochitl/front.svg",
  14605. extra: 2297 / 2261,
  14606. bottom: 0.065
  14607. }
  14608. },
  14609. back: {
  14610. height: math.unit(6, "feet"),
  14611. weight: math.unit(180, "lb"),
  14612. name: "Back",
  14613. image: {
  14614. source: "./media/characters/xochitl/back.svg",
  14615. extra: 2386 / 2354,
  14616. bottom: 0.01
  14617. }
  14618. },
  14619. foot: {
  14620. height: math.unit(6 / 5 * 1.15, "feet"),
  14621. weight: math.unit(150, "lb"),
  14622. name: "Foot",
  14623. image: {
  14624. source: "./media/characters/xochitl/foot.svg"
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Macro",
  14631. height: math.unit(80, "feet")
  14632. },
  14633. {
  14634. name: "Macro+",
  14635. height: math.unit(400, "feet"),
  14636. default: true
  14637. },
  14638. {
  14639. name: "Gigamacro",
  14640. height: math.unit(80000, "miles")
  14641. },
  14642. {
  14643. name: "Gigamacro+",
  14644. height: math.unit(400000, "miles")
  14645. },
  14646. {
  14647. name: "Teramacro",
  14648. height: math.unit(300, "AU")
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/vincent/front.svg",
  14661. extra: 1130 / 1080,
  14662. bottom: 0.055
  14663. }
  14664. },
  14665. beak: {
  14666. height: math.unit(6 * 0.1, "feet"),
  14667. name: "Beak",
  14668. image: {
  14669. source: "./media/characters/vincent/beak.svg"
  14670. }
  14671. },
  14672. hand: {
  14673. height: math.unit(6 * 0.85, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Hand",
  14676. image: {
  14677. source: "./media/characters/vincent/hand.svg"
  14678. }
  14679. },
  14680. foot: {
  14681. height: math.unit(6 * 0.19, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Foot",
  14684. image: {
  14685. source: "./media/characters/vincent/foot.svg"
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Base",
  14692. height: math.unit(6 + 5 / 12, "feet"),
  14693. default: true
  14694. },
  14695. {
  14696. name: "Macro",
  14697. height: math.unit(300, "feet")
  14698. },
  14699. {
  14700. name: "Megamacro",
  14701. height: math.unit(2, "miles")
  14702. },
  14703. {
  14704. name: "Gigamacro",
  14705. height: math.unit(1000, "miles")
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(2, "meters"),
  14714. weight: math.unit(500, "kg"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/coatl/front.svg",
  14718. extra: 3948 / 3500,
  14719. bottom: 0.082
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Normal",
  14726. height: math.unit(4, "meters")
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(100, "meters"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Macro+",
  14735. height: math.unit(300, "meters")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(3, "gigameters")
  14740. },
  14741. {
  14742. name: "Megamacro+",
  14743. height: math.unit(300, "terameters")
  14744. },
  14745. {
  14746. name: "Megamacro++",
  14747. height: math.unit(3, "lightyears")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(50, "kg"),
  14757. name: "front",
  14758. image: {
  14759. source: "./media/characters/shiroryu/front.svg",
  14760. extra: 1990 / 1935
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Mortal Mingling",
  14767. height: math.unit(3, "meters")
  14768. },
  14769. {
  14770. name: "Kaiju-ish",
  14771. height: math.unit(250, "meters")
  14772. },
  14773. {
  14774. name: "Somewhat Godly",
  14775. height: math.unit(400, "km"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Planetary",
  14780. height: math.unit(300, "megameters")
  14781. },
  14782. {
  14783. name: "Galaxy-dwarfing",
  14784. height: math.unit(450, "kiloparsecs")
  14785. },
  14786. {
  14787. name: "Universe Eater",
  14788. height: math.unit(150, "gigaparsecs")
  14789. },
  14790. {
  14791. name: "Almost Immeasurable",
  14792. height: math.unit(1.3e266, "yottaparsecs")
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/umeko/front.svg",
  14805. extra: 1,
  14806. bottom: 0.019
  14807. }
  14808. },
  14809. frontArmored: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Front (Armored)",
  14813. image: {
  14814. source: "./media/characters/umeko/front-armored.svg",
  14815. extra: 1,
  14816. bottom: 0.021
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(220, "feet"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Guardian Dragon",
  14828. height: math.unit(50, "miles")
  14829. },
  14830. {
  14831. name: "Cosmic",
  14832. height: math.unit(800000, "miles")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/cassidy/front.svg",
  14845. extra: 810/808,
  14846. bottom: 41/851
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Canon Height",
  14853. height: math.unit(120, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro+",
  14858. height: math.unit(400, "feet")
  14859. },
  14860. {
  14861. name: "Macro++",
  14862. height: math.unit(4000, "feet")
  14863. },
  14864. {
  14865. name: "Megamacro",
  14866. height: math.unit(3, "miles")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/isaac/front.svg",
  14879. extra: 896 / 815,
  14880. bottom: 0.11
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Human Size",
  14887. height: math.unit(8, "feet"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(400, "feet")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(50, "miles")
  14897. },
  14898. {
  14899. name: "Canon Height",
  14900. height: math.unit(200, "AU")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(72, "kg"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/sleekit/front.svg",
  14913. extra: 4693 / 4487,
  14914. bottom: 0.012
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Minimum Height",
  14921. height: math.unit(10, "meters")
  14922. },
  14923. {
  14924. name: "Smaller",
  14925. height: math.unit(25, "meters")
  14926. },
  14927. {
  14928. name: "Larger",
  14929. height: math.unit(38, "meters"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Maximum height",
  14934. height: math.unit(100, "meters")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(150, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/nillia/front.svg",
  14947. extra: 2195 / 2037,
  14948. bottom: 0.005
  14949. }
  14950. },
  14951. back: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(150, "lb"),
  14954. name: "Back",
  14955. image: {
  14956. source: "./media/characters/nillia/back.svg",
  14957. extra: 2195 / 2037,
  14958. bottom: 0.005
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Canon Height",
  14965. height: math.unit(489, "feet"),
  14966. default: true
  14967. }
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(150, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/mesmyriza/front.svg",
  14979. extra: 2067 / 1784,
  14980. bottom: 0.035
  14981. }
  14982. },
  14983. foot: {
  14984. height: math.unit(6 / (250 / 35), "feet"),
  14985. name: "Foot",
  14986. image: {
  14987. source: "./media/characters/mesmyriza/foot.svg"
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Macro",
  14994. height: math.unit(457, "meters"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Megamacro",
  14999. height: math.unit(8, "megameters")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(6, "feet"),
  15008. weight: math.unit(250, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/saudade/front.svg",
  15012. extra: 1172 / 1139,
  15013. bottom: 0.035
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Micro",
  15020. height: math.unit(3, "inches")
  15021. },
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(6, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Macro",
  15029. height: math.unit(50, "feet")
  15030. },
  15031. {
  15032. name: "Megamacro",
  15033. height: math.unit(2800, "feet")
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(5 + 4 / 12, "feet"),
  15042. weight: math.unit(100, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/keireer/front.svg",
  15046. extra: 716 / 666,
  15047. bottom: 0.05
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(5 + 4 / 12, "feet"),
  15055. default: true
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(90, "kg"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/mirja/front.svg",
  15068. extra: 1789 / 1683,
  15069. bottom: 0.05
  15070. }
  15071. },
  15072. frontDressed: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(90, "lb"),
  15075. name: "Front (Dressed)",
  15076. image: {
  15077. source: "./media/characters/mirja/front-dressed.svg",
  15078. extra: 1789 / 1683,
  15079. bottom: 0.05
  15080. }
  15081. },
  15082. back: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(90, "lb"),
  15085. name: "Back",
  15086. image: {
  15087. source: "./media/characters/mirja/back.svg",
  15088. extra: 953 / 917,
  15089. bottom: 0.017
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "\"Incognito\"",
  15096. height: math.unit(3, "meters")
  15097. },
  15098. {
  15099. name: "Strolling Size",
  15100. height: math.unit(15, "km")
  15101. },
  15102. {
  15103. name: "Larger Strolling Size",
  15104. height: math.unit(400, "km")
  15105. },
  15106. {
  15107. name: "Preferred Size",
  15108. height: math.unit(5000, "km")
  15109. },
  15110. {
  15111. name: "True Size",
  15112. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15113. default: true
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(15, "feet"),
  15122. weight: math.unit(880, "kg"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/nightraver/front.svg",
  15126. extra: 2444 / 2160,
  15127. bottom: 0.027
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(15, "feet"),
  15132. weight: math.unit(880, "kg"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/nightraver/back.svg",
  15136. extra: 2309 / 2180,
  15137. bottom: 0.005
  15138. }
  15139. },
  15140. sole: {
  15141. height: math.unit(2.878, "feet"),
  15142. name: "Sole",
  15143. image: {
  15144. source: "./media/characters/nightraver/sole.svg"
  15145. }
  15146. },
  15147. foot: {
  15148. height: math.unit(2.285, "feet"),
  15149. name: "Foot",
  15150. image: {
  15151. source: "./media/characters/nightraver/foot.svg"
  15152. }
  15153. },
  15154. maw: {
  15155. height: math.unit(2.67, "feet"),
  15156. name: "Maw",
  15157. image: {
  15158. source: "./media/characters/nightraver/maw.svg"
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Micro",
  15165. height: math.unit(1, "cm")
  15166. },
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(15, "feet"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Macro",
  15174. height: math.unit(300, "feet")
  15175. },
  15176. {
  15177. name: "Megamacro",
  15178. height: math.unit(300, "miles")
  15179. },
  15180. {
  15181. name: "Gigamacro",
  15182. height: math.unit(10000, "miles")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15188. {
  15189. side: {
  15190. height: math.unit(2, "inches"),
  15191. weight: math.unit(5, "grams"),
  15192. name: "Side",
  15193. image: {
  15194. source: "./media/characters/arc/side.svg"
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(2, "inches"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(1.1938, "meters"),
  15211. weight: math.unit(54, "kg"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/nebula-shahar/front.svg",
  15215. extra: 1642 / 1436,
  15216. bottom: 0.06
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Megamicro",
  15223. height: math.unit(0.3, "mm")
  15224. },
  15225. {
  15226. name: "Micro",
  15227. height: math.unit(3, "cm")
  15228. },
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(138, "cm"),
  15232. default: true
  15233. },
  15234. {
  15235. name: "Macro",
  15236. height: math.unit(30, "m")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(5.24, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/shayla/front.svg",
  15249. extra: 1512 / 1414,
  15250. bottom: 0.01
  15251. }
  15252. },
  15253. back: {
  15254. height: math.unit(5.24, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Back",
  15257. image: {
  15258. source: "./media/characters/shayla/back.svg",
  15259. extra: 1512 / 1414
  15260. }
  15261. },
  15262. hand: {
  15263. height: math.unit(0.7781496062992126, "feet"),
  15264. name: "Hand",
  15265. image: {
  15266. source: "./media/characters/shayla/hand.svg"
  15267. }
  15268. },
  15269. foot: {
  15270. height: math.unit(1.4206036745406823, "feet"),
  15271. name: "Foot",
  15272. image: {
  15273. source: "./media/characters/shayla/foot.svg"
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Micro",
  15280. height: math.unit(0.32, "feet")
  15281. },
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(5.24, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Macro",
  15289. height: math.unit(492.12, "feet")
  15290. },
  15291. {
  15292. name: "Megamacro",
  15293. height: math.unit(186.41, "miles")
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(2.2, "m"),
  15302. weight: math.unit(120, "kg"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/pia-jr/front.svg",
  15306. extra: 1000 / 970,
  15307. bottom: 0.035
  15308. }
  15309. },
  15310. hand: {
  15311. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15312. name: "Hand",
  15313. image: {
  15314. source: "./media/characters/pia-jr/hand.svg"
  15315. }
  15316. },
  15317. paw: {
  15318. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15319. name: "Paw",
  15320. image: {
  15321. source: "./media/characters/pia-jr/paw.svg"
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Micro",
  15328. height: math.unit(1.2, "cm")
  15329. },
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(2.2, "m"),
  15333. default: true
  15334. },
  15335. {
  15336. name: "Macro",
  15337. height: math.unit(180, "m")
  15338. },
  15339. {
  15340. name: "Megamacro",
  15341. height: math.unit(420, "km")
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(2, "m"),
  15350. weight: math.unit(115, "kg"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/pia-sr/front.svg",
  15354. extra: 760 / 730,
  15355. bottom: 0.015
  15356. }
  15357. },
  15358. back: {
  15359. height: math.unit(2, "m"),
  15360. weight: math.unit(115, "kg"),
  15361. name: "Back",
  15362. image: {
  15363. source: "./media/characters/pia-sr/back.svg",
  15364. extra: 760 / 730,
  15365. bottom: 0.01
  15366. }
  15367. },
  15368. hand: {
  15369. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15370. name: "Hand",
  15371. image: {
  15372. source: "./media/characters/pia-sr/hand.svg"
  15373. }
  15374. },
  15375. foot: {
  15376. height: math.unit(1.83, "feet"),
  15377. name: "Foot",
  15378. image: {
  15379. source: "./media/characters/pia-sr/foot.svg"
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Micro",
  15386. height: math.unit(88, "mm")
  15387. },
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(2, "m"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(200, "m")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(420, "km")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(8 + 2 / 12, "feet"),
  15408. weight: math.unit(300, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/kibibyte/front.svg",
  15412. extra: 2221 / 2098,
  15413. bottom: 0.04
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(8 + 2 / 12, "feet"),
  15421. default: true
  15422. },
  15423. {
  15424. name: "Socialable Macro",
  15425. height: math.unit(50, "feet")
  15426. },
  15427. {
  15428. name: "Macro",
  15429. height: math.unit(300, "feet")
  15430. },
  15431. {
  15432. name: "Megamacro",
  15433. height: math.unit(500, "miles")
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/felix/front.svg",
  15446. extra: 762 / 722,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. frontClothed: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front (Clothed)",
  15454. image: {
  15455. source: "./media/characters/felix/front-clothed.svg",
  15456. extra: 762 / 722,
  15457. bottom: 0.02
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(6 + 8 / 12, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(2600, "feet")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(450, "miles")
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(6 + 1 / 12, "feet"),
  15482. weight: math.unit(250, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/tobo/front.svg",
  15486. extra: 608 / 586,
  15487. bottom: 0.023
  15488. }
  15489. },
  15490. back: {
  15491. height: math.unit(6 + 1 / 12, "feet"),
  15492. weight: math.unit(250, "lb"),
  15493. name: "Back",
  15494. image: {
  15495. source: "./media/characters/tobo/back.svg",
  15496. extra: 608 / 586
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Nano",
  15503. height: math.unit(2, "nm")
  15504. },
  15505. {
  15506. name: "Megamicro",
  15507. height: math.unit(0.1, "mm")
  15508. },
  15509. {
  15510. name: "Micro",
  15511. height: math.unit(1, "inch"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Human-sized",
  15516. height: math.unit(6 + 1 / 12, "feet")
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(250, "feet")
  15521. },
  15522. {
  15523. name: "Megamacro",
  15524. height: math.unit(75, "miles")
  15525. },
  15526. {
  15527. name: "Texas-sized",
  15528. height: math.unit(750, "miles")
  15529. },
  15530. {
  15531. name: "Teramacro",
  15532. height: math.unit(50000, "miles")
  15533. },
  15534. ]
  15535. ))
  15536. characterMakers.push(() => makeCharacter(
  15537. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15538. {
  15539. front: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(269, "lb"),
  15542. name: "Front",
  15543. image: {
  15544. source: "./media/characters/danny-kapowsky/front.svg",
  15545. extra: 766 / 736,
  15546. bottom: 0.044
  15547. }
  15548. },
  15549. back: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(269, "lb"),
  15552. name: "Back",
  15553. image: {
  15554. source: "./media/characters/danny-kapowsky/back.svg",
  15555. extra: 797 / 760,
  15556. bottom: 0.025
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Macro",
  15563. height: math.unit(150, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Macro+",
  15568. height: math.unit(200, "feet")
  15569. },
  15570. {
  15571. name: "Macro++",
  15572. height: math.unit(300, "feet")
  15573. },
  15574. {
  15575. name: "Macro+++",
  15576. height: math.unit(400, "feet")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15582. {
  15583. side: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(170, "lb"),
  15586. name: "Side",
  15587. image: {
  15588. source: "./media/characters/finn/side.svg",
  15589. extra: 1953 / 1807,
  15590. bottom: 0.057
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Megamacro",
  15597. height: math.unit(14445, "feet"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(5 + 6 / 12, "feet"),
  15607. weight: math.unit(125, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/roy/front.svg",
  15611. extra: 1,
  15612. bottom: 0.11
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Micro",
  15619. height: math.unit(3, "inches"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(5 + 6 / 12, "feet")
  15625. },
  15626. {
  15627. name: "Lesser Macro",
  15628. height: math.unit(60, "feet")
  15629. },
  15630. {
  15631. name: "Greater Macro",
  15632. height: math.unit(120, "feet")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(6, "feet"),
  15641. weight: math.unit(100, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/aevsivs/front.svg",
  15645. extra: 1,
  15646. bottom: 0.03
  15647. }
  15648. },
  15649. back: {
  15650. height: math.unit(6, "feet"),
  15651. weight: math.unit(100, "lb"),
  15652. name: "Back",
  15653. image: {
  15654. source: "./media/characters/aevsivs/back.svg"
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Micro",
  15661. height: math.unit(2, "inches"),
  15662. default: true
  15663. },
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(5, "feet")
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15672. {
  15673. front: {
  15674. height: math.unit(5 + 7 / 12, "feet"),
  15675. weight: math.unit(159, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/hildegard/front.svg",
  15679. extra: 289 / 269,
  15680. bottom: 7.63 / 297.8
  15681. }
  15682. },
  15683. back: {
  15684. height: math.unit(5 + 7 / 12, "feet"),
  15685. weight: math.unit(159, "lb"),
  15686. name: "Back",
  15687. image: {
  15688. source: "./media/characters/hildegard/back.svg",
  15689. extra: 280 / 260,
  15690. bottom: 2.3 / 282
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(5 + 7 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15704. {
  15705. bernard: {
  15706. height: math.unit(2 + 7 / 12, "feet"),
  15707. weight: math.unit(66, "lb"),
  15708. name: "Bernard",
  15709. rename: true,
  15710. image: {
  15711. source: "./media/characters/bernard-wilder/bernard.svg",
  15712. extra: 192 / 128,
  15713. bottom: 0.05
  15714. }
  15715. },
  15716. wilder: {
  15717. height: math.unit(5 + 8 / 12, "feet"),
  15718. weight: math.unit(143, "lb"),
  15719. name: "Wilder",
  15720. rename: true,
  15721. image: {
  15722. source: "./media/characters/bernard-wilder/wilder.svg",
  15723. extra: 361 / 312,
  15724. bottom: 0.02
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(2 + 7 / 12, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15738. {
  15739. anthro: {
  15740. height: math.unit(6 + 1 / 12, "feet"),
  15741. weight: math.unit(155, "lb"),
  15742. name: "Anthro",
  15743. image: {
  15744. source: "./media/characters/hearth/anthro.svg",
  15745. extra: 1178/1136,
  15746. bottom: 28/1206
  15747. }
  15748. },
  15749. feral: {
  15750. height: math.unit(3.78, "feet"),
  15751. weight: math.unit(35, "kg"),
  15752. name: "Feral",
  15753. image: {
  15754. source: "./media/characters/hearth/feral.svg",
  15755. extra: 153 / 135,
  15756. bottom: 0.03
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(6 + 1 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(6, "feet"),
  15773. weight: math.unit(182, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/ingrid/front.svg",
  15777. extra: 294 / 268,
  15778. bottom: 0.027
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15792. {
  15793. eevee: {
  15794. height: math.unit(2 + 10 / 12, "feet"),
  15795. weight: math.unit(86, "lb"),
  15796. name: "Malgam",
  15797. image: {
  15798. source: "./media/characters/malgam/eevee.svg",
  15799. extra: 952/784,
  15800. bottom: 38/990
  15801. }
  15802. },
  15803. sylveon: {
  15804. height: math.unit(4, "feet"),
  15805. weight: math.unit(101, "lb"),
  15806. name: "Future Malgam",
  15807. rename: true,
  15808. image: {
  15809. source: "./media/characters/malgam/sylveon.svg",
  15810. extra: 371 / 325,
  15811. bottom: 0.015
  15812. }
  15813. },
  15814. gigantamax: {
  15815. height: math.unit(50, "feet"),
  15816. name: "Gigantamax Malgam",
  15817. rename: true,
  15818. image: {
  15819. source: "./media/characters/malgam/gigantamax.svg"
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(2 + 10 / 12, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5 + 11 / 12, "feet"),
  15836. weight: math.unit(188, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/fleur/front.svg",
  15840. extra: 309 / 283,
  15841. bottom: 0.007
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(5 + 11 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(5 + 4 / 12, "feet"),
  15858. weight: math.unit(122, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/jude/front.svg",
  15862. extra: 288 / 273,
  15863. bottom: 0.03
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(5 + 4 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 11 / 12, "feet"),
  15880. weight: math.unit(190, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/seara/front.svg",
  15884. extra: 1,
  15885. bottom: 0.05
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 11 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(16 + 5 / 12, "feet"),
  15902. weight: math.unit(524, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/caspian-lugia/front.svg",
  15906. extra: 1,
  15907. bottom: 0.04
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(16 + 5 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(5 + 7 / 12, "feet"),
  15924. weight: math.unit(170, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/mika/front.svg",
  15928. extra: 1,
  15929. bottom: 0.016
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(5 + 7 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(6 + 2 / 12, "feet"),
  15946. weight: math.unit(268, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/sol/front.svg",
  15950. extra: 247 / 231,
  15951. bottom: 0.05
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(6 + 2 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15965. {
  15966. buizel: {
  15967. height: math.unit(2 + 5 / 12, "feet"),
  15968. weight: math.unit(87, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/umiko/buizel.svg",
  15972. extra: 172 / 157,
  15973. bottom: 0.01
  15974. },
  15975. form: "buizel",
  15976. default: true
  15977. },
  15978. floatzel: {
  15979. height: math.unit(5 + 9 / 12, "feet"),
  15980. weight: math.unit(250, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/umiko/floatzel.svg",
  15984. extra: 1076/1006,
  15985. bottom: 15/1091
  15986. },
  15987. form: "floatzel",
  15988. default: true
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(2 + 5 / 12, "feet"),
  15995. form: "buizel",
  15996. default: true
  15997. },
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(5 + 9 / 12, "feet"),
  16001. form: "floatzel",
  16002. default: true
  16003. },
  16004. ],
  16005. {
  16006. "buizel": {
  16007. name: "Buizel"
  16008. },
  16009. "floatzel": {
  16010. name: "Floatzel",
  16011. default: true
  16012. }
  16013. }
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6 + 2 / 12, "feet"),
  16020. weight: math.unit(146, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/iliac/front.svg",
  16024. extra: 389 / 365,
  16025. bottom: 0.035
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(6 + 2 / 12, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(170, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/topaz/front.svg",
  16046. extra: 317 / 303,
  16047. bottom: 0.055
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(6, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(5 + 11 / 12, "feet"),
  16064. weight: math.unit(144, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/gabriel/front.svg",
  16068. extra: 285 / 262,
  16069. bottom: 0.004
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(5 + 11 / 12, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16083. {
  16084. side: {
  16085. height: math.unit(6 + 5 / 12, "feet"),
  16086. weight: math.unit(300, "lb"),
  16087. name: "Side",
  16088. image: {
  16089. source: "./media/characters/tempest-suicune/side.svg",
  16090. extra: 195 / 154,
  16091. bottom: 0.04
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(6 + 5 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(7 + 2 / 12, "feet"),
  16108. weight: math.unit(322, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/vulcan/front.svg",
  16112. extra: 154 / 147,
  16113. bottom: 0.04
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(7 + 2 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(5 + 10 / 12, "feet"),
  16130. weight: math.unit(264, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/gault/front.svg",
  16134. extra: 161 / 140,
  16135. bottom: 0.028
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(5 + 10 / 12, "feet"),
  16143. default: true
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(6, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/shard/front.svg",
  16156. extra: 273 / 238,
  16157. bottom: 0.02
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(3 + 6 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(5 + 11 / 12, "feet"),
  16174. weight: math.unit(146, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/ashe/front.svg",
  16178. extra: 400 / 373,
  16179. bottom: 0.01
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(5 + 11 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5 + 5 / 12, "feet"),
  16196. weight: math.unit(135, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/beatrix/front.svg",
  16200. extra: 392 / 379,
  16201. bottom: 0.01
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(6, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(6 + 2/12, "feet"),
  16218. weight: math.unit(135, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/ignatius/front.svg",
  16222. extra: 1380/1259,
  16223. bottom: 27/1407
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(6 + 2/12, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(6 + 2 / 12, "feet"),
  16240. weight: math.unit(138, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/mei-li/front.svg",
  16244. extra: 237 / 229,
  16245. bottom: 0.03
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(6 + 2 / 12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(2 + 4 / 12, "feet"),
  16262. weight: math.unit(62, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/puru/front.svg",
  16266. extra: 206 / 149,
  16267. bottom: 0.06
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(2 + 4 / 12, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16281. {
  16282. anthro: {
  16283. height: math.unit(5 + 8/12, "feet"),
  16284. weight: math.unit(200, "lb"),
  16285. energyNeed: math.unit(2000, "kcal"),
  16286. name: "Anthro",
  16287. image: {
  16288. source: "./media/characters/kee/anthro.svg",
  16289. extra: 3251/3184,
  16290. bottom: 250/3501
  16291. }
  16292. },
  16293. taur: {
  16294. height: math.unit(11, "feet"),
  16295. weight: math.unit(500, "lb"),
  16296. energyNeed: math.unit(5000, "kcal"),
  16297. name: "Taur",
  16298. image: {
  16299. source: "./media/characters/kee/taur.svg",
  16300. extra: 1362/1320,
  16301. bottom: 83/1445
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(5 + 8/12, "feet"),
  16309. default: true
  16310. },
  16311. {
  16312. name: "Macro",
  16313. height: math.unit(35, "feet")
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16319. {
  16320. anthro: {
  16321. height: math.unit(7, "feet"),
  16322. weight: math.unit(190, "lb"),
  16323. name: "Anthro",
  16324. image: {
  16325. source: "./media/characters/cobalt-dracha/anthro.svg",
  16326. extra: 231 / 225,
  16327. bottom: 0.04
  16328. }
  16329. },
  16330. feral: {
  16331. height: math.unit(9 + 7 / 12, "feet"),
  16332. weight: math.unit(294, "lb"),
  16333. name: "Feral",
  16334. image: {
  16335. source: "./media/characters/cobalt-dracha/feral.svg",
  16336. extra: 692 / 633,
  16337. bottom: 0.05
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(7, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16351. {
  16352. fallen: {
  16353. height: math.unit(11 + 8 / 12, "feet"),
  16354. weight: math.unit(485, "lb"),
  16355. name: "Java (Fallen)",
  16356. rename: true,
  16357. image: {
  16358. source: "./media/characters/java/fallen.svg",
  16359. extra: 226 / 208,
  16360. bottom: 0.005
  16361. }
  16362. },
  16363. godkin: {
  16364. height: math.unit(10 + 6 / 12, "feet"),
  16365. weight: math.unit(328, "lb"),
  16366. name: "Java (Godkin)",
  16367. rename: true,
  16368. image: {
  16369. source: "./media/characters/java/godkin.svg",
  16370. extra: 1104/1068,
  16371. bottom: 36/1140
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(11 + 8 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5 + 9 / 12, "feet"),
  16388. weight: math.unit(170, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/purna/front.svg",
  16392. extra: 239 / 229,
  16393. bottom: 0.01
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(5 + 9 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 9 / 12, "feet"),
  16410. weight: math.unit(142, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/kuva/front.svg",
  16414. extra: 281 / 271,
  16415. bottom: 0.006
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(5 + 9 / 12, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16429. {
  16430. anthro: {
  16431. height: math.unit(9 + 2 / 12, "feet"),
  16432. weight: math.unit(270, "lb"),
  16433. name: "Anthro",
  16434. image: {
  16435. source: "./media/characters/embra/anthro.svg",
  16436. extra: 200 / 187,
  16437. bottom: 0.02
  16438. }
  16439. },
  16440. feral: {
  16441. height: math.unit(18 + 8 / 12, "feet"),
  16442. weight: math.unit(576, "lb"),
  16443. name: "Feral",
  16444. image: {
  16445. source: "./media/characters/embra/feral.svg",
  16446. extra: 152 / 137,
  16447. bottom: 0.037
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(9 + 2 / 12, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16461. {
  16462. anthro: {
  16463. height: math.unit(10 + 9 / 12, "feet"),
  16464. weight: math.unit(224, "lb"),
  16465. name: "Anthro",
  16466. image: {
  16467. source: "./media/characters/grottos/anthro.svg",
  16468. extra: 350 / 332,
  16469. bottom: 0.045
  16470. }
  16471. },
  16472. feral: {
  16473. height: math.unit(20 + 7 / 12, "feet"),
  16474. weight: math.unit(629, "lb"),
  16475. name: "Feral",
  16476. image: {
  16477. source: "./media/characters/grottos/feral.svg",
  16478. extra: 207 / 190,
  16479. bottom: 0.05
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(10 + 9 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16493. {
  16494. anthro: {
  16495. height: math.unit(9 + 6 / 12, "feet"),
  16496. weight: math.unit(298, "lb"),
  16497. name: "Anthro",
  16498. image: {
  16499. source: "./media/characters/frifna/anthro.svg",
  16500. extra: 282 / 269,
  16501. bottom: 0.015
  16502. }
  16503. },
  16504. feral: {
  16505. height: math.unit(16 + 2 / 12, "feet"),
  16506. weight: math.unit(624, "lb"),
  16507. name: "Feral",
  16508. image: {
  16509. source: "./media/characters/frifna/feral.svg"
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(9 + 6 / 12, "feet"),
  16517. default: true
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(6 + 2 / 12, "feet"),
  16526. weight: math.unit(168, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/elise/front.svg",
  16530. extra: 276 / 271
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(6 + 2 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(5 + 10 / 12, "feet"),
  16547. weight: math.unit(210, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/glade/front.svg",
  16551. extra: 258 / 247,
  16552. bottom: 0.008
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5 + 10 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(5 + 10 / 12, "feet"),
  16569. weight: math.unit(129, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/rina/front.svg",
  16573. extra: 266 / 255,
  16574. bottom: 0.005
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 10 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(6 + 1 / 12, "feet"),
  16591. weight: math.unit(192, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/veronica/front.svg",
  16595. extra: 319 / 309,
  16596. bottom: 0.005
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(6 + 1 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(9 + 3 / 12, "feet"),
  16613. weight: math.unit(1100, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/braxton/front.svg",
  16617. extra: 1057 / 984,
  16618. bottom: 0.05
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(9 + 3 / 12, "feet")
  16626. },
  16627. {
  16628. name: "Giant",
  16629. height: math.unit(300, "feet"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Macro",
  16634. height: math.unit(700, "feet")
  16635. },
  16636. {
  16637. name: "Megamacro",
  16638. height: math.unit(6000, "feet")
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(6 + 7 / 12, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/blue-feyonics/front.svg",
  16651. extra: 1403 / 1306,
  16652. bottom: 0.047
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(6 + 7 / 12, "feet"),
  16660. default: true
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(1.8, "meters"),
  16669. weight: math.unit(60, "kg"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/maxwell/front.svg",
  16673. extra: 2060 / 1873
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Micro",
  16680. height: math.unit(1, "mm")
  16681. },
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(1.8, "meter"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(30, "meters")
  16690. },
  16691. {
  16692. name: "Megamacro",
  16693. height: math.unit(10, "km")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(6, "feet"),
  16702. weight: math.unit(150, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/jack/front.svg",
  16706. extra: 1754 / 1640,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(80000, "feet"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Max size",
  16719. height: math.unit(10, "lightyears")
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16725. {
  16726. urban: {
  16727. height: math.unit(5, "feet"),
  16728. weight: math.unit(240, "lb"),
  16729. name: "Urban",
  16730. image: {
  16731. source: "./media/characters/cafat/urban.svg",
  16732. extra: 1223/1126,
  16733. bottom: 205/1428
  16734. }
  16735. },
  16736. summer: {
  16737. height: math.unit(5, "feet"),
  16738. weight: math.unit(240, "lb"),
  16739. name: "Summer",
  16740. image: {
  16741. source: "./media/characters/cafat/summer.svg",
  16742. extra: 1223/1126,
  16743. bottom: 205/1428
  16744. }
  16745. },
  16746. winter: {
  16747. height: math.unit(5, "feet"),
  16748. weight: math.unit(240, "lb"),
  16749. name: "Winter",
  16750. image: {
  16751. source: "./media/characters/cafat/winter.svg",
  16752. extra: 1223/1126,
  16753. bottom: 205/1428
  16754. }
  16755. },
  16756. lingerie: {
  16757. height: math.unit(5, "feet"),
  16758. weight: math.unit(240, "lb"),
  16759. name: "Lingerie",
  16760. image: {
  16761. source: "./media/characters/cafat/lingerie.svg",
  16762. extra: 1223/1126,
  16763. bottom: 205/1428
  16764. }
  16765. },
  16766. upright: {
  16767. height: math.unit(6.3, "feet"),
  16768. weight: math.unit(240, "lb"),
  16769. name: "Upright",
  16770. image: {
  16771. source: "./media/characters/cafat/upright.svg",
  16772. bottom: 0.01
  16773. }
  16774. },
  16775. uprightFull: {
  16776. height: math.unit(6.3, "feet"),
  16777. weight: math.unit(240, "lb"),
  16778. name: "Upright (Full)",
  16779. image: {
  16780. source: "./media/characters/cafat/upright-full.svg",
  16781. bottom: 0.01
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Small",
  16788. height: math.unit(5, "feet"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Large",
  16793. height: math.unit(13, "feet")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/verin-raharra/front.svg",
  16806. extra: 5019 / 4835,
  16807. bottom: 0.023
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(7 + 5 / 12, "feet"),
  16815. default: true
  16816. },
  16817. {
  16818. name: "Upsized",
  16819. height: math.unit(20, "feet")
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(7, "feet"),
  16828. weight: math.unit(230, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/nakata/front.svg",
  16832. extra: 1.005,
  16833. bottom: 0.01
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(7, "feet"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Big",
  16845. height: math.unit(14, "feet")
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(400, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(4.91, "feet"),
  16858. weight: math.unit(100, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/lily/front.svg",
  16862. extra: 1585 / 1415,
  16863. bottom: 0.02
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(4.91, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16877. {
  16878. laying: {
  16879. height: math.unit(4 + 4 / 12, "feet"),
  16880. weight: math.unit(600, "lb"),
  16881. name: "Laying",
  16882. image: {
  16883. source: "./media/characters/sheila/laying.svg",
  16884. extra: 1333 / 1265,
  16885. bottom: 0.16
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(4 + 4 / 12, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(6, "feet"),
  16902. weight: math.unit(190, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/sax/front.svg",
  16906. extra: 1187 / 973,
  16907. bottom: 0.042
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Micro",
  16914. height: math.unit(4, "inches"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(150, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/pandora/front.svg",
  16928. extra: 2720 / 2556,
  16929. bottom: 0.015
  16930. }
  16931. },
  16932. back: {
  16933. height: math.unit(6, "feet"),
  16934. weight: math.unit(150, "lb"),
  16935. name: "Back",
  16936. image: {
  16937. source: "./media/characters/pandora/back.svg",
  16938. extra: 2720 / 2556,
  16939. bottom: 0.01
  16940. }
  16941. },
  16942. beans: {
  16943. height: math.unit(6 / 8, "feet"),
  16944. name: "Beans",
  16945. image: {
  16946. source: "./media/characters/pandora/beans.svg"
  16947. }
  16948. },
  16949. collar: {
  16950. height: math.unit(0.31, "feet"),
  16951. name: "Collar",
  16952. image: {
  16953. source: "./media/characters/pandora/collar.svg"
  16954. }
  16955. },
  16956. skirt: {
  16957. height: math.unit(6, "feet"),
  16958. weight: math.unit(150, "lb"),
  16959. name: "Skirt",
  16960. image: {
  16961. source: "./media/characters/pandora/skirt.svg",
  16962. extra: 1622 / 1525,
  16963. bottom: 0.015
  16964. }
  16965. },
  16966. hoodie: {
  16967. height: math.unit(6, "feet"),
  16968. weight: math.unit(150, "lb"),
  16969. name: "Hoodie",
  16970. image: {
  16971. source: "./media/characters/pandora/hoodie.svg",
  16972. extra: 1622 / 1525,
  16973. bottom: 0.015
  16974. }
  16975. },
  16976. casual: {
  16977. height: math.unit(6, "feet"),
  16978. weight: math.unit(150, "lb"),
  16979. name: "Casual",
  16980. image: {
  16981. source: "./media/characters/pandora/casual.svg",
  16982. extra: 1622 / 1525,
  16983. bottom: 0.015
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(6, "feet")
  16991. },
  16992. {
  16993. name: "Big Steppy",
  16994. height: math.unit(1, "km"),
  16995. default: true
  16996. },
  16997. {
  16998. name: "Galactic Steppy",
  16999. height: math.unit(2, "gigameters")
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17005. {
  17006. side: {
  17007. height: math.unit(10, "feet"),
  17008. weight: math.unit(800, "kg"),
  17009. name: "Side",
  17010. image: {
  17011. source: "./media/characters/venio-darcony/side.svg",
  17012. extra: 1373 / 1003,
  17013. bottom: 0.037
  17014. }
  17015. },
  17016. front: {
  17017. height: math.unit(19, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/front.svg"
  17022. }
  17023. },
  17024. back: {
  17025. height: math.unit(19, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Back",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/back.svg"
  17030. }
  17031. },
  17032. sideNsfw: {
  17033. height: math.unit(10, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Side (NSFW)",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17038. extra: 1373 / 1003,
  17039. bottom: 0.037
  17040. }
  17041. },
  17042. frontNsfw: {
  17043. height: math.unit(19, "feet"),
  17044. weight: math.unit(800, "kg"),
  17045. name: "Front (NSFW)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17048. }
  17049. },
  17050. backNsfw: {
  17051. height: math.unit(19, "feet"),
  17052. weight: math.unit(800, "kg"),
  17053. name: "Back (NSFW)",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17056. }
  17057. },
  17058. sideArmored: {
  17059. height: math.unit(10, "feet"),
  17060. weight: math.unit(800, "kg"),
  17061. name: "Side (Armored)",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/side-armored.svg",
  17064. extra: 1373 / 1003,
  17065. bottom: 0.037
  17066. }
  17067. },
  17068. frontArmored: {
  17069. height: math.unit(19, "feet"),
  17070. weight: math.unit(900, "kg"),
  17071. name: "Front (Armored)",
  17072. image: {
  17073. source: "./media/characters/venio-darcony/front-armored.svg"
  17074. }
  17075. },
  17076. backArmored: {
  17077. height: math.unit(19, "feet"),
  17078. weight: math.unit(900, "kg"),
  17079. name: "Back (Armored)",
  17080. image: {
  17081. source: "./media/characters/venio-darcony/back-armored.svg"
  17082. }
  17083. },
  17084. sword: {
  17085. height: math.unit(10, "feet"),
  17086. weight: math.unit(50, "lb"),
  17087. name: "Sword",
  17088. image: {
  17089. source: "./media/characters/venio-darcony/sword.svg"
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(10, "feet")
  17097. },
  17098. {
  17099. name: "Macro",
  17100. height: math.unit(130, "feet"),
  17101. default: true
  17102. },
  17103. {
  17104. name: "Macro+",
  17105. height: math.unit(240, "feet")
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(6, "feet"),
  17114. weight: math.unit(150, "lb"),
  17115. name: "Front",
  17116. image: {
  17117. source: "./media/characters/veski/front.svg",
  17118. extra: 1299 / 1225,
  17119. bottom: 0.04
  17120. }
  17121. },
  17122. back: {
  17123. height: math.unit(6, "feet"),
  17124. weight: math.unit(150, "lb"),
  17125. name: "Back",
  17126. image: {
  17127. source: "./media/characters/veski/back.svg",
  17128. extra: 1299 / 1225,
  17129. bottom: 0.008
  17130. }
  17131. },
  17132. maw: {
  17133. height: math.unit(1.5 * 1.21, "feet"),
  17134. name: "Maw",
  17135. image: {
  17136. source: "./media/characters/veski/maw.svg"
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(2, "km"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(5 + 7 / 12, "feet"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/isabelle/front.svg",
  17156. extra: 2130 / 1976,
  17157. bottom: 0.05
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Supermicro",
  17164. height: math.unit(10, "micrometers")
  17165. },
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(1, "inch")
  17169. },
  17170. {
  17171. name: "Tiny",
  17172. height: math.unit(5, "inches")
  17173. },
  17174. {
  17175. name: "Standard",
  17176. height: math.unit(5 + 7 / 12, "inches")
  17177. },
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(80, "meters"),
  17181. default: true
  17182. },
  17183. {
  17184. name: "Megamacro",
  17185. height: math.unit(250, "meters")
  17186. },
  17187. {
  17188. name: "Gigamacro",
  17189. height: math.unit(5, "km")
  17190. },
  17191. {
  17192. name: "Cosmic",
  17193. height: math.unit(2.5e6, "miles")
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(6, "feet"),
  17202. weight: math.unit(150, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/hanzo/front.svg",
  17206. extra: 374 / 344,
  17207. bottom: 0.02
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(8, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(7, "feet"),
  17224. weight: math.unit(130, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/anna/front.svg",
  17228. extra: 169 / 145,
  17229. bottom: 0.06
  17230. }
  17231. },
  17232. full: {
  17233. height: math.unit(4.96, "feet"),
  17234. weight: math.unit(220, "lb"),
  17235. name: "Full",
  17236. image: {
  17237. source: "./media/characters/anna/full.svg",
  17238. extra: 138 / 114,
  17239. bottom: 0.15
  17240. }
  17241. },
  17242. tongue: {
  17243. height: math.unit(2.53, "feet"),
  17244. name: "Tongue",
  17245. image: {
  17246. source: "./media/characters/anna/tongue.svg"
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(7, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(7, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/ian-corvid/front.svg",
  17267. extra: 150 / 142,
  17268. bottom: 0.02
  17269. }
  17270. },
  17271. back: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(150, "lb"),
  17274. name: "Back",
  17275. image: {
  17276. source: "./media/characters/ian-corvid/back.svg",
  17277. extra: 150 / 143,
  17278. bottom: 0.01
  17279. }
  17280. },
  17281. stomping: {
  17282. height: math.unit(7, "feet"),
  17283. weight: math.unit(150, "lb"),
  17284. name: "Stomping",
  17285. image: {
  17286. source: "./media/characters/ian-corvid/stomping.svg",
  17287. extra: 76 / 72
  17288. }
  17289. },
  17290. sitting: {
  17291. height: math.unit(7 / 1.8, "feet"),
  17292. weight: math.unit(150, "lb"),
  17293. name: "Sitting",
  17294. image: {
  17295. source: "./media/characters/ian-corvid/sitting.svg",
  17296. extra: 1400 / 1269,
  17297. bottom: 0.15
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Tiny Microw",
  17304. height: math.unit(1, "inch")
  17305. },
  17306. {
  17307. name: "Microw",
  17308. height: math.unit(6, "inches")
  17309. },
  17310. {
  17311. name: "Crow",
  17312. height: math.unit(7 + 1 / 12, "feet"),
  17313. default: true
  17314. },
  17315. {
  17316. name: "Macrow",
  17317. height: math.unit(176, "feet")
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(5 + 7 / 12, "feet"),
  17326. weight: math.unit(147, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/natalie-kellon/front.svg",
  17330. extra: 1214 / 1141,
  17331. bottom: 0.02
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Micro",
  17338. height: math.unit(1 / 16, "inch")
  17339. },
  17340. {
  17341. name: "Tiny",
  17342. height: math.unit(4, "inches")
  17343. },
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(5 + 7 / 12, "feet"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Amazon",
  17351. height: math.unit(12, "feet")
  17352. },
  17353. {
  17354. name: "Giantess",
  17355. height: math.unit(160, "meters")
  17356. },
  17357. {
  17358. name: "Titaness",
  17359. height: math.unit(800, "meters")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/alluria/front.svg",
  17372. extra: 806 / 738,
  17373. bottom: 0.01
  17374. }
  17375. },
  17376. side: {
  17377. height: math.unit(6, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/alluria/side.svg",
  17382. extra: 800 / 750,
  17383. }
  17384. },
  17385. back: {
  17386. height: math.unit(6, "feet"),
  17387. weight: math.unit(150, "lb"),
  17388. name: "Back",
  17389. image: {
  17390. source: "./media/characters/alluria/back.svg",
  17391. extra: 806 / 738,
  17392. }
  17393. },
  17394. frontMaid: {
  17395. height: math.unit(6, "feet"),
  17396. weight: math.unit(150, "lb"),
  17397. name: "Front (Maid)",
  17398. image: {
  17399. source: "./media/characters/alluria/front-maid.svg",
  17400. extra: 806 / 738,
  17401. bottom: 0.01
  17402. }
  17403. },
  17404. sideMaid: {
  17405. height: math.unit(6, "feet"),
  17406. weight: math.unit(150, "lb"),
  17407. name: "Side (Maid)",
  17408. image: {
  17409. source: "./media/characters/alluria/side-maid.svg",
  17410. extra: 800 / 750,
  17411. bottom: 0.005
  17412. }
  17413. },
  17414. backMaid: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(150, "lb"),
  17417. name: "Back (Maid)",
  17418. image: {
  17419. source: "./media/characters/alluria/back-maid.svg",
  17420. extra: 806 / 738,
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Micro",
  17427. height: math.unit(6, "inches"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(150, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/kyle/front.svg",
  17441. extra: 1069 / 962,
  17442. bottom: 77.228 / 1727.45
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Macro",
  17449. height: math.unit(150, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(6, "feet"),
  17459. weight: math.unit(300, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/duncan/front.svg",
  17463. extra: 1650 / 1482,
  17464. bottom: 0.05
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(100, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(5 + 4 / 12, "feet"),
  17481. weight: math.unit(220, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/memory/front.svg",
  17485. extra: 3641 / 3545,
  17486. bottom: 0.03
  17487. }
  17488. },
  17489. back: {
  17490. height: math.unit(5 + 4 / 12, "feet"),
  17491. weight: math.unit(220, "lb"),
  17492. name: "Back",
  17493. image: {
  17494. source: "./media/characters/memory/back.svg",
  17495. extra: 3641 / 3545,
  17496. bottom: 0.025
  17497. }
  17498. },
  17499. frontSkirt: {
  17500. height: math.unit(5 + 4 / 12, "feet"),
  17501. weight: math.unit(220, "lb"),
  17502. name: "Front (Skirt)",
  17503. image: {
  17504. source: "./media/characters/memory/front-skirt.svg",
  17505. extra: 3641 / 3545,
  17506. bottom: 0.03
  17507. }
  17508. },
  17509. frontDress: {
  17510. height: math.unit(5 + 4 / 12, "feet"),
  17511. weight: math.unit(220, "lb"),
  17512. name: "Front (Dress)",
  17513. image: {
  17514. source: "./media/characters/memory/front-dress.svg",
  17515. extra: 3641 / 3545,
  17516. bottom: 0.03
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Micro",
  17523. height: math.unit(6, "inches"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 4 / 12, "feet")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(4 + 11 / 12, "feet"),
  17537. weight: math.unit(100, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/luno/front.svg",
  17541. extra: 1535 / 1487,
  17542. bottom: 0.03
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Micro",
  17549. height: math.unit(3, "inches")
  17550. },
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(4 + 11 / 12, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(300, "feet")
  17559. },
  17560. {
  17561. name: "Megamacro",
  17562. height: math.unit(700, "miles")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6 + 2 / 12, "feet"),
  17571. weight: math.unit(170, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/jamesy/front.svg",
  17575. extra: 440 / 382,
  17576. bottom: 0.005
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Micro",
  17583. height: math.unit(3, "inches")
  17584. },
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(6 + 2 / 12, "feet"),
  17588. default: true
  17589. },
  17590. {
  17591. name: "Macro",
  17592. height: math.unit(300, "feet")
  17593. },
  17594. {
  17595. name: "Megamacro",
  17596. height: math.unit(700, "miles")
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(6, "feet"),
  17605. weight: math.unit(160, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/mark/front.svg",
  17609. extra: 3300 / 3100,
  17610. bottom: 136.42 / 3440.47
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(120, "meters")
  17618. },
  17619. {
  17620. name: "Bigger Macro",
  17621. height: math.unit(350, "meters")
  17622. },
  17623. {
  17624. name: "Megamacro",
  17625. height: math.unit(8, "km"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "Continental",
  17630. height: math.unit(4550, "km")
  17631. },
  17632. {
  17633. name: "Planetary",
  17634. height: math.unit(65000, "km")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(6, "feet"),
  17643. weight: math.unit(400, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/mac/front.svg",
  17647. extra: 1048 / 987.7,
  17648. bottom: 60 / 1107.6,
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(500, "feet"),
  17656. default: true
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(5 + 2 / 12, "feet"),
  17665. weight: math.unit(190, "lb"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/bari/front.svg",
  17669. extra: 3156 / 2880,
  17670. bottom: 0.03
  17671. }
  17672. },
  17673. back: {
  17674. height: math.unit(5 + 2 / 12, "feet"),
  17675. weight: math.unit(190, "lb"),
  17676. name: "Back",
  17677. image: {
  17678. source: "./media/characters/bari/back.svg",
  17679. extra: 3260 / 2834,
  17680. bottom: 0.025
  17681. }
  17682. },
  17683. frontPlush: {
  17684. height: math.unit(5 + 2 / 12, "feet"),
  17685. weight: math.unit(190, "lb"),
  17686. name: "Front (Plush)",
  17687. image: {
  17688. source: "./media/characters/bari/front-plush.svg",
  17689. extra: 1112 / 1061,
  17690. bottom: 0.002
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Micro",
  17697. height: math.unit(3, "inches")
  17698. },
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(5 + 2 / 12, "feet"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Macro",
  17706. height: math.unit(20, "feet")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(6 + 1 / 12, "feet"),
  17715. weight: math.unit(275, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/hunter-misha-raven/front.svg"
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Mortal",
  17725. height: math.unit(6 + 1 / 12, "feet")
  17726. },
  17727. {
  17728. name: "Divine",
  17729. height: math.unit(1.12134e34, "parsecs"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(6 + 3 / 12, "feet"),
  17739. weight: math.unit(220, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/max-calore/front.svg",
  17743. extra: 1700 / 1648,
  17744. bottom: 0.01
  17745. }
  17746. },
  17747. back: {
  17748. height: math.unit(6 + 3 / 12, "feet"),
  17749. weight: math.unit(220, "lb"),
  17750. name: "Back",
  17751. image: {
  17752. source: "./media/characters/max-calore/back.svg",
  17753. extra: 1700 / 1648,
  17754. bottom: 0.01
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(6 + 3 / 12, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17768. {
  17769. side: {
  17770. height: math.unit(2 + 8 / 12, "feet"),
  17771. weight: math.unit(99, "lb"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/aspen/side.svg",
  17775. extra: 152 / 138,
  17776. bottom: 0.032
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(2 + 8 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17790. {
  17791. side: {
  17792. height: math.unit(3 + 2 / 12, "feet"),
  17793. weight: math.unit(224, "lb"),
  17794. name: "Side",
  17795. image: {
  17796. source: "./media/characters/sheila-feral-wolf/side.svg",
  17797. extra: 179 / 166,
  17798. bottom: 0.03
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(3 + 2 / 12, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17812. {
  17813. side: {
  17814. height: math.unit(1 + 9 / 12, "feet"),
  17815. weight: math.unit(38, "lb"),
  17816. name: "Side",
  17817. image: {
  17818. source: "./media/characters/michelle/side.svg",
  17819. extra: 147 / 136.7,
  17820. bottom: 0.03
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(1 + 9 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(1.54, "feet"),
  17837. weight: math.unit(50, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/nino/front.svg"
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(1.54, "feet"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(1.49, "feet"),
  17857. weight: math.unit(45, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/viola/front.svg"
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(1.49, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(6 + 5 / 12, "feet"),
  17877. weight: math.unit(580, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/atlas/front.svg",
  17881. extra: 298.5 / 290,
  17882. bottom: 0.015
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(6 + 5 / 12, "feet"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17896. {
  17897. side: {
  17898. height: math.unit(15.6, "inches"),
  17899. weight: math.unit(10, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/davy/side.svg",
  17903. extra: 200 / 170,
  17904. bottom: 0.01
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(15.6, "inches"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17918. {
  17919. side: {
  17920. height: math.unit(4 + 8 / 12, "feet"),
  17921. weight: math.unit(166, "lb"),
  17922. name: "Side",
  17923. image: {
  17924. source: "./media/characters/fiona/side.svg",
  17925. extra: 232 / 220,
  17926. bottom: 0.03
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(4 + 8 / 12, "feet"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17940. {
  17941. front: {
  17942. height: math.unit(26, "inches"),
  17943. weight: math.unit(35, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/lyla/front.svg",
  17947. bottom: 0.1
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(3, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(1.8, "feet"),
  17964. weight: math.unit(44, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/perseus/side.svg",
  17968. bottom: 0.21
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(1.8, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17982. {
  17983. side: {
  17984. height: math.unit(4 + 2 / 12, "feet"),
  17985. weight: math.unit(20, "lb"),
  17986. name: "Side",
  17987. image: {
  17988. source: "./media/characters/remus/side.svg"
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(4 + 2 / 12, "feet"),
  17996. default: true
  17997. },
  17998. ]
  17999. ))
  18000. characterMakers.push(() => makeCharacter(
  18001. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18002. {
  18003. front: {
  18004. height: math.unit(4 + 11 / 12, "feet"),
  18005. weight: math.unit(114, "lb"),
  18006. name: "Front",
  18007. image: {
  18008. source: "./media/characters/raf/front.svg",
  18009. extra: 1504/1339,
  18010. bottom: 26/1530
  18011. }
  18012. },
  18013. side: {
  18014. height: math.unit(4 + 11 / 12, "feet"),
  18015. weight: math.unit(114, "lb"),
  18016. name: "Side",
  18017. image: {
  18018. source: "./media/characters/raf/side.svg",
  18019. extra: 1466/1316,
  18020. bottom: 29/1495
  18021. }
  18022. },
  18023. paw: {
  18024. height: math.unit(1.45, "feet"),
  18025. name: "Paw",
  18026. image: {
  18027. source: "./media/characters/raf/paw.svg"
  18028. },
  18029. extraAttributes: {
  18030. "toeSize": {
  18031. name: "Toe Size",
  18032. power: 2,
  18033. type: "area",
  18034. base: math.unit(0.004, "m^2")
  18035. },
  18036. "padSize": {
  18037. name: "Pad Size",
  18038. power: 2,
  18039. type: "area",
  18040. base: math.unit(0.04, "m^2")
  18041. },
  18042. "footSize": {
  18043. name: "Foot Size",
  18044. power: 2,
  18045. type: "area",
  18046. base: math.unit(0.08, "m^2")
  18047. },
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Micro",
  18054. height: math.unit(2, "inches")
  18055. },
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(4 + 11 / 12, "feet"),
  18059. default: true
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(70, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(1.5, "meters"),
  18072. weight: math.unit(68, "kg"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/liam-einarr/front.svg",
  18076. extra: 2822 / 2666
  18077. }
  18078. },
  18079. back: {
  18080. height: math.unit(1.5, "meters"),
  18081. weight: math.unit(68, "kg"),
  18082. name: "Back",
  18083. image: {
  18084. source: "./media/characters/liam-einarr/back.svg",
  18085. extra: 2822 / 2666,
  18086. bottom: 0.015
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(1.5, "meters"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Macro",
  18098. height: math.unit(150, "meters")
  18099. },
  18100. {
  18101. name: "Megamacro",
  18102. height: math.unit(35, "km")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(75, "kg"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/linda/front.svg",
  18115. extra: 930 / 874,
  18116. bottom: 0.004
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6 + 8 / 12, "feet"),
  18133. weight: math.unit(220, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/caylex/front.svg",
  18137. extra: 821 / 772,
  18138. bottom: 0.07
  18139. }
  18140. },
  18141. back: {
  18142. height: math.unit(6 + 8 / 12, "feet"),
  18143. weight: math.unit(220, "lb"),
  18144. name: "Back",
  18145. image: {
  18146. source: "./media/characters/caylex/back.svg",
  18147. extra: 821 / 772,
  18148. bottom: 0.022
  18149. }
  18150. },
  18151. hand: {
  18152. height: math.unit(1.25, "feet"),
  18153. name: "Hand",
  18154. image: {
  18155. source: "./media/characters/caylex/hand.svg"
  18156. }
  18157. },
  18158. foot: {
  18159. height: math.unit(1.6, "feet"),
  18160. name: "Foot",
  18161. image: {
  18162. source: "./media/characters/caylex/foot.svg"
  18163. }
  18164. },
  18165. armored: {
  18166. height: math.unit(6 + 8 / 12, "feet"),
  18167. weight: math.unit(250, "lb"),
  18168. name: "Armored",
  18169. image: {
  18170. source: "./media/characters/caylex/armored.svg",
  18171. extra: 1420 / 1310,
  18172. bottom: 0.045
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(6 + 8 / 12, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Normal+",
  18184. height: math.unit(12, "feet")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(7 + 6 / 12, "feet"),
  18193. weight: math.unit(288, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/alana/front.svg",
  18197. extra: 679 / 653,
  18198. bottom: 22.5 / 701
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(7 + 6 / 12, "feet")
  18206. },
  18207. {
  18208. name: "Large",
  18209. height: math.unit(50, "feet")
  18210. },
  18211. {
  18212. name: "Macro",
  18213. height: math.unit(100, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Macro+",
  18218. height: math.unit(200, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(6 + 1 / 12, "feet"),
  18227. weight: math.unit(210, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/hasani/front.svg",
  18231. extra: 244 / 232,
  18232. bottom: 0.01
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(6 + 1 / 12, "feet"),
  18237. weight: math.unit(210, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/hasani/back.svg",
  18241. extra: 244 / 232,
  18242. bottom: 0.01
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6 + 1 / 12, "feet")
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(175, "feet"),
  18254. default: true
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(1.82, "meters"),
  18263. weight: math.unit(140, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/nita/front.svg",
  18267. extra: 2473 / 2363,
  18268. bottom: 0.01
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(1.82, "m")
  18276. },
  18277. {
  18278. name: "Macro",
  18279. height: math.unit(300, "m")
  18280. },
  18281. {
  18282. name: "Mistake Canon",
  18283. height: math.unit(0.5, "miles"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Big Mistake",
  18288. height: math.unit(13, "miles")
  18289. },
  18290. {
  18291. name: "Playing God",
  18292. height: math.unit(2450, "miles")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(4, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/shiriko/front.svg",
  18305. extra: 970/934,
  18306. bottom: 5/975
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(4, "feet"),
  18314. default: true
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6, "feet"),
  18323. name: "front",
  18324. image: {
  18325. source: "./media/characters/deja/front.svg",
  18326. extra: 926 / 840,
  18327. bottom: 0.07
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Planck Length",
  18334. height: math.unit(1.6e-35, "meters")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(30.48, "meters"),
  18339. default: true
  18340. },
  18341. {
  18342. name: "Universal",
  18343. height: math.unit(8.8e26, "meters")
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18349. {
  18350. side: {
  18351. height: math.unit(8, "feet"),
  18352. weight: math.unit(6300, "lb"),
  18353. name: "Side",
  18354. image: {
  18355. source: "./media/characters/anima/side.svg",
  18356. bottom: 0.035
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(8, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(8, "feet"),
  18373. weight: math.unit(350, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/bianca/front.svg",
  18377. extra: 234 / 225,
  18378. bottom: 0.03
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(8, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(11 + 5/12, "feet"),
  18395. weight: math.unit(1200, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/adinia/front.svg",
  18399. extra: 1767/1641,
  18400. bottom: 44/1811
  18401. },
  18402. extraAttributes: {
  18403. "energyIntake": {
  18404. name: "Energy Intake",
  18405. power: 3,
  18406. type: "energy",
  18407. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18408. },
  18409. }
  18410. },
  18411. back: {
  18412. height: math.unit(11 + 5/12, "feet"),
  18413. weight: math.unit(1200, "lb"),
  18414. name: "Back",
  18415. image: {
  18416. source: "./media/characters/adinia/back.svg",
  18417. extra: 1834/1684,
  18418. bottom: 14/1848
  18419. },
  18420. extraAttributes: {
  18421. "energyIntake": {
  18422. name: "Energy Intake",
  18423. power: 3,
  18424. type: "energy",
  18425. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18426. },
  18427. }
  18428. },
  18429. maw: {
  18430. height: math.unit(3.79, "feet"),
  18431. name: "Maw",
  18432. image: {
  18433. source: "./media/characters/adinia/maw.svg"
  18434. }
  18435. },
  18436. rump: {
  18437. height: math.unit(4.6, "feet"),
  18438. name: "Rump",
  18439. image: {
  18440. source: "./media/characters/adinia/rump.svg"
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(11 + 5 / 12, "feet"),
  18448. default: true
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(3, "meters"),
  18457. weight: math.unit(200, "kg"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/lykasa/front.svg",
  18461. extra: 1076 / 976,
  18462. bottom: 0.06
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(3, "meters")
  18470. },
  18471. {
  18472. name: "Kaiju",
  18473. height: math.unit(120, "meters"),
  18474. default: true
  18475. },
  18476. {
  18477. name: "Mega Kaiju",
  18478. height: math.unit(240, "km")
  18479. },
  18480. {
  18481. name: "Giga Kaiju",
  18482. height: math.unit(400, "megameters")
  18483. },
  18484. {
  18485. name: "Tera Kaiju",
  18486. height: math.unit(800, "gigameters")
  18487. },
  18488. {
  18489. name: "Kaiju Dragon Goddess",
  18490. height: math.unit(26, "zettaparsecs")
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18496. {
  18497. side: {
  18498. height: math.unit(283 / 124 * 6, "feet"),
  18499. weight: math.unit(35000, "lb"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/malfaren/side.svg",
  18503. extra: 1310/529,
  18504. bottom: 24/1334
  18505. }
  18506. },
  18507. front: {
  18508. height: math.unit(22.36, "feet"),
  18509. weight: math.unit(35000, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/malfaren/front.svg",
  18513. extra: 1237/1115,
  18514. bottom: 32/1269
  18515. }
  18516. },
  18517. maw: {
  18518. height: math.unit(6.9, "feet"),
  18519. name: "Maw",
  18520. image: {
  18521. source: "./media/characters/malfaren/maw.svg"
  18522. }
  18523. },
  18524. dick: {
  18525. height: math.unit(6.19, "feet"),
  18526. name: "Dick",
  18527. image: {
  18528. source: "./media/characters/malfaren/dick.svg"
  18529. }
  18530. },
  18531. eye: {
  18532. height: math.unit(0.69, "feet"),
  18533. name: "Eye",
  18534. image: {
  18535. source: "./media/characters/malfaren/eye.svg"
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Big",
  18542. height: math.unit(283 / 162 * 6, "feet"),
  18543. },
  18544. {
  18545. name: "Bigger",
  18546. height: math.unit(283 / 124 * 6, "feet")
  18547. },
  18548. {
  18549. name: "Massive",
  18550. height: math.unit(283 / 92 * 6, "feet"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "👀💦",
  18555. height: math.unit(283 / 73 * 6, "feet"),
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(1.7, "m"),
  18564. weight: math.unit(70, "kg"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/kernel/front.svg",
  18568. extra: 222 / 210,
  18569. bottom: 0.007
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Nano",
  18576. height: math.unit(17, "micrometers")
  18577. },
  18578. {
  18579. name: "Micro",
  18580. height: math.unit(1.7, "mm")
  18581. },
  18582. {
  18583. name: "Small",
  18584. height: math.unit(1.7, "cm")
  18585. },
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(1.7, "m"),
  18589. default: true
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18595. {
  18596. front: {
  18597. height: math.unit(1.75, "meters"),
  18598. weight: math.unit(65, "kg"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/jayne-folest/front.svg",
  18602. extra: 2115 / 2007,
  18603. bottom: 0.02
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(1.75, "meters"),
  18608. weight: math.unit(65, "kg"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/jayne-folest/back.svg",
  18612. extra: 2115 / 2007,
  18613. bottom: 0.005
  18614. }
  18615. },
  18616. frontClothed: {
  18617. height: math.unit(1.75, "meters"),
  18618. weight: math.unit(65, "kg"),
  18619. name: "Front (Clothed)",
  18620. image: {
  18621. source: "./media/characters/jayne-folest/front-clothed.svg",
  18622. extra: 2115 / 2007,
  18623. bottom: 0.035
  18624. }
  18625. },
  18626. hand: {
  18627. height: math.unit(1 / 1.260, "feet"),
  18628. name: "Hand",
  18629. image: {
  18630. source: "./media/characters/jayne-folest/hand.svg"
  18631. }
  18632. },
  18633. foot: {
  18634. height: math.unit(1 / 0.918, "feet"),
  18635. name: "Foot",
  18636. image: {
  18637. source: "./media/characters/jayne-folest/foot.svg"
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Micro",
  18644. height: math.unit(4, "cm")
  18645. },
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(1.75, "meters")
  18649. },
  18650. {
  18651. name: "Macro",
  18652. height: math.unit(47.5, "meters"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(180, "cm"),
  18662. weight: math.unit(70, "kg"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/algier/front.svg",
  18666. extra: 596 / 572,
  18667. bottom: 0.04
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(180, "cm"),
  18672. weight: math.unit(70, "kg"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/algier/back.svg",
  18676. extra: 596 / 572,
  18677. bottom: 0.025
  18678. }
  18679. },
  18680. frontdressed: {
  18681. height: math.unit(180, "cm"),
  18682. weight: math.unit(150, "kg"),
  18683. name: "Front-dressed",
  18684. image: {
  18685. source: "./media/characters/algier/front-dressed.svg",
  18686. extra: 596 / 572,
  18687. bottom: 0.038
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Micro",
  18694. height: math.unit(5, "cm")
  18695. },
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(180, "cm"),
  18699. default: true
  18700. },
  18701. {
  18702. name: "Macro",
  18703. height: math.unit(64, "m")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18709. {
  18710. upright: {
  18711. height: math.unit(7, "feet"),
  18712. weight: math.unit(300, "lb"),
  18713. name: "Upright",
  18714. image: {
  18715. source: "./media/characters/pretzel/upright.svg",
  18716. extra: 534 / 522,
  18717. bottom: 0.065
  18718. }
  18719. },
  18720. sprawling: {
  18721. height: math.unit(3.75, "feet"),
  18722. weight: math.unit(300, "lb"),
  18723. name: "Sprawling",
  18724. image: {
  18725. source: "./media/characters/pretzel/sprawling.svg",
  18726. extra: 314 / 281,
  18727. bottom: 0.1
  18728. }
  18729. },
  18730. tongue: {
  18731. height: math.unit(2, "feet"),
  18732. name: "Tongue",
  18733. image: {
  18734. source: "./media/characters/pretzel/tongue.svg"
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(7, "feet"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Oversized",
  18746. height: math.unit(15, "feet")
  18747. },
  18748. {
  18749. name: "Huge",
  18750. height: math.unit(30, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(250, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18760. {
  18761. sideFront: {
  18762. height: math.unit(5 + 2 / 12, "feet"),
  18763. weight: math.unit(120, "lb"),
  18764. name: "Front Side",
  18765. image: {
  18766. source: "./media/characters/roxi/side-front.svg",
  18767. extra: 2924 / 2717,
  18768. bottom: 0.08
  18769. }
  18770. },
  18771. sideBack: {
  18772. height: math.unit(5 + 2 / 12, "feet"),
  18773. weight: math.unit(120, "lb"),
  18774. name: "Back Side",
  18775. image: {
  18776. source: "./media/characters/roxi/side-back.svg",
  18777. extra: 2904 / 2693,
  18778. bottom: 0.06
  18779. }
  18780. },
  18781. front: {
  18782. height: math.unit(5 + 2 / 12, "feet"),
  18783. weight: math.unit(120, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/roxi/front.svg",
  18787. extra: 2028 / 1907,
  18788. bottom: 0.01
  18789. }
  18790. },
  18791. frontAlt: {
  18792. height: math.unit(5 + 2 / 12, "feet"),
  18793. weight: math.unit(120, "lb"),
  18794. name: "Front (Alt)",
  18795. image: {
  18796. source: "./media/characters/roxi/front-alt.svg",
  18797. extra: 1828 / 1798,
  18798. bottom: 0.01
  18799. }
  18800. },
  18801. sitting: {
  18802. height: math.unit(2.8, "feet"),
  18803. weight: math.unit(120, "lb"),
  18804. name: "Sitting",
  18805. image: {
  18806. source: "./media/characters/roxi/sitting.svg",
  18807. extra: 2660 / 2462,
  18808. bottom: 0.1
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(5 + 2 / 12, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18822. {
  18823. side: {
  18824. height: math.unit(55, "feet"),
  18825. weight: math.unit(153, "tons"),
  18826. name: "Side",
  18827. image: {
  18828. source: "./media/characters/shadow/side.svg",
  18829. extra: 701 / 628,
  18830. bottom: 0.02
  18831. }
  18832. },
  18833. flying: {
  18834. height: math.unit(145, "feet"),
  18835. weight: math.unit(153, "tons"),
  18836. name: "Flying",
  18837. image: {
  18838. source: "./media/characters/shadow/flying.svg"
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(55, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(6, "feet"),
  18855. weight: math.unit(200, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/marcie/front.svg",
  18859. extra: 960 / 876,
  18860. bottom: 58 / 1017.87
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(1, "mile"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(7, "feet"),
  18877. weight: math.unit(200, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/kachina/front.svg",
  18881. extra: 1290.68 / 1119,
  18882. bottom: 36.5 / 1327.18
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(7, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18896. {
  18897. looking: {
  18898. height: math.unit(2, "meters"),
  18899. weight: math.unit(300, "kg"),
  18900. name: "Looking",
  18901. image: {
  18902. source: "./media/characters/kash/looking.svg",
  18903. extra: 474 / 344,
  18904. bottom: 0.03
  18905. }
  18906. },
  18907. side: {
  18908. height: math.unit(2, "meters"),
  18909. weight: math.unit(300, "kg"),
  18910. name: "Side",
  18911. image: {
  18912. source: "./media/characters/kash/side.svg",
  18913. extra: 302 / 251,
  18914. bottom: 0.03
  18915. }
  18916. },
  18917. front: {
  18918. height: math.unit(2, "meters"),
  18919. weight: math.unit(300, "kg"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/kash/front.svg",
  18923. extra: 495 / 360,
  18924. bottom: 0.015
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(2, "meters"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Big",
  18936. height: math.unit(3, "meters")
  18937. },
  18938. {
  18939. name: "Large",
  18940. height: math.unit(5, "meters")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18946. {
  18947. feeding: {
  18948. height: math.unit(6.7, "feet"),
  18949. weight: math.unit(350, "lb"),
  18950. name: "Feeding",
  18951. image: {
  18952. source: "./media/characters/lalim/feeding.svg",
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(6.7, "feet"),
  18960. default: true
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(9.5, "feet"),
  18969. weight: math.unit(600, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/de'vout/front.svg",
  18973. extra: 1443 / 1328,
  18974. bottom: 0.025
  18975. }
  18976. },
  18977. back: {
  18978. height: math.unit(9.5, "feet"),
  18979. weight: math.unit(600, "lb"),
  18980. name: "Back",
  18981. image: {
  18982. source: "./media/characters/de'vout/back.svg",
  18983. extra: 1443 / 1328
  18984. }
  18985. },
  18986. frontDressed: {
  18987. height: math.unit(9.5, "feet"),
  18988. weight: math.unit(600, "lb"),
  18989. name: "Front (Dressed",
  18990. image: {
  18991. source: "./media/characters/de'vout/front-dressed.svg",
  18992. extra: 1443 / 1328,
  18993. bottom: 0.025
  18994. }
  18995. },
  18996. backDressed: {
  18997. height: math.unit(9.5, "feet"),
  18998. weight: math.unit(600, "lb"),
  18999. name: "Back (Dressed",
  19000. image: {
  19001. source: "./media/characters/de'vout/back-dressed.svg",
  19002. extra: 1443 / 1328
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(9.5, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(8, "feet"),
  19019. weight: math.unit(225, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/talana/front.svg",
  19023. extra: 1410 / 1300,
  19024. bottom: 0.015
  19025. }
  19026. },
  19027. frontDressed: {
  19028. height: math.unit(8, "feet"),
  19029. weight: math.unit(225, "lb"),
  19030. name: "Front (Dressed",
  19031. image: {
  19032. source: "./media/characters/talana/front-dressed.svg",
  19033. extra: 1410 / 1300,
  19034. bottom: 0.015
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(8, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19048. {
  19049. side: {
  19050. height: math.unit(7.2, "feet"),
  19051. weight: math.unit(150, "lb"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/xeauvok/side.svg",
  19055. extra: 1975 / 1523,
  19056. bottom: 0.07
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(7.2, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19070. {
  19071. side: {
  19072. height: math.unit(4, "meters"),
  19073. weight: math.unit(2200, "kg"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/zara/side.svg",
  19077. extra: 765/744,
  19078. bottom: 156/921
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(4, "meters"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19092. {
  19093. side: {
  19094. height: math.unit(6, "feet"),
  19095. weight: math.unit(150, "lb"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/richard-dragon/side.svg",
  19099. extra: 845 / 340,
  19100. bottom: 0.017
  19101. }
  19102. },
  19103. maw: {
  19104. height: math.unit(2.97, "feet"),
  19105. name: "Maw",
  19106. image: {
  19107. source: "./media/characters/richard-dragon/maw.svg"
  19108. }
  19109. },
  19110. },
  19111. [
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(4, "feet"),
  19119. weight: math.unit(100, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/richard-smeargle/front.svg",
  19123. extra: 2952 / 2820,
  19124. bottom: 0.028
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(4, "feet"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Dynamax",
  19136. height: math.unit(20, "meters")
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6, "feet"),
  19145. weight: math.unit(110, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/klay/front.svg",
  19149. extra: 962 / 883,
  19150. bottom: 0.04
  19151. }
  19152. },
  19153. back: {
  19154. height: math.unit(6, "feet"),
  19155. weight: math.unit(110, "lb"),
  19156. name: "Back",
  19157. image: {
  19158. source: "./media/characters/klay/back.svg",
  19159. extra: 962 / 883
  19160. }
  19161. },
  19162. beans: {
  19163. height: math.unit(1.15, "feet"),
  19164. name: "Beans",
  19165. image: {
  19166. source: "./media/characters/klay/beans.svg"
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Micro",
  19173. height: math.unit(6, "inches")
  19174. },
  19175. {
  19176. name: "Mini",
  19177. height: math.unit(3, "feet")
  19178. },
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(6, "feet"),
  19182. default: true
  19183. },
  19184. {
  19185. name: "Big",
  19186. height: math.unit(25, "feet")
  19187. },
  19188. {
  19189. name: "Macro",
  19190. height: math.unit(100, "feet")
  19191. },
  19192. {
  19193. name: "Megamacro",
  19194. height: math.unit(400, "feet")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(6, "feet"),
  19203. weight: math.unit(160, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/marcus/front.svg",
  19207. extra: 734 / 676,
  19208. bottom: 0.03
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Little",
  19215. height: math.unit(6, "feet")
  19216. },
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(110, "feet"),
  19220. default: true
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(250, "feet")
  19225. },
  19226. {
  19227. name: "Megamacro",
  19228. height: math.unit(1000, "feet")
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(7, "feet"),
  19237. weight: math.unit(275, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/claude-delroute/front.svg",
  19241. extra: 902/827,
  19242. bottom: 26/928
  19243. }
  19244. },
  19245. side: {
  19246. height: math.unit(7, "feet"),
  19247. weight: math.unit(275, "lb"),
  19248. name: "Side",
  19249. image: {
  19250. source: "./media/characters/claude-delroute/side.svg",
  19251. extra: 908/853,
  19252. bottom: 16/924
  19253. }
  19254. },
  19255. back: {
  19256. height: math.unit(7, "feet"),
  19257. weight: math.unit(275, "lb"),
  19258. name: "Back",
  19259. image: {
  19260. source: "./media/characters/claude-delroute/back.svg",
  19261. extra: 911/829,
  19262. bottom: 18/929
  19263. }
  19264. },
  19265. maw: {
  19266. height: math.unit(0.6407, "meters"),
  19267. name: "Maw",
  19268. image: {
  19269. source: "./media/characters/claude-delroute/maw.svg"
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(7, "feet"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Lorge",
  19281. height: math.unit(20, "feet")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(8 + 4 / 12, "feet"),
  19290. weight: math.unit(600, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/dragonien/front.svg",
  19294. extra: 100 / 94,
  19295. bottom: 3.3 / 103.3445
  19296. }
  19297. },
  19298. back: {
  19299. height: math.unit(8 + 4 / 12, "feet"),
  19300. weight: math.unit(600, "lb"),
  19301. name: "Back",
  19302. image: {
  19303. source: "./media/characters/dragonien/back.svg",
  19304. extra: 776 / 746,
  19305. bottom: 6.4 / 782.0616
  19306. }
  19307. },
  19308. foot: {
  19309. height: math.unit(1.54, "feet"),
  19310. name: "Foot",
  19311. image: {
  19312. source: "./media/characters/dragonien/foot.svg",
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(8 + 4 / 12, "feet"),
  19320. default: true
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(200, "feet")
  19325. },
  19326. {
  19327. name: "Megamacro",
  19328. height: math.unit(1, "mile")
  19329. },
  19330. {
  19331. name: "Gigamacro",
  19332. height: math.unit(1000, "miles")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19338. {
  19339. front: {
  19340. height: math.unit(5 + 2 / 12, "feet"),
  19341. weight: math.unit(110, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/desta/front.svg",
  19345. extra: 767 / 726,
  19346. bottom: 11.7 / 779
  19347. }
  19348. },
  19349. back: {
  19350. height: math.unit(5 + 2 / 12, "feet"),
  19351. weight: math.unit(110, "lb"),
  19352. name: "Back",
  19353. image: {
  19354. source: "./media/characters/desta/back.svg",
  19355. extra: 777 / 728,
  19356. bottom: 6 / 784
  19357. }
  19358. },
  19359. frontAlt: {
  19360. height: math.unit(5 + 2 / 12, "feet"),
  19361. weight: math.unit(110, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/desta/front-alt.svg",
  19365. extra: 1482 / 1417
  19366. }
  19367. },
  19368. side: {
  19369. height: math.unit(5 + 2 / 12, "feet"),
  19370. weight: math.unit(110, "lb"),
  19371. name: "Side",
  19372. image: {
  19373. source: "./media/characters/desta/side.svg",
  19374. extra: 2579 / 2491,
  19375. bottom: 0.053
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Micro",
  19382. height: math.unit(6, "inches")
  19383. },
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(5 + 2 / 12, "feet"),
  19387. default: true
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(62, "feet")
  19392. },
  19393. {
  19394. name: "Megamacro",
  19395. height: math.unit(1800, "feet")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(10, "feet"),
  19404. weight: math.unit(700, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/storm-alystar/front.svg",
  19408. extra: 2112 / 1898,
  19409. bottom: 0.034
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Micro",
  19416. height: math.unit(3.5, "inches")
  19417. },
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(10, "feet"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(400, "feet")
  19426. },
  19427. {
  19428. name: "Deific",
  19429. height: math.unit(60, "miles")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(2.35, "meters"),
  19438. weight: math.unit(119, "kg"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/ilia/front.svg",
  19442. extra: 1285 / 1255,
  19443. bottom: 0.06
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(2.35, "meters")
  19451. },
  19452. {
  19453. name: "Macro",
  19454. height: math.unit(140, "meters"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Megamacro",
  19459. height: math.unit(100, "miles")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(6 + 5 / 12, "feet"),
  19468. weight: math.unit(190, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/kingdead/front.svg",
  19472. extra: 1228 / 1177
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Micro",
  19479. height: math.unit(7, "inches")
  19480. },
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(6 + 5 / 12, "feet")
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(150, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Megamacro",
  19492. height: math.unit(200, "miles")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(8, "feet"),
  19501. weight: math.unit(600, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/kyrehx/front.svg",
  19505. extra: 1195 / 1095,
  19506. bottom: 0.034
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Micro",
  19513. height: math.unit(2, "inches")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(8, "feet"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(255, "feet")
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19531. weight: math.unit(184, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/xang/front.svg",
  19535. extra: 845 / 755
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19543. default: true
  19544. },
  19545. {
  19546. name: "Macro",
  19547. height: math.unit(0.935 * 146, "feet")
  19548. },
  19549. {
  19550. name: "Megamacro",
  19551. height: math.unit(0.935 * 3, "miles")
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19557. {
  19558. frontDressed: {
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. weight: math.unit(140, "lb"),
  19561. name: "Front (Dressed)",
  19562. image: {
  19563. source: "./media/characters/doc-weardno/front-dressed.svg",
  19564. extra: 263 / 234
  19565. }
  19566. },
  19567. backDressed: {
  19568. height: math.unit(5 + 7 / 12, "feet"),
  19569. weight: math.unit(140, "lb"),
  19570. name: "Back (Dressed)",
  19571. image: {
  19572. source: "./media/characters/doc-weardno/back-dressed.svg",
  19573. extra: 266 / 238
  19574. }
  19575. },
  19576. front: {
  19577. height: math.unit(5 + 7 / 12, "feet"),
  19578. weight: math.unit(140, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/doc-weardno/front.svg",
  19582. extra: 254 / 233
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Micro",
  19589. height: math.unit(3, "inches")
  19590. },
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(5 + 7 / 12, "feet"),
  19594. default: true
  19595. },
  19596. {
  19597. name: "Macro",
  19598. height: math.unit(25, "feet")
  19599. },
  19600. {
  19601. name: "Megamacro",
  19602. height: math.unit(2, "miles")
  19603. },
  19604. ]
  19605. ))
  19606. characterMakers.push(() => makeCharacter(
  19607. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19608. {
  19609. front: {
  19610. height: math.unit(6 + 2 / 12, "feet"),
  19611. weight: math.unit(153, "lb"),
  19612. name: "Front",
  19613. image: {
  19614. source: "./media/characters/seth-whilst/front.svg",
  19615. bottom: 0.07
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Micro",
  19622. height: math.unit(5, "inches")
  19623. },
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(6 + 2 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(3, "inches"),
  19636. weight: math.unit(8, "grams"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/pocket-jabari/front.svg",
  19640. extra: 1024 / 974,
  19641. bottom: 0.039
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Minimicro",
  19648. height: math.unit(8, "mm")
  19649. },
  19650. {
  19651. name: "Micro",
  19652. height: math.unit(3, "inches"),
  19653. default: true
  19654. },
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(3, "feet")
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19663. {
  19664. frontDressed: {
  19665. height: math.unit(15, "feet"),
  19666. weight: math.unit(3280, "lb"),
  19667. name: "Front (Dressed)",
  19668. image: {
  19669. source: "./media/characters/sapphy/front-dressed.svg",
  19670. extra: 1951/1654,
  19671. bottom: 194/2145
  19672. },
  19673. form: "anthro",
  19674. default: true
  19675. },
  19676. backDressed: {
  19677. height: math.unit(15, "feet"),
  19678. weight: math.unit(3280, "lb"),
  19679. name: "Back (Dressed)",
  19680. image: {
  19681. source: "./media/characters/sapphy/back-dressed.svg",
  19682. extra: 2058/1918,
  19683. bottom: 125/2183
  19684. },
  19685. form: "anthro"
  19686. },
  19687. frontNude: {
  19688. height: math.unit(15, "feet"),
  19689. weight: math.unit(3280, "lb"),
  19690. name: "Front (Nude)",
  19691. image: {
  19692. source: "./media/characters/sapphy/front-nude.svg",
  19693. extra: 1951/1654,
  19694. bottom: 194/2145
  19695. },
  19696. form: "anthro"
  19697. },
  19698. backNude: {
  19699. height: math.unit(15, "feet"),
  19700. weight: math.unit(3280, "lb"),
  19701. name: "Back (Nude)",
  19702. image: {
  19703. source: "./media/characters/sapphy/back-nude.svg",
  19704. extra: 2058/1918,
  19705. bottom: 125/2183
  19706. },
  19707. form: "anthro"
  19708. },
  19709. full: {
  19710. height: math.unit(15, "feet"),
  19711. weight: math.unit(3280, "lb"),
  19712. name: "Full",
  19713. image: {
  19714. source: "./media/characters/sapphy/full.svg",
  19715. extra: 1396/1317,
  19716. bottom: 44/1440
  19717. },
  19718. form: "anthro"
  19719. },
  19720. dick: {
  19721. height: math.unit(3.8, "feet"),
  19722. name: "Dick",
  19723. image: {
  19724. source: "./media/characters/sapphy/dick.svg"
  19725. },
  19726. form: "anthro"
  19727. },
  19728. feral: {
  19729. height: math.unit(35, "feet"),
  19730. weight: math.unit(160, "tons"),
  19731. name: "Feral",
  19732. image: {
  19733. source: "./media/characters/sapphy/feral.svg",
  19734. extra: 1050/573,
  19735. bottom: 60/1110
  19736. },
  19737. form: "feral",
  19738. default: true
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(15, "feet"),
  19745. form: "anthro"
  19746. },
  19747. {
  19748. name: "Casual Macro",
  19749. height: math.unit(120, "feet"),
  19750. form: "anthro"
  19751. },
  19752. {
  19753. name: "Macro",
  19754. height: math.unit(2150, "feet"),
  19755. default: true,
  19756. form: "anthro"
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(8, "miles"),
  19761. form: "anthro"
  19762. },
  19763. {
  19764. name: "Galaxy Mom",
  19765. height: math.unit(6, "megalightyears"),
  19766. form: "anthro"
  19767. },
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(35, "feet"),
  19771. form: "feral",
  19772. default: true
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(300, "feet"),
  19777. form: "feral"
  19778. },
  19779. {
  19780. name: "Galaxy Mom",
  19781. height: math.unit(10, "megalightyears"),
  19782. form: "feral"
  19783. },
  19784. ],
  19785. {
  19786. "anthro": {
  19787. name: "Anthro",
  19788. default: true
  19789. },
  19790. "feral": {
  19791. name: "Feral"
  19792. }
  19793. }
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(6, "feet"),
  19800. weight: math.unit(170, "lb"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/kiro/front.svg",
  19804. extra: 1064 / 1012,
  19805. bottom: 0.052
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Micro",
  19812. height: math.unit(6, "inches")
  19813. },
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(6, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(72, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(5 + 9 / 12, "feet"),
  19830. weight: math.unit(175, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/irishfox/front.svg",
  19834. extra: 1912 / 1680,
  19835. bottom: 0.02
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Nano",
  19842. height: math.unit(1, "mm")
  19843. },
  19844. {
  19845. name: "Micro",
  19846. height: math.unit(2, "inches")
  19847. },
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(5 + 9 / 12, "feet"),
  19851. default: true
  19852. },
  19853. {
  19854. name: "Macro",
  19855. height: math.unit(45, "feet")
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(6 + 1 / 12, "feet"),
  19864. weight: math.unit(75, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/aronai-sieyes/front.svg",
  19868. extra: 1532/1450,
  19869. bottom: 42/1574
  19870. }
  19871. },
  19872. side: {
  19873. height: math.unit(6 + 1 / 12, "feet"),
  19874. weight: math.unit(75, "lb"),
  19875. name: "Side",
  19876. image: {
  19877. source: "./media/characters/aronai-sieyes/side.svg",
  19878. extra: 1422/1365,
  19879. bottom: 148/1570
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(6 + 1 / 12, "feet"),
  19884. weight: math.unit(75, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/aronai-sieyes/back.svg",
  19888. extra: 1526/1464,
  19889. bottom: 51/1577
  19890. }
  19891. },
  19892. dressed: {
  19893. height: math.unit(6 + 1 / 12, "feet"),
  19894. weight: math.unit(75, "lb"),
  19895. name: "Dressed",
  19896. image: {
  19897. source: "./media/characters/aronai-sieyes/dressed.svg",
  19898. extra: 1559/1483,
  19899. bottom: 39/1598
  19900. }
  19901. },
  19902. slit: {
  19903. height: math.unit(1.3, "feet"),
  19904. name: "Slit",
  19905. image: {
  19906. source: "./media/characters/aronai-sieyes/slit.svg"
  19907. }
  19908. },
  19909. slitSpread: {
  19910. height: math.unit(0.9, "feet"),
  19911. name: "Slit (Spread)",
  19912. image: {
  19913. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19914. }
  19915. },
  19916. rump: {
  19917. height: math.unit(1.3, "feet"),
  19918. name: "Rump",
  19919. image: {
  19920. source: "./media/characters/aronai-sieyes/rump.svg"
  19921. }
  19922. },
  19923. maw: {
  19924. height: math.unit(1.25, "feet"),
  19925. name: "Maw",
  19926. image: {
  19927. source: "./media/characters/aronai-sieyes/maw.svg"
  19928. }
  19929. },
  19930. feral: {
  19931. height: math.unit(18, "feet"),
  19932. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19933. name: "Feral",
  19934. image: {
  19935. source: "./media/characters/aronai-sieyes/feral.svg",
  19936. extra: 1530 / 1240,
  19937. bottom: 0.035
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Micro",
  19944. height: math.unit(2, "inches")
  19945. },
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(6 + 1 / 12, "feet"),
  19949. default: true
  19950. }
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(12, "feet"),
  19958. weight: math.unit(410, "kg"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/xuna/front.svg",
  19962. extra: 2184 / 1980
  19963. }
  19964. },
  19965. side: {
  19966. height: math.unit(12, "feet"),
  19967. weight: math.unit(410, "kg"),
  19968. name: "Side",
  19969. image: {
  19970. source: "./media/characters/xuna/side.svg",
  19971. extra: 2184 / 1980
  19972. }
  19973. },
  19974. back: {
  19975. height: math.unit(12, "feet"),
  19976. weight: math.unit(410, "kg"),
  19977. name: "Back",
  19978. image: {
  19979. source: "./media/characters/xuna/back.svg",
  19980. extra: 2184 / 1980
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Nano glow",
  19987. height: math.unit(10, "nm")
  19988. },
  19989. {
  19990. name: "Micro floof",
  19991. height: math.unit(0.3, "m")
  19992. },
  19993. {
  19994. name: "Huggable softy boi",
  19995. height: math.unit(3.6576, "m"),
  19996. default: true
  19997. },
  19998. {
  19999. name: "Admirable floof",
  20000. height: math.unit(80, "meters")
  20001. },
  20002. {
  20003. name: "Gentle macro",
  20004. height: math.unit(300, "meters")
  20005. },
  20006. {
  20007. name: "Very careful floof",
  20008. height: math.unit(3200, "meters")
  20009. },
  20010. {
  20011. name: "The mega floof",
  20012. height: math.unit(36000, "meters")
  20013. },
  20014. {
  20015. name: "Giga-fur-Wicker",
  20016. height: math.unit(4800000, "meters")
  20017. },
  20018. {
  20019. name: "Licky world",
  20020. height: math.unit(20000000, "meters")
  20021. },
  20022. {
  20023. name: "Floofy cyan sun",
  20024. height: math.unit(1500000000, "meters")
  20025. },
  20026. {
  20027. name: "Milky Wicker",
  20028. height: math.unit(1000000000000000000000, "meters")
  20029. },
  20030. {
  20031. name: "The observing Wicker",
  20032. height: math.unit(999999999999999999999999999, "meters")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(5 + 9 / 12, "feet"),
  20041. weight: math.unit(150, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/arokha-sieyes/front.svg",
  20045. extra: 1425 / 1284,
  20046. bottom: 0.05
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(5 + 9 / 12, "feet")
  20054. },
  20055. {
  20056. name: "Macro",
  20057. height: math.unit(30, "meters"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(6, "feet"),
  20067. weight: math.unit(180, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/arokh-sieyes/front.svg",
  20071. extra: 1830 / 1769,
  20072. bottom: 0.01
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(6, "feet")
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(30, "meters"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20090. {
  20091. side: {
  20092. height: math.unit(13 + 1 / 12, "feet"),
  20093. weight: math.unit(8.5, "tonnes"),
  20094. name: "Side",
  20095. image: {
  20096. source: "./media/characters/goldeneye/side.svg",
  20097. extra: 1182 / 778,
  20098. bottom: 0.067
  20099. }
  20100. },
  20101. paw: {
  20102. height: math.unit(3.4, "feet"),
  20103. name: "Paw",
  20104. image: {
  20105. source: "./media/characters/goldeneye/paw.svg"
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(13 + 1 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20119. {
  20120. front: {
  20121. height: math.unit(6 + 1 / 12, "feet"),
  20122. weight: math.unit(210, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/leonardo-lycheborne/front.svg",
  20126. extra: 776/723,
  20127. bottom: 34/810
  20128. }
  20129. },
  20130. side: {
  20131. height: math.unit(6 + 1 / 12, "feet"),
  20132. weight: math.unit(210, "lb"),
  20133. name: "Side",
  20134. image: {
  20135. source: "./media/characters/leonardo-lycheborne/side.svg",
  20136. extra: 780/728,
  20137. bottom: 12/792
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(6 + 1 / 12, "feet"),
  20142. weight: math.unit(210, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/leonardo-lycheborne/back.svg",
  20146. extra: 775/721,
  20147. bottom: 17/792
  20148. }
  20149. },
  20150. hand: {
  20151. height: math.unit(1.08, "feet"),
  20152. name: "Hand",
  20153. image: {
  20154. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20155. }
  20156. },
  20157. foot: {
  20158. height: math.unit(1.32, "feet"),
  20159. name: "Foot",
  20160. image: {
  20161. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20162. }
  20163. },
  20164. maw: {
  20165. height: math.unit(1, "feet"),
  20166. name: "Maw",
  20167. image: {
  20168. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20169. }
  20170. },
  20171. were: {
  20172. height: math.unit(20, "feet"),
  20173. weight: math.unit(7800, "lb"),
  20174. name: "Were",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/were.svg",
  20177. extra: 1224/1165,
  20178. bottom: 72/1296
  20179. }
  20180. },
  20181. feral: {
  20182. height: math.unit(7.5, "feet"),
  20183. weight: math.unit(600, "lb"),
  20184. name: "Feral",
  20185. image: {
  20186. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20187. extra: 797/702,
  20188. bottom: 139/936
  20189. }
  20190. },
  20191. taur: {
  20192. height: math.unit(11, "feet"),
  20193. weight: math.unit(3300, "lb"),
  20194. name: "Taur",
  20195. image: {
  20196. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20197. extra: 1271/1197,
  20198. bottom: 47/1318
  20199. }
  20200. },
  20201. barghest: {
  20202. height: math.unit(11, "feet"),
  20203. weight: math.unit(1300, "lb"),
  20204. name: "Barghest",
  20205. image: {
  20206. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20207. extra: 1291/1204,
  20208. bottom: 37/1328
  20209. }
  20210. },
  20211. dick: {
  20212. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20213. name: "Dick",
  20214. image: {
  20215. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20216. }
  20217. },
  20218. dickWere: {
  20219. height: math.unit((20) / 3.8, "feet"),
  20220. name: "Dick (Were)",
  20221. image: {
  20222. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(6 + 1 / 12, "feet"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(10, "feet"),
  20239. weight: math.unit(350, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/jet/front.svg",
  20243. extra: 2050 / 1980,
  20244. bottom: 0.013
  20245. }
  20246. },
  20247. back: {
  20248. height: math.unit(10, "feet"),
  20249. weight: math.unit(350, "lb"),
  20250. name: "Back",
  20251. image: {
  20252. source: "./media/characters/jet/back.svg",
  20253. extra: 2050 / 1980,
  20254. bottom: 0.013
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Micro",
  20261. height: math.unit(6, "inches")
  20262. },
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(10, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(100, "feet")
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(15, "feet"),
  20279. weight: math.unit(2800, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/tanarath/front.svg",
  20283. extra: 2392 / 2220,
  20284. bottom: 0.03
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(15, "feet"),
  20289. weight: math.unit(2800, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/tanarath/back.svg",
  20293. extra: 2392 / 2220,
  20294. bottom: 0.03
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(15, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(7 + 1 / 12, "feet"),
  20311. weight: math.unit(175, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/patty-cattybatty/front.svg",
  20315. extra: 908 / 874,
  20316. bottom: 0.025
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Micro",
  20323. height: math.unit(1, "inch")
  20324. },
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(7 + 1 / 12, "feet")
  20328. },
  20329. {
  20330. name: "Mini Macro",
  20331. height: math.unit(155, "feet")
  20332. },
  20333. {
  20334. name: "Macro",
  20335. height: math.unit(1077, "feet")
  20336. },
  20337. {
  20338. name: "Mega Macro",
  20339. height: math.unit(47650, "feet"),
  20340. default: true
  20341. },
  20342. {
  20343. name: "Giga Macro",
  20344. height: math.unit(440, "miles")
  20345. },
  20346. {
  20347. name: "Tera Macro",
  20348. height: math.unit(8700, "miles")
  20349. },
  20350. {
  20351. name: "Planetary Macro",
  20352. height: math.unit(32700, "miles")
  20353. },
  20354. {
  20355. name: "Solar Macro",
  20356. height: math.unit(550000, "miles")
  20357. },
  20358. {
  20359. name: "Celestial Macro",
  20360. height: math.unit(2.5, "AU")
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(4 + 5 / 12, "feet"),
  20369. weight: math.unit(90, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/cappu/front.svg",
  20373. extra: 1247 / 1152,
  20374. bottom: 0.012
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Normal",
  20381. height: math.unit(4 + 5 / 12, "feet"),
  20382. default: true
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20388. {
  20389. frontDressed: {
  20390. height: math.unit(70, "cm"),
  20391. weight: math.unit(6, "kg"),
  20392. name: "Front (Dressed)",
  20393. image: {
  20394. source: "./media/characters/sebi/front-dressed.svg",
  20395. extra: 713.5 / 686.5,
  20396. bottom: 0.003
  20397. }
  20398. },
  20399. front: {
  20400. height: math.unit(70, "cm"),
  20401. weight: math.unit(5, "kg"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/sebi/front.svg",
  20405. extra: 713.5 / 686.5,
  20406. bottom: 0.003
  20407. }
  20408. }
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(70, "cm"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Macro",
  20418. height: math.unit(8, "meters")
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(6, "feet"),
  20427. weight: math.unit(150, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/typhek/front.svg",
  20431. extra: 1948 / 1929,
  20432. bottom: 0.025
  20433. }
  20434. },
  20435. side: {
  20436. height: math.unit(6, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Side",
  20439. image: {
  20440. source: "./media/characters/typhek/side.svg",
  20441. extra: 2034 / 2010,
  20442. bottom: 0.003
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(6, "feet"),
  20447. weight: math.unit(150, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/typhek/back.svg",
  20451. extra: 2005 / 1978,
  20452. bottom: 0.004
  20453. }
  20454. },
  20455. palm: {
  20456. height: math.unit(1.2, "feet"),
  20457. name: "Palm",
  20458. image: {
  20459. source: "./media/characters/typhek/palm.svg"
  20460. }
  20461. },
  20462. fist: {
  20463. height: math.unit(1.1, "feet"),
  20464. name: "Fist",
  20465. image: {
  20466. source: "./media/characters/typhek/fist.svg"
  20467. }
  20468. },
  20469. foot: {
  20470. height: math.unit(1.57, "feet"),
  20471. name: "Foot",
  20472. image: {
  20473. source: "./media/characters/typhek/foot.svg"
  20474. }
  20475. },
  20476. sole: {
  20477. height: math.unit(2.05, "feet"),
  20478. name: "Sole",
  20479. image: {
  20480. source: "./media/characters/typhek/sole.svg"
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Macro",
  20487. height: math.unit(40, "stories"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Megamacro",
  20492. height: math.unit(1, "mile")
  20493. },
  20494. {
  20495. name: "Gigamacro",
  20496. height: math.unit(4000, "solarradii")
  20497. },
  20498. {
  20499. name: "Universal",
  20500. height: math.unit(1.1, "universes")
  20501. }
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20506. {
  20507. side: {
  20508. height: math.unit(5 + 7 / 12, "feet"),
  20509. weight: math.unit(150, "lb"),
  20510. name: "Side",
  20511. image: {
  20512. source: "./media/characters/kassy/side.svg",
  20513. extra: 1280 / 1225,
  20514. bottom: 0.002
  20515. }
  20516. },
  20517. front: {
  20518. height: math.unit(5 + 7 / 12, "feet"),
  20519. weight: math.unit(150, "lb"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/kassy/front.svg",
  20523. extra: 1280 / 1225,
  20524. bottom: 0.025
  20525. }
  20526. },
  20527. back: {
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. weight: math.unit(150, "lb"),
  20530. name: "Back",
  20531. image: {
  20532. source: "./media/characters/kassy/back.svg",
  20533. extra: 1280 / 1225,
  20534. bottom: 0.002
  20535. }
  20536. },
  20537. foot: {
  20538. height: math.unit(1.266, "feet"),
  20539. name: "Foot",
  20540. image: {
  20541. source: "./media/characters/kassy/foot.svg"
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(5 + 7 / 12, "feet")
  20549. },
  20550. {
  20551. name: "Macro",
  20552. height: math.unit(137, "feet"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Megamacro",
  20557. height: math.unit(1, "mile")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(6 + 1 / 12, "feet"),
  20566. weight: math.unit(200, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/neil/front.svg",
  20570. extra: 1326 / 1250,
  20571. bottom: 0.023
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(6 + 1 / 12, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(200, "feet")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(5 + 9 / 12, "feet"),
  20592. weight: math.unit(190, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/atticus/front.svg",
  20596. extra: 2934 / 2785,
  20597. bottom: 0.025
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(5 + 9 / 12, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Macro",
  20609. height: math.unit(180, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20615. {
  20616. side: {
  20617. height: math.unit(9, "feet"),
  20618. weight: math.unit(650, "lb"),
  20619. name: "Side",
  20620. image: {
  20621. source: "./media/characters/milo/side.svg",
  20622. extra: 2644 / 2310,
  20623. bottom: 0.032
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(9, "feet"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(300, "feet")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20641. {
  20642. side: {
  20643. height: math.unit(8, "meters"),
  20644. weight: math.unit(90000, "kg"),
  20645. name: "Side",
  20646. image: {
  20647. source: "./media/characters/ijzer/side.svg",
  20648. extra: 2756 / 1600,
  20649. bottom: 0.01
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Small",
  20656. height: math.unit(3, "meters")
  20657. },
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(8, "meters"),
  20661. default: true
  20662. },
  20663. {
  20664. name: "Normal+",
  20665. height: math.unit(10, "meters")
  20666. },
  20667. {
  20668. name: "Bigger",
  20669. height: math.unit(24, "meters")
  20670. },
  20671. {
  20672. name: "Huge",
  20673. height: math.unit(80, "meters")
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(6 + 2 / 12, "feet"),
  20682. weight: math.unit(153, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/luca-cervicum/front.svg",
  20686. extra: 370 / 327,
  20687. bottom: 0.015
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(6 + 2 / 12, "feet"),
  20692. weight: math.unit(153, "lb"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/luca-cervicum/back.svg",
  20696. extra: 367 / 333,
  20697. bottom: 0.005
  20698. }
  20699. },
  20700. frontGear: {
  20701. height: math.unit(6 + 2 / 12, "feet"),
  20702. weight: math.unit(173, "lb"),
  20703. name: "Front (Gear)",
  20704. image: {
  20705. source: "./media/characters/luca-cervicum/front-gear.svg",
  20706. extra: 377 / 333,
  20707. bottom: 0.006
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(6 + 2 / 12, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(6 + 1 / 12, "feet"),
  20724. weight: math.unit(304, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/oliver/front.svg",
  20728. extra: 157 / 143,
  20729. bottom: 0.08
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(6 + 1 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(5 + 7 / 12, "feet"),
  20746. weight: math.unit(140, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/shane/front.svg",
  20750. extra: 304 / 289,
  20751. bottom: 0.005
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5 + 7 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(5 + 9 / 12, "feet"),
  20768. weight: math.unit(178, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/shin/front.svg",
  20772. extra: 159 / 151,
  20773. bottom: 0.015
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(5 + 9 / 12, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(5 + 10 / 12, "feet"),
  20790. weight: math.unit(168, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/xerxes/front.svg",
  20794. extra: 282 / 260,
  20795. bottom: 0.045
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(5 + 10 / 12, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20809. {
  20810. front: {
  20811. height: math.unit(6 + 7 / 12, "feet"),
  20812. weight: math.unit(208, "lb"),
  20813. name: "Front",
  20814. image: {
  20815. source: "./media/characters/chaska/front.svg",
  20816. extra: 332 / 319,
  20817. bottom: 0.015
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(6 + 7 / 12, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(5 + 8 / 12, "feet"),
  20834. weight: math.unit(208, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/enuk/front.svg",
  20838. extra: 437 / 406,
  20839. bottom: 0.02
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(5 + 8 / 12, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(5 + 10 / 12, "feet"),
  20856. weight: math.unit(252, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/bruun/front.svg",
  20860. extra: 197 / 187,
  20861. bottom: 0.012
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(5 + 10 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(6 + 10 / 12, "feet"),
  20878. weight: math.unit(255, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/alexeev/front.svg",
  20882. extra: 213 / 200,
  20883. bottom: 0.05
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(6 + 10 / 12, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(2 + 8 / 12, "feet"),
  20900. weight: math.unit(22, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/evelyn/front.svg",
  20904. extra: 208 / 180
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(2 + 8 / 12, "feet"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(5 + 9 / 12, "feet"),
  20921. weight: math.unit(139, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/inca/front.svg",
  20925. extra: 294 / 291,
  20926. bottom: 0.03
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(5 + 9 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(6 + 3 / 12, "feet"),
  20943. weight: math.unit(185, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/mera/front.svg",
  20947. extra: 291 / 277,
  20948. bottom: 0.03
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(6 + 3 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(6 + 7 / 12, "feet"),
  20965. weight: math.unit(160, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/ceres/front.svg",
  20969. extra: 1023 / 950,
  20970. bottom: 0.027
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(6 + 7 / 12, "feet"),
  20975. weight: math.unit(160, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/ceres/back.svg",
  20979. extra: 1023 / 950
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(6 + 7 / 12, "feet"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(5 + 10 / 12, "feet"),
  20996. weight: math.unit(150, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/kris/front.svg",
  21000. extra: 885 / 803,
  21001. bottom: 0.03
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(5 + 10 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(7, "feet"),
  21018. weight: math.unit(120, "kg"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/taluthus/front.svg",
  21022. extra: 903 / 833,
  21023. bottom: 0.015
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(7, "feet"),
  21031. default: true
  21032. },
  21033. {
  21034. name: "Macro",
  21035. height: math.unit(300, "feet")
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21041. {
  21042. front: {
  21043. height: math.unit(5 + 9 / 12, "feet"),
  21044. weight: math.unit(145, "lb"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/dawn/front.svg",
  21048. extra: 2094 / 2016,
  21049. bottom: 0.025
  21050. }
  21051. },
  21052. back: {
  21053. height: math.unit(5 + 9 / 12, "feet"),
  21054. weight: math.unit(160, "lb"),
  21055. name: "Back",
  21056. image: {
  21057. source: "./media/characters/dawn/back.svg",
  21058. extra: 2112 / 2080,
  21059. bottom: 0.005
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(6 + 7 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21073. {
  21074. anthro: {
  21075. height: math.unit(8 + 3 / 12, "feet"),
  21076. weight: math.unit(450, "lb"),
  21077. name: "Anthro",
  21078. image: {
  21079. source: "./media/characters/arador/anthro.svg",
  21080. extra: 1835 / 1718,
  21081. bottom: 0.025
  21082. }
  21083. },
  21084. feral: {
  21085. height: math.unit(4, "feet"),
  21086. weight: math.unit(200, "lb"),
  21087. name: "Feral",
  21088. image: {
  21089. source: "./media/characters/arador/feral.svg",
  21090. extra: 1683 / 1514,
  21091. bottom: 0.07
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(8 + 3 / 12, "feet")
  21099. },
  21100. {
  21101. name: "Macro",
  21102. height: math.unit(82.5, "feet"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(5 + 10 / 12, "feet"),
  21112. weight: math.unit(125, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/dharsi/front.svg",
  21116. extra: 716 / 630,
  21117. bottom: 0.035
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Nano",
  21124. height: math.unit(100, "nm")
  21125. },
  21126. {
  21127. name: "Micro",
  21128. height: math.unit(2, "inches")
  21129. },
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(5 + 10 / 12, "feet"),
  21133. default: true
  21134. },
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(1000, "feet")
  21138. },
  21139. {
  21140. name: "Megamacro",
  21141. height: math.unit(10, "miles")
  21142. },
  21143. {
  21144. name: "Gigamacro",
  21145. height: math.unit(3000, "miles")
  21146. },
  21147. {
  21148. name: "Teramacro",
  21149. height: math.unit(500000, "miles")
  21150. },
  21151. {
  21152. name: "Teramacro+",
  21153. height: math.unit(30, "galaxies")
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(6, "feet"),
  21162. weight: math.unit(150, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/deathy/front.svg",
  21166. extra: 1552 / 1463,
  21167. bottom: 0.025
  21168. }
  21169. },
  21170. side: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(150, "lb"),
  21173. name: "Side",
  21174. image: {
  21175. source: "./media/characters/deathy/side.svg",
  21176. extra: 1604 / 1455,
  21177. bottom: 0.025
  21178. }
  21179. },
  21180. back: {
  21181. height: math.unit(6, "feet"),
  21182. weight: math.unit(150, "lb"),
  21183. name: "Back",
  21184. image: {
  21185. source: "./media/characters/deathy/back.svg",
  21186. extra: 1580 / 1463,
  21187. bottom: 0.005
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Micro",
  21194. height: math.unit(5, "millimeters")
  21195. },
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(6 + 5 / 12, "feet"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21205. {
  21206. front: {
  21207. height: math.unit(16, "feet"),
  21208. weight: math.unit(4000, "lb"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/juniper/front.svg",
  21212. bottom: 0.04
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(16, "feet"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(6, "feet"),
  21229. weight: math.unit(150, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/hipster/front.svg",
  21233. extra: 1312 / 1209,
  21234. bottom: 0.025
  21235. }
  21236. },
  21237. back: {
  21238. height: math.unit(6, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Back",
  21241. image: {
  21242. source: "./media/characters/hipster/back.svg",
  21243. extra: 1281 / 1196,
  21244. bottom: 0.01
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Micro",
  21251. height: math.unit(1, "mm")
  21252. },
  21253. {
  21254. name: "Normal",
  21255. height: math.unit(4, "inches"),
  21256. default: true
  21257. },
  21258. {
  21259. name: "Macro",
  21260. height: math.unit(500, "feet")
  21261. },
  21262. {
  21263. name: "Megamacro",
  21264. height: math.unit(1000, "miles")
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21270. {
  21271. front: {
  21272. height: math.unit(6, "feet"),
  21273. weight: math.unit(150, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/tendirmuldr/front.svg",
  21277. extra: 1878 / 1772,
  21278. bottom: 0.015
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Megamacro",
  21285. height: math.unit(1500, "miles"),
  21286. default: true
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21292. {
  21293. front: {
  21294. height: math.unit(14, "feet"),
  21295. weight: math.unit(12000, "lb"),
  21296. name: "Front",
  21297. image: {
  21298. source: "./media/characters/mort/front.svg",
  21299. extra: 365 / 318,
  21300. bottom: 0.01
  21301. }
  21302. },
  21303. side: {
  21304. height: math.unit(14, "feet"),
  21305. weight: math.unit(12000, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/mort/side.svg",
  21309. extra: 365 / 318,
  21310. bottom: 0.052
  21311. },
  21312. default: true
  21313. },
  21314. back: {
  21315. height: math.unit(14, "feet"),
  21316. weight: math.unit(12000, "lb"),
  21317. name: "Back",
  21318. image: {
  21319. source: "./media/characters/mort/back.svg",
  21320. extra: 371 / 332,
  21321. bottom: 0.18
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(14, "feet"),
  21329. default: true
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21335. {
  21336. front: {
  21337. height: math.unit(8, "feet"),
  21338. weight: math.unit(1, "ton"),
  21339. name: "Front",
  21340. image: {
  21341. source: "./media/characters/lycoa/front.svg",
  21342. extra: 1836/1728,
  21343. bottom: 81/1917
  21344. }
  21345. },
  21346. back: {
  21347. height: math.unit(8, "feet"),
  21348. weight: math.unit(1, "ton"),
  21349. name: "Back",
  21350. image: {
  21351. source: "./media/characters/lycoa/back.svg",
  21352. extra: 1785/1720,
  21353. bottom: 91/1876
  21354. }
  21355. },
  21356. head: {
  21357. height: math.unit(1.6243, "feet"),
  21358. name: "Head",
  21359. image: {
  21360. source: "./media/characters/lycoa/head.svg",
  21361. extra: 1011/782,
  21362. bottom: 0/1011
  21363. }
  21364. },
  21365. tailmaw: {
  21366. height: math.unit(1.9, "feet"),
  21367. name: "Tailmaw",
  21368. image: {
  21369. source: "./media/characters/lycoa/tailmaw.svg"
  21370. }
  21371. },
  21372. tentacles: {
  21373. height: math.unit(2.1, "feet"),
  21374. name: "Tentacles",
  21375. image: {
  21376. source: "./media/characters/lycoa/tentacles.svg"
  21377. }
  21378. },
  21379. dick: {
  21380. height: math.unit(1.73, "feet"),
  21381. name: "Dick",
  21382. image: {
  21383. source: "./media/characters/lycoa/dick.svg"
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(8, "feet"),
  21391. default: true
  21392. },
  21393. {
  21394. name: "Macro",
  21395. height: math.unit(30, "feet")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21401. {
  21402. front: {
  21403. height: math.unit(4 + 2 / 12, "feet"),
  21404. weight: math.unit(70, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/naldara/front.svg",
  21408. extra: 1664/1387,
  21409. bottom: 81/1745
  21410. },
  21411. form: "anthro",
  21412. default: true
  21413. },
  21414. naga: {
  21415. height: math.unit(20, "feet"),
  21416. weight: math.unit(15000, "kg"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/naldara/naga.svg",
  21420. extra: 1590/1396,
  21421. bottom: 285/1875
  21422. },
  21423. form: "naga",
  21424. default: true
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(4 + 2 / 12, "feet"),
  21431. form: "anthro",
  21432. default: true
  21433. },
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(20, "feet"),
  21437. form: "naga",
  21438. default: true
  21439. },
  21440. ],
  21441. {
  21442. "anthro": {
  21443. name: "Anthro",
  21444. default: true
  21445. },
  21446. "naga": {
  21447. name: "Naga"
  21448. }
  21449. }
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(13 + 7 / 12, "feet"),
  21456. weight: math.unit(1500, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/briar/front.svg",
  21460. extra: 1223/1157,
  21461. bottom: 123/1346
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(13 + 7 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21475. {
  21476. side: {
  21477. height: math.unit(16, "feet"),
  21478. weight: math.unit(500, "lb"),
  21479. name: "Side",
  21480. image: {
  21481. source: "./media/characters/vanguard/side.svg",
  21482. extra: 1022/914,
  21483. bottom: 30/1052
  21484. }
  21485. },
  21486. sideAlt: {
  21487. height: math.unit(10, "feet"),
  21488. weight: math.unit(500, "lb"),
  21489. name: "Side (Alt)",
  21490. image: {
  21491. source: "./media/characters/vanguard/side-alt.svg",
  21492. extra: 502 / 425,
  21493. bottom: 0.087
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(17.71, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(7.5, "feet"),
  21510. weight: math.unit(2, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/artemis/work-safe-front.svg",
  21514. extra: 1192 / 1075,
  21515. bottom: 0.07
  21516. },
  21517. form: "work-safe",
  21518. default: true
  21519. },
  21520. frontNsfw: {
  21521. height: math.unit(7.5, "feet"),
  21522. weight: math.unit(2, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/artemis/calibrating-front.svg",
  21526. extra: 1192 / 1075,
  21527. bottom: 0.07
  21528. },
  21529. form: "calibrating",
  21530. default: true
  21531. },
  21532. frontNsfwer: {
  21533. height: math.unit(7.5, "feet"),
  21534. weight: math.unit(2, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/artemis/oversize-load-front.svg",
  21538. extra: 1192 / 1075,
  21539. bottom: 0.07
  21540. },
  21541. form: "oversize-load",
  21542. default: true
  21543. },
  21544. side: {
  21545. height: math.unit(7.5, "feet"),
  21546. weight: math.unit(2, "lb"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/artemis/work-safe-side.svg",
  21550. extra: 1192 / 1075,
  21551. bottom: 0.07
  21552. },
  21553. form: "work-safe"
  21554. },
  21555. sideNsfw: {
  21556. height: math.unit(7.5, "feet"),
  21557. weight: math.unit(2, "lb"),
  21558. name: "Side",
  21559. image: {
  21560. source: "./media/characters/artemis/calibrating-side.svg",
  21561. extra: 1192 / 1075,
  21562. bottom: 0.07
  21563. },
  21564. form: "calibrating"
  21565. },
  21566. sideNsfwer: {
  21567. height: math.unit(7.5, "feet"),
  21568. weight: math.unit(2, "lb"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/artemis/oversize-load-side.svg",
  21572. extra: 1192 / 1075,
  21573. bottom: 0.07
  21574. },
  21575. form: "oversize-load"
  21576. },
  21577. maw: {
  21578. height: math.unit(1.1, "feet"),
  21579. name: "Maw",
  21580. image: {
  21581. source: "./media/characters/artemis/maw.svg"
  21582. },
  21583. form: "work-safe"
  21584. },
  21585. stomach: {
  21586. height: math.unit(0.95, "feet"),
  21587. name: "Stomach",
  21588. image: {
  21589. source: "./media/characters/artemis/stomach.svg"
  21590. },
  21591. form: "work-safe"
  21592. },
  21593. dickCanine: {
  21594. height: math.unit(1, "feet"),
  21595. name: "Dick (Canine)",
  21596. image: {
  21597. source: "./media/characters/artemis/dick-canine.svg"
  21598. },
  21599. form: "calibrating"
  21600. },
  21601. dickEquine: {
  21602. height: math.unit(0.85, "feet"),
  21603. name: "Dick (Equine)",
  21604. image: {
  21605. source: "./media/characters/artemis/dick-equine.svg"
  21606. },
  21607. form: "calibrating"
  21608. },
  21609. dickExotic: {
  21610. height: math.unit(0.85, "feet"),
  21611. name: "Dick (Exotic)",
  21612. image: {
  21613. source: "./media/characters/artemis/dick-exotic.svg"
  21614. },
  21615. form: "calibrating"
  21616. },
  21617. dickCanineBigger: {
  21618. height: math.unit(1 * 1.33, "feet"),
  21619. name: "Dick (Canine)",
  21620. image: {
  21621. source: "./media/characters/artemis/dick-canine.svg"
  21622. },
  21623. form: "oversize-load"
  21624. },
  21625. dickEquineBigger: {
  21626. height: math.unit(0.85 * 1.33, "feet"),
  21627. name: "Dick (Equine)",
  21628. image: {
  21629. source: "./media/characters/artemis/dick-equine.svg"
  21630. },
  21631. form: "oversize-load"
  21632. },
  21633. dickExoticBigger: {
  21634. height: math.unit(0.85 * 1.33, "feet"),
  21635. name: "Dick (Exotic)",
  21636. image: {
  21637. source: "./media/characters/artemis/dick-exotic.svg"
  21638. },
  21639. form: "oversize-load"
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(7.5, "feet"),
  21646. form: "work-safe",
  21647. default: true
  21648. },
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(7.5, "feet"),
  21652. form: "calibrating",
  21653. default: true
  21654. },
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(7.5, "feet"),
  21658. form: "oversize-load",
  21659. default: true
  21660. },
  21661. {
  21662. name: "Enlarged",
  21663. height: math.unit(12, "feet"),
  21664. form: "work-safe",
  21665. },
  21666. {
  21667. name: "Enlarged",
  21668. height: math.unit(12, "feet"),
  21669. form: "calibrating",
  21670. },
  21671. {
  21672. name: "Enlarged",
  21673. height: math.unit(12, "feet"),
  21674. form: "oversize-load",
  21675. },
  21676. ],
  21677. {
  21678. "work-safe": {
  21679. name: "Work-Safe",
  21680. default: true
  21681. },
  21682. "calibrating": {
  21683. name: "Calibrating"
  21684. },
  21685. "oversize-load": {
  21686. name: "Oversize Load"
  21687. }
  21688. }
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(5 + 3 / 12, "feet"),
  21695. weight: math.unit(160, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/kira/front.svg",
  21699. extra: 906 / 786,
  21700. bottom: 0.01
  21701. }
  21702. },
  21703. back: {
  21704. height: math.unit(5 + 3 / 12, "feet"),
  21705. weight: math.unit(160, "lb"),
  21706. name: "Back",
  21707. image: {
  21708. source: "./media/characters/kira/back.svg",
  21709. extra: 882 / 757,
  21710. bottom: 0.005
  21711. }
  21712. },
  21713. frontDressed: {
  21714. height: math.unit(5 + 3 / 12, "feet"),
  21715. weight: math.unit(160, "lb"),
  21716. name: "Front (Dressed)",
  21717. image: {
  21718. source: "./media/characters/kira/front-dressed.svg",
  21719. extra: 906 / 786,
  21720. bottom: 0.01
  21721. }
  21722. },
  21723. beans: {
  21724. height: math.unit(0.92, "feet"),
  21725. name: "Beans",
  21726. image: {
  21727. source: "./media/characters/kira/beans.svg"
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(5 + 3 / 12, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5 + 4 / 12, "feet"),
  21744. weight: math.unit(145, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/scramble/front.svg",
  21748. extra: 763 / 727,
  21749. bottom: 0.05
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(5 + 4 / 12, "feet"),
  21754. weight: math.unit(145, "lb"),
  21755. name: "Back",
  21756. image: {
  21757. source: "./media/characters/scramble/back.svg",
  21758. extra: 826 / 737,
  21759. bottom: 0.002
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(5 + 4 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21773. {
  21774. side: {
  21775. height: math.unit(6 + 2 / 12, "feet"),
  21776. weight: math.unit(190, "lb"),
  21777. name: "Side",
  21778. image: {
  21779. source: "./media/characters/biscuit/side.svg",
  21780. extra: 858 / 791,
  21781. bottom: 0.044
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(6 + 2 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 2 / 12, "feet"),
  21798. weight: math.unit(120, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/poffin/front.svg",
  21802. extra: 786 / 680,
  21803. bottom: 0.005
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(5 + 2 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6 + 3 / 12, "feet"),
  21820. weight: math.unit(519, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/dhari/front.svg",
  21824. extra: 1048 / 946,
  21825. bottom: 0.015
  21826. }
  21827. },
  21828. back: {
  21829. height: math.unit(6 + 3 / 12, "feet"),
  21830. weight: math.unit(519, "lb"),
  21831. name: "Back",
  21832. image: {
  21833. source: "./media/characters/dhari/back.svg",
  21834. extra: 1048 / 931,
  21835. bottom: 0.005
  21836. }
  21837. },
  21838. frontDressed: {
  21839. height: math.unit(6 + 3 / 12, "feet"),
  21840. weight: math.unit(519, "lb"),
  21841. name: "Front (Dressed)",
  21842. image: {
  21843. source: "./media/characters/dhari/front-dressed.svg",
  21844. extra: 1713 / 1546,
  21845. bottom: 0.02
  21846. }
  21847. },
  21848. backDressed: {
  21849. height: math.unit(6 + 3 / 12, "feet"),
  21850. weight: math.unit(519, "lb"),
  21851. name: "Back (Dressed)",
  21852. image: {
  21853. source: "./media/characters/dhari/back-dressed.svg",
  21854. extra: 1699 / 1537,
  21855. bottom: 0.01
  21856. }
  21857. },
  21858. maw: {
  21859. height: math.unit(0.95, "feet"),
  21860. name: "Maw",
  21861. image: {
  21862. source: "./media/characters/dhari/maw.svg"
  21863. }
  21864. },
  21865. wereFront: {
  21866. height: math.unit(12 + 8 / 12, "feet"),
  21867. weight: math.unit(4000, "lb"),
  21868. name: "Front (Were)",
  21869. image: {
  21870. source: "./media/characters/dhari/were-front.svg",
  21871. extra: 1065 / 969,
  21872. bottom: 0.015
  21873. }
  21874. },
  21875. wereBack: {
  21876. height: math.unit(12 + 8 / 12, "feet"),
  21877. weight: math.unit(4000, "lb"),
  21878. name: "Back (Were)",
  21879. image: {
  21880. source: "./media/characters/dhari/were-back.svg",
  21881. extra: 1065 / 969,
  21882. bottom: 0.012
  21883. }
  21884. },
  21885. wereMaw: {
  21886. height: math.unit(0.625, "meters"),
  21887. name: "Maw (Were)",
  21888. image: {
  21889. source: "./media/characters/dhari/were-maw.svg"
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(6 + 3 / 12, "feet"),
  21897. default: true
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21903. {
  21904. anthro: {
  21905. height: math.unit(5 + 7 / 12, "feet"),
  21906. weight: math.unit(175, "lb"),
  21907. name: "Anthro",
  21908. image: {
  21909. source: "./media/characters/rena-dyne/anthro.svg",
  21910. extra: 1849 / 1785,
  21911. bottom: 0.005
  21912. }
  21913. },
  21914. taur: {
  21915. height: math.unit(15 + 6 / 12, "feet"),
  21916. weight: math.unit(8000, "lb"),
  21917. name: "Taur",
  21918. image: {
  21919. source: "./media/characters/rena-dyne/taur.svg",
  21920. extra: 2315 / 2234,
  21921. bottom: 0.033
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 7 / 12, "feet"),
  21929. default: true
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(8, "feet"),
  21938. weight: math.unit(600, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/weremeep/front.svg",
  21942. extra: 970/849,
  21943. bottom: 7/977
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(8, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Lorg",
  21955. height: math.unit(12, "feet")
  21956. },
  21957. {
  21958. name: "Oh Lawd She Comin'",
  21959. height: math.unit(20, "feet")
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21965. {
  21966. front: {
  21967. height: math.unit(4, "feet"),
  21968. weight: math.unit(90, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/reza/front.svg",
  21972. extra: 1183 / 1111,
  21973. bottom: 0.017
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(4, "feet"),
  21978. weight: math.unit(90, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/reza/back.svg",
  21982. extra: 1183 / 1111,
  21983. bottom: 0.01
  21984. }
  21985. },
  21986. drake: {
  21987. height: math.unit(30, "feet"),
  21988. weight: math.unit(246960, "lb"),
  21989. name: "Drake",
  21990. image: {
  21991. source: "./media/characters/reza/drake.svg",
  21992. extra: 2350 / 2024,
  21993. bottom: 60.7 / 2403
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(4, "feet"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22007. {
  22008. side: {
  22009. height: math.unit(15, "feet"),
  22010. weight: math.unit(14, "tons"),
  22011. name: "Side",
  22012. image: {
  22013. source: "./media/characters/athea/side.svg",
  22014. extra: 960 / 540,
  22015. bottom: 0.003
  22016. }
  22017. },
  22018. sitting: {
  22019. height: math.unit(6 * 2.85, "feet"),
  22020. weight: math.unit(14, "tons"),
  22021. name: "Sitting",
  22022. image: {
  22023. source: "./media/characters/athea/sitting.svg",
  22024. extra: 621 / 581,
  22025. bottom: 0.075
  22026. }
  22027. },
  22028. maw: {
  22029. height: math.unit(7.59498031496063, "feet"),
  22030. name: "Maw",
  22031. image: {
  22032. source: "./media/characters/athea/maw.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Lap Cat",
  22039. height: math.unit(2.5, "feet")
  22040. },
  22041. {
  22042. name: "Minimacro",
  22043. height: math.unit(15, "feet"),
  22044. default: true
  22045. },
  22046. {
  22047. name: "Macro",
  22048. height: math.unit(120, "feet")
  22049. },
  22050. {
  22051. name: "Macro+",
  22052. height: math.unit(640, "feet")
  22053. },
  22054. {
  22055. name: "Colossus",
  22056. height: math.unit(2.2, "miles")
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22062. {
  22063. front: {
  22064. height: math.unit(8 + 8 / 12, "feet"),
  22065. weight: math.unit(130, "kg"),
  22066. name: "Front",
  22067. image: {
  22068. source: "./media/characters/seroko/front.svg",
  22069. extra: 1385 / 1280,
  22070. bottom: 0.025
  22071. }
  22072. },
  22073. back: {
  22074. height: math.unit(8 + 8 / 12, "feet"),
  22075. weight: math.unit(130, "kg"),
  22076. name: "Back",
  22077. image: {
  22078. source: "./media/characters/seroko/back.svg",
  22079. extra: 1369 / 1238,
  22080. bottom: 0.018
  22081. }
  22082. },
  22083. frontDressed: {
  22084. height: math.unit(8 + 8 / 12, "feet"),
  22085. weight: math.unit(130, "kg"),
  22086. name: "Front (Dressed)",
  22087. image: {
  22088. source: "./media/characters/seroko/front-dressed.svg",
  22089. extra: 1366 / 1275,
  22090. bottom: 0.03
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8 + 8 / 12, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5.5, "feet"),
  22107. weight: math.unit(160, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/quatzi/front.svg",
  22111. extra: 2346 / 2242,
  22112. bottom: 0.015
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(5.5, "feet"),
  22120. default: true
  22121. },
  22122. {
  22123. name: "Big",
  22124. height: math.unit(7.7, "feet")
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(5 + 11 / 12, "feet"),
  22133. weight: math.unit(180, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/sen/front.svg",
  22137. extra: 1321 / 1254,
  22138. bottom: 0.015
  22139. }
  22140. },
  22141. side: {
  22142. height: math.unit(5 + 11 / 12, "feet"),
  22143. weight: math.unit(180, "lb"),
  22144. name: "Side",
  22145. image: {
  22146. source: "./media/characters/sen/side.svg",
  22147. extra: 1321 / 1254,
  22148. bottom: 0.007
  22149. }
  22150. },
  22151. back: {
  22152. height: math.unit(5 + 11 / 12, "feet"),
  22153. weight: math.unit(180, "lb"),
  22154. name: "Back",
  22155. image: {
  22156. source: "./media/characters/sen/back.svg",
  22157. extra: 1321 / 1254
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(5 + 11 / 12, "feet"),
  22165. default: true
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(166.6, "cm"),
  22174. weight: math.unit(66.6, "kg"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/fruity/front.svg",
  22178. extra: 1510 / 1386,
  22179. bottom: 0.04
  22180. }
  22181. },
  22182. back: {
  22183. height: math.unit(166.6, "cm"),
  22184. weight: math.unit(66.6, "lb"),
  22185. name: "Back",
  22186. image: {
  22187. source: "./media/characters/fruity/back.svg",
  22188. extra: 1563 / 1435,
  22189. bottom: 0.005
  22190. }
  22191. },
  22192. },
  22193. [
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(166.6, "cm"),
  22197. default: true
  22198. },
  22199. {
  22200. name: "Demonic",
  22201. height: math.unit(166.6, "feet")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22207. {
  22208. side: {
  22209. height: math.unit(10, "feet"),
  22210. weight: math.unit(500, "lb"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/zost/side.svg",
  22214. extra: 2870/2533,
  22215. bottom: 252/3122
  22216. }
  22217. },
  22218. mawFront: {
  22219. height: math.unit(1.08, "meters"),
  22220. name: "Maw (Front)",
  22221. image: {
  22222. source: "./media/characters/zost/maw-front.svg"
  22223. }
  22224. },
  22225. mawSide: {
  22226. height: math.unit(2.66, "feet"),
  22227. name: "Maw (Side)",
  22228. image: {
  22229. source: "./media/characters/zost/maw-side.svg"
  22230. }
  22231. },
  22232. wingspan: {
  22233. height: math.unit(7.4, "feet"),
  22234. name: "Wingspan",
  22235. image: {
  22236. source: "./media/characters/zost/wingspan.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(10, "feet"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(5 + 4 / 12, "feet"),
  22253. weight: math.unit(120, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/luci/front.svg",
  22257. extra: 1985 / 1884,
  22258. bottom: 0.04
  22259. }
  22260. },
  22261. back: {
  22262. height: math.unit(5 + 4 / 12, "feet"),
  22263. weight: math.unit(120, "lb"),
  22264. name: "Back",
  22265. image: {
  22266. source: "./media/characters/luci/back.svg",
  22267. extra: 1892 / 1791,
  22268. bottom: 0.002
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(5 + 4 / 12, "feet"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(1500, "feet"),
  22285. weight: math.unit(3.8e6, "tons"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/2th/front.svg",
  22289. extra: 3489 / 3350,
  22290. bottom: 0.1
  22291. }
  22292. },
  22293. foot: {
  22294. height: math.unit(461, "feet"),
  22295. name: "Foot",
  22296. image: {
  22297. source: "./media/characters/2th/foot.svg"
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "\"Micro\"",
  22304. height: math.unit(15 + 7 / 12, "feet")
  22305. },
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(1500, "feet"),
  22309. default: true
  22310. },
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(5000, "feet")
  22314. },
  22315. {
  22316. name: "Megamacro",
  22317. height: math.unit(15, "miles")
  22318. },
  22319. {
  22320. name: "Gigamacro",
  22321. height: math.unit(4000, "miles")
  22322. },
  22323. {
  22324. name: "Galactic",
  22325. height: math.unit(50, "AU")
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(5 + 6 / 12, "feet"),
  22334. weight: math.unit(220, "lb"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/amethyst/front.svg",
  22338. extra: 2078 / 2040,
  22339. bottom: 0.045
  22340. }
  22341. },
  22342. back: {
  22343. height: math.unit(5 + 6 / 12, "feet"),
  22344. weight: math.unit(220, "lb"),
  22345. name: "Back",
  22346. image: {
  22347. source: "./media/characters/amethyst/back.svg",
  22348. extra: 2021 / 1989,
  22349. bottom: 0.02
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(5 + 6 / 12, "feet"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(4 + 11 / 12, "feet"),
  22366. weight: math.unit(120, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/yumi-akiyama/front.svg",
  22370. extra: 1327 / 1235,
  22371. bottom: 0.02
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(4 + 11 / 12, "feet"),
  22376. weight: math.unit(120, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/yumi-akiyama/back.svg",
  22380. extra: 1287 / 1245,
  22381. bottom: 0.002
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Galactic",
  22388. height: math.unit(50, "galaxies"),
  22389. default: true
  22390. },
  22391. {
  22392. name: "Universal",
  22393. height: math.unit(100, "universes")
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(8, "feet"),
  22402. weight: math.unit(500, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/rifter-yrmori/front.svg",
  22406. extra: 1180 / 1125,
  22407. bottom: 0.02
  22408. }
  22409. },
  22410. back: {
  22411. height: math.unit(8, "feet"),
  22412. weight: math.unit(500, "lb"),
  22413. name: "Back",
  22414. image: {
  22415. source: "./media/characters/rifter-yrmori/back.svg",
  22416. extra: 1190 / 1145,
  22417. bottom: 0.001
  22418. }
  22419. },
  22420. wings: {
  22421. height: math.unit(7.75, "feet"),
  22422. weight: math.unit(500, "lb"),
  22423. name: "Wings",
  22424. image: {
  22425. source: "./media/characters/rifter-yrmori/wings.svg",
  22426. extra: 1357 / 1285
  22427. }
  22428. },
  22429. maw: {
  22430. height: math.unit(0.8, "feet"),
  22431. name: "Maw",
  22432. image: {
  22433. source: "./media/characters/rifter-yrmori/maw.svg"
  22434. }
  22435. },
  22436. mawfront: {
  22437. height: math.unit(1.45, "feet"),
  22438. name: "Maw (Front)",
  22439. image: {
  22440. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(8, "feet"),
  22448. default: true
  22449. },
  22450. {
  22451. name: "Macro",
  22452. height: math.unit(42, "meters")
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22458. {
  22459. were: {
  22460. height: math.unit(25 + 6 / 12, "feet"),
  22461. weight: math.unit(10000, "lb"),
  22462. name: "Were",
  22463. image: {
  22464. source: "./media/characters/tahajin/were.svg",
  22465. extra: 801 / 770,
  22466. bottom: 0.042
  22467. }
  22468. },
  22469. aquatic: {
  22470. height: math.unit(6 + 4 / 12, "feet"),
  22471. weight: math.unit(160, "lb"),
  22472. name: "Aquatic",
  22473. image: {
  22474. source: "./media/characters/tahajin/aquatic.svg",
  22475. extra: 572 / 542,
  22476. bottom: 0.04
  22477. }
  22478. },
  22479. chow: {
  22480. height: math.unit(8 + 11 / 12, "feet"),
  22481. weight: math.unit(450, "lb"),
  22482. name: "Chow",
  22483. image: {
  22484. source: "./media/characters/tahajin/chow.svg",
  22485. extra: 660 / 640,
  22486. bottom: 0.015
  22487. }
  22488. },
  22489. demiNaga: {
  22490. height: math.unit(6 + 8 / 12, "feet"),
  22491. weight: math.unit(300, "lb"),
  22492. name: "Demi Naga",
  22493. image: {
  22494. source: "./media/characters/tahajin/demi-naga.svg",
  22495. extra: 643 / 615,
  22496. bottom: 0.1
  22497. }
  22498. },
  22499. data: {
  22500. height: math.unit(5, "inches"),
  22501. weight: math.unit(0.1, "lb"),
  22502. name: "Data",
  22503. image: {
  22504. source: "./media/characters/tahajin/data.svg"
  22505. }
  22506. },
  22507. fluu: {
  22508. height: math.unit(5 + 7 / 12, "feet"),
  22509. weight: math.unit(140, "lb"),
  22510. name: "Fluu",
  22511. image: {
  22512. source: "./media/characters/tahajin/fluu.svg",
  22513. extra: 628 / 592,
  22514. bottom: 0.02
  22515. }
  22516. },
  22517. starWarrior: {
  22518. height: math.unit(4 + 5 / 12, "feet"),
  22519. weight: math.unit(50, "lb"),
  22520. name: "Star Warrior",
  22521. image: {
  22522. source: "./media/characters/tahajin/star-warrior.svg"
  22523. }
  22524. },
  22525. },
  22526. [
  22527. {
  22528. name: "Normal",
  22529. height: math.unit(25 + 6 / 12, "feet"),
  22530. default: true
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22536. {
  22537. front: {
  22538. height: math.unit(8, "feet"),
  22539. weight: math.unit(350, "lb"),
  22540. name: "Front",
  22541. image: {
  22542. source: "./media/characters/gabira/front.svg",
  22543. extra: 1261/1154,
  22544. bottom: 51/1312
  22545. }
  22546. },
  22547. back: {
  22548. height: math.unit(8, "feet"),
  22549. weight: math.unit(350, "lb"),
  22550. name: "Back",
  22551. image: {
  22552. source: "./media/characters/gabira/back.svg",
  22553. extra: 1265/1163,
  22554. bottom: 46/1311
  22555. }
  22556. },
  22557. head: {
  22558. height: math.unit(2.85, "feet"),
  22559. name: "Head",
  22560. image: {
  22561. source: "./media/characters/gabira/head.svg"
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(8, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(5 + 3 / 12, "feet"),
  22578. weight: math.unit(137, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/sasha-katraine/front.svg",
  22582. extra: 1745/1694,
  22583. bottom: 37/1782
  22584. }
  22585. },
  22586. back: {
  22587. height: math.unit(5 + 3 / 12, "feet"),
  22588. weight: math.unit(137, "lb"),
  22589. name: "Back",
  22590. image: {
  22591. source: "./media/characters/sasha-katraine/back.svg",
  22592. extra: 1776/1699,
  22593. bottom: 26/1802
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Micro",
  22600. height: math.unit(5, "inches")
  22601. },
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(5 + 3 / 12, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22611. {
  22612. side: {
  22613. height: math.unit(4, "inches"),
  22614. weight: math.unit(200, "grams"),
  22615. name: "Side",
  22616. image: {
  22617. source: "./media/characters/der/side.svg",
  22618. extra: 719 / 400,
  22619. bottom: 30.6 / 749.9187
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Micro",
  22626. height: math.unit(4, "inches"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22633. {
  22634. side: {
  22635. height: math.unit(30, "meters"),
  22636. weight: math.unit(700, "tonnes"),
  22637. name: "Side",
  22638. image: {
  22639. source: "./media/characters/fixerdragon/side.svg",
  22640. extra: (1293.0514 - 116.03) / 1106.86,
  22641. bottom: 116.03 / 1293.0514
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Planck",
  22648. height: math.unit(1.6e-35, "meters")
  22649. },
  22650. {
  22651. name: "Micro",
  22652. height: math.unit(0.4, "meters")
  22653. },
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(30, "meters"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Megamacro",
  22661. height: math.unit(1.2, "megameters")
  22662. },
  22663. {
  22664. name: "Teramacro",
  22665. height: math.unit(130, "terameters")
  22666. },
  22667. {
  22668. name: "Yottamacro",
  22669. height: math.unit(6200, "yottameters")
  22670. },
  22671. ]
  22672. ));
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(8, "feet"),
  22678. weight: math.unit(250, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/kite/front.svg",
  22682. extra: 2796 / 2659,
  22683. bottom: 0.002
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(8, "feet"),
  22691. default: true
  22692. },
  22693. {
  22694. name: "Macro",
  22695. height: math.unit(360, "feet")
  22696. },
  22697. {
  22698. name: "Megamacro",
  22699. height: math.unit(1500, "feet")
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(5 + 11/12, "feet"),
  22708. weight: math.unit(170, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/poojawa-vynar/front.svg",
  22712. extra: 1735/1585,
  22713. bottom: 96/1831
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(5 + 11/12, "feet"),
  22718. weight: math.unit(170, "lb"),
  22719. name: "Back",
  22720. image: {
  22721. source: "./media/characters/poojawa-vynar/back.svg",
  22722. extra: 1749/1607,
  22723. bottom: 28/1777
  22724. }
  22725. },
  22726. male: {
  22727. height: math.unit(5 + 11/12, "feet"),
  22728. weight: math.unit(170, "lb"),
  22729. name: "Male",
  22730. image: {
  22731. source: "./media/characters/poojawa-vynar/male.svg",
  22732. extra: 1855/1713,
  22733. bottom: 63/1918
  22734. }
  22735. },
  22736. taur: {
  22737. height: math.unit(5 + 11/12, "feet"),
  22738. weight: math.unit(170, "lb"),
  22739. name: "Taur",
  22740. image: {
  22741. source: "./media/characters/poojawa-vynar/taur.svg",
  22742. extra: 1151/1059,
  22743. bottom: 356/1507
  22744. }
  22745. },
  22746. frontDressed: {
  22747. height: math.unit(5 + 11/12, "feet"),
  22748. weight: math.unit(170, "lb"),
  22749. name: "Front (Dressed)",
  22750. image: {
  22751. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22752. extra: 1735/1585,
  22753. bottom: 96/1831
  22754. }
  22755. },
  22756. backDressed: {
  22757. height: math.unit(5 + 11/12, "feet"),
  22758. weight: math.unit(170, "lb"),
  22759. name: "Back (Dressed)",
  22760. image: {
  22761. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22762. extra: 1749/1607,
  22763. bottom: 28/1777
  22764. }
  22765. },
  22766. maleDressed: {
  22767. height: math.unit(5 + 11/12, "feet"),
  22768. weight: math.unit(170, "lb"),
  22769. name: "Male (Dressed)",
  22770. image: {
  22771. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22772. extra: 1855/1713,
  22773. bottom: 63/1918
  22774. }
  22775. },
  22776. taurDressed: {
  22777. height: math.unit(5 + 11/12, "feet"),
  22778. weight: math.unit(170, "lb"),
  22779. name: "Taur (Dressed)",
  22780. image: {
  22781. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22782. extra: 1151/1059,
  22783. bottom: 356/1507
  22784. }
  22785. },
  22786. maw: {
  22787. height: math.unit(1.46, "feet"),
  22788. name: "Maw",
  22789. image: {
  22790. source: "./media/characters/poojawa-vynar/maw.svg"
  22791. }
  22792. },
  22793. head: {
  22794. height: math.unit(2.34, "feet"),
  22795. name: "Head",
  22796. image: {
  22797. source: "./media/characters/poojawa-vynar/head.svg"
  22798. }
  22799. },
  22800. paw: {
  22801. height: math.unit(1.61, "feet"),
  22802. name: "Paw",
  22803. image: {
  22804. source: "./media/characters/poojawa-vynar/paw.svg"
  22805. }
  22806. },
  22807. pawToering: {
  22808. height: math.unit(1.72, "feet"),
  22809. name: "Paw (Toering)",
  22810. image: {
  22811. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22812. }
  22813. },
  22814. toering: {
  22815. height: math.unit(2.9, "inches"),
  22816. name: "Toering",
  22817. image: {
  22818. source: "./media/characters/poojawa-vynar/toering.svg"
  22819. }
  22820. },
  22821. shaft: {
  22822. height: math.unit(0.625, "feet"),
  22823. name: "Shaft",
  22824. image: {
  22825. source: "./media/characters/poojawa-vynar/shaft.svg"
  22826. }
  22827. },
  22828. spade: {
  22829. height: math.unit(0.42, "feet"),
  22830. name: "Spade",
  22831. image: {
  22832. source: "./media/characters/poojawa-vynar/spade.svg"
  22833. }
  22834. },
  22835. },
  22836. [
  22837. {
  22838. name: "Shortstack",
  22839. height: math.unit(4, "feet")
  22840. },
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(5 + 11 / 12, "feet"),
  22844. default: true
  22845. },
  22846. {
  22847. name: "Tauric",
  22848. height: math.unit(4, "meters")
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22854. {
  22855. front: {
  22856. height: math.unit(293, "meters"),
  22857. weight: math.unit(70400, "tons"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/violette/front.svg",
  22861. extra: 1227 / 1180,
  22862. bottom: 0.005
  22863. }
  22864. },
  22865. back: {
  22866. height: math.unit(293, "meters"),
  22867. weight: math.unit(70400, "tons"),
  22868. name: "Back",
  22869. image: {
  22870. source: "./media/characters/violette/back.svg",
  22871. extra: 1227 / 1180,
  22872. bottom: 0.005
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(293, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(1050, "feet"),
  22889. weight: math.unit(200000, "tons"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/alessandra/front.svg",
  22893. extra: 960 / 912,
  22894. bottom: 0.06
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(1050, "feet")
  22902. },
  22903. {
  22904. name: "Macro+",
  22905. height: math.unit(900, "meters"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(5, "feet"),
  22915. weight: math.unit(187, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/person/front.svg",
  22919. extra: 3087 / 2945,
  22920. bottom: 91 / 3181
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Micro",
  22927. height: math.unit(3, "inches")
  22928. },
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(5, "feet"),
  22932. default: true
  22933. },
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(90, "feet")
  22937. },
  22938. {
  22939. name: "Max Size",
  22940. height: math.unit(280, "feet")
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(4.5, "meters"),
  22949. weight: math.unit(3200, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/ty/front.svg",
  22953. extra: 1038 / 960,
  22954. bottom: 31.156 / 1068
  22955. }
  22956. },
  22957. back: {
  22958. height: math.unit(4.5, "meters"),
  22959. weight: math.unit(3200, "lb"),
  22960. name: "Back",
  22961. image: {
  22962. source: "./media/characters/ty/back.svg",
  22963. extra: 1044 / 966,
  22964. bottom: 7.48 / 1049
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(4.5, "meters"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(5 + 4 / 12, "feet"),
  22981. weight: math.unit(115, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/rocky/front.svg",
  22985. extra: 1012 / 975,
  22986. bottom: 54 / 1066
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(5 + 4 / 12, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23000. {
  23001. upright: {
  23002. height: math.unit(6, "meters"),
  23003. weight: math.unit(4000, "kg"),
  23004. name: "Upright",
  23005. image: {
  23006. source: "./media/characters/ruin/upright.svg",
  23007. extra: 668 / 661,
  23008. bottom: 42 / 799.8396
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(6, "meters"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(5, "feet"),
  23025. weight: math.unit(106, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/robin/front.svg",
  23029. extra: 862 / 799,
  23030. bottom: 42.4 / 914.8856
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(5, "feet"),
  23038. default: true
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23044. {
  23045. side: {
  23046. height: math.unit(3, "feet"),
  23047. weight: math.unit(225, "lb"),
  23048. name: "Side",
  23049. image: {
  23050. source: "./media/characters/saian/side.svg",
  23051. extra: 566 / 356,
  23052. bottom: 79.7 / 643
  23053. }
  23054. },
  23055. maw: {
  23056. height: math.unit(2.85, "feet"),
  23057. name: "Maw",
  23058. image: {
  23059. source: "./media/characters/saian/maw.svg"
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(3, "feet"),
  23067. default: true
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23073. {
  23074. side: {
  23075. height: math.unit(8, "feet"),
  23076. weight: math.unit(300, "lb"),
  23077. name: "Side",
  23078. image: {
  23079. source: "./media/characters/equus-silvermane/side.svg",
  23080. extra: 2176 / 2050,
  23081. bottom: 65.7 / 2245
  23082. }
  23083. },
  23084. front: {
  23085. height: math.unit(8, "feet"),
  23086. weight: math.unit(300, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/equus-silvermane/front.svg",
  23090. extra: 4633 / 4400,
  23091. bottom: 71.3 / 4706.915
  23092. }
  23093. },
  23094. sideStepping: {
  23095. height: math.unit(8, "feet"),
  23096. weight: math.unit(300, "lb"),
  23097. name: "Side (Stepping)",
  23098. image: {
  23099. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23100. extra: 1968 / 1860,
  23101. bottom: 16.4 / 1989
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(8, "feet")
  23109. },
  23110. {
  23111. name: "Minimacro",
  23112. height: math.unit(75, "feet"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(150, "feet")
  23118. },
  23119. {
  23120. name: "Macro+",
  23121. height: math.unit(1000, "feet")
  23122. },
  23123. {
  23124. name: "Megamacro",
  23125. height: math.unit(1, "mile")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23131. {
  23132. side: {
  23133. height: math.unit(20, "feet"),
  23134. weight: math.unit(30000, "kg"),
  23135. name: "Side",
  23136. image: {
  23137. source: "./media/characters/windar/side.svg",
  23138. extra: 1491 / 1248,
  23139. bottom: 82.56 / 1568
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Normal",
  23146. height: math.unit(20, "feet"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23153. {
  23154. side: {
  23155. height: math.unit(15.66, "feet"),
  23156. weight: math.unit(150, "lb"),
  23157. name: "Side",
  23158. image: {
  23159. source: "./media/characters/melody/side.svg",
  23160. extra: 1097 / 944,
  23161. bottom: 11.8 / 1109
  23162. }
  23163. },
  23164. sideOutfit: {
  23165. height: math.unit(15.66, "feet"),
  23166. weight: math.unit(150, "lb"),
  23167. name: "Side (Outfit)",
  23168. image: {
  23169. source: "./media/characters/melody/side-outfit.svg",
  23170. extra: 1097 / 944,
  23171. bottom: 11.8 / 1109
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(15.66, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23185. {
  23186. armoredFront: {
  23187. height: math.unit(8, "feet"),
  23188. weight: math.unit(325, "lb"),
  23189. name: "Front",
  23190. image: {
  23191. source: "./media/characters/windera/armored-front.svg",
  23192. extra: 1830/1598,
  23193. bottom: 151/1981
  23194. },
  23195. form: "armored",
  23196. default: true
  23197. },
  23198. macroFront: {
  23199. height: math.unit(70, "feet"),
  23200. weight: math.unit(315453, "lb"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/windera/macro-front.svg",
  23204. extra: 963/883,
  23205. bottom: 23/986
  23206. },
  23207. form: "macro",
  23208. default: true
  23209. },
  23210. },
  23211. [
  23212. {
  23213. name: "Normal",
  23214. height: math.unit(8, "feet"),
  23215. default: true,
  23216. form: "armored"
  23217. },
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(70, "feet"),
  23221. default: true,
  23222. form: "macro"
  23223. },
  23224. ],
  23225. {
  23226. "armored": {
  23227. name: "Armored",
  23228. default: true
  23229. },
  23230. "macro": {
  23231. name: "Macro",
  23232. },
  23233. }
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23237. {
  23238. front: {
  23239. height: math.unit(28.75, "feet"),
  23240. weight: math.unit(2000, "kg"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/sonear/front.svg",
  23244. extra: 1041.1 / 964.9,
  23245. bottom: 53.7 / 1096.6
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Normal",
  23252. height: math.unit(28.75, "feet"),
  23253. default: true
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23259. {
  23260. side: {
  23261. height: math.unit(25.5, "feet"),
  23262. weight: math.unit(23000, "kg"),
  23263. name: "Side",
  23264. image: {
  23265. source: "./media/characters/kanara/side.svg"
  23266. }
  23267. },
  23268. },
  23269. [
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(25.5, "feet"),
  23273. default: true
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23279. {
  23280. side: {
  23281. height: math.unit(10, "feet"),
  23282. weight: math.unit(1000, "kg"),
  23283. name: "Side",
  23284. image: {
  23285. source: "./media/characters/ereus/side.svg",
  23286. extra: 1157 / 959,
  23287. bottom: 153 / 1312.5
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(10, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23301. {
  23302. side: {
  23303. height: math.unit(4.5, "feet"),
  23304. weight: math.unit(500, "lb"),
  23305. name: "Side",
  23306. image: {
  23307. source: "./media/characters/e-ter/side.svg",
  23308. extra: 1550 / 1248,
  23309. bottom: 146 / 1694
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(4.5, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23323. {
  23324. side: {
  23325. height: math.unit(9.7, "feet"),
  23326. weight: math.unit(4000, "kg"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/yamie/side.svg"
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(9.7, "feet"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(50, "feet"),
  23346. weight: math.unit(50000, "kg"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/anders/front.svg",
  23350. extra: 570 / 539,
  23351. bottom: 14.7 / 586.7
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Large",
  23358. height: math.unit(50, "feet")
  23359. },
  23360. {
  23361. name: "Macro",
  23362. height: math.unit(2000, "feet"),
  23363. default: true
  23364. },
  23365. {
  23366. name: "Megamacro",
  23367. height: math.unit(12, "miles")
  23368. },
  23369. ]
  23370. ))
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23373. {
  23374. front: {
  23375. height: math.unit(7 + 2 / 12, "feet"),
  23376. weight: math.unit(300, "lb"),
  23377. name: "Front",
  23378. image: {
  23379. source: "./media/characters/reban/front.svg",
  23380. extra: 1287/1212,
  23381. bottom: 148/1435
  23382. }
  23383. },
  23384. head: {
  23385. height: math.unit(1.95, "feet"),
  23386. name: "Head",
  23387. image: {
  23388. source: "./media/characters/reban/head.svg"
  23389. }
  23390. },
  23391. maw: {
  23392. height: math.unit(0.95, "feet"),
  23393. name: "Maw",
  23394. image: {
  23395. source: "./media/characters/reban/maw.svg"
  23396. }
  23397. },
  23398. foot: {
  23399. height: math.unit(1.65, "feet"),
  23400. name: "Foot",
  23401. image: {
  23402. source: "./media/characters/reban/foot.svg"
  23403. }
  23404. },
  23405. dick: {
  23406. height: math.unit(7 / 5, "feet"),
  23407. name: "Dick",
  23408. image: {
  23409. source: "./media/characters/reban/dick.svg"
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Natural Height",
  23416. height: math.unit(7 + 2 / 12, "feet")
  23417. },
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(500, "feet"),
  23421. default: true
  23422. },
  23423. {
  23424. name: "Canon Height",
  23425. height: math.unit(50, "AU")
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(6, "feet"),
  23434. weight: math.unit(150, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/terrance-keayes/front.svg",
  23438. extra: 1.005,
  23439. bottom: 151 / 1615
  23440. }
  23441. },
  23442. side: {
  23443. height: math.unit(6, "feet"),
  23444. weight: math.unit(150, "lb"),
  23445. name: "Side",
  23446. image: {
  23447. source: "./media/characters/terrance-keayes/side.svg",
  23448. extra: 1.005,
  23449. bottom: 129.4 / 1544
  23450. }
  23451. },
  23452. back: {
  23453. height: math.unit(6, "feet"),
  23454. weight: math.unit(150, "lb"),
  23455. name: "Back",
  23456. image: {
  23457. source: "./media/characters/terrance-keayes/back.svg",
  23458. extra: 1.005,
  23459. bottom: 58.4 / 1557.3
  23460. }
  23461. },
  23462. dick: {
  23463. height: math.unit(6 * 0.208, "feet"),
  23464. name: "Dick",
  23465. image: {
  23466. source: "./media/characters/terrance-keayes/dick.svg"
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Canon Height",
  23473. height: math.unit(35, "miles"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(6, "feet"),
  23483. weight: math.unit(150, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/ofelia/front.svg",
  23487. extra: 1130/1117,
  23488. bottom: 91/1221
  23489. }
  23490. },
  23491. back: {
  23492. height: math.unit(6, "feet"),
  23493. weight: math.unit(150, "lb"),
  23494. name: "Back",
  23495. image: {
  23496. source: "./media/characters/ofelia/back.svg",
  23497. extra: 1172/1159,
  23498. bottom: 28/1200
  23499. }
  23500. },
  23501. maw: {
  23502. height: math.unit(1, "feet"),
  23503. name: "Maw",
  23504. image: {
  23505. source: "./media/characters/ofelia/maw.svg"
  23506. }
  23507. },
  23508. foot: {
  23509. height: math.unit(1.949, "feet"),
  23510. name: "Foot",
  23511. image: {
  23512. source: "./media/characters/ofelia/foot.svg"
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Canon Height",
  23519. height: math.unit(2000, "miles"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(6, "feet"),
  23529. weight: math.unit(150, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/samuel/front.svg",
  23533. extra: 265 / 258,
  23534. bottom: 2 / 266.1566
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(100, "feet"),
  23542. default: true
  23543. },
  23544. {
  23545. name: "Full Size",
  23546. height: math.unit(1000, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(6, "feet"),
  23555. weight: math.unit(300, "lb"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/beishir-kiel/front.svg",
  23559. extra: 569 / 547,
  23560. bottom: 41.9 / 609
  23561. }
  23562. },
  23563. maw: {
  23564. height: math.unit(6 * 0.202, "feet"),
  23565. name: "Maw",
  23566. image: {
  23567. source: "./media/characters/beishir-kiel/maw.svg"
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(300, "feet"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(5 + 7/12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/logan-grey/front.svg",
  23588. extra: 1836/1738,
  23589. bottom: 108/1944
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(5 + 7/12, "feet"),
  23594. weight: math.unit(120, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/logan-grey/back.svg",
  23598. extra: 1880/1794,
  23599. bottom: 24/1904
  23600. }
  23601. },
  23602. frontSfw: {
  23603. height: math.unit(5 + 7/12, "feet"),
  23604. weight: math.unit(120, "lb"),
  23605. name: "Front (SFW)",
  23606. image: {
  23607. source: "./media/characters/logan-grey/front-sfw.svg",
  23608. extra: 1836/1738,
  23609. bottom: 108/1944
  23610. }
  23611. },
  23612. backSfw: {
  23613. height: math.unit(5 + 7/12, "feet"),
  23614. weight: math.unit(120, "lb"),
  23615. name: "Back (SFW)",
  23616. image: {
  23617. source: "./media/characters/logan-grey/back-sfw.svg",
  23618. extra: 1880/1794,
  23619. bottom: 24/1904
  23620. }
  23621. },
  23622. hands: {
  23623. height: math.unit(0.84, "feet"),
  23624. name: "Hands",
  23625. image: {
  23626. source: "./media/characters/logan-grey/hands.svg"
  23627. }
  23628. },
  23629. paws: {
  23630. height: math.unit(0.72, "feet"),
  23631. name: "Paws",
  23632. image: {
  23633. source: "./media/characters/logan-grey/paws.svg"
  23634. }
  23635. },
  23636. cock: {
  23637. height: math.unit(1.45, "feet"),
  23638. name: "Cock",
  23639. image: {
  23640. source: "./media/characters/logan-grey/cock.svg"
  23641. }
  23642. },
  23643. cockAlt: {
  23644. height: math.unit(1.437, "feet"),
  23645. name: "Cock (alt)",
  23646. image: {
  23647. source: "./media/characters/logan-grey/cock-alt.svg"
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 8 / 12, "feet")
  23655. },
  23656. {
  23657. name: "The 500 Foot Femboy",
  23658. height: math.unit(500, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Megmacro",
  23663. height: math.unit(20, "miles")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(8 + 2 / 12, "feet"),
  23672. weight: math.unit(275, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/draganta/front.svg",
  23676. extra: 1177 / 1135,
  23677. bottom: 33.46 / 1212.1
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(8 + 6 / 12, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Macro",
  23689. height: math.unit(150, "feet")
  23690. },
  23691. {
  23692. name: "Megamacro",
  23693. height: math.unit(1000, "miles")
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(1.72, "m"),
  23702. weight: math.unit(80, "lb"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/voski/front.svg",
  23706. extra: 2076.22 / 2022.4,
  23707. bottom: 102.7 / 2177.3866
  23708. }
  23709. },
  23710. frontFlaccid: {
  23711. height: math.unit(1.72, "m"),
  23712. weight: math.unit(80, "lb"),
  23713. name: "Front (Flaccid)",
  23714. image: {
  23715. source: "./media/characters/voski/front-flaccid.svg",
  23716. extra: 2076.22 / 2022.4,
  23717. bottom: 102.7 / 2177.3866
  23718. }
  23719. },
  23720. frontErect: {
  23721. height: math.unit(1.72, "m"),
  23722. weight: math.unit(80, "lb"),
  23723. name: "Front (Erect)",
  23724. image: {
  23725. source: "./media/characters/voski/front-erect.svg",
  23726. extra: 2076.22 / 2022.4,
  23727. bottom: 102.7 / 2177.3866
  23728. }
  23729. },
  23730. back: {
  23731. height: math.unit(1.72, "m"),
  23732. weight: math.unit(80, "lb"),
  23733. name: "Back",
  23734. image: {
  23735. source: "./media/characters/voski/back.svg",
  23736. extra: 2104 / 2051,
  23737. bottom: 10.45 / 2113.63
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Normal",
  23744. height: math.unit(1.72, "m")
  23745. },
  23746. {
  23747. name: "Macro",
  23748. height: math.unit(55, "m"),
  23749. default: true
  23750. },
  23751. {
  23752. name: "Macro+",
  23753. height: math.unit(300, "m")
  23754. },
  23755. {
  23756. name: "Macro++",
  23757. height: math.unit(700, "m")
  23758. },
  23759. {
  23760. name: "Macro+++",
  23761. height: math.unit(4500, "m")
  23762. },
  23763. {
  23764. name: "Macro++++",
  23765. height: math.unit(45, "km")
  23766. },
  23767. {
  23768. name: "Macro+++++",
  23769. height: math.unit(1220, "km")
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(2.3, "m"),
  23778. weight: math.unit(304, "kg"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/icowom-lee/front.svg",
  23782. extra: 985 / 955,
  23783. bottom: 25.4 / 1012
  23784. }
  23785. },
  23786. fronttentacles: {
  23787. height: math.unit(2.3, "m"),
  23788. weight: math.unit(304, "kg"),
  23789. name: "Front-tentacles",
  23790. image: {
  23791. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23792. extra: 985 / 955,
  23793. bottom: 25.4 / 1012
  23794. }
  23795. },
  23796. back: {
  23797. height: math.unit(2.3, "m"),
  23798. weight: math.unit(304, "kg"),
  23799. name: "Back",
  23800. image: {
  23801. source: "./media/characters/icowom-lee/back.svg",
  23802. extra: 975 / 954,
  23803. bottom: 9.5 / 985
  23804. }
  23805. },
  23806. backtentacles: {
  23807. height: math.unit(2.3, "m"),
  23808. weight: math.unit(304, "kg"),
  23809. name: "Back-tentacles",
  23810. image: {
  23811. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23812. extra: 975 / 954,
  23813. bottom: 9.5 / 985
  23814. }
  23815. },
  23816. frontDressed: {
  23817. height: math.unit(2.3, "m"),
  23818. weight: math.unit(304, "kg"),
  23819. name: "Front (Dressed)",
  23820. image: {
  23821. source: "./media/characters/icowom-lee/front-dressed.svg",
  23822. extra: 3076 / 2933,
  23823. bottom: 51.4 / 3125.1889
  23824. }
  23825. },
  23826. rump: {
  23827. height: math.unit(0.776, "meters"),
  23828. name: "Rump",
  23829. image: {
  23830. source: "./media/characters/icowom-lee/rump.svg"
  23831. }
  23832. },
  23833. genitals: {
  23834. height: math.unit(0.78, "meters"),
  23835. name: "Genitals",
  23836. image: {
  23837. source: "./media/characters/icowom-lee/genitals.svg"
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(2.3, "meters"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Macro",
  23849. height: math.unit(94, "meters"),
  23850. default: true
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(22, "meters"),
  23859. weight: math.unit(21000, "kg"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/shock-diamond/front.svg",
  23863. extra: 2204 / 2053,
  23864. bottom: 65 / 2239.47
  23865. }
  23866. },
  23867. frontNude: {
  23868. height: math.unit(22, "meters"),
  23869. weight: math.unit(21000, "kg"),
  23870. name: "Front (Nude)",
  23871. image: {
  23872. source: "./media/characters/shock-diamond/front-nude.svg",
  23873. extra: 2514 / 2285,
  23874. bottom: 13 / 2527.56
  23875. }
  23876. },
  23877. },
  23878. [
  23879. {
  23880. name: "Normal",
  23881. height: math.unit(3, "meters")
  23882. },
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(22, "meters"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(5 + 4 / 12, "feet"),
  23895. weight: math.unit(120, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/rory/front.svg",
  23899. extra: 1318/1241,
  23900. bottom: 42/1360
  23901. }
  23902. },
  23903. back: {
  23904. height: math.unit(5 + 4 / 12, "feet"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Back",
  23907. image: {
  23908. source: "./media/characters/rory/back.svg",
  23909. extra: 1318/1241,
  23910. bottom: 42/1360
  23911. }
  23912. },
  23913. butt: {
  23914. height: math.unit(1.74, "feet"),
  23915. name: "Butt",
  23916. image: {
  23917. source: "./media/characters/rory/butt.svg"
  23918. }
  23919. },
  23920. dick: {
  23921. height: math.unit(1.02, "feet"),
  23922. name: "Dick",
  23923. image: {
  23924. source: "./media/characters/rory/dick.svg"
  23925. }
  23926. },
  23927. paws: {
  23928. height: math.unit(1, "feet"),
  23929. name: "Paws",
  23930. image: {
  23931. source: "./media/characters/rory/paws.svg"
  23932. }
  23933. },
  23934. frontAlt: {
  23935. height: math.unit(5 + 4 / 12, "feet"),
  23936. weight: math.unit(120, "lb"),
  23937. name: "Front (Alt)",
  23938. image: {
  23939. source: "./media/characters/rory/front-alt.svg",
  23940. extra: 589 / 556,
  23941. bottom: 45.7 / 635.76
  23942. }
  23943. },
  23944. frontAltNude: {
  23945. height: math.unit(5 + 4 / 12, "feet"),
  23946. weight: math.unit(120, "lb"),
  23947. name: "Front (Alt, Nude)",
  23948. image: {
  23949. source: "./media/characters/rory/front-alt-nude.svg",
  23950. extra: 589 / 556,
  23951. bottom: 45.7 / 635.76
  23952. }
  23953. },
  23954. side: {
  23955. height: math.unit(5 + 4 / 12, "feet"),
  23956. weight: math.unit(120, "lb"),
  23957. name: "Side",
  23958. image: {
  23959. source: "./media/characters/rory/side.svg",
  23960. extra: 597 / 564,
  23961. bottom: 55 / 653
  23962. }
  23963. },
  23964. backAlt: {
  23965. height: math.unit(5 + 4 / 12, "feet"),
  23966. weight: math.unit(120, "lb"),
  23967. name: "Back (Alt)",
  23968. image: {
  23969. source: "./media/characters/rory/back-alt.svg",
  23970. extra: 620 / 585,
  23971. bottom: 8.86 / 630.43
  23972. }
  23973. },
  23974. dickAlt: {
  23975. height: math.unit(0.86, "feet"),
  23976. name: "Dick (Alt)",
  23977. image: {
  23978. source: "./media/characters/rory/dick-alt.svg"
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(5 + 4 / 12, "feet"),
  23986. default: true
  23987. },
  23988. {
  23989. name: "Macro",
  23990. height: math.unit(100, "feet")
  23991. },
  23992. {
  23993. name: "Macro+",
  23994. height: math.unit(140, "feet")
  23995. },
  23996. {
  23997. name: "Macro++",
  23998. height: math.unit(300, "feet")
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24004. {
  24005. front: {
  24006. height: math.unit(5 + 9 / 12, "feet"),
  24007. weight: math.unit(190, "lb"),
  24008. name: "Front",
  24009. image: {
  24010. source: "./media/characters/sprisk/front.svg",
  24011. extra: 1225 / 1180,
  24012. bottom: 42.7 / 1266.4
  24013. }
  24014. },
  24015. frontNsfw: {
  24016. height: math.unit(5 + 9 / 12, "feet"),
  24017. weight: math.unit(190, "lb"),
  24018. name: "Front (NSFW)",
  24019. image: {
  24020. source: "./media/characters/sprisk/front-nsfw.svg",
  24021. extra: 1225 / 1180,
  24022. bottom: 42.7 / 1266.4
  24023. }
  24024. },
  24025. back: {
  24026. height: math.unit(5 + 9 / 12, "feet"),
  24027. weight: math.unit(190, "lb"),
  24028. name: "Back",
  24029. image: {
  24030. source: "./media/characters/sprisk/back.svg",
  24031. extra: 1247 / 1200,
  24032. bottom: 5.6 / 1253.04
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Tiny",
  24039. height: math.unit(2, "inches")
  24040. },
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(5 + 9 / 12, "feet"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Mini Macro",
  24048. height: math.unit(18, "feet")
  24049. },
  24050. {
  24051. name: "Macro",
  24052. height: math.unit(100, "feet")
  24053. },
  24054. {
  24055. name: "MACRO",
  24056. height: math.unit(50, "miles")
  24057. },
  24058. {
  24059. name: "M A C R O",
  24060. height: math.unit(300, "miles")
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24066. {
  24067. side: {
  24068. height: math.unit(15.6, "meters"),
  24069. weight: math.unit(700000, "kg"),
  24070. name: "Side",
  24071. image: {
  24072. source: "./media/characters/bunsen/side.svg",
  24073. extra: 1644 / 358
  24074. }
  24075. },
  24076. foot: {
  24077. height: math.unit(1.611 * 1644 / 358, "meter"),
  24078. name: "Foot",
  24079. image: {
  24080. source: "./media/characters/bunsen/foot.svg"
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Small",
  24087. height: math.unit(10, "feet")
  24088. },
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(15.6, "meters"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(4 + 11 / 12, "feet"),
  24101. weight: math.unit(140, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/sesh/front.svg",
  24105. extra: 3420 / 3231,
  24106. bottom: 72 / 3949.5
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(4 + 11 / 12, "feet")
  24114. },
  24115. {
  24116. name: "Grown",
  24117. height: math.unit(15, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Macro",
  24122. height: math.unit(1500, "feet")
  24123. },
  24124. {
  24125. name: "Megamacro",
  24126. height: math.unit(30, "miles")
  24127. },
  24128. {
  24129. name: "Continental",
  24130. height: math.unit(3000, "miles")
  24131. },
  24132. {
  24133. name: "Gravity Mass",
  24134. height: math.unit(300000, "miles")
  24135. },
  24136. {
  24137. name: "Planet Buster",
  24138. height: math.unit(30000000, "miles")
  24139. },
  24140. {
  24141. name: "Big",
  24142. height: math.unit(3000000000, "miles")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(9, "feet"),
  24151. weight: math.unit(350, "lb"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/pepper/front.svg",
  24155. extra: 1448 / 1312,
  24156. bottom: 9.4 / 1457.88
  24157. }
  24158. },
  24159. back: {
  24160. height: math.unit(9, "feet"),
  24161. weight: math.unit(350, "lb"),
  24162. name: "Back",
  24163. image: {
  24164. source: "./media/characters/pepper/back.svg",
  24165. extra: 1423 / 1300,
  24166. bottom: 4.6 / 1429
  24167. }
  24168. },
  24169. maw: {
  24170. height: math.unit(0.932, "feet"),
  24171. name: "Maw",
  24172. image: {
  24173. source: "./media/characters/pepper/maw.svg"
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(9, "feet"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(6, "feet"),
  24190. weight: math.unit(150, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/maelstrom/front.svg",
  24194. extra: 2100 / 1883,
  24195. bottom: 94 / 2196.7
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Less Kaiju",
  24202. height: math.unit(200, "feet")
  24203. },
  24204. {
  24205. name: "Kaiju",
  24206. height: math.unit(400, "feet"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Kaiju-er",
  24211. height: math.unit(600, "feet")
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(6 + 5 / 12, "feet"),
  24220. weight: math.unit(180, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/lexir/front.svg",
  24224. extra: 180 / 172,
  24225. bottom: 12 / 192
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(6 + 5 / 12, "feet"),
  24230. weight: math.unit(180, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/lexir/back.svg",
  24234. extra: 1273/1201,
  24235. bottom: 39/1312
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "Very Smal",
  24242. height: math.unit(1, "nm")
  24243. },
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(6 + 5 / 12, "feet"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(1, "mile")
  24252. },
  24253. {
  24254. name: "Megamacro",
  24255. height: math.unit(50, "miles")
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(1.5, "meters"),
  24264. weight: math.unit(100, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/maksio/front.svg",
  24268. extra: 1549 / 1531,
  24269. bottom: 123.7 / 1674.5429
  24270. }
  24271. },
  24272. back: {
  24273. height: math.unit(1.5, "meters"),
  24274. weight: math.unit(100, "lb"),
  24275. name: "Back",
  24276. image: {
  24277. source: "./media/characters/maksio/back.svg",
  24278. extra: 1541 / 1509,
  24279. bottom: 97 / 1639
  24280. }
  24281. },
  24282. hand: {
  24283. height: math.unit(0.621, "feet"),
  24284. name: "Hand",
  24285. image: {
  24286. source: "./media/characters/maksio/hand.svg"
  24287. }
  24288. },
  24289. foot: {
  24290. height: math.unit(1.611, "feet"),
  24291. name: "Foot",
  24292. image: {
  24293. source: "./media/characters/maksio/foot.svg"
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Shrunken",
  24300. height: math.unit(10, "cm")
  24301. },
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(150, "cm"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(100, "feet"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/erza-bear/front.svg",
  24317. extra: 2449 / 2390,
  24318. bottom: 46 / 2494
  24319. }
  24320. },
  24321. back: {
  24322. height: math.unit(100, "feet"),
  24323. name: "Back",
  24324. image: {
  24325. source: "./media/characters/erza-bear/back.svg",
  24326. extra: 2489 / 2430,
  24327. bottom: 85.4 / 2480
  24328. }
  24329. },
  24330. tail: {
  24331. height: math.unit(42, "feet"),
  24332. name: "Tail",
  24333. image: {
  24334. source: "./media/characters/erza-bear/tail.svg"
  24335. }
  24336. },
  24337. tongue: {
  24338. height: math.unit(8, "feet"),
  24339. name: "Tongue",
  24340. image: {
  24341. source: "./media/characters/erza-bear/tongue.svg"
  24342. }
  24343. },
  24344. dick: {
  24345. height: math.unit(10.5, "feet"),
  24346. name: "Dick",
  24347. image: {
  24348. source: "./media/characters/erza-bear/dick.svg"
  24349. }
  24350. },
  24351. dickVertical: {
  24352. height: math.unit(16.9, "feet"),
  24353. name: "Dick (Vertical)",
  24354. image: {
  24355. source: "./media/characters/erza-bear/dick-vertical.svg"
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Macro",
  24362. height: math.unit(100, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(172, "cm"),
  24372. weight: math.unit(73, "kg"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/violet-flor/front.svg",
  24376. extra: 1530 / 1442,
  24377. bottom: 61.9 / 1588.8
  24378. }
  24379. },
  24380. back: {
  24381. height: math.unit(180, "cm"),
  24382. weight: math.unit(73, "kg"),
  24383. name: "Back",
  24384. image: {
  24385. source: "./media/characters/violet-flor/back.svg",
  24386. extra: 1692 / 1630,
  24387. bottom: 20 / 1712
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(172, "cm"),
  24395. default: true
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24401. {
  24402. front: {
  24403. height: math.unit(6, "feet"),
  24404. weight: math.unit(220, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/lynn-rhea/front.svg",
  24408. extra: 310 / 273
  24409. }
  24410. },
  24411. back: {
  24412. height: math.unit(6, "feet"),
  24413. weight: math.unit(220, "lb"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/lynn-rhea/back.svg",
  24417. extra: 310 / 273
  24418. }
  24419. },
  24420. dicks: {
  24421. height: math.unit(0.9, "feet"),
  24422. name: "Dicks",
  24423. image: {
  24424. source: "./media/characters/lynn-rhea/dicks.svg"
  24425. }
  24426. },
  24427. slit: {
  24428. height: math.unit(0.4, "feet"),
  24429. name: "Slit",
  24430. image: {
  24431. source: "./media/characters/lynn-rhea/slit.svg"
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Micro",
  24438. height: math.unit(1, "inch")
  24439. },
  24440. {
  24441. name: "Macro",
  24442. height: math.unit(60, "feet"),
  24443. default: true
  24444. },
  24445. {
  24446. name: "Megamacro",
  24447. height: math.unit(2, "miles")
  24448. },
  24449. {
  24450. name: "Gigamacro",
  24451. height: math.unit(3, "earths")
  24452. },
  24453. {
  24454. name: "Galactic",
  24455. height: math.unit(0.8, "galaxies")
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24461. {
  24462. front: {
  24463. height: math.unit(1600, "feet"),
  24464. weight: math.unit(85758785169, "kg"),
  24465. name: "Front",
  24466. image: {
  24467. source: "./media/characters/valathos/front.svg",
  24468. extra: 1451 / 1339
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Macro",
  24475. height: math.unit(1600, "feet"),
  24476. default: true
  24477. },
  24478. ]
  24479. ))
  24480. characterMakers.push(() => makeCharacter(
  24481. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24482. {
  24483. front: {
  24484. height: math.unit(7 + 5 / 12, "feet"),
  24485. weight: math.unit(300, "lb"),
  24486. name: "Front",
  24487. image: {
  24488. source: "./media/characters/azula/front.svg",
  24489. extra: 3208 / 2880,
  24490. bottom: 80.2 / 3277
  24491. }
  24492. },
  24493. back: {
  24494. height: math.unit(7 + 5 / 12, "feet"),
  24495. weight: math.unit(300, "lb"),
  24496. name: "Back",
  24497. image: {
  24498. source: "./media/characters/azula/back.svg",
  24499. extra: 3169 / 2822,
  24500. bottom: 150.6 / 3321
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(7 + 5 / 12, "feet"),
  24508. default: true
  24509. },
  24510. {
  24511. name: "Big",
  24512. height: math.unit(20, "feet")
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24518. {
  24519. front: {
  24520. height: math.unit(5 + 1 / 12, "feet"),
  24521. weight: math.unit(110, "lb"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/rupert/front.svg",
  24525. extra: 1549 / 1495,
  24526. bottom: 54.2 / 1604.4
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(5 + 1 / 12, "feet"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24540. {
  24541. front: {
  24542. height: math.unit(8 + 4 / 12, "feet"),
  24543. weight: math.unit(350, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/sheera-castellar/front.svg",
  24547. extra: 1957 / 1894,
  24548. bottom: 26.97 / 1975.017
  24549. }
  24550. },
  24551. side: {
  24552. height: math.unit(8 + 4 / 12, "feet"),
  24553. weight: math.unit(350, "lb"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/sheera-castellar/side.svg",
  24557. extra: 1957 / 1894
  24558. }
  24559. },
  24560. back: {
  24561. height: math.unit(8 + 4 / 12, "feet"),
  24562. weight: math.unit(350, "lb"),
  24563. name: "Back",
  24564. image: {
  24565. source: "./media/characters/sheera-castellar/back.svg",
  24566. extra: 1957 / 1894
  24567. }
  24568. },
  24569. angled: {
  24570. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24571. weight: math.unit(350, "lb"),
  24572. name: "Angled",
  24573. image: {
  24574. source: "./media/characters/sheera-castellar/angled.svg",
  24575. extra: 1807 / 1707,
  24576. bottom: 68 / 1875
  24577. }
  24578. },
  24579. genitals: {
  24580. height: math.unit(2.2, "feet"),
  24581. name: "Genitals",
  24582. image: {
  24583. source: "./media/characters/sheera-castellar/genitals.svg"
  24584. }
  24585. },
  24586. taur: {
  24587. height: math.unit(10 + 6/12, "feet"),
  24588. name: "Taur",
  24589. image: {
  24590. source: "./media/characters/sheera-castellar/taur.svg",
  24591. extra: 2017/1909,
  24592. bottom: 185/2202
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(8 + 4 / 12, "feet")
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(150, "feet"),
  24604. default: true
  24605. },
  24606. {
  24607. name: "Macro+",
  24608. height: math.unit(800, "feet")
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(6, "feet"),
  24617. weight: math.unit(150, "lb"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/jaipur/front.svg",
  24621. extra: 3860 / 3731,
  24622. bottom: 287 / 4140
  24623. }
  24624. },
  24625. back: {
  24626. height: math.unit(6, "feet"),
  24627. weight: math.unit(150, "lb"),
  24628. name: "Back",
  24629. image: {
  24630. source: "./media/characters/jaipur/back.svg",
  24631. extra: 1637/1561,
  24632. bottom: 154/1791
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Normal",
  24639. height: math.unit(1.85, "meters"),
  24640. default: true
  24641. },
  24642. {
  24643. name: "Macro",
  24644. height: math.unit(150, "meters")
  24645. },
  24646. {
  24647. name: "Macro+",
  24648. height: math.unit(0.5, "miles")
  24649. },
  24650. {
  24651. name: "Macro++",
  24652. height: math.unit(2.5, "miles")
  24653. },
  24654. {
  24655. name: "Macro+++",
  24656. height: math.unit(12, "miles")
  24657. },
  24658. {
  24659. name: "Macro++++",
  24660. height: math.unit(120, "miles")
  24661. },
  24662. {
  24663. name: "Macro+++++",
  24664. height: math.unit(1200, "miles")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(6, "feet"),
  24673. weight: math.unit(150, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/sheila-wolf/front.svg",
  24677. extra: 1931 / 1808,
  24678. bottom: 29.5 / 1960
  24679. }
  24680. },
  24681. dick: {
  24682. height: math.unit(1.464, "feet"),
  24683. name: "Dick",
  24684. image: {
  24685. source: "./media/characters/sheila-wolf/dick.svg"
  24686. }
  24687. },
  24688. muzzle: {
  24689. height: math.unit(0.513, "feet"),
  24690. name: "Muzzle",
  24691. image: {
  24692. source: "./media/characters/sheila-wolf/muzzle.svg"
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Macro",
  24699. height: math.unit(70, "feet"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(32, "meters"),
  24709. weight: math.unit(300000, "kg"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/almor/front.svg",
  24713. extra: 1408 / 1322,
  24714. bottom: 94.6 / 1506.5
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(32, "meters"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(7, "feet"),
  24731. weight: math.unit(200, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/silver/front.svg",
  24735. extra: 472.1 / 450.5,
  24736. bottom: 26.5 / 499.424
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(7, "feet"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Macro",
  24748. height: math.unit(800, "feet")
  24749. },
  24750. {
  24751. name: "Megamacro",
  24752. height: math.unit(250, "miles")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(6, "feet"),
  24761. weight: math.unit(150, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/pliskin/front.svg",
  24765. extra: 1469 / 1359,
  24766. bottom: 70 / 1540
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Micro",
  24773. height: math.unit(3, "inches")
  24774. },
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(5 + 11 / 12, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(120, "feet")
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(6, "feet"),
  24791. weight: math.unit(150, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/sammy/front.svg",
  24795. extra: 1193 / 1089,
  24796. bottom: 30.5 / 1226
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(1700, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Examacro",
  24808. height: math.unit(2.5e9, "lightyears")
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(21, "meters"),
  24817. weight: math.unit(12, "tonnes"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/kuru/front.svg",
  24821. extra: 4301 / 3785,
  24822. bottom: 371.3 / 4691
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(21, "meters"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(23, "meters"),
  24839. weight: math.unit(12.2, "tonnes"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/rakka/front.svg",
  24843. extra: 4670 / 4169,
  24844. bottom: 301 / 4968.7
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Macro",
  24851. height: math.unit(23, "meters"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(6, "feet"),
  24861. weight: math.unit(150, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/rhys-feline/front.svg",
  24865. extra: 2488 / 2308,
  24866. bottom: 35.67 / 2519.19
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Really Small",
  24873. height: math.unit(1, "nm")
  24874. },
  24875. {
  24876. name: "Micro",
  24877. height: math.unit(4, "inches")
  24878. },
  24879. {
  24880. name: "Normal",
  24881. height: math.unit(4 + 10 / 12, "feet"),
  24882. default: true
  24883. },
  24884. {
  24885. name: "Macro",
  24886. height: math.unit(100, "feet")
  24887. },
  24888. {
  24889. name: "Megamacto",
  24890. height: math.unit(50, "miles")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24896. {
  24897. side: {
  24898. height: math.unit(30, "feet"),
  24899. weight: math.unit(35000, "kg"),
  24900. name: "Side",
  24901. image: {
  24902. source: "./media/characters/alydar/side.svg",
  24903. extra: 234 / 222,
  24904. bottom: 6.5 / 241
  24905. }
  24906. },
  24907. front: {
  24908. height: math.unit(30, "feet"),
  24909. weight: math.unit(35000, "kg"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/alydar/front.svg",
  24913. extra: 223.37 / 210.2,
  24914. bottom: 22.3 / 246.76
  24915. }
  24916. },
  24917. top: {
  24918. height: math.unit(64.54, "feet"),
  24919. weight: math.unit(35000, "kg"),
  24920. name: "Top",
  24921. image: {
  24922. source: "./media/characters/alydar/top.svg"
  24923. }
  24924. },
  24925. anthro: {
  24926. height: math.unit(30, "feet"),
  24927. weight: math.unit(9000, "kg"),
  24928. name: "Anthro",
  24929. image: {
  24930. source: "./media/characters/alydar/anthro.svg",
  24931. extra: 432 / 421,
  24932. bottom: 7.18 / 440
  24933. }
  24934. },
  24935. maw: {
  24936. height: math.unit(11.693, "feet"),
  24937. name: "Maw",
  24938. image: {
  24939. source: "./media/characters/alydar/maw.svg"
  24940. }
  24941. },
  24942. head: {
  24943. height: math.unit(11.693, "feet"),
  24944. name: "Head",
  24945. image: {
  24946. source: "./media/characters/alydar/head.svg"
  24947. }
  24948. },
  24949. headAlt: {
  24950. height: math.unit(12.861, "feet"),
  24951. name: "Head (Alt)",
  24952. image: {
  24953. source: "./media/characters/alydar/head-alt.svg"
  24954. }
  24955. },
  24956. wing: {
  24957. height: math.unit(20.712, "feet"),
  24958. name: "Wing",
  24959. image: {
  24960. source: "./media/characters/alydar/wing.svg"
  24961. }
  24962. },
  24963. wingFeather: {
  24964. height: math.unit(9.662, "feet"),
  24965. name: "Wing Feather",
  24966. image: {
  24967. source: "./media/characters/alydar/wing-feather.svg"
  24968. }
  24969. },
  24970. countourFeather: {
  24971. height: math.unit(4.154, "feet"),
  24972. name: "Contour Feather",
  24973. image: {
  24974. source: "./media/characters/alydar/contour-feather.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Diplomatic",
  24981. height: math.unit(13, "feet"),
  24982. default: true
  24983. },
  24984. {
  24985. name: "Small",
  24986. height: math.unit(30, "feet")
  24987. },
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(95, "feet"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Large",
  24995. height: math.unit(285, "feet")
  24996. },
  24997. {
  24998. name: "Incomprehensible",
  24999. height: math.unit(450, "megameters")
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25005. {
  25006. side: {
  25007. height: math.unit(11, "feet"),
  25008. weight: math.unit(1750, "kg"),
  25009. name: "Side",
  25010. image: {
  25011. source: "./media/characters/selicia/side.svg",
  25012. extra: 440 / 396,
  25013. bottom: 24.8 / 465.979
  25014. }
  25015. },
  25016. maw: {
  25017. height: math.unit(4.665, "feet"),
  25018. name: "Maw",
  25019. image: {
  25020. source: "./media/characters/selicia/maw.svg"
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(11, "feet"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25034. {
  25035. side: {
  25036. height: math.unit(2 + 6 / 12, "feet"),
  25037. weight: math.unit(30, "lb"),
  25038. name: "Side",
  25039. image: {
  25040. source: "./media/characters/layla/side.svg",
  25041. extra: 244 / 188,
  25042. bottom: 18.2 / 262.1
  25043. }
  25044. },
  25045. back: {
  25046. height: math.unit(2 + 6 / 12, "feet"),
  25047. weight: math.unit(30, "lb"),
  25048. name: "Back",
  25049. image: {
  25050. source: "./media/characters/layla/back.svg",
  25051. extra: 308 / 241.5,
  25052. bottom: 8.9 / 316.8
  25053. }
  25054. },
  25055. cumming: {
  25056. height: math.unit(2 + 6 / 12, "feet"),
  25057. weight: math.unit(30, "lb"),
  25058. name: "Cumming",
  25059. image: {
  25060. source: "./media/characters/layla/cumming.svg",
  25061. extra: 342 / 279,
  25062. bottom: 595 / 938
  25063. }
  25064. },
  25065. dickFlaccid: {
  25066. height: math.unit(2.595, "feet"),
  25067. name: "Flaccid Genitals",
  25068. image: {
  25069. source: "./media/characters/layla/dick-flaccid.svg"
  25070. }
  25071. },
  25072. dickErect: {
  25073. height: math.unit(2.359, "feet"),
  25074. name: "Erect Genitals",
  25075. image: {
  25076. source: "./media/characters/layla/dick-erect.svg"
  25077. }
  25078. },
  25079. dragon: {
  25080. height: math.unit(40, "feet"),
  25081. name: "Dragon",
  25082. image: {
  25083. source: "./media/characters/layla/dragon.svg",
  25084. extra: 610/535,
  25085. bottom: 367/977
  25086. }
  25087. },
  25088. taur: {
  25089. height: math.unit(30, "feet"),
  25090. name: "Taur",
  25091. image: {
  25092. source: "./media/characters/layla/taur.svg",
  25093. extra: 1268/1199,
  25094. bottom: 112/1380
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Micro",
  25101. height: math.unit(1, "inch")
  25102. },
  25103. {
  25104. name: "Small",
  25105. height: math.unit(1, "foot")
  25106. },
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(2 + 6 / 12, "feet"),
  25110. default: true
  25111. },
  25112. {
  25113. name: "Macro",
  25114. height: math.unit(200, "feet")
  25115. },
  25116. {
  25117. name: "Megamacro",
  25118. height: math.unit(1000, "miles")
  25119. },
  25120. {
  25121. name: "Planetary",
  25122. height: math.unit(8000, "miles")
  25123. },
  25124. {
  25125. name: "True Layla",
  25126. height: math.unit(200000 * 7, "multiverses")
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25132. {
  25133. back: {
  25134. height: math.unit(10.5, "feet"),
  25135. weight: math.unit(800, "lb"),
  25136. name: "Back",
  25137. image: {
  25138. source: "./media/characters/knox/back.svg",
  25139. extra: 1486 / 1089,
  25140. bottom: 107 / 1601.4
  25141. }
  25142. },
  25143. side: {
  25144. height: math.unit(10.5, "feet"),
  25145. weight: math.unit(800, "lb"),
  25146. name: "Side",
  25147. image: {
  25148. source: "./media/characters/knox/side.svg",
  25149. extra: 244 / 218,
  25150. bottom: 14 / 260
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Compact",
  25157. height: math.unit(10.5, "feet"),
  25158. default: true
  25159. },
  25160. {
  25161. name: "Dynamax",
  25162. height: math.unit(210, "feet")
  25163. },
  25164. {
  25165. name: "Full Macro",
  25166. height: math.unit(850, "feet")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(28, "feet"),
  25175. weight: math.unit(10500, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/kayda/front.svg",
  25179. extra: 1536 / 1428,
  25180. bottom: 68.7 / 1603
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(28, "feet"),
  25185. weight: math.unit(10500, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/kayda/back.svg",
  25189. extra: 1557 / 1464,
  25190. bottom: 39.5 / 1597.49
  25191. }
  25192. },
  25193. dick: {
  25194. height: math.unit(3.858, "feet"),
  25195. name: "Dick",
  25196. image: {
  25197. source: "./media/characters/kayda/dick.svg"
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Macro",
  25204. height: math.unit(28, "feet"),
  25205. default: true
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25211. {
  25212. front: {
  25213. height: math.unit(10 + 11 / 12, "feet"),
  25214. weight: math.unit(1400, "lb"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/brian/front.svg",
  25218. extra: 737 / 692,
  25219. bottom: 55.4 / 785
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(10 + 11 / 12, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(5 + 8 / 12, "feet"),
  25236. weight: math.unit(140, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/khemri/front.svg",
  25240. extra: 4780 / 4059,
  25241. bottom: 80.1 / 4859.25
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Micro",
  25248. height: math.unit(6, "inches")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(5 + 8 / 12, "feet"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25259. {
  25260. front: {
  25261. height: math.unit(13, "feet"),
  25262. weight: math.unit(1700, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/felix-braveheart/front.svg",
  25266. extra: 1222 / 1157,
  25267. bottom: 53.2 / 1280
  25268. }
  25269. },
  25270. back: {
  25271. height: math.unit(13, "feet"),
  25272. weight: math.unit(1700, "lb"),
  25273. name: "Back",
  25274. image: {
  25275. source: "./media/characters/felix-braveheart/back.svg",
  25276. extra: 1277 / 1203,
  25277. bottom: 50.2 / 1327
  25278. }
  25279. },
  25280. feral: {
  25281. height: math.unit(6, "feet"),
  25282. weight: math.unit(400, "lb"),
  25283. name: "Feral",
  25284. image: {
  25285. source: "./media/characters/felix-braveheart/feral.svg",
  25286. extra: 682 / 625,
  25287. bottom: 6.9 / 688
  25288. }
  25289. },
  25290. },
  25291. [
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(13, "feet"),
  25295. default: true
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25301. {
  25302. side: {
  25303. height: math.unit(5 + 11 / 12, "feet"),
  25304. weight: math.unit(1400, "lb"),
  25305. name: "Side",
  25306. image: {
  25307. source: "./media/characters/shadow-blade/side.svg",
  25308. extra: 1726 / 1267,
  25309. bottom: 58.4 / 1785
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(5 + 11 / 12, "feet"),
  25317. default: true
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(1 + 6 / 12, "feet"),
  25326. weight: math.unit(25, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/karla-halldor/front.svg",
  25330. extra: 1459 / 1383,
  25331. bottom: 12 / 1472
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(1 + 6 / 12, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(6 + 2 / 12, "feet"),
  25348. weight: math.unit(160, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/ariam/front.svg",
  25352. extra: 1073/976,
  25353. bottom: 52/1125
  25354. }
  25355. },
  25356. back: {
  25357. height: math.unit(6 + 2/12, "feet"),
  25358. weight: math.unit(160, "lb"),
  25359. name: "Back",
  25360. image: {
  25361. source: "./media/characters/ariam/back.svg",
  25362. extra: 1103/1023,
  25363. bottom: 9/1112
  25364. }
  25365. },
  25366. dressed: {
  25367. height: math.unit(6 + 2/12, "feet"),
  25368. weight: math.unit(160, "lb"),
  25369. name: "Dressed",
  25370. image: {
  25371. source: "./media/characters/ariam/dressed.svg",
  25372. extra: 1099/1009,
  25373. bottom: 25/1124
  25374. }
  25375. },
  25376. squatting: {
  25377. height: math.unit(4.1, "feet"),
  25378. weight: math.unit(160, "lb"),
  25379. name: "Squatting",
  25380. image: {
  25381. source: "./media/characters/ariam/squatting.svg",
  25382. extra: 2617 / 2112,
  25383. bottom: 61.2 / 2681,
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(6 + 2 / 12, "feet"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Normal+",
  25395. height: math.unit(4, "meters")
  25396. },
  25397. {
  25398. name: "Macro",
  25399. height: math.unit(50, "meters")
  25400. },
  25401. {
  25402. name: "Macro+",
  25403. height: math.unit(100, "meters")
  25404. },
  25405. {
  25406. name: "Megamacro",
  25407. height: math.unit(20, "km")
  25408. },
  25409. {
  25410. name: "Caretaker",
  25411. height: math.unit(444, "megameters")
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(1.67, "meters"),
  25420. weight: math.unit(140, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25424. extra: 438 / 410,
  25425. bottom: 0.75 / 439
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Shrunken",
  25432. height: math.unit(7.6, "cm")
  25433. },
  25434. {
  25435. name: "Human Scale",
  25436. height: math.unit(1.67, "meters")
  25437. },
  25438. {
  25439. name: "Wolxi Scale",
  25440. height: math.unit(36.7, "meters"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(1.73, "meters"),
  25450. weight: math.unit(240, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/izue-two-mothers/front.svg",
  25454. extra: 469 / 437,
  25455. bottom: 1.24 / 470.6
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Shrunken",
  25462. height: math.unit(7.86, "cm")
  25463. },
  25464. {
  25465. name: "Human Scale",
  25466. height: math.unit(1.73, "meters")
  25467. },
  25468. {
  25469. name: "Wolxi Scale",
  25470. height: math.unit(38, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(1.55, "meters"),
  25480. weight: math.unit(120, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/teeku-love-shack/front.svg",
  25484. extra: 387 / 362,
  25485. bottom: 1.51 / 388
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Shrunken",
  25492. height: math.unit(7, "cm")
  25493. },
  25494. {
  25495. name: "Human Scale",
  25496. height: math.unit(1.55, "meters")
  25497. },
  25498. {
  25499. name: "Wolxi Scale",
  25500. height: math.unit(34.1, "meters"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(1.83, "meters"),
  25510. weight: math.unit(135, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/dejma-the-red/front.svg",
  25514. extra: 480 / 458,
  25515. bottom: 1.8 / 482
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Shrunken",
  25522. height: math.unit(8.3, "cm")
  25523. },
  25524. {
  25525. name: "Human Scale",
  25526. height: math.unit(1.83, "meters")
  25527. },
  25528. {
  25529. name: "Wolxi Scale",
  25530. height: math.unit(40, "meters"),
  25531. default: true
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(1.78, "meters"),
  25540. weight: math.unit(65, "kg"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/aki/front.svg",
  25544. extra: 452 / 415
  25545. }
  25546. },
  25547. frontNsfw: {
  25548. height: math.unit(1.78, "meters"),
  25549. weight: math.unit(65, "kg"),
  25550. name: "Front (NSFW)",
  25551. image: {
  25552. source: "./media/characters/aki/front-nsfw.svg",
  25553. extra: 452 / 415
  25554. }
  25555. },
  25556. back: {
  25557. height: math.unit(1.78, "meters"),
  25558. weight: math.unit(65, "kg"),
  25559. name: "Back",
  25560. image: {
  25561. source: "./media/characters/aki/back.svg",
  25562. extra: 452 / 415
  25563. }
  25564. },
  25565. rump: {
  25566. height: math.unit(2.05, "feet"),
  25567. name: "Rump",
  25568. image: {
  25569. source: "./media/characters/aki/rump.svg"
  25570. }
  25571. },
  25572. dick: {
  25573. height: math.unit(0.95, "feet"),
  25574. name: "Dick",
  25575. image: {
  25576. source: "./media/characters/aki/dick.svg"
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Micro",
  25583. height: math.unit(15, "cm")
  25584. },
  25585. {
  25586. name: "Normal",
  25587. height: math.unit(178, "cm"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(214, "m")
  25593. },
  25594. {
  25595. name: "Macro+",
  25596. height: math.unit(534, "m")
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(5 + 5 / 12, "feet"),
  25605. weight: math.unit(120, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/ari/front.svg",
  25609. extra: 1550/1471,
  25610. bottom: 39/1589
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(5 + 5 / 12, "feet")
  25618. },
  25619. {
  25620. name: "Macro",
  25621. height: math.unit(100, "feet"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Megamacro",
  25626. height: math.unit(100, "miles")
  25627. },
  25628. {
  25629. name: "Gigamacro",
  25630. height: math.unit(80000, "miles")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25636. {
  25637. side: {
  25638. height: math.unit(9, "feet"),
  25639. weight: math.unit(400, "kg"),
  25640. name: "Side",
  25641. image: {
  25642. source: "./media/characters/bolt/side.svg",
  25643. extra: 1126 / 896,
  25644. bottom: 60 / 1187.3,
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Micro",
  25651. height: math.unit(5, "inches")
  25652. },
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(9, "feet"),
  25656. default: true
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(700, "feet")
  25661. },
  25662. {
  25663. name: "Max Size",
  25664. height: math.unit(1.52e22, "yottameters")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(4.3, "meters"),
  25673. weight: math.unit(3, "tons"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/draekon-sylviar/front.svg",
  25677. extra: 2072/1512,
  25678. bottom: 74/2146
  25679. }
  25680. },
  25681. back: {
  25682. height: math.unit(4.3, "meters"),
  25683. weight: math.unit(3, "tons"),
  25684. name: "Back",
  25685. image: {
  25686. source: "./media/characters/draekon-sylviar/back.svg",
  25687. extra: 1639/1483,
  25688. bottom: 41/1680
  25689. }
  25690. },
  25691. feral: {
  25692. height: math.unit(1.15, "meters"),
  25693. weight: math.unit(3, "tons"),
  25694. name: "Feral",
  25695. image: {
  25696. source: "./media/characters/draekon-sylviar/feral.svg",
  25697. extra: 1033/395,
  25698. bottom: 130/1163
  25699. }
  25700. },
  25701. maw: {
  25702. height: math.unit(1.3, "meters"),
  25703. name: "Maw",
  25704. image: {
  25705. source: "./media/characters/draekon-sylviar/maw.svg"
  25706. }
  25707. },
  25708. mawSeparated: {
  25709. height: math.unit(1.53, "meters"),
  25710. name: "Separated Maw",
  25711. image: {
  25712. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25713. }
  25714. },
  25715. tail: {
  25716. height: math.unit(1.15, "meters"),
  25717. name: "Tail",
  25718. image: {
  25719. source: "./media/characters/draekon-sylviar/tail.svg"
  25720. }
  25721. },
  25722. tailDick: {
  25723. height: math.unit(1.15, "meters"),
  25724. name: "Tail (Dick)",
  25725. image: {
  25726. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25727. }
  25728. },
  25729. tailDickSeparated: {
  25730. height: math.unit(1.19, "meters"),
  25731. name: "Tail (Separated Dick)",
  25732. image: {
  25733. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25734. }
  25735. },
  25736. slit: {
  25737. height: math.unit(1, "meters"),
  25738. name: "Slit",
  25739. image: {
  25740. source: "./media/characters/draekon-sylviar/slit.svg"
  25741. }
  25742. },
  25743. dick: {
  25744. height: math.unit(1.15, "meters"),
  25745. name: "Dick",
  25746. image: {
  25747. source: "./media/characters/draekon-sylviar/dick.svg"
  25748. }
  25749. },
  25750. dickSeparated: {
  25751. height: math.unit(1.1, "meters"),
  25752. name: "Separated Dick",
  25753. image: {
  25754. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25755. }
  25756. },
  25757. sheath: {
  25758. height: math.unit(1.15, "meters"),
  25759. name: "Sheath",
  25760. image: {
  25761. source: "./media/characters/draekon-sylviar/sheath.svg"
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Small",
  25768. height: math.unit(4.53 / 2, "meters"),
  25769. default: true
  25770. },
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(4.53, "meters"),
  25774. default: true
  25775. },
  25776. {
  25777. name: "Large",
  25778. height: math.unit(4.53 * 2, "meters"),
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(6 + 2 / 12, "feet"),
  25787. weight: math.unit(180, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/brawler/front.svg",
  25791. extra: 3301 / 3027,
  25792. bottom: 138 / 3439
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(6 + 2 / 12, "feet"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(11, "feet"),
  25809. weight: math.unit(1000, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/alex/front.svg",
  25813. bottom: 44.5 / 620
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Micro",
  25820. height: math.unit(5, "inches")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(11, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(9.5e9, "feet")
  25830. },
  25831. {
  25832. name: "Max Size",
  25833. height: math.unit(1.4e283, "yottameters")
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25839. {
  25840. female: {
  25841. height: math.unit(29.9, "m"),
  25842. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25843. name: "Female",
  25844. image: {
  25845. source: "./media/characters/zenari/female.svg",
  25846. extra: 3281.6 / 3217,
  25847. bottom: 72.2 / 3353
  25848. }
  25849. },
  25850. male: {
  25851. height: math.unit(27.7, "m"),
  25852. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25853. name: "Male",
  25854. image: {
  25855. source: "./media/characters/zenari/male.svg",
  25856. extra: 3008 / 2991,
  25857. bottom: 54.6 / 3069
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Macro",
  25864. height: math.unit(29.7, "meters"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25871. {
  25872. female: {
  25873. height: math.unit(23.8, "m"),
  25874. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25875. name: "Female",
  25876. image: {
  25877. source: "./media/characters/mactarian/female.svg",
  25878. extra: 2662 / 2569,
  25879. bottom: 73 / 2736
  25880. }
  25881. },
  25882. male: {
  25883. height: math.unit(23.8, "m"),
  25884. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25885. name: "Male",
  25886. image: {
  25887. source: "./media/characters/mactarian/male.svg",
  25888. extra: 2673 / 2600,
  25889. bottom: 76 / 2750
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Macro",
  25896. height: math.unit(23.8, "meters"),
  25897. default: true
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25903. {
  25904. female: {
  25905. height: math.unit(19.3, "m"),
  25906. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25907. name: "Female",
  25908. image: {
  25909. source: "./media/characters/umok/female.svg",
  25910. extra: 2186 / 2078,
  25911. bottom: 87 / 2277
  25912. }
  25913. },
  25914. male: {
  25915. height: math.unit(19.5, "m"),
  25916. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25917. name: "Male",
  25918. image: {
  25919. source: "./media/characters/umok/male.svg",
  25920. extra: 2233 / 2140,
  25921. bottom: 24.4 / 2258
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Macro",
  25928. height: math.unit(19.3, "meters"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25935. {
  25936. female: {
  25937. height: math.unit(26.15, "m"),
  25938. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25939. name: "Female",
  25940. image: {
  25941. source: "./media/characters/joraxian/female.svg",
  25942. extra: 2912 / 2824,
  25943. bottom: 36 / 2956
  25944. }
  25945. },
  25946. male: {
  25947. height: math.unit(25.4, "m"),
  25948. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25949. name: "Male",
  25950. image: {
  25951. source: "./media/characters/joraxian/male.svg",
  25952. extra: 2877 / 2721,
  25953. bottom: 82 / 2967
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(26.15, "meters"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25967. {
  25968. female: {
  25969. height: math.unit(21.6, "m"),
  25970. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25971. name: "Female",
  25972. image: {
  25973. source: "./media/characters/sthara/female.svg",
  25974. extra: 2516 / 2347,
  25975. bottom: 21.5 / 2537
  25976. }
  25977. },
  25978. male: {
  25979. height: math.unit(24, "m"),
  25980. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25981. name: "Male",
  25982. image: {
  25983. source: "./media/characters/sthara/male.svg",
  25984. extra: 2732 / 2607,
  25985. bottom: 23 / 2732
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Macro",
  25992. height: math.unit(21.6, "meters"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(6 + 4 / 12, "feet"),
  26002. weight: math.unit(175, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/luka-bryzant/front.svg",
  26006. extra: 311 / 289,
  26007. bottom: 4 / 315
  26008. }
  26009. },
  26010. back: {
  26011. height: math.unit(6 + 4 / 12, "feet"),
  26012. weight: math.unit(175, "lb"),
  26013. name: "Back",
  26014. image: {
  26015. source: "./media/characters/luka-bryzant/back.svg",
  26016. extra: 311 / 289,
  26017. bottom: 3.8 / 313.7
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Micro",
  26024. height: math.unit(10, "inches")
  26025. },
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(6 + 4 / 12, "feet"),
  26029. default: true
  26030. },
  26031. {
  26032. name: "Large",
  26033. height: math.unit(12, "feet")
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(5 + 7 / 12, "feet"),
  26042. weight: math.unit(185, "lb"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/aman-aquila/front.svg",
  26046. extra: 1013 / 976,
  26047. bottom: 45.6 / 1057
  26048. }
  26049. },
  26050. side: {
  26051. height: math.unit(5 + 7 / 12, "feet"),
  26052. weight: math.unit(185, "lb"),
  26053. name: "Side",
  26054. image: {
  26055. source: "./media/characters/aman-aquila/side.svg",
  26056. extra: 1054 / 1011,
  26057. bottom: 15 / 1070
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(5 + 7 / 12, "feet"),
  26062. weight: math.unit(185, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/aman-aquila/back.svg",
  26066. extra: 1026 / 970,
  26067. bottom: 12 / 1039
  26068. }
  26069. },
  26070. head: {
  26071. height: math.unit(1.211, "feet"),
  26072. name: "Head",
  26073. image: {
  26074. source: "./media/characters/aman-aquila/head.svg",
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Minimicro",
  26081. height: math.unit(0.057, "inches")
  26082. },
  26083. {
  26084. name: "Micro",
  26085. height: math.unit(7, "inches")
  26086. },
  26087. {
  26088. name: "Mini",
  26089. height: math.unit(3 + 7 / 12, "feet")
  26090. },
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(5 + 7 / 12, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Macro",
  26098. height: math.unit(157 + 7 / 12, "feet")
  26099. },
  26100. {
  26101. name: "Megamacro",
  26102. height: math.unit(1557 + 7 / 12, "feet")
  26103. },
  26104. {
  26105. name: "Gigamacro",
  26106. height: math.unit(15557 + 7 / 12, "feet")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(3 + 2 / 12, "inches"),
  26115. weight: math.unit(0.3, "ounces"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/hiphae/front.svg",
  26119. extra: 1931 / 1683,
  26120. bottom: 24 / 1955
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(3 + 1 / 2, "inches"),
  26128. default: true
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26134. {
  26135. front: {
  26136. height: math.unit(5 + 10 / 12, "feet"),
  26137. weight: math.unit(165, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/nicky/front.svg",
  26141. extra: 3144 / 2886,
  26142. bottom: 45.6 / 3192
  26143. }
  26144. },
  26145. back: {
  26146. height: math.unit(5 + 10 / 12, "feet"),
  26147. weight: math.unit(165, "lb"),
  26148. name: "Back",
  26149. image: {
  26150. source: "./media/characters/nicky/back.svg",
  26151. extra: 3055 / 2804,
  26152. bottom: 28.4 / 3087
  26153. }
  26154. },
  26155. frontclothed: {
  26156. height: math.unit(5 + 10 / 12, "feet"),
  26157. weight: math.unit(165, "lb"),
  26158. name: "Front-clothed",
  26159. image: {
  26160. source: "./media/characters/nicky/front-clothed.svg",
  26161. extra: 3184.9 / 2926.9,
  26162. bottom: 86.5 / 3239.9
  26163. }
  26164. },
  26165. foot: {
  26166. height: math.unit(1.16, "feet"),
  26167. name: "Foot",
  26168. image: {
  26169. source: "./media/characters/nicky/foot.svg"
  26170. }
  26171. },
  26172. feet: {
  26173. height: math.unit(1.34, "feet"),
  26174. name: "Feet",
  26175. image: {
  26176. source: "./media/characters/nicky/feet.svg"
  26177. }
  26178. },
  26179. maw: {
  26180. height: math.unit(0.9, "feet"),
  26181. name: "Maw",
  26182. image: {
  26183. source: "./media/characters/nicky/maw.svg"
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(5 + 10 / 12, "feet"),
  26191. default: true
  26192. },
  26193. {
  26194. name: "Macro",
  26195. height: math.unit(60, "feet")
  26196. },
  26197. {
  26198. name: "Megamacro",
  26199. height: math.unit(1, "mile")
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26205. {
  26206. side: {
  26207. height: math.unit(10, "feet"),
  26208. weight: math.unit(600, "lb"),
  26209. name: "Side",
  26210. image: {
  26211. source: "./media/characters/blair/side.svg",
  26212. bottom: 16.6 / 475,
  26213. extra: 458 / 431
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Micro",
  26220. height: math.unit(8, "inches")
  26221. },
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(10, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(180, "feet")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(5 + 4 / 12, "feet"),
  26238. weight: math.unit(125, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/fisher/front.svg",
  26242. extra: 444 / 390,
  26243. bottom: 2 / 444.8
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Micro",
  26250. height: math.unit(4, "inches")
  26251. },
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(5 + 4 / 12, "feet"),
  26255. default: true
  26256. },
  26257. {
  26258. name: "Macro",
  26259. height: math.unit(100, "feet")
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(6.71, "feet"),
  26268. weight: math.unit(200, "lb"),
  26269. preyCapacity: math.unit(1000000, "people"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/gliss/front.svg",
  26273. extra: 2347 / 2231,
  26274. bottom: 113 / 2462
  26275. }
  26276. },
  26277. hammerspaceSize: {
  26278. height: math.unit(6.71 * 717, "feet"),
  26279. weight: math.unit(200, "lb"),
  26280. preyCapacity: math.unit(1000000, "people"),
  26281. name: "Hammerspace Size",
  26282. image: {
  26283. source: "./media/characters/gliss/front.svg",
  26284. extra: 2347 / 2231,
  26285. bottom: 113 / 2462
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(6.71, "feet"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26299. {
  26300. side: {
  26301. height: math.unit(1.44, "m"),
  26302. weight: math.unit(80, "kg"),
  26303. name: "Side",
  26304. image: {
  26305. source: "./media/characters/dune-anderson/side.svg",
  26306. bottom: 49 / 1426
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Wolf-sized",
  26313. height: math.unit(1.44, "meters")
  26314. },
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(5.05, "meters"),
  26318. default: true
  26319. },
  26320. {
  26321. name: "Big",
  26322. height: math.unit(14.4, "meters")
  26323. },
  26324. {
  26325. name: "Huge",
  26326. height: math.unit(144, "meters")
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(7, "feet"),
  26335. weight: math.unit(425, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/hind/front.svg",
  26339. extra: 2091 / 1860,
  26340. bottom: 129 / 2220
  26341. }
  26342. },
  26343. back: {
  26344. height: math.unit(7, "feet"),
  26345. weight: math.unit(425, "lb"),
  26346. name: "Back",
  26347. image: {
  26348. source: "./media/characters/hind/back.svg",
  26349. extra: 2091 / 1860,
  26350. bottom: 24.6 / 2309
  26351. }
  26352. },
  26353. tail: {
  26354. height: math.unit(2.8, "feet"),
  26355. name: "Tail",
  26356. image: {
  26357. source: "./media/characters/hind/tail.svg"
  26358. }
  26359. },
  26360. head: {
  26361. height: math.unit(2.55, "feet"),
  26362. name: "Head",
  26363. image: {
  26364. source: "./media/characters/hind/head.svg"
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "XS",
  26371. height: math.unit(0.7, "feet")
  26372. },
  26373. {
  26374. name: "Normal",
  26375. height: math.unit(7, "feet"),
  26376. default: true
  26377. },
  26378. {
  26379. name: "XL",
  26380. height: math.unit(70, "feet")
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(2.1, "meters"),
  26389. weight: math.unit(150, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/tharquench-sizestealer/front.svg",
  26393. extra: 1605/1470,
  26394. bottom: 36/1641
  26395. }
  26396. },
  26397. frontAlt: {
  26398. height: math.unit(2.1, "meters"),
  26399. weight: math.unit(150, "lb"),
  26400. name: "Front (Alt)",
  26401. image: {
  26402. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26403. extra: 2318 / 2063,
  26404. bottom: 93.4 / 2410
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Nano",
  26411. height: math.unit(1, "mm")
  26412. },
  26413. {
  26414. name: "Micro",
  26415. height: math.unit(1, "cm")
  26416. },
  26417. {
  26418. name: "Normal",
  26419. height: math.unit(2.1, "meters"),
  26420. default: true
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(7 + 5 / 12, "feet"),
  26429. weight: math.unit(357, "lb"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/solex-draconov/front.svg",
  26433. extra: 1993 / 1865,
  26434. bottom: 117 / 2111
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Natural Height",
  26441. height: math.unit(7 + 5 / 12, "feet"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(350, "feet")
  26447. },
  26448. {
  26449. name: "Macro+",
  26450. height: math.unit(1000, "feet")
  26451. },
  26452. {
  26453. name: "Megamacro",
  26454. height: math.unit(20, "km")
  26455. },
  26456. {
  26457. name: "Megamacro+",
  26458. height: math.unit(1000, "km")
  26459. },
  26460. {
  26461. name: "Gigamacro",
  26462. height: math.unit(2.5, "Gm")
  26463. },
  26464. {
  26465. name: "Teramacro",
  26466. height: math.unit(15, "Tm")
  26467. },
  26468. {
  26469. name: "Galactic",
  26470. height: math.unit(30, "Zm")
  26471. },
  26472. {
  26473. name: "Universal",
  26474. height: math.unit(21000, "Ym")
  26475. },
  26476. {
  26477. name: "Omniversal",
  26478. height: math.unit(9.861e50, "Ym")
  26479. },
  26480. {
  26481. name: "Existential",
  26482. height: math.unit(1e300, "meters")
  26483. },
  26484. ]
  26485. ))
  26486. characterMakers.push(() => makeCharacter(
  26487. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26488. {
  26489. side: {
  26490. height: math.unit(25, "feet"),
  26491. weight: math.unit(90000, "lb"),
  26492. name: "Side",
  26493. image: {
  26494. source: "./media/characters/mandarax/side.svg",
  26495. extra: 614 / 332,
  26496. bottom: 55 / 630
  26497. }
  26498. },
  26499. lounging: {
  26500. height: math.unit(15.4, "feet"),
  26501. weight: math.unit(90000, "lb"),
  26502. name: "Lounging",
  26503. image: {
  26504. source: "./media/characters/mandarax/lounging.svg",
  26505. extra: 817/609,
  26506. bottom: 685/1502
  26507. }
  26508. },
  26509. head: {
  26510. height: math.unit(11.4, "feet"),
  26511. name: "Head",
  26512. image: {
  26513. source: "./media/characters/mandarax/head.svg"
  26514. }
  26515. },
  26516. belly: {
  26517. height: math.unit(33, "feet"),
  26518. name: "Belly",
  26519. preyCapacity: math.unit(500, "people"),
  26520. image: {
  26521. source: "./media/characters/mandarax/belly.svg"
  26522. }
  26523. },
  26524. dick: {
  26525. height: math.unit(8.46, "feet"),
  26526. name: "Dick",
  26527. image: {
  26528. source: "./media/characters/mandarax/dick.svg"
  26529. }
  26530. },
  26531. top: {
  26532. height: math.unit(28, "meters"),
  26533. name: "Top",
  26534. image: {
  26535. source: "./media/characters/mandarax/top.svg"
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(25, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(5, "feet"),
  26552. weight: math.unit(90, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/pixil/front.svg",
  26556. extra: 2000 / 1618,
  26557. bottom: 12.3 / 2011
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(5, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Megamacro",
  26569. height: math.unit(10, "miles"),
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(7 + 2 / 12, "feet"),
  26578. weight: math.unit(200, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/angel/front.svg",
  26582. extra: 1830 / 1737,
  26583. bottom: 22.6 / 1854,
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Normal",
  26590. height: math.unit(7 + 2 / 12, "feet"),
  26591. default: true
  26592. },
  26593. {
  26594. name: "Macro",
  26595. height: math.unit(1000, "feet")
  26596. },
  26597. {
  26598. name: "Megamacro",
  26599. height: math.unit(2, "miles")
  26600. },
  26601. {
  26602. name: "Gigamacro",
  26603. height: math.unit(20, "earths")
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26609. {
  26610. front: {
  26611. height: math.unit(5, "feet"),
  26612. weight: math.unit(180, "lb"),
  26613. name: "Front",
  26614. image: {
  26615. source: "./media/characters/mekana/front.svg",
  26616. extra: 1671 / 1605,
  26617. bottom: 3.5 / 1691
  26618. }
  26619. },
  26620. side: {
  26621. height: math.unit(5, "feet"),
  26622. weight: math.unit(180, "lb"),
  26623. name: "Side",
  26624. image: {
  26625. source: "./media/characters/mekana/side.svg",
  26626. extra: 1671 / 1605,
  26627. bottom: 3.5 / 1691
  26628. }
  26629. },
  26630. back: {
  26631. height: math.unit(5, "feet"),
  26632. weight: math.unit(180, "lb"),
  26633. name: "Back",
  26634. image: {
  26635. source: "./media/characters/mekana/back.svg",
  26636. extra: 1671 / 1605,
  26637. bottom: 3.5 / 1691
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(5, "feet"),
  26645. default: true
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(4 + 6 / 12, "feet"),
  26654. weight: math.unit(80, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/pixie/front.svg",
  26658. extra: 1924 / 1825,
  26659. bottom: 22.4 / 1946
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(4 + 6 / 12, "feet"),
  26667. default: true
  26668. },
  26669. {
  26670. name: "Macro",
  26671. height: math.unit(40, "feet")
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(2.1, "meters"),
  26680. weight: math.unit(200, "lb"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/the-lascivious/front.svg",
  26684. extra: 1 / 0.893,
  26685. bottom: 3.5 / 573.7
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Human Scale",
  26692. height: math.unit(2.1, "meters")
  26693. },
  26694. {
  26695. name: "Wolxi Scale",
  26696. height: math.unit(46.2, "m"),
  26697. default: true
  26698. },
  26699. {
  26700. name: "Boinker of Buildings",
  26701. height: math.unit(10, "km")
  26702. },
  26703. {
  26704. name: "Shagger of Skyscrapers",
  26705. height: math.unit(40, "km")
  26706. },
  26707. {
  26708. name: "Banger of Boroughs",
  26709. height: math.unit(4000, "km")
  26710. },
  26711. {
  26712. name: "Screwer of States",
  26713. height: math.unit(100000, "km")
  26714. },
  26715. {
  26716. name: "Pounder of Planets",
  26717. height: math.unit(2000000, "km")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(6, "feet"),
  26726. weight: math.unit(150, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/aj/front.svg",
  26730. extra: 2039 / 1562,
  26731. bottom: 40 / 2079
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(11 + 6 / 12, "feet"),
  26739. default: true
  26740. },
  26741. {
  26742. name: "Megamacro",
  26743. height: math.unit(60, "megameters")
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26749. {
  26750. side: {
  26751. height: math.unit(31 + 8 / 12, "feet"),
  26752. weight: math.unit(75000, "kg"),
  26753. name: "Side",
  26754. image: {
  26755. source: "./media/characters/koros/side.svg",
  26756. extra: 1442 / 1297,
  26757. bottom: 122.7 / 1562
  26758. }
  26759. },
  26760. dicksKingsCrown: {
  26761. height: math.unit(6, "feet"),
  26762. name: "Dicks (King's Crown)",
  26763. image: {
  26764. source: "./media/characters/koros/dicks-kings-crown.svg"
  26765. }
  26766. },
  26767. dicksTailSet: {
  26768. height: math.unit(3, "feet"),
  26769. name: "Dicks (Tail Set)",
  26770. image: {
  26771. source: "./media/characters/koros/dicks-tail-set.svg"
  26772. }
  26773. },
  26774. dickCumming: {
  26775. height: math.unit(7.98, "feet"),
  26776. name: "Dick (Cumming)",
  26777. image: {
  26778. source: "./media/characters/koros/dick-cumming.svg"
  26779. }
  26780. },
  26781. dicksBack: {
  26782. height: math.unit(5.9, "feet"),
  26783. name: "Dicks (Back)",
  26784. image: {
  26785. source: "./media/characters/koros/dicks-back.svg"
  26786. }
  26787. },
  26788. dicksFront: {
  26789. height: math.unit(3.72, "feet"),
  26790. name: "Dicks (Front)",
  26791. image: {
  26792. source: "./media/characters/koros/dicks-front.svg"
  26793. }
  26794. },
  26795. dicksPeeking: {
  26796. height: math.unit(3.0, "feet"),
  26797. name: "Dicks (Peeking)",
  26798. image: {
  26799. source: "./media/characters/koros/dicks-peeking.svg"
  26800. }
  26801. },
  26802. eye: {
  26803. height: math.unit(1.7, "feet"),
  26804. name: "Eye",
  26805. image: {
  26806. source: "./media/characters/koros/eye.svg"
  26807. }
  26808. },
  26809. headFront: {
  26810. height: math.unit(11.69, "feet"),
  26811. name: "Head (Front)",
  26812. image: {
  26813. source: "./media/characters/koros/head-front.svg"
  26814. }
  26815. },
  26816. headSide: {
  26817. height: math.unit(14, "feet"),
  26818. name: "Head (Side)",
  26819. image: {
  26820. source: "./media/characters/koros/head-side.svg"
  26821. }
  26822. },
  26823. leg: {
  26824. height: math.unit(17, "feet"),
  26825. name: "Leg",
  26826. image: {
  26827. source: "./media/characters/koros/leg.svg"
  26828. }
  26829. },
  26830. mawSide: {
  26831. height: math.unit(12.8, "feet"),
  26832. name: "Maw (Side)",
  26833. image: {
  26834. source: "./media/characters/koros/maw-side.svg"
  26835. }
  26836. },
  26837. mawSpitting: {
  26838. height: math.unit(17, "feet"),
  26839. name: "Maw (Spitting)",
  26840. image: {
  26841. source: "./media/characters/koros/maw-spitting.svg"
  26842. }
  26843. },
  26844. slit: {
  26845. height: math.unit(2.8, "feet"),
  26846. name: "Slit",
  26847. image: {
  26848. source: "./media/characters/koros/slit.svg"
  26849. }
  26850. },
  26851. stomach: {
  26852. height: math.unit(6.8, "feet"),
  26853. preyCapacity: math.unit(20, "people"),
  26854. name: "Stomach",
  26855. image: {
  26856. source: "./media/characters/koros/stomach.svg"
  26857. }
  26858. },
  26859. wingspanBottom: {
  26860. height: math.unit(114, "feet"),
  26861. name: "Wingspan (Bottom)",
  26862. image: {
  26863. source: "./media/characters/koros/wingspan-bottom.svg"
  26864. }
  26865. },
  26866. wingspanTop: {
  26867. height: math.unit(104, "feet"),
  26868. name: "Wingspan (Top)",
  26869. image: {
  26870. source: "./media/characters/koros/wingspan-top.svg"
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(31 + 8 / 12, "feet"),
  26878. default: true
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(18 + 5 / 12, "feet"),
  26887. weight: math.unit(3750, "kg"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/vexx/front.svg",
  26891. extra: 426 / 396,
  26892. bottom: 31.5 / 458
  26893. }
  26894. },
  26895. maw: {
  26896. height: math.unit(6, "feet"),
  26897. name: "Maw",
  26898. image: {
  26899. source: "./media/characters/vexx/maw.svg"
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(18 + 5 / 12, "feet"),
  26907. default: true
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(17 + 6 / 12, "feet"),
  26916. weight: math.unit(150, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/baadra/front.svg",
  26920. extra: 1694/1553,
  26921. bottom: 179/1873
  26922. }
  26923. },
  26924. frontAlt: {
  26925. height: math.unit(17 + 6 / 12, "feet"),
  26926. weight: math.unit(150, "lb"),
  26927. name: "Front (Alt)",
  26928. image: {
  26929. source: "./media/characters/baadra/front-alt.svg",
  26930. extra: 3137 / 2890,
  26931. bottom: 168.4 / 3305
  26932. }
  26933. },
  26934. back: {
  26935. height: math.unit(17 + 6 / 12, "feet"),
  26936. weight: math.unit(150, "lb"),
  26937. name: "Back",
  26938. image: {
  26939. source: "./media/characters/baadra/back.svg",
  26940. extra: 3142 / 2890,
  26941. bottom: 220 / 3371
  26942. }
  26943. },
  26944. head: {
  26945. height: math.unit(5.45, "feet"),
  26946. name: "Head",
  26947. image: {
  26948. source: "./media/characters/baadra/head.svg"
  26949. }
  26950. },
  26951. headAngry: {
  26952. height: math.unit(4.95, "feet"),
  26953. name: "Head (Angry)",
  26954. image: {
  26955. source: "./media/characters/baadra/head-angry.svg"
  26956. }
  26957. },
  26958. headOpen: {
  26959. height: math.unit(6, "feet"),
  26960. name: "Head (Open)",
  26961. image: {
  26962. source: "./media/characters/baadra/head-open.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(17 + 6 / 12, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(7 + 3 / 12, "feet"),
  26979. weight: math.unit(180, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/juri/front.svg",
  26983. extra: 1401 / 1237,
  26984. bottom: 18.5 / 1418
  26985. }
  26986. },
  26987. side: {
  26988. height: math.unit(7 + 3 / 12, "feet"),
  26989. weight: math.unit(180, "lb"),
  26990. name: "Side",
  26991. image: {
  26992. source: "./media/characters/juri/side.svg",
  26993. extra: 1424 / 1242,
  26994. bottom: 18.5 / 1447
  26995. }
  26996. },
  26997. sitting: {
  26998. height: math.unit(6, "feet"),
  26999. weight: math.unit(180, "lb"),
  27000. name: "Sitting",
  27001. image: {
  27002. source: "./media/characters/juri/sitting.svg",
  27003. extra: 1270 / 1143,
  27004. bottom: 100 / 1343
  27005. }
  27006. },
  27007. back: {
  27008. height: math.unit(7 + 3 / 12, "feet"),
  27009. weight: math.unit(180, "lb"),
  27010. name: "Back",
  27011. image: {
  27012. source: "./media/characters/juri/back.svg",
  27013. extra: 1377 / 1240,
  27014. bottom: 23.7 / 1405
  27015. }
  27016. },
  27017. maw: {
  27018. height: math.unit(2.8, "feet"),
  27019. name: "Maw",
  27020. image: {
  27021. source: "./media/characters/juri/maw.svg"
  27022. }
  27023. },
  27024. stomach: {
  27025. height: math.unit(0.89, "feet"),
  27026. preyCapacity: math.unit(4, "liters"),
  27027. name: "Stomach",
  27028. image: {
  27029. source: "./media/characters/juri/stomach.svg"
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(7 + 3 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27043. {
  27044. fox: {
  27045. height: math.unit(5 + 6 / 12, "feet"),
  27046. weight: math.unit(140, "lb"),
  27047. name: "Fox",
  27048. image: {
  27049. source: "./media/characters/maxene-sita/fox.svg",
  27050. extra: 146 / 138,
  27051. bottom: 2.1 / 148.19
  27052. }
  27053. },
  27054. foxLaying: {
  27055. height: math.unit(1.70, "feet"),
  27056. weight: math.unit(140, "lb"),
  27057. name: "Fox (Laying)",
  27058. image: {
  27059. source: "./media/characters/maxene-sita/fox-laying.svg",
  27060. extra: 910 / 572,
  27061. bottom: 71 / 981
  27062. }
  27063. },
  27064. kitsune: {
  27065. height: math.unit(10, "feet"),
  27066. weight: math.unit(800, "lb"),
  27067. name: "Kitsune",
  27068. image: {
  27069. source: "./media/characters/maxene-sita/kitsune.svg",
  27070. extra: 185 / 176,
  27071. bottom: 4.7 / 189.9
  27072. }
  27073. },
  27074. hellhound: {
  27075. height: math.unit(10, "feet"),
  27076. weight: math.unit(700, "lb"),
  27077. name: "Hellhound",
  27078. image: {
  27079. source: "./media/characters/maxene-sita/hellhound.svg",
  27080. extra: 1600 / 1545,
  27081. bottom: 81 / 1681
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(5 + 6 / 12, "feet"),
  27089. default: true
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27095. {
  27096. front: {
  27097. height: math.unit(3 + 4 / 12, "feet"),
  27098. weight: math.unit(70, "lb"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/maia/front.svg",
  27102. extra: 227 / 219.5,
  27103. bottom: 40 / 267
  27104. }
  27105. },
  27106. back: {
  27107. height: math.unit(3 + 4 / 12, "feet"),
  27108. weight: math.unit(70, "lb"),
  27109. name: "Back",
  27110. image: {
  27111. source: "./media/characters/maia/back.svg",
  27112. extra: 237 / 225
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(3 + 4 / 12, "feet"),
  27120. default: true
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(5 + 10 / 12, "feet"),
  27129. weight: math.unit(197, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/jabaro/front.svg",
  27133. extra: 225 / 216,
  27134. bottom: 5.06 / 230
  27135. }
  27136. },
  27137. back: {
  27138. height: math.unit(5 + 10 / 12, "feet"),
  27139. weight: math.unit(197, "lb"),
  27140. name: "Back",
  27141. image: {
  27142. source: "./media/characters/jabaro/back.svg",
  27143. extra: 225 / 219,
  27144. bottom: 1.9 / 227
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5 + 10 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(5 + 8 / 12, "feet"),
  27161. weight: math.unit(139, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/risa/front.svg",
  27165. extra: 270 / 260,
  27166. bottom: 11.2 / 282
  27167. }
  27168. },
  27169. back: {
  27170. height: math.unit(5 + 8 / 12, "feet"),
  27171. weight: math.unit(139, "lb"),
  27172. name: "Back",
  27173. image: {
  27174. source: "./media/characters/risa/back.svg",
  27175. extra: 264 / 255,
  27176. bottom: 4 / 268
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5 + 8 / 12, "feet"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(2 + 11 / 12, "feet"),
  27193. weight: math.unit(30, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/weatley/front.svg",
  27197. bottom: 10.7 / 414,
  27198. extra: 403.5 / 362
  27199. }
  27200. },
  27201. back: {
  27202. height: math.unit(2 + 11 / 12, "feet"),
  27203. weight: math.unit(30, "lb"),
  27204. name: "Back",
  27205. image: {
  27206. source: "./media/characters/weatley/back.svg",
  27207. bottom: 10.7 / 414,
  27208. extra: 403.5 / 362
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(2 + 11 / 12, "feet"),
  27216. default: true
  27217. },
  27218. ]
  27219. ))
  27220. characterMakers.push(() => makeCharacter(
  27221. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27222. {
  27223. front: {
  27224. height: math.unit(5 + 2 / 12, "feet"),
  27225. weight: math.unit(50, "kg"),
  27226. name: "Front",
  27227. image: {
  27228. source: "./media/characters/mercury-crescent/front.svg",
  27229. extra: 1088 / 1033,
  27230. bottom: 18.9 / 1109
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(5 + 2 / 12, "feet"),
  27238. default: true
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(2, "feet"),
  27247. weight: math.unit(15, "kg"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/diamond-jones/front.svg",
  27251. extra: 727/723,
  27252. bottom: 46/773
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(2, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(3, "feet"),
  27269. weight: math.unit(30, "kg"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/sweet-bit/front.svg",
  27273. extra: 675 / 567,
  27274. bottom: 27.7 / 703
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(3, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27288. {
  27289. side: {
  27290. height: math.unit(9.178, "feet"),
  27291. weight: math.unit(500, "lb"),
  27292. name: "Side",
  27293. image: {
  27294. source: "./media/characters/umbrazen/side.svg",
  27295. extra: 1730 / 1473,
  27296. bottom: 34.6 / 1765
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(9.178, "feet"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(10, "feet"),
  27313. weight: math.unit(750, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/arlist/front.svg",
  27317. extra: 961 / 778,
  27318. bottom: 6.2 / 986
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(10, "feet"),
  27326. default: true
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(5 + 1 / 12, "feet"),
  27335. weight: math.unit(110, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/aradel/front.svg",
  27339. extra: 324 / 303,
  27340. bottom: 3.6 / 329.4
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(5 + 1 / 12, "feet"),
  27348. default: true
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27354. {
  27355. dressed: {
  27356. height: math.unit(3 + 8 / 12, "feet"),
  27357. weight: math.unit(50, "lb"),
  27358. name: "Dressed",
  27359. image: {
  27360. source: "./media/characters/serryn/dressed.svg",
  27361. extra: 1792 / 1656,
  27362. bottom: 43.5 / 1840
  27363. }
  27364. },
  27365. nude: {
  27366. height: math.unit(3 + 8 / 12, "feet"),
  27367. weight: math.unit(50, "lb"),
  27368. name: "Nude",
  27369. image: {
  27370. source: "./media/characters/serryn/nude.svg",
  27371. extra: 1792 / 1656,
  27372. bottom: 43.5 / 1840
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(3 + 8 / 12, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(7 + 10 / 12, "feet"),
  27389. weight: math.unit(255, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/xavier-thyme/front.svg",
  27393. extra: 3733 / 3642,
  27394. bottom: 131 / 3869
  27395. }
  27396. },
  27397. frontRaven: {
  27398. height: math.unit(7 + 10 / 12, "feet"),
  27399. weight: math.unit(255, "lb"),
  27400. name: "Front (Raven)",
  27401. image: {
  27402. source: "./media/characters/xavier-thyme/front-raven.svg",
  27403. extra: 4385 / 3642,
  27404. bottom: 131 / 4517
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(7 + 10 / 12, "feet"),
  27412. default: true
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(1.6, "m"),
  27421. weight: math.unit(50, "kg"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/kiki/front.svg",
  27425. extra: 4682 / 3610,
  27426. bottom: 115 / 4777
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(1.6, "meters"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(50, "m"),
  27443. weight: math.unit(500, "tonnes"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/ryoko/front.svg",
  27447. extra: 4632 / 3926,
  27448. bottom: 193 / 4823
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(50, "meters"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(30, "m"),
  27465. weight: math.unit(22, "tonnes"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/elio/front.svg",
  27469. extra: 4582 / 3720,
  27470. bottom: 236 / 4828
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(30, "meters"),
  27478. default: true
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27484. {
  27485. front: {
  27486. height: math.unit(6 + 3 / 12, "feet"),
  27487. weight: math.unit(120, "lb"),
  27488. name: "Front",
  27489. image: {
  27490. source: "./media/characters/azura/front.svg",
  27491. extra: 1149 / 1135,
  27492. bottom: 45 / 1194
  27493. }
  27494. },
  27495. frontClothed: {
  27496. height: math.unit(6 + 3 / 12, "feet"),
  27497. weight: math.unit(120, "lb"),
  27498. name: "Front (Clothed)",
  27499. image: {
  27500. source: "./media/characters/azura/front-clothed.svg",
  27501. extra: 1149 / 1135,
  27502. bottom: 45 / 1194
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(6 + 3 / 12, "feet"),
  27510. default: true
  27511. },
  27512. {
  27513. name: "Macro",
  27514. height: math.unit(20 + 6 / 12, "feet")
  27515. },
  27516. {
  27517. name: "Megamacro",
  27518. height: math.unit(12, "miles")
  27519. },
  27520. {
  27521. name: "Gigamacro",
  27522. height: math.unit(10000, "miles")
  27523. },
  27524. {
  27525. name: "Teramacro",
  27526. height: math.unit(900000, "miles")
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(12, "feet"),
  27535. weight: math.unit(1, "ton"),
  27536. capacity: math.unit(660000, "gallons"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/zeus/front.svg",
  27540. extra: 5005 / 4717,
  27541. bottom: 363 / 5388
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(12, "feet")
  27549. },
  27550. {
  27551. name: "Preferred Size",
  27552. height: math.unit(0.5, "miles"),
  27553. default: true
  27554. },
  27555. {
  27556. name: "Giga Horse",
  27557. height: math.unit(300, "miles")
  27558. },
  27559. {
  27560. name: "Riding Planets",
  27561. height: math.unit(30, "megameters")
  27562. },
  27563. {
  27564. name: "Cosmic Giant",
  27565. height: math.unit(3, "zettameters")
  27566. },
  27567. {
  27568. name: "Breeding God",
  27569. height: math.unit(9.92e22, "yottameters")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27575. {
  27576. side: {
  27577. height: math.unit(9, "feet"),
  27578. weight: math.unit(1500, "kg"),
  27579. name: "Side",
  27580. image: {
  27581. source: "./media/characters/fang/side.svg",
  27582. extra: 924 / 866,
  27583. bottom: 47.5 / 972.3
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(9, "feet"),
  27591. default: true
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(75 + 6 / 12, "feet")
  27596. },
  27597. {
  27598. name: "Teramacro",
  27599. height: math.unit(50000, "miles")
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(10, "feet"),
  27608. weight: math.unit(2, "tons"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/rekhit/front.svg",
  27612. extra: 2796 / 2590,
  27613. bottom: 225 / 3022
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(10, "feet"),
  27621. default: true
  27622. },
  27623. {
  27624. name: "Macro",
  27625. height: math.unit(500, "feet")
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(7 + 6.451 / 12, "feet"),
  27634. weight: math.unit(310, "lb"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/dahlia-verrick/front.svg",
  27638. extra: 1488 / 1365,
  27639. bottom: 6.2 / 1495
  27640. }
  27641. },
  27642. back: {
  27643. height: math.unit(7 + 6.451 / 12, "feet"),
  27644. weight: math.unit(310, "lb"),
  27645. name: "Back",
  27646. image: {
  27647. source: "./media/characters/dahlia-verrick/back.svg",
  27648. extra: 1472 / 1351,
  27649. bottom: 5.28 / 1477
  27650. }
  27651. },
  27652. frontBusiness: {
  27653. height: math.unit(7 + 6.451 / 12, "feet"),
  27654. weight: math.unit(200, "lb"),
  27655. name: "Front (Business)",
  27656. image: {
  27657. source: "./media/characters/dahlia-verrick/front-business.svg",
  27658. extra: 1478 / 1381,
  27659. bottom: 5.5 / 1484
  27660. }
  27661. },
  27662. frontCasual: {
  27663. height: math.unit(7 + 6.451 / 12, "feet"),
  27664. weight: math.unit(200, "lb"),
  27665. name: "Front (Casual)",
  27666. image: {
  27667. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27668. extra: 1478 / 1381,
  27669. bottom: 5.5 / 1484
  27670. }
  27671. },
  27672. },
  27673. [
  27674. {
  27675. name: "Travel-Sized",
  27676. height: math.unit(7.45, "inches")
  27677. },
  27678. {
  27679. name: "Normal",
  27680. height: math.unit(7 + 6.451 / 12, "feet"),
  27681. default: true
  27682. },
  27683. {
  27684. name: "Hitting the Town",
  27685. height: math.unit(37 + 8 / 12, "feet")
  27686. },
  27687. {
  27688. name: "Stomp in the Suburbs",
  27689. height: math.unit(964 + 9.728 / 12, "feet")
  27690. },
  27691. {
  27692. name: "Sit on the City",
  27693. height: math.unit(61747 + 10.592 / 12, "feet")
  27694. },
  27695. {
  27696. name: "Glomp the Globe",
  27697. height: math.unit(252919327 + 4.832 / 12, "feet")
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(6 + 4 / 12, "feet"),
  27706. weight: math.unit(320, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/balina-mahigan/front.svg",
  27710. extra: 447 / 428,
  27711. bottom: 18 / 466
  27712. }
  27713. },
  27714. back: {
  27715. height: math.unit(6 + 4 / 12, "feet"),
  27716. weight: math.unit(320, "lb"),
  27717. name: "Back",
  27718. image: {
  27719. source: "./media/characters/balina-mahigan/back.svg",
  27720. extra: 445 / 428,
  27721. bottom: 4.07 / 448
  27722. }
  27723. },
  27724. arm: {
  27725. height: math.unit(1.88, "feet"),
  27726. name: "Arm",
  27727. image: {
  27728. source: "./media/characters/balina-mahigan/arm.svg"
  27729. }
  27730. },
  27731. backPort: {
  27732. height: math.unit(0.685, "feet"),
  27733. name: "Back Port",
  27734. image: {
  27735. source: "./media/characters/balina-mahigan/back-port.svg"
  27736. }
  27737. },
  27738. hoofpaw: {
  27739. height: math.unit(1.41, "feet"),
  27740. name: "Hoofpaw",
  27741. image: {
  27742. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27743. }
  27744. },
  27745. leftHandBack: {
  27746. height: math.unit(0.938, "feet"),
  27747. name: "Left Hand (Back)",
  27748. image: {
  27749. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27750. }
  27751. },
  27752. leftHandFront: {
  27753. height: math.unit(0.938, "feet"),
  27754. name: "Left Hand (Front)",
  27755. image: {
  27756. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27757. }
  27758. },
  27759. rightHandBack: {
  27760. height: math.unit(0.95, "feet"),
  27761. name: "Right Hand (Back)",
  27762. image: {
  27763. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27764. }
  27765. },
  27766. rightHandFront: {
  27767. height: math.unit(0.95, "feet"),
  27768. name: "Right Hand (Front)",
  27769. image: {
  27770. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(6 + 4 / 12, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(6, "feet"),
  27787. weight: math.unit(320, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/balina-mejeri/front.svg",
  27791. extra: 517 / 488,
  27792. bottom: 44.2 / 561
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 4 / 12, "feet")
  27800. },
  27801. {
  27802. name: "Business",
  27803. height: math.unit(155, "feet"),
  27804. default: true
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27810. {
  27811. kneeling: {
  27812. height: math.unit(6 + 4 / 12, "feet"),
  27813. weight: math.unit(300 * 20, "lb"),
  27814. name: "Kneeling",
  27815. image: {
  27816. source: "./media/characters/balbarian/kneeling.svg",
  27817. extra: 922 / 862,
  27818. bottom: 42.4 / 965
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(6 + 4 / 12, "feet")
  27826. },
  27827. {
  27828. name: "Treasured",
  27829. height: math.unit(18 + 9 / 12, "feet"),
  27830. default: true
  27831. },
  27832. {
  27833. name: "Macro",
  27834. height: math.unit(900, "feet")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(6 + 4 / 12, "feet"),
  27843. weight: math.unit(325, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/balina-amarini/front.svg",
  27847. extra: 415 / 403,
  27848. bottom: 19 / 433.4
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(6 + 4 / 12, "feet"),
  27853. weight: math.unit(325, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/balina-amarini/back.svg",
  27857. extra: 415 / 403,
  27858. bottom: 13.5 / 432
  27859. }
  27860. },
  27861. overdrive: {
  27862. height: math.unit(6 + 4 / 12, "feet"),
  27863. weight: math.unit(400, "lb"),
  27864. name: "Overdrive",
  27865. image: {
  27866. source: "./media/characters/balina-amarini/overdrive.svg",
  27867. extra: 269 / 259,
  27868. bottom: 12 / 282
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Boom",
  27875. height: math.unit(9 + 10 / 12, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit(280, "feet")
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27886. {
  27887. goddess: {
  27888. height: math.unit(600, "feet"),
  27889. weight: math.unit(2000000, "tons"),
  27890. name: "Goddess",
  27891. image: {
  27892. source: "./media/characters/lady-kubwa/goddess.svg",
  27893. extra: 1240.5 / 1223,
  27894. bottom: 22 / 1263
  27895. }
  27896. },
  27897. goddesser: {
  27898. height: math.unit(900, "feet"),
  27899. weight: math.unit(20000000, "lb"),
  27900. name: "Goddess-er",
  27901. image: {
  27902. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27903. extra: 899 / 888,
  27904. bottom: 12.6 / 912
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Macro",
  27911. height: math.unit(600, "feet"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Megamacro",
  27916. height: math.unit(250, "miles")
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(7 + 7 / 12, "feet"),
  27925. weight: math.unit(250, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/tala-grovehorn/front.svg",
  27929. extra: 2636 / 2525,
  27930. bottom: 147 / 2781
  27931. }
  27932. },
  27933. back: {
  27934. height: math.unit(7 + 7 / 12, "feet"),
  27935. weight: math.unit(250, "lb"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/tala-grovehorn/back.svg",
  27939. extra: 2635 / 2539,
  27940. bottom: 100 / 2732.8
  27941. }
  27942. },
  27943. mouth: {
  27944. height: math.unit(1.15, "feet"),
  27945. name: "Mouth",
  27946. image: {
  27947. source: "./media/characters/tala-grovehorn/mouth.svg"
  27948. }
  27949. },
  27950. dick: {
  27951. height: math.unit(2.36, "feet"),
  27952. name: "Dick",
  27953. image: {
  27954. source: "./media/characters/tala-grovehorn/dick.svg"
  27955. }
  27956. },
  27957. slit: {
  27958. height: math.unit(0.61, "feet"),
  27959. name: "Slit",
  27960. image: {
  27961. source: "./media/characters/tala-grovehorn/slit.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(7 + 7 / 12, "feet"),
  27973. weight: math.unit(225, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/epona/front.svg",
  27977. extra: 2445 / 2290,
  27978. bottom: 251 / 2696
  27979. }
  27980. },
  27981. back: {
  27982. height: math.unit(7 + 7 / 12, "feet"),
  27983. weight: math.unit(225, "lb"),
  27984. name: "Back",
  27985. image: {
  27986. source: "./media/characters/epona/back.svg",
  27987. extra: 2546 / 2408,
  27988. bottom: 44 / 2589
  27989. }
  27990. },
  27991. genitals: {
  27992. height: math.unit(1.5, "feet"),
  27993. name: "Genitals",
  27994. image: {
  27995. source: "./media/characters/epona/genitals.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(7 + 7 / 12, "feet"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(7, "feet"),
  28012. weight: math.unit(518, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/avia-bloodbourn/front.svg",
  28016. extra: 1466 / 1350,
  28017. bottom: 65 / 1527
  28018. }
  28019. },
  28020. },
  28021. [
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(9.35, "feet"),
  28029. weight: math.unit(600, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/amera/front.svg",
  28033. extra: 891 / 818,
  28034. bottom: 30 / 922.7
  28035. }
  28036. },
  28037. back: {
  28038. height: math.unit(9.35, "feet"),
  28039. weight: math.unit(600, "lb"),
  28040. name: "Back",
  28041. image: {
  28042. source: "./media/characters/amera/back.svg",
  28043. extra: 876 / 824,
  28044. bottom: 6.8 / 884
  28045. }
  28046. },
  28047. dick: {
  28048. height: math.unit(2.14, "feet"),
  28049. name: "Dick",
  28050. image: {
  28051. source: "./media/characters/amera/dick.svg"
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(9.35, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28065. {
  28066. kneeling: {
  28067. height: math.unit(3 + 4 / 12, "feet"),
  28068. weight: math.unit(90, "lb"),
  28069. name: "Kneeling",
  28070. image: {
  28071. source: "./media/characters/rosewen/kneeling.svg",
  28072. extra: 1835 / 1571,
  28073. bottom: 27.7 / 1862
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(3 + 4 / 12, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(5 + 10 / 12, "feet"),
  28090. weight: math.unit(200, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/sabah/front.svg",
  28094. extra: 849 / 763,
  28095. bottom: 33.9 / 881
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(5 + 10 / 12, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28109. {
  28110. front: {
  28111. height: math.unit(3 + 5 / 12, "feet"),
  28112. weight: math.unit(40, "kg"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/purple-flame/front.svg",
  28116. extra: 1577 / 1412,
  28117. bottom: 97 / 1694
  28118. }
  28119. },
  28120. frontDressed: {
  28121. height: math.unit(3 + 5 / 12, "feet"),
  28122. weight: math.unit(40, "kg"),
  28123. name: "Front (Dressed)",
  28124. image: {
  28125. source: "./media/characters/purple-flame/front-dressed.svg",
  28126. extra: 1577 / 1412,
  28127. bottom: 97 / 1694
  28128. }
  28129. },
  28130. headphones: {
  28131. height: math.unit(0.85, "feet"),
  28132. name: "Headphones",
  28133. image: {
  28134. source: "./media/characters/purple-flame/headphones.svg"
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Really Small",
  28141. height: math.unit(5, "cm")
  28142. },
  28143. {
  28144. name: "Micro",
  28145. height: math.unit(1 + 5 / 12, "feet")
  28146. },
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(3 + 5 / 12, "feet"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Minimacro",
  28154. height: math.unit(125, "feet")
  28155. },
  28156. {
  28157. name: "Macro",
  28158. height: math.unit(0.5, "miles")
  28159. },
  28160. {
  28161. name: "Megamacro",
  28162. height: math.unit(50, "miles")
  28163. },
  28164. {
  28165. name: "Gigantic",
  28166. height: math.unit(750, "miles")
  28167. },
  28168. {
  28169. name: "Planetary",
  28170. height: math.unit(15000, "miles")
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(14, "feet"),
  28179. weight: math.unit(959, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/arsenal/front.svg",
  28183. extra: 2357 / 2157,
  28184. bottom: 93 / 2458
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(14, "feet"),
  28192. default: true
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(6, "feet"),
  28201. weight: math.unit(150, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/adira/front.svg",
  28205. extra: 1078 / 1029,
  28206. bottom: 87 / 1166
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Micro",
  28213. height: math.unit(4, "inches"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Macro",
  28218. height: math.unit(50, "feet")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(16, "feet"),
  28227. weight: math.unit(1000, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/grim/front.svg",
  28231. extra: 622 / 614,
  28232. bottom: 18.1 / 642
  28233. }
  28234. },
  28235. back: {
  28236. height: math.unit(16, "feet"),
  28237. weight: math.unit(1000, "lb"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/grim/back.svg",
  28241. extra: 610.6 / 602,
  28242. bottom: 40.8 / 652
  28243. }
  28244. },
  28245. hunched: {
  28246. height: math.unit(9.75, "feet"),
  28247. weight: math.unit(1000, "lb"),
  28248. name: "Hunched",
  28249. image: {
  28250. source: "./media/characters/grim/hunched.svg",
  28251. extra: 304 / 297,
  28252. bottom: 35.4 / 394
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(16, "feet"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(2.3, "meters"),
  28269. weight: math.unit(300, "lb"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/sinja/front-sfw.svg",
  28273. extra: 1393 / 1294,
  28274. bottom: 70 / 1463
  28275. }
  28276. },
  28277. frontNsfw: {
  28278. height: math.unit(2.3, "meters"),
  28279. weight: math.unit(300, "lb"),
  28280. name: "Front (NSFW)",
  28281. image: {
  28282. source: "./media/characters/sinja/front-nsfw.svg",
  28283. extra: 1393 / 1294,
  28284. bottom: 70 / 1463
  28285. }
  28286. },
  28287. back: {
  28288. height: math.unit(2.3, "meters"),
  28289. weight: math.unit(300, "lb"),
  28290. name: "Back",
  28291. image: {
  28292. source: "./media/characters/sinja/back.svg",
  28293. extra: 1393 / 1294,
  28294. bottom: 70 / 1463
  28295. }
  28296. },
  28297. head: {
  28298. height: math.unit(1.771, "feet"),
  28299. name: "Head",
  28300. image: {
  28301. source: "./media/characters/sinja/head.svg"
  28302. }
  28303. },
  28304. slit: {
  28305. height: math.unit(0.8, "feet"),
  28306. name: "Slit",
  28307. image: {
  28308. source: "./media/characters/sinja/slit.svg"
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Normal",
  28315. height: math.unit(2.3, "meters")
  28316. },
  28317. {
  28318. name: "Macro",
  28319. height: math.unit(91, "meters"),
  28320. default: true
  28321. },
  28322. {
  28323. name: "Megamacro",
  28324. height: math.unit(91440, "meters")
  28325. },
  28326. {
  28327. name: "Gigamacro",
  28328. height: math.unit(60960000, "meters")
  28329. },
  28330. {
  28331. name: "Teramacro",
  28332. height: math.unit(9144000000, "meters")
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(1.7, "meters"),
  28341. weight: math.unit(130, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/kyu/front.svg",
  28345. extra: 415 / 395,
  28346. bottom: 5 / 420
  28347. }
  28348. },
  28349. head: {
  28350. height: math.unit(1.75, "feet"),
  28351. name: "Head",
  28352. image: {
  28353. source: "./media/characters/kyu/head.svg"
  28354. }
  28355. },
  28356. foot: {
  28357. height: math.unit(0.81, "feet"),
  28358. name: "Foot",
  28359. image: {
  28360. source: "./media/characters/kyu/foot.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(1.7, "meters")
  28368. },
  28369. {
  28370. name: "Macro",
  28371. height: math.unit(131, "feet"),
  28372. default: true
  28373. },
  28374. {
  28375. name: "Megamacro",
  28376. height: math.unit(91440, "meters")
  28377. },
  28378. {
  28379. name: "Gigamacro",
  28380. height: math.unit(60960000, "meters")
  28381. },
  28382. {
  28383. name: "Teramacro",
  28384. height: math.unit(9144000000, "meters")
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(7 + 1 / 12, "feet"),
  28393. weight: math.unit(250, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/joey/front.svg",
  28397. extra: 1791 / 1537,
  28398. bottom: 28 / 1816
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Micro",
  28405. height: math.unit(3, "inches")
  28406. },
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(7 + 1 / 12, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(165, "cm"),
  28419. weight: math.unit(140, "lb"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/sam-evans/front.svg",
  28423. extra: 3417 / 3230,
  28424. bottom: 41.3 / 3417
  28425. }
  28426. },
  28427. frontSixTails: {
  28428. height: math.unit(165, "cm"),
  28429. weight: math.unit(140, "lb"),
  28430. name: "Front-six-tails",
  28431. image: {
  28432. source: "./media/characters/sam-evans/front-six-tails.svg",
  28433. extra: 3417 / 3230,
  28434. bottom: 41.3 / 3417
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(165, "cm"),
  28439. weight: math.unit(140, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/sam-evans/back.svg",
  28443. extra: 3227 / 3032,
  28444. bottom: 6.8 / 3234
  28445. }
  28446. },
  28447. face: {
  28448. height: math.unit(0.68, "feet"),
  28449. name: "Face",
  28450. image: {
  28451. source: "./media/characters/sam-evans/face.svg"
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(165, "cm"),
  28459. default: true
  28460. },
  28461. {
  28462. name: "Macro",
  28463. height: math.unit(100, "meters")
  28464. },
  28465. {
  28466. name: "Macro+",
  28467. height: math.unit(800, "meters")
  28468. },
  28469. {
  28470. name: "Macro++",
  28471. height: math.unit(3, "km")
  28472. },
  28473. {
  28474. name: "Macro+++",
  28475. height: math.unit(30, "km")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(10, "feet"),
  28484. weight: math.unit(750, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/juliet-a/front.svg",
  28488. extra: 1766 / 1720,
  28489. bottom: 43 / 1809
  28490. }
  28491. },
  28492. back: {
  28493. height: math.unit(10, "feet"),
  28494. weight: math.unit(750, "lb"),
  28495. name: "Back",
  28496. image: {
  28497. source: "./media/characters/juliet-a/back.svg",
  28498. extra: 1781 / 1734,
  28499. bottom: 35 / 1810,
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(10, "feet"),
  28507. default: true
  28508. },
  28509. {
  28510. name: "Dragon Form",
  28511. height: math.unit(250, "feet")
  28512. },
  28513. {
  28514. name: "Macro",
  28515. height: math.unit(1000, "feet")
  28516. },
  28517. {
  28518. name: "Megamacro",
  28519. height: math.unit(10000, "feet")
  28520. }
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28525. {
  28526. regular: {
  28527. height: math.unit(7 + 3 / 12, "feet"),
  28528. weight: math.unit(260, "lb"),
  28529. name: "Regular",
  28530. image: {
  28531. source: "./media/characters/wild/regular.svg",
  28532. extra: 97.45 / 92,
  28533. bottom: 6.8 / 104.3
  28534. }
  28535. },
  28536. biggums: {
  28537. height: math.unit(8 + 6 / 12, "feet"),
  28538. weight: math.unit(425, "lb"),
  28539. name: "Biggums",
  28540. image: {
  28541. source: "./media/characters/wild/biggums.svg",
  28542. extra: 97.45 / 92,
  28543. bottom: 7.5 / 132.34
  28544. }
  28545. },
  28546. mawRegular: {
  28547. height: math.unit(1.24, "feet"),
  28548. name: "Maw (Regular)",
  28549. image: {
  28550. source: "./media/characters/wild/maw.svg"
  28551. }
  28552. },
  28553. mawBiggums: {
  28554. height: math.unit(1.47, "feet"),
  28555. name: "Maw (Biggums)",
  28556. image: {
  28557. source: "./media/characters/wild/maw.svg"
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(7 + 3 / 12, "feet"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28571. {
  28572. front: {
  28573. height: math.unit(2.5, "meters"),
  28574. weight: math.unit(200, "kg"),
  28575. name: "Front",
  28576. image: {
  28577. source: "./media/characters/vidar/front.svg",
  28578. extra: 2994 / 2795,
  28579. bottom: 56 / 3061
  28580. }
  28581. },
  28582. back: {
  28583. height: math.unit(2.5, "meters"),
  28584. weight: math.unit(200, "kg"),
  28585. name: "Back",
  28586. image: {
  28587. source: "./media/characters/vidar/back.svg",
  28588. extra: 3131 / 2928,
  28589. bottom: 13.5 / 3141.5
  28590. }
  28591. },
  28592. feral: {
  28593. height: math.unit(2.5, "meters"),
  28594. weight: math.unit(2000, "kg"),
  28595. name: "Feral",
  28596. image: {
  28597. source: "./media/characters/vidar/feral.svg",
  28598. extra: 2790 / 1765,
  28599. bottom: 6 / 2796
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(2.5, "meters"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(100, "meters")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(5 + 9 / 12, "feet"),
  28620. weight: math.unit(120, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/ash/front.svg",
  28624. extra: 2189 / 1961,
  28625. bottom: 5.2 / 2194
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(5 + 9 / 12, "feet"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(9, "feet"),
  28642. weight: math.unit(10000, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/gygabite/front.svg",
  28646. bottom: 31.7 / 537.8,
  28647. extra: 505 / 370
  28648. }
  28649. },
  28650. },
  28651. [
  28652. {
  28653. name: "Normal",
  28654. height: math.unit(9, "feet"),
  28655. default: true
  28656. },
  28657. ]
  28658. ))
  28659. characterMakers.push(() => makeCharacter(
  28660. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28661. {
  28662. front: {
  28663. height: math.unit(12, "feet"),
  28664. weight: math.unit(4000, "lb"),
  28665. name: "Front",
  28666. image: {
  28667. source: "./media/characters/p0tat0/front.svg",
  28668. extra: 1065 / 921,
  28669. bottom: 55.7 / 1121.25
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(12, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28683. {
  28684. side: {
  28685. height: math.unit(6.5, "feet"),
  28686. weight: math.unit(800, "lb"),
  28687. name: "Side",
  28688. image: {
  28689. source: "./media/characters/dusk/side.svg",
  28690. extra: 615 / 373,
  28691. bottom: 53 / 664
  28692. }
  28693. },
  28694. sitting: {
  28695. height: math.unit(7, "feet"),
  28696. weight: math.unit(800, "lb"),
  28697. name: "Sitting",
  28698. image: {
  28699. source: "./media/characters/dusk/sitting.svg",
  28700. extra: 753 / 425,
  28701. bottom: 33 / 774
  28702. }
  28703. },
  28704. head: {
  28705. height: math.unit(6.1, "feet"),
  28706. name: "Head",
  28707. image: {
  28708. source: "./media/characters/dusk/head.svg"
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(7, "feet"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(15, "feet"),
  28725. weight: math.unit(7000, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/jay-direwolf/front.svg",
  28729. extra: 1810 / 1732,
  28730. bottom: 66 / 1892
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(15, "feet"),
  28738. default: true
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(4 + 9 / 12, "feet"),
  28747. weight: math.unit(130, "lb"),
  28748. name: "Front",
  28749. image: {
  28750. source: "./media/characters/anchovie/front.svg",
  28751. extra: 382 / 350,
  28752. bottom: 25 / 409
  28753. }
  28754. },
  28755. back: {
  28756. height: math.unit(4 + 9 / 12, "feet"),
  28757. weight: math.unit(130, "lb"),
  28758. name: "Back",
  28759. image: {
  28760. source: "./media/characters/anchovie/back.svg",
  28761. extra: 385 / 352,
  28762. bottom: 16.6 / 402
  28763. }
  28764. },
  28765. frontDressed: {
  28766. height: math.unit(4 + 9 / 12, "feet"),
  28767. weight: math.unit(130, "lb"),
  28768. name: "Front (Dressed)",
  28769. image: {
  28770. source: "./media/characters/anchovie/front-dressed.svg",
  28771. extra: 382 / 350,
  28772. bottom: 25 / 409
  28773. }
  28774. },
  28775. backDressed: {
  28776. height: math.unit(4 + 9 / 12, "feet"),
  28777. weight: math.unit(130, "lb"),
  28778. name: "Back (Dressed)",
  28779. image: {
  28780. source: "./media/characters/anchovie/back-dressed.svg",
  28781. extra: 385 / 352,
  28782. bottom: 16.6 / 402
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Micro",
  28789. height: math.unit(6.4, "inches")
  28790. },
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(4 + 9 / 12, "feet"),
  28794. default: true
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(2, "meters"),
  28803. weight: math.unit(180, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/acidrenamon/front.svg",
  28807. extra: 987 / 890,
  28808. bottom: 22.8 / 1009
  28809. }
  28810. },
  28811. back: {
  28812. height: math.unit(2, "meters"),
  28813. weight: math.unit(180, "lb"),
  28814. name: "Back",
  28815. image: {
  28816. source: "./media/characters/acidrenamon/back.svg",
  28817. extra: 983 / 891,
  28818. bottom: 8.4 / 992
  28819. }
  28820. },
  28821. head: {
  28822. height: math.unit(1.92, "feet"),
  28823. name: "Head",
  28824. image: {
  28825. source: "./media/characters/acidrenamon/head.svg"
  28826. }
  28827. },
  28828. rump: {
  28829. height: math.unit(1.72, "feet"),
  28830. name: "Rump",
  28831. image: {
  28832. source: "./media/characters/acidrenamon/rump.svg"
  28833. }
  28834. },
  28835. tail: {
  28836. height: math.unit(4.2, "feet"),
  28837. name: "Tail",
  28838. image: {
  28839. source: "./media/characters/acidrenamon/tail.svg"
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Normal",
  28846. height: math.unit(2, "meters"),
  28847. default: true
  28848. },
  28849. {
  28850. name: "Minimacro",
  28851. height: math.unit(7, "meters")
  28852. },
  28853. {
  28854. name: "Macro",
  28855. height: math.unit(200, "meters")
  28856. },
  28857. {
  28858. name: "Gigamacro",
  28859. height: math.unit(0.2, "earths")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(152, "feet"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/kenzie-lee/front.svg",
  28871. extra: 1869/1774,
  28872. bottom: 128/1997
  28873. }
  28874. },
  28875. side: {
  28876. height: math.unit(86, "feet"),
  28877. name: "Side",
  28878. image: {
  28879. source: "./media/characters/kenzie-lee/side.svg",
  28880. extra: 930/815,
  28881. bottom: 177/1107
  28882. }
  28883. },
  28884. paw: {
  28885. height: math.unit(15, "feet"),
  28886. name: "Paw",
  28887. image: {
  28888. source: "./media/characters/kenzie-lee/paw.svg"
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Kenzie Flea",
  28895. height: math.unit(2, "mm"),
  28896. default: true
  28897. },
  28898. {
  28899. name: "Micro",
  28900. height: math.unit(2, "inches")
  28901. },
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(152, "feet")
  28905. },
  28906. {
  28907. name: "Megamacro",
  28908. height: math.unit(7, "miles")
  28909. },
  28910. {
  28911. name: "Gigamacro",
  28912. height: math.unit(8000, "miles")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(6, "feet"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/withers/front.svg",
  28924. extra: 1935/1760,
  28925. bottom: 72/2007
  28926. }
  28927. },
  28928. back: {
  28929. height: math.unit(6, "feet"),
  28930. name: "Back",
  28931. image: {
  28932. source: "./media/characters/withers/back.svg",
  28933. extra: 1944/1792,
  28934. bottom: 12/1956
  28935. }
  28936. },
  28937. dressed: {
  28938. height: math.unit(6, "feet"),
  28939. name: "Dressed",
  28940. image: {
  28941. source: "./media/characters/withers/dressed.svg",
  28942. extra: 1937/1765,
  28943. bottom: 73/2010
  28944. }
  28945. },
  28946. phase1: {
  28947. height: math.unit(1.1, "feet"),
  28948. name: "Phase 1",
  28949. image: {
  28950. source: "./media/characters/withers/phase-1.svg",
  28951. extra: 1885/1232,
  28952. bottom: 0/1885
  28953. }
  28954. },
  28955. phase2: {
  28956. height: math.unit(1.05, "feet"),
  28957. name: "Phase 2",
  28958. image: {
  28959. source: "./media/characters/withers/phase-2.svg",
  28960. extra: 1792/1090,
  28961. bottom: 0/1792
  28962. }
  28963. },
  28964. partyWipe: {
  28965. height: math.unit(1.1, "feet"),
  28966. name: "Party Wipe",
  28967. image: {
  28968. source: "./media/characters/withers/party-wipe.svg",
  28969. extra: 1864/1207,
  28970. bottom: 0/1864
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Macro",
  28977. height: math.unit(167, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Megamacro",
  28982. height: math.unit(15, "miles")
  28983. }
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(6 + 7 / 12, "feet"),
  28991. weight: math.unit(250, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/nemoskii/front.svg",
  28995. extra: 2270 / 1734,
  28996. bottom: 86 / 2354
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(6 + 7 / 12, "feet"),
  29001. weight: math.unit(250, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/nemoskii/back.svg",
  29005. extra: 1845 / 1788,
  29006. bottom: 10.5 / 1852
  29007. }
  29008. },
  29009. head: {
  29010. height: math.unit(1.31, "feet"),
  29011. name: "Head",
  29012. image: {
  29013. source: "./media/characters/nemoskii/head.svg"
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Micro",
  29020. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29021. },
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(6 + 7 / 12, "feet"),
  29025. default: true
  29026. },
  29027. {
  29028. name: "Macro",
  29029. height: math.unit((6 + 7 / 12) * 150, "feet")
  29030. },
  29031. {
  29032. name: "Macro+",
  29033. height: math.unit((6 + 7 / 12) * 500, "feet")
  29034. },
  29035. {
  29036. name: "Megamacro",
  29037. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(1, "mile"),
  29046. weight: math.unit(265261.9, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/shui/front.svg",
  29050. extra: 1633 / 1564,
  29051. bottom: 91.5 / 1726
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Macro",
  29058. height: math.unit(1, "mile"),
  29059. default: true
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(12 + 6 / 12, "feet"),
  29068. weight: math.unit(1342, "lb"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/arokh-takakura/front.svg",
  29072. extra: 1089 / 1043,
  29073. bottom: 77.4 / 1176.7
  29074. }
  29075. },
  29076. back: {
  29077. height: math.unit(12 + 6 / 12, "feet"),
  29078. weight: math.unit(1342, "lb"),
  29079. name: "Back",
  29080. image: {
  29081. source: "./media/characters/arokh-takakura/back.svg",
  29082. extra: 1046 / 1019,
  29083. bottom: 102 / 1150
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Big",
  29090. height: math.unit(12 + 6 / 12, "feet"),
  29091. default: true
  29092. },
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29097. {
  29098. front: {
  29099. height: math.unit(5 + 6 / 12, "feet"),
  29100. weight: math.unit(150, "lb"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/theo/front.svg",
  29104. extra: 1184 / 1131,
  29105. bottom: 7.4 / 1191
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Micro",
  29112. height: math.unit(5, "inches")
  29113. },
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(5 + 6 / 12, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(5 + 9 / 12, "feet"),
  29126. weight: math.unit(130, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/cecelia-swift/front.svg",
  29130. extra: 502 / 484,
  29131. bottom: 23 / 523
  29132. }
  29133. },
  29134. back: {
  29135. height: math.unit(5 + 9 / 12, "feet"),
  29136. weight: math.unit(130, "lb"),
  29137. name: "Back",
  29138. image: {
  29139. source: "./media/characters/cecelia-swift/back.svg",
  29140. extra: 499 / 485,
  29141. bottom: 12 / 511
  29142. }
  29143. },
  29144. head: {
  29145. height: math.unit(0.90, "feet"),
  29146. name: "Head",
  29147. image: {
  29148. source: "./media/characters/cecelia-swift/head.svg"
  29149. }
  29150. },
  29151. rump: {
  29152. height: math.unit(1.75, "feet"),
  29153. name: "Rump",
  29154. image: {
  29155. source: "./media/characters/cecelia-swift/rump.svg"
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(5 + 9 / 12, "feet"),
  29163. default: true
  29164. },
  29165. {
  29166. name: "Big",
  29167. height: math.unit(50, "feet")
  29168. },
  29169. {
  29170. name: "Macro",
  29171. height: math.unit(100, "feet")
  29172. },
  29173. {
  29174. name: "Macro+",
  29175. height: math.unit(500, "feet")
  29176. },
  29177. {
  29178. name: "Macro++",
  29179. height: math.unit(1000, "feet")
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/kaunan/front.svg",
  29192. extra: 2890 / 2523,
  29193. bottom: 49 / 2939
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(150, "feet"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29207. {
  29208. dressed: {
  29209. height: math.unit(175, "cm"),
  29210. weight: math.unit(60, "kg"),
  29211. name: "Dressed",
  29212. image: {
  29213. source: "./media/characters/fei/dressed.svg",
  29214. extra: 1402/1278,
  29215. bottom: 27/1429
  29216. }
  29217. },
  29218. nude: {
  29219. height: math.unit(175, "cm"),
  29220. weight: math.unit(60, "kg"),
  29221. name: "Nude",
  29222. image: {
  29223. source: "./media/characters/fei/nude.svg",
  29224. extra: 1402/1278,
  29225. bottom: 27/1429
  29226. }
  29227. },
  29228. heels: {
  29229. height: math.unit(0.466, "feet"),
  29230. name: "Heels",
  29231. image: {
  29232. source: "./media/characters/fei/heels.svg",
  29233. extra: 156/152,
  29234. bottom: 28/184
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Mortal",
  29241. height: math.unit(175, "cm")
  29242. },
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(3500, "m")
  29246. },
  29247. {
  29248. name: "Stroll",
  29249. height: math.unit(18.4, "km"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Showoff",
  29254. height: math.unit(175, "km")
  29255. },
  29256. ]
  29257. ))
  29258. characterMakers.push(() => makeCharacter(
  29259. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29260. {
  29261. front: {
  29262. height: math.unit(7, "feet"),
  29263. weight: math.unit(1000, "kg"),
  29264. name: "Front",
  29265. image: {
  29266. source: "./media/characters/edrax/front.svg",
  29267. extra: 2838 / 2550,
  29268. bottom: 130 / 2968
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Small",
  29275. height: math.unit(7, "feet")
  29276. },
  29277. {
  29278. name: "Normal",
  29279. height: math.unit(1500, "meters")
  29280. },
  29281. {
  29282. name: "Mega",
  29283. height: math.unit(12000000, "km"),
  29284. default: true
  29285. },
  29286. {
  29287. name: "Megamacro",
  29288. height: math.unit(10600000, "lightyears")
  29289. },
  29290. {
  29291. name: "Hypermacro",
  29292. height: math.unit(256, "yottameters")
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(10, "feet"),
  29301. weight: math.unit(750, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/clove/front.svg",
  29305. extra: 1918/1751,
  29306. bottom: 52/1970
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(10, "feet"),
  29311. weight: math.unit(750, "lb"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/clove/back.svg",
  29315. extra: 1912/1747,
  29316. bottom: 50/1962
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(10, "feet"),
  29324. default: true
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(4, "feet"),
  29333. weight: math.unit(50, "lb"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/alex-rabbit/front.svg",
  29337. extra: 507 / 458,
  29338. bottom: 18.5 / 527
  29339. }
  29340. },
  29341. back: {
  29342. height: math.unit(4, "feet"),
  29343. weight: math.unit(50, "lb"),
  29344. name: "Back",
  29345. image: {
  29346. source: "./media/characters/alex-rabbit/back.svg",
  29347. extra: 502 / 460,
  29348. bottom: 18.9 / 521
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(4, "feet"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(1 + 3 / 12, "feet"),
  29365. weight: math.unit(80, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/zander-rose/front.svg",
  29369. extra: 916 / 797,
  29370. bottom: 17 / 933
  29371. }
  29372. },
  29373. back: {
  29374. height: math.unit(1 + 3 / 12, "feet"),
  29375. weight: math.unit(80, "lb"),
  29376. name: "Back",
  29377. image: {
  29378. source: "./media/characters/zander-rose/back.svg",
  29379. extra: 903 / 779,
  29380. bottom: 31 / 934
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(1 + 3 / 12, "feet"),
  29388. default: true
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29394. {
  29395. anthro: {
  29396. height: math.unit(6, "feet"),
  29397. weight: math.unit(150, "lb"),
  29398. name: "Anthro",
  29399. image: {
  29400. source: "./media/characters/razz/anthro.svg",
  29401. extra: 1437 / 1343,
  29402. bottom: 48 / 1485
  29403. }
  29404. },
  29405. feral: {
  29406. height: math.unit(6, "feet"),
  29407. weight: math.unit(150, "lb"),
  29408. name: "Feral",
  29409. image: {
  29410. source: "./media/characters/razz/feral.svg",
  29411. extra: 2569 / 1385,
  29412. bottom: 95 / 2664
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Normal",
  29419. height: math.unit(6, "feet"),
  29420. default: true
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(9 + 4 / 12, "feet"),
  29429. weight: math.unit(500, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/morrigan/front.svg",
  29433. extra: 2707 / 2579,
  29434. bottom: 156 / 2863
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(9 + 4 / 12, "feet"),
  29442. default: true
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(5, "stories"),
  29451. weight: math.unit(4000, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/jenene/front.svg",
  29455. extra: 1780 / 1710,
  29456. bottom: 57 / 1837
  29457. }
  29458. },
  29459. },
  29460. [
  29461. {
  29462. name: "Normal",
  29463. height: math.unit(5, "stories"),
  29464. default: true
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29470. {
  29471. taurSfw: {
  29472. height: math.unit(10, "meters"),
  29473. weight: math.unit(17500, "kg"),
  29474. name: "Taur",
  29475. image: {
  29476. source: "./media/characters/faey/taur-sfw.svg",
  29477. extra: 1200 / 968,
  29478. bottom: 41 / 1241
  29479. }
  29480. },
  29481. chestmaw: {
  29482. height: math.unit(2.01, "meters"),
  29483. name: "Chestmaw",
  29484. image: {
  29485. source: "./media/characters/faey/chestmaw.svg"
  29486. }
  29487. },
  29488. foot: {
  29489. height: math.unit(2.43, "meters"),
  29490. name: "Foot",
  29491. image: {
  29492. source: "./media/characters/faey/foot.svg"
  29493. }
  29494. },
  29495. jaws: {
  29496. height: math.unit(1.66, "meters"),
  29497. name: "Jaws",
  29498. image: {
  29499. source: "./media/characters/faey/jaws.svg"
  29500. }
  29501. },
  29502. tongues: {
  29503. height: math.unit(2.01, "meters"),
  29504. name: "Tongues",
  29505. image: {
  29506. source: "./media/characters/faey/tongues.svg"
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Small",
  29513. height: math.unit(10, "meters"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Big",
  29518. height: math.unit(500000, "km")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(7, "feet"),
  29527. weight: math.unit(275, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/roku/front.svg",
  29531. extra: 903 / 878,
  29532. bottom: 37 / 940
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Normal",
  29539. height: math.unit(7, "feet"),
  29540. default: true
  29541. },
  29542. {
  29543. name: "Macro",
  29544. height: math.unit(500, "feet")
  29545. },
  29546. {
  29547. name: "Megamacro",
  29548. height: math.unit(200, "miles")
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(6 + 2 / 12, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/lira/front.svg",
  29561. extra: 1727 / 1605,
  29562. bottom: 26 / 1753
  29563. }
  29564. },
  29565. back: {
  29566. height: math.unit(6 + 2 / 12, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Back",
  29569. image: {
  29570. source: "./media/characters/lira/back.svg",
  29571. extra: 1713/1621,
  29572. bottom: 20/1733
  29573. }
  29574. },
  29575. hand: {
  29576. height: math.unit(0.75, "feet"),
  29577. name: "Hand",
  29578. image: {
  29579. source: "./media/characters/lira/hand.svg"
  29580. }
  29581. },
  29582. maw: {
  29583. height: math.unit(0.65, "feet"),
  29584. name: "Maw",
  29585. image: {
  29586. source: "./media/characters/lira/maw.svg"
  29587. }
  29588. },
  29589. pawDigi: {
  29590. height: math.unit(1.6, "feet"),
  29591. name: "Paw Digi",
  29592. image: {
  29593. source: "./media/characters/lira/paw-digi.svg"
  29594. }
  29595. },
  29596. pawPlanti: {
  29597. height: math.unit(1.4, "feet"),
  29598. name: "Paw Planti",
  29599. image: {
  29600. source: "./media/characters/lira/paw-planti.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(6 + 2 / 12, "feet"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Macro",
  29612. height: math.unit(100, "feet")
  29613. },
  29614. {
  29615. name: "Macro²",
  29616. height: math.unit(1600, "feet")
  29617. },
  29618. {
  29619. name: "Planetary",
  29620. height: math.unit(20, "earths")
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(150, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/hadjet/front.svg",
  29633. extra: 1480 / 1346,
  29634. bottom: 26 / 1506
  29635. }
  29636. },
  29637. frontNsfw: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(150, "lb"),
  29640. name: "Front (NSFW)",
  29641. image: {
  29642. source: "./media/characters/hadjet/front-nsfw.svg",
  29643. extra: 1440 / 1358,
  29644. bottom: 52 / 1492
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(10, "stories"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit(1.5, "miles")
  29657. },
  29658. {
  29659. name: "Megamacro+",
  29660. height: math.unit(5, "miles")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29666. {
  29667. side: {
  29668. height: math.unit(106, "feet"),
  29669. weight: math.unit(500, "tonnes"),
  29670. name: "Side",
  29671. image: {
  29672. source: "./media/characters/kodran/side.svg",
  29673. extra: 553 / 480,
  29674. bottom: 33 / 586
  29675. }
  29676. },
  29677. front: {
  29678. height: math.unit(132, "feet"),
  29679. weight: math.unit(500, "tonnes"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/kodran/front.svg",
  29683. extra: 667 / 643,
  29684. bottom: 42 / 709
  29685. }
  29686. },
  29687. flying: {
  29688. height: math.unit(350, "feet"),
  29689. weight: math.unit(500, "tonnes"),
  29690. name: "Flying",
  29691. image: {
  29692. source: "./media/characters/kodran/flying.svg"
  29693. }
  29694. },
  29695. foot: {
  29696. height: math.unit(33, "feet"),
  29697. name: "Foot",
  29698. image: {
  29699. source: "./media/characters/kodran/foot.svg"
  29700. }
  29701. },
  29702. footFront: {
  29703. height: math.unit(19, "feet"),
  29704. name: "Foot (Front)",
  29705. image: {
  29706. source: "./media/characters/kodran/foot-front.svg",
  29707. extra: 261 / 261,
  29708. bottom: 91 / 352
  29709. }
  29710. },
  29711. headFront: {
  29712. height: math.unit(53, "feet"),
  29713. name: "Head (Front)",
  29714. image: {
  29715. source: "./media/characters/kodran/head-front.svg"
  29716. }
  29717. },
  29718. headSide: {
  29719. height: math.unit(65, "feet"),
  29720. name: "Head (Side)",
  29721. image: {
  29722. source: "./media/characters/kodran/head-side.svg"
  29723. }
  29724. },
  29725. throat: {
  29726. height: math.unit(79, "feet"),
  29727. name: "Throat",
  29728. image: {
  29729. source: "./media/characters/kodran/throat.svg"
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Large",
  29736. height: math.unit(106, "feet"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29743. {
  29744. side: {
  29745. height: math.unit(11, "feet"),
  29746. weight: math.unit(150, "lb"),
  29747. name: "Side",
  29748. image: {
  29749. source: "./media/characters/pyxaron/side.svg",
  29750. extra: 305 / 195,
  29751. bottom: 17 / 322
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(11, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(6, "feet"),
  29768. weight: math.unit(150, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/meep/front.svg",
  29772. extra: 88 / 80,
  29773. bottom: 6 / 94
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Fun Sized",
  29780. height: math.unit(2, "inches"),
  29781. default: true
  29782. },
  29783. {
  29784. name: "Friend Sized",
  29785. height: math.unit(8, "inches")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(15, "feet"),
  29794. weight: math.unit(2500, "lb"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/holly-rabbit/front.svg",
  29798. extra: 1433 / 1233,
  29799. bottom: 125 / 1558
  29800. }
  29801. },
  29802. dick: {
  29803. height: math.unit(4.6, "feet"),
  29804. name: "Dick",
  29805. image: {
  29806. source: "./media/characters/holly-rabbit/dick.svg"
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(15, "feet"),
  29814. default: true
  29815. },
  29816. {
  29817. name: "Macro",
  29818. height: math.unit(250, "feet")
  29819. },
  29820. {
  29821. name: "Macro+",
  29822. height: math.unit(2500, "feet")
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(3.02, "meters"),
  29831. weight: math.unit(500, "kg"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/drena/front.svg",
  29835. extra: 282 / 243,
  29836. bottom: 8 / 290
  29837. }
  29838. },
  29839. side: {
  29840. height: math.unit(3.02, "meters"),
  29841. weight: math.unit(500, "kg"),
  29842. name: "Side",
  29843. image: {
  29844. source: "./media/characters/drena/side.svg",
  29845. extra: 280 / 245,
  29846. bottom: 10 / 290
  29847. }
  29848. },
  29849. back: {
  29850. height: math.unit(3.02, "meters"),
  29851. weight: math.unit(500, "kg"),
  29852. name: "Back",
  29853. image: {
  29854. source: "./media/characters/drena/back.svg",
  29855. extra: 278 / 243,
  29856. bottom: 2 / 280
  29857. }
  29858. },
  29859. foot: {
  29860. height: math.unit(0.75, "meters"),
  29861. name: "Foot",
  29862. image: {
  29863. source: "./media/characters/drena/foot.svg"
  29864. }
  29865. },
  29866. maw: {
  29867. height: math.unit(0.82, "meters"),
  29868. name: "Maw",
  29869. image: {
  29870. source: "./media/characters/drena/maw.svg"
  29871. }
  29872. },
  29873. eating: {
  29874. height: math.unit(0.75, "meters"),
  29875. name: "Eating",
  29876. image: {
  29877. source: "./media/characters/drena/eating.svg"
  29878. }
  29879. },
  29880. rump: {
  29881. height: math.unit(0.93, "meters"),
  29882. name: "Rump",
  29883. image: {
  29884. source: "./media/characters/drena/rump.svg"
  29885. }
  29886. },
  29887. },
  29888. [
  29889. {
  29890. name: "Normal",
  29891. height: math.unit(3.02, "meters"),
  29892. default: true
  29893. },
  29894. ]
  29895. ))
  29896. characterMakers.push(() => makeCharacter(
  29897. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29898. {
  29899. front: {
  29900. height: math.unit(6 + 4 / 12, "feet"),
  29901. weight: math.unit(250, "lb"),
  29902. name: "Front",
  29903. image: {
  29904. source: "./media/characters/remmyzilla/front.svg",
  29905. extra: 4033 / 3588,
  29906. bottom: 123 / 4156
  29907. }
  29908. },
  29909. back: {
  29910. height: math.unit(6 + 4 / 12, "feet"),
  29911. weight: math.unit(250, "lb"),
  29912. name: "Back",
  29913. image: {
  29914. source: "./media/characters/remmyzilla/back.svg",
  29915. extra: 2687 / 2555,
  29916. bottom: 48 / 2735
  29917. }
  29918. },
  29919. paw: {
  29920. height: math.unit(1.73, "feet"),
  29921. name: "Paw",
  29922. image: {
  29923. source: "./media/characters/remmyzilla/paw.svg"
  29924. },
  29925. extraAttributes: {
  29926. "toeSize": {
  29927. name: "Toe Size",
  29928. power: 2,
  29929. type: "area",
  29930. base: math.unit(0.0035, "m^2")
  29931. },
  29932. "padSize": {
  29933. name: "Pad Size",
  29934. power: 2,
  29935. type: "area",
  29936. base: math.unit(0.015, "m^2")
  29937. },
  29938. "pawsize": {
  29939. name: "Paw Size",
  29940. power: 2,
  29941. type: "area",
  29942. base: math.unit(0.072, "m^2")
  29943. },
  29944. }
  29945. },
  29946. maw: {
  29947. height: math.unit(1.73, "feet"),
  29948. name: "Maw",
  29949. image: {
  29950. source: "./media/characters/remmyzilla/maw.svg"
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Normal",
  29957. height: math.unit(6 + 4 / 12, "feet")
  29958. },
  29959. {
  29960. name: "Minimacro",
  29961. height: math.unit(12 + 8 / 12, "feet")
  29962. },
  29963. {
  29964. name: "Normal",
  29965. height: math.unit(640, "feet"),
  29966. default: true
  29967. },
  29968. {
  29969. name: "Megamacro",
  29970. height: math.unit(6400, "feet")
  29971. },
  29972. {
  29973. name: "Gigamacro",
  29974. height: math.unit(64000, "miles")
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(2.5, "meters"),
  29983. weight: math.unit(300, "lb"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/lawrence/front.svg",
  29987. extra: 357 / 335,
  29988. bottom: 30 / 387
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(2.5, "meters"),
  29993. weight: math.unit(300, "lb"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/lawrence/back.svg",
  29997. extra: 357 / 338,
  29998. bottom: 16 / 373
  29999. }
  30000. },
  30001. head: {
  30002. height: math.unit(0.9, "meter"),
  30003. name: "Head",
  30004. image: {
  30005. source: "./media/characters/lawrence/head.svg"
  30006. }
  30007. },
  30008. maw: {
  30009. height: math.unit(0.7, "meter"),
  30010. name: "Maw",
  30011. image: {
  30012. source: "./media/characters/lawrence/maw.svg"
  30013. }
  30014. },
  30015. footBottom: {
  30016. height: math.unit(0.5, "meter"),
  30017. name: "Foot (Bottom)",
  30018. image: {
  30019. source: "./media/characters/lawrence/foot-bottom.svg"
  30020. }
  30021. },
  30022. footTop: {
  30023. height: math.unit(0.5, "meter"),
  30024. name: "Foot (Top)",
  30025. image: {
  30026. source: "./media/characters/lawrence/foot-top.svg"
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(2.5, "meters"),
  30034. default: true
  30035. },
  30036. {
  30037. name: "Macro",
  30038. height: math.unit(95, "meters")
  30039. },
  30040. {
  30041. name: "Megamacro",
  30042. height: math.unit(150, "km")
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30048. {
  30049. front: {
  30050. height: math.unit(4.2, "meters"),
  30051. name: "Front",
  30052. image: {
  30053. source: "./media/characters/sydney/front.svg",
  30054. extra: 1323 / 1277,
  30055. bottom: 111 / 1434
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Normal",
  30062. height: math.unit(4.2, "meters"),
  30063. default: true
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30069. {
  30070. back: {
  30071. height: math.unit(201, "feet"),
  30072. name: "Back",
  30073. image: {
  30074. source: "./media/characters/jessica/back.svg",
  30075. extra: 273 / 259,
  30076. bottom: 7 / 280
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(201, "feet"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Megamacro",
  30088. height: math.unit(8, "miles")
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30094. {
  30095. side: {
  30096. height: math.unit(5.6, "m"),
  30097. weight: math.unit(8000, "kg"),
  30098. name: "Side",
  30099. image: {
  30100. source: "./media/characters/victoria/side.svg",
  30101. extra: 1542/1229,
  30102. bottom: 124/1666
  30103. }
  30104. },
  30105. maw: {
  30106. height: math.unit(7.14, "feet"),
  30107. name: "Maw",
  30108. image: {
  30109. source: "./media/characters/victoria/maw.svg"
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Normal",
  30116. height: math.unit(5.6, "m"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30123. {
  30124. front: {
  30125. height: math.unit(5 + 6 / 12, "feet"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/cat/front.svg",
  30129. extra: 1449/1295,
  30130. bottom: 34/1483
  30131. },
  30132. form: "cat",
  30133. default: true
  30134. },
  30135. back: {
  30136. height: math.unit(5 + 6 / 12, "feet"),
  30137. name: "Back",
  30138. image: {
  30139. source: "./media/characters/cat/back.svg",
  30140. extra: 1466/1301,
  30141. bottom: 19/1485
  30142. },
  30143. form: "cat"
  30144. },
  30145. taur: {
  30146. height: math.unit(7, "feet"),
  30147. name: "Taur",
  30148. image: {
  30149. source: "./media/characters/cat/taur.svg",
  30150. extra: 1389/1233,
  30151. bottom: 83/1472
  30152. },
  30153. form: "taur",
  30154. default: true
  30155. },
  30156. lucarioFront: {
  30157. height: math.unit(4, "feet"),
  30158. name: "Lucario (Front)",
  30159. image: {
  30160. source: "./media/characters/cat/lucario-front.svg",
  30161. extra: 1149/1019,
  30162. bottom: 84/1233
  30163. },
  30164. form: "lucario",
  30165. default: true
  30166. },
  30167. lucarioBack: {
  30168. height: math.unit(4, "feet"),
  30169. name: "Lucario (Back)",
  30170. image: {
  30171. source: "./media/characters/cat/lucario-back.svg",
  30172. extra: 1190/1059,
  30173. bottom: 33/1223
  30174. },
  30175. form: "lucario"
  30176. },
  30177. megaLucario: {
  30178. height: math.unit(4, "feet"),
  30179. name: "Mega Lucario",
  30180. image: {
  30181. source: "./media/characters/cat/mega-lucario.svg",
  30182. extra: 1515 / 1319,
  30183. bottom: 63 / 1578
  30184. },
  30185. form: "lucario"
  30186. },
  30187. nickit: {
  30188. height: math.unit(2, "feet"),
  30189. name: "Nickit",
  30190. image: {
  30191. source: "./media/characters/cat/nickit.svg",
  30192. extra: 1980 / 1585,
  30193. bottom: 102 / 2082
  30194. },
  30195. form: "nickit",
  30196. default: true
  30197. },
  30198. lopunnyFront: {
  30199. height: math.unit(5, "feet"),
  30200. name: "Lopunny (Front)",
  30201. image: {
  30202. source: "./media/characters/cat/lopunny-front.svg",
  30203. extra: 1782 / 1469,
  30204. bottom: 38 / 1820
  30205. },
  30206. form: "lopunny",
  30207. default: true
  30208. },
  30209. lopunnyBack: {
  30210. height: math.unit(5, "feet"),
  30211. name: "Lopunny (Back)",
  30212. image: {
  30213. source: "./media/characters/cat/lopunny-back.svg",
  30214. extra: 1660 / 1490,
  30215. bottom: 25 / 1685
  30216. },
  30217. form: "lopunny"
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Really small",
  30223. height: math.unit(1, "nm")
  30224. },
  30225. {
  30226. name: "Micro",
  30227. height: math.unit(5, "inches")
  30228. },
  30229. {
  30230. name: "Normal",
  30231. height: math.unit(5 + 6 / 12, "feet"),
  30232. default: true
  30233. },
  30234. {
  30235. name: "Macro",
  30236. height: math.unit(50, "feet")
  30237. },
  30238. {
  30239. name: "Macro+",
  30240. height: math.unit(150, "feet")
  30241. },
  30242. {
  30243. name: "Megamacro",
  30244. height: math.unit(100, "miles")
  30245. },
  30246. ]
  30247. ))
  30248. characterMakers.push(() => makeCharacter(
  30249. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30250. {
  30251. front: {
  30252. height: math.unit(63.4, "meters"),
  30253. weight: math.unit(3.28349e+6, "kilograms"),
  30254. name: "Front",
  30255. image: {
  30256. source: "./media/characters/kirina-violet/front.svg",
  30257. extra: 2812 / 2725,
  30258. bottom: 0 / 2812
  30259. }
  30260. },
  30261. back: {
  30262. height: math.unit(63.4, "meters"),
  30263. weight: math.unit(3.28349e+6, "kilograms"),
  30264. name: "Back",
  30265. image: {
  30266. source: "./media/characters/kirina-violet/back.svg",
  30267. extra: 2812 / 2725,
  30268. bottom: 0 / 2812
  30269. }
  30270. },
  30271. mouth: {
  30272. height: math.unit(4.35, "meters"),
  30273. name: "Mouth",
  30274. image: {
  30275. source: "./media/characters/kirina-violet/mouth.svg"
  30276. }
  30277. },
  30278. paw: {
  30279. height: math.unit(5.6, "meters"),
  30280. name: "Paw",
  30281. image: {
  30282. source: "./media/characters/kirina-violet/paw.svg"
  30283. }
  30284. },
  30285. tail: {
  30286. height: math.unit(18, "meters"),
  30287. name: "Tail",
  30288. image: {
  30289. source: "./media/characters/kirina-violet/tail.svg"
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(63.4, "meters"),
  30297. default: true
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(75, "feet"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/cat-gigachu/front.svg",
  30309. extra: 1239/1027,
  30310. bottom: 32/1271
  30311. }
  30312. },
  30313. back: {
  30314. height: math.unit(75, "feet"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/cat-gigachu/back.svg",
  30318. extra: 1229/1030,
  30319. bottom: 9/1238
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Dynamax",
  30326. height: math.unit(75, "feet"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/sfaiyan/front.svg",
  30340. extra: 999 / 978,
  30341. bottom: 5 / 1004
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Normal",
  30348. height: math.unit(1.82, "meters")
  30349. },
  30350. {
  30351. name: "Giant",
  30352. height: math.unit(2.27, "km"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(179, "cm"),
  30362. weight: math.unit(100, "kg"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/raunehkeli/front.svg",
  30366. extra: 1934 / 1926,
  30367. bottom: 0 / 1934
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(179, "cm")
  30375. },
  30376. {
  30377. name: "Maximum",
  30378. height: math.unit(575, "meters"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(6, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30392. extra: 2625 / 2518,
  30393. bottom: 60 / 2685
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(6 + 2 / 12, "feet")
  30401. },
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(1180, "feet"),
  30405. default: true
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30411. {
  30412. front: {
  30413. height: math.unit(5 + 6 / 12, "feet"),
  30414. weight: math.unit(108, "lb"),
  30415. name: "Front",
  30416. image: {
  30417. source: "./media/characters/lilith-zott/front.svg",
  30418. extra: 2510 / 2238,
  30419. bottom: 100 / 2610
  30420. }
  30421. },
  30422. frontDressed: {
  30423. height: math.unit(5 + 6 / 12, "feet"),
  30424. weight: math.unit(108, "lb"),
  30425. name: "Front (Dressed)",
  30426. image: {
  30427. source: "./media/characters/lilith-zott/front-dressed.svg",
  30428. extra: 2510 / 2238,
  30429. bottom: 100 / 2610
  30430. }
  30431. },
  30432. },
  30433. [
  30434. {
  30435. name: "Normal",
  30436. height: math.unit(5 + 6 / 12, "feet")
  30437. },
  30438. {
  30439. name: "Macro",
  30440. height: math.unit(1030, "feet"),
  30441. default: true
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(6, "feet"),
  30450. weight: math.unit(150, "lb"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30454. extra: 2567 / 2435,
  30455. bottom: 39 / 2606
  30456. }
  30457. },
  30458. frontSuper: {
  30459. height: math.unit(6, "feet"),
  30460. name: "Front (Super)",
  30461. image: {
  30462. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30463. extra: 2567 / 2435,
  30464. bottom: 39 / 2606
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Normal",
  30471. height: math.unit(5 + 10 / 12, "feet")
  30472. },
  30473. {
  30474. name: "Macro",
  30475. height: math.unit(1100, "feet"),
  30476. default: true
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(100, "miles"),
  30485. name: "Front",
  30486. image: {
  30487. source: "./media/characters/sona/front.svg",
  30488. extra: 2433 / 2201,
  30489. bottom: 53 / 2486
  30490. }
  30491. },
  30492. foot: {
  30493. height: math.unit(16.1, "miles"),
  30494. name: "Foot",
  30495. image: {
  30496. source: "./media/characters/sona/foot.svg"
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Macro",
  30503. height: math.unit(100, "miles"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(6, "feet"),
  30513. weight: math.unit(150, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/bailey/front.svg",
  30517. extra: 1778 / 1724,
  30518. bottom: 30 / 1808
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Micro",
  30525. height: math.unit(4, "inches")
  30526. },
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(5 + 5 / 12, "feet"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Macro",
  30534. height: math.unit(250, "feet")
  30535. },
  30536. {
  30537. name: "Megamacro",
  30538. height: math.unit(100, "miles")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(5 + 2 / 12, "feet"),
  30547. weight: math.unit(120, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/snaps/front.svg",
  30551. extra: 2370 / 2177,
  30552. bottom: 48 / 2418
  30553. }
  30554. },
  30555. back: {
  30556. height: math.unit(5 + 2 / 12, "feet"),
  30557. weight: math.unit(120, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/snaps/back.svg",
  30561. extra: 2408 / 2258,
  30562. bottom: 15 / 2423
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Micro",
  30569. height: math.unit(9, "inches")
  30570. },
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(5 + 2 / 12, "feet"),
  30574. default: true
  30575. },
  30576. {
  30577. name: "Mini Macro",
  30578. height: math.unit(10, "feet")
  30579. },
  30580. ]
  30581. ))
  30582. characterMakers.push(() => makeCharacter(
  30583. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30584. {
  30585. front: {
  30586. height: math.unit(1.8, "meters"),
  30587. weight: math.unit(85, "kg"),
  30588. name: "Front",
  30589. image: {
  30590. source: "./media/characters/azteck/front.svg",
  30591. extra: 2815 / 2625,
  30592. bottom: 89 / 2904
  30593. }
  30594. },
  30595. back: {
  30596. height: math.unit(1.8, "meters"),
  30597. weight: math.unit(85, "kg"),
  30598. name: "Back",
  30599. image: {
  30600. source: "./media/characters/azteck/back.svg",
  30601. extra: 2856 / 2648,
  30602. bottom: 85 / 2941
  30603. }
  30604. },
  30605. frontDressed: {
  30606. height: math.unit(1.8, "meters"),
  30607. weight: math.unit(85, "kg"),
  30608. name: "Front (Dressed)",
  30609. image: {
  30610. source: "./media/characters/azteck/front-dressed.svg",
  30611. extra: 2147 / 2003,
  30612. bottom: 68 / 2215
  30613. }
  30614. },
  30615. head: {
  30616. height: math.unit(0.47, "meters"),
  30617. weight: math.unit(85, "kg"),
  30618. name: "Head",
  30619. image: {
  30620. source: "./media/characters/azteck/head.svg"
  30621. }
  30622. },
  30623. },
  30624. [
  30625. {
  30626. name: "Bite sized",
  30627. height: math.unit(16, "cm")
  30628. },
  30629. {
  30630. name: "Normal",
  30631. height: math.unit(1.8, "meters"),
  30632. default: true
  30633. },
  30634. ]
  30635. ))
  30636. characterMakers.push(() => makeCharacter(
  30637. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30638. {
  30639. front: {
  30640. height: math.unit(6, "feet"),
  30641. weight: math.unit(150, "lb"),
  30642. name: "Front",
  30643. image: {
  30644. source: "./media/characters/pidge/front.svg",
  30645. extra: 1936/1820,
  30646. bottom: 0/1936
  30647. }
  30648. },
  30649. back: {
  30650. height: math.unit(6, "feet"),
  30651. weight: math.unit(150, "lb"),
  30652. name: "Back",
  30653. image: {
  30654. source: "./media/characters/pidge/back.svg",
  30655. extra: 1938/1843,
  30656. bottom: 0/1938
  30657. }
  30658. },
  30659. casual: {
  30660. height: math.unit(6, "feet"),
  30661. weight: math.unit(150, "lb"),
  30662. name: "Casual",
  30663. image: {
  30664. source: "./media/characters/pidge/casual.svg",
  30665. extra: 1936/1820,
  30666. bottom: 0/1936
  30667. }
  30668. },
  30669. tech: {
  30670. height: math.unit(6, "feet"),
  30671. weight: math.unit(150, "lb"),
  30672. name: "Tech",
  30673. image: {
  30674. source: "./media/characters/pidge/tech.svg",
  30675. extra: 1802/1682,
  30676. bottom: 0/1802
  30677. }
  30678. },
  30679. head: {
  30680. height: math.unit(1.61, "feet"),
  30681. name: "Head",
  30682. image: {
  30683. source: "./media/characters/pidge/head.svg"
  30684. }
  30685. },
  30686. collar: {
  30687. height: math.unit(0.82, "feet"),
  30688. name: "Collar",
  30689. image: {
  30690. source: "./media/characters/pidge/collar.svg"
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Macro",
  30697. height: math.unit(2, "mile"),
  30698. default: true
  30699. },
  30700. {
  30701. name: "PUPPY",
  30702. height: math.unit(20, "miles")
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30708. {
  30709. front: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/en/front.svg",
  30715. extra: 1697 / 1563,
  30716. bottom: 103 / 1800
  30717. }
  30718. },
  30719. back: {
  30720. height: math.unit(6, "feet"),
  30721. weight: math.unit(150, "lb"),
  30722. name: "Back",
  30723. image: {
  30724. source: "./media/characters/en/back.svg",
  30725. extra: 1700 / 1570,
  30726. bottom: 51 / 1751
  30727. }
  30728. },
  30729. frontDressed: {
  30730. height: math.unit(6, "feet"),
  30731. weight: math.unit(150, "lb"),
  30732. name: "Front (Dressed)",
  30733. image: {
  30734. source: "./media/characters/en/front-dressed.svg",
  30735. extra: 1697 / 1563,
  30736. bottom: 103 / 1800
  30737. }
  30738. },
  30739. backDressed: {
  30740. height: math.unit(6, "feet"),
  30741. weight: math.unit(150, "lb"),
  30742. name: "Back (Dressed)",
  30743. image: {
  30744. source: "./media/characters/en/back-dressed.svg",
  30745. extra: 1700 / 1570,
  30746. bottom: 51 / 1751
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(210, "feet"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(150, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/haze-orris/front.svg",
  30767. extra: 3975 / 3525,
  30768. bottom: 137 / 4112
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Micro",
  30775. height: math.unit(150, "mm"),
  30776. default: true
  30777. },
  30778. ]
  30779. ))
  30780. characterMakers.push(() => makeCharacter(
  30781. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30782. {
  30783. front: {
  30784. height: math.unit(6, "feet"),
  30785. weight: math.unit(150, "lb"),
  30786. name: "Front",
  30787. image: {
  30788. source: "./media/characters/casselene-yaro/front.svg",
  30789. extra: 4721 / 4541,
  30790. bottom: 82 / 4803
  30791. }
  30792. },
  30793. back: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(150, "lb"),
  30796. name: "Back",
  30797. image: {
  30798. source: "./media/characters/casselene-yaro/back.svg",
  30799. extra: 4569 / 4377,
  30800. bottom: 69 / 4638
  30801. }
  30802. },
  30803. dressed: {
  30804. height: math.unit(6, "feet"),
  30805. weight: math.unit(150, "lb"),
  30806. name: "Dressed",
  30807. image: {
  30808. source: "./media/characters/casselene-yaro/dressed.svg",
  30809. extra: 4721 / 4541,
  30810. bottom: 82 / 4803
  30811. }
  30812. },
  30813. maw: {
  30814. height: math.unit(1, "feet"),
  30815. name: "Maw",
  30816. image: {
  30817. source: "./media/characters/casselene-yaro/maw.svg"
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Macro",
  30824. height: math.unit(190, "feet"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(10, "feet"),
  30834. weight: math.unit(15015, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/platine/front.svg",
  30838. extra: 1428/1353,
  30839. bottom: 31/1459
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(10, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Macro",
  30851. height: math.unit(100, "feet")
  30852. },
  30853. {
  30854. name: "Megamacro",
  30855. height: math.unit(1000, "feet")
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(15 + 5 / 12, "feet"),
  30864. weight: math.unit(4600, "lb"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/neapolitan-ananassa/front.svg",
  30868. extra: 2903 / 2736,
  30869. bottom: 0 / 2903
  30870. }
  30871. },
  30872. side: {
  30873. height: math.unit(15 + 5 / 12, "feet"),
  30874. weight: math.unit(4600, "lb"),
  30875. name: "Side",
  30876. image: {
  30877. source: "./media/characters/neapolitan-ananassa/side.svg",
  30878. extra: 2925 / 2719,
  30879. bottom: 0 / 2925
  30880. }
  30881. },
  30882. back: {
  30883. height: math.unit(15 + 5 / 12, "feet"),
  30884. weight: math.unit(4600, "lb"),
  30885. name: "Back",
  30886. image: {
  30887. source: "./media/characters/neapolitan-ananassa/back.svg",
  30888. extra: 2903 / 2736,
  30889. bottom: 0 / 2903
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(15 + 5 / 12, "feet"),
  30897. default: true
  30898. },
  30899. {
  30900. name: "Post-Millenium",
  30901. height: math.unit(35 + 5 / 12, "feet")
  30902. },
  30903. {
  30904. name: "Post-Era",
  30905. height: math.unit(450 + 5 / 12, "feet")
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(300, "meters"),
  30914. weight: math.unit(125000, "tonnes"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/pazuzu/front.svg",
  30918. extra: 877 / 794,
  30919. bottom: 47 / 924
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Macro",
  30926. height: math.unit(300, "meters"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30933. {
  30934. side: {
  30935. height: math.unit(10 + 7 / 12, "feet"),
  30936. weight: math.unit(2.5, "tons"),
  30937. name: "Side",
  30938. image: {
  30939. source: "./media/characters/aasha/side.svg",
  30940. extra: 1345 / 1245,
  30941. bottom: 111 / 1456
  30942. }
  30943. },
  30944. back: {
  30945. height: math.unit(10 + 7 / 12, "feet"),
  30946. weight: math.unit(2.5, "tons"),
  30947. name: "Back",
  30948. image: {
  30949. source: "./media/characters/aasha/back.svg",
  30950. extra: 1133 / 1057,
  30951. bottom: 257 / 1390
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(10 + 7 / 12, "feet"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(6 + 3 / 12, "feet"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/nevan/front.svg",
  30971. extra: 704 / 704,
  30972. bottom: 28 / 732
  30973. }
  30974. },
  30975. back: {
  30976. height: math.unit(6 + 3 / 12, "feet"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/nevan/back.svg",
  30980. extra: 714 / 714,
  30981. bottom: 21 / 735
  30982. }
  30983. },
  30984. frontFlaccid: {
  30985. height: math.unit(6 + 3 / 12, "feet"),
  30986. name: "Front (Flaccid)",
  30987. image: {
  30988. source: "./media/characters/nevan/front-flaccid.svg",
  30989. extra: 704 / 704,
  30990. bottom: 28 / 732
  30991. }
  30992. },
  30993. frontErect: {
  30994. height: math.unit(6 + 3 / 12, "feet"),
  30995. name: "Front (Erect)",
  30996. image: {
  30997. source: "./media/characters/nevan/front-erect.svg",
  30998. extra: 704 / 704,
  30999. bottom: 28 / 732
  31000. }
  31001. },
  31002. backFlaccid: {
  31003. height: math.unit(6 + 3 / 12, "feet"),
  31004. name: "Back (Flaccid)",
  31005. image: {
  31006. source: "./media/characters/nevan/back-flaccid.svg",
  31007. extra: 714 / 714,
  31008. bottom: 21 / 735
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(6 + 3 / 12, "feet"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31022. {
  31023. front: {
  31024. height: math.unit(4, "feet"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/arhan/front.svg",
  31028. extra: 3368 / 3133,
  31029. bottom: 0 / 3368
  31030. }
  31031. },
  31032. side: {
  31033. height: math.unit(4, "feet"),
  31034. name: "Side",
  31035. image: {
  31036. source: "./media/characters/arhan/side.svg",
  31037. extra: 3347 / 3105,
  31038. bottom: 0 / 3347
  31039. }
  31040. },
  31041. tongue: {
  31042. height: math.unit(1.42, "feet"),
  31043. name: "Tongue",
  31044. image: {
  31045. source: "./media/characters/arhan/tongue.svg"
  31046. }
  31047. },
  31048. head: {
  31049. height: math.unit(0.85, "feet"),
  31050. name: "Head",
  31051. image: {
  31052. source: "./media/characters/arhan/head.svg"
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(4, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(5 + 7.5 / 12, "feet"),
  31069. weight: math.unit(120, "lb"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/digi-duncan/front.svg",
  31073. extra: 330 / 326,
  31074. bottom: 16 / 346
  31075. }
  31076. },
  31077. side: {
  31078. height: math.unit(5 + 7.5 / 12, "feet"),
  31079. weight: math.unit(120, "lb"),
  31080. name: "Side",
  31081. image: {
  31082. source: "./media/characters/digi-duncan/side.svg",
  31083. extra: 341 / 337,
  31084. bottom: 1 / 342
  31085. }
  31086. },
  31087. back: {
  31088. height: math.unit(5 + 7.5 / 12, "feet"),
  31089. weight: math.unit(120, "lb"),
  31090. name: "Back",
  31091. image: {
  31092. source: "./media/characters/digi-duncan/back.svg",
  31093. extra: 330 / 326,
  31094. bottom: 12 / 342
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Speck",
  31101. height: math.unit(0.25, "mm")
  31102. },
  31103. {
  31104. name: "Micro",
  31105. height: math.unit(5, "mm")
  31106. },
  31107. {
  31108. name: "Tiny",
  31109. height: math.unit(0.5, "inches"),
  31110. default: true
  31111. },
  31112. {
  31113. name: "Human",
  31114. height: math.unit(5 + 7.5 / 12, "feet")
  31115. },
  31116. {
  31117. name: "Minigiant",
  31118. height: math.unit(8 + 5.25, "feet")
  31119. },
  31120. {
  31121. name: "Giant",
  31122. height: math.unit(2000, "feet")
  31123. },
  31124. {
  31125. name: "Mega",
  31126. height: math.unit(371.1, "miles")
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(2, "meters"),
  31135. weight: math.unit(350, "kg"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31139. extra: 898 / 838,
  31140. bottom: 9 / 907
  31141. }
  31142. },
  31143. },
  31144. [
  31145. {
  31146. name: "Micro",
  31147. height: math.unit(8, "meters")
  31148. },
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(50, "meters"),
  31152. default: true
  31153. },
  31154. {
  31155. name: "Macro",
  31156. height: math.unit(500, "meters")
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31162. {
  31163. front: {
  31164. height: math.unit(6 + 6 / 12, "feet"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/khardesh/front.svg",
  31168. extra: 1788/1596,
  31169. bottom: 66/1854
  31170. }
  31171. },
  31172. back: {
  31173. height: math.unit(6 + 6 / 12, "feet"),
  31174. name: "Back",
  31175. image: {
  31176. source: "./media/characters/khardesh/back.svg",
  31177. extra: 1781/1584,
  31178. bottom: 68/1849
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(6 + 6 / 12, "feet"),
  31186. default: true
  31187. },
  31188. {
  31189. name: "Normal+",
  31190. height: math.unit(4, "meters")
  31191. },
  31192. {
  31193. name: "Macro",
  31194. height: math.unit(50, "meters")
  31195. },
  31196. {
  31197. name: "Macro+",
  31198. height: math.unit(100, "meters")
  31199. },
  31200. {
  31201. name: "Megamacro",
  31202. height: math.unit(20, "km")
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31208. {
  31209. front: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(150, "lb"),
  31212. name: "Front",
  31213. image: {
  31214. source: "./media/characters/kosho/front.svg",
  31215. extra: 1847 / 1847,
  31216. bottom: 86 / 1933
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Second-stage micro",
  31223. height: math.unit(0.5, "inches")
  31224. },
  31225. {
  31226. name: "First-stage micro",
  31227. height: math.unit(6, "inches")
  31228. },
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(6, "feet"),
  31232. default: true
  31233. },
  31234. {
  31235. name: "First-stage macro",
  31236. height: math.unit(72, "feet")
  31237. },
  31238. {
  31239. name: "Second-stage macro",
  31240. height: math.unit(864, "feet")
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31246. {
  31247. normal: {
  31248. height: math.unit(4 + 6 / 12, "feet"),
  31249. name: "Normal",
  31250. image: {
  31251. source: "./media/characters/hydra/normal.svg",
  31252. extra: 2833 / 2634,
  31253. bottom: 68 / 2901
  31254. }
  31255. },
  31256. smol: {
  31257. height: math.unit(0.705, "inches"),
  31258. name: "Smol",
  31259. image: {
  31260. source: "./media/characters/hydra/smol.svg",
  31261. extra: 2715 / 2540,
  31262. bottom: 0 / 2715
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(4 + 6 / 12, "feet"),
  31270. default: true
  31271. }
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(0.6, "cm"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/daz/front.svg",
  31282. extra: 1682 / 1164,
  31283. bottom: 42 / 1724
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Normal",
  31290. height: math.unit(0.6, "cm"),
  31291. default: true
  31292. },
  31293. ]
  31294. ))
  31295. characterMakers.push(() => makeCharacter(
  31296. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31297. {
  31298. front: {
  31299. height: math.unit(6, "feet"),
  31300. weight: math.unit(235, "lb"),
  31301. name: "Front",
  31302. image: {
  31303. source: "./media/characters/theo-pangolin/front.svg",
  31304. extra: 1996 / 1969,
  31305. bottom: 115 / 2111
  31306. }
  31307. },
  31308. back: {
  31309. height: math.unit(6, "feet"),
  31310. weight: math.unit(235, "lb"),
  31311. name: "Back",
  31312. image: {
  31313. source: "./media/characters/theo-pangolin/back.svg",
  31314. extra: 1979 / 1979,
  31315. bottom: 40 / 2019
  31316. }
  31317. },
  31318. feral: {
  31319. height: math.unit(2, "feet"),
  31320. weight: math.unit(30, "lb"),
  31321. name: "Feral",
  31322. image: {
  31323. source: "./media/characters/theo-pangolin/feral.svg",
  31324. extra: 803 / 791,
  31325. bottom: 181 / 984
  31326. }
  31327. },
  31328. footFive: {
  31329. height: math.unit(1.43, "feet"),
  31330. name: "Foot (Five Toes)",
  31331. image: {
  31332. source: "./media/characters/theo-pangolin/foot-five.svg"
  31333. }
  31334. },
  31335. footFour: {
  31336. height: math.unit(1.43, "feet"),
  31337. name: "Foot (Four Toes)",
  31338. image: {
  31339. source: "./media/characters/theo-pangolin/foot-four.svg"
  31340. }
  31341. },
  31342. handFour: {
  31343. height: math.unit(0.81, "feet"),
  31344. name: "Hand (Four Fingers)",
  31345. image: {
  31346. source: "./media/characters/theo-pangolin/hand-four.svg"
  31347. }
  31348. },
  31349. handThree: {
  31350. height: math.unit(0.81, "feet"),
  31351. name: "Hand (Three Fingers)",
  31352. image: {
  31353. source: "./media/characters/theo-pangolin/hand-three.svg"
  31354. }
  31355. },
  31356. headFront: {
  31357. height: math.unit(1.37, "feet"),
  31358. name: "Head (Front)",
  31359. image: {
  31360. source: "./media/characters/theo-pangolin/head-front.svg"
  31361. }
  31362. },
  31363. headSide: {
  31364. height: math.unit(1.43, "feet"),
  31365. name: "Head (Side)",
  31366. image: {
  31367. source: "./media/characters/theo-pangolin/head-side.svg"
  31368. }
  31369. },
  31370. tongue: {
  31371. height: math.unit(2.29, "feet"),
  31372. name: "Tongue",
  31373. image: {
  31374. source: "./media/characters/theo-pangolin/tongue.svg"
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(6, "feet")
  31382. },
  31383. {
  31384. name: "Macro",
  31385. height: math.unit(400, "feet"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(6, "inches"),
  31395. weight: math.unit(0.036, "kg"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/renée/front.svg",
  31399. extra: 900 / 886,
  31400. bottom: 8 / 908
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Nano",
  31407. height: math.unit(1, "nm")
  31408. },
  31409. {
  31410. name: "Micro",
  31411. height: math.unit(1, "mm")
  31412. },
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(6, "inches")
  31416. },
  31417. {
  31418. name: "Macro",
  31419. height: math.unit(2000, "feet"),
  31420. default: true
  31421. },
  31422. {
  31423. name: "Megamacro",
  31424. height: math.unit(2, "km")
  31425. },
  31426. {
  31427. name: "Gigamacro",
  31428. height: math.unit(2000, "km")
  31429. },
  31430. {
  31431. name: "Teramacro",
  31432. height: math.unit(250000, "km")
  31433. },
  31434. ]
  31435. ))
  31436. characterMakers.push(() => makeCharacter(
  31437. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31438. {
  31439. front: {
  31440. height: math.unit(4, "meters"),
  31441. weight: math.unit(150, "kg"),
  31442. name: "Front",
  31443. image: {
  31444. source: "./media/characters/caledvwlch/front.svg",
  31445. extra: 1760 / 1551,
  31446. bottom: 28 / 1788
  31447. }
  31448. },
  31449. side: {
  31450. height: math.unit(4, "meters"),
  31451. weight: math.unit(150, "kg"),
  31452. name: "Side",
  31453. image: {
  31454. source: "./media/characters/caledvwlch/side.svg",
  31455. extra: 1605 / 1536,
  31456. bottom: 31 / 1636
  31457. }
  31458. },
  31459. back: {
  31460. height: math.unit(4, "meters"),
  31461. weight: math.unit(150, "kg"),
  31462. name: "Back",
  31463. image: {
  31464. source: "./media/characters/caledvwlch/back.svg",
  31465. extra: 1635 / 1565,
  31466. bottom: 27 / 1662
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "\"Incognito\"",
  31473. height: math.unit(4, "meters")
  31474. },
  31475. {
  31476. name: "Small rampage",
  31477. height: math.unit(600, "meters")
  31478. },
  31479. {
  31480. name: "Mega",
  31481. height: math.unit(30, "km")
  31482. },
  31483. {
  31484. name: "Home-size",
  31485. height: math.unit(50, "km"),
  31486. default: true
  31487. },
  31488. {
  31489. name: "Giga",
  31490. height: math.unit(300, "km")
  31491. },
  31492. {
  31493. name: "Lounging",
  31494. height: math.unit(11000, "km")
  31495. },
  31496. {
  31497. name: "Planet snacking",
  31498. height: math.unit(2000000, "km")
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(6, "feet"),
  31507. weight: math.unit(215, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/sapphire-svell/front.svg",
  31511. extra: 495 / 455,
  31512. bottom: 20 / 515
  31513. }
  31514. },
  31515. back: {
  31516. height: math.unit(6, "feet"),
  31517. weight: math.unit(216, "lb"),
  31518. name: "Back",
  31519. image: {
  31520. source: "./media/characters/sapphire-svell/back.svg",
  31521. extra: 497 / 477,
  31522. bottom: 7 / 504
  31523. }
  31524. },
  31525. maw: {
  31526. height: math.unit(1.57, "feet"),
  31527. name: "Maw",
  31528. image: {
  31529. source: "./media/characters/sapphire-svell/maw.svg"
  31530. }
  31531. },
  31532. foot: {
  31533. height: math.unit(1.07, "feet"),
  31534. name: "Foot",
  31535. image: {
  31536. source: "./media/characters/sapphire-svell/foot.svg"
  31537. }
  31538. },
  31539. toering: {
  31540. height: math.unit(1.7, "inch"),
  31541. name: "Toering",
  31542. image: {
  31543. source: "./media/characters/sapphire-svell/toering.svg"
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(300, "feet"),
  31551. default: true
  31552. },
  31553. {
  31554. name: "Augmented",
  31555. height: math.unit(1250, "feet")
  31556. },
  31557. {
  31558. name: "Unleashed",
  31559. height: math.unit(3000, "feet")
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31565. {
  31566. side: {
  31567. height: math.unit(2 + 3 / 12, "feet"),
  31568. weight: math.unit(110, "lb"),
  31569. name: "Side",
  31570. image: {
  31571. source: "./media/characters/glitch-flux/side.svg",
  31572. extra: 997 / 805,
  31573. bottom: 20 / 1017
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(2 + 3 / 12, "feet"),
  31581. default: true
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31587. {
  31588. front: {
  31589. height: math.unit(4, "meters"),
  31590. name: "Front",
  31591. image: {
  31592. source: "./media/characters/mid/front.svg",
  31593. extra: 507 / 476,
  31594. bottom: 17 / 524
  31595. }
  31596. },
  31597. back: {
  31598. height: math.unit(4, "meters"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/mid/back.svg",
  31602. extra: 519 / 487,
  31603. bottom: 7 / 526
  31604. }
  31605. },
  31606. stuck: {
  31607. height: math.unit(2.2, "meters"),
  31608. name: "Stuck",
  31609. image: {
  31610. source: "./media/characters/mid/stuck.svg",
  31611. extra: 1951 / 1869,
  31612. bottom: 88 / 2039
  31613. }
  31614. }
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(4, "meters"),
  31620. default: true
  31621. },
  31622. {
  31623. name: "Big",
  31624. height: math.unit(10, "meters")
  31625. },
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(800, "meters")
  31629. },
  31630. {
  31631. name: "Megamacro",
  31632. height: math.unit(100, "km")
  31633. },
  31634. {
  31635. name: "Overgrown",
  31636. height: math.unit(1, "parsec")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(2.5, "meters"),
  31645. weight: math.unit(225, "kg"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/iris/front.svg",
  31649. extra: 3348 / 3251,
  31650. bottom: 205 / 3553
  31651. }
  31652. },
  31653. maw: {
  31654. height: math.unit(0.56, "meter"),
  31655. name: "Maw",
  31656. image: {
  31657. source: "./media/characters/iris/maw.svg"
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Mewter cat",
  31664. height: math.unit(1.2, "meters")
  31665. },
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(2.5, "meters"),
  31669. default: true
  31670. },
  31671. {
  31672. name: "Minimacro",
  31673. height: math.unit(18, "feet")
  31674. },
  31675. {
  31676. name: "Macro",
  31677. height: math.unit(140, "feet")
  31678. },
  31679. {
  31680. name: "Macro+",
  31681. height: math.unit(180, "meters")
  31682. },
  31683. {
  31684. name: "Megamacro",
  31685. height: math.unit(2746, "meters")
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31691. {
  31692. front: {
  31693. height: math.unit(6, "feet"),
  31694. weight: math.unit(135, "lb"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/axel/front.svg",
  31698. extra: 908 / 908,
  31699. bottom: 58 / 966
  31700. }
  31701. },
  31702. side: {
  31703. height: math.unit(6, "feet"),
  31704. weight: math.unit(135, "lb"),
  31705. name: "Side",
  31706. image: {
  31707. source: "./media/characters/axel/side.svg",
  31708. extra: 958 / 958,
  31709. bottom: 11 / 969
  31710. }
  31711. },
  31712. back: {
  31713. height: math.unit(6, "feet"),
  31714. weight: math.unit(135, "lb"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/axel/back.svg",
  31718. extra: 887 / 887,
  31719. bottom: 34 / 921
  31720. }
  31721. },
  31722. head: {
  31723. height: math.unit(1.07, "feet"),
  31724. name: "Head",
  31725. image: {
  31726. source: "./media/characters/axel/head.svg"
  31727. }
  31728. },
  31729. beak: {
  31730. height: math.unit(1.4, "feet"),
  31731. name: "Beak",
  31732. image: {
  31733. source: "./media/characters/axel/beak.svg"
  31734. }
  31735. },
  31736. beakSide: {
  31737. height: math.unit(1.4, "feet"),
  31738. name: "Beak Side",
  31739. image: {
  31740. source: "./media/characters/axel/beak-side.svg"
  31741. }
  31742. },
  31743. sheath: {
  31744. height: math.unit(0.5, "feet"),
  31745. name: "Sheath",
  31746. image: {
  31747. source: "./media/characters/axel/sheath.svg"
  31748. }
  31749. },
  31750. dick: {
  31751. height: math.unit(0.98, "feet"),
  31752. name: "Dick",
  31753. image: {
  31754. source: "./media/characters/axel/dick.svg"
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Macro",
  31761. height: math.unit(68, "meters"),
  31762. default: true
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31768. {
  31769. front: {
  31770. height: math.unit(3.5, "meters"),
  31771. weight: math.unit(1200, "kg"),
  31772. name: "Front",
  31773. image: {
  31774. source: "./media/characters/joanna/front.svg",
  31775. extra: 1596 / 1488,
  31776. bottom: 29 / 1625
  31777. }
  31778. },
  31779. back: {
  31780. height: math.unit(3.5, "meters"),
  31781. weight: math.unit(1200, "kg"),
  31782. name: "Back",
  31783. image: {
  31784. source: "./media/characters/joanna/back.svg",
  31785. extra: 1594 / 1495,
  31786. bottom: 26 / 1620
  31787. }
  31788. },
  31789. frontShorts: {
  31790. height: math.unit(3.5, "meters"),
  31791. weight: math.unit(1200, "kg"),
  31792. name: "Front (Shorts)",
  31793. image: {
  31794. source: "./media/characters/joanna/front-shorts.svg",
  31795. extra: 1596 / 1488,
  31796. bottom: 29 / 1625
  31797. }
  31798. },
  31799. frontBiker: {
  31800. height: math.unit(3.5, "meters"),
  31801. weight: math.unit(1200, "kg"),
  31802. name: "Front (Biker)",
  31803. image: {
  31804. source: "./media/characters/joanna/front-biker.svg",
  31805. extra: 1596 / 1488,
  31806. bottom: 29 / 1625
  31807. }
  31808. },
  31809. backBiker: {
  31810. height: math.unit(3.5, "meters"),
  31811. weight: math.unit(1200, "kg"),
  31812. name: "Back (Biker)",
  31813. image: {
  31814. source: "./media/characters/joanna/back-biker.svg",
  31815. extra: 1594 / 1495,
  31816. bottom: 88 / 1682
  31817. }
  31818. },
  31819. bikeLeft: {
  31820. height: math.unit(2.4, "meters"),
  31821. weight: math.unit(1600, "kg"),
  31822. name: "Bike (Left)",
  31823. image: {
  31824. source: "./media/characters/joanna/bike-left.svg",
  31825. extra: 720 / 720,
  31826. bottom: 8 / 728
  31827. }
  31828. },
  31829. bikeRight: {
  31830. height: math.unit(2.4, "meters"),
  31831. weight: math.unit(1600, "kg"),
  31832. name: "Bike (Right)",
  31833. image: {
  31834. source: "./media/characters/joanna/bike-right.svg",
  31835. extra: 720 / 720,
  31836. bottom: 8 / 728
  31837. }
  31838. },
  31839. },
  31840. [
  31841. {
  31842. name: "Incognito",
  31843. height: math.unit(3.5, "meters")
  31844. },
  31845. {
  31846. name: "Casual Big",
  31847. height: math.unit(200, "meters")
  31848. },
  31849. {
  31850. name: "Macro",
  31851. height: math.unit(600, "meters")
  31852. },
  31853. {
  31854. name: "Original",
  31855. height: math.unit(20, "km"),
  31856. default: true
  31857. },
  31858. {
  31859. name: "Giga",
  31860. height: math.unit(400, "km")
  31861. },
  31862. {
  31863. name: "Lounging",
  31864. height: math.unit(1500, "km")
  31865. },
  31866. {
  31867. name: "Planetary",
  31868. height: math.unit(200000, "km")
  31869. },
  31870. ]
  31871. ))
  31872. characterMakers.push(() => makeCharacter(
  31873. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31874. {
  31875. front: {
  31876. height: math.unit(6, "feet"),
  31877. weight: math.unit(150, "lb"),
  31878. name: "Front",
  31879. image: {
  31880. source: "./media/characters/hugo-sigil/front.svg",
  31881. extra: 522 / 500,
  31882. bottom: 2 / 524
  31883. }
  31884. },
  31885. back: {
  31886. height: math.unit(6, "feet"),
  31887. weight: math.unit(150, "lb"),
  31888. name: "Back",
  31889. image: {
  31890. source: "./media/characters/hugo-sigil/back.svg",
  31891. extra: 519 / 495,
  31892. bottom: 5 / 524
  31893. }
  31894. },
  31895. maw: {
  31896. height: math.unit(1.4, "feet"),
  31897. weight: math.unit(150, "lb"),
  31898. name: "Maw",
  31899. image: {
  31900. source: "./media/characters/hugo-sigil/maw.svg"
  31901. }
  31902. },
  31903. feet: {
  31904. height: math.unit(1.56, "feet"),
  31905. weight: math.unit(150, "lb"),
  31906. name: "Feet",
  31907. image: {
  31908. source: "./media/characters/hugo-sigil/feet.svg",
  31909. extra: 177 / 177,
  31910. bottom: 12 / 189
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Normal",
  31917. height: math.unit(6, "feet")
  31918. },
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(200, "feet"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(6, "feet"),
  31931. weight: math.unit(150, "lb"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/peri/front.svg",
  31935. extra: 2354 / 2233,
  31936. bottom: 49 / 2403
  31937. }
  31938. },
  31939. },
  31940. [
  31941. {
  31942. name: "Really Small",
  31943. height: math.unit(1, "nm")
  31944. },
  31945. {
  31946. name: "Micro",
  31947. height: math.unit(4, "inches")
  31948. },
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(7, "inches"),
  31952. default: true
  31953. },
  31954. {
  31955. name: "Macro",
  31956. height: math.unit(400, "feet")
  31957. },
  31958. {
  31959. name: "Megamacro",
  31960. height: math.unit(100, "miles")
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31966. {
  31967. frontSlim: {
  31968. height: math.unit(7, "feet"),
  31969. name: "Front (Slim)",
  31970. image: {
  31971. source: "./media/characters/issilora/front-slim.svg",
  31972. extra: 529 / 449,
  31973. bottom: 53 / 582
  31974. }
  31975. },
  31976. sideSlim: {
  31977. height: math.unit(7, "feet"),
  31978. name: "Side (Slim)",
  31979. image: {
  31980. source: "./media/characters/issilora/side-slim.svg",
  31981. extra: 570 / 480,
  31982. bottom: 30 / 600
  31983. }
  31984. },
  31985. backSlim: {
  31986. height: math.unit(7, "feet"),
  31987. name: "Back (Slim)",
  31988. image: {
  31989. source: "./media/characters/issilora/back-slim.svg",
  31990. extra: 537 / 455,
  31991. bottom: 46 / 583
  31992. }
  31993. },
  31994. frontBuff: {
  31995. height: math.unit(7, "feet"),
  31996. name: "Front (Buff)",
  31997. image: {
  31998. source: "./media/characters/issilora/front-buff.svg",
  31999. extra: 2310 / 2035,
  32000. bottom: 335 / 2645
  32001. }
  32002. },
  32003. head: {
  32004. height: math.unit(1.94, "feet"),
  32005. name: "Head",
  32006. image: {
  32007. source: "./media/characters/issilora/head.svg"
  32008. }
  32009. },
  32010. },
  32011. [
  32012. {
  32013. name: "Minimum",
  32014. height: math.unit(7, "feet")
  32015. },
  32016. {
  32017. name: "Comfortable",
  32018. height: math.unit(17, "feet")
  32019. },
  32020. {
  32021. name: "Fun Size",
  32022. height: math.unit(47, "feet")
  32023. },
  32024. {
  32025. name: "Natural Macro",
  32026. height: math.unit(137, "feet"),
  32027. default: true
  32028. },
  32029. {
  32030. name: "Maximum Kaiju",
  32031. height: math.unit(397, "feet")
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32037. {
  32038. front: {
  32039. height: math.unit(50 + 9/12, "feet"),
  32040. weight: math.unit(32.8, "tons"),
  32041. name: "Front",
  32042. image: {
  32043. source: "./media/characters/irb'iiritaahn/front.svg",
  32044. extra: 1878/1826,
  32045. bottom: 326/2204
  32046. }
  32047. },
  32048. back: {
  32049. height: math.unit(50 + 9/12, "feet"),
  32050. weight: math.unit(32.8, "tons"),
  32051. name: "Back",
  32052. image: {
  32053. source: "./media/characters/irb'iiritaahn/back.svg",
  32054. extra: 2052/2018,
  32055. bottom: 152/2204
  32056. }
  32057. },
  32058. head: {
  32059. height: math.unit(12.86, "feet"),
  32060. name: "Head",
  32061. image: {
  32062. source: "./media/characters/irb'iiritaahn/head.svg"
  32063. }
  32064. },
  32065. maw: {
  32066. height: math.unit(9.66, "feet"),
  32067. name: "Maw",
  32068. image: {
  32069. source: "./media/characters/irb'iiritaahn/maw.svg"
  32070. }
  32071. },
  32072. frontDick: {
  32073. height: math.unit(8.78461, "feet"),
  32074. name: "Front Dick",
  32075. image: {
  32076. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32077. }
  32078. },
  32079. rearDick: {
  32080. height: math.unit(8.78461, "feet"),
  32081. name: "Rear Dick",
  32082. image: {
  32083. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32084. }
  32085. },
  32086. rearDickUnfolded: {
  32087. height: math.unit(8.78, "feet"),
  32088. name: "Rear Dick (Unfolded)",
  32089. image: {
  32090. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32091. }
  32092. },
  32093. wings: {
  32094. height: math.unit(43, "feet"),
  32095. name: "Wings",
  32096. image: {
  32097. source: "./media/characters/irb'iiritaahn/wings.svg"
  32098. }
  32099. },
  32100. },
  32101. [
  32102. {
  32103. name: "Macro",
  32104. height: math.unit(50 + 9/12, "feet"),
  32105. default: true
  32106. },
  32107. ]
  32108. ))
  32109. characterMakers.push(() => makeCharacter(
  32110. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32111. {
  32112. front: {
  32113. height: math.unit(205, "cm"),
  32114. weight: math.unit(102, "kg"),
  32115. name: "Front",
  32116. image: {
  32117. source: "./media/characters/irbisgreif/front.svg",
  32118. extra: 785/706,
  32119. bottom: 13/798
  32120. }
  32121. },
  32122. back: {
  32123. height: math.unit(205, "cm"),
  32124. weight: math.unit(102, "kg"),
  32125. name: "Back",
  32126. image: {
  32127. source: "./media/characters/irbisgreif/back.svg",
  32128. extra: 713/701,
  32129. bottom: 26/739
  32130. }
  32131. },
  32132. frontDressed: {
  32133. height: math.unit(216, "cm"),
  32134. weight: math.unit(102, "kg"),
  32135. name: "Front-dressed",
  32136. image: {
  32137. source: "./media/characters/irbisgreif/front-dressed.svg",
  32138. extra: 902/776,
  32139. bottom: 14/916
  32140. }
  32141. },
  32142. sideDressed: {
  32143. height: math.unit(195, "cm"),
  32144. weight: math.unit(102, "kg"),
  32145. name: "Side-dressed",
  32146. image: {
  32147. source: "./media/characters/irbisgreif/side-dressed.svg",
  32148. extra: 788/688,
  32149. bottom: 21/809
  32150. }
  32151. },
  32152. backDressed: {
  32153. height: math.unit(216, "cm"),
  32154. weight: math.unit(102, "kg"),
  32155. name: "Back-dressed",
  32156. image: {
  32157. source: "./media/characters/irbisgreif/back-dressed.svg",
  32158. extra: 901/783,
  32159. bottom: 10/911
  32160. }
  32161. },
  32162. dick: {
  32163. height: math.unit(0.49, "feet"),
  32164. name: "Dick",
  32165. image: {
  32166. source: "./media/characters/irbisgreif/dick.svg"
  32167. }
  32168. },
  32169. wingTop: {
  32170. height: math.unit(1.93 , "feet"),
  32171. name: "Wing-top",
  32172. image: {
  32173. source: "./media/characters/irbisgreif/wing-top.svg"
  32174. }
  32175. },
  32176. wingBottom: {
  32177. height: math.unit(1.93 , "feet"),
  32178. name: "Wing-bottom",
  32179. image: {
  32180. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(216, "cm"),
  32188. default: true
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32194. {
  32195. front: {
  32196. height: math.unit(6, "feet"),
  32197. weight: math.unit(150, "lb"),
  32198. name: "Front",
  32199. image: {
  32200. source: "./media/characters/pride/front.svg",
  32201. extra: 1299/1230,
  32202. bottom: 18/1317
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(7, "feet")
  32210. },
  32211. {
  32212. name: "Mini-macro",
  32213. height: math.unit(11, "feet")
  32214. },
  32215. {
  32216. name: "Macro",
  32217. height: math.unit(15, "meters"),
  32218. default: true
  32219. },
  32220. {
  32221. name: "Macro+",
  32222. height: math.unit(40, "meters")
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32228. {
  32229. front: {
  32230. height: math.unit(4 + 2 / 12, "feet"),
  32231. weight: math.unit(95, "lb"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/vaelophis-nyx/front.svg",
  32235. extra: 2532/2330,
  32236. bottom: 0/2532
  32237. }
  32238. },
  32239. back: {
  32240. height: math.unit(4 + 2 / 12, "feet"),
  32241. weight: math.unit(95, "lb"),
  32242. name: "Back",
  32243. image: {
  32244. source: "./media/characters/vaelophis-nyx/back.svg",
  32245. extra: 2484/2361,
  32246. bottom: 0/2484
  32247. }
  32248. },
  32249. feralSide: {
  32250. height: math.unit(2 + 1/12, "feet"),
  32251. weight: math.unit(20, "lb"),
  32252. name: "Feral (Side)",
  32253. image: {
  32254. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32255. extra: 1721/1581,
  32256. bottom: 70/1791
  32257. }
  32258. },
  32259. feralLazing: {
  32260. height: math.unit(1.08, "feet"),
  32261. weight: math.unit(20, "lb"),
  32262. name: "Feral (Lazing)",
  32263. image: {
  32264. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32265. extra: 822/822,
  32266. bottom: 248/1070
  32267. }
  32268. },
  32269. ear: {
  32270. height: math.unit(0.416, "feet"),
  32271. name: "Ear",
  32272. image: {
  32273. source: "./media/characters/vaelophis-nyx/ear.svg"
  32274. }
  32275. },
  32276. eye: {
  32277. height: math.unit(0.0748, "feet"),
  32278. name: "Eye",
  32279. image: {
  32280. source: "./media/characters/vaelophis-nyx/eye.svg"
  32281. }
  32282. },
  32283. mouth: {
  32284. height: math.unit(0.378, "feet"),
  32285. name: "Mouth",
  32286. image: {
  32287. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32288. }
  32289. },
  32290. spade: {
  32291. height: math.unit(0.55, "feet"),
  32292. name: "Spade",
  32293. image: {
  32294. source: "./media/characters/vaelophis-nyx/spade.svg"
  32295. }
  32296. },
  32297. },
  32298. [
  32299. {
  32300. name: "Normal",
  32301. height: math.unit(4 + 2/12, "feet"),
  32302. default: true
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32308. {
  32309. front: {
  32310. height: math.unit(7, "feet"),
  32311. weight: math.unit(231, "lb"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/flux/front.svg",
  32315. extra: 919/871,
  32316. bottom: 0/919
  32317. }
  32318. },
  32319. back: {
  32320. height: math.unit(7, "feet"),
  32321. weight: math.unit(231, "lb"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/flux/back.svg",
  32325. extra: 1040/992,
  32326. bottom: 0/1040
  32327. }
  32328. },
  32329. frontDressed: {
  32330. height: math.unit(7, "feet"),
  32331. weight: math.unit(231, "lb"),
  32332. name: "Front (Dressed)",
  32333. image: {
  32334. source: "./media/characters/flux/front-dressed.svg",
  32335. extra: 919/871,
  32336. bottom: 0/919
  32337. }
  32338. },
  32339. feralSide: {
  32340. height: math.unit(5, "feet"),
  32341. weight: math.unit(150, "lb"),
  32342. name: "Feral (Side)",
  32343. image: {
  32344. source: "./media/characters/flux/feral-side.svg",
  32345. extra: 598/528,
  32346. bottom: 28/626
  32347. }
  32348. },
  32349. head: {
  32350. height: math.unit(1.585, "feet"),
  32351. name: "Head",
  32352. image: {
  32353. source: "./media/characters/flux/head.svg"
  32354. }
  32355. },
  32356. headSide: {
  32357. height: math.unit(1.74, "feet"),
  32358. name: "Head (Side)",
  32359. image: {
  32360. source: "./media/characters/flux/head-side.svg"
  32361. }
  32362. },
  32363. headSideFire: {
  32364. height: math.unit(1.76, "feet"),
  32365. name: "Head (Side, Fire)",
  32366. image: {
  32367. source: "./media/characters/flux/head-side-fire.svg"
  32368. }
  32369. },
  32370. },
  32371. [
  32372. {
  32373. name: "Normal",
  32374. height: math.unit(7, "feet"),
  32375. default: true
  32376. },
  32377. ]
  32378. ))
  32379. characterMakers.push(() => makeCharacter(
  32380. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32381. {
  32382. front: {
  32383. height: math.unit(9, "feet"),
  32384. weight: math.unit(1012, "lb"),
  32385. name: "Front",
  32386. image: {
  32387. source: "./media/characters/ulfra-lupae/front.svg",
  32388. extra: 1083/1011,
  32389. bottom: 67/1150
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Micro",
  32396. height: math.unit(6, "inches")
  32397. },
  32398. {
  32399. name: "Socializing",
  32400. height: math.unit(6 + 5/12, "feet")
  32401. },
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(9, "feet"),
  32405. default: true
  32406. },
  32407. {
  32408. name: "Macro",
  32409. height: math.unit(150, "feet")
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(5 + 2/12, "feet"),
  32418. weight: math.unit(120, "lb"),
  32419. name: "Front",
  32420. image: {
  32421. source: "./media/characters/timber/front.svg",
  32422. extra: 2814/2705,
  32423. bottom: 181/2995
  32424. }
  32425. },
  32426. },
  32427. [
  32428. {
  32429. name: "Normal",
  32430. height: math.unit(5 + 2/12, "feet"),
  32431. default: true
  32432. },
  32433. ]
  32434. ))
  32435. characterMakers.push(() => makeCharacter(
  32436. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32437. {
  32438. front: {
  32439. height: math.unit(9, "feet"),
  32440. name: "Front",
  32441. image: {
  32442. source: "./media/characters/nicki/front.svg",
  32443. extra: 1240/990,
  32444. bottom: 45/1285
  32445. },
  32446. form: "anthro",
  32447. default: true
  32448. },
  32449. side: {
  32450. height: math.unit(9, "feet"),
  32451. name: "Side",
  32452. image: {
  32453. source: "./media/characters/nicki/side.svg",
  32454. extra: 1047/973,
  32455. bottom: 61/1108
  32456. },
  32457. form: "anthro"
  32458. },
  32459. back: {
  32460. height: math.unit(9, "feet"),
  32461. name: "Back",
  32462. image: {
  32463. source: "./media/characters/nicki/back.svg",
  32464. extra: 1006/965,
  32465. bottom: 39/1045
  32466. },
  32467. form: "anthro"
  32468. },
  32469. taur: {
  32470. height: math.unit(15, "feet"),
  32471. name: "Taur",
  32472. image: {
  32473. source: "./media/characters/nicki/taur.svg",
  32474. extra: 1592/1347,
  32475. bottom: 0/1592
  32476. },
  32477. form: "taur",
  32478. default: true
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(9, "feet"),
  32485. form: "anthro",
  32486. default: true
  32487. },
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(15, "feet"),
  32491. form: "taur",
  32492. default: true
  32493. }
  32494. ],
  32495. {
  32496. "anthro": {
  32497. name: "Anthro",
  32498. default: true
  32499. },
  32500. "taur": {
  32501. name: "Taur"
  32502. }
  32503. }
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(7 + 10/12, "feet"),
  32510. weight: math.unit(3.5, "tons"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/lee/front.svg",
  32514. extra: 1773/1615,
  32515. bottom: 86/1859
  32516. }
  32517. },
  32518. hand: {
  32519. height: math.unit(1.78, "feet"),
  32520. name: "Hand",
  32521. image: {
  32522. source: "./media/characters/lee/hand.svg"
  32523. }
  32524. },
  32525. maw: {
  32526. height: math.unit(1.18, "feet"),
  32527. name: "Maw",
  32528. image: {
  32529. source: "./media/characters/lee/maw.svg"
  32530. }
  32531. },
  32532. },
  32533. [
  32534. {
  32535. name: "Normal",
  32536. height: math.unit(7 + 10/12, "feet"),
  32537. default: true
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32543. {
  32544. front: {
  32545. height: math.unit(9, "feet"),
  32546. name: "Front",
  32547. image: {
  32548. source: "./media/characters/guti/front.svg",
  32549. extra: 4551/4355,
  32550. bottom: 123/4674
  32551. }
  32552. },
  32553. tongue: {
  32554. height: math.unit(1, "feet"),
  32555. name: "Tongue",
  32556. image: {
  32557. source: "./media/characters/guti/tongue.svg"
  32558. }
  32559. },
  32560. paw: {
  32561. height: math.unit(1.18, "feet"),
  32562. name: "Paw",
  32563. image: {
  32564. source: "./media/characters/guti/paw.svg"
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(9, "feet"),
  32572. default: true
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32578. {
  32579. side: {
  32580. height: math.unit(5, "meters"),
  32581. name: "Side",
  32582. image: {
  32583. source: "./media/characters/vesper/side.svg",
  32584. extra: 1605/1518,
  32585. bottom: 0/1605
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Small",
  32592. height: math.unit(5, "meters")
  32593. },
  32594. {
  32595. name: "Sage",
  32596. height: math.unit(100, "meters"),
  32597. default: true
  32598. },
  32599. {
  32600. name: "Fun Size",
  32601. height: math.unit(600, "meters")
  32602. },
  32603. {
  32604. name: "Goddess",
  32605. height: math.unit(20000, "km")
  32606. },
  32607. {
  32608. name: "Maximum",
  32609. height: math.unit(5, "galaxies")
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32615. {
  32616. front: {
  32617. height: math.unit(6 + 3/12, "feet"),
  32618. weight: math.unit(190, "lb"),
  32619. name: "Front",
  32620. image: {
  32621. source: "./media/characters/gawain/front.svg",
  32622. extra: 2222/2139,
  32623. bottom: 90/2312
  32624. }
  32625. },
  32626. back: {
  32627. height: math.unit(6 + 3/12, "feet"),
  32628. weight: math.unit(190, "lb"),
  32629. name: "Back",
  32630. image: {
  32631. source: "./media/characters/gawain/back.svg",
  32632. extra: 2199/2111,
  32633. bottom: 73/2272
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Normal",
  32640. height: math.unit(6 + 3/12, "feet"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32647. {
  32648. side: {
  32649. height: math.unit(3.5, "meters"),
  32650. weight: math.unit(16000, "lb"),
  32651. name: "Side",
  32652. image: {
  32653. source: "./media/characters/dascalti/side.svg",
  32654. extra: 392/273,
  32655. bottom: 47/439
  32656. }
  32657. },
  32658. breath: {
  32659. height: math.unit(7.4, "feet"),
  32660. name: "Breath",
  32661. image: {
  32662. source: "./media/characters/dascalti/breath.svg"
  32663. }
  32664. },
  32665. fed: {
  32666. height: math.unit(3.6, "meters"),
  32667. weight: math.unit(16000, "lb"),
  32668. name: "Fed",
  32669. image: {
  32670. source: "./media/characters/dascalti/fed.svg",
  32671. extra: 1419/820,
  32672. bottom: 95/1514
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(3.5, "meters"),
  32680. default: true
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32686. {
  32687. front: {
  32688. height: math.unit(3 + 5/12, "feet"),
  32689. name: "Front",
  32690. image: {
  32691. source: "./media/characters/mauve/front.svg",
  32692. extra: 1126/1033,
  32693. bottom: 65/1191
  32694. }
  32695. },
  32696. side: {
  32697. height: math.unit(3 + 5/12, "feet"),
  32698. name: "Side",
  32699. image: {
  32700. source: "./media/characters/mauve/side.svg",
  32701. extra: 1089/1001,
  32702. bottom: 29/1118
  32703. }
  32704. },
  32705. back: {
  32706. height: math.unit(3 + 5/12, "feet"),
  32707. name: "Back",
  32708. image: {
  32709. source: "./media/characters/mauve/back.svg",
  32710. extra: 1173/1053,
  32711. bottom: 109/1282
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(3 + 5/12, "feet"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(6 + 3/12, "feet"),
  32728. weight: math.unit(430, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/carlos/front.svg",
  32732. extra: 1964/1913,
  32733. bottom: 70/2034
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(6 + 3/12, "feet"),
  32741. default: true
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32747. {
  32748. back: {
  32749. height: math.unit(5 + 10/12, "feet"),
  32750. weight: math.unit(200, "lb"),
  32751. name: "Back",
  32752. image: {
  32753. source: "./media/characters/jax/back.svg",
  32754. extra: 764/739,
  32755. bottom: 25/789
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(5 + 10/12, "feet"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(8, "feet"),
  32772. weight: math.unit(250, "lb"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/eikthynir/front.svg",
  32776. extra: 1332/1166,
  32777. bottom: 82/1414
  32778. }
  32779. },
  32780. back: {
  32781. height: math.unit(8, "feet"),
  32782. weight: math.unit(250, "lb"),
  32783. name: "Back",
  32784. image: {
  32785. source: "./media/characters/eikthynir/back.svg",
  32786. extra: 1342/1190,
  32787. bottom: 19/1361
  32788. }
  32789. },
  32790. dick: {
  32791. height: math.unit(2.35, "feet"),
  32792. name: "Dick",
  32793. image: {
  32794. source: "./media/characters/eikthynir/dick.svg"
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(8, "feet"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32808. {
  32809. front: {
  32810. height: math.unit(99, "meters"),
  32811. weight: math.unit(13000, "tons"),
  32812. name: "Front",
  32813. image: {
  32814. source: "./media/characters/zlmos/front.svg",
  32815. extra: 2202/1992,
  32816. bottom: 315/2517
  32817. }
  32818. },
  32819. },
  32820. [
  32821. {
  32822. name: "Macro",
  32823. height: math.unit(99, "meters"),
  32824. default: true
  32825. },
  32826. ]
  32827. ))
  32828. characterMakers.push(() => makeCharacter(
  32829. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32830. {
  32831. front: {
  32832. height: math.unit(6 + 5/12, "feet"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/purri/front.svg",
  32836. extra: 1698/1610,
  32837. bottom: 32/1730
  32838. }
  32839. },
  32840. frontAlt: {
  32841. height: math.unit(6 + 5/12, "feet"),
  32842. name: "Front (Alt)",
  32843. image: {
  32844. source: "./media/characters/purri/front-alt.svg",
  32845. extra: 450/420,
  32846. bottom: 26/476
  32847. }
  32848. },
  32849. boots: {
  32850. height: math.unit(5.5, "feet"),
  32851. name: "Boots",
  32852. image: {
  32853. source: "./media/characters/purri/boots.svg",
  32854. extra: 905/853,
  32855. bottom: 18/923
  32856. }
  32857. },
  32858. lying: {
  32859. height: math.unit(2, "feet"),
  32860. name: "Lying",
  32861. image: {
  32862. source: "./media/characters/purri/lying.svg",
  32863. extra: 940/843,
  32864. bottom: 146/1086
  32865. }
  32866. },
  32867. devious: {
  32868. height: math.unit(1.77, "feet"),
  32869. name: "Devious",
  32870. image: {
  32871. source: "./media/characters/purri/devious.svg",
  32872. extra: 1440/1155,
  32873. bottom: 147/1587
  32874. }
  32875. },
  32876. bean: {
  32877. height: math.unit(1.94, "feet"),
  32878. name: "Bean",
  32879. image: {
  32880. source: "./media/characters/purri/bean.svg"
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Micro",
  32887. height: math.unit(1, "mm")
  32888. },
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(6 + 5/12, "feet"),
  32892. default: true
  32893. },
  32894. {
  32895. name: "Macro :3c",
  32896. height: math.unit(2, "miles")
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32902. {
  32903. front: {
  32904. height: math.unit(6 + 2/12, "feet"),
  32905. weight: math.unit(250, "lb"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/moonlight/front.svg",
  32909. extra: 1044/908,
  32910. bottom: 56/1100
  32911. }
  32912. },
  32913. feral: {
  32914. height: math.unit(3 + 1/12, "feet"),
  32915. weight: math.unit(50, "kg"),
  32916. name: "Feral",
  32917. image: {
  32918. source: "./media/characters/moonlight/feral.svg",
  32919. extra: 3705/2791,
  32920. bottom: 145/3850
  32921. }
  32922. },
  32923. paw: {
  32924. height: math.unit(1, "feet"),
  32925. name: "Paw",
  32926. image: {
  32927. source: "./media/characters/moonlight/paw.svg"
  32928. }
  32929. },
  32930. paws: {
  32931. height: math.unit(0.98, "feet"),
  32932. name: "Paws",
  32933. image: {
  32934. source: "./media/characters/moonlight/paws.svg",
  32935. extra: 939/939,
  32936. bottom: 50/989
  32937. }
  32938. },
  32939. mouth: {
  32940. height: math.unit(0.48, "feet"),
  32941. name: "Mouth",
  32942. image: {
  32943. source: "./media/characters/moonlight/mouth.svg"
  32944. }
  32945. },
  32946. dick: {
  32947. height: math.unit(1.46, "feet"),
  32948. name: "Dick",
  32949. image: {
  32950. source: "./media/characters/moonlight/dick.svg"
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Normal",
  32957. height: math.unit(6 + 2/12, "feet"),
  32958. default: true
  32959. },
  32960. {
  32961. name: "Macro",
  32962. height: math.unit(300, "feet")
  32963. },
  32964. {
  32965. name: "Macro+",
  32966. height: math.unit(1, "mile")
  32967. },
  32968. {
  32969. name: "Mt. Moon",
  32970. height: math.unit(5, "miles")
  32971. },
  32972. {
  32973. name: "Megamacro",
  32974. height: math.unit(15, "miles")
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32980. {
  32981. back: {
  32982. height: math.unit(6, "feet"),
  32983. weight: math.unit(150, "lb"),
  32984. name: "Back",
  32985. image: {
  32986. source: "./media/characters/sylen/back.svg",
  32987. extra: 1335/1273,
  32988. bottom: 107/1442
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(5 + 5/12, "feet")
  32996. },
  32997. {
  32998. name: "Megamacro",
  32999. height: math.unit(3, "miles"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33006. {
  33007. front: {
  33008. height: math.unit(6, "feet"),
  33009. weight: math.unit(190, "lb"),
  33010. name: "Front",
  33011. image: {
  33012. source: "./media/characters/huttser/front.svg",
  33013. extra: 1152/1058,
  33014. bottom: 23/1175
  33015. }
  33016. },
  33017. side: {
  33018. height: math.unit(6, "feet"),
  33019. weight: math.unit(190, "lb"),
  33020. name: "Side",
  33021. image: {
  33022. source: "./media/characters/huttser/side.svg",
  33023. extra: 1174/1065,
  33024. bottom: 18/1192
  33025. }
  33026. },
  33027. back: {
  33028. height: math.unit(6, "feet"),
  33029. weight: math.unit(190, "lb"),
  33030. name: "Back",
  33031. image: {
  33032. source: "./media/characters/huttser/back.svg",
  33033. extra: 1158/1056,
  33034. bottom: 12/1170
  33035. }
  33036. },
  33037. },
  33038. [
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33043. {
  33044. side: {
  33045. height: math.unit(12 + 9/12, "feet"),
  33046. weight: math.unit(15000, "lb"),
  33047. name: "Side",
  33048. image: {
  33049. source: "./media/characters/faan/side.svg",
  33050. extra: 2747/2697,
  33051. bottom: 0/2747
  33052. }
  33053. },
  33054. front: {
  33055. height: math.unit(12 + 9/12, "feet"),
  33056. weight: math.unit(15000, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/faan/front.svg",
  33060. extra: 607/571,
  33061. bottom: 24/631
  33062. }
  33063. },
  33064. head: {
  33065. height: math.unit(2.85, "feet"),
  33066. name: "Head",
  33067. image: {
  33068. source: "./media/characters/faan/head.svg"
  33069. }
  33070. },
  33071. headAlt: {
  33072. height: math.unit(3.13, "feet"),
  33073. name: "Head-alt",
  33074. image: {
  33075. source: "./media/characters/faan/head-alt.svg"
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(12 + 9/12, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(6, "feet"),
  33092. weight: math.unit(300, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/tanio/front.svg",
  33096. extra: 711/673,
  33097. bottom: 25/736
  33098. }
  33099. },
  33100. },
  33101. [
  33102. {
  33103. name: "Normal",
  33104. height: math.unit(6, "feet"),
  33105. default: true
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33111. {
  33112. front: {
  33113. height: math.unit(3, "inches"),
  33114. name: "Front",
  33115. image: {
  33116. source: "./media/characters/noboru/front.svg",
  33117. extra: 1039/932,
  33118. bottom: 18/1057
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Micro",
  33125. height: math.unit(3, "inches"),
  33126. default: true
  33127. },
  33128. ]
  33129. ))
  33130. characterMakers.push(() => makeCharacter(
  33131. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33132. {
  33133. front: {
  33134. height: math.unit(1.85, "meters"),
  33135. weight: math.unit(80, "kg"),
  33136. name: "Front",
  33137. image: {
  33138. source: "./media/characters/daniel-barrett/front.svg",
  33139. extra: 355/337,
  33140. bottom: 9/364
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Pico",
  33147. height: math.unit(0.0433, "mm")
  33148. },
  33149. {
  33150. name: "Nano",
  33151. height: math.unit(1.5, "mm")
  33152. },
  33153. {
  33154. name: "Micro",
  33155. height: math.unit(5.3, "cm"),
  33156. default: true
  33157. },
  33158. {
  33159. name: "Normal",
  33160. height: math.unit(1.85, "meters")
  33161. },
  33162. {
  33163. name: "Macro",
  33164. height: math.unit(64.7, "meters")
  33165. },
  33166. {
  33167. name: "Megamacro",
  33168. height: math.unit(2.26, "km")
  33169. },
  33170. {
  33171. name: "Gigamacro",
  33172. height: math.unit(79, "km")
  33173. },
  33174. {
  33175. name: "Teramacro",
  33176. height: math.unit(2765, "km")
  33177. },
  33178. {
  33179. name: "Petamacro",
  33180. height: math.unit(96678, "km")
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33186. {
  33187. front: {
  33188. height: math.unit(30, "meters"),
  33189. weight: math.unit(400, "tons"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/zeel/front.svg",
  33193. extra: 2599/2599,
  33194. bottom: 226/2825
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Macro",
  33201. height: math.unit(30, "meters"),
  33202. default: true
  33203. },
  33204. ]
  33205. ))
  33206. characterMakers.push(() => makeCharacter(
  33207. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33208. {
  33209. front: {
  33210. height: math.unit(6 + 7/12, "feet"),
  33211. weight: math.unit(210, "lb"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/tarn/front.svg",
  33215. extra: 3517/3220,
  33216. bottom: 91/3608
  33217. }
  33218. },
  33219. back: {
  33220. height: math.unit(6 + 7/12, "feet"),
  33221. weight: math.unit(210, "lb"),
  33222. name: "Back",
  33223. image: {
  33224. source: "./media/characters/tarn/back.svg",
  33225. extra: 3566/3241,
  33226. bottom: 34/3600
  33227. }
  33228. },
  33229. dick: {
  33230. height: math.unit(1.65, "feet"),
  33231. name: "Dick",
  33232. image: {
  33233. source: "./media/characters/tarn/dick.svg"
  33234. }
  33235. },
  33236. paw: {
  33237. height: math.unit(1.80, "feet"),
  33238. name: "Paw",
  33239. image: {
  33240. source: "./media/characters/tarn/paw.svg"
  33241. }
  33242. },
  33243. tongue: {
  33244. height: math.unit(0.97, "feet"),
  33245. name: "Tongue",
  33246. image: {
  33247. source: "./media/characters/tarn/tongue.svg"
  33248. }
  33249. },
  33250. },
  33251. [
  33252. {
  33253. name: "Micro",
  33254. height: math.unit(4, "inches")
  33255. },
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(6 + 7/12, "feet"),
  33259. default: true
  33260. },
  33261. {
  33262. name: "Macro",
  33263. height: math.unit(300, "feet")
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33269. {
  33270. front: {
  33271. height: math.unit(5 + 7/12, "feet"),
  33272. weight: math.unit(80, "kg"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33276. extra: 3023/2865,
  33277. bottom: 33/3056
  33278. }
  33279. },
  33280. back: {
  33281. height: math.unit(5 + 7/12, "feet"),
  33282. weight: math.unit(80, "kg"),
  33283. name: "Back",
  33284. image: {
  33285. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33286. extra: 3020/2886,
  33287. bottom: 30/3050
  33288. }
  33289. },
  33290. dick: {
  33291. height: math.unit(0.98, "feet"),
  33292. name: "Dick",
  33293. image: {
  33294. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33295. }
  33296. },
  33297. anatomy: {
  33298. height: math.unit(2.86, "feet"),
  33299. name: "Anatomy",
  33300. image: {
  33301. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Really Small",
  33308. height: math.unit(2, "inches")
  33309. },
  33310. {
  33311. name: "Micro",
  33312. height: math.unit(5.583, "inches")
  33313. },
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(5 + 7/12, "feet"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Macro",
  33321. height: math.unit(67, "feet")
  33322. },
  33323. {
  33324. name: "Megamacro",
  33325. height: math.unit(134, "feet")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(9, "feet"),
  33334. weight: math.unit(120, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/sally/front.svg",
  33338. extra: 1506/1349,
  33339. bottom: 66/1572
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(9, "feet"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33353. {
  33354. front: {
  33355. height: math.unit(8, "feet"),
  33356. weight: math.unit(900, "lb"),
  33357. name: "Front",
  33358. image: {
  33359. source: "./media/characters/owen/front.svg",
  33360. extra: 1761/1657,
  33361. bottom: 74/1835
  33362. }
  33363. },
  33364. side: {
  33365. height: math.unit(8, "feet"),
  33366. weight: math.unit(900, "lb"),
  33367. name: "Side",
  33368. image: {
  33369. source: "./media/characters/owen/side.svg",
  33370. extra: 1797/1734,
  33371. bottom: 30/1827
  33372. }
  33373. },
  33374. back: {
  33375. height: math.unit(8, "feet"),
  33376. weight: math.unit(900, "lb"),
  33377. name: "Back",
  33378. image: {
  33379. source: "./media/characters/owen/back.svg",
  33380. extra: 1796/1706,
  33381. bottom: 59/1855
  33382. }
  33383. },
  33384. maw: {
  33385. height: math.unit(1.76, "feet"),
  33386. name: "Maw",
  33387. image: {
  33388. source: "./media/characters/owen/maw.svg"
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(8, "feet"),
  33396. default: true
  33397. },
  33398. ]
  33399. ))
  33400. characterMakers.push(() => makeCharacter(
  33401. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33402. {
  33403. front: {
  33404. height: math.unit(4, "feet"),
  33405. weight: math.unit(400, "lb"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/ryth/front.svg",
  33409. extra: 1920/1748,
  33410. bottom: 42/1962
  33411. }
  33412. },
  33413. back: {
  33414. height: math.unit(4, "feet"),
  33415. weight: math.unit(400, "lb"),
  33416. name: "Back",
  33417. image: {
  33418. source: "./media/characters/ryth/back.svg",
  33419. extra: 1897/1690,
  33420. bottom: 89/1986
  33421. }
  33422. },
  33423. mouth: {
  33424. height: math.unit(1.39, "feet"),
  33425. name: "Mouth",
  33426. image: {
  33427. source: "./media/characters/ryth/mouth.svg"
  33428. }
  33429. },
  33430. tailmaw: {
  33431. height: math.unit(1.23, "feet"),
  33432. name: "Tailmaw",
  33433. image: {
  33434. source: "./media/characters/ryth/tailmaw.svg"
  33435. }
  33436. },
  33437. goia: {
  33438. height: math.unit(4, "meters"),
  33439. weight: math.unit(10800, "lb"),
  33440. name: "Goia",
  33441. image: {
  33442. source: "./media/characters/ryth/goia.svg",
  33443. extra: 745/640,
  33444. bottom: 107/852
  33445. }
  33446. },
  33447. goiaFront: {
  33448. height: math.unit(4, "meters"),
  33449. weight: math.unit(10800, "lb"),
  33450. name: "Goia (Front)",
  33451. image: {
  33452. source: "./media/characters/ryth/goia-front.svg",
  33453. extra: 750/586,
  33454. bottom: 114/864
  33455. }
  33456. },
  33457. goiaMaw: {
  33458. height: math.unit(5.55, "feet"),
  33459. name: "Goia Maw",
  33460. image: {
  33461. source: "./media/characters/ryth/goia-maw.svg"
  33462. }
  33463. },
  33464. goiaForepaw: {
  33465. height: math.unit(3.5, "feet"),
  33466. name: "Goia Forepaw",
  33467. image: {
  33468. source: "./media/characters/ryth/goia-forepaw.svg"
  33469. }
  33470. },
  33471. goiaHindpaw: {
  33472. height: math.unit(5.55, "feet"),
  33473. name: "Goia Hindpaw",
  33474. image: {
  33475. source: "./media/characters/ryth/goia-hindpaw.svg"
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(4, "feet"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(7, "feet"),
  33492. weight: math.unit(180, "lb"),
  33493. name: "Front",
  33494. image: {
  33495. source: "./media/characters/necrolance/front.svg",
  33496. extra: 1062/947,
  33497. bottom: 41/1103
  33498. }
  33499. },
  33500. back: {
  33501. height: math.unit(7, "feet"),
  33502. weight: math.unit(180, "lb"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/necrolance/back.svg",
  33506. extra: 1045/984,
  33507. bottom: 14/1059
  33508. }
  33509. },
  33510. wing: {
  33511. height: math.unit(2.67, "feet"),
  33512. name: "Wing",
  33513. image: {
  33514. source: "./media/characters/necrolance/wing.svg"
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Normal",
  33521. height: math.unit(7, "feet"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33528. {
  33529. front: {
  33530. height: math.unit(76, "meters"),
  33531. weight: math.unit(30000, "tons"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/tyler/front.svg",
  33535. extra: 1640/1640,
  33536. bottom: 114/1754
  33537. }
  33538. },
  33539. },
  33540. [
  33541. {
  33542. name: "Macro",
  33543. height: math.unit(76, "meters"),
  33544. default: true
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(4 + 11/12, "feet"),
  33553. weight: math.unit(132, "lb"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/icey/front.svg",
  33557. extra: 2750/2550,
  33558. bottom: 33/2783
  33559. }
  33560. },
  33561. back: {
  33562. height: math.unit(4 + 11/12, "feet"),
  33563. weight: math.unit(132, "lb"),
  33564. name: "Back",
  33565. image: {
  33566. source: "./media/characters/icey/back.svg",
  33567. extra: 2624/2481,
  33568. bottom: 35/2659
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(4 + 11/12, "feet"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(100, "feet"),
  33585. weight: math.unit(0, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/smile/front.svg",
  33589. extra: 2983/2912,
  33590. bottom: 162/3145
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(100, "feet"),
  33595. weight: math.unit(0, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/smile/back.svg",
  33599. extra: 3143/3031,
  33600. bottom: 91/3234
  33601. }
  33602. },
  33603. head: {
  33604. height: math.unit(26.3, "feet"),
  33605. weight: math.unit(0, "lb"),
  33606. name: "Head",
  33607. image: {
  33608. source: "./media/characters/smile/head.svg"
  33609. }
  33610. },
  33611. collar: {
  33612. height: math.unit(5.3, "feet"),
  33613. weight: math.unit(0, "lb"),
  33614. name: "Collar",
  33615. image: {
  33616. source: "./media/characters/smile/collar.svg"
  33617. }
  33618. },
  33619. },
  33620. [
  33621. {
  33622. name: "Macro",
  33623. height: math.unit(100, "feet"),
  33624. default: true
  33625. },
  33626. ]
  33627. ))
  33628. characterMakers.push(() => makeCharacter(
  33629. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33630. {
  33631. dragon: {
  33632. height: math.unit(26, "feet"),
  33633. weight: math.unit(36, "tons"),
  33634. name: "Dragon",
  33635. image: {
  33636. source: "./media/characters/arimphae/dragon.svg",
  33637. extra: 1574/983,
  33638. bottom: 357/1931
  33639. }
  33640. },
  33641. drake: {
  33642. height: math.unit(9, "feet"),
  33643. weight: math.unit(1.5, "tons"),
  33644. name: "Drake",
  33645. image: {
  33646. source: "./media/characters/arimphae/drake.svg",
  33647. extra: 1120/925,
  33648. bottom: 435/1555
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Small",
  33655. height: math.unit(26*5/9, "feet")
  33656. },
  33657. {
  33658. name: "Normal",
  33659. height: math.unit(26, "feet"),
  33660. default: true
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(8 + 9/12, "feet"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/xander/front.svg",
  33672. extra: 1237/974,
  33673. bottom: 94/1331
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(8 + 9/12, "feet"),
  33681. default: true
  33682. },
  33683. {
  33684. name: "Gaze Grabber",
  33685. height: math.unit(13 + 8/12, "feet")
  33686. },
  33687. {
  33688. name: "Jaw Dropper",
  33689. height: math.unit(27, "feet")
  33690. },
  33691. {
  33692. name: "Show Stopper",
  33693. height: math.unit(136, "feet")
  33694. },
  33695. {
  33696. name: "Superstar",
  33697. height: math.unit(1.9e6, "miles")
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33703. {
  33704. side: {
  33705. height: math.unit(2100, "feet"),
  33706. name: "Side",
  33707. image: {
  33708. source: "./media/characters/osiris/side.svg",
  33709. extra: 1105/939,
  33710. bottom: 167/1272
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Macro",
  33717. height: math.unit(2100, "feet"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(6 + 8/12, "feet"),
  33727. weight: math.unit(225, "lb"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/rhys-londe/front.svg",
  33731. extra: 2258/2141,
  33732. bottom: 188/2446
  33733. }
  33734. },
  33735. back: {
  33736. height: math.unit(6 + 8/12, "feet"),
  33737. weight: math.unit(225, "lb"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/rhys-londe/back.svg",
  33741. extra: 2237/2137,
  33742. bottom: 63/2300
  33743. }
  33744. },
  33745. frontNsfw: {
  33746. height: math.unit(6 + 8/12, "feet"),
  33747. weight: math.unit(225, "lb"),
  33748. name: "Front (NSFW)",
  33749. image: {
  33750. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33751. extra: 2258/2141,
  33752. bottom: 188/2446
  33753. }
  33754. },
  33755. backNsfw: {
  33756. height: math.unit(6 + 8/12, "feet"),
  33757. weight: math.unit(225, "lb"),
  33758. name: "Back (NSFW)",
  33759. image: {
  33760. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33761. extra: 2237/2137,
  33762. bottom: 63/2300
  33763. }
  33764. },
  33765. dick: {
  33766. height: math.unit(30, "inches"),
  33767. name: "Dick",
  33768. image: {
  33769. source: "./media/characters/rhys-londe/dick.svg"
  33770. }
  33771. },
  33772. maw: {
  33773. height: math.unit(1.6, "feet"),
  33774. name: "Maw",
  33775. image: {
  33776. source: "./media/characters/rhys-londe/maw.svg"
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(6 + 8/12, "feet"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(3 + 10/12, "feet"),
  33793. weight: math.unit(90, "lb"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/taivas-ensim/front.svg",
  33797. extra: 1327/1216,
  33798. bottom: 96/1423
  33799. }
  33800. },
  33801. back: {
  33802. height: math.unit(3 + 10/12, "feet"),
  33803. weight: math.unit(90, "lb"),
  33804. name: "Back",
  33805. image: {
  33806. source: "./media/characters/taivas-ensim/back.svg",
  33807. extra: 1355/1247,
  33808. bottom: 11/1366
  33809. }
  33810. },
  33811. frontNsfw: {
  33812. height: math.unit(3 + 10/12, "feet"),
  33813. weight: math.unit(90, "lb"),
  33814. name: "Front (NSFW)",
  33815. image: {
  33816. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33817. extra: 1327/1216,
  33818. bottom: 96/1423
  33819. }
  33820. },
  33821. backNsfw: {
  33822. height: math.unit(3 + 10/12, "feet"),
  33823. weight: math.unit(90, "lb"),
  33824. name: "Back (NSFW)",
  33825. image: {
  33826. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33827. extra: 1355/1247,
  33828. bottom: 11/1366
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(3 + 10/12, "feet"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(9 + 6/12, "feet"),
  33845. weight: math.unit(940, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/byliss/front.svg",
  33849. extra: 1327/1290,
  33850. bottom: 82/1409
  33851. }
  33852. },
  33853. back: {
  33854. height: math.unit(9 + 6/12, "feet"),
  33855. weight: math.unit(940, "lb"),
  33856. name: "Back",
  33857. image: {
  33858. source: "./media/characters/byliss/back.svg",
  33859. extra: 1376/1349,
  33860. bottom: 9/1385
  33861. }
  33862. },
  33863. frontNsfw: {
  33864. height: math.unit(9 + 6/12, "feet"),
  33865. weight: math.unit(940, "lb"),
  33866. name: "Front (NSFW)",
  33867. image: {
  33868. source: "./media/characters/byliss/front-nsfw.svg",
  33869. extra: 1327/1290,
  33870. bottom: 82/1409
  33871. }
  33872. },
  33873. backNsfw: {
  33874. height: math.unit(9 + 6/12, "feet"),
  33875. weight: math.unit(940, "lb"),
  33876. name: "Back (NSFW)",
  33877. image: {
  33878. source: "./media/characters/byliss/back-nsfw.svg",
  33879. extra: 1376/1349,
  33880. bottom: 9/1385
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(9 + 6/12, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33894. {
  33895. front: {
  33896. height: math.unit(5 + 2/12, "feet"),
  33897. weight: math.unit(200, "lb"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/noraly/front.svg",
  33901. extra: 4985/4773,
  33902. bottom: 150/5135
  33903. }
  33904. },
  33905. full: {
  33906. height: math.unit(5 + 2/12, "feet"),
  33907. weight: math.unit(164, "lb"),
  33908. name: "Full",
  33909. image: {
  33910. source: "./media/characters/noraly/full.svg",
  33911. extra: 1114/1059,
  33912. bottom: 35/1149
  33913. }
  33914. },
  33915. fuller: {
  33916. height: math.unit(5 + 2/12, "feet"),
  33917. weight: math.unit(230, "lb"),
  33918. name: "Fuller",
  33919. image: {
  33920. source: "./media/characters/noraly/fuller.svg",
  33921. extra: 1114/1059,
  33922. bottom: 35/1149
  33923. }
  33924. },
  33925. fullest: {
  33926. height: math.unit(5 + 2/12, "feet"),
  33927. weight: math.unit(300, "lb"),
  33928. name: "Fullest",
  33929. image: {
  33930. source: "./media/characters/noraly/fullest.svg",
  33931. extra: 1114/1059,
  33932. bottom: 35/1149
  33933. }
  33934. },
  33935. },
  33936. [
  33937. {
  33938. name: "Normal",
  33939. height: math.unit(5 + 2/12, "feet"),
  33940. default: true
  33941. },
  33942. ]
  33943. ))
  33944. characterMakers.push(() => makeCharacter(
  33945. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33946. {
  33947. front: {
  33948. height: math.unit(5 + 2/12, "feet"),
  33949. weight: math.unit(210, "lb"),
  33950. name: "Front",
  33951. image: {
  33952. source: "./media/characters/pera/front.svg",
  33953. extra: 1560/1531,
  33954. bottom: 165/1725
  33955. }
  33956. },
  33957. back: {
  33958. height: math.unit(5 + 2/12, "feet"),
  33959. weight: math.unit(210, "lb"),
  33960. name: "Back",
  33961. image: {
  33962. source: "./media/characters/pera/back.svg",
  33963. extra: 1523/1493,
  33964. bottom: 152/1675
  33965. }
  33966. },
  33967. dick: {
  33968. height: math.unit(2.4, "feet"),
  33969. name: "Dick",
  33970. image: {
  33971. source: "./media/characters/pera/dick.svg"
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(5 + 2/12, "feet"),
  33979. default: true
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(12, "feet"),
  33988. weight: math.unit(3200, "lb"),
  33989. name: "Front",
  33990. image: {
  33991. source: "./media/characters/julian/front.svg",
  33992. extra: 2962/2701,
  33993. bottom: 184/3146
  33994. }
  33995. },
  33996. maw: {
  33997. height: math.unit(5.35, "feet"),
  33998. name: "Maw",
  33999. image: {
  34000. source: "./media/characters/julian/maw.svg"
  34001. }
  34002. },
  34003. paw: {
  34004. height: math.unit(3.07, "feet"),
  34005. name: "Paw",
  34006. image: {
  34007. source: "./media/characters/julian/paw.svg"
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Default",
  34014. height: math.unit(12, "feet"),
  34015. default: true
  34016. },
  34017. {
  34018. name: "Big",
  34019. height: math.unit(50, "feet")
  34020. },
  34021. {
  34022. name: "Really Big",
  34023. height: math.unit(1, "mile")
  34024. },
  34025. {
  34026. name: "Extremely Big",
  34027. height: math.unit(100, "miles")
  34028. },
  34029. {
  34030. name: "Planet Hugger",
  34031. height: math.unit(200, "megameters")
  34032. },
  34033. {
  34034. name: "Unreasonably Big",
  34035. height: math.unit(1e300, "meters")
  34036. },
  34037. ]
  34038. ))
  34039. characterMakers.push(() => makeCharacter(
  34040. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34041. {
  34042. solgooleo: {
  34043. height: math.unit(4, "meters"),
  34044. weight: math.unit(6000*1.5, "kg"),
  34045. volume: math.unit(6000, "liters"),
  34046. name: "Solgooleo",
  34047. image: {
  34048. source: "./media/characters/pi/solgooleo.svg",
  34049. extra: 388/331,
  34050. bottom: 29/417
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(4, "meters"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(8, "feet"),
  34067. weight: math.unit(4, "tons"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/shaun/front.svg",
  34071. extra: 503/495,
  34072. bottom: 20/523
  34073. }
  34074. },
  34075. back: {
  34076. height: math.unit(8, "feet"),
  34077. weight: math.unit(4, "tons"),
  34078. name: "Back",
  34079. image: {
  34080. source: "./media/characters/shaun/back.svg",
  34081. extra: 487/480,
  34082. bottom: 20/507
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Lorg",
  34089. height: math.unit(8, "feet"),
  34090. default: true
  34091. },
  34092. ]
  34093. ))
  34094. characterMakers.push(() => makeCharacter(
  34095. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34096. {
  34097. frontAnthro: {
  34098. height: math.unit(7, "feet"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/sini/front-anthro.svg",
  34102. extra: 726/678,
  34103. bottom: 35/761
  34104. },
  34105. form: "anthro",
  34106. default: true
  34107. },
  34108. backAnthro: {
  34109. height: math.unit(7, "feet"),
  34110. name: "Back",
  34111. image: {
  34112. source: "./media/characters/sini/back-anthro.svg",
  34113. extra: 743/701,
  34114. bottom: 12/755
  34115. },
  34116. form: "anthro",
  34117. },
  34118. frontAnthroNsfw: {
  34119. height: math.unit(7, "feet"),
  34120. name: "Front (NSFW)",
  34121. image: {
  34122. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34123. extra: 726/678,
  34124. bottom: 35/761
  34125. },
  34126. form: "anthro"
  34127. },
  34128. backAnthroNsfw: {
  34129. height: math.unit(7, "feet"),
  34130. name: "Back (NSFW)",
  34131. image: {
  34132. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34133. extra: 743/701,
  34134. bottom: 12/755
  34135. },
  34136. form: "anthro",
  34137. },
  34138. mawAnthro: {
  34139. height: math.unit(2.14, "feet"),
  34140. name: "Maw",
  34141. image: {
  34142. source: "./media/characters/sini/maw-anthro.svg"
  34143. },
  34144. form: "anthro"
  34145. },
  34146. dick: {
  34147. height: math.unit(1.45, "feet"),
  34148. name: "Dick",
  34149. image: {
  34150. source: "./media/characters/sini/dick-anthro.svg"
  34151. },
  34152. form: "anthro"
  34153. },
  34154. feral: {
  34155. height: math.unit(16, "feet"),
  34156. name: "Feral",
  34157. image: {
  34158. source: "./media/characters/sini/feral.svg",
  34159. extra: 814/605,
  34160. bottom: 11/825
  34161. },
  34162. form: "feral",
  34163. default: true
  34164. },
  34165. feralNsfw: {
  34166. height: math.unit(16, "feet"),
  34167. name: "Feral (NSFW)",
  34168. image: {
  34169. source: "./media/characters/sini/feral-nsfw.svg",
  34170. extra: 814/605,
  34171. bottom: 11/825
  34172. },
  34173. form: "feral"
  34174. },
  34175. mawFeral: {
  34176. height: math.unit(5.66, "feet"),
  34177. name: "Maw",
  34178. image: {
  34179. source: "./media/characters/sini/maw-feral.svg"
  34180. },
  34181. form: "feral",
  34182. },
  34183. pawFeral: {
  34184. height: math.unit(5.17, "feet"),
  34185. name: "Paw",
  34186. image: {
  34187. source: "./media/characters/sini/paw-feral.svg"
  34188. },
  34189. form: "feral",
  34190. },
  34191. rumpFeral: {
  34192. height: math.unit(13.11, "feet"),
  34193. name: "Rump",
  34194. image: {
  34195. source: "./media/characters/sini/rump-feral.svg"
  34196. },
  34197. form: "feral",
  34198. },
  34199. dickFeral: {
  34200. height: math.unit(1, "feet"),
  34201. name: "Dick",
  34202. image: {
  34203. source: "./media/characters/sini/dick-feral.svg"
  34204. },
  34205. form: "feral",
  34206. },
  34207. eyeFeral: {
  34208. height: math.unit(1.23, "feet"),
  34209. name: "Eye",
  34210. image: {
  34211. source: "./media/characters/sini/eye-feral.svg"
  34212. },
  34213. form: "feral",
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(7, "feet"),
  34220. default: true,
  34221. form: "anthro"
  34222. },
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(16, "feet"),
  34226. default: true,
  34227. form: "feral"
  34228. },
  34229. ],
  34230. {
  34231. "anthro": {
  34232. name: "Anthro",
  34233. default: true
  34234. },
  34235. "feral": {
  34236. name: "Feral",
  34237. }
  34238. }
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34242. {
  34243. side: {
  34244. height: math.unit(47.2, "meters"),
  34245. weight: math.unit(10000, "tons"),
  34246. name: "Side",
  34247. image: {
  34248. source: "./media/characters/raylldo/side.svg",
  34249. extra: 2363/642,
  34250. bottom: 221/2584
  34251. }
  34252. },
  34253. top: {
  34254. height: math.unit(240, "meters"),
  34255. weight: math.unit(10000, "tons"),
  34256. name: "Top",
  34257. image: {
  34258. source: "./media/characters/raylldo/top.svg"
  34259. }
  34260. },
  34261. bottom: {
  34262. height: math.unit(240, "meters"),
  34263. weight: math.unit(10000, "tons"),
  34264. name: "Bottom",
  34265. image: {
  34266. source: "./media/characters/raylldo/bottom.svg"
  34267. }
  34268. },
  34269. head: {
  34270. height: math.unit(38.6, "meters"),
  34271. name: "Head",
  34272. image: {
  34273. source: "./media/characters/raylldo/head.svg",
  34274. extra: 1335/1112,
  34275. bottom: 0/1335
  34276. }
  34277. },
  34278. maw: {
  34279. height: math.unit(16.37, "meters"),
  34280. name: "Maw",
  34281. image: {
  34282. source: "./media/characters/raylldo/maw.svg",
  34283. extra: 883/660,
  34284. bottom: 0/883
  34285. },
  34286. extraAttributes: {
  34287. preyCapacity: {
  34288. name: "Capacity",
  34289. power: 3,
  34290. type: "volume",
  34291. base: math.unit(1000, "people")
  34292. },
  34293. tongueSize: {
  34294. name: "Tongue Size",
  34295. power: 2,
  34296. type: "area",
  34297. base: math.unit(21, "m^2")
  34298. }
  34299. }
  34300. },
  34301. forepaw: {
  34302. height: math.unit(18, "meters"),
  34303. name: "Forepaw",
  34304. image: {
  34305. source: "./media/characters/raylldo/forepaw.svg"
  34306. }
  34307. },
  34308. hindpaw: {
  34309. height: math.unit(23, "meters"),
  34310. name: "Hindpaw",
  34311. image: {
  34312. source: "./media/characters/raylldo/hindpaw.svg"
  34313. }
  34314. },
  34315. genitals: {
  34316. height: math.unit(42, "meters"),
  34317. name: "Genitals",
  34318. image: {
  34319. source: "./media/characters/raylldo/genitals.svg"
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Normal",
  34326. height: math.unit(47.2, "meters"),
  34327. default: true
  34328. },
  34329. ]
  34330. ))
  34331. characterMakers.push(() => makeCharacter(
  34332. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34333. {
  34334. anthroFront: {
  34335. height: math.unit(9, "feet"),
  34336. weight: math.unit(600, "lb"),
  34337. name: "Anthro (Front)",
  34338. image: {
  34339. source: "./media/characters/glint/anthro-front.svg",
  34340. extra: 1097/1018,
  34341. bottom: 28/1125
  34342. }
  34343. },
  34344. anthroBack: {
  34345. height: math.unit(9, "feet"),
  34346. weight: math.unit(600, "lb"),
  34347. name: "Anthro (Back)",
  34348. image: {
  34349. source: "./media/characters/glint/anthro-back.svg",
  34350. extra: 1154/997,
  34351. bottom: 36/1190
  34352. }
  34353. },
  34354. feral: {
  34355. height: math.unit(11, "feet"),
  34356. weight: math.unit(50000, "lb"),
  34357. name: "Feral",
  34358. image: {
  34359. source: "./media/characters/glint/feral.svg",
  34360. extra: 3035/1585,
  34361. bottom: 1169/4204
  34362. }
  34363. },
  34364. dickAnthro: {
  34365. height: math.unit(0.7, "meters"),
  34366. name: "Dick (Anthro)",
  34367. image: {
  34368. source: "./media/characters/glint/dick-anthro.svg"
  34369. }
  34370. },
  34371. dickFeral: {
  34372. height: math.unit(2.65, "meters"),
  34373. name: "Dick (Feral)",
  34374. image: {
  34375. source: "./media/characters/glint/dick-feral.svg"
  34376. }
  34377. },
  34378. slitHidden: {
  34379. height: math.unit(5.85, "meters"),
  34380. name: "Slit (Hidden)",
  34381. image: {
  34382. source: "./media/characters/glint/slit-hidden.svg"
  34383. }
  34384. },
  34385. slitErect: {
  34386. height: math.unit(5.85, "meters"),
  34387. name: "Slit (Erect)",
  34388. image: {
  34389. source: "./media/characters/glint/slit-erect.svg"
  34390. }
  34391. },
  34392. mawAnthro: {
  34393. height: math.unit(0.63, "meters"),
  34394. name: "Maw (Anthro)",
  34395. image: {
  34396. source: "./media/characters/glint/maw.svg"
  34397. }
  34398. },
  34399. mawFeral: {
  34400. height: math.unit(2.89, "meters"),
  34401. name: "Maw (Feral)",
  34402. image: {
  34403. source: "./media/characters/glint/maw.svg"
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(9, "feet"),
  34411. default: true
  34412. },
  34413. ]
  34414. ))
  34415. characterMakers.push(() => makeCharacter(
  34416. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34417. {
  34418. side: {
  34419. height: math.unit(15, "feet"),
  34420. weight: math.unit(5000, "kg"),
  34421. name: "Side",
  34422. image: {
  34423. source: "./media/characters/kairne/side.svg",
  34424. extra: 979/811,
  34425. bottom: 13/992
  34426. }
  34427. },
  34428. front: {
  34429. height: math.unit(15, "feet"),
  34430. weight: math.unit(5000, "kg"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/kairne/front.svg",
  34434. extra: 908/814,
  34435. bottom: 26/934
  34436. }
  34437. },
  34438. sideNsfw: {
  34439. height: math.unit(15, "feet"),
  34440. weight: math.unit(5000, "kg"),
  34441. name: "Side (NSFW)",
  34442. image: {
  34443. source: "./media/characters/kairne/side-nsfw.svg",
  34444. extra: 979/811,
  34445. bottom: 13/992
  34446. }
  34447. },
  34448. frontNsfw: {
  34449. height: math.unit(15, "feet"),
  34450. weight: math.unit(5000, "kg"),
  34451. name: "Front (NSFW)",
  34452. image: {
  34453. source: "./media/characters/kairne/front-nsfw.svg",
  34454. extra: 908/814,
  34455. bottom: 26/934
  34456. }
  34457. },
  34458. dickCaged: {
  34459. height: math.unit(0.65, "meters"),
  34460. name: "Dick-caged",
  34461. image: {
  34462. source: "./media/characters/kairne/dick-caged.svg"
  34463. }
  34464. },
  34465. dick: {
  34466. height: math.unit(0.79, "meters"),
  34467. name: "Dick",
  34468. image: {
  34469. source: "./media/characters/kairne/dick.svg"
  34470. }
  34471. },
  34472. genitals: {
  34473. height: math.unit(1.29, "meters"),
  34474. name: "Genitals",
  34475. image: {
  34476. source: "./media/characters/kairne/genitals.svg"
  34477. }
  34478. },
  34479. maw: {
  34480. height: math.unit(1.73, "meters"),
  34481. name: "Maw",
  34482. image: {
  34483. source: "./media/characters/kairne/maw.svg"
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(15, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(5 + 8/12, "feet"),
  34500. weight: math.unit(139, "lb"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/biscuit-jackal/front.svg",
  34504. extra: 2106/1961,
  34505. bottom: 58/2164
  34506. }
  34507. },
  34508. back: {
  34509. height: math.unit(5 + 8/12, "feet"),
  34510. weight: math.unit(139, "lb"),
  34511. name: "Back",
  34512. image: {
  34513. source: "./media/characters/biscuit-jackal/back.svg",
  34514. extra: 2132/1976,
  34515. bottom: 57/2189
  34516. }
  34517. },
  34518. werejackal: {
  34519. height: math.unit(6 + 3/12, "feet"),
  34520. weight: math.unit(188, "lb"),
  34521. name: "Werejackal",
  34522. image: {
  34523. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34524. extra: 2373/2178,
  34525. bottom: 53/2426
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(5 + 8/12, "feet"),
  34533. default: true
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(140, "cm"),
  34542. weight: math.unit(45, "kg"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/tayra-white/front.svg",
  34546. extra: 2229/2192,
  34547. bottom: 75/2304
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(140, "cm"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(4 + 5/12, "feet"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/scoop/front.svg",
  34567. extra: 1257/1136,
  34568. bottom: 69/1326
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(4 + 5/12, "feet"),
  34573. name: "Back",
  34574. image: {
  34575. source: "./media/characters/scoop/back.svg",
  34576. extra: 1321/1152,
  34577. bottom: 32/1353
  34578. }
  34579. },
  34580. maw: {
  34581. height: math.unit(0.68, "feet"),
  34582. name: "Maw",
  34583. image: {
  34584. source: "./media/characters/scoop/maw.svg"
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Really Small",
  34591. height: math.unit(1, "mm")
  34592. },
  34593. {
  34594. name: "Micro",
  34595. height: math.unit(1, "inch")
  34596. },
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(4 + 5/12, "feet"),
  34600. default: true
  34601. },
  34602. {
  34603. name: "Macro",
  34604. height: math.unit(200, "feet")
  34605. },
  34606. {
  34607. name: "Megamacro",
  34608. height: math.unit(3240, "feet")
  34609. },
  34610. {
  34611. name: "Teramacro",
  34612. height: math.unit(2500, "miles")
  34613. },
  34614. ]
  34615. ))
  34616. characterMakers.push(() => makeCharacter(
  34617. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34618. {
  34619. front: {
  34620. height: math.unit(15 + 7/12, "feet"),
  34621. weight: math.unit(1150, "tons"),
  34622. name: "Front",
  34623. image: {
  34624. source: "./media/characters/saphinara/front.svg",
  34625. extra: 1837/1643,
  34626. bottom: 84/1921
  34627. },
  34628. form: "normal",
  34629. default: true
  34630. },
  34631. side: {
  34632. height: math.unit(15 + 7/12, "feet"),
  34633. weight: math.unit(1150, "tons"),
  34634. name: "Side",
  34635. image: {
  34636. source: "./media/characters/saphinara/side.svg",
  34637. extra: 605/547,
  34638. bottom: 6/611
  34639. },
  34640. form: "normal"
  34641. },
  34642. back: {
  34643. height: math.unit(15 + 7/12, "feet"),
  34644. weight: math.unit(1150, "tons"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/saphinara/back.svg",
  34648. extra: 591/531,
  34649. bottom: 13/604
  34650. },
  34651. form: "normal"
  34652. },
  34653. frontTail: {
  34654. height: math.unit(15 + 7/12, "feet"),
  34655. weight: math.unit(1150, "tons"),
  34656. name: "Front (Full Tail)",
  34657. image: {
  34658. source: "./media/characters/saphinara/front-tail.svg",
  34659. extra: 2256/1630,
  34660. bottom: 261/2517
  34661. },
  34662. form: "normal"
  34663. },
  34664. insides: {
  34665. height: math.unit(11.92, "feet"),
  34666. name: "Insides",
  34667. image: {
  34668. source: "./media/characters/saphinara/insides.svg"
  34669. },
  34670. form: "normal"
  34671. },
  34672. head: {
  34673. height: math.unit(4.17, "feet"),
  34674. name: "Head",
  34675. image: {
  34676. source: "./media/characters/saphinara/head.svg"
  34677. },
  34678. form: "normal"
  34679. },
  34680. tongue: {
  34681. height: math.unit(4.60, "feet"),
  34682. name: "Tongue",
  34683. image: {
  34684. source: "./media/characters/saphinara/tongue.svg"
  34685. },
  34686. form: "normal"
  34687. },
  34688. headEnraged: {
  34689. height: math.unit(5.55, "feet"),
  34690. name: "Head (Enraged)",
  34691. image: {
  34692. source: "./media/characters/saphinara/head-enraged.svg"
  34693. },
  34694. form: "normal"
  34695. },
  34696. wings: {
  34697. height: math.unit(11.95, "feet"),
  34698. name: "Wings",
  34699. image: {
  34700. source: "./media/characters/saphinara/wings.svg"
  34701. },
  34702. form: "normal"
  34703. },
  34704. feathers: {
  34705. height: math.unit(8.92, "feet"),
  34706. name: "Feathers",
  34707. image: {
  34708. source: "./media/characters/saphinara/feathers.svg"
  34709. },
  34710. form: "normal"
  34711. },
  34712. shackles: {
  34713. height: math.unit(2, "feet"),
  34714. name: "Shackles",
  34715. image: {
  34716. source: "./media/characters/saphinara/shackles.svg"
  34717. },
  34718. form: "normal"
  34719. },
  34720. eyes: {
  34721. height: math.unit(1.331, "feet"),
  34722. name: "Eyes",
  34723. image: {
  34724. source: "./media/characters/saphinara/eyes.svg"
  34725. },
  34726. form: "normal"
  34727. },
  34728. eyesEnraged: {
  34729. height: math.unit(1.331, "feet"),
  34730. name: "Eyes (Enraged)",
  34731. image: {
  34732. source: "./media/characters/saphinara/eyes-enraged.svg"
  34733. },
  34734. form: "normal"
  34735. },
  34736. trueFormSide: {
  34737. height: math.unit(200, "feet"),
  34738. weight: math.unit(1e7, "tons"),
  34739. name: "Side",
  34740. image: {
  34741. source: "./media/characters/saphinara/true-form-side.svg",
  34742. extra: 1399/770,
  34743. bottom: 97/1496
  34744. },
  34745. form: "true-form",
  34746. default: true
  34747. },
  34748. trueFormMaw: {
  34749. height: math.unit(71.5, "feet"),
  34750. name: "Maw",
  34751. image: {
  34752. source: "./media/characters/saphinara/true-form-maw.svg",
  34753. extra: 2302/1453,
  34754. bottom: 0/2302
  34755. },
  34756. form: "true-form"
  34757. },
  34758. meowberusSide: {
  34759. height: math.unit(75, "feet"),
  34760. weight: math.unit(180000, "kg"),
  34761. preyCapacity: math.unit(50000, "people"),
  34762. name: "Side",
  34763. image: {
  34764. source: "./media/characters/saphinara/meowberus-side.svg",
  34765. extra: 1400/711,
  34766. bottom: 126/1526
  34767. },
  34768. form: "meowberus",
  34769. extraAttributes: {
  34770. "pawArea": {
  34771. name: "Paw Size",
  34772. power: 2,
  34773. type: "area",
  34774. base: math.unit(35, "m^2")
  34775. }
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(15 + 7/12, "feet"),
  34783. default: true,
  34784. form: "normal"
  34785. },
  34786. {
  34787. name: "Angry",
  34788. height: math.unit(30 + 6/12, "feet"),
  34789. form: "normal"
  34790. },
  34791. {
  34792. name: "Enraged",
  34793. height: math.unit(102 + 1/12, "feet"),
  34794. form: "normal"
  34795. },
  34796. {
  34797. name: "True",
  34798. height: math.unit(200, "feet"),
  34799. default: true,
  34800. form: "true-form"
  34801. },
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(75, "feet"),
  34805. default: true,
  34806. form: "meowberus"
  34807. },
  34808. ],
  34809. {
  34810. "normal": {
  34811. name: "Normal",
  34812. default: true
  34813. },
  34814. "true-form": {
  34815. name: "True Form"
  34816. },
  34817. "meowberus": {
  34818. name: "Meowberus",
  34819. },
  34820. }
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(6 + 8/12, "feet"),
  34827. weight: math.unit(300, "lb"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/jrain/front.svg",
  34831. extra: 3039/2865,
  34832. bottom: 399/3438
  34833. }
  34834. },
  34835. back: {
  34836. height: math.unit(6 + 8/12, "feet"),
  34837. weight: math.unit(300, "lb"),
  34838. name: "Back",
  34839. image: {
  34840. source: "./media/characters/jrain/back.svg",
  34841. extra: 3089/2938,
  34842. bottom: 172/3261
  34843. }
  34844. },
  34845. head: {
  34846. height: math.unit(2.14, "feet"),
  34847. name: "Head",
  34848. image: {
  34849. source: "./media/characters/jrain/head.svg"
  34850. }
  34851. },
  34852. maw: {
  34853. height: math.unit(1.77, "feet"),
  34854. name: "Maw",
  34855. image: {
  34856. source: "./media/characters/jrain/maw.svg"
  34857. }
  34858. },
  34859. leftHand: {
  34860. height: math.unit(1.1, "feet"),
  34861. name: "Left Hand",
  34862. image: {
  34863. source: "./media/characters/jrain/left-hand.svg"
  34864. }
  34865. },
  34866. rightHand: {
  34867. height: math.unit(1.1, "feet"),
  34868. name: "Right Hand",
  34869. image: {
  34870. source: "./media/characters/jrain/right-hand.svg"
  34871. }
  34872. },
  34873. eye: {
  34874. height: math.unit(0.35, "feet"),
  34875. name: "Eye",
  34876. image: {
  34877. source: "./media/characters/jrain/eye.svg"
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(6 + 8/12, "feet"),
  34885. default: true
  34886. },
  34887. {
  34888. name: "Casually Large",
  34889. height: math.unit(25, "feet")
  34890. },
  34891. {
  34892. name: "Giant",
  34893. height: math.unit(100, "feet")
  34894. },
  34895. {
  34896. name: "Kaiju",
  34897. height: math.unit(300, "feet")
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34903. {
  34904. dragon: {
  34905. height: math.unit(5, "meters"),
  34906. name: "Dragon",
  34907. image: {
  34908. source: "./media/characters/sabrina/dragon.svg",
  34909. extra: 3670 / 2365,
  34910. bottom: 333 / 4003
  34911. }
  34912. },
  34913. gryphon: {
  34914. height: math.unit(3, "meters"),
  34915. name: "Gryphon",
  34916. image: {
  34917. source: "./media/characters/sabrina/gryphon.svg",
  34918. extra: 1576 / 945,
  34919. bottom: 71 / 1647
  34920. }
  34921. },
  34922. snake: {
  34923. height: math.unit(12, "meters"),
  34924. name: "Snake",
  34925. image: {
  34926. source: "./media/characters/sabrina/snake.svg",
  34927. extra: 1758 / 1320,
  34928. bottom: 186 / 1944
  34929. }
  34930. },
  34931. collar: {
  34932. height: math.unit(1.86, "meters"),
  34933. name: "Collar",
  34934. image: {
  34935. source: "./media/characters/sabrina/collar.svg"
  34936. }
  34937. },
  34938. eye: {
  34939. height: math.unit(0.53, "meters"),
  34940. name: "Eye",
  34941. image: {
  34942. source: "./media/characters/sabrina/eye.svg"
  34943. }
  34944. },
  34945. foot: {
  34946. height: math.unit(1.86, "meters"),
  34947. name: "Foot",
  34948. image: {
  34949. source: "./media/characters/sabrina/foot.svg"
  34950. }
  34951. },
  34952. hand: {
  34953. height: math.unit(1.32, "meters"),
  34954. name: "Hand",
  34955. image: {
  34956. source: "./media/characters/sabrina/hand.svg"
  34957. }
  34958. },
  34959. head: {
  34960. height: math.unit(2.44, "meters"),
  34961. name: "Head",
  34962. image: {
  34963. source: "./media/characters/sabrina/head.svg"
  34964. }
  34965. },
  34966. headAngry: {
  34967. height: math.unit(2.44, "meters"),
  34968. name: "Head (Angry))",
  34969. image: {
  34970. source: "./media/characters/sabrina/head-angry.svg"
  34971. }
  34972. },
  34973. maw: {
  34974. height: math.unit(1.65, "meters"),
  34975. name: "Maw",
  34976. image: {
  34977. source: "./media/characters/sabrina/maw.svg"
  34978. }
  34979. },
  34980. spikes: {
  34981. height: math.unit(1.69, "meters"),
  34982. name: "Spikes",
  34983. image: {
  34984. source: "./media/characters/sabrina/spikes.svg"
  34985. }
  34986. },
  34987. stomach: {
  34988. height: math.unit(1.15, "meters"),
  34989. name: "Stomach",
  34990. image: {
  34991. source: "./media/characters/sabrina/stomach.svg"
  34992. }
  34993. },
  34994. tongue: {
  34995. height: math.unit(1.27, "meters"),
  34996. name: "Tongue",
  34997. image: {
  34998. source: "./media/characters/sabrina/tongue.svg"
  34999. }
  35000. },
  35001. wingDorsal: {
  35002. height: math.unit(4.85, "meters"),
  35003. name: "Wing (Dorsal)",
  35004. image: {
  35005. source: "./media/characters/sabrina/wing-dorsal.svg"
  35006. }
  35007. },
  35008. wingVentral: {
  35009. height: math.unit(4.85, "meters"),
  35010. name: "Wing (Ventral)",
  35011. image: {
  35012. source: "./media/characters/sabrina/wing-ventral.svg"
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(5, "meters"),
  35020. default: true
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35026. {
  35027. frontMaid: {
  35028. height: math.unit(5 + 5/12, "feet"),
  35029. weight: math.unit(130, "lb"),
  35030. name: "Front (Maid)",
  35031. image: {
  35032. source: "./media/characters/midnight-tales/front-maid.svg",
  35033. extra: 489/454,
  35034. bottom: 61/550
  35035. }
  35036. },
  35037. frontFormal: {
  35038. height: math.unit(5 + 5/12, "feet"),
  35039. weight: math.unit(130, "lb"),
  35040. name: "Front (Formal)",
  35041. image: {
  35042. source: "./media/characters/midnight-tales/front-formal.svg",
  35043. extra: 489/454,
  35044. bottom: 61/550
  35045. }
  35046. },
  35047. back: {
  35048. height: math.unit(5 + 5/12, "feet"),
  35049. weight: math.unit(130, "lb"),
  35050. name: "Back",
  35051. image: {
  35052. source: "./media/characters/midnight-tales/back.svg",
  35053. extra: 498/456,
  35054. bottom: 33/531
  35055. }
  35056. },
  35057. frontBeast: {
  35058. height: math.unit(40, "feet"),
  35059. weight: math.unit(64000, "lb"),
  35060. name: "Front (Beast)",
  35061. image: {
  35062. source: "./media/characters/midnight-tales/front-beast.svg",
  35063. extra: 927/860,
  35064. bottom: 53/980
  35065. }
  35066. },
  35067. backBeast: {
  35068. height: math.unit(40, "feet"),
  35069. weight: math.unit(64000, "lb"),
  35070. name: "Back (Beast)",
  35071. image: {
  35072. source: "./media/characters/midnight-tales/back-beast.svg",
  35073. extra: 929/855,
  35074. bottom: 16/945
  35075. }
  35076. },
  35077. footBeast: {
  35078. height: math.unit(6.7, "feet"),
  35079. name: "Foot (Beast)",
  35080. image: {
  35081. source: "./media/characters/midnight-tales/foot-beast.svg"
  35082. }
  35083. },
  35084. headBeast: {
  35085. height: math.unit(8, "feet"),
  35086. name: "Head (Beast)",
  35087. image: {
  35088. source: "./media/characters/midnight-tales/head-beast.svg"
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(5 + 5 / 12, "feet"),
  35096. default: true
  35097. },
  35098. {
  35099. name: "Macro",
  35100. height: math.unit(25, "feet")
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(5 + 10/12, "feet"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/argon/front.svg",
  35112. extra: 2009/1935,
  35113. bottom: 118/2127
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(5 + 10/12, "feet"),
  35118. name: "Back",
  35119. image: {
  35120. source: "./media/characters/argon/back.svg",
  35121. extra: 2047/1992,
  35122. bottom: 20/2067
  35123. }
  35124. },
  35125. frontDressed: {
  35126. height: math.unit(5 + 10/12, "feet"),
  35127. name: "Front (Dressed)",
  35128. image: {
  35129. source: "./media/characters/argon/front-dressed.svg",
  35130. extra: 2009/1935,
  35131. bottom: 118/2127
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(5 + 10/12, "feet"),
  35139. default: true
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35145. {
  35146. front: {
  35147. height: math.unit(8 + 6/12, "feet"),
  35148. weight: math.unit(1150, "lb"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/kichi/front.svg",
  35152. extra: 1267/1164,
  35153. bottom: 61/1328
  35154. }
  35155. },
  35156. back: {
  35157. height: math.unit(8 + 6/12, "feet"),
  35158. weight: math.unit(1150, "lb"),
  35159. name: "Back",
  35160. image: {
  35161. source: "./media/characters/kichi/back.svg",
  35162. extra: 1273/1166,
  35163. bottom: 33/1306
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(8 + 6/12, "feet"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(6, "feet"),
  35180. weight: math.unit(210, "lb"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/manetel-greyscale/front.svg",
  35184. extra: 350/312,
  35185. bottom: 8/358
  35186. }
  35187. },
  35188. },
  35189. [
  35190. {
  35191. name: "Micro",
  35192. height: math.unit(2, "inches")
  35193. },
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(6, "feet"),
  35197. default: true
  35198. },
  35199. {
  35200. name: "Minimacro",
  35201. height: math.unit(17, "feet")
  35202. },
  35203. {
  35204. name: "Macro",
  35205. height: math.unit(117, "feet")
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35211. {
  35212. side: {
  35213. height: math.unit(5 + 1/12, "feet"),
  35214. weight: math.unit(418, "lb"),
  35215. name: "Side",
  35216. image: {
  35217. source: "./media/characters/softpurr/side.svg",
  35218. extra: 1993/1945,
  35219. bottom: 134/2127
  35220. }
  35221. },
  35222. front: {
  35223. height: math.unit(5 + 1/12, "feet"),
  35224. weight: math.unit(418, "lb"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/softpurr/front.svg",
  35228. extra: 1950/1856,
  35229. bottom: 174/2124
  35230. }
  35231. },
  35232. paw: {
  35233. height: math.unit(1, "feet"),
  35234. name: "Paw",
  35235. image: {
  35236. source: "./media/characters/softpurr/paw.svg"
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(5 + 1/12, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(260, "meters"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/anahita/front.svg",
  35256. extra: 665/635,
  35257. bottom: 89/754
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Macro",
  35264. height: math.unit(260, "meters"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(4 + 10/12, "feet"),
  35274. weight: math.unit(160, "lb"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/chip-mouse/front.svg",
  35278. extra: 3528/3408,
  35279. bottom: 0/3528
  35280. }
  35281. },
  35282. frontNsfw: {
  35283. height: math.unit(4 + 10/12, "feet"),
  35284. weight: math.unit(160, "lb"),
  35285. name: "Front (NSFW)",
  35286. image: {
  35287. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35288. extra: 3528/3408,
  35289. bottom: 0/3528
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(4 + 10/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35303. {
  35304. side: {
  35305. height: math.unit(10, "feet"),
  35306. weight: math.unit(14000, "lb"),
  35307. name: "Side",
  35308. image: {
  35309. source: "./media/characters/kremm/side.svg",
  35310. extra: 1390/1053,
  35311. bottom: 90/1480
  35312. }
  35313. },
  35314. gut: {
  35315. height: math.unit(5.8, "feet"),
  35316. name: "Gut",
  35317. image: {
  35318. source: "./media/characters/kremm/gut.svg"
  35319. }
  35320. },
  35321. ass: {
  35322. height: math.unit(6.1, "feet"),
  35323. name: "Ass",
  35324. image: {
  35325. source: "./media/characters/kremm/ass.svg"
  35326. }
  35327. },
  35328. jaws: {
  35329. height: math.unit(2.2, "feet"),
  35330. name: "Jaws",
  35331. image: {
  35332. source: "./media/characters/kremm/jaws.svg"
  35333. }
  35334. },
  35335. dick: {
  35336. height: math.unit(4.26, "feet"),
  35337. name: "Dick",
  35338. image: {
  35339. source: "./media/characters/kremm/dick.svg"
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(10, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(30, "stories"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/kai/front.svg",
  35359. extra: 1892/1718,
  35360. bottom: 162/2054
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Macro",
  35367. height: math.unit(30, "stories"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(6 + 4/12, "feet"),
  35377. weight: math.unit(145, "lb"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/sykes/front.svg",
  35381. extra: 1321 / 1187,
  35382. bottom: 66 / 1387
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(6 + 4/12, "feet"),
  35387. weight: math.unit(145, "lb"),
  35388. name: "Back",
  35389. image: {
  35390. source: "./media/characters/sykes/back.svg",
  35391. extra: 1326/1181,
  35392. bottom: 31/1357
  35393. }
  35394. },
  35395. traditionalOutfit: {
  35396. height: math.unit(6 + 4/12, "feet"),
  35397. weight: math.unit(145, "lb"),
  35398. name: "Traditional Outfit",
  35399. image: {
  35400. source: "./media/characters/sykes/traditional-outfit.svg",
  35401. extra: 1321 / 1187,
  35402. bottom: 66 / 1387
  35403. }
  35404. },
  35405. adventureOutfit: {
  35406. height: math.unit(6 + 4/12, "feet"),
  35407. weight: math.unit(145, "lb"),
  35408. name: "Adventure Outfit",
  35409. image: {
  35410. source: "./media/characters/sykes/adventure-outfit.svg",
  35411. extra: 1321 / 1187,
  35412. bottom: 66 / 1387
  35413. }
  35414. },
  35415. handLeft: {
  35416. height: math.unit(0.9, "feet"),
  35417. name: "Hand (Left)",
  35418. image: {
  35419. source: "./media/characters/sykes/hand-left.svg"
  35420. }
  35421. },
  35422. handRight: {
  35423. height: math.unit(0.839, "feet"),
  35424. name: "Hand (Right)",
  35425. image: {
  35426. source: "./media/characters/sykes/hand-right.svg"
  35427. }
  35428. },
  35429. leftFoot: {
  35430. height: math.unit(1.2, "feet"),
  35431. name: "Foot (Left)",
  35432. image: {
  35433. source: "./media/characters/sykes/foot-left.svg"
  35434. }
  35435. },
  35436. rightFoot: {
  35437. height: math.unit(1.2, "feet"),
  35438. name: "Foot (Right)",
  35439. image: {
  35440. source: "./media/characters/sykes/foot-right.svg"
  35441. }
  35442. },
  35443. maw: {
  35444. height: math.unit(1.93, "feet"),
  35445. name: "Maw",
  35446. image: {
  35447. source: "./media/characters/sykes/maw.svg"
  35448. }
  35449. },
  35450. teeth: {
  35451. height: math.unit(0.51, "feet"),
  35452. name: "Teeth",
  35453. image: {
  35454. source: "./media/characters/sykes/teeth.svg"
  35455. }
  35456. },
  35457. tongue: {
  35458. height: math.unit(2.13, "feet"),
  35459. name: "Tongue",
  35460. image: {
  35461. source: "./media/characters/sykes/tongue.svg"
  35462. }
  35463. },
  35464. uvula: {
  35465. height: math.unit(0.16, "feet"),
  35466. name: "Uvula",
  35467. image: {
  35468. source: "./media/characters/sykes/uvula.svg"
  35469. }
  35470. },
  35471. collar: {
  35472. height: math.unit(0.287, "feet"),
  35473. name: "Collar",
  35474. image: {
  35475. source: "./media/characters/sykes/collar.svg"
  35476. }
  35477. },
  35478. tail: {
  35479. height: math.unit(3.8, "feet"),
  35480. name: "Tail",
  35481. image: {
  35482. source: "./media/characters/sykes/tail.svg"
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Shrunken",
  35489. height: math.unit(5, "inches")
  35490. },
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(6 + 4 / 12, "feet"),
  35494. default: true
  35495. },
  35496. {
  35497. name: "Big",
  35498. height: math.unit(15, "feet")
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(5 + 8/12, "feet"),
  35507. weight: math.unit(190, "lb"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/oven-otter/front.svg",
  35511. extra: 1809/1740,
  35512. bottom: 181/1990
  35513. }
  35514. },
  35515. back: {
  35516. height: math.unit(5 + 8/12, "feet"),
  35517. weight: math.unit(190, "lb"),
  35518. name: "Back",
  35519. image: {
  35520. source: "./media/characters/oven-otter/back.svg",
  35521. extra: 1709/1635,
  35522. bottom: 118/1827
  35523. }
  35524. },
  35525. hand: {
  35526. height: math.unit(1.07, "feet"),
  35527. name: "Hand",
  35528. image: {
  35529. source: "./media/characters/oven-otter/hand.svg"
  35530. }
  35531. },
  35532. beans: {
  35533. height: math.unit(1.74, "feet"),
  35534. name: "Beans",
  35535. image: {
  35536. source: "./media/characters/oven-otter/beans.svg"
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Micro",
  35543. height: math.unit(0.5, "inches")
  35544. },
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(5 + 8/12, "feet"),
  35548. default: true
  35549. },
  35550. {
  35551. name: "Macro",
  35552. height: math.unit(250, "feet")
  35553. },
  35554. {
  35555. name: "Really High",
  35556. height: math.unit(420, "feet")
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(5, "meters"),
  35565. weight: math.unit(292000000000000, "kg"),
  35566. name: "Front",
  35567. image: {
  35568. source: "./media/characters/devourer/front.svg",
  35569. extra: 1800/1733,
  35570. bottom: 211/2011
  35571. }
  35572. },
  35573. maw: {
  35574. height: math.unit(1.1, "meter"),
  35575. name: "Maw",
  35576. image: {
  35577. source: "./media/characters/devourer/maw.svg"
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Small",
  35584. height: math.unit(3, "meters")
  35585. },
  35586. {
  35587. name: "Large",
  35588. height: math.unit(5, "meters"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35595. {
  35596. front: {
  35597. height: math.unit(6, "feet"),
  35598. weight: math.unit(400, "lb"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/ellarby/front.svg",
  35602. extra: 1909/1763,
  35603. bottom: 80/1989
  35604. }
  35605. },
  35606. back: {
  35607. height: math.unit(6, "feet"),
  35608. weight: math.unit(400, "lb"),
  35609. name: "Back",
  35610. image: {
  35611. source: "./media/characters/ellarby/back.svg",
  35612. extra: 1914/1784,
  35613. bottom: 172/2086
  35614. }
  35615. },
  35616. },
  35617. [
  35618. {
  35619. name: "Mischief",
  35620. height: math.unit(18, "inches")
  35621. },
  35622. {
  35623. name: "Trouble",
  35624. height: math.unit(12, "feet")
  35625. },
  35626. {
  35627. name: "Havoc",
  35628. height: math.unit(200, "feet"),
  35629. default: true
  35630. },
  35631. {
  35632. name: "Pandemonium",
  35633. height: math.unit(1, "mile")
  35634. },
  35635. {
  35636. name: "Catastrophe",
  35637. height: math.unit(100, "miles")
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35643. {
  35644. front: {
  35645. height: math.unit(4.7, "meters"),
  35646. weight: math.unit(6500, "kg"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/vex/front.svg",
  35650. extra: 1288/1140,
  35651. bottom: 100/1388
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(4.7, "meters"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35665. {
  35666. normal: {
  35667. height: math.unit(6, "feet"),
  35668. weight: math.unit(350, "lb"),
  35669. name: "Normal",
  35670. image: {
  35671. source: "./media/characters/teshy/normal.svg",
  35672. extra: 1795/1735,
  35673. bottom: 16/1811
  35674. }
  35675. },
  35676. monsterFront: {
  35677. height: math.unit(12, "feet"),
  35678. weight: math.unit(4700, "lb"),
  35679. name: "Monster (Front)",
  35680. image: {
  35681. source: "./media/characters/teshy/monster-front.svg",
  35682. extra: 2042/2034,
  35683. bottom: 128/2170
  35684. }
  35685. },
  35686. monsterSide: {
  35687. height: math.unit(12, "feet"),
  35688. weight: math.unit(4700, "lb"),
  35689. name: "Monster (Side)",
  35690. image: {
  35691. source: "./media/characters/teshy/monster-side.svg",
  35692. extra: 2067/2056,
  35693. bottom: 70/2137
  35694. }
  35695. },
  35696. monsterBack: {
  35697. height: math.unit(12, "feet"),
  35698. weight: math.unit(4700, "lb"),
  35699. name: "Monster (Back)",
  35700. image: {
  35701. source: "./media/characters/teshy/monster-back.svg",
  35702. extra: 1921/1914,
  35703. bottom: 171/2092
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(6, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(6, "feet"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/ramey/front.svg",
  35723. extra: 790/787,
  35724. bottom: 27/817
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(6, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35738. {
  35739. front: {
  35740. height: math.unit(5 + 5/12, "feet"),
  35741. weight: math.unit(120, "lb"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/phirae/front.svg",
  35745. extra: 2491/2436,
  35746. bottom: 38/2529
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 5/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35760. {
  35761. front: {
  35762. height: math.unit(5 + 3/12, "feet"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/stagglas/front.svg",
  35766. extra: 962/882,
  35767. bottom: 53/1015
  35768. }
  35769. },
  35770. feral: {
  35771. height: math.unit(335, "cm"),
  35772. name: "Feral",
  35773. image: {
  35774. source: "./media/characters/stagglas/feral.svg",
  35775. extra: 1732/1090,
  35776. bottom: 48/1780
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(5 + 3/12, "feet"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(5 + 4/12, "feet"),
  35793. weight: math.unit(145, "lb"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/starra/front.svg",
  35797. extra: 1790/1691,
  35798. bottom: 91/1881
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(5 + 4/12, "feet"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(2.2, "meters"),
  35815. name: "Front",
  35816. image: {
  35817. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35818. extra: 1194/1005,
  35819. bottom: 25/1219
  35820. }
  35821. },
  35822. },
  35823. [
  35824. {
  35825. name: "Normal",
  35826. height: math.unit(2.2, "meters"),
  35827. default: true
  35828. },
  35829. ]
  35830. ))
  35831. characterMakers.push(() => makeCharacter(
  35832. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35833. {
  35834. side: {
  35835. height: math.unit(8 + 2/12, "feet"),
  35836. weight: math.unit(1240, "lb"),
  35837. name: "Side",
  35838. image: {
  35839. source: "./media/characters/mika-valentine/side.svg",
  35840. extra: 2670/2501,
  35841. bottom: 250/2920
  35842. }
  35843. },
  35844. },
  35845. [
  35846. {
  35847. name: "Normal",
  35848. height: math.unit(8 + 2/12, "feet"),
  35849. default: true
  35850. },
  35851. ]
  35852. ))
  35853. characterMakers.push(() => makeCharacter(
  35854. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35855. {
  35856. front: {
  35857. height: math.unit(7 + 2/12, "feet"),
  35858. name: "Front",
  35859. image: {
  35860. source: "./media/characters/xoltol/front.svg",
  35861. extra: 2212/2124,
  35862. bottom: 84/2296
  35863. }
  35864. },
  35865. side: {
  35866. height: math.unit(7 + 2/12, "feet"),
  35867. name: "Side",
  35868. image: {
  35869. source: "./media/characters/xoltol/side.svg",
  35870. extra: 2273/2197,
  35871. bottom: 26/2299
  35872. }
  35873. },
  35874. hand: {
  35875. height: math.unit(2.5, "feet"),
  35876. name: "Hand",
  35877. image: {
  35878. source: "./media/characters/xoltol/hand.svg"
  35879. }
  35880. },
  35881. },
  35882. [
  35883. {
  35884. name: "Small-ish",
  35885. height: math.unit(5 + 11/12, "feet")
  35886. },
  35887. {
  35888. name: "Normal",
  35889. height: math.unit(7 + 2/12, "feet")
  35890. },
  35891. {
  35892. name: "\"Macro\"",
  35893. height: math.unit(14 + 9/12, "feet"),
  35894. default: true
  35895. },
  35896. {
  35897. name: "Alternate Height",
  35898. height: math.unit(20, "feet")
  35899. },
  35900. {
  35901. name: "Actually Macro",
  35902. height: math.unit(100, "feet")
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35908. {
  35909. front: {
  35910. height: math.unit(5 + 2/12, "feet"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/kotetsu-redwood/front.svg",
  35914. extra: 1053/942,
  35915. bottom: 60/1113
  35916. }
  35917. },
  35918. },
  35919. [
  35920. {
  35921. name: "Normal",
  35922. height: math.unit(5 + 2/12, "feet"),
  35923. default: true
  35924. },
  35925. ]
  35926. ))
  35927. characterMakers.push(() => makeCharacter(
  35928. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35929. {
  35930. front: {
  35931. height: math.unit(2.4, "meters"),
  35932. weight: math.unit(125, "kg"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/lilith/front.svg",
  35936. extra: 1590/1513,
  35937. bottom: 203/1793
  35938. }
  35939. },
  35940. },
  35941. [
  35942. {
  35943. name: "Humanoid",
  35944. height: math.unit(2.4, "meters")
  35945. },
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(6, "meters"),
  35949. default: true
  35950. },
  35951. {
  35952. name: "Largest",
  35953. height: math.unit(55, "meters")
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35959. {
  35960. front: {
  35961. height: math.unit(8 + 4/12, "feet"),
  35962. weight: math.unit(535, "lb"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/beh'kah-bolger/front.svg",
  35966. extra: 1660/1603,
  35967. bottom: 37/1697
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(8 + 4/12, "feet"),
  35975. default: true
  35976. },
  35977. {
  35978. name: "Kaiju",
  35979. height: math.unit(250, "feet")
  35980. },
  35981. {
  35982. name: "Still Growing",
  35983. height: math.unit(10, "miles")
  35984. },
  35985. {
  35986. name: "Continental",
  35987. height: math.unit(5000, "miles")
  35988. },
  35989. {
  35990. name: "Final Form",
  35991. height: math.unit(2500000, "miles")
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35997. {
  35998. front: {
  35999. height: math.unit(7 + 2/12, "feet"),
  36000. weight: math.unit(230, "kg"),
  36001. name: "Front",
  36002. image: {
  36003. source: "./media/characters/tatyana-milewska/front.svg",
  36004. extra: 1199/1150,
  36005. bottom: 86/1285
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(7 + 2/12, "feet"),
  36013. default: true
  36014. },
  36015. {
  36016. name: "Big",
  36017. height: math.unit(12, "feet")
  36018. },
  36019. {
  36020. name: "Minimacro",
  36021. height: math.unit(20, "feet")
  36022. },
  36023. {
  36024. name: "Macro",
  36025. height: math.unit(120, "feet")
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(7 + 8/12, "feet"),
  36034. weight: math.unit(152, "kg"),
  36035. name: "Front",
  36036. image: {
  36037. source: "./media/characters/helen-arri/front.svg",
  36038. extra: 440/423,
  36039. bottom: 14/454
  36040. }
  36041. },
  36042. back: {
  36043. height: math.unit(7 + 8/12, "feet"),
  36044. weight: math.unit(152, "kg"),
  36045. name: "Back",
  36046. image: {
  36047. source: "./media/characters/helen-arri/back.svg",
  36048. extra: 443/426,
  36049. bottom: 8/451
  36050. }
  36051. },
  36052. },
  36053. [
  36054. {
  36055. name: "Normal",
  36056. height: math.unit(7 + 8/12, "feet"),
  36057. default: true
  36058. },
  36059. {
  36060. name: "Big",
  36061. height: math.unit(14, "feet")
  36062. },
  36063. {
  36064. name: "Minimacro",
  36065. height: math.unit(24, "feet")
  36066. },
  36067. {
  36068. name: "Macro",
  36069. height: math.unit(140, "feet")
  36070. },
  36071. ]
  36072. ))
  36073. characterMakers.push(() => makeCharacter(
  36074. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36075. {
  36076. front: {
  36077. height: math.unit(6, "meters"),
  36078. name: "Front",
  36079. image: {
  36080. source: "./media/characters/ehanu-rehu/front.svg",
  36081. extra: 1800/1800,
  36082. bottom: 59/1859
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(6, "meters"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(7 + 3/12, "feet"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/renholder/front.svg",
  36102. extra: 3096/2960,
  36103. bottom: 250/3346
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal Bat",
  36110. height: math.unit(7 + 3/12, "feet"),
  36111. default: true
  36112. },
  36113. {
  36114. name: "Slightly Tall Bat",
  36115. height: math.unit(100, "feet")
  36116. },
  36117. {
  36118. name: "Big Bat",
  36119. height: math.unit(1000, "feet")
  36120. },
  36121. {
  36122. name: "City-Sized Bat",
  36123. height: math.unit(200000, "feet")
  36124. },
  36125. {
  36126. name: "Bigger Bat",
  36127. height: math.unit(10000, "miles")
  36128. },
  36129. {
  36130. name: "Solar Sized Bat",
  36131. height: math.unit(100, "AU")
  36132. },
  36133. {
  36134. name: "Galactic Bat",
  36135. height: math.unit(200000, "lightyears")
  36136. },
  36137. {
  36138. name: "Universally Known Bat",
  36139. height: math.unit(1, "universe")
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(6 + 11/12, "feet"),
  36148. weight: math.unit(250, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/cookiecat/front.svg",
  36152. extra: 893/827,
  36153. bottom: 14/907
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Micro",
  36160. height: math.unit(3, "inches")
  36161. },
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(6 + 11/12, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Macro",
  36169. height: math.unit(100, "feet")
  36170. },
  36171. {
  36172. name: "Macro+",
  36173. height: math.unit(404, "feet")
  36174. },
  36175. {
  36176. name: "Megamacro",
  36177. height: math.unit(165, "miles")
  36178. },
  36179. {
  36180. name: "Planetary",
  36181. height: math.unit(4600, "miles")
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(10 + 3/12, "feet"),
  36190. weight: math.unit(1500, "lb"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/tux-kusanagi/front.svg",
  36194. extra: 944/840,
  36195. bottom: 39/983
  36196. }
  36197. },
  36198. back: {
  36199. height: math.unit(10 + 3/12, "feet"),
  36200. weight: math.unit(1500, "lb"),
  36201. name: "Back",
  36202. image: {
  36203. source: "./media/characters/tux-kusanagi/back.svg",
  36204. extra: 941/842,
  36205. bottom: 28/969
  36206. }
  36207. },
  36208. rump: {
  36209. height: math.unit(5.25, "feet"),
  36210. name: "Rump",
  36211. image: {
  36212. source: "./media/characters/tux-kusanagi/rump.svg"
  36213. }
  36214. },
  36215. beak: {
  36216. height: math.unit(1.54, "feet"),
  36217. name: "Beak",
  36218. image: {
  36219. source: "./media/characters/tux-kusanagi/beak.svg"
  36220. }
  36221. },
  36222. },
  36223. [
  36224. {
  36225. name: "Normal",
  36226. height: math.unit(10 + 3/12, "feet"),
  36227. default: true
  36228. },
  36229. ]
  36230. ))
  36231. characterMakers.push(() => makeCharacter(
  36232. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36233. {
  36234. front: {
  36235. height: math.unit(58, "feet"),
  36236. weight: math.unit(200, "tons"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/uzarmazari/front.svg",
  36240. extra: 1575/1455,
  36241. bottom: 152/1727
  36242. }
  36243. },
  36244. back: {
  36245. height: math.unit(58, "feet"),
  36246. weight: math.unit(200, "tons"),
  36247. name: "Back",
  36248. image: {
  36249. source: "./media/characters/uzarmazari/back.svg",
  36250. extra: 1585/1510,
  36251. bottom: 157/1742
  36252. }
  36253. },
  36254. head: {
  36255. height: math.unit(26, "feet"),
  36256. name: "Head",
  36257. image: {
  36258. source: "./media/characters/uzarmazari/head.svg"
  36259. }
  36260. },
  36261. },
  36262. [
  36263. {
  36264. name: "Normal",
  36265. height: math.unit(58, "feet"),
  36266. default: true
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36272. {
  36273. side: {
  36274. height: math.unit(15, "feet"),
  36275. name: "Side",
  36276. image: {
  36277. source: "./media/characters/akitu/side.svg",
  36278. extra: 1421/1321,
  36279. bottom: 157/1578
  36280. }
  36281. },
  36282. front: {
  36283. height: math.unit(15, "feet"),
  36284. name: "Front",
  36285. image: {
  36286. source: "./media/characters/akitu/front.svg",
  36287. extra: 1435/1326,
  36288. bottom: 232/1667
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(15, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(10 + 8/12, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/azalie-croixland/front.svg",
  36308. extra: 1972/1856,
  36309. bottom: 31/2003
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Original Height",
  36316. height: math.unit(5 + 4/12, "feet")
  36317. },
  36318. {
  36319. name: "Normal Height",
  36320. height: math.unit(10 + 8/12, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36327. {
  36328. side: {
  36329. height: math.unit(7 + 1/12, "feet"),
  36330. weight: math.unit(245, "lb"),
  36331. name: "Side",
  36332. image: {
  36333. source: "./media/characters/kavus-kazian/side.svg",
  36334. extra: 349/342,
  36335. bottom: 15/364
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(7 + 1/12, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36349. {
  36350. normalFront: {
  36351. height: math.unit(5 + 11/12, "feet"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/moonlight-rose/normal-front.svg",
  36355. extra: 1980/1825,
  36356. bottom: 18/1998
  36357. },
  36358. form: "normal",
  36359. default: true
  36360. },
  36361. normalBack: {
  36362. height: math.unit(5 + 11/12, "feet"),
  36363. name: "Back",
  36364. image: {
  36365. source: "./media/characters/moonlight-rose/normal-back.svg",
  36366. extra: 2010/1839,
  36367. bottom: 10/2020
  36368. },
  36369. form: "normal"
  36370. },
  36371. demonFront: {
  36372. height: math.unit(1.5, "earths"),
  36373. name: "Front",
  36374. image: {
  36375. source: "./media/characters/moonlight-rose/demon.svg",
  36376. extra: 1400/1294,
  36377. bottom: 45/1445
  36378. },
  36379. form: "demon",
  36380. default: true
  36381. },
  36382. terraFront: {
  36383. height: math.unit(1.5, "earths"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/moonlight-rose/terra.svg"
  36387. },
  36388. form: "terra",
  36389. default: true
  36390. },
  36391. jupiterFront: {
  36392. height: math.unit(69911*2, "km"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36396. extra: 1367/1286,
  36397. bottom: 55/1422
  36398. },
  36399. form: "jupiter",
  36400. default: true
  36401. },
  36402. neptuneFront: {
  36403. height: math.unit(24622*2, "feet"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36407. extra: 1851/1712,
  36408. bottom: 0/1851
  36409. },
  36410. form: "neptune",
  36411. default: true
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "\"Natural\" Height",
  36417. height: math.unit(5 + 11/12, "feet"),
  36418. form: "normal"
  36419. },
  36420. {
  36421. name: "Smallest comfortable size",
  36422. height: math.unit(40, "meters"),
  36423. form: "normal"
  36424. },
  36425. {
  36426. name: "Common size",
  36427. height: math.unit(50, "km"),
  36428. form: "normal",
  36429. default: true
  36430. },
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(1.5, "earths"),
  36434. form: "demon",
  36435. default: true
  36436. },
  36437. {
  36438. name: "Universal",
  36439. height: math.unit(15, "universes"),
  36440. form: "demon"
  36441. },
  36442. {
  36443. name: "Earth",
  36444. height: math.unit(1.5, "earths"),
  36445. form: "terra",
  36446. default: true
  36447. },
  36448. {
  36449. name: "Super Earth",
  36450. height: math.unit(67.5, "earths"),
  36451. form: "terra"
  36452. },
  36453. {
  36454. name: "Doesn't fit in a solar system...",
  36455. height: math.unit(1, "galaxy"),
  36456. form: "terra"
  36457. },
  36458. {
  36459. name: "Saturn",
  36460. height: math.unit(58232*2, "km"),
  36461. form: "jupiter"
  36462. },
  36463. {
  36464. name: "Jupiter",
  36465. height: math.unit(69911*2, "km"),
  36466. form: "jupiter",
  36467. default: true
  36468. },
  36469. {
  36470. name: "HD 100546 b",
  36471. height: math.unit(482938, "km"),
  36472. form: "jupiter"
  36473. },
  36474. {
  36475. name: "Enceladus",
  36476. height: math.unit(513*2, "km"),
  36477. form: "neptune"
  36478. },
  36479. {
  36480. name: "Europe",
  36481. height: math.unit(1560*2, "km"),
  36482. form: "neptune"
  36483. },
  36484. {
  36485. name: "Neptune",
  36486. height: math.unit(24622*2, "km"),
  36487. form: "neptune",
  36488. default: true
  36489. },
  36490. {
  36491. name: "CoRoT-9b",
  36492. height: math.unit(75067*2, "km"),
  36493. form: "neptune"
  36494. },
  36495. ],
  36496. {
  36497. "normal": {
  36498. name: "Normal",
  36499. default: true
  36500. },
  36501. "demon": {
  36502. name: "Demon"
  36503. },
  36504. "terra": {
  36505. name: "Terra"
  36506. },
  36507. "jupiter": {
  36508. name: "Jupiter"
  36509. },
  36510. "neptune": {
  36511. name: "Neptune"
  36512. }
  36513. }
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36517. {
  36518. front: {
  36519. height: math.unit(16, "feet"),
  36520. weight: math.unit(610, "kg"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/huckle/front.svg",
  36524. extra: 1731/1625,
  36525. bottom: 33/1764
  36526. }
  36527. },
  36528. back: {
  36529. height: math.unit(16, "feet"),
  36530. weight: math.unit(610, "kg"),
  36531. name: "Back",
  36532. image: {
  36533. source: "./media/characters/huckle/back.svg",
  36534. extra: 1738/1651,
  36535. bottom: 37/1775
  36536. }
  36537. },
  36538. laughing: {
  36539. height: math.unit(3.75, "feet"),
  36540. name: "Laughing",
  36541. image: {
  36542. source: "./media/characters/huckle/laughing.svg"
  36543. }
  36544. },
  36545. angry: {
  36546. height: math.unit(4.15, "feet"),
  36547. name: "Angry",
  36548. image: {
  36549. source: "./media/characters/huckle/angry.svg"
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(16, "feet"),
  36557. default: true
  36558. },
  36559. {
  36560. name: "Mini Macro",
  36561. height: math.unit(463, "feet")
  36562. },
  36563. {
  36564. name: "Macro",
  36565. height: math.unit(1680, "meters")
  36566. },
  36567. {
  36568. name: "Mega Macro",
  36569. height: math.unit(175, "km")
  36570. },
  36571. {
  36572. name: "Terra Macro",
  36573. height: math.unit(32, "gigameters")
  36574. },
  36575. {
  36576. name: "Multiverse+",
  36577. height: math.unit(2.56e23, "yottameters")
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36583. {
  36584. front: {
  36585. height: math.unit(6 + 9/12, "feet"),
  36586. weight: math.unit(280, "lb"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/candy/front.svg",
  36590. extra: 234/217,
  36591. bottom: 11/245
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Really Small",
  36598. height: math.unit(0.1, "nm")
  36599. },
  36600. {
  36601. name: "Micro",
  36602. height: math.unit(2, "inches")
  36603. },
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(6 + 9/12, "feet"),
  36607. default: true
  36608. },
  36609. {
  36610. name: "Small Macro",
  36611. height: math.unit(69, "feet")
  36612. },
  36613. {
  36614. name: "Macro",
  36615. height: math.unit(160, "feet")
  36616. },
  36617. {
  36618. name: "Megamacro",
  36619. height: math.unit(22000, "miles")
  36620. },
  36621. {
  36622. name: "Gigamacro",
  36623. height: math.unit(50000, "miles")
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(4, "feet"),
  36632. weight: math.unit(90, "lb"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/joey-mcdonald/front.svg",
  36636. extra: 1059/852,
  36637. bottom: 33/1092
  36638. }
  36639. },
  36640. back: {
  36641. height: math.unit(4, "feet"),
  36642. weight: math.unit(90, "lb"),
  36643. name: "Back",
  36644. image: {
  36645. source: "./media/characters/joey-mcdonald/back.svg",
  36646. extra: 1077/879,
  36647. bottom: 5/1082
  36648. }
  36649. },
  36650. frontKobold: {
  36651. height: math.unit(4, "feet"),
  36652. weight: math.unit(100, "lb"),
  36653. name: "Front-kobold",
  36654. image: {
  36655. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36656. extra: 1480/1367,
  36657. bottom: 0/1480
  36658. }
  36659. },
  36660. backKobold: {
  36661. height: math.unit(4, "feet"),
  36662. weight: math.unit(100, "lb"),
  36663. name: "Back-kobold",
  36664. image: {
  36665. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36666. extra: 1449/1361,
  36667. bottom: 0/1449
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(4, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(12 + 6/12, "feet"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/kass-lockheed/front.svg",
  36687. extra: 354/343,
  36688. bottom: 9/363
  36689. }
  36690. },
  36691. back: {
  36692. height: math.unit(12 + 6/12, "feet"),
  36693. name: "Back",
  36694. image: {
  36695. source: "./media/characters/kass-lockheed/back.svg",
  36696. extra: 364/352,
  36697. bottom: 3/367
  36698. }
  36699. },
  36700. dick: {
  36701. height: math.unit(3.12, "feet"),
  36702. name: "Dick",
  36703. image: {
  36704. source: "./media/characters/kass-lockheed/dick.svg"
  36705. }
  36706. },
  36707. head: {
  36708. height: math.unit(2.6, "feet"),
  36709. name: "Head",
  36710. image: {
  36711. source: "./media/characters/kass-lockheed/head.svg"
  36712. }
  36713. },
  36714. bleh: {
  36715. height: math.unit(2.85, "feet"),
  36716. name: "Bleh",
  36717. image: {
  36718. source: "./media/characters/kass-lockheed/bleh.svg"
  36719. }
  36720. },
  36721. smug: {
  36722. height: math.unit(2.85, "feet"),
  36723. name: "Smug",
  36724. image: {
  36725. source: "./media/characters/kass-lockheed/smug.svg"
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(12 + 6/12, "feet"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(6 + 2/12, "feet"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/taylor/front.svg",
  36745. extra: 639/495,
  36746. bottom: 12/651
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(6 + 2/12, "feet"),
  36754. default: true
  36755. },
  36756. {
  36757. name: "Big",
  36758. height: math.unit(15, "feet")
  36759. },
  36760. {
  36761. name: "Lorg",
  36762. height: math.unit(80, "feet")
  36763. },
  36764. {
  36765. name: "Too Lorg",
  36766. height: math.unit(120, "feet")
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(15, "feet"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/kaizer/front.svg",
  36778. extra: 1612/1436,
  36779. bottom: 43/1655
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(15, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(2, "feet"),
  36796. weight: math.unit(30, "lb"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/sandy/front.svg",
  36800. extra: 1439/1307,
  36801. bottom: 194/1633
  36802. }
  36803. },
  36804. },
  36805. [
  36806. {
  36807. name: "Normal",
  36808. height: math.unit(2, "feet"),
  36809. default: true
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(3, "feet"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/mellvi/front.svg",
  36821. extra: 1831/1630,
  36822. bottom: 58/1889
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Normal",
  36829. height: math.unit(3, "feet"),
  36830. default: true
  36831. },
  36832. ]
  36833. ))
  36834. characterMakers.push(() => makeCharacter(
  36835. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36836. {
  36837. front: {
  36838. height: math.unit(5 + 11/12, "feet"),
  36839. weight: math.unit(200, "lb"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/shirou/front.svg",
  36843. extra: 2491/2383,
  36844. bottom: 189/2680
  36845. }
  36846. },
  36847. back: {
  36848. height: math.unit(5 + 11/12, "feet"),
  36849. weight: math.unit(200, "lb"),
  36850. name: "Back",
  36851. image: {
  36852. source: "./media/characters/shirou/back.svg",
  36853. extra: 2554/2450,
  36854. bottom: 76/2630
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(5 + 11/12, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(6 + 3/12, "feet"),
  36871. weight: math.unit(177, "lb"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/noryu/front.svg",
  36875. extra: 973/885,
  36876. bottom: 10/983
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(6 + 3/12, "feet"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(5 + 6/12, "feet"),
  36893. weight: math.unit(170, "lb"),
  36894. name: "Front",
  36895. image: {
  36896. source: "./media/characters/mevolas-rubenido/front.svg",
  36897. extra: 2109/1901,
  36898. bottom: 96/2205
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(5 + 6/12, "feet"),
  36906. default: true
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36912. {
  36913. front: {
  36914. height: math.unit(100, "feet"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/dee/front.svg",
  36918. extra: 2153/2036,
  36919. bottom: 59/2212
  36920. }
  36921. },
  36922. back: {
  36923. height: math.unit(100, "feet"),
  36924. name: "Back",
  36925. image: {
  36926. source: "./media/characters/dee/back.svg",
  36927. extra: 2183/2058,
  36928. bottom: 75/2258
  36929. }
  36930. },
  36931. foot: {
  36932. height: math.unit(19.43, "feet"),
  36933. name: "Foot",
  36934. image: {
  36935. source: "./media/characters/dee/foot.svg"
  36936. }
  36937. },
  36938. hoof: {
  36939. height: math.unit(20.6, "feet"),
  36940. name: "Hoof",
  36941. image: {
  36942. source: "./media/characters/dee/hoof.svg"
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Macro",
  36949. height: math.unit(100, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36956. {
  36957. front: {
  36958. height: math.unit(5 + 6/12, "feet"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/teh/front.svg",
  36962. extra: 1002/847,
  36963. bottom: 62/1064
  36964. }
  36965. },
  36966. },
  36967. [
  36968. {
  36969. name: "Normal",
  36970. height: math.unit(5 + 6/12, "feet"),
  36971. default: true
  36972. },
  36973. ]
  36974. ))
  36975. characterMakers.push(() => makeCharacter(
  36976. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36977. {
  36978. side: {
  36979. height: math.unit(6 + 1/12, "feet"),
  36980. weight: math.unit(204, "lb"),
  36981. name: "Side",
  36982. image: {
  36983. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36984. extra: 974/775,
  36985. bottom: 169/1143
  36986. }
  36987. },
  36988. sitting: {
  36989. height: math.unit(6 + 2/12, "feet"),
  36990. weight: math.unit(204, "lb"),
  36991. name: "Sitting",
  36992. image: {
  36993. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36994. extra: 1175/964,
  36995. bottom: 378/1553
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(6 + 1/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(6, "inches"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/tululi/front.svg",
  37015. extra: 1997/1876,
  37016. bottom: 20/2017
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(6, "inches"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(4 + 1/12, "feet"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/star/front.svg",
  37036. extra: 1493/1189,
  37037. bottom: 48/1541
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(4 + 1/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(6 + 3/12, "feet"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/comet/front.svg",
  37057. extra: 1681/1462,
  37058. bottom: 26/1707
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(6 + 3/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(950, "feet"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/vortex/front.svg",
  37078. extra: 1497/1434,
  37079. bottom: 56/1553
  37080. }
  37081. },
  37082. maw: {
  37083. height: math.unit(285, "feet"),
  37084. name: "Maw",
  37085. image: {
  37086. source: "./media/characters/vortex/maw.svg"
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Macro",
  37093. height: math.unit(950, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(600, "feet"),
  37103. weight: math.unit(0.02, "grams"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/doodle/front.svg",
  37107. extra: 1578/1413,
  37108. bottom: 37/1615
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Macro",
  37115. height: math.unit(600, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(6 + 6/12, "feet"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/jai/front.svg",
  37128. extra: 1645/1534,
  37129. bottom: 115/1760
  37130. }
  37131. },
  37132. },
  37133. [
  37134. {
  37135. name: "Normal",
  37136. height: math.unit(6 + 6/12, "feet"),
  37137. default: true
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(6 + 8/12, "feet"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/pixel/front.svg",
  37149. extra: 1900/1735,
  37150. bottom: 63/1963
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(6 + 8/12, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37164. {
  37165. back: {
  37166. height: math.unit(4 + 1/12, "feet"),
  37167. weight: math.unit(75, "lb"),
  37168. name: "Back",
  37169. image: {
  37170. source: "./media/characters/rhett/back.svg",
  37171. extra: 930/878,
  37172. bottom: 25/955
  37173. }
  37174. },
  37175. front: {
  37176. height: math.unit(4 + 1/12, "feet"),
  37177. weight: math.unit(75, "lb"),
  37178. name: "Front",
  37179. image: {
  37180. source: "./media/characters/rhett/front.svg",
  37181. extra: 1682/1586,
  37182. bottom: 92/1774
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Micro",
  37189. height: math.unit(8, "inches")
  37190. },
  37191. {
  37192. name: "Tiny",
  37193. height: math.unit(2, "feet")
  37194. },
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(4 + 1/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(3 + 3/12, "feet"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/penny/front.svg",
  37210. extra: 1406/1311,
  37211. bottom: 26/1432
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(3 + 3/12, "feet"),
  37219. default: true
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(4 + 11/12, "feet"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/monty/front.svg",
  37231. extra: 1479/1209,
  37232. bottom: 0/1479
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(4 + 11/12, "feet"),
  37240. default: true
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37246. {
  37247. front: {
  37248. height: math.unit(8 + 4/12, "feet"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/sterling/front.svg",
  37252. extra: 1420/1236,
  37253. bottom: 27/1447
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(8 + 4/12, "feet"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(15, "feet"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/marble/front.svg",
  37273. extra: 973/937,
  37274. bottom: 32/1005
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(15, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37288. {
  37289. front: {
  37290. height: math.unit(3, "inches"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/powder/front.svg",
  37294. extra: 1504/1334,
  37295. bottom: 518/2022
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(3, "inches"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(4 + 5/12, "feet"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/joey-raccoon/front.svg",
  37315. extra: 1273/1197,
  37316. bottom: 0/1273
  37317. }
  37318. },
  37319. },
  37320. [
  37321. {
  37322. name: "Normal",
  37323. height: math.unit(4 + 5/12, "feet"),
  37324. default: true
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37330. {
  37331. front: {
  37332. height: math.unit(8 + 4/12, "feet"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/vick/front.svg",
  37336. extra: 2187/2118,
  37337. bottom: 47/2234
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(8 + 4/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(5 + 5/12, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/mitsy/front.svg",
  37357. extra: 1842/1695,
  37358. bottom: 0/1842
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(5 + 5/12, "feet"),
  37366. default: true
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37372. {
  37373. front: {
  37374. height: math.unit(6 + 3/12, "feet"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/silvy/front.svg",
  37378. extra: 1995/1836,
  37379. bottom: 225/2220
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(6 + 3/12, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(3 + 8/12, "feet"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/rodney/front.svg",
  37399. extra: 1956/1747,
  37400. bottom: 31/1987
  37401. }
  37402. },
  37403. frontDressed: {
  37404. height: math.unit(2.9, "feet"),
  37405. name: "Front (Dressed)",
  37406. image: {
  37407. source: "./media/characters/rodney/front-dressed.svg",
  37408. extra: 1382/1241,
  37409. bottom: 385/1767
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(3 + 8/12, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(5 + 9/12, "feet"),
  37426. weight: math.unit(194, "lbs"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/zakail-sudekai/front.svg",
  37430. extra: 2696/2533,
  37431. bottom: 248/2944
  37432. }
  37433. },
  37434. maw: {
  37435. height: math.unit(1.35, "feet"),
  37436. name: "Maw",
  37437. image: {
  37438. source: "./media/characters/zakail-sudekai/maw.svg"
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(5 + 9/12, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(8 + 4/12, "feet"),
  37455. weight: math.unit(1200, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/eleanor/front.svg",
  37459. extra: 1226/1192,
  37460. bottom: 52/1278
  37461. }
  37462. },
  37463. back: {
  37464. height: math.unit(8 + 4/12, "feet"),
  37465. weight: math.unit(1200, "lb"),
  37466. name: "Back",
  37467. image: {
  37468. source: "./media/characters/eleanor/back.svg",
  37469. extra: 1242/1184,
  37470. bottom: 60/1302
  37471. }
  37472. },
  37473. head: {
  37474. height: math.unit(2.62, "feet"),
  37475. name: "Head",
  37476. image: {
  37477. source: "./media/characters/eleanor/head.svg"
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Normal",
  37484. height: math.unit(8 + 4/12, "feet"),
  37485. default: true
  37486. },
  37487. ]
  37488. ))
  37489. characterMakers.push(() => makeCharacter(
  37490. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37491. {
  37492. front: {
  37493. height: math.unit(8 + 4/12, "feet"),
  37494. weight: math.unit(750, "lb"),
  37495. name: "Front",
  37496. image: {
  37497. source: "./media/characters/tanya/front.svg",
  37498. extra: 1749/1615,
  37499. bottom: 33/1782
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal",
  37506. height: math.unit(8 + 4/12, "feet"),
  37507. default: true
  37508. },
  37509. ]
  37510. ))
  37511. characterMakers.push(() => makeCharacter(
  37512. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37513. {
  37514. front: {
  37515. height: math.unit(5, "feet"),
  37516. weight: math.unit(225, "lb"),
  37517. name: "Front",
  37518. image: {
  37519. source: "./media/characters/cindy/front.svg",
  37520. extra: 1320/1250,
  37521. bottom: 42/1362
  37522. }
  37523. },
  37524. frontDressed: {
  37525. height: math.unit(5, "feet"),
  37526. weight: math.unit(225, "lb"),
  37527. name: "Front (Dressed)",
  37528. image: {
  37529. source: "./media/characters/cindy/front-dressed.svg",
  37530. extra: 1320/1250,
  37531. bottom: 42/1362
  37532. }
  37533. },
  37534. back: {
  37535. height: math.unit(5, "feet"),
  37536. weight: math.unit(225, "lb"),
  37537. name: "Back",
  37538. image: {
  37539. source: "./media/characters/cindy/back.svg",
  37540. extra: 1384/1346,
  37541. bottom: 14/1398
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Normal",
  37548. height: math.unit(5, "feet"),
  37549. default: true
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37555. {
  37556. front: {
  37557. height: math.unit(6 + 9/12, "feet"),
  37558. weight: math.unit(440, "lb"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/wilbur-owen/front.svg",
  37562. extra: 1575/1448,
  37563. bottom: 72/1647
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(6 + 9/12, "feet"),
  37568. weight: math.unit(440, "lb"),
  37569. name: "Back",
  37570. image: {
  37571. source: "./media/characters/wilbur-owen/back.svg",
  37572. extra: 1578/1445,
  37573. bottom: 36/1614
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(6 + 9/12, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(6 + 5/12, "feet"),
  37590. weight: math.unit(650, "lb"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/keegan/front.svg",
  37594. extra: 2387/2198,
  37595. bottom: 33/2420
  37596. }
  37597. },
  37598. side: {
  37599. height: math.unit(6 + 5/12, "feet"),
  37600. weight: math.unit(650, "lb"),
  37601. name: "Side",
  37602. image: {
  37603. source: "./media/characters/keegan/side.svg",
  37604. extra: 2390/2202,
  37605. bottom: 47/2437
  37606. }
  37607. },
  37608. back: {
  37609. height: math.unit(6 + 5/12, "feet"),
  37610. weight: math.unit(650, "lb"),
  37611. name: "Back",
  37612. image: {
  37613. source: "./media/characters/keegan/back.svg",
  37614. extra: 2418/2268,
  37615. bottom: 15/2433
  37616. }
  37617. },
  37618. frontSfw: {
  37619. height: math.unit(6 + 5/12, "feet"),
  37620. weight: math.unit(650, "lb"),
  37621. name: "Front (SFW)",
  37622. image: {
  37623. source: "./media/characters/keegan/front-sfw.svg",
  37624. extra: 2387/2198,
  37625. bottom: 33/2420
  37626. }
  37627. },
  37628. beans: {
  37629. height: math.unit(1.85, "feet"),
  37630. name: "Beans",
  37631. image: {
  37632. source: "./media/characters/keegan/beans.svg"
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(6 + 5/12, "feet"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(9, "feet"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/colton/front.svg",
  37652. extra: 1589/1326,
  37653. bottom: 139/1728
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(9, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(2 + 9/12, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/bora/front.svg",
  37673. extra: 1265/1250,
  37674. bottom: 24/1289
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(2 + 9/12, "feet"),
  37682. default: true
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37688. {
  37689. front: {
  37690. height: math.unit(8, "feet"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/myu-myu/front.svg",
  37694. extra: 1949/1857,
  37695. bottom: 90/2039
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(8, "feet"),
  37703. default: true
  37704. },
  37705. {
  37706. name: "Big",
  37707. height: math.unit(15, "feet")
  37708. },
  37709. {
  37710. name: "BIG",
  37711. height: math.unit(25, "feet")
  37712. },
  37713. ]
  37714. ))
  37715. characterMakers.push(() => makeCharacter(
  37716. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37717. {
  37718. side: {
  37719. height: math.unit(7 + 5/12, "feet"),
  37720. weight: math.unit(2800, "lb"),
  37721. name: "Side",
  37722. image: {
  37723. source: "./media/characters/haloren/side.svg",
  37724. extra: 1793/409,
  37725. bottom: 59/1852
  37726. }
  37727. },
  37728. frontPaw: {
  37729. height: math.unit(2.36, "feet"),
  37730. name: "Front paw",
  37731. image: {
  37732. source: "./media/characters/haloren/front-paw.svg"
  37733. }
  37734. },
  37735. hindPaw: {
  37736. height: math.unit(3.18, "feet"),
  37737. name: "Hind paw",
  37738. image: {
  37739. source: "./media/characters/haloren/hind-paw.svg"
  37740. }
  37741. },
  37742. maw: {
  37743. height: math.unit(5.05, "feet"),
  37744. name: "Maw",
  37745. image: {
  37746. source: "./media/characters/haloren/maw.svg"
  37747. }
  37748. },
  37749. dick: {
  37750. height: math.unit(2.90, "feet"),
  37751. name: "Dick",
  37752. image: {
  37753. source: "./media/characters/haloren/dick.svg"
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Normal",
  37760. height: math.unit(7 + 5/12, "feet"),
  37761. default: true
  37762. },
  37763. {
  37764. name: "Enhanced",
  37765. height: math.unit(14 + 3/12, "feet")
  37766. },
  37767. ]
  37768. ))
  37769. characterMakers.push(() => makeCharacter(
  37770. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37771. {
  37772. front: {
  37773. height: math.unit(171, "cm"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/kimmy/front.svg",
  37777. extra: 1491/1435,
  37778. bottom: 53/1544
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Small",
  37785. height: math.unit(9, "cm")
  37786. },
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(171, "cm"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(8, "feet"),
  37799. weight: math.unit(300, "lb"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/galeboomer/front.svg",
  37803. extra: 4651/4415,
  37804. bottom: 162/4813
  37805. }
  37806. },
  37807. back: {
  37808. height: math.unit(8, "feet"),
  37809. weight: math.unit(300, "lb"),
  37810. name: "Back",
  37811. image: {
  37812. source: "./media/characters/galeboomer/back.svg",
  37813. extra: 4544/4314,
  37814. bottom: 16/4560
  37815. }
  37816. },
  37817. frontAlt: {
  37818. height: math.unit(8, "feet"),
  37819. weight: math.unit(300, "lb"),
  37820. name: "Front (Alt)",
  37821. image: {
  37822. source: "./media/characters/galeboomer/front-alt.svg",
  37823. extra: 4458/4228,
  37824. bottom: 68/4526
  37825. }
  37826. },
  37827. maw: {
  37828. height: math.unit(1.2, "feet"),
  37829. name: "Maw",
  37830. image: {
  37831. source: "./media/characters/galeboomer/maw.svg"
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(8, "feet"),
  37839. default: true
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37845. {
  37846. front: {
  37847. height: math.unit(5 + 9/12, "feet"),
  37848. weight: math.unit(120, "lb"),
  37849. name: "Front",
  37850. image: {
  37851. source: "./media/characters/chyr/front.svg",
  37852. extra: 1323/1254,
  37853. bottom: 63/1386
  37854. }
  37855. },
  37856. back: {
  37857. height: math.unit(5 + 9/12, "feet"),
  37858. weight: math.unit(120, "lb"),
  37859. name: "Back",
  37860. image: {
  37861. source: "./media/characters/chyr/back.svg",
  37862. extra: 1323/1252,
  37863. bottom: 48/1371
  37864. }
  37865. },
  37866. },
  37867. [
  37868. {
  37869. name: "Normal",
  37870. height: math.unit(5 + 9/12, "feet"),
  37871. default: true
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37877. {
  37878. front: {
  37879. height: math.unit(7, "feet"),
  37880. weight: math.unit(310, "lb"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/solarus/front.svg",
  37884. extra: 2415/2021,
  37885. bottom: 103/2518
  37886. }
  37887. },
  37888. back: {
  37889. height: math.unit(7, "feet"),
  37890. weight: math.unit(310, "lb"),
  37891. name: "Back",
  37892. image: {
  37893. source: "./media/characters/solarus/back.svg",
  37894. extra: 2463/2089,
  37895. bottom: 79/2542
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(7, "feet"),
  37903. default: true
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37909. {
  37910. front: {
  37911. height: math.unit(16, "feet"),
  37912. name: "Front",
  37913. image: {
  37914. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37915. extra: 1844/1780,
  37916. bottom: 58/1902
  37917. }
  37918. },
  37919. winterCoat: {
  37920. height: math.unit(16, "feet"),
  37921. name: "Winter Coat",
  37922. image: {
  37923. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37924. extra: 1807/1775,
  37925. bottom: 69/1876
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Normal",
  37932. height: math.unit(16, "feet"),
  37933. default: true
  37934. },
  37935. {
  37936. name: "Chicago Size",
  37937. height: math.unit(560, "feet")
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(11 + 6/12, "feet"),
  37946. weight: math.unit(1366, "lb"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/lexor/front.svg",
  37950. extra: 1560/1481,
  37951. bottom: 211/1771
  37952. }
  37953. },
  37954. back: {
  37955. height: math.unit(11 + 6/12, "feet"),
  37956. weight: math.unit(1366, "lb"),
  37957. name: "Back",
  37958. image: {
  37959. source: "./media/characters/lexor/back.svg",
  37960. extra: 1614/1533,
  37961. bottom: 76/1690
  37962. }
  37963. },
  37964. maw: {
  37965. height: math.unit(3, "feet"),
  37966. name: "Maw",
  37967. image: {
  37968. source: "./media/characters/lexor/maw.svg"
  37969. }
  37970. },
  37971. dick: {
  37972. height: math.unit(2.59, "feet"),
  37973. name: "Dick",
  37974. image: {
  37975. source: "./media/characters/lexor/dick.svg"
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(11 + 6/12, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(5 + 8/12, "feet"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/magnum/front.svg",
  37995. extra: 942/855,
  37996. bottom: 26/968
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(5 + 8/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(18 + 4/12, "feet"),
  38013. weight: math.unit(1500, "kg"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/solas-sharpsman/front.svg",
  38017. extra: 1698/1589,
  38018. bottom: 0/1698
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(18 + 4/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(5 + 5/12, "feet"),
  38035. weight: math.unit(180, "lb"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/october/front.svg",
  38039. extra: 1800/1650,
  38040. bottom: 0/1800
  38041. }
  38042. },
  38043. frontNsfw: {
  38044. height: math.unit(5 + 5/12, "feet"),
  38045. weight: math.unit(180, "lb"),
  38046. name: "Front (NSFW)",
  38047. image: {
  38048. source: "./media/characters/october/front-nsfw.svg",
  38049. extra: 1392/1307,
  38050. bottom: 42/1434
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(5 + 5/12, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(8 + 6/12, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/essynkardi/front.svg",
  38070. extra: 1914/1846,
  38071. bottom: 22/1936
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(8 + 6/12, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(6 + 6/12, "feet"),
  38088. weight: math.unit(7, "lb"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/icky/front.svg",
  38092. extra: 813/782,
  38093. bottom: 66/879
  38094. }
  38095. },
  38096. back: {
  38097. height: math.unit(6 + 6/12, "feet"),
  38098. weight: math.unit(7, "lb"),
  38099. name: "Back",
  38100. image: {
  38101. source: "./media/characters/icky/back.svg",
  38102. extra: 754/735,
  38103. bottom: 56/810
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(6 + 6/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(15, "feet"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/rojas/front.svg",
  38123. extra: 1462/1408,
  38124. bottom: 95/1557
  38125. }
  38126. },
  38127. back: {
  38128. height: math.unit(15, "feet"),
  38129. name: "Back",
  38130. image: {
  38131. source: "./media/characters/rojas/back.svg",
  38132. extra: 1023/954,
  38133. bottom: 28/1051
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(15, "feet"),
  38141. default: true
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38147. {
  38148. frontHuman: {
  38149. height: math.unit(5 + 7/12, "feet"),
  38150. name: "Front (Human)",
  38151. image: {
  38152. source: "./media/characters/alek-dryagan/front-human.svg",
  38153. extra: 1687/1667,
  38154. bottom: 69/1756
  38155. }
  38156. },
  38157. backHuman: {
  38158. height: math.unit(5 + 7/12, "feet"),
  38159. name: "Back (Human)",
  38160. image: {
  38161. source: "./media/characters/alek-dryagan/back-human.svg",
  38162. extra: 1670/1649,
  38163. bottom: 65/1735
  38164. }
  38165. },
  38166. frontDemi: {
  38167. height: math.unit(65, "feet"),
  38168. name: "Front (Demi)",
  38169. image: {
  38170. source: "./media/characters/alek-dryagan/front-demi.svg",
  38171. extra: 1669/1642,
  38172. bottom: 49/1718
  38173. }
  38174. },
  38175. backDemi: {
  38176. height: math.unit(65, "feet"),
  38177. name: "Back (Demi)",
  38178. image: {
  38179. source: "./media/characters/alek-dryagan/back-demi.svg",
  38180. extra: 1658/1637,
  38181. bottom: 40/1698
  38182. }
  38183. },
  38184. mawHuman: {
  38185. height: math.unit(0.3, "feet"),
  38186. name: "Maw (Human)",
  38187. image: {
  38188. source: "./media/characters/alek-dryagan/maw-human.svg"
  38189. }
  38190. },
  38191. mawDemi: {
  38192. height: math.unit(3.8, "feet"),
  38193. name: "Maw (Demi)",
  38194. image: {
  38195. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(5 + 7/12, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38209. {
  38210. frontHuman: {
  38211. height: math.unit(5 + 2/12, "feet"),
  38212. name: "Front (Human)",
  38213. image: {
  38214. source: "./media/characters/gen/front-human.svg",
  38215. extra: 1627/1538,
  38216. bottom: 71/1698
  38217. }
  38218. },
  38219. backHuman: {
  38220. height: math.unit(5 + 2/12, "feet"),
  38221. name: "Back (Human)",
  38222. image: {
  38223. source: "./media/characters/gen/back-human.svg",
  38224. extra: 1638/1548,
  38225. bottom: 69/1707
  38226. }
  38227. },
  38228. frontDemi: {
  38229. height: math.unit(5 + 2/12, "feet"),
  38230. name: "Front (Demi)",
  38231. image: {
  38232. source: "./media/characters/gen/front-demi.svg",
  38233. extra: 1627/1538,
  38234. bottom: 71/1698
  38235. }
  38236. },
  38237. backDemi: {
  38238. height: math.unit(5 + 2/12, "feet"),
  38239. name: "Back (Demi)",
  38240. image: {
  38241. source: "./media/characters/gen/back-demi.svg",
  38242. extra: 1638/1548,
  38243. bottom: 69/1707
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(5 + 2/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38257. {
  38258. frontImp: {
  38259. height: math.unit(1 + 11/12, "feet"),
  38260. name: "Front (Imp)",
  38261. image: {
  38262. source: "./media/characters/max-kobold/front-imp.svg",
  38263. extra: 1238/1134,
  38264. bottom: 81/1319
  38265. }
  38266. },
  38267. backImp: {
  38268. height: math.unit(1 + 11/12, "feet"),
  38269. name: "Back (Imp)",
  38270. image: {
  38271. source: "./media/characters/max-kobold/back-imp.svg",
  38272. extra: 1334/1175,
  38273. bottom: 34/1368
  38274. }
  38275. },
  38276. frontDemi: {
  38277. height: math.unit(5 + 9/12, "feet"),
  38278. name: "Front (Demi)",
  38279. image: {
  38280. source: "./media/characters/max-kobold/front-demi.svg",
  38281. extra: 1715/1685,
  38282. bottom: 54/1769
  38283. }
  38284. },
  38285. backDemi: {
  38286. height: math.unit(5 + 9/12, "feet"),
  38287. name: "Back (Demi)",
  38288. image: {
  38289. source: "./media/characters/max-kobold/back-demi.svg",
  38290. extra: 1752/1729,
  38291. bottom: 41/1793
  38292. }
  38293. },
  38294. handImp: {
  38295. height: math.unit(0.45, "feet"),
  38296. name: "Hand (Imp)",
  38297. image: {
  38298. source: "./media/characters/max-kobold/hand.svg"
  38299. }
  38300. },
  38301. pawImp: {
  38302. height: math.unit(0.46, "feet"),
  38303. name: "Paw (Imp)",
  38304. image: {
  38305. source: "./media/characters/max-kobold/paw.svg"
  38306. }
  38307. },
  38308. handDemi: {
  38309. height: math.unit(0.80, "feet"),
  38310. name: "Hand (Demi)",
  38311. image: {
  38312. source: "./media/characters/max-kobold/hand.svg"
  38313. }
  38314. },
  38315. pawDemi: {
  38316. height: math.unit(1.1, "feet"),
  38317. name: "Paw (Demi)",
  38318. image: {
  38319. source: "./media/characters/max-kobold/paw.svg"
  38320. }
  38321. },
  38322. headImp: {
  38323. height: math.unit(1.33, "feet"),
  38324. name: "Head (Imp)",
  38325. image: {
  38326. source: "./media/characters/max-kobold/head-imp.svg"
  38327. }
  38328. },
  38329. mawImp: {
  38330. height: math.unit(0.75, "feet"),
  38331. name: "Maw (Imp)",
  38332. image: {
  38333. source: "./media/characters/max-kobold/maw-imp.svg"
  38334. }
  38335. },
  38336. mawDemi: {
  38337. height: math.unit(0.42, "feet"),
  38338. name: "Maw (Demi)",
  38339. image: {
  38340. source: "./media/characters/max-kobold/maw-demi.svg"
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(1 + 11/12, "feet"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38354. {
  38355. front: {
  38356. height: math.unit(7 + 5/12, "feet"),
  38357. name: "Front",
  38358. image: {
  38359. source: "./media/characters/carbon/front.svg",
  38360. extra: 1754/1689,
  38361. bottom: 65/1819
  38362. }
  38363. },
  38364. back: {
  38365. height: math.unit(7 + 5/12, "feet"),
  38366. name: "Back",
  38367. image: {
  38368. source: "./media/characters/carbon/back.svg",
  38369. extra: 1762/1695,
  38370. bottom: 24/1786
  38371. }
  38372. },
  38373. frontGigantamax: {
  38374. height: math.unit(150, "feet"),
  38375. name: "Front (Gigantamax)",
  38376. image: {
  38377. source: "./media/characters/carbon/front-gigantamax.svg",
  38378. extra: 1826/1669,
  38379. bottom: 59/1885
  38380. }
  38381. },
  38382. backGigantamax: {
  38383. height: math.unit(150, "feet"),
  38384. name: "Back (Gigantamax)",
  38385. image: {
  38386. source: "./media/characters/carbon/back-gigantamax.svg",
  38387. extra: 1796/1653,
  38388. bottom: 53/1849
  38389. }
  38390. },
  38391. maw: {
  38392. height: math.unit(0.48, "feet"),
  38393. name: "Maw",
  38394. image: {
  38395. source: "./media/characters/carbon/maw.svg"
  38396. }
  38397. },
  38398. mawGigantamax: {
  38399. height: math.unit(7.5, "feet"),
  38400. name: "Maw (Gigantamax)",
  38401. image: {
  38402. source: "./media/characters/carbon/maw-gigantamax.svg"
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(7 + 5/12, "feet"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(6, "feet"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/maverick/front.svg",
  38422. extra: 1672/1661,
  38423. bottom: 85/1757
  38424. }
  38425. },
  38426. back: {
  38427. height: math.unit(6, "feet"),
  38428. name: "Back",
  38429. image: {
  38430. source: "./media/characters/maverick/back.svg",
  38431. extra: 1642/1631,
  38432. bottom: 38/1680
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(6, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(15, "feet"),
  38449. weight: math.unit(615, "lb"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/grockle/front.svg",
  38453. extra: 1535/1427,
  38454. bottom: 56/1591
  38455. }
  38456. },
  38457. },
  38458. [
  38459. {
  38460. name: "Normal",
  38461. height: math.unit(15, "feet"),
  38462. default: true
  38463. },
  38464. {
  38465. name: "Large",
  38466. height: math.unit(150, "feet")
  38467. },
  38468. {
  38469. name: "Macro",
  38470. height: math.unit(1876, "feet")
  38471. },
  38472. {
  38473. name: "Mega Macro",
  38474. height: math.unit(121940, "feet")
  38475. },
  38476. {
  38477. name: "Giga Macro",
  38478. height: math.unit(750, "km")
  38479. },
  38480. {
  38481. name: "Tera Macro",
  38482. height: math.unit(750000, "km")
  38483. },
  38484. {
  38485. name: "Galactic",
  38486. height: math.unit(1.4e5, "km")
  38487. },
  38488. {
  38489. name: "Godlike",
  38490. height: math.unit(9.8e280, "galaxies")
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(11, "meters"),
  38499. weight: math.unit(20, "tonnes"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/alistair/front.svg",
  38503. extra: 1265/1009,
  38504. bottom: 93/1358
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(11, "meters"),
  38512. default: true
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(5 + 8/12, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/haruka/front.svg",
  38524. extra: 2012/1952,
  38525. bottom: 0/2012
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(5 + 8/12, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38539. {
  38540. back: {
  38541. height: math.unit(9, "feet"),
  38542. name: "Back",
  38543. image: {
  38544. source: "./media/characters/vivian-sylveon/back.svg",
  38545. extra: 1853/1714,
  38546. bottom: 0/1853
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(9, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "Macro",
  38558. height: math.unit(500, "feet")
  38559. },
  38560. {
  38561. name: "Megamacro",
  38562. height: math.unit(600, "miles")
  38563. },
  38564. {
  38565. name: "Gigamacro",
  38566. height: math.unit(30000, "miles")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38572. {
  38573. anthro: {
  38574. height: math.unit(5 + 10/12, "feet"),
  38575. weight: math.unit(100, "lb"),
  38576. name: "Anthro",
  38577. image: {
  38578. source: "./media/characters/daiki/anthro.svg",
  38579. extra: 1115/1027,
  38580. bottom: 69/1184
  38581. }
  38582. },
  38583. feral: {
  38584. height: math.unit(200, "feet"),
  38585. name: "Feral",
  38586. image: {
  38587. source: "./media/characters/daiki/feral.svg",
  38588. extra: 1256/313,
  38589. bottom: 39/1295
  38590. }
  38591. },
  38592. feralHead: {
  38593. height: math.unit(171, "feet"),
  38594. name: "Feral Head",
  38595. image: {
  38596. source: "./media/characters/daiki/feral-head.svg"
  38597. }
  38598. },
  38599. manaDragon: {
  38600. height: math.unit(170, "meters"),
  38601. name: "Mana-dragon",
  38602. image: {
  38603. source: "./media/characters/daiki/mana-dragon.svg",
  38604. extra: 763/420,
  38605. bottom: 97/860
  38606. }
  38607. },
  38608. },
  38609. [
  38610. {
  38611. name: "Normal",
  38612. height: math.unit(5 + 10/12, "feet"),
  38613. default: true
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38619. {
  38620. fullyEquippedFront: {
  38621. height: math.unit(3 + 1/12, "feet"),
  38622. weight: math.unit(24, "lb"),
  38623. name: "Fully Equipped (Front)",
  38624. image: {
  38625. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38626. extra: 687/605,
  38627. bottom: 18/705
  38628. }
  38629. },
  38630. fullyEquippedBack: {
  38631. height: math.unit(3 + 1/12, "feet"),
  38632. weight: math.unit(24, "lb"),
  38633. name: "Fully Equipped (Back)",
  38634. image: {
  38635. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38636. extra: 689/590,
  38637. bottom: 18/707
  38638. }
  38639. },
  38640. dailyWear: {
  38641. height: math.unit(3 + 1/12, "feet"),
  38642. weight: math.unit(24, "lb"),
  38643. name: "Daily Wear",
  38644. image: {
  38645. source: "./media/characters/tea-spot/daily-wear.svg",
  38646. extra: 701/620,
  38647. bottom: 21/722
  38648. }
  38649. },
  38650. maidWork: {
  38651. height: math.unit(3 + 1/12, "feet"),
  38652. weight: math.unit(24, "lb"),
  38653. name: "Maid Work",
  38654. image: {
  38655. source: "./media/characters/tea-spot/maid-work.svg",
  38656. extra: 693/609,
  38657. bottom: 15/708
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(3 + 1/12, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(175, "cm"),
  38674. weight: math.unit(75, "kg"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/chee/front.svg",
  38678. extra: 1796/1740,
  38679. bottom: 40/1836
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Micro-Micro",
  38686. height: math.unit(1, "nm")
  38687. },
  38688. {
  38689. name: "Micro-erst",
  38690. height: math.unit(1, "micrometer")
  38691. },
  38692. {
  38693. name: "Micro-er",
  38694. height: math.unit(1, "cm")
  38695. },
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(175, "cm"),
  38699. default: true
  38700. },
  38701. {
  38702. name: "Macro",
  38703. height: math.unit(100, "m")
  38704. },
  38705. {
  38706. name: "Macro-er",
  38707. height: math.unit(1, "km")
  38708. },
  38709. {
  38710. name: "Macro-erst",
  38711. height: math.unit(10, "km")
  38712. },
  38713. {
  38714. name: "Macro-Macro",
  38715. height: math.unit(100, "km")
  38716. },
  38717. ]
  38718. ))
  38719. characterMakers.push(() => makeCharacter(
  38720. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38721. {
  38722. front: {
  38723. height: math.unit(11 + 9/12, "feet"),
  38724. weight: math.unit(935, "lb"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/kingsley/front.svg",
  38728. extra: 1803/1674,
  38729. bottom: 127/1930
  38730. }
  38731. },
  38732. frontNude: {
  38733. height: math.unit(11 + 9/12, "feet"),
  38734. weight: math.unit(935, "lb"),
  38735. name: "Front (Nude)",
  38736. image: {
  38737. source: "./media/characters/kingsley/front-nude.svg",
  38738. extra: 1803/1674,
  38739. bottom: 127/1930
  38740. }
  38741. },
  38742. },
  38743. [
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(11 + 9/12, "feet"),
  38747. default: true
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38753. {
  38754. side: {
  38755. height: math.unit(9, "feet"),
  38756. name: "Side",
  38757. image: {
  38758. source: "./media/characters/rymel/side.svg",
  38759. extra: 792/469,
  38760. bottom: 121/913
  38761. }
  38762. },
  38763. maw: {
  38764. height: math.unit(2.4, "meters"),
  38765. name: "Maw",
  38766. image: {
  38767. source: "./media/characters/rymel/maw.svg"
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "House Drake",
  38774. height: math.unit(2, "feet")
  38775. },
  38776. {
  38777. name: "Reduced",
  38778. height: math.unit(4.5, "feet")
  38779. },
  38780. {
  38781. name: "Normal",
  38782. height: math.unit(9, "feet"),
  38783. default: true
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(1.74, "meters"),
  38792. weight: math.unit(55, "kg"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/rubus/front.svg",
  38796. extra: 1894/1742,
  38797. bottom: 44/1938
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(1.74, "meters"),
  38805. default: true
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(5 + 2/12, "feet"),
  38814. weight: math.unit(112, "lb"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/cassie-kingston/front.svg",
  38818. extra: 1438/1390,
  38819. bottom: 47/1485
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(5 + 2/12, "feet"),
  38827. default: true
  38828. },
  38829. {
  38830. name: "Macro",
  38831. height: math.unit(128, "feet")
  38832. },
  38833. {
  38834. name: "Megamacro",
  38835. height: math.unit(2.56, "miles")
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(7, "feet"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/fox/front.svg",
  38847. extra: 1798/1703,
  38848. bottom: 55/1853
  38849. }
  38850. },
  38851. back: {
  38852. height: math.unit(7, "feet"),
  38853. name: "Back",
  38854. image: {
  38855. source: "./media/characters/fox/back.svg",
  38856. extra: 1748/1649,
  38857. bottom: 32/1780
  38858. }
  38859. },
  38860. head: {
  38861. height: math.unit(1.95, "feet"),
  38862. name: "Head",
  38863. image: {
  38864. source: "./media/characters/fox/head.svg"
  38865. }
  38866. },
  38867. dick: {
  38868. height: math.unit(1.33, "feet"),
  38869. name: "Dick",
  38870. image: {
  38871. source: "./media/characters/fox/dick.svg"
  38872. }
  38873. },
  38874. foot: {
  38875. height: math.unit(1, "feet"),
  38876. name: "Foot",
  38877. image: {
  38878. source: "./media/characters/fox/foot.svg"
  38879. }
  38880. },
  38881. paw: {
  38882. height: math.unit(0.92, "feet"),
  38883. name: "Paw",
  38884. image: {
  38885. source: "./media/characters/fox/paw.svg"
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Small",
  38892. height: math.unit(3, "inches")
  38893. },
  38894. {
  38895. name: "\"Realistic\"",
  38896. height: math.unit(7, "feet")
  38897. },
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(150, "feet"),
  38901. default: true
  38902. },
  38903. {
  38904. name: "BIG",
  38905. height: math.unit(1200, "feet")
  38906. },
  38907. {
  38908. name: "👀",
  38909. height: math.unit(5, "miles")
  38910. },
  38911. {
  38912. name: "👀👀👀",
  38913. height: math.unit(64, "miles")
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38919. {
  38920. front: {
  38921. height: math.unit(625, "feet"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/asonja-rossa/front.svg",
  38925. extra: 1833/1686,
  38926. bottom: 24/1857
  38927. }
  38928. },
  38929. back: {
  38930. height: math.unit(625, "feet"),
  38931. name: "Back",
  38932. image: {
  38933. source: "./media/characters/asonja-rossa/back.svg",
  38934. extra: 1852/1753,
  38935. bottom: 26/1878
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Macro",
  38942. height: math.unit(625, "feet"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38949. {
  38950. side: {
  38951. height: math.unit(8, "feet"),
  38952. name: "Side",
  38953. image: {
  38954. source: "./media/characters/rezukii/side.svg",
  38955. extra: 979/542,
  38956. bottom: 87/1066
  38957. }
  38958. },
  38959. sitting: {
  38960. height: math.unit(14.6, "feet"),
  38961. name: "Sitting",
  38962. image: {
  38963. source: "./media/characters/rezukii/sitting.svg",
  38964. extra: 1023/813,
  38965. bottom: 45/1068
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Tiny",
  38972. height: math.unit(2, "feet")
  38973. },
  38974. {
  38975. name: "Smol",
  38976. height: math.unit(4, "feet")
  38977. },
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(8, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Big",
  38985. height: math.unit(12, "feet")
  38986. },
  38987. {
  38988. name: "Macro",
  38989. height: math.unit(30, "feet")
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38995. {
  38996. front: {
  38997. height: math.unit(14, "feet"),
  38998. weight: math.unit(9.5, "tonnes"),
  38999. name: "Front",
  39000. image: {
  39001. source: "./media/characters/dawnheart/front.svg",
  39002. extra: 2792/2675,
  39003. bottom: 64/2856
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Normal",
  39010. height: math.unit(14, "feet"),
  39011. default: true
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39017. {
  39018. front: {
  39019. height: math.unit(1.7, "m"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/gladi/front.svg",
  39023. extra: 1460/1362,
  39024. bottom: 19/1479
  39025. }
  39026. },
  39027. back: {
  39028. height: math.unit(1.7, "m"),
  39029. name: "Back",
  39030. image: {
  39031. source: "./media/characters/gladi/back.svg",
  39032. extra: 1459/1357,
  39033. bottom: 12/1471
  39034. }
  39035. },
  39036. feral: {
  39037. height: math.unit(2.05, "m"),
  39038. name: "Feral",
  39039. image: {
  39040. source: "./media/characters/gladi/feral.svg",
  39041. extra: 821/557,
  39042. bottom: 91/912
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Shortest",
  39049. height: math.unit(70, "cm")
  39050. },
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(1.7, "m")
  39054. },
  39055. {
  39056. name: "Macro",
  39057. height: math.unit(10, "m"),
  39058. default: true
  39059. },
  39060. {
  39061. name: "Tallest",
  39062. height: math.unit(200, "m")
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(5 + 7/12, "feet"),
  39071. weight: math.unit(2, "tons"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/erdno/front.svg",
  39075. extra: 1234/1129,
  39076. bottom: 35/1269
  39077. }
  39078. },
  39079. angled: {
  39080. height: math.unit(5 + 7/12, "feet"),
  39081. weight: math.unit(2, "tons"),
  39082. name: "Angled",
  39083. image: {
  39084. source: "./media/characters/erdno/angled.svg",
  39085. extra: 1185/1139,
  39086. bottom: 36/1221
  39087. }
  39088. },
  39089. side: {
  39090. height: math.unit(5 + 7/12, "feet"),
  39091. weight: math.unit(2, "tons"),
  39092. name: "Side",
  39093. image: {
  39094. source: "./media/characters/erdno/side.svg",
  39095. extra: 1191/1144,
  39096. bottom: 40/1231
  39097. }
  39098. },
  39099. back: {
  39100. height: math.unit(5 + 7/12, "feet"),
  39101. weight: math.unit(2, "tons"),
  39102. name: "Back",
  39103. image: {
  39104. source: "./media/characters/erdno/back.svg",
  39105. extra: 1202/1146,
  39106. bottom: 17/1219
  39107. }
  39108. },
  39109. frontNsfw: {
  39110. height: math.unit(5 + 7/12, "feet"),
  39111. weight: math.unit(2, "tons"),
  39112. name: "Front (NSFW)",
  39113. image: {
  39114. source: "./media/characters/erdno/front-nsfw.svg",
  39115. extra: 1234/1129,
  39116. bottom: 35/1269
  39117. }
  39118. },
  39119. angledNsfw: {
  39120. height: math.unit(5 + 7/12, "feet"),
  39121. weight: math.unit(2, "tons"),
  39122. name: "Angled (NSFW)",
  39123. image: {
  39124. source: "./media/characters/erdno/angled-nsfw.svg",
  39125. extra: 1185/1139,
  39126. bottom: 36/1221
  39127. }
  39128. },
  39129. sideNsfw: {
  39130. height: math.unit(5 + 7/12, "feet"),
  39131. weight: math.unit(2, "tons"),
  39132. name: "Side (NSFW)",
  39133. image: {
  39134. source: "./media/characters/erdno/side-nsfw.svg",
  39135. extra: 1191/1144,
  39136. bottom: 40/1231
  39137. }
  39138. },
  39139. backNsfw: {
  39140. height: math.unit(5 + 7/12, "feet"),
  39141. weight: math.unit(2, "tons"),
  39142. name: "Back (NSFW)",
  39143. image: {
  39144. source: "./media/characters/erdno/back-nsfw.svg",
  39145. extra: 1202/1146,
  39146. bottom: 17/1219
  39147. }
  39148. },
  39149. frontHyper: {
  39150. height: math.unit(5 + 7/12, "feet"),
  39151. weight: math.unit(2, "tons"),
  39152. name: "Front (Hyper)",
  39153. image: {
  39154. source: "./media/characters/erdno/front-hyper.svg",
  39155. extra: 1298/1136,
  39156. bottom: 35/1333
  39157. }
  39158. },
  39159. },
  39160. [
  39161. {
  39162. name: "Normal",
  39163. height: math.unit(5 + 7/12, "feet"),
  39164. default: true
  39165. },
  39166. {
  39167. name: "Big",
  39168. height: math.unit(5.7, "meters")
  39169. },
  39170. {
  39171. name: "Macro",
  39172. height: math.unit(5.7, "kilometers")
  39173. },
  39174. {
  39175. name: "Megamacro",
  39176. height: math.unit(5.7, "earths")
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(5 + 10/12, "feet"),
  39185. weight: math.unit(150, "lb"),
  39186. name: "Front",
  39187. image: {
  39188. source: "./media/characters/jamie/front.svg",
  39189. extra: 1908/1768,
  39190. bottom: 19/1927
  39191. }
  39192. },
  39193. },
  39194. [
  39195. {
  39196. name: "Minimum",
  39197. height: math.unit(2, "cm")
  39198. },
  39199. {
  39200. name: "Micro",
  39201. height: math.unit(3, "inches")
  39202. },
  39203. {
  39204. name: "Normal",
  39205. height: math.unit(5 + 10/12, "feet"),
  39206. default: true
  39207. },
  39208. {
  39209. name: "Macro",
  39210. height: math.unit(150, "feet")
  39211. },
  39212. {
  39213. name: "Megamacro",
  39214. height: math.unit(10000, "m")
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(2, "meters"),
  39223. weight: math.unit(100, "kg"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/shiron/front.svg",
  39227. extra: 2103/1985,
  39228. bottom: 98/2201
  39229. }
  39230. },
  39231. back: {
  39232. height: math.unit(2, "meters"),
  39233. weight: math.unit(100, "kg"),
  39234. name: "Back",
  39235. image: {
  39236. source: "./media/characters/shiron/back.svg",
  39237. extra: 2110/2015,
  39238. bottom: 89/2199
  39239. }
  39240. },
  39241. hand: {
  39242. height: math.unit(0.96, "feet"),
  39243. name: "Hand",
  39244. image: {
  39245. source: "./media/characters/shiron/hand.svg"
  39246. }
  39247. },
  39248. foot: {
  39249. height: math.unit(1.464, "feet"),
  39250. name: "Foot",
  39251. image: {
  39252. source: "./media/characters/shiron/foot.svg"
  39253. }
  39254. },
  39255. },
  39256. [
  39257. {
  39258. name: "Normal",
  39259. height: math.unit(2, "meters")
  39260. },
  39261. {
  39262. name: "Macro",
  39263. height: math.unit(500, "meters"),
  39264. default: true
  39265. },
  39266. {
  39267. name: "Megamacro",
  39268. height: math.unit(20, "km")
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(6, "feet"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/sam/front.svg",
  39280. extra: 849/826,
  39281. bottom: 19/868
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(6, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(8 + 4/12, "feet"),
  39298. weight: math.unit(122, "kg"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/namori-kurogawa/front.svg",
  39302. extra: 1894/1576,
  39303. bottom: 34/1928
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Normal",
  39310. height: math.unit(8 + 4/12, "feet"),
  39311. default: true
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(9, "feet"),
  39320. weight: math.unit(621, "lb"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/unmru/front.svg",
  39324. extra: 1853/1747,
  39325. bottom: 73/1926
  39326. }
  39327. },
  39328. side: {
  39329. height: math.unit(9, "feet"),
  39330. weight: math.unit(621, "lb"),
  39331. name: "Side",
  39332. image: {
  39333. source: "./media/characters/unmru/side.svg",
  39334. extra: 1781/1671,
  39335. bottom: 127/1908
  39336. }
  39337. },
  39338. back: {
  39339. height: math.unit(9, "feet"),
  39340. weight: math.unit(621, "lb"),
  39341. name: "Back",
  39342. image: {
  39343. source: "./media/characters/unmru/back.svg",
  39344. extra: 1894/1765,
  39345. bottom: 75/1969
  39346. }
  39347. },
  39348. dick: {
  39349. height: math.unit(3, "feet"),
  39350. weight: math.unit(35, "lb"),
  39351. name: "Dick",
  39352. image: {
  39353. source: "./media/characters/unmru/dick.svg"
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(9, "feet")
  39361. },
  39362. {
  39363. name: "Natural",
  39364. height: math.unit(27, "feet"),
  39365. default: true
  39366. },
  39367. {
  39368. name: "Giant",
  39369. height: math.unit(90, "feet")
  39370. },
  39371. {
  39372. name: "Kaiju",
  39373. height: math.unit(270, "feet")
  39374. },
  39375. {
  39376. name: "Macro",
  39377. height: math.unit(900, "feet")
  39378. },
  39379. {
  39380. name: "Macro+",
  39381. height: math.unit(2700, "feet")
  39382. },
  39383. {
  39384. name: "Megamacro",
  39385. height: math.unit(9000, "feet")
  39386. },
  39387. {
  39388. name: "City-Crushing",
  39389. height: math.unit(27000, "feet")
  39390. },
  39391. {
  39392. name: "Mountain-Mashing",
  39393. height: math.unit(90000, "feet")
  39394. },
  39395. {
  39396. name: "Earth-Eclipsing",
  39397. height: math.unit(2.7e8, "feet")
  39398. },
  39399. {
  39400. name: "Sol-Swallowing",
  39401. height: math.unit(9e10, "feet")
  39402. },
  39403. {
  39404. name: "Majoris-Munching",
  39405. height: math.unit(2.7e13, "feet")
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39411. {
  39412. front: {
  39413. height: math.unit(1, "inch"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/squeaks-mouse/front.svg",
  39417. extra: 352/308,
  39418. bottom: 25/377
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Micro",
  39425. height: math.unit(1, "inch"),
  39426. default: true
  39427. },
  39428. ]
  39429. ))
  39430. characterMakers.push(() => makeCharacter(
  39431. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39432. {
  39433. side: {
  39434. height: math.unit(35, "feet"),
  39435. name: "Side",
  39436. image: {
  39437. source: "./media/characters/sayko/side.svg",
  39438. extra: 1697/1021,
  39439. bottom: 82/1779
  39440. }
  39441. },
  39442. head: {
  39443. height: math.unit(16, "feet"),
  39444. name: "Head",
  39445. image: {
  39446. source: "./media/characters/sayko/head.svg"
  39447. }
  39448. },
  39449. forepaw: {
  39450. height: math.unit(7.85, "feet"),
  39451. name: "Forepaw",
  39452. image: {
  39453. source: "./media/characters/sayko/forepaw.svg"
  39454. }
  39455. },
  39456. hindpaw: {
  39457. height: math.unit(8.8, "feet"),
  39458. name: "Hindpaw",
  39459. image: {
  39460. source: "./media/characters/sayko/hindpaw.svg"
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(35, "feet"),
  39468. default: true
  39469. },
  39470. {
  39471. name: "Colossus",
  39472. height: math.unit(100, "meters")
  39473. },
  39474. {
  39475. name: "\"Small\" Deity",
  39476. height: math.unit(1, "km")
  39477. },
  39478. {
  39479. name: "\"Large\" Deity",
  39480. height: math.unit(15, "km")
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(6, "feet"),
  39489. weight: math.unit(250, "lb"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/mukiro/front.svg",
  39493. extra: 1368/1310,
  39494. bottom: 34/1402
  39495. }
  39496. },
  39497. },
  39498. [
  39499. {
  39500. name: "Normal",
  39501. height: math.unit(6, "feet"),
  39502. default: true
  39503. },
  39504. ]
  39505. ))
  39506. characterMakers.push(() => makeCharacter(
  39507. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39508. {
  39509. front: {
  39510. height: math.unit(12 + 4/12, "feet"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39514. extra: 1346/1311,
  39515. bottom: 65/1411
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Base",
  39522. height: math.unit(12 + 4/12, "feet"),
  39523. default: true
  39524. },
  39525. {
  39526. name: "Macro",
  39527. height: math.unit(150, "feet")
  39528. },
  39529. {
  39530. name: "Mega",
  39531. height: math.unit(2, "miles")
  39532. },
  39533. {
  39534. name: "Demi God",
  39535. height: math.unit(4, "AU")
  39536. },
  39537. {
  39538. name: "God Size",
  39539. height: math.unit(1, "universe")
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(3 + 3/12, "feet"),
  39548. weight: math.unit(88, "lb"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/trey/front.svg",
  39552. extra: 1815/1509,
  39553. bottom: 60/1875
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Normal",
  39560. height: math.unit(3 + 3/12, "feet"),
  39561. default: true
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39567. {
  39568. front: {
  39569. height: math.unit(4, "meters"),
  39570. name: "Front",
  39571. image: {
  39572. source: "./media/characters/adelonda/front.svg",
  39573. extra: 1077/982,
  39574. bottom: 39/1116
  39575. }
  39576. },
  39577. back: {
  39578. height: math.unit(4, "meters"),
  39579. name: "Back",
  39580. image: {
  39581. source: "./media/characters/adelonda/back.svg",
  39582. extra: 1105/1003,
  39583. bottom: 25/1130
  39584. }
  39585. },
  39586. feral: {
  39587. height: math.unit(40/1.5, "meters"),
  39588. name: "Feral",
  39589. image: {
  39590. source: "./media/characters/adelonda/feral.svg",
  39591. extra: 597/271,
  39592. bottom: 387/984
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(4, "meters"),
  39600. default: true
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(8 + 4/12, "feet"),
  39609. weight: math.unit(670, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/acadiel/front.svg",
  39613. extra: 1901/1595,
  39614. bottom: 142/2043
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(8 + 4/12, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(200, "feet")
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(6 + 2/12, "feet"),
  39635. weight: math.unit(185, "lb"),
  39636. name: "Front",
  39637. image: {
  39638. source: "./media/characters/kayne-ein/front.svg",
  39639. extra: 1780/1560,
  39640. bottom: 81/1861
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(6 + 2/12, "feet"),
  39648. default: true
  39649. },
  39650. {
  39651. name: "Transformation Stage",
  39652. height: math.unit(15, "feet")
  39653. },
  39654. {
  39655. name: "Macro",
  39656. height: math.unit(150, "feet")
  39657. },
  39658. {
  39659. name: "Earth's Shadow",
  39660. height: math.unit(6200, "miles")
  39661. },
  39662. {
  39663. name: "Universal Demon",
  39664. height: math.unit(28e9, "parsecs")
  39665. },
  39666. {
  39667. name: "Multiverse God",
  39668. height: math.unit(3, "multiverses")
  39669. },
  39670. ]
  39671. ))
  39672. characterMakers.push(() => makeCharacter(
  39673. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39674. {
  39675. front: {
  39676. height: math.unit(5 + 5/12, "feet"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/fawn/front.svg",
  39680. extra: 1873/1731,
  39681. bottom: 95/1968
  39682. }
  39683. },
  39684. back: {
  39685. height: math.unit(5 + 5/12, "feet"),
  39686. name: "Back",
  39687. image: {
  39688. source: "./media/characters/fawn/back.svg",
  39689. extra: 1813/1700,
  39690. bottom: 14/1827
  39691. }
  39692. },
  39693. hoof: {
  39694. height: math.unit(1.45, "feet"),
  39695. name: "Hoof",
  39696. image: {
  39697. source: "./media/characters/fawn/hoof.svg"
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(5 + 5/12, "feet"),
  39705. default: true
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39711. {
  39712. front: {
  39713. height: math.unit(2 + 5/12, "feet"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/orion/front.svg",
  39717. extra: 1366/1304,
  39718. bottom: 43/1409
  39719. }
  39720. },
  39721. paw: {
  39722. height: math.unit(0.52, "feet"),
  39723. name: "Paw",
  39724. image: {
  39725. source: "./media/characters/orion/paw.svg"
  39726. }
  39727. },
  39728. },
  39729. [
  39730. {
  39731. name: "Normal",
  39732. height: math.unit(2 + 5/12, "feet"),
  39733. default: true
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39739. {
  39740. front: {
  39741. height: math.unit(5 + 10/12, "feet"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/vera/front.svg",
  39745. extra: 1680/1575,
  39746. bottom: 49/1729
  39747. }
  39748. },
  39749. back: {
  39750. height: math.unit(5 + 10/12, "feet"),
  39751. name: "Back",
  39752. image: {
  39753. source: "./media/characters/vera/back.svg",
  39754. extra: 1700/1588,
  39755. bottom: 18/1718
  39756. }
  39757. },
  39758. arcanine: {
  39759. height: math.unit(6 + 8/12, "feet"),
  39760. name: "Arcanine",
  39761. image: {
  39762. source: "./media/characters/vera/arcanine.svg",
  39763. extra: 1590/1511,
  39764. bottom: 71/1661
  39765. }
  39766. },
  39767. maw: {
  39768. height: math.unit(0.82, "feet"),
  39769. name: "Maw",
  39770. image: {
  39771. source: "./media/characters/vera/maw.svg"
  39772. }
  39773. },
  39774. mawArcanine: {
  39775. height: math.unit(0.97, "feet"),
  39776. name: "Maw (Arcanine)",
  39777. image: {
  39778. source: "./media/characters/vera/maw-arcanine.svg"
  39779. }
  39780. },
  39781. paw: {
  39782. height: math.unit(0.75, "feet"),
  39783. name: "Paw",
  39784. image: {
  39785. source: "./media/characters/vera/paw.svg"
  39786. }
  39787. },
  39788. pawprint: {
  39789. height: math.unit(0.52, "feet"),
  39790. name: "Pawprint",
  39791. image: {
  39792. source: "./media/characters/vera/pawprint.svg"
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(5 + 10/12, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Macro",
  39804. height: math.unit(75, "feet")
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(4, "feet"),
  39813. weight: math.unit(40, "lb"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/orvan-rabbit/front.svg",
  39817. extra: 1896/1642,
  39818. bottom: 29/1925
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(4, "feet"),
  39826. default: true
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(6, "feet"),
  39835. weight: math.unit(168, "lb"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/lisa/front.svg",
  39839. extra: 2065/1867,
  39840. bottom: 46/2111
  39841. }
  39842. },
  39843. back: {
  39844. height: math.unit(6, "feet"),
  39845. weight: math.unit(168, "lb"),
  39846. name: "Back",
  39847. image: {
  39848. source: "./media/characters/lisa/back.svg",
  39849. extra: 1982/1838,
  39850. bottom: 29/2011
  39851. }
  39852. },
  39853. maw: {
  39854. height: math.unit(0.81, "feet"),
  39855. name: "Maw",
  39856. image: {
  39857. source: "./media/characters/lisa/maw.svg"
  39858. }
  39859. },
  39860. paw: {
  39861. height: math.unit(0.9, "feet"),
  39862. name: "Paw",
  39863. image: {
  39864. source: "./media/characters/lisa/paw.svg"
  39865. }
  39866. },
  39867. caribousune: {
  39868. height: math.unit(7 + 2/12, "feet"),
  39869. weight: math.unit(268, "lb"),
  39870. name: "Caribousune",
  39871. image: {
  39872. source: "./media/characters/lisa/caribousune.svg",
  39873. extra: 1843/1633,
  39874. bottom: 29/1872
  39875. }
  39876. },
  39877. frontCaribousune: {
  39878. height: math.unit(7 + 2/12, "feet"),
  39879. weight: math.unit(268, "lb"),
  39880. name: "Front (Caribousune)",
  39881. image: {
  39882. source: "./media/characters/lisa/front-caribousune.svg",
  39883. extra: 1818/1638,
  39884. bottom: 52/1870
  39885. }
  39886. },
  39887. sideCaribousune: {
  39888. height: math.unit(7 + 2/12, "feet"),
  39889. weight: math.unit(268, "lb"),
  39890. name: "Side (Caribousune)",
  39891. image: {
  39892. source: "./media/characters/lisa/side-caribousune.svg",
  39893. extra: 1851/1635,
  39894. bottom: 16/1867
  39895. }
  39896. },
  39897. backCaribousune: {
  39898. height: math.unit(7 + 2/12, "feet"),
  39899. weight: math.unit(268, "lb"),
  39900. name: "Back (Caribousune)",
  39901. image: {
  39902. source: "./media/characters/lisa/back-caribousune.svg",
  39903. extra: 1801/1604,
  39904. bottom: 44/1845
  39905. }
  39906. },
  39907. caribou: {
  39908. height: math.unit(7 + 2/12, "feet"),
  39909. weight: math.unit(268, "lb"),
  39910. name: "Caribou",
  39911. image: {
  39912. source: "./media/characters/lisa/caribou.svg",
  39913. extra: 1843/1633,
  39914. bottom: 29/1872
  39915. }
  39916. },
  39917. frontCaribou: {
  39918. height: math.unit(7 + 2/12, "feet"),
  39919. weight: math.unit(268, "lb"),
  39920. name: "Front (Caribou)",
  39921. image: {
  39922. source: "./media/characters/lisa/front-caribou.svg",
  39923. extra: 1818/1638,
  39924. bottom: 52/1870
  39925. }
  39926. },
  39927. sideCaribou: {
  39928. height: math.unit(7 + 2/12, "feet"),
  39929. weight: math.unit(268, "lb"),
  39930. name: "Side (Caribou)",
  39931. image: {
  39932. source: "./media/characters/lisa/side-caribou.svg",
  39933. extra: 1851/1635,
  39934. bottom: 16/1867
  39935. }
  39936. },
  39937. backCaribou: {
  39938. height: math.unit(7 + 2/12, "feet"),
  39939. weight: math.unit(268, "lb"),
  39940. name: "Back (Caribou)",
  39941. image: {
  39942. source: "./media/characters/lisa/back-caribou.svg",
  39943. extra: 1801/1604,
  39944. bottom: 44/1845
  39945. }
  39946. },
  39947. mawCaribou: {
  39948. height: math.unit(1.45, "feet"),
  39949. name: "Maw (Caribou)",
  39950. image: {
  39951. source: "./media/characters/lisa/maw-caribou.svg"
  39952. }
  39953. },
  39954. mawCaribousune: {
  39955. height: math.unit(1.45, "feet"),
  39956. name: "Maw (Caribousune)",
  39957. image: {
  39958. source: "./media/characters/lisa/maw-caribousune.svg"
  39959. }
  39960. },
  39961. pawCaribousune: {
  39962. height: math.unit(1.61, "feet"),
  39963. name: "Paw (Caribou)",
  39964. image: {
  39965. source: "./media/characters/lisa/paw-caribousune.svg"
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(6, "feet")
  39973. },
  39974. {
  39975. name: "God Size",
  39976. height: math.unit(72, "feet"),
  39977. default: true
  39978. },
  39979. {
  39980. name: "Towering",
  39981. height: math.unit(288, "feet")
  39982. },
  39983. {
  39984. name: "City Size",
  39985. height: math.unit(48384, "feet")
  39986. },
  39987. {
  39988. name: "Continental",
  39989. height: math.unit(4200, "miles")
  39990. },
  39991. {
  39992. name: "Planet Eater",
  39993. height: math.unit(42, "earths")
  39994. },
  39995. {
  39996. name: "Star Swallower",
  39997. height: math.unit(42, "solarradii")
  39998. },
  39999. {
  40000. name: "System Swallower",
  40001. height: math.unit(84000, "AU")
  40002. },
  40003. {
  40004. name: "Galaxy Gobbler",
  40005. height: math.unit(42, "galaxies")
  40006. },
  40007. {
  40008. name: "Universe Devourer",
  40009. height: math.unit(42, "universes")
  40010. },
  40011. {
  40012. name: "Multiverse Muncher",
  40013. height: math.unit(42, "multiverses")
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(36, "feet"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/shadow-rat/front.svg",
  40025. extra: 1845/1758,
  40026. bottom: 83/1928
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Macro",
  40033. height: math.unit(36, "feet"),
  40034. default: true
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40040. {
  40041. side: {
  40042. height: math.unit(8, "feet"),
  40043. weight: math.unit(2630, "lb"),
  40044. name: "Side",
  40045. image: {
  40046. source: "./media/characters/torallia/side.svg",
  40047. extra: 2164/2021,
  40048. bottom: 371/2535
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Mortal Interaction",
  40055. height: math.unit(8, "feet")
  40056. },
  40057. {
  40058. name: "Natural",
  40059. height: math.unit(24, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Giant",
  40064. height: math.unit(80, "feet")
  40065. },
  40066. {
  40067. name: "Kaiju",
  40068. height: math.unit(240, "feet")
  40069. },
  40070. {
  40071. name: "Macro",
  40072. height: math.unit(800, "feet")
  40073. },
  40074. {
  40075. name: "Macro+",
  40076. height: math.unit(2400, "feet")
  40077. },
  40078. {
  40079. name: "Macro++",
  40080. height: math.unit(8000, "feet")
  40081. },
  40082. {
  40083. name: "City-Crushing",
  40084. height: math.unit(24000, "feet")
  40085. },
  40086. {
  40087. name: "Mountain-Mashing",
  40088. height: math.unit(80000, "feet")
  40089. },
  40090. {
  40091. name: "District Demolisher",
  40092. height: math.unit(240000, "feet")
  40093. },
  40094. {
  40095. name: "Tri-County Terror",
  40096. height: math.unit(800000, "feet")
  40097. },
  40098. {
  40099. name: "State Smasher",
  40100. height: math.unit(2.4e6, "feet")
  40101. },
  40102. {
  40103. name: "Nation Nemesis",
  40104. height: math.unit(8e6, "feet")
  40105. },
  40106. {
  40107. name: "Continent Cracker",
  40108. height: math.unit(2.4e7, "feet")
  40109. },
  40110. {
  40111. name: "Planet-Pillaging",
  40112. height: math.unit(8e7, "feet")
  40113. },
  40114. {
  40115. name: "Earth-Eclipsing",
  40116. height: math.unit(2.4e8, "feet")
  40117. },
  40118. {
  40119. name: "Jovian-Jostling",
  40120. height: math.unit(8e8, "feet")
  40121. },
  40122. {
  40123. name: "Gas Giant Gulper",
  40124. height: math.unit(2.4e9, "feet")
  40125. },
  40126. {
  40127. name: "Astral Annihilator",
  40128. height: math.unit(8e9, "feet")
  40129. },
  40130. {
  40131. name: "Celestial Conqueror",
  40132. height: math.unit(2.4e10, "feet")
  40133. },
  40134. {
  40135. name: "Sol-Swallowing",
  40136. height: math.unit(8e10, "feet")
  40137. },
  40138. {
  40139. name: "Hunter of the Heavens",
  40140. height: math.unit(2.4e13, "feet")
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(6 + 8/12, "feet"),
  40149. weight: math.unit(250, "kilograms"),
  40150. volume: math.unit(28, "liters"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/rebecca-pawlson/front.svg",
  40154. extra: 1737/1596,
  40155. bottom: 107/1844
  40156. }
  40157. },
  40158. back: {
  40159. height: math.unit(6 + 8/12, "feet"),
  40160. weight: math.unit(250, "kilograms"),
  40161. volume: math.unit(28, "liters"),
  40162. name: "Back",
  40163. image: {
  40164. source: "./media/characters/rebecca-pawlson/back.svg",
  40165. extra: 1702/1523,
  40166. bottom: 86/1788
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(6 + 8/12, "feet")
  40174. },
  40175. {
  40176. name: "Mini Macro",
  40177. height: math.unit(10, "feet"),
  40178. default: true
  40179. },
  40180. {
  40181. name: "Macro",
  40182. height: math.unit(100, "feet")
  40183. },
  40184. {
  40185. name: "Mega Macro",
  40186. height: math.unit(2500, "feet")
  40187. },
  40188. {
  40189. name: "Giga Macro",
  40190. height: math.unit(50, "miles")
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(7 + 6/12, "feet"),
  40199. weight: math.unit(600, "lb"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/moxie-nova/front.svg",
  40203. extra: 1734/1652,
  40204. bottom: 41/1775
  40205. }
  40206. },
  40207. },
  40208. [
  40209. {
  40210. name: "Normal",
  40211. height: math.unit(7 + 6/12, "feet"),
  40212. default: true
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40218. {
  40219. goat: {
  40220. height: math.unit(4, "feet"),
  40221. weight: math.unit(180, "lb"),
  40222. name: "Goat",
  40223. image: {
  40224. source: "./media/characters/tiffany/goat.svg",
  40225. extra: 1845/1595,
  40226. bottom: 106/1951
  40227. }
  40228. },
  40229. front: {
  40230. height: math.unit(5, "feet"),
  40231. weight: math.unit(150, "lb"),
  40232. name: "Foxcoon",
  40233. image: {
  40234. source: "./media/characters/tiffany/foxcoon.svg",
  40235. extra: 1941/1845,
  40236. bottom: 58/1999
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(5, "feet"),
  40244. default: true
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40250. {
  40251. front: {
  40252. height: math.unit(8, "feet"),
  40253. weight: math.unit(300, "lb"),
  40254. name: "Front",
  40255. image: {
  40256. source: "./media/characters/raxinath/front.svg",
  40257. extra: 1407/1309,
  40258. bottom: 39/1446
  40259. }
  40260. },
  40261. back: {
  40262. height: math.unit(8, "feet"),
  40263. weight: math.unit(300, "lb"),
  40264. name: "Back",
  40265. image: {
  40266. source: "./media/characters/raxinath/back.svg",
  40267. extra: 1405/1315,
  40268. bottom: 9/1414
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Speck",
  40275. height: math.unit(0.5, "nm")
  40276. },
  40277. {
  40278. name: "Micro",
  40279. height: math.unit(3, "inches")
  40280. },
  40281. {
  40282. name: "Kobold",
  40283. height: math.unit(3, "feet")
  40284. },
  40285. {
  40286. name: "Normal",
  40287. height: math.unit(8, "feet"),
  40288. default: true
  40289. },
  40290. {
  40291. name: "Giant",
  40292. height: math.unit(50, "feet")
  40293. },
  40294. {
  40295. name: "Macro",
  40296. height: math.unit(1000, "feet")
  40297. },
  40298. {
  40299. name: "Megamacro",
  40300. height: math.unit(1, "mile")
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(10, "feet"),
  40309. weight: math.unit(1442, "lb"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/mal-dragon/front.svg",
  40313. extra: 1515/1444,
  40314. bottom: 113/1628
  40315. }
  40316. },
  40317. back: {
  40318. height: math.unit(10, "feet"),
  40319. weight: math.unit(1442, "lb"),
  40320. name: "Back",
  40321. image: {
  40322. source: "./media/characters/mal-dragon/back.svg",
  40323. extra: 1527/1434,
  40324. bottom: 25/1552
  40325. }
  40326. },
  40327. },
  40328. [
  40329. {
  40330. name: "Mortal Interaction",
  40331. height: math.unit(10, "feet"),
  40332. default: true
  40333. },
  40334. {
  40335. name: "Large",
  40336. height: math.unit(30, "feet")
  40337. },
  40338. {
  40339. name: "Kaiju",
  40340. height: math.unit(300, "feet")
  40341. },
  40342. {
  40343. name: "Megamacro",
  40344. height: math.unit(10000, "feet")
  40345. },
  40346. {
  40347. name: "Continent Cracker",
  40348. height: math.unit(30000000, "feet")
  40349. },
  40350. {
  40351. name: "Sol-Swallowing",
  40352. height: math.unit(1e11, "feet")
  40353. },
  40354. {
  40355. name: "Light Universal",
  40356. height: math.unit(5, "universes")
  40357. },
  40358. {
  40359. name: "Universe Atoms",
  40360. height: math.unit(1.829e9, "universes")
  40361. },
  40362. {
  40363. name: "Light Multiversal",
  40364. height: math.unit(5, "multiverses")
  40365. },
  40366. {
  40367. name: "Multiverse Atoms",
  40368. height: math.unit(1.829e9, "multiverses")
  40369. },
  40370. {
  40371. name: "Fabric of Time",
  40372. height: math.unit(1e262, "multiverses")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(9, "feet"),
  40381. weight: math.unit(1050, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/tabitha/front.svg",
  40385. extra: 2083/1994,
  40386. bottom: 68/2151
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Baseline",
  40393. height: math.unit(9, "feet"),
  40394. default: true
  40395. },
  40396. {
  40397. name: "Giant",
  40398. height: math.unit(90, "feet")
  40399. },
  40400. {
  40401. name: "Macro",
  40402. height: math.unit(900, "feet")
  40403. },
  40404. {
  40405. name: "Megamacro",
  40406. height: math.unit(9000, "feet")
  40407. },
  40408. {
  40409. name: "City-Crushing",
  40410. height: math.unit(27000, "feet")
  40411. },
  40412. {
  40413. name: "Mountain-Mashing",
  40414. height: math.unit(90000, "feet")
  40415. },
  40416. {
  40417. name: "Nation Nemesis",
  40418. height: math.unit(9e6, "feet")
  40419. },
  40420. {
  40421. name: "Continent Cracker",
  40422. height: math.unit(27e6, "feet")
  40423. },
  40424. {
  40425. name: "Earth-Eclipsing",
  40426. height: math.unit(2.7e8, "feet")
  40427. },
  40428. {
  40429. name: "Gas Giant Gulper",
  40430. height: math.unit(2.7e9, "feet")
  40431. },
  40432. {
  40433. name: "Sol-Swallowing",
  40434. height: math.unit(9e10, "feet")
  40435. },
  40436. {
  40437. name: "Galaxy Gulper",
  40438. height: math.unit(9, "galaxies")
  40439. },
  40440. {
  40441. name: "Cosmos Churner",
  40442. height: math.unit(9, "universes")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(160, "cm"),
  40451. weight: math.unit(55, "kg"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/tow/front.svg",
  40455. extra: 1751/1722,
  40456. bottom: 74/1825
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Norm",
  40463. height: math.unit(160, "cm")
  40464. },
  40465. {
  40466. name: "Casual",
  40467. height: math.unit(3200, "m"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Show-Off",
  40472. height: math.unit(160, "km")
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40478. {
  40479. front: {
  40480. height: math.unit(7 + 11/12, "feet"),
  40481. weight: math.unit(342.8, "lb"),
  40482. name: "Front",
  40483. image: {
  40484. source: "./media/characters/vivian-orca-dragon/front.svg",
  40485. extra: 1890/1865,
  40486. bottom: 28/1918
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Micro",
  40493. height: math.unit(5, "inches")
  40494. },
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(7 + 11/12, "feet"),
  40498. default: true
  40499. },
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(395 + 7/12, "feet")
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40508. {
  40509. side: {
  40510. height: math.unit(10, "feet"),
  40511. weight: math.unit(1442, "lb"),
  40512. name: "Side",
  40513. image: {
  40514. source: "./media/characters/lotherakon/side.svg",
  40515. extra: 1604/1497,
  40516. bottom: 89/1693
  40517. }
  40518. },
  40519. },
  40520. [
  40521. {
  40522. name: "Mortal Interaction",
  40523. height: math.unit(10, "feet")
  40524. },
  40525. {
  40526. name: "Large",
  40527. height: math.unit(30, "feet"),
  40528. default: true
  40529. },
  40530. {
  40531. name: "Giant",
  40532. height: math.unit(100, "feet")
  40533. },
  40534. {
  40535. name: "Kaiju",
  40536. height: math.unit(300, "feet")
  40537. },
  40538. {
  40539. name: "Macro",
  40540. height: math.unit(1000, "feet")
  40541. },
  40542. {
  40543. name: "Macro+",
  40544. height: math.unit(3000, "feet")
  40545. },
  40546. {
  40547. name: "Megamacro",
  40548. height: math.unit(10000, "feet")
  40549. },
  40550. {
  40551. name: "City-Crushing",
  40552. height: math.unit(30000, "feet")
  40553. },
  40554. {
  40555. name: "Continent Cracker",
  40556. height: math.unit(30e6, "feet")
  40557. },
  40558. {
  40559. name: "Earth Eclipsing",
  40560. height: math.unit(3e8, "feet")
  40561. },
  40562. {
  40563. name: "Gas Giant Gulper",
  40564. height: math.unit(3e9, "feet")
  40565. },
  40566. {
  40567. name: "Sol-Swallowing",
  40568. height: math.unit(1e11, "feet")
  40569. },
  40570. {
  40571. name: "System Swallower",
  40572. height: math.unit(3e14, "feet")
  40573. },
  40574. {
  40575. name: "Galaxy Gulper",
  40576. height: math.unit(10, "galaxies")
  40577. },
  40578. {
  40579. name: "Light Universal",
  40580. height: math.unit(5, "universes")
  40581. },
  40582. {
  40583. name: "Universe Palm",
  40584. height: math.unit(20, "universes")
  40585. },
  40586. {
  40587. name: "Light Multiversal",
  40588. height: math.unit(5, "multiverses")
  40589. },
  40590. {
  40591. name: "Multiverse Palm",
  40592. height: math.unit(20, "multiverses")
  40593. },
  40594. {
  40595. name: "Inferno Incarnate",
  40596. height: math.unit(1e7, "multiverses")
  40597. },
  40598. ]
  40599. ))
  40600. characterMakers.push(() => makeCharacter(
  40601. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40602. {
  40603. front: {
  40604. height: math.unit(8, "feet"),
  40605. weight: math.unit(1200, "lb"),
  40606. name: "Front",
  40607. image: {
  40608. source: "./media/characters/malithee/front.svg",
  40609. extra: 1675/1640,
  40610. bottom: 162/1837
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Mortal Interaction",
  40617. height: math.unit(8, "feet"),
  40618. default: true
  40619. },
  40620. {
  40621. name: "Large",
  40622. height: math.unit(24, "feet")
  40623. },
  40624. {
  40625. name: "Kaiju",
  40626. height: math.unit(240, "feet")
  40627. },
  40628. {
  40629. name: "Megamacro",
  40630. height: math.unit(8000, "feet")
  40631. },
  40632. {
  40633. name: "Continent Cracker",
  40634. height: math.unit(24e6, "feet")
  40635. },
  40636. {
  40637. name: "Earth-Eclipsing",
  40638. height: math.unit(2.4e8, "feet")
  40639. },
  40640. {
  40641. name: "Sol-Swallowing",
  40642. height: math.unit(8e10, "feet")
  40643. },
  40644. {
  40645. name: "Galaxy Gulper",
  40646. height: math.unit(8, "galaxies")
  40647. },
  40648. {
  40649. name: "Light Universal",
  40650. height: math.unit(4, "universes")
  40651. },
  40652. {
  40653. name: "Universe Atoms",
  40654. height: math.unit(1.829e9, "universes")
  40655. },
  40656. {
  40657. name: "Light Multiversal",
  40658. height: math.unit(4, "multiverses")
  40659. },
  40660. {
  40661. name: "Multiverse Atoms",
  40662. height: math.unit(1.829e9, "multiverses")
  40663. },
  40664. {
  40665. name: "Nigh-Omnipresence",
  40666. height: math.unit(8e261, "multiverses")
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(10, "feet"),
  40675. weight: math.unit(1500, "lb"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/miles-thestia/front.svg",
  40679. extra: 1812/1727,
  40680. bottom: 86/1898
  40681. }
  40682. },
  40683. back: {
  40684. height: math.unit(10, "feet"),
  40685. weight: math.unit(1500, "lb"),
  40686. name: "Back",
  40687. image: {
  40688. source: "./media/characters/miles-thestia/back.svg",
  40689. extra: 1799/1690,
  40690. bottom: 47/1846
  40691. }
  40692. },
  40693. frontNsfw: {
  40694. height: math.unit(10, "feet"),
  40695. weight: math.unit(1500, "lb"),
  40696. name: "Front (NSFW)",
  40697. image: {
  40698. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40699. extra: 1812/1727,
  40700. bottom: 86/1898
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Mini-Macro",
  40707. height: math.unit(10, "feet"),
  40708. default: true
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(25, "feet"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/titan-s-wulf/front.svg",
  40720. extra: 1560/1484,
  40721. bottom: 76/1636
  40722. }
  40723. },
  40724. },
  40725. [
  40726. {
  40727. name: "Smallest",
  40728. height: math.unit(25, "feet"),
  40729. default: true
  40730. },
  40731. {
  40732. name: "Normal",
  40733. height: math.unit(200, "feet")
  40734. },
  40735. {
  40736. name: "Macro",
  40737. height: math.unit(200000, "feet")
  40738. },
  40739. {
  40740. name: "Multiversal Original",
  40741. height: math.unit(10000, "multiverses")
  40742. },
  40743. ]
  40744. ))
  40745. characterMakers.push(() => makeCharacter(
  40746. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40747. {
  40748. front: {
  40749. height: math.unit(8, "feet"),
  40750. weight: math.unit(553, "lb"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/tawendeh/front.svg",
  40754. extra: 2365/2268,
  40755. bottom: 83/2448
  40756. }
  40757. },
  40758. frontClothed: {
  40759. height: math.unit(8, "feet"),
  40760. weight: math.unit(553, "lb"),
  40761. name: "Front (Clothed)",
  40762. image: {
  40763. source: "./media/characters/tawendeh/front-clothed.svg",
  40764. extra: 2365/2268,
  40765. bottom: 83/2448
  40766. }
  40767. },
  40768. back: {
  40769. height: math.unit(8, "feet"),
  40770. weight: math.unit(553, "lb"),
  40771. name: "Back",
  40772. image: {
  40773. source: "./media/characters/tawendeh/back.svg",
  40774. extra: 2397/2294,
  40775. bottom: 42/2439
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Mortal Interaction",
  40782. height: math.unit(8, "feet"),
  40783. default: true
  40784. },
  40785. {
  40786. name: "Giant",
  40787. height: math.unit(80, "feet")
  40788. },
  40789. {
  40790. name: "Macro",
  40791. height: math.unit(800, "feet")
  40792. },
  40793. {
  40794. name: "Megamacro",
  40795. height: math.unit(8000, "feet")
  40796. },
  40797. {
  40798. name: "City-Crushing",
  40799. height: math.unit(24000, "feet")
  40800. },
  40801. {
  40802. name: "Mountain-Mashing",
  40803. height: math.unit(80000, "feet")
  40804. },
  40805. {
  40806. name: "Nation Nemesis",
  40807. height: math.unit(8e6, "feet")
  40808. },
  40809. {
  40810. name: "Continent Cracker",
  40811. height: math.unit(24e6, "feet")
  40812. },
  40813. {
  40814. name: "Earth-Eclipsing",
  40815. height: math.unit(2.4e8, "feet")
  40816. },
  40817. {
  40818. name: "Gas Giant Gulper",
  40819. height: math.unit(2.4e9, "feet")
  40820. },
  40821. {
  40822. name: "Sol-Swallowing",
  40823. height: math.unit(8e10, "feet")
  40824. },
  40825. {
  40826. name: "Galaxy Gulper",
  40827. height: math.unit(8, "galaxies")
  40828. },
  40829. {
  40830. name: "Cosmos Churner",
  40831. height: math.unit(8, "universes")
  40832. },
  40833. {
  40834. name: "Omnipotent Otter",
  40835. height: math.unit(80, "universes")
  40836. },
  40837. ]
  40838. ))
  40839. characterMakers.push(() => makeCharacter(
  40840. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40841. {
  40842. front: {
  40843. height: math.unit(2.6, "meters"),
  40844. weight: math.unit(900, "kg"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/neesha/front.svg",
  40848. extra: 1803/1653,
  40849. bottom: 128/1931
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Normal",
  40856. height: math.unit(2.6, "meters"),
  40857. default: true
  40858. },
  40859. {
  40860. name: "Macro",
  40861. height: math.unit(50, "meters")
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(5, "feet"),
  40870. weight: math.unit(185, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/kyera/front.svg",
  40874. extra: 1875/1790,
  40875. bottom: 96/1971
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Normal",
  40882. height: math.unit(5, "feet"),
  40883. default: true
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(7 + 6/12, "feet"),
  40892. weight: math.unit(540, "lb"),
  40893. name: "Front",
  40894. image: {
  40895. source: "./media/characters/yuko/front.svg",
  40896. extra: 1282/1222,
  40897. bottom: 101/1383
  40898. }
  40899. },
  40900. frontClothed: {
  40901. height: math.unit(7 + 6/12, "feet"),
  40902. weight: math.unit(540, "lb"),
  40903. name: "Front (Clothed)",
  40904. image: {
  40905. source: "./media/characters/yuko/front-clothed.svg",
  40906. extra: 1282/1222,
  40907. bottom: 101/1383
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(7 + 6/12, "feet"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "Macro",
  40919. height: math.unit(26 + 9/12, "feet")
  40920. },
  40921. {
  40922. name: "Megamacro",
  40923. height: math.unit(300, "feet")
  40924. },
  40925. {
  40926. name: "Gigamacro",
  40927. height: math.unit(5000, "feet")
  40928. },
  40929. {
  40930. name: "Planetary",
  40931. height: math.unit(10000, "miles")
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(8 + 2/12, "feet"),
  40940. weight: math.unit(600, "lb"),
  40941. name: "Front",
  40942. image: {
  40943. source: "./media/characters/deam-nitrel/front.svg",
  40944. extra: 1308/1234,
  40945. bottom: 125/1433
  40946. }
  40947. },
  40948. },
  40949. [
  40950. {
  40951. name: "Normal",
  40952. height: math.unit(8 + 2/12, "feet"),
  40953. default: true
  40954. },
  40955. ]
  40956. ))
  40957. characterMakers.push(() => makeCharacter(
  40958. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40959. {
  40960. front: {
  40961. height: math.unit(6.1, "feet"),
  40962. weight: math.unit(180, "lb"),
  40963. name: "Front",
  40964. image: {
  40965. source: "./media/characters/skyress/front.svg",
  40966. extra: 1045/915,
  40967. bottom: 28/1073
  40968. }
  40969. },
  40970. maw: {
  40971. height: math.unit(1, "feet"),
  40972. name: "Maw",
  40973. image: {
  40974. source: "./media/characters/skyress/maw.svg"
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Normal",
  40981. height: math.unit(6.1, "feet"),
  40982. default: true
  40983. },
  40984. {
  40985. name: "Macro",
  40986. height: math.unit(200, "feet")
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(4 + 2/12, "feet"),
  40995. weight: math.unit(40, "kg"),
  40996. name: "Front",
  40997. image: {
  40998. source: "./media/characters/amethyst-jones/front.svg",
  40999. extra: 1220/1150,
  41000. bottom: 101/1321
  41001. }
  41002. },
  41003. },
  41004. [
  41005. {
  41006. name: "Normal",
  41007. height: math.unit(4 + 2/12, "feet"),
  41008. default: true
  41009. },
  41010. ]
  41011. ))
  41012. characterMakers.push(() => makeCharacter(
  41013. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41014. {
  41015. front: {
  41016. height: math.unit(1.7, "m"),
  41017. weight: math.unit(135, "lb"),
  41018. name: "Front",
  41019. image: {
  41020. source: "./media/characters/jade/front.svg",
  41021. extra: 1818/1767,
  41022. bottom: 32/1850
  41023. }
  41024. },
  41025. back: {
  41026. height: math.unit(1.7, "m"),
  41027. weight: math.unit(135, "lb"),
  41028. name: "Back",
  41029. image: {
  41030. source: "./media/characters/jade/back.svg",
  41031. extra: 1869/1809,
  41032. bottom: 35/1904
  41033. }
  41034. },
  41035. hand: {
  41036. height: math.unit(0.24, "m"),
  41037. name: "Hand",
  41038. image: {
  41039. source: "./media/characters/jade/hand.svg"
  41040. }
  41041. },
  41042. foot: {
  41043. height: math.unit(0.263, "m"),
  41044. name: "Foot",
  41045. image: {
  41046. source: "./media/characters/jade/foot.svg"
  41047. }
  41048. },
  41049. dick: {
  41050. height: math.unit(0.47, "m"),
  41051. name: "Dick",
  41052. image: {
  41053. source: "./media/characters/jade/dick.svg"
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Micro",
  41060. height: math.unit(22, "cm")
  41061. },
  41062. {
  41063. name: "Normal",
  41064. height: math.unit(1.7, "m"),
  41065. default: true
  41066. },
  41067. {
  41068. name: "Macro",
  41069. height: math.unit(152, "m")
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(100, "miles"),
  41078. weight: math.unit(20000, "tons"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/cookie/front.svg",
  41082. extra: 1125/1070,
  41083. bottom: 30/1155
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Big",
  41090. height: math.unit(50, "feet")
  41091. },
  41092. {
  41093. name: "Macro",
  41094. height: math.unit(100, "miles"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Megamacro",
  41099. height: math.unit(90000, "miles")
  41100. },
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41105. {
  41106. front: {
  41107. height: math.unit(6, "feet"),
  41108. weight: math.unit(145, "lb"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/farzian/front.svg",
  41112. extra: 1902/1693,
  41113. bottom: 108/2010
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Macro",
  41120. height: math.unit(500, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(3 + 6/12, "feet"),
  41130. weight: math.unit(50, "lb"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/kimberly-tilson/front.svg",
  41134. extra: 1400/1322,
  41135. bottom: 36/1436
  41136. }
  41137. },
  41138. back: {
  41139. height: math.unit(3 + 6/12, "feet"),
  41140. weight: math.unit(50, "lb"),
  41141. name: "Back",
  41142. image: {
  41143. source: "./media/characters/kimberly-tilson/back.svg",
  41144. extra: 1370/1307,
  41145. bottom: 20/1390
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Normal",
  41152. height: math.unit(3 + 6/12, "feet"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(1148, "feet"),
  41162. weight: math.unit(34057, "lb"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/harthos/front.svg",
  41166. extra: 1391/1339,
  41167. bottom: 13/1404
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Macro",
  41174. height: math.unit(1148, "feet"),
  41175. default: true
  41176. },
  41177. ]
  41178. ))
  41179. characterMakers.push(() => makeCharacter(
  41180. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41181. {
  41182. front: {
  41183. height: math.unit(15, "feet"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/hypatia/front.svg",
  41187. extra: 1653/1591,
  41188. bottom: 79/1732
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Normal",
  41195. height: math.unit(15, "feet")
  41196. },
  41197. {
  41198. name: "Small",
  41199. height: math.unit(300, "feet")
  41200. },
  41201. {
  41202. name: "Macro",
  41203. height: math.unit(2500, "feet"),
  41204. default: true
  41205. },
  41206. {
  41207. name: "Mega Macro",
  41208. height: math.unit(1500, "miles")
  41209. },
  41210. {
  41211. name: "Giga Macro",
  41212. height: math.unit(1.5e6, "miles")
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(6, "feet"),
  41221. weight: math.unit(200, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/wulver/front.svg",
  41225. extra: 1724/1632,
  41226. bottom: 130/1854
  41227. }
  41228. },
  41229. frontNsfw: {
  41230. height: math.unit(6, "feet"),
  41231. weight: math.unit(200, "lb"),
  41232. name: "Front (NSFW)",
  41233. image: {
  41234. source: "./media/characters/wulver/front-nsfw.svg",
  41235. extra: 1724/1632,
  41236. bottom: 130/1854
  41237. }
  41238. },
  41239. },
  41240. [
  41241. {
  41242. name: "Human-Sized",
  41243. height: math.unit(6, "feet")
  41244. },
  41245. {
  41246. name: "Normal",
  41247. height: math.unit(4, "meters"),
  41248. default: true
  41249. },
  41250. {
  41251. name: "Large",
  41252. height: math.unit(6, "m")
  41253. },
  41254. ]
  41255. ))
  41256. characterMakers.push(() => makeCharacter(
  41257. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41258. {
  41259. front: {
  41260. height: math.unit(7, "feet"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/maru/front.svg",
  41264. extra: 1595/1570,
  41265. bottom: 0/1595
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(7, "feet"),
  41273. default: true
  41274. },
  41275. {
  41276. name: "Macro",
  41277. height: math.unit(700, "feet")
  41278. },
  41279. {
  41280. name: "Mega Macro",
  41281. height: math.unit(25, "miles")
  41282. },
  41283. ]
  41284. ))
  41285. characterMakers.push(() => makeCharacter(
  41286. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41287. {
  41288. front: {
  41289. height: math.unit(6, "feet"),
  41290. weight: math.unit(170, "lb"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/xenon/front.svg",
  41294. extra: 1376/1305,
  41295. bottom: 56/1432
  41296. }
  41297. },
  41298. back: {
  41299. height: math.unit(6, "feet"),
  41300. weight: math.unit(170, "lb"),
  41301. name: "Back",
  41302. image: {
  41303. source: "./media/characters/xenon/back.svg",
  41304. extra: 1328/1259,
  41305. bottom: 95/1423
  41306. }
  41307. },
  41308. maw: {
  41309. height: math.unit(0.52, "feet"),
  41310. name: "Maw",
  41311. image: {
  41312. source: "./media/characters/xenon/maw.svg"
  41313. }
  41314. },
  41315. hand: {
  41316. height: math.unit(0.82, "feet"),
  41317. name: "Hand",
  41318. image: {
  41319. source: "./media/characters/xenon/hand.svg"
  41320. }
  41321. },
  41322. foot: {
  41323. height: math.unit(1.13, "feet"),
  41324. name: "Foot",
  41325. image: {
  41326. source: "./media/characters/xenon/foot.svg"
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Micro",
  41333. height: math.unit(0.8, "inches")
  41334. },
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(6, "feet")
  41338. },
  41339. {
  41340. name: "Macro",
  41341. height: math.unit(50, "feet"),
  41342. default: true
  41343. },
  41344. {
  41345. name: "Macro+",
  41346. height: math.unit(250, "feet")
  41347. },
  41348. {
  41349. name: "Megamacro",
  41350. height: math.unit(1500, "feet")
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41356. {
  41357. front: {
  41358. height: math.unit(7 + 5/12, "feet"),
  41359. name: "Front",
  41360. image: {
  41361. source: "./media/characters/zane/front.svg",
  41362. extra: 1260/1203,
  41363. bottom: 94/1354
  41364. }
  41365. },
  41366. back: {
  41367. height: math.unit(5.05, "feet"),
  41368. name: "Back",
  41369. image: {
  41370. source: "./media/characters/zane/back.svg",
  41371. extra: 893/829,
  41372. bottom: 30/923
  41373. }
  41374. },
  41375. werewolf: {
  41376. height: math.unit(11, "feet"),
  41377. name: "Werewolf",
  41378. image: {
  41379. source: "./media/characters/zane/werewolf.svg",
  41380. extra: 1383/1323,
  41381. bottom: 89/1472
  41382. }
  41383. },
  41384. foot: {
  41385. height: math.unit(1.46, "feet"),
  41386. name: "Foot",
  41387. image: {
  41388. source: "./media/characters/zane/foot.svg"
  41389. }
  41390. },
  41391. footFront: {
  41392. height: math.unit(0.784, "feet"),
  41393. name: "Foot (Front)",
  41394. image: {
  41395. source: "./media/characters/zane/foot-front.svg"
  41396. }
  41397. },
  41398. dick: {
  41399. height: math.unit(1.95, "feet"),
  41400. name: "Dick",
  41401. image: {
  41402. source: "./media/characters/zane/dick.svg"
  41403. }
  41404. },
  41405. dickWerewolf: {
  41406. height: math.unit(3.77, "feet"),
  41407. name: "Dick (Werewolf)",
  41408. image: {
  41409. source: "./media/characters/zane/dick.svg"
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Normal",
  41416. height: math.unit(7 + 5/12, "feet"),
  41417. default: true
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6 + 2/12, "feet"),
  41426. weight: math.unit(284, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/benni-desparque/front.svg",
  41430. extra: 1353/1126,
  41431. bottom: 69/1422
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Civilian",
  41438. height: math.unit(6 + 2/12, "feet")
  41439. },
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(98, "feet"),
  41443. default: true
  41444. },
  41445. {
  41446. name: "Kaiju Fighter",
  41447. height: math.unit(268, "feet")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(5, "feet"),
  41456. weight: math.unit(105, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/maxine/front.svg",
  41460. extra: 1386/1250,
  41461. bottom: 71/1457
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(5, "feet"),
  41469. default: true
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(11 + 7/12, "feet"),
  41478. weight: math.unit(9576, "lb"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/scaly/front.svg",
  41482. extra: 888/867,
  41483. bottom: 36/924
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "Normal",
  41490. height: math.unit(11 + 7/12, "feet"),
  41491. default: true
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41497. {
  41498. front: {
  41499. height: math.unit(6 + 3/12, "feet"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/saelria/front.svg",
  41503. extra: 1243/1138,
  41504. bottom: 46/1289
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Micro",
  41511. height: math.unit(6, "inches"),
  41512. },
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(6 + 3/12, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Macro",
  41520. height: math.unit(25, "feet")
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41526. {
  41527. front: {
  41528. height: math.unit(80, "meters"),
  41529. weight: math.unit(7000, "tonnes"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/tef/front.svg",
  41533. extra: 2036/1991,
  41534. bottom: 54/2090
  41535. }
  41536. },
  41537. back: {
  41538. height: math.unit(80, "meters"),
  41539. weight: math.unit(7000, "tonnes"),
  41540. name: "Back",
  41541. image: {
  41542. source: "./media/characters/tef/back.svg",
  41543. extra: 2036/1991,
  41544. bottom: 54/2090
  41545. }
  41546. },
  41547. },
  41548. [
  41549. {
  41550. name: "Macro",
  41551. height: math.unit(80, "meters"),
  41552. default: true
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41558. {
  41559. front: {
  41560. height: math.unit(13, "feet"),
  41561. weight: math.unit(6, "tons"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/rover/front.svg",
  41565. extra: 1233/1156,
  41566. bottom: 50/1283
  41567. }
  41568. },
  41569. back: {
  41570. height: math.unit(13, "feet"),
  41571. weight: math.unit(6, "tons"),
  41572. name: "Back",
  41573. image: {
  41574. source: "./media/characters/rover/back.svg",
  41575. extra: 1327/1258,
  41576. bottom: 39/1366
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Normal",
  41583. height: math.unit(13, "feet"),
  41584. default: true
  41585. },
  41586. {
  41587. name: "Macro",
  41588. height: math.unit(1300, "feet")
  41589. },
  41590. {
  41591. name: "Megamacro",
  41592. height: math.unit(1300, "miles")
  41593. },
  41594. {
  41595. name: "Gigamacro",
  41596. height: math.unit(1300000, "miles")
  41597. },
  41598. ]
  41599. ))
  41600. characterMakers.push(() => makeCharacter(
  41601. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41602. {
  41603. front: {
  41604. height: math.unit(6, "feet"),
  41605. weight: math.unit(150, "lb"),
  41606. name: "Front",
  41607. image: {
  41608. source: "./media/characters/ariz/front.svg",
  41609. extra: 1401/1346,
  41610. bottom: 5/1406
  41611. }
  41612. },
  41613. },
  41614. [
  41615. {
  41616. name: "Normal",
  41617. height: math.unit(10, "feet"),
  41618. default: true
  41619. },
  41620. ]
  41621. ))
  41622. characterMakers.push(() => makeCharacter(
  41623. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41624. {
  41625. front: {
  41626. height: math.unit(6, "feet"),
  41627. weight: math.unit(140, "lb"),
  41628. name: "Front",
  41629. image: {
  41630. source: "./media/characters/sigrun/front.svg",
  41631. extra: 1418/1359,
  41632. bottom: 27/1445
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Macro",
  41639. height: math.unit(35, "feet"),
  41640. default: true
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41646. {
  41647. front: {
  41648. height: math.unit(6, "feet"),
  41649. weight: math.unit(150, "lb"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/numin/front.svg",
  41653. extra: 1433/1388,
  41654. bottom: 12/1445
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(21.5, "km"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(6, "feet"),
  41671. weight: math.unit(463, "lb"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/melwa/front.svg",
  41675. extra: 1307/1248,
  41676. bottom: 93/1400
  41677. }
  41678. },
  41679. },
  41680. [
  41681. {
  41682. name: "Macro",
  41683. height: math.unit(50, "meters"),
  41684. default: true
  41685. },
  41686. ]
  41687. ))
  41688. characterMakers.push(() => makeCharacter(
  41689. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41690. {
  41691. front: {
  41692. height: math.unit(325, "feet"),
  41693. name: "Front",
  41694. image: {
  41695. source: "./media/characters/zorkaiju/front.svg",
  41696. extra: 1955/1814,
  41697. bottom: 40/1995
  41698. }
  41699. },
  41700. frontExtended: {
  41701. height: math.unit(325, "feet"),
  41702. name: "Front (Extended)",
  41703. image: {
  41704. source: "./media/characters/zorkaiju/front-extended.svg",
  41705. extra: 1955/1814,
  41706. bottom: 40/1995
  41707. }
  41708. },
  41709. side: {
  41710. height: math.unit(325, "feet"),
  41711. name: "Side",
  41712. image: {
  41713. source: "./media/characters/zorkaiju/side.svg",
  41714. extra: 1495/1396,
  41715. bottom: 17/1512
  41716. }
  41717. },
  41718. sideExtended: {
  41719. height: math.unit(325, "feet"),
  41720. name: "Side (Extended)",
  41721. image: {
  41722. source: "./media/characters/zorkaiju/side-extended.svg",
  41723. extra: 1495/1396,
  41724. bottom: 17/1512
  41725. }
  41726. },
  41727. back: {
  41728. height: math.unit(325, "feet"),
  41729. name: "Back",
  41730. image: {
  41731. source: "./media/characters/zorkaiju/back.svg",
  41732. extra: 1959/1821,
  41733. bottom: 31/1990
  41734. }
  41735. },
  41736. backExtended: {
  41737. height: math.unit(325, "feet"),
  41738. name: "Back (Extended)",
  41739. image: {
  41740. source: "./media/characters/zorkaiju/back-extended.svg",
  41741. extra: 1959/1821,
  41742. bottom: 31/1990
  41743. }
  41744. },
  41745. hand: {
  41746. height: math.unit(58.4, "feet"),
  41747. name: "Hand",
  41748. image: {
  41749. source: "./media/characters/zorkaiju/hand.svg"
  41750. }
  41751. },
  41752. handExtended: {
  41753. height: math.unit(61.4, "feet"),
  41754. name: "Hand (Extended)",
  41755. image: {
  41756. source: "./media/characters/zorkaiju/hand-extended.svg"
  41757. }
  41758. },
  41759. foot: {
  41760. height: math.unit(95, "feet"),
  41761. name: "Foot",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/foot.svg"
  41764. }
  41765. },
  41766. leftArm: {
  41767. height: math.unit(59, "feet"),
  41768. name: "Left Arm",
  41769. image: {
  41770. source: "./media/characters/zorkaiju/left-arm.svg"
  41771. }
  41772. },
  41773. rightArm: {
  41774. height: math.unit(59, "feet"),
  41775. name: "Right Arm",
  41776. image: {
  41777. source: "./media/characters/zorkaiju/right-arm.svg"
  41778. }
  41779. },
  41780. leftArmExtended: {
  41781. height: math.unit(59 * 1.033546, "feet"),
  41782. name: "Left Arm (Extended)",
  41783. image: {
  41784. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41785. }
  41786. },
  41787. rightArmExtended: {
  41788. height: math.unit(59 * 1.0496, "feet"),
  41789. name: "Right Arm (Extended)",
  41790. image: {
  41791. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41792. }
  41793. },
  41794. tail: {
  41795. height: math.unit(104, "feet"),
  41796. name: "Tail",
  41797. image: {
  41798. source: "./media/characters/zorkaiju/tail.svg"
  41799. }
  41800. },
  41801. tailExtended: {
  41802. height: math.unit(104, "feet"),
  41803. name: "Tail (Extended)",
  41804. image: {
  41805. source: "./media/characters/zorkaiju/tail-extended.svg"
  41806. }
  41807. },
  41808. tailBottom: {
  41809. height: math.unit(104, "feet"),
  41810. name: "Tail Bottom",
  41811. image: {
  41812. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41813. }
  41814. },
  41815. crystal: {
  41816. height: math.unit(27.54, "feet"),
  41817. name: "Crystal",
  41818. image: {
  41819. source: "./media/characters/zorkaiju/crystal.svg"
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Kaiju",
  41826. height: math.unit(325, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(6 + 1/12, "feet"),
  41836. weight: math.unit(115, "lb"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/bailey-belfry/front.svg",
  41840. extra: 1240/1121,
  41841. bottom: 101/1341
  41842. }
  41843. },
  41844. },
  41845. [
  41846. {
  41847. name: "Normal",
  41848. height: math.unit(6 + 1/12, "feet"),
  41849. default: true
  41850. },
  41851. ]
  41852. ))
  41853. characterMakers.push(() => makeCharacter(
  41854. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41855. {
  41856. side: {
  41857. height: math.unit(4, "meters"),
  41858. weight: math.unit(250, "kg"),
  41859. name: "Side",
  41860. image: {
  41861. source: "./media/characters/blacky/side.svg",
  41862. extra: 1027/919,
  41863. bottom: 43/1070
  41864. }
  41865. },
  41866. maw: {
  41867. height: math.unit(1, "meters"),
  41868. name: "Maw",
  41869. image: {
  41870. source: "./media/characters/blacky/maw.svg"
  41871. }
  41872. },
  41873. paw: {
  41874. height: math.unit(1, "meters"),
  41875. name: "Paw",
  41876. image: {
  41877. source: "./media/characters/blacky/paw.svg"
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Normal",
  41884. height: math.unit(4, "meters"),
  41885. default: true
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(170, "cm"),
  41894. weight: math.unit(66, "kg"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/thux-ei/front.svg",
  41898. extra: 1109/1011,
  41899. bottom: 8/1117
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(170, "cm"),
  41907. default: true
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(5, "feet"),
  41916. weight: math.unit(120, "lb"),
  41917. name: "Front",
  41918. image: {
  41919. source: "./media/characters/roxanne-voltaire/front.svg",
  41920. extra: 1901/1779,
  41921. bottom: 53/1954
  41922. }
  41923. },
  41924. },
  41925. [
  41926. {
  41927. name: "Normal",
  41928. height: math.unit(5, "feet"),
  41929. default: true
  41930. },
  41931. {
  41932. name: "Giant",
  41933. height: math.unit(50, "feet")
  41934. },
  41935. {
  41936. name: "Titan",
  41937. height: math.unit(500, "feet")
  41938. },
  41939. {
  41940. name: "Macro",
  41941. height: math.unit(5000, "feet")
  41942. },
  41943. {
  41944. name: "Megamacro",
  41945. height: math.unit(50000, "feet")
  41946. },
  41947. {
  41948. name: "Gigamacro",
  41949. height: math.unit(500000, "feet")
  41950. },
  41951. {
  41952. name: "Teramacro",
  41953. height: math.unit(5e6, "feet")
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(6 + 2/12, "feet"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/squeaks/front.svg",
  41965. extra: 1823/1768,
  41966. bottom: 138/1961
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Micro",
  41973. height: math.unit(0.5, "inches")
  41974. },
  41975. {
  41976. name: "Normal",
  41977. height: math.unit(6 + 2/12, "feet"),
  41978. default: true
  41979. },
  41980. {
  41981. name: "Macro",
  41982. height: math.unit(600, "feet")
  41983. },
  41984. ]
  41985. ))
  41986. characterMakers.push(() => makeCharacter(
  41987. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41988. {
  41989. front: {
  41990. height: math.unit(1.72, "meters"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/archinger/front.svg",
  41994. extra: 1861/1675,
  41995. bottom: 125/1986
  41996. }
  41997. },
  41998. back: {
  41999. height: math.unit(1.72, "meters"),
  42000. name: "Back",
  42001. image: {
  42002. source: "./media/characters/archinger/back.svg",
  42003. extra: 1844/1701,
  42004. bottom: 104/1948
  42005. }
  42006. },
  42007. cock: {
  42008. height: math.unit(0.59, "feet"),
  42009. name: "Cock",
  42010. image: {
  42011. source: "./media/characters/archinger/cock.svg"
  42012. }
  42013. },
  42014. },
  42015. [
  42016. {
  42017. name: "Normal",
  42018. height: math.unit(1.72, "meters"),
  42019. default: true
  42020. },
  42021. {
  42022. name: "Macro",
  42023. height: math.unit(84, "meters")
  42024. },
  42025. {
  42026. name: "Macro+",
  42027. height: math.unit(112, "meters")
  42028. },
  42029. {
  42030. name: "Macro++",
  42031. height: math.unit(960, "meters")
  42032. },
  42033. {
  42034. name: "Macro+++",
  42035. height: math.unit(4, "km")
  42036. },
  42037. {
  42038. name: "Macro++++",
  42039. height: math.unit(48, "km")
  42040. },
  42041. {
  42042. name: "Macro+++++",
  42043. height: math.unit(4500, "km")
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(5 + 5/12, "feet"),
  42052. name: "Front",
  42053. image: {
  42054. source: "./media/characters/alsnapz/front.svg",
  42055. extra: 1157/1065,
  42056. bottom: 42/1199
  42057. }
  42058. },
  42059. },
  42060. [
  42061. {
  42062. name: "Normal",
  42063. height: math.unit(5 + 5/12, "feet"),
  42064. default: true
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42070. {
  42071. side: {
  42072. height: math.unit(3.2, "earths"),
  42073. name: "Side",
  42074. image: {
  42075. source: "./media/characters/mag/side.svg",
  42076. extra: 1331/1008,
  42077. bottom: 52/1383
  42078. }
  42079. },
  42080. wing: {
  42081. height: math.unit(1.94, "earths"),
  42082. name: "Wing",
  42083. image: {
  42084. source: "./media/characters/mag/wing.svg"
  42085. }
  42086. },
  42087. dick: {
  42088. height: math.unit(1.8, "earths"),
  42089. name: "Dick",
  42090. image: {
  42091. source: "./media/characters/mag/dick.svg"
  42092. }
  42093. },
  42094. ass: {
  42095. height: math.unit(1.33, "earths"),
  42096. name: "Ass",
  42097. image: {
  42098. source: "./media/characters/mag/ass.svg"
  42099. }
  42100. },
  42101. head: {
  42102. height: math.unit(1.1, "earths"),
  42103. name: "Head",
  42104. image: {
  42105. source: "./media/characters/mag/head.svg"
  42106. }
  42107. },
  42108. maw: {
  42109. height: math.unit(1.62, "earths"),
  42110. name: "Maw",
  42111. image: {
  42112. source: "./media/characters/mag/maw.svg"
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Small",
  42119. height: math.unit(162, "feet")
  42120. },
  42121. {
  42122. name: "Normal",
  42123. height: math.unit(3.2, "earths"),
  42124. default: true
  42125. },
  42126. ]
  42127. ))
  42128. characterMakers.push(() => makeCharacter(
  42129. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42130. {
  42131. front: {
  42132. height: math.unit(512, "feet"),
  42133. weight: math.unit(63509, "tonnes"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/vorrel-harroc/front.svg",
  42137. extra: 1075/1063,
  42138. bottom: 62/1137
  42139. }
  42140. },
  42141. },
  42142. [
  42143. {
  42144. name: "Normal",
  42145. height: math.unit(10, "feet")
  42146. },
  42147. {
  42148. name: "Macro",
  42149. height: math.unit(512, "feet"),
  42150. default: true
  42151. },
  42152. {
  42153. name: "Megamacro",
  42154. height: math.unit(256, "miles")
  42155. },
  42156. {
  42157. name: "Gigamacro",
  42158. height: math.unit(4096, "miles")
  42159. },
  42160. ]
  42161. ))
  42162. characterMakers.push(() => makeCharacter(
  42163. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42164. {
  42165. side: {
  42166. height: math.unit(50, "feet"),
  42167. name: "Side",
  42168. image: {
  42169. source: "./media/characters/froimar/side.svg",
  42170. extra: 855/638,
  42171. bottom: 99/954
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Macro",
  42178. height: math.unit(50, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42185. {
  42186. front: {
  42187. height: math.unit(210, "miles"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/timothy/front.svg",
  42191. extra: 1007/943,
  42192. bottom: 62/1069
  42193. }
  42194. },
  42195. frontSkirt: {
  42196. height: math.unit(210, "miles"),
  42197. name: "Front (Skirt)",
  42198. image: {
  42199. source: "./media/characters/timothy/front-skirt.svg",
  42200. extra: 1007/943,
  42201. bottom: 62/1069
  42202. }
  42203. },
  42204. frontCoat: {
  42205. height: math.unit(210, "miles"),
  42206. name: "Front (Coat)",
  42207. image: {
  42208. source: "./media/characters/timothy/front-coat.svg",
  42209. extra: 1007/943,
  42210. bottom: 62/1069
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Macro",
  42217. height: math.unit(210, "miles"),
  42218. default: true
  42219. },
  42220. {
  42221. name: "Megamacro",
  42222. height: math.unit(210000, "miles")
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(188, "feet"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/pyotr/front.svg",
  42234. extra: 1912/1826,
  42235. bottom: 18/1930
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Macro",
  42242. height: math.unit(188, "feet"),
  42243. default: true
  42244. },
  42245. {
  42246. name: "Megamacro",
  42247. height: math.unit(8, "miles")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42253. {
  42254. side: {
  42255. height: math.unit(10, "feet"),
  42256. weight: math.unit(4500, "lb"),
  42257. name: "Side",
  42258. image: {
  42259. source: "./media/characters/ackart/side.svg",
  42260. extra: 1776/1668,
  42261. bottom: 116/1892
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Normal",
  42268. height: math.unit(10, "feet"),
  42269. default: true
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42275. {
  42276. side: {
  42277. height: math.unit(21, "feet"),
  42278. name: "Side",
  42279. image: {
  42280. source: "./media/characters/nolow/side.svg",
  42281. extra: 1484/1434,
  42282. bottom: 85/1569
  42283. }
  42284. },
  42285. sideErect: {
  42286. height: math.unit(21, "feet"),
  42287. name: "Side-erect",
  42288. image: {
  42289. source: "./media/characters/nolow/side-erect.svg",
  42290. extra: 1484/1434,
  42291. bottom: 85/1569
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Regular",
  42298. height: math.unit(12, "feet")
  42299. },
  42300. {
  42301. name: "Big Chee",
  42302. height: math.unit(21, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(7, "feet"),
  42312. weight: math.unit(250, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/nines/front.svg",
  42316. extra: 1741/1607,
  42317. bottom: 41/1782
  42318. }
  42319. },
  42320. side: {
  42321. height: math.unit(7, "feet"),
  42322. weight: math.unit(250, "lb"),
  42323. name: "Side",
  42324. image: {
  42325. source: "./media/characters/nines/side.svg",
  42326. extra: 1854/1735,
  42327. bottom: 93/1947
  42328. }
  42329. },
  42330. back: {
  42331. height: math.unit(7, "feet"),
  42332. weight: math.unit(250, "lb"),
  42333. name: "Back",
  42334. image: {
  42335. source: "./media/characters/nines/back.svg",
  42336. extra: 1748/1615,
  42337. bottom: 20/1768
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Megamacro",
  42344. height: math.unit(99, "km"),
  42345. default: true
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(5 + 10/12, "feet"),
  42354. weight: math.unit(210, "lb"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/zenith/front.svg",
  42358. extra: 1531/1452,
  42359. bottom: 198/1729
  42360. }
  42361. },
  42362. back: {
  42363. height: math.unit(5 + 10/12, "feet"),
  42364. weight: math.unit(210, "lb"),
  42365. name: "Back",
  42366. image: {
  42367. source: "./media/characters/zenith/back.svg",
  42368. extra: 1571/1487,
  42369. bottom: 75/1646
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Normal",
  42376. height: math.unit(5 + 10/12, "feet"),
  42377. default: true
  42378. }
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(4, "feet"),
  42386. weight: math.unit(60, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/jasper/front.svg",
  42390. extra: 1450/1379,
  42391. bottom: 19/1469
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(4, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42405. {
  42406. front: {
  42407. height: math.unit(6 + 5/12, "feet"),
  42408. weight: math.unit(290, "lb"),
  42409. name: "Front",
  42410. image: {
  42411. source: "./media/characters/tiberius-thyben/front.svg",
  42412. extra: 757/739,
  42413. bottom: 39/796
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Micro",
  42420. height: math.unit(1.5, "inches")
  42421. },
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(6 + 5/12, "feet"),
  42425. default: true
  42426. },
  42427. {
  42428. name: "Macro",
  42429. height: math.unit(300, "feet")
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(5 + 6/12, "feet"),
  42438. weight: math.unit(60, "kg"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/sabre/front.svg",
  42442. extra: 738/671,
  42443. bottom: 27/765
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Teeny",
  42450. height: math.unit(2, "inches")
  42451. },
  42452. {
  42453. name: "Smol",
  42454. height: math.unit(8, "inches")
  42455. },
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(5 + 6/12, "feet"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "Mini-Macro",
  42463. height: math.unit(15, "feet")
  42464. },
  42465. {
  42466. name: "Macro",
  42467. height: math.unit(50, "feet")
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(6 + 4/12, "feet"),
  42476. weight: math.unit(170, "lb"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/charlie/front.svg",
  42480. extra: 1348/1228,
  42481. bottom: 15/1363
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(1700, "meters"),
  42489. default: true
  42490. },
  42491. {
  42492. name: "MegaMacro",
  42493. height: math.unit(20400, "meters")
  42494. },
  42495. ]
  42496. ))
  42497. characterMakers.push(() => makeCharacter(
  42498. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42499. {
  42500. front: {
  42501. height: math.unit(6 + 3/12, "feet"),
  42502. weight: math.unit(185, "lb"),
  42503. name: "Front",
  42504. image: {
  42505. source: "./media/characters/susan-grant/front.svg",
  42506. extra: 1351/1327,
  42507. bottom: 26/1377
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Normal",
  42514. height: math.unit(6 + 3/12, "feet"),
  42515. default: true
  42516. },
  42517. {
  42518. name: "Macro",
  42519. height: math.unit(225, "feet")
  42520. },
  42521. {
  42522. name: "Macro+",
  42523. height: math.unit(900, "feet")
  42524. },
  42525. {
  42526. name: "MegaMacro",
  42527. height: math.unit(14400, "feet")
  42528. },
  42529. ]
  42530. ))
  42531. characterMakers.push(() => makeCharacter(
  42532. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42533. {
  42534. front: {
  42535. height: math.unit(5 + 4/12, "feet"),
  42536. weight: math.unit(110, "lb"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/axel-isanov/front.svg",
  42540. extra: 1096/1065,
  42541. bottom: 13/1109
  42542. }
  42543. },
  42544. },
  42545. [
  42546. {
  42547. name: "Normal",
  42548. height: math.unit(5 + 4/12, "feet"),
  42549. default: true
  42550. },
  42551. ]
  42552. ))
  42553. characterMakers.push(() => makeCharacter(
  42554. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42555. {
  42556. front: {
  42557. height: math.unit(9, "feet"),
  42558. weight: math.unit(467, "lb"),
  42559. name: "Front",
  42560. image: {
  42561. source: "./media/characters/necahual/front.svg",
  42562. extra: 920/873,
  42563. bottom: 26/946
  42564. }
  42565. },
  42566. back: {
  42567. height: math.unit(9, "feet"),
  42568. weight: math.unit(467, "lb"),
  42569. name: "Back",
  42570. image: {
  42571. source: "./media/characters/necahual/back.svg",
  42572. extra: 930/884,
  42573. bottom: 16/946
  42574. }
  42575. },
  42576. frontUnderwear: {
  42577. height: math.unit(9, "feet"),
  42578. weight: math.unit(467, "lb"),
  42579. name: "Front (Underwear)",
  42580. image: {
  42581. source: "./media/characters/necahual/front-underwear.svg",
  42582. extra: 920/873,
  42583. bottom: 26/946
  42584. }
  42585. },
  42586. frontDressed: {
  42587. height: math.unit(9, "feet"),
  42588. weight: math.unit(467, "lb"),
  42589. name: "Front (Dressed)",
  42590. image: {
  42591. source: "./media/characters/necahual/front-dressed.svg",
  42592. extra: 920/873,
  42593. bottom: 26/946
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Comprsesed",
  42600. height: math.unit(9, "feet")
  42601. },
  42602. {
  42603. name: "Natural",
  42604. height: math.unit(15, "feet"),
  42605. default: true
  42606. },
  42607. {
  42608. name: "Boosted",
  42609. height: math.unit(50, "feet")
  42610. },
  42611. {
  42612. name: "Boosted+",
  42613. height: math.unit(150, "feet")
  42614. },
  42615. {
  42616. name: "Max",
  42617. height: math.unit(500, "feet")
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(22 + 1/12, "feet"),
  42626. weight: math.unit(3200, "lb"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/theo-acacia/front.svg",
  42630. extra: 1796/1741,
  42631. bottom: 83/1879
  42632. }
  42633. },
  42634. frontUnderwear: {
  42635. height: math.unit(22 + 1/12, "feet"),
  42636. weight: math.unit(3200, "lb"),
  42637. name: "Front (Underwear)",
  42638. image: {
  42639. source: "./media/characters/theo-acacia/front-underwear.svg",
  42640. extra: 1796/1741,
  42641. bottom: 83/1879
  42642. }
  42643. },
  42644. frontNude: {
  42645. height: math.unit(22 + 1/12, "feet"),
  42646. weight: math.unit(3200, "lb"),
  42647. name: "Front (Nude)",
  42648. image: {
  42649. source: "./media/characters/theo-acacia/front-nude.svg",
  42650. extra: 1796/1741,
  42651. bottom: 83/1879
  42652. }
  42653. },
  42654. },
  42655. [
  42656. {
  42657. name: "Normal",
  42658. height: math.unit(22 + 1/12, "feet"),
  42659. default: true
  42660. },
  42661. ]
  42662. ))
  42663. characterMakers.push(() => makeCharacter(
  42664. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42665. {
  42666. front: {
  42667. height: math.unit(20, "feet"),
  42668. name: "Front",
  42669. image: {
  42670. source: "./media/characters/astra/front.svg",
  42671. extra: 1850/1714,
  42672. bottom: 106/1956
  42673. }
  42674. },
  42675. frontUndressed: {
  42676. height: math.unit(20, "feet"),
  42677. name: "Front (Undressed)",
  42678. image: {
  42679. source: "./media/characters/astra/front-undressed.svg",
  42680. extra: 1926/1749,
  42681. bottom: 0/1926
  42682. }
  42683. },
  42684. hand: {
  42685. height: math.unit(1.53, "feet"),
  42686. name: "Hand",
  42687. image: {
  42688. source: "./media/characters/astra/hand.svg"
  42689. }
  42690. },
  42691. paw: {
  42692. height: math.unit(1.53, "feet"),
  42693. name: "Paw",
  42694. image: {
  42695. source: "./media/characters/astra/paw.svg"
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Smallest",
  42702. height: math.unit(20, "feet")
  42703. },
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(1e9, "miles"),
  42707. default: true
  42708. },
  42709. {
  42710. name: "Larger",
  42711. height: math.unit(5, "multiverses")
  42712. },
  42713. {
  42714. name: "Largest",
  42715. height: math.unit(1e9, "multiverses")
  42716. },
  42717. ]
  42718. ))
  42719. characterMakers.push(() => makeCharacter(
  42720. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42721. {
  42722. front: {
  42723. height: math.unit(8, "feet"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/breanna/front.svg",
  42727. extra: 1912/1632,
  42728. bottom: 33/1945
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Smallest",
  42735. height: math.unit(8, "feet")
  42736. },
  42737. {
  42738. name: "Normal",
  42739. height: math.unit(1, "mile"),
  42740. default: true
  42741. },
  42742. {
  42743. name: "Maximum",
  42744. height: math.unit(1500000000000, "lightyears")
  42745. },
  42746. ]
  42747. ))
  42748. characterMakers.push(() => makeCharacter(
  42749. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42750. {
  42751. front: {
  42752. height: math.unit(5 + 11/12, "feet"),
  42753. weight: math.unit(155, "lb"),
  42754. name: "Front",
  42755. image: {
  42756. source: "./media/characters/cai/front.svg",
  42757. extra: 1823/1702,
  42758. bottom: 32/1855
  42759. }
  42760. },
  42761. back: {
  42762. height: math.unit(5 + 11/12, "feet"),
  42763. weight: math.unit(155, "lb"),
  42764. name: "Back",
  42765. image: {
  42766. source: "./media/characters/cai/back.svg",
  42767. extra: 1809/1708,
  42768. bottom: 31/1840
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(5 + 11/12, "feet"),
  42776. default: true
  42777. },
  42778. {
  42779. name: "Big",
  42780. height: math.unit(15, "feet")
  42781. },
  42782. {
  42783. name: "Macro",
  42784. height: math.unit(200, "feet")
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42790. {
  42791. front: {
  42792. height: math.unit(5 + 6/12, "feet"),
  42793. weight: math.unit(160, "lb"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42797. extra: 1227/1174,
  42798. bottom: 37/1264
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Macro",
  42805. height: math.unit(444, "meters"),
  42806. default: true
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(18 + 7/12, "feet"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/rex/front.svg",
  42818. extra: 1941/1807,
  42819. bottom: 66/2007
  42820. }
  42821. },
  42822. back: {
  42823. height: math.unit(18 + 7/12, "feet"),
  42824. name: "Back",
  42825. image: {
  42826. source: "./media/characters/rex/back.svg",
  42827. extra: 1937/1822,
  42828. bottom: 42/1979
  42829. }
  42830. },
  42831. boot: {
  42832. height: math.unit(3.45, "feet"),
  42833. name: "Boot",
  42834. image: {
  42835. source: "./media/characters/rex/boot.svg"
  42836. }
  42837. },
  42838. paw: {
  42839. height: math.unit(4.17, "feet"),
  42840. name: "Paw",
  42841. image: {
  42842. source: "./media/characters/rex/paw.svg"
  42843. }
  42844. },
  42845. head: {
  42846. height: math.unit(6.728, "feet"),
  42847. name: "Head",
  42848. image: {
  42849. source: "./media/characters/rex/head.svg"
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Nano",
  42856. height: math.unit(18 + 7/12, "feet")
  42857. },
  42858. {
  42859. name: "Micro",
  42860. height: math.unit(1.5, "megameters")
  42861. },
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(440, "megameters"),
  42865. default: true
  42866. },
  42867. {
  42868. name: "Macro",
  42869. height: math.unit(2.5, "gigameters")
  42870. },
  42871. {
  42872. name: "Gigamacro",
  42873. height: math.unit(2, "galaxies")
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42879. {
  42880. side: {
  42881. height: math.unit(32, "feet"),
  42882. weight: math.unit(250000, "lb"),
  42883. name: "Side",
  42884. image: {
  42885. source: "./media/characters/silverwing/side.svg",
  42886. extra: 1100/1019,
  42887. bottom: 204/1304
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(32, "feet"),
  42895. default: true
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42901. {
  42902. front: {
  42903. height: math.unit(6 + 6/12, "feet"),
  42904. weight: math.unit(350, "lb"),
  42905. name: "Front",
  42906. image: {
  42907. source: "./media/characters/tristan-hawthorne/front.svg",
  42908. extra: 1159/1124,
  42909. bottom: 37/1196
  42910. },
  42911. form: "labrador",
  42912. default: true
  42913. },
  42914. skunkFront: {
  42915. height: math.unit(4 + 6/12, "feet"),
  42916. weight: math.unit(120, "lb"),
  42917. name: "Front",
  42918. image: {
  42919. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42920. extra: 1609/1551,
  42921. bottom: 169/1778
  42922. },
  42923. form: "skunk",
  42924. default: true
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(6 + 6/12, "feet"),
  42931. form: "labrador",
  42932. default: true
  42933. },
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(4 + 6/12, "feet"),
  42937. form: "skunk",
  42938. default: true
  42939. },
  42940. ],
  42941. {
  42942. "labrador": {
  42943. name: "Labrador",
  42944. default: true
  42945. },
  42946. "skunk": {
  42947. name: "Skunk"
  42948. }
  42949. }
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42953. {
  42954. front: {
  42955. height: math.unit(5 + 11/12, "feet"),
  42956. weight: math.unit(190, "lb"),
  42957. name: "Front",
  42958. image: {
  42959. source: "./media/characters/mizu/front.svg",
  42960. extra: 1988/1788,
  42961. bottom: 14/2002
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(5 + 11/12, "feet"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(1.7, "feet"),
  42978. weight: math.unit(50, "lb"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/dechroma/front.svg",
  42982. extra: 1095/859,
  42983. bottom: 64/1159
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(1.7, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42997. {
  42998. side: {
  42999. height: math.unit(30, "feet"),
  43000. name: "Side",
  43001. image: {
  43002. source: "./media/characters/veluren-thanazel/side.svg",
  43003. extra: 1611/633,
  43004. bottom: 118/1729
  43005. }
  43006. },
  43007. front: {
  43008. height: math.unit(30, "feet"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/veluren-thanazel/front.svg",
  43012. extra: 1486/636,
  43013. bottom: 238/1724
  43014. }
  43015. },
  43016. head: {
  43017. height: math.unit(21.4, "feet"),
  43018. name: "Head",
  43019. image: {
  43020. source: "./media/characters/veluren-thanazel/head.svg"
  43021. }
  43022. },
  43023. genitals: {
  43024. height: math.unit(19.4, "feet"),
  43025. name: "Genitals",
  43026. image: {
  43027. source: "./media/characters/veluren-thanazel/genitals.svg"
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Social",
  43034. height: math.unit(6, "feet")
  43035. },
  43036. {
  43037. name: "Play",
  43038. height: math.unit(12, "feet")
  43039. },
  43040. {
  43041. name: "True",
  43042. height: math.unit(30, "feet"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(7 + 6/12, "feet"),
  43052. weight: math.unit(500, "kg"),
  43053. name: "Front",
  43054. image: {
  43055. source: "./media/characters/arcturas/front.svg",
  43056. extra: 1700/1500,
  43057. bottom: 145/1845
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(7 + 6/12, "feet"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43071. {
  43072. side: {
  43073. height: math.unit(6, "feet"),
  43074. weight: math.unit(2, "tons"),
  43075. name: "Side",
  43076. image: {
  43077. source: "./media/characters/vitaen/side.svg",
  43078. extra: 1157/617,
  43079. bottom: 122/1279
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(6, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(19, "feet"),
  43096. name: "Front",
  43097. image: {
  43098. source: "./media/characters/fia-dreamweaver/front.svg",
  43099. extra: 1630/1504,
  43100. bottom: 25/1655
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Normal",
  43107. height: math.unit(19, "feet"),
  43108. default: true
  43109. },
  43110. ]
  43111. ))
  43112. characterMakers.push(() => makeCharacter(
  43113. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43114. {
  43115. front: {
  43116. height: math.unit(5 + 4/12, "feet"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/artan/front.svg",
  43120. extra: 1618/1535,
  43121. bottom: 46/1664
  43122. }
  43123. },
  43124. back: {
  43125. height: math.unit(5 + 4/12, "feet"),
  43126. name: "Back",
  43127. image: {
  43128. source: "./media/characters/artan/back.svg",
  43129. extra: 1618/1543,
  43130. bottom: 31/1649
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Normal",
  43137. height: math.unit(5 + 4/12, "feet"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43144. {
  43145. side: {
  43146. height: math.unit(182, "cm"),
  43147. weight: math.unit(1000, "lb"),
  43148. name: "Side",
  43149. image: {
  43150. source: "./media/characters/silver-dragon/side.svg",
  43151. extra: 710/287,
  43152. bottom: 88/798
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Normal",
  43159. height: math.unit(182, "cm"),
  43160. default: true
  43161. },
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43166. {
  43167. side: {
  43168. height: math.unit(6 + 6/12, "feet"),
  43169. weight: math.unit(1.5, "tons"),
  43170. name: "Side",
  43171. image: {
  43172. source: "./media/characters/zephyr/side.svg",
  43173. extra: 1433/586,
  43174. bottom: 109/1542
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(6 + 6/12, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43188. {
  43189. side: {
  43190. height: math.unit(1, "feet"),
  43191. name: "Side",
  43192. image: {
  43193. source: "./media/characters/vixye/side.svg",
  43194. extra: 632/541,
  43195. bottom: 0/632
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(1, "feet"),
  43203. default: true
  43204. },
  43205. {
  43206. name: "True",
  43207. height: math.unit(1e15, "multiverses")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(8 + 2/12, "feet"),
  43216. weight: math.unit(650, "lb"),
  43217. name: "Front",
  43218. image: {
  43219. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43220. extra: 1174/1137,
  43221. bottom: 82/1256
  43222. }
  43223. },
  43224. back: {
  43225. height: math.unit(8 + 2/12, "feet"),
  43226. weight: math.unit(650, "lb"),
  43227. name: "Back",
  43228. image: {
  43229. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43230. extra: 1204/1157,
  43231. bottom: 46/1250
  43232. }
  43233. },
  43234. },
  43235. [
  43236. {
  43237. name: "Wildform",
  43238. height: math.unit(8 + 2/12, "feet"),
  43239. default: true
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(18, "feet"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/cyphin/front.svg",
  43251. extra: 970/886,
  43252. bottom: 42/1012
  43253. }
  43254. },
  43255. back: {
  43256. height: math.unit(18, "feet"),
  43257. name: "Back",
  43258. image: {
  43259. source: "./media/characters/cyphin/back.svg",
  43260. extra: 1009/894,
  43261. bottom: 24/1033
  43262. }
  43263. },
  43264. head: {
  43265. height: math.unit(5.05, "feet"),
  43266. name: "Head",
  43267. image: {
  43268. source: "./media/characters/cyphin/head.svg"
  43269. }
  43270. },
  43271. tailbud: {
  43272. height: math.unit(5, "feet"),
  43273. name: "Tailbud",
  43274. image: {
  43275. source: "./media/characters/cyphin/tailbud.svg"
  43276. }
  43277. },
  43278. },
  43279. [
  43280. ]
  43281. ))
  43282. characterMakers.push(() => makeCharacter(
  43283. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43284. {
  43285. side: {
  43286. height: math.unit(10, "feet"),
  43287. weight: math.unit(6, "tons"),
  43288. name: "Side",
  43289. image: {
  43290. source: "./media/characters/raijin/side.svg",
  43291. extra: 1529/613,
  43292. bottom: 337/1866
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Normal",
  43299. height: math.unit(10, "feet"),
  43300. default: true
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43306. {
  43307. side: {
  43308. height: math.unit(9, "feet"),
  43309. name: "Side",
  43310. image: {
  43311. source: "./media/characters/nilghais/side.svg",
  43312. extra: 1047/744,
  43313. bottom: 91/1138
  43314. }
  43315. },
  43316. head: {
  43317. height: math.unit(3.14, "feet"),
  43318. name: "Head",
  43319. image: {
  43320. source: "./media/characters/nilghais/head.svg"
  43321. }
  43322. },
  43323. mouth: {
  43324. height: math.unit(4.6, "feet"),
  43325. name: "Mouth",
  43326. image: {
  43327. source: "./media/characters/nilghais/mouth.svg"
  43328. }
  43329. },
  43330. wings: {
  43331. height: math.unit(24, "feet"),
  43332. name: "Wings",
  43333. image: {
  43334. source: "./media/characters/nilghais/wings.svg"
  43335. }
  43336. },
  43337. ass: {
  43338. height: math.unit(6.12, "feet"),
  43339. name: "Ass",
  43340. image: {
  43341. source: "./media/characters/nilghais/ass.svg"
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(9, "feet"),
  43349. default: true
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43355. {
  43356. regular: {
  43357. height: math.unit(16 + 2/12, "feet"),
  43358. weight: math.unit(2300, "lb"),
  43359. name: "Regular",
  43360. image: {
  43361. source: "./media/characters/zolgar/regular.svg",
  43362. extra: 1246/1004,
  43363. bottom: 124/1370
  43364. }
  43365. },
  43366. boxers: {
  43367. height: math.unit(16 + 2/12, "feet"),
  43368. weight: math.unit(2300, "lb"),
  43369. name: "Boxers",
  43370. image: {
  43371. source: "./media/characters/zolgar/boxers.svg",
  43372. extra: 1246/1004,
  43373. bottom: 124/1370
  43374. }
  43375. },
  43376. armored: {
  43377. height: math.unit(16 + 2/12, "feet"),
  43378. weight: math.unit(2300, "lb"),
  43379. name: "Armored",
  43380. image: {
  43381. source: "./media/characters/zolgar/armored.svg",
  43382. extra: 1246/1004,
  43383. bottom: 124/1370
  43384. }
  43385. },
  43386. goth: {
  43387. height: math.unit(16 + 2/12, "feet"),
  43388. weight: math.unit(2300, "lb"),
  43389. name: "Goth",
  43390. image: {
  43391. source: "./media/characters/zolgar/goth.svg",
  43392. extra: 1246/1004,
  43393. bottom: 124/1370
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Shrunken Down",
  43400. height: math.unit(9 + 2/12, "feet")
  43401. },
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(16 + 2/12, "feet"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43411. {
  43412. front: {
  43413. height: math.unit(6, "feet"),
  43414. weight: math.unit(168, "lb"),
  43415. name: "Front",
  43416. image: {
  43417. source: "./media/characters/luca/front.svg",
  43418. extra: 841/667,
  43419. bottom: 102/943
  43420. }
  43421. },
  43422. },
  43423. [
  43424. {
  43425. name: "Normal",
  43426. height: math.unit(6, "feet"),
  43427. default: true
  43428. },
  43429. ]
  43430. ))
  43431. characterMakers.push(() => makeCharacter(
  43432. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43433. {
  43434. side: {
  43435. height: math.unit(7 + 3/12, "feet"),
  43436. weight: math.unit(312, "lb"),
  43437. name: "Side",
  43438. image: {
  43439. source: "./media/characters/zezo/side.svg",
  43440. extra: 1192/1067,
  43441. bottom: 63/1255
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Normal",
  43448. height: math.unit(7 + 3/12, "feet"),
  43449. default: true
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(5 + 5/12, "feet"),
  43458. weight: math.unit(170, "lb"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/mayso/front.svg",
  43462. extra: 1215/1108,
  43463. bottom: 16/1231
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(5 + 5/12, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(4 + 3/12, "feet"),
  43480. weight: math.unit(80, "lb"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/hess/front.svg",
  43484. extra: 1200/1123,
  43485. bottom: 16/1216
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Normal",
  43492. height: math.unit(4 + 3/12, "feet"),
  43493. default: true
  43494. },
  43495. ]
  43496. ))
  43497. characterMakers.push(() => makeCharacter(
  43498. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43499. {
  43500. front: {
  43501. height: math.unit(1.9, "meters"),
  43502. name: "Front",
  43503. image: {
  43504. source: "./media/characters/ashgar/front.svg",
  43505. extra: 1177/1146,
  43506. bottom: 99/1276
  43507. }
  43508. },
  43509. back: {
  43510. height: math.unit(1.9, "meters"),
  43511. name: "Back",
  43512. image: {
  43513. source: "./media/characters/ashgar/back.svg",
  43514. extra: 1201/1183,
  43515. bottom: 53/1254
  43516. }
  43517. },
  43518. feral: {
  43519. height: math.unit(1.4, "meters"),
  43520. name: "Feral",
  43521. image: {
  43522. source: "./media/characters/ashgar/feral.svg",
  43523. extra: 370/345,
  43524. bottom: 45/415
  43525. }
  43526. },
  43527. },
  43528. [
  43529. {
  43530. name: "Normal",
  43531. height: math.unit(1.9, "meters"),
  43532. default: true
  43533. },
  43534. ]
  43535. ))
  43536. characterMakers.push(() => makeCharacter(
  43537. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43538. {
  43539. regular: {
  43540. height: math.unit(6, "feet"),
  43541. weight: math.unit(220, "lb"),
  43542. name: "Regular",
  43543. image: {
  43544. source: "./media/characters/phillip/regular.svg",
  43545. extra: 1373/1277,
  43546. bottom: 75/1448
  43547. }
  43548. },
  43549. dressed: {
  43550. height: math.unit(6, "feet"),
  43551. weight: math.unit(220, "lb"),
  43552. name: "Dressed",
  43553. image: {
  43554. source: "./media/characters/phillip/dressed.svg",
  43555. extra: 1373/1277,
  43556. bottom: 75/1448
  43557. }
  43558. },
  43559. paw: {
  43560. height: math.unit(1.44, "feet"),
  43561. name: "Paw",
  43562. image: {
  43563. source: "./media/characters/phillip/paw.svg"
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(6, "feet"),
  43571. default: true
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43577. {
  43578. side: {
  43579. height: math.unit(42, "feet"),
  43580. name: "Side",
  43581. image: {
  43582. source: "./media/characters/uvula/side.svg",
  43583. extra: 683/586,
  43584. bottom: 60/743
  43585. }
  43586. },
  43587. front: {
  43588. height: math.unit(42, "feet"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/uvula/front.svg",
  43592. extra: 705/613,
  43593. bottom: 54/759
  43594. }
  43595. },
  43596. maw: {
  43597. height: math.unit(23.5, "feet"),
  43598. name: "Maw",
  43599. image: {
  43600. source: "./media/characters/uvula/maw.svg"
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "Original Size",
  43607. height: math.unit(14, "inches")
  43608. },
  43609. {
  43610. name: "Human Size",
  43611. height: math.unit(6, "feet")
  43612. },
  43613. {
  43614. name: "Big",
  43615. height: math.unit(42, "feet"),
  43616. default: true
  43617. },
  43618. {
  43619. name: "Bigger",
  43620. height: math.unit(100, "feet")
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(5 + 11/12, "feet"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/lannah/front.svg",
  43632. extra: 1208/1113,
  43633. bottom: 97/1305
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(5 + 11/12, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43647. {
  43648. front: {
  43649. height: math.unit(6 + 3/12, "feet"),
  43650. weight: math.unit(3.5, "tons"),
  43651. name: "Front",
  43652. image: {
  43653. source: "./media/characters/emberflame/front.svg",
  43654. extra: 1198/672,
  43655. bottom: 82/1280
  43656. }
  43657. },
  43658. side: {
  43659. height: math.unit(6 + 3/12, "feet"),
  43660. weight: math.unit(3.5, "tons"),
  43661. name: "Side",
  43662. image: {
  43663. source: "./media/characters/emberflame/side.svg",
  43664. extra: 938/527,
  43665. bottom: 56/994
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(6 + 3/12, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43679. {
  43680. side: {
  43681. height: math.unit(17.5, "feet"),
  43682. weight: math.unit(35, "tons"),
  43683. name: "Side",
  43684. image: {
  43685. source: "./media/characters/sophie-ambrose/side.svg",
  43686. extra: 1573/1242,
  43687. bottom: 71/1644
  43688. }
  43689. },
  43690. maw: {
  43691. height: math.unit(7.4, "feet"),
  43692. name: "Maw",
  43693. image: {
  43694. source: "./media/characters/sophie-ambrose/maw.svg"
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(17.5, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(280, "feet"),
  43711. weight: math.unit(550, "tons"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/king-mugi/front.svg",
  43715. extra: 1102/947,
  43716. bottom: 104/1206
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "King Mugi",
  43723. height: math.unit(280, "feet"),
  43724. default: true
  43725. },
  43726. ]
  43727. ))
  43728. characterMakers.push(() => makeCharacter(
  43729. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43730. {
  43731. front: {
  43732. height: math.unit(64, "meters"),
  43733. name: "Front",
  43734. image: {
  43735. source: "./media/characters/nova-fox/front.svg",
  43736. extra: 1310/1246,
  43737. bottom: 65/1375
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Macro",
  43744. height: math.unit(64, "meters"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(6 + 3/12, "feet"),
  43754. weight: math.unit(170, "lb"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/sam-bat/front.svg",
  43758. extra: 1601/1411,
  43759. bottom: 125/1726
  43760. }
  43761. },
  43762. back: {
  43763. height: math.unit(6 + 3/12, "feet"),
  43764. weight: math.unit(170, "lb"),
  43765. name: "Back",
  43766. image: {
  43767. source: "./media/characters/sam-bat/back.svg",
  43768. extra: 1577/1405,
  43769. bottom: 58/1635
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(6 + 3/12, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43783. {
  43784. front: {
  43785. height: math.unit(59, "feet"),
  43786. weight: math.unit(40000, "lb"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/inari/front.svg",
  43790. extra: 1884/1350,
  43791. bottom: 95/1979
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Gigantamax",
  43798. height: math.unit(59, "feet"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43805. {
  43806. front: {
  43807. height: math.unit(5 + 8/12, "feet"),
  43808. name: "Front",
  43809. image: {
  43810. source: "./media/characters/elizabeth/front.svg",
  43811. extra: 1395/1298,
  43812. bottom: 54/1449
  43813. }
  43814. },
  43815. mouth: {
  43816. height: math.unit(1.97, "feet"),
  43817. name: "Mouth",
  43818. image: {
  43819. source: "./media/characters/elizabeth/mouth.svg"
  43820. }
  43821. },
  43822. foot: {
  43823. height: math.unit(1.17, "feet"),
  43824. name: "Foot",
  43825. image: {
  43826. source: "./media/characters/elizabeth/foot.svg"
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(5 + 8/12, "feet"),
  43834. default: true
  43835. },
  43836. {
  43837. name: "Minimacro",
  43838. height: math.unit(18, "feet")
  43839. },
  43840. {
  43841. name: "Macro",
  43842. height: math.unit(180, "feet")
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(5 + 2/12, "feet"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/october-gossamer/front.svg",
  43854. extra: 505/454,
  43855. bottom: 7/512
  43856. }
  43857. },
  43858. back: {
  43859. height: math.unit(5 + 2/12, "feet"),
  43860. name: "Back",
  43861. image: {
  43862. source: "./media/characters/october-gossamer/back.svg",
  43863. extra: 501/454,
  43864. bottom: 11/512
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(5 + 2/12, "feet"),
  43872. default: true
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43878. {
  43879. front: {
  43880. height: math.unit(5, "feet"),
  43881. name: "Front",
  43882. image: {
  43883. source: "./media/characters/epiglottis/front.svg",
  43884. extra: 923/849,
  43885. bottom: 17/940
  43886. }
  43887. },
  43888. },
  43889. [
  43890. {
  43891. name: "Original Size",
  43892. height: math.unit(10, "inches")
  43893. },
  43894. {
  43895. name: "Human Size",
  43896. height: math.unit(5, "feet"),
  43897. default: true
  43898. },
  43899. {
  43900. name: "Big",
  43901. height: math.unit(25, "feet")
  43902. },
  43903. {
  43904. name: "Bigger",
  43905. height: math.unit(50, "feet")
  43906. },
  43907. {
  43908. name: "oh lawd",
  43909. height: math.unit(75, "feet")
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(2 + 4/12, "feet"),
  43918. weight: math.unit(60, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/lerm/front.svg",
  43922. extra: 796/790,
  43923. bottom: 79/875
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Normal",
  43930. height: math.unit(2 + 4/12, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(5.5, "feet"),
  43940. weight: math.unit(130, "lb"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/xena-nebadon/front.svg",
  43944. extra: 1828/1730,
  43945. bottom: 79/1907
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Tiny Puppy",
  43952. height: math.unit(3, "inches")
  43953. },
  43954. {
  43955. name: "Normal",
  43956. height: math.unit(5.5, "feet"),
  43957. default: true
  43958. },
  43959. {
  43960. name: "Lotta Lady",
  43961. height: math.unit(12, "feet")
  43962. },
  43963. {
  43964. name: "Pretty Big",
  43965. height: math.unit(100, "feet")
  43966. },
  43967. {
  43968. name: "Big",
  43969. height: math.unit(500, "feet")
  43970. },
  43971. {
  43972. name: "Skyscraper Toys",
  43973. height: math.unit(2500, "feet")
  43974. },
  43975. {
  43976. name: "Plane Catcher",
  43977. height: math.unit(8, "miles")
  43978. },
  43979. {
  43980. name: "Planet Toys",
  43981. height: math.unit(15, "earths")
  43982. },
  43983. {
  43984. name: "Stardust",
  43985. height: math.unit(0.25, "galaxies")
  43986. },
  43987. {
  43988. name: "Snacks",
  43989. height: math.unit(70, "universes")
  43990. },
  43991. ]
  43992. ))
  43993. characterMakers.push(() => makeCharacter(
  43994. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43995. {
  43996. front: {
  43997. height: math.unit(1.6, "meters"),
  43998. weight: math.unit(60, "kg"),
  43999. name: "Front",
  44000. image: {
  44001. source: "./media/characters/bounty/front.svg",
  44002. extra: 1426/1308,
  44003. bottom: 15/1441
  44004. }
  44005. },
  44006. back: {
  44007. height: math.unit(1.6, "meters"),
  44008. weight: math.unit(60, "kg"),
  44009. name: "Back",
  44010. image: {
  44011. source: "./media/characters/bounty/back.svg",
  44012. extra: 1417/1307,
  44013. bottom: 8/1425
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(1.6, "meters"),
  44021. default: true
  44022. },
  44023. {
  44024. name: "Macro",
  44025. height: math.unit(300, "meters")
  44026. },
  44027. ]
  44028. ))
  44029. characterMakers.push(() => makeCharacter(
  44030. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44031. {
  44032. front: {
  44033. height: math.unit(2 + 8/12, "feet"),
  44034. weight: math.unit(15, "lb"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/mochi/front.svg",
  44038. extra: 1022/852,
  44039. bottom: 435/1457
  44040. }
  44041. },
  44042. back: {
  44043. height: math.unit(2 + 8/12, "feet"),
  44044. weight: math.unit(15, "lb"),
  44045. name: "Back",
  44046. image: {
  44047. source: "./media/characters/mochi/back.svg",
  44048. extra: 1335/1119,
  44049. bottom: 39/1374
  44050. }
  44051. },
  44052. bird: {
  44053. height: math.unit(2 + 8/12, "feet"),
  44054. weight: math.unit(15, "lb"),
  44055. name: "Bird",
  44056. image: {
  44057. source: "./media/characters/mochi/bird.svg",
  44058. extra: 1251/1113,
  44059. bottom: 178/1429
  44060. }
  44061. },
  44062. kaiju: {
  44063. height: math.unit(154, "feet"),
  44064. weight: math.unit(1e7, "lb"),
  44065. name: "Kaiju",
  44066. image: {
  44067. source: "./media/characters/mochi/kaiju.svg",
  44068. extra: 460/324,
  44069. bottom: 40/500
  44070. }
  44071. },
  44072. head: {
  44073. height: math.unit(1.21, "feet"),
  44074. name: "Head",
  44075. image: {
  44076. source: "./media/characters/mochi/head.svg"
  44077. }
  44078. },
  44079. alternateTail: {
  44080. height: math.unit(2 + 8/12, "feet"),
  44081. weight: math.unit(45, "lb"),
  44082. name: "Alternate Tail",
  44083. image: {
  44084. source: "./media/characters/mochi/alternate-tail.svg",
  44085. extra: 139/76,
  44086. bottom: 45/184
  44087. }
  44088. },
  44089. },
  44090. [
  44091. {
  44092. name: "Micro",
  44093. height: math.unit(2, "inches")
  44094. },
  44095. {
  44096. name: "Normal",
  44097. height: math.unit(2 + 8/12, "feet"),
  44098. default: true
  44099. },
  44100. {
  44101. name: "Macro",
  44102. height: math.unit(106, "feet")
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(5.67, "feet"),
  44111. weight: math.unit(135, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/sarel/front.svg",
  44115. extra: 865/788,
  44116. bottom: 97/962
  44117. }
  44118. },
  44119. back: {
  44120. height: math.unit(5.67, "feet"),
  44121. weight: math.unit(135, "lb"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/sarel/back.svg",
  44125. extra: 857/777,
  44126. bottom: 32/889
  44127. }
  44128. },
  44129. chozoan: {
  44130. height: math.unit(5.67, "feet"),
  44131. weight: math.unit(135, "lb"),
  44132. name: "Chozoan",
  44133. image: {
  44134. source: "./media/characters/sarel/chozoan.svg",
  44135. extra: 865/788,
  44136. bottom: 97/962
  44137. }
  44138. },
  44139. current: {
  44140. height: math.unit(5.67, "feet"),
  44141. weight: math.unit(135, "lb"),
  44142. name: "Current",
  44143. image: {
  44144. source: "./media/characters/sarel/current.svg",
  44145. extra: 865/788,
  44146. bottom: 97/962
  44147. }
  44148. },
  44149. head: {
  44150. height: math.unit(1.77, "feet"),
  44151. name: "Head",
  44152. image: {
  44153. source: "./media/characters/sarel/head.svg"
  44154. }
  44155. },
  44156. claws: {
  44157. height: math.unit(1.8, "feet"),
  44158. name: "Claws",
  44159. image: {
  44160. source: "./media/characters/sarel/claws.svg"
  44161. }
  44162. },
  44163. clawsAlt: {
  44164. height: math.unit(1.8, "feet"),
  44165. name: "Claws-alt",
  44166. image: {
  44167. source: "./media/characters/sarel/claws-alt.svg"
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(5.67, "feet"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44181. {
  44182. front: {
  44183. height: math.unit(5500, "feet"),
  44184. name: "Front",
  44185. image: {
  44186. source: "./media/characters/alyonia/front.svg",
  44187. extra: 1200/1135,
  44188. bottom: 29/1229
  44189. }
  44190. },
  44191. back: {
  44192. height: math.unit(5500, "feet"),
  44193. name: "Back",
  44194. image: {
  44195. source: "./media/characters/alyonia/back.svg",
  44196. extra: 1205/1138,
  44197. bottom: 10/1215
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Small",
  44204. height: math.unit(10, "feet")
  44205. },
  44206. {
  44207. name: "Macro",
  44208. height: math.unit(500, "feet")
  44209. },
  44210. {
  44211. name: "Mega Macro",
  44212. height: math.unit(5500, "feet"),
  44213. default: true
  44214. },
  44215. {
  44216. name: "Mega Macro+",
  44217. height: math.unit(500000, "feet")
  44218. },
  44219. {
  44220. name: "Giga Macro",
  44221. height: math.unit(3000, "miles")
  44222. },
  44223. {
  44224. name: "Tera Macro",
  44225. height: math.unit(2.8e6, "miles")
  44226. },
  44227. {
  44228. name: "Galactic",
  44229. height: math.unit(120000, "lightyears")
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44235. {
  44236. werewolf: {
  44237. height: math.unit(8, "feet"),
  44238. weight: math.unit(425, "lb"),
  44239. name: "Werewolf",
  44240. image: {
  44241. source: "./media/characters/autumn/werewolf.svg",
  44242. extra: 2154/2031,
  44243. bottom: 160/2314
  44244. }
  44245. },
  44246. human: {
  44247. height: math.unit(5 + 8/12, "feet"),
  44248. weight: math.unit(150, "lb"),
  44249. name: "Human",
  44250. image: {
  44251. source: "./media/characters/autumn/human.svg",
  44252. extra: 1200/1149,
  44253. bottom: 30/1230
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Normal",
  44260. height: math.unit(8, "feet"),
  44261. default: true
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44267. {
  44268. front: {
  44269. height: math.unit(8 + 5/12, "feet"),
  44270. weight: math.unit(825, "lb"),
  44271. name: "Front",
  44272. image: {
  44273. source: "./media/characters/cobalt-charizard/front.svg",
  44274. extra: 1268/1155,
  44275. bottom: 122/1390
  44276. }
  44277. },
  44278. side: {
  44279. height: math.unit(8 + 5/12, "feet"),
  44280. weight: math.unit(825, "lb"),
  44281. name: "Side",
  44282. image: {
  44283. source: "./media/characters/cobalt-charizard/side.svg",
  44284. extra: 1348/1257,
  44285. bottom: 58/1406
  44286. }
  44287. },
  44288. gMax: {
  44289. height: math.unit(134 + 11/12, "feet"),
  44290. name: "G-Max",
  44291. image: {
  44292. source: "./media/characters/cobalt-charizard/g-max.svg",
  44293. extra: 1835/1541,
  44294. bottom: 151/1986
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Normal",
  44301. height: math.unit(8 + 5/12, "feet"),
  44302. default: true
  44303. },
  44304. ]
  44305. ))
  44306. characterMakers.push(() => makeCharacter(
  44307. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44308. {
  44309. front: {
  44310. height: math.unit(6 + 3/12, "feet"),
  44311. weight: math.unit(210, "lb"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/stella/front.svg",
  44315. extra: 3549/3335,
  44316. bottom: 51/3600
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(6 + 3/12, "feet"),
  44324. default: true
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(5, "feet"),
  44333. weight: math.unit(90, "lb"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/riley-bishop/front.svg",
  44337. extra: 1450/1428,
  44338. bottom: 152/1602
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(5, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44352. {
  44353. side: {
  44354. height: math.unit(8 + 2/12, "feet"),
  44355. weight: math.unit(500, "kg"),
  44356. name: "Side",
  44357. image: {
  44358. source: "./media/characters/theo-arcanine/side.svg",
  44359. extra: 1342/1074,
  44360. bottom: 111/1453
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(8 + 2/12, "feet"),
  44368. default: true
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(4, "feet"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/kali/front.svg",
  44380. extra: 1921/1357,
  44381. bottom: 70/1991
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "Normal",
  44388. height: math.unit(4, "feet"),
  44389. default: true
  44390. },
  44391. {
  44392. name: "Macro",
  44393. height: math.unit(32, "meters")
  44394. },
  44395. {
  44396. name: "Macro+",
  44397. height: math.unit(150, "meters")
  44398. },
  44399. {
  44400. name: "Megamacro",
  44401. height: math.unit(7500, "meters")
  44402. },
  44403. {
  44404. name: "Megamacro+",
  44405. height: math.unit(80, "kilometers")
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44411. {
  44412. side: {
  44413. height: math.unit(5 + 11/12, "feet"),
  44414. weight: math.unit(236, "lb"),
  44415. name: "Side",
  44416. image: {
  44417. source: "./media/characters/gapp/side.svg",
  44418. extra: 775/340,
  44419. bottom: 58/833
  44420. }
  44421. },
  44422. mouth: {
  44423. height: math.unit(2.98, "feet"),
  44424. name: "Mouth",
  44425. image: {
  44426. source: "./media/characters/gapp/mouth.svg"
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Normal",
  44433. height: math.unit(5 + 1/12, "feet"),
  44434. default: true
  44435. },
  44436. ]
  44437. ))
  44438. characterMakers.push(() => makeCharacter(
  44439. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44440. {
  44441. front: {
  44442. height: math.unit(6, "feet"),
  44443. name: "Front",
  44444. image: {
  44445. source: "./media/characters/persephone/front.svg",
  44446. extra: 1895/1717,
  44447. bottom: 96/1991
  44448. }
  44449. },
  44450. back: {
  44451. height: math.unit(6, "feet"),
  44452. name: "Back",
  44453. image: {
  44454. source: "./media/characters/persephone/back.svg",
  44455. extra: 1868/1679,
  44456. bottom: 26/1894
  44457. }
  44458. },
  44459. casual: {
  44460. height: math.unit(6, "feet"),
  44461. name: "Casual",
  44462. image: {
  44463. source: "./media/characters/persephone/casual.svg",
  44464. extra: 1713/1541,
  44465. bottom: 76/1789
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Human Size",
  44472. height: math.unit(6, "feet")
  44473. },
  44474. {
  44475. name: "Big Steppy",
  44476. height: math.unit(600, "meters"),
  44477. default: true
  44478. },
  44479. {
  44480. name: "Galaxy Brain",
  44481. height: math.unit(1, "zettameter")
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(1.85, "meters"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/riley-foxthing/front.svg",
  44493. extra: 1495/1354,
  44494. bottom: 122/1617
  44495. }
  44496. },
  44497. frontAlt: {
  44498. height: math.unit(1.85, "meters"),
  44499. name: "Front (Alt)",
  44500. image: {
  44501. source: "./media/characters/riley-foxthing/front-alt.svg",
  44502. extra: 1572/1389,
  44503. bottom: 116/1688
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal Sized",
  44510. height: math.unit(1.85, "meters"),
  44511. default: true
  44512. },
  44513. {
  44514. name: "Quite Sizable",
  44515. height: math.unit(5, "meters")
  44516. },
  44517. {
  44518. name: "Rather Large",
  44519. height: math.unit(20, "meters")
  44520. },
  44521. {
  44522. name: "Macro",
  44523. height: math.unit(450, "meters")
  44524. },
  44525. {
  44526. name: "Giga",
  44527. height: math.unit(5, "km")
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(6, "feet"),
  44536. weight: math.unit(200, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/blizzard/front.svg",
  44540. extra: 1136/990,
  44541. bottom: 136/1272
  44542. }
  44543. },
  44544. back: {
  44545. height: math.unit(6, "feet"),
  44546. weight: math.unit(200, "lb"),
  44547. name: "Back",
  44548. image: {
  44549. source: "./media/characters/blizzard/back.svg",
  44550. extra: 1175/1034,
  44551. bottom: 97/1272
  44552. }
  44553. },
  44554. sitting: {
  44555. height: math.unit(3.725, "feet"),
  44556. weight: math.unit(200, "lb"),
  44557. name: "Sitting",
  44558. image: {
  44559. source: "./media/characters/blizzard/sitting.svg",
  44560. extra: 581/485,
  44561. bottom: 90/671
  44562. }
  44563. },
  44564. frontWizard: {
  44565. height: math.unit(7.9, "feet"),
  44566. weight: math.unit(200, "lb"),
  44567. name: "Front (Wizard)",
  44568. image: {
  44569. source: "./media/characters/blizzard/front-wizard.svg"
  44570. }
  44571. },
  44572. backWizard: {
  44573. height: math.unit(7.9, "feet"),
  44574. weight: math.unit(200, "lb"),
  44575. name: "Back (Wizard)",
  44576. image: {
  44577. source: "./media/characters/blizzard/back-wizard.svg"
  44578. }
  44579. },
  44580. frontNsfw: {
  44581. height: math.unit(6, "feet"),
  44582. weight: math.unit(200, "lb"),
  44583. name: "Front (NSFW)",
  44584. image: {
  44585. source: "./media/characters/blizzard/front-nsfw.svg",
  44586. extra: 1136/990,
  44587. bottom: 136/1272
  44588. }
  44589. },
  44590. backNsfw: {
  44591. height: math.unit(6, "feet"),
  44592. weight: math.unit(200, "lb"),
  44593. name: "Back (NSFW)",
  44594. image: {
  44595. source: "./media/characters/blizzard/back-nsfw.svg",
  44596. extra: 1175/1034,
  44597. bottom: 97/1272
  44598. }
  44599. },
  44600. sittingNsfw: {
  44601. height: math.unit(3.725, "feet"),
  44602. weight: math.unit(200, "lb"),
  44603. name: "Sitting (NSFW)",
  44604. image: {
  44605. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44606. extra: 581/485,
  44607. bottom: 90/671
  44608. }
  44609. },
  44610. wizardFrontNsfw: {
  44611. height: math.unit(7.9, "feet"),
  44612. weight: math.unit(200, "lb"),
  44613. name: "Wizard (Front, NSFW)",
  44614. image: {
  44615. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(6, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(5 + 2/12, "feet"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/lumi/front.svg",
  44635. extra: 1328/1268,
  44636. bottom: 103/1431
  44637. }
  44638. },
  44639. back: {
  44640. height: math.unit(5 + 2/12, "feet"),
  44641. name: "Back",
  44642. image: {
  44643. source: "./media/characters/lumi/back.svg",
  44644. extra: 1381/1327,
  44645. bottom: 43/1424
  44646. }
  44647. },
  44648. },
  44649. [
  44650. {
  44651. name: "Normal",
  44652. height: math.unit(5 + 2/12, "feet"),
  44653. default: true
  44654. },
  44655. ]
  44656. ))
  44657. characterMakers.push(() => makeCharacter(
  44658. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44659. {
  44660. front: {
  44661. height: math.unit(5 + 9/12, "feet"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/aliya-cotton/front.svg",
  44665. extra: 577/564,
  44666. bottom: 29/606
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(5 + 9/12, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(2.7, "meters"),
  44683. weight: math.unit(25000, "lb"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/noah-luxray/front.svg",
  44687. extra: 1644/825,
  44688. bottom: 339/1983
  44689. }
  44690. },
  44691. side: {
  44692. height: math.unit(2.97, "meters"),
  44693. weight: math.unit(25000, "lb"),
  44694. name: "Side",
  44695. image: {
  44696. source: "./media/characters/noah-luxray/side.svg",
  44697. extra: 1319/650,
  44698. bottom: 163/1482
  44699. }
  44700. },
  44701. dick: {
  44702. height: math.unit(7.4, "feet"),
  44703. weight: math.unit(2500, "lb"),
  44704. name: "Dick",
  44705. image: {
  44706. source: "./media/characters/noah-luxray/dick.svg"
  44707. }
  44708. },
  44709. dickAlt: {
  44710. height: math.unit(10.83, "feet"),
  44711. weight: math.unit(2500, "lb"),
  44712. name: "Dick-alt",
  44713. image: {
  44714. source: "./media/characters/noah-luxray/dick-alt.svg"
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "BIG",
  44721. height: math.unit(2.7, "meters"),
  44722. default: true
  44723. },
  44724. ]
  44725. ))
  44726. characterMakers.push(() => makeCharacter(
  44727. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44728. {
  44729. standing: {
  44730. height: math.unit(183, "cm"),
  44731. weight: math.unit(68, "kg"),
  44732. name: "Standing",
  44733. image: {
  44734. source: "./media/characters/arion/standing.svg",
  44735. extra: 1869/1807,
  44736. bottom: 93/1962
  44737. }
  44738. },
  44739. reclining: {
  44740. height: math.unit(70.5, "cm"),
  44741. weight: math.unit(68, "lb"),
  44742. name: "Reclining",
  44743. image: {
  44744. source: "./media/characters/arion/reclining.svg",
  44745. extra: 937/870,
  44746. bottom: 63/1000
  44747. }
  44748. },
  44749. },
  44750. [
  44751. {
  44752. name: "Colossus Size, Low",
  44753. height: math.unit(33, "meters"),
  44754. default: true
  44755. },
  44756. {
  44757. name: "Colossus Size, Mid",
  44758. height: math.unit(52, "meters")
  44759. },
  44760. {
  44761. name: "Colossus Size, High",
  44762. height: math.unit(60, "meters")
  44763. },
  44764. {
  44765. name: "Titan Size, Low",
  44766. height: math.unit(91, "meters"),
  44767. },
  44768. {
  44769. name: "Titan Size, Mid",
  44770. height: math.unit(122, "meters")
  44771. },
  44772. {
  44773. name: "Titan Size, High",
  44774. height: math.unit(162, "meters")
  44775. },
  44776. ]
  44777. ))
  44778. characterMakers.push(() => makeCharacter(
  44779. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44780. {
  44781. front: {
  44782. height: math.unit(53, "meters"),
  44783. name: "Front",
  44784. image: {
  44785. source: "./media/characters/stellar-marbey/front.svg",
  44786. extra: 1913/1805,
  44787. bottom: 92/2005
  44788. }
  44789. },
  44790. back: {
  44791. height: math.unit(53, "meters"),
  44792. name: "Back",
  44793. image: {
  44794. source: "./media/characters/stellar-marbey/back.svg",
  44795. extra: 1960/1851,
  44796. bottom: 28/1988
  44797. }
  44798. },
  44799. mouth: {
  44800. height: math.unit(3.5, "meters"),
  44801. name: "Mouth",
  44802. image: {
  44803. source: "./media/characters/stellar-marbey/mouth.svg"
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Macro",
  44810. height: math.unit(53, "meters"),
  44811. default: true
  44812. },
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44817. {
  44818. front: {
  44819. height: math.unit(8 + 1/12, "feet"),
  44820. weight: math.unit(233, "lb"),
  44821. name: "Front",
  44822. image: {
  44823. source: "./media/characters/matsu/front.svg",
  44824. extra: 832/772,
  44825. bottom: 40/872
  44826. }
  44827. },
  44828. back: {
  44829. height: math.unit(8 + 1/12, "feet"),
  44830. weight: math.unit(233, "lb"),
  44831. name: "Back",
  44832. image: {
  44833. source: "./media/characters/matsu/back.svg",
  44834. extra: 839/780,
  44835. bottom: 47/886
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(8 + 1/12, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(4, "feet"),
  44852. weight: math.unit(148, "lb"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/thiz/front.svg",
  44856. extra: 1913/1748,
  44857. bottom: 62/1975
  44858. }
  44859. },
  44860. },
  44861. [
  44862. {
  44863. name: "Normal",
  44864. height: math.unit(4, "feet"),
  44865. default: true
  44866. },
  44867. ]
  44868. ))
  44869. characterMakers.push(() => makeCharacter(
  44870. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44871. {
  44872. front: {
  44873. height: math.unit(7 + 6/12, "feet"),
  44874. weight: math.unit(267, "lb"),
  44875. name: "Front",
  44876. image: {
  44877. source: "./media/characters/marcel/front.svg",
  44878. extra: 1221/1096,
  44879. bottom: 76/1297
  44880. }
  44881. },
  44882. },
  44883. [
  44884. {
  44885. name: "Normal",
  44886. height: math.unit(7 + 6/12, "feet"),
  44887. default: true
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44893. {
  44894. side: {
  44895. height: math.unit(42, "meters"),
  44896. name: "Side",
  44897. image: {
  44898. source: "./media/characters/flake/side.svg",
  44899. extra: 1525/1306,
  44900. bottom: 209/1734
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Normal",
  44907. height: math.unit(42, "meters"),
  44908. default: true
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44914. {
  44915. dressed: {
  44916. height: math.unit(6 + 4/12, "feet"),
  44917. weight: math.unit(520, "lb"),
  44918. name: "Dressed",
  44919. image: {
  44920. source: "./media/characters/someonne/dressed.svg",
  44921. extra: 1020/1010,
  44922. bottom: 178/1198
  44923. }
  44924. },
  44925. undressed: {
  44926. height: math.unit(6 + 4/12, "feet"),
  44927. weight: math.unit(520, "lb"),
  44928. name: "Undressed",
  44929. image: {
  44930. source: "./media/characters/someonne/undressed.svg",
  44931. extra: 1019/1014,
  44932. bottom: 169/1188
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(6 + 4/12, "feet"),
  44940. default: true
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(3, "feet"),
  44949. weight: math.unit(30, "lb"),
  44950. name: "Front",
  44951. image: {
  44952. source: "./media/characters/till/front.svg",
  44953. extra: 892/823,
  44954. bottom: 55/947
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(3, "feet"),
  44962. default: true
  44963. },
  44964. ]
  44965. ))
  44966. characterMakers.push(() => makeCharacter(
  44967. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44968. {
  44969. front: {
  44970. height: math.unit(9 + 8/12, "feet"),
  44971. weight: math.unit(800, "lb"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/sydney-heki/front.svg",
  44975. extra: 1360/1300,
  44976. bottom: 22/1382
  44977. }
  44978. },
  44979. back: {
  44980. height: math.unit(9 + 8/12, "feet"),
  44981. weight: math.unit(800, "lb"),
  44982. name: "Back",
  44983. image: {
  44984. source: "./media/characters/sydney-heki/back.svg",
  44985. extra: 1356/1293,
  44986. bottom: 12/1368
  44987. }
  44988. },
  44989. frontDressed: {
  44990. height: math.unit(9 + 8/12, "feet"),
  44991. weight: math.unit(800, "lb"),
  44992. name: "Front-dressed",
  44993. image: {
  44994. source: "./media/characters/sydney-heki/front-dressed.svg",
  44995. extra: 1360/1300,
  44996. bottom: 22/1382
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(9 + 8/12, "feet"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Macro",
  45008. height: math.unit(500, "feet")
  45009. },
  45010. {
  45011. name: "Megamacro",
  45012. height: math.unit(3.6, "miles")
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(200, "cm"),
  45021. weight: math.unit(250, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/fowler-karlsson/front.svg",
  45025. extra: 897/845,
  45026. bottom: 123/1020
  45027. }
  45028. },
  45029. back: {
  45030. height: math.unit(200, "cm"),
  45031. weight: math.unit(250, "lb"),
  45032. name: "Back",
  45033. image: {
  45034. source: "./media/characters/fowler-karlsson/back.svg",
  45035. extra: 999/944,
  45036. bottom: 26/1025
  45037. }
  45038. },
  45039. dick: {
  45040. height: math.unit(1.92, "feet"),
  45041. weight: math.unit(150, "lb"),
  45042. name: "Dick",
  45043. image: {
  45044. source: "./media/characters/fowler-karlsson/dick.svg"
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(200, "cm"),
  45052. default: true
  45053. },
  45054. {
  45055. name: "Smaller Macro",
  45056. height: math.unit(90, "m")
  45057. },
  45058. {
  45059. name: "Macro",
  45060. height: math.unit(150, "m")
  45061. },
  45062. {
  45063. name: "Bigger Macro",
  45064. height: math.unit(300, "m")
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45070. {
  45071. side: {
  45072. height: math.unit(8 + 2/12, "feet"),
  45073. weight: math.unit(1, "tonne"),
  45074. name: "Side",
  45075. image: {
  45076. source: "./media/characters/rylide/side.svg",
  45077. extra: 1318/1034,
  45078. bottom: 106/1424
  45079. }
  45080. },
  45081. sitting: {
  45082. height: math.unit(303, "cm"),
  45083. weight: math.unit(1, "tonne"),
  45084. name: "Sitting",
  45085. image: {
  45086. source: "./media/characters/rylide/sitting.svg",
  45087. extra: 1303/1103,
  45088. bottom: 36/1339
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Normal",
  45095. height: math.unit(8 + 2/12, "feet"),
  45096. default: true
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45102. {
  45103. front: {
  45104. height: math.unit(5 + 10/12, "feet"),
  45105. weight: math.unit(160, "lb"),
  45106. name: "Front",
  45107. image: {
  45108. source: "./media/characters/pudask/front.svg",
  45109. extra: 1616/1590,
  45110. bottom: 161/1777
  45111. }
  45112. },
  45113. },
  45114. [
  45115. {
  45116. name: "Ferret Height",
  45117. height: math.unit(2 + 5/12, "feet")
  45118. },
  45119. {
  45120. name: "Canon Height",
  45121. height: math.unit(5 + 10/12, "feet"),
  45122. default: true
  45123. },
  45124. ]
  45125. ))
  45126. characterMakers.push(() => makeCharacter(
  45127. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45128. {
  45129. front: {
  45130. height: math.unit(3 + 6/12, "feet"),
  45131. weight: math.unit(60, "lb"),
  45132. name: "Front",
  45133. image: {
  45134. source: "./media/characters/ramita/front.svg",
  45135. extra: 1402/1232,
  45136. bottom: 62/1464
  45137. }
  45138. },
  45139. dressed: {
  45140. height: math.unit(3 + 6/12, "feet"),
  45141. weight: math.unit(60, "lb"),
  45142. name: "Dressed",
  45143. image: {
  45144. source: "./media/characters/ramita/dressed.svg",
  45145. extra: 1534/1249,
  45146. bottom: 50/1584
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Normal",
  45153. height: math.unit(3 + 6/12, "feet"),
  45154. default: true
  45155. },
  45156. ]
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45160. {
  45161. front: {
  45162. height: math.unit(8, "feet"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/ark/front.svg",
  45166. extra: 772/693,
  45167. bottom: 45/817
  45168. }
  45169. },
  45170. },
  45171. [
  45172. {
  45173. name: "Normal",
  45174. height: math.unit(8, "feet"),
  45175. default: true
  45176. },
  45177. ]
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(6, "feet"),
  45184. weight: math.unit(250, "lb"),
  45185. volume: math.unit(5/8, "gallons"),
  45186. name: "Front",
  45187. image: {
  45188. source: "./media/characters/ludwig-horn/front.svg",
  45189. extra: 1782/1635,
  45190. bottom: 96/1878
  45191. }
  45192. },
  45193. back: {
  45194. height: math.unit(6, "feet"),
  45195. weight: math.unit(250, "lb"),
  45196. volume: math.unit(5/8, "gallons"),
  45197. name: "Back",
  45198. image: {
  45199. source: "./media/characters/ludwig-horn/back.svg",
  45200. extra: 1874/1729,
  45201. bottom: 27/1901
  45202. }
  45203. },
  45204. dick: {
  45205. height: math.unit(1.05, "feet"),
  45206. weight: math.unit(15, "lb"),
  45207. volume: math.unit(5/8, "gallons"),
  45208. name: "Dick",
  45209. image: {
  45210. source: "./media/characters/ludwig-horn/dick.svg"
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Small",
  45217. height: math.unit(6, "feet")
  45218. },
  45219. {
  45220. name: "Typical",
  45221. height: math.unit(12, "feet"),
  45222. default: true
  45223. },
  45224. {
  45225. name: "Building",
  45226. height: math.unit(80, "feet")
  45227. },
  45228. {
  45229. name: "Town",
  45230. height: math.unit(800, "feet")
  45231. },
  45232. {
  45233. name: "Kingdom",
  45234. height: math.unit(80000, "feet")
  45235. },
  45236. {
  45237. name: "Planet",
  45238. height: math.unit(8000000, "feet")
  45239. },
  45240. {
  45241. name: "Universe",
  45242. height: math.unit(8000000000, "feet")
  45243. },
  45244. {
  45245. name: "Transcended",
  45246. height: math.unit(8e27, "feet")
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(5, "feet"),
  45255. weight: math.unit(50, "kg"),
  45256. name: "Front",
  45257. image: {
  45258. source: "./media/characters/biot-avery/front.svg",
  45259. extra: 1295/1232,
  45260. bottom: 86/1381
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(5, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45274. {
  45275. front: {
  45276. height: math.unit(6, "feet"),
  45277. name: "Front",
  45278. image: {
  45279. source: "./media/characters/kitsune-kiro/front.svg",
  45280. extra: 1270/1158,
  45281. bottom: 42/1312
  45282. }
  45283. },
  45284. frontAlt: {
  45285. height: math.unit(6, "feet"),
  45286. name: "Front-alt",
  45287. image: {
  45288. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45289. extra: 1130/1081,
  45290. bottom: 36/1166
  45291. }
  45292. },
  45293. },
  45294. [
  45295. {
  45296. name: "Smol",
  45297. height: math.unit(3, "feet")
  45298. },
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(6, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45308. {
  45309. front: {
  45310. height: math.unit(6, "feet"),
  45311. weight: math.unit(125, "lb"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/jack-thatcher/front.svg",
  45315. extra: 1474/1370,
  45316. bottom: 26/1500
  45317. }
  45318. },
  45319. back: {
  45320. height: math.unit(6, "feet"),
  45321. weight: math.unit(125, "lb"),
  45322. name: "Back",
  45323. image: {
  45324. source: "./media/characters/jack-thatcher/back.svg",
  45325. extra: 1489/1384,
  45326. bottom: 18/1507
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(6, "feet"),
  45334. default: true
  45335. },
  45336. {
  45337. name: "Macro",
  45338. height: math.unit(75, "feet")
  45339. },
  45340. {
  45341. name: "Macro-er",
  45342. height: math.unit(250, "feet")
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45348. {
  45349. front: {
  45350. height: math.unit(7, "feet"),
  45351. weight: math.unit(110, "kg"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/max-hyper/front.svg",
  45355. extra: 1969/1881,
  45356. bottom: 49/2018
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(7, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(5 + 5/12, "feet"),
  45373. weight: math.unit(160, "lb"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/spook/front.svg",
  45377. extra: 794/791,
  45378. bottom: 54/848
  45379. }
  45380. },
  45381. back: {
  45382. height: math.unit(5 + 5/12, "feet"),
  45383. weight: math.unit(160, "lb"),
  45384. name: "Back",
  45385. image: {
  45386. source: "./media/characters/spook/back.svg",
  45387. extra: 812/798,
  45388. bottom: 32/844
  45389. }
  45390. },
  45391. },
  45392. [
  45393. {
  45394. name: "Normal",
  45395. height: math.unit(5 + 5/12, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(18, "feet"),
  45405. name: "Front",
  45406. image: {
  45407. source: "./media/characters/xeaduulix/front.svg",
  45408. extra: 1380/1166,
  45409. bottom: 110/1490
  45410. }
  45411. },
  45412. back: {
  45413. height: math.unit(18, "feet"),
  45414. name: "Back",
  45415. image: {
  45416. source: "./media/characters/xeaduulix/back.svg",
  45417. extra: 1592/1170,
  45418. bottom: 128/1720
  45419. }
  45420. },
  45421. frontNsfw: {
  45422. height: math.unit(18, "feet"),
  45423. name: "Front (NSFW)",
  45424. image: {
  45425. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45426. extra: 1380/1166,
  45427. bottom: 110/1490
  45428. }
  45429. },
  45430. backNsfw: {
  45431. height: math.unit(18, "feet"),
  45432. name: "Back (NSFW)",
  45433. image: {
  45434. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45435. extra: 1592/1170,
  45436. bottom: 128/1720
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(18, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45450. {
  45451. spreadWings: {
  45452. height: math.unit(20, "feet"),
  45453. name: "Spread Wings",
  45454. image: {
  45455. source: "./media/characters/fledge/spread-wings.svg",
  45456. extra: 693/635,
  45457. bottom: 26/719
  45458. }
  45459. },
  45460. front: {
  45461. height: math.unit(20, "feet"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/fledge/front.svg",
  45465. extra: 684/637,
  45466. bottom: 18/702
  45467. }
  45468. },
  45469. frontAlt: {
  45470. height: math.unit(20, "feet"),
  45471. name: "Front (Alt)",
  45472. image: {
  45473. source: "./media/characters/fledge/front-alt.svg",
  45474. extra: 708/664,
  45475. bottom: 13/721
  45476. }
  45477. },
  45478. back: {
  45479. height: math.unit(20, "feet"),
  45480. name: "Back",
  45481. image: {
  45482. source: "./media/characters/fledge/back.svg",
  45483. extra: 718/634,
  45484. bottom: 22/740
  45485. }
  45486. },
  45487. head: {
  45488. height: math.unit(5.55, "feet"),
  45489. name: "Head",
  45490. image: {
  45491. source: "./media/characters/fledge/head.svg"
  45492. }
  45493. },
  45494. headAlt: {
  45495. height: math.unit(5.1, "feet"),
  45496. name: "Head (Alt)",
  45497. image: {
  45498. source: "./media/characters/fledge/head-alt.svg"
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Small",
  45505. height: math.unit(6 + 2/12, "feet")
  45506. },
  45507. {
  45508. name: "Big",
  45509. height: math.unit(20, "feet"),
  45510. default: true
  45511. },
  45512. {
  45513. name: "Giant",
  45514. height: math.unit(100, "feet")
  45515. },
  45516. {
  45517. name: "Macro",
  45518. height: math.unit(200, "feet")
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(1, "meter"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/atlas-morenai/front.svg",
  45530. extra: 1275/1043,
  45531. bottom: 19/1294
  45532. }
  45533. },
  45534. back: {
  45535. height: math.unit(1, "meter"),
  45536. name: "Back",
  45537. image: {
  45538. source: "./media/characters/atlas-morenai/back.svg",
  45539. extra: 1141/1001,
  45540. bottom: 25/1166
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(1, "meter"),
  45548. default: true
  45549. },
  45550. {
  45551. name: "Magic-Infused",
  45552. height: math.unit(5, "meters")
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45558. {
  45559. front: {
  45560. height: math.unit(5, "meters"),
  45561. name: "Front",
  45562. image: {
  45563. source: "./media/characters/cintia/front.svg",
  45564. extra: 1312/1228,
  45565. bottom: 38/1350
  45566. }
  45567. },
  45568. back: {
  45569. height: math.unit(5, "meters"),
  45570. name: "Back",
  45571. image: {
  45572. source: "./media/characters/cintia/back.svg",
  45573. extra: 1260/1166,
  45574. bottom: 98/1358
  45575. }
  45576. },
  45577. frontDick: {
  45578. height: math.unit(5, "meters"),
  45579. name: "Front (Dick)",
  45580. image: {
  45581. source: "./media/characters/cintia/front-dick.svg",
  45582. extra: 1312/1228,
  45583. bottom: 38/1350
  45584. }
  45585. },
  45586. backDick: {
  45587. height: math.unit(5, "meters"),
  45588. name: "Back (Dick)",
  45589. image: {
  45590. source: "./media/characters/cintia/back-dick.svg",
  45591. extra: 1260/1166,
  45592. bottom: 98/1358
  45593. }
  45594. },
  45595. bust: {
  45596. height: math.unit(1.97, "meters"),
  45597. name: "Bust",
  45598. image: {
  45599. source: "./media/characters/cintia/bust.svg",
  45600. extra: 617/565,
  45601. bottom: 0/617
  45602. }
  45603. },
  45604. },
  45605. [
  45606. {
  45607. name: "Normal",
  45608. height: math.unit(5, "meters"),
  45609. default: true
  45610. },
  45611. ]
  45612. ))
  45613. characterMakers.push(() => makeCharacter(
  45614. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45615. {
  45616. side: {
  45617. height: math.unit(100, "feet"),
  45618. name: "Side",
  45619. image: {
  45620. source: "./media/characters/denora/side.svg",
  45621. extra: 875/803,
  45622. bottom: 9/884
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Standard",
  45629. height: math.unit(100, "feet"),
  45630. default: true
  45631. },
  45632. {
  45633. name: "Grand",
  45634. height: math.unit(1000, "feet")
  45635. },
  45636. {
  45637. name: "Conquering",
  45638. height: math.unit(10000, "feet")
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45644. {
  45645. dressed: {
  45646. height: math.unit(8 + 5/12, "feet"),
  45647. weight: math.unit(700, "lb"),
  45648. name: "Dressed",
  45649. image: {
  45650. source: "./media/characters/kiva/dressed.svg",
  45651. extra: 1102/1055,
  45652. bottom: 60/1162
  45653. }
  45654. },
  45655. nude: {
  45656. height: math.unit(8 + 5/12, "feet"),
  45657. weight: math.unit(700, "lb"),
  45658. name: "Nude",
  45659. image: {
  45660. source: "./media/characters/kiva/nude.svg",
  45661. extra: 1102/1055,
  45662. bottom: 60/1162
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Base Height",
  45669. height: math.unit(8 + 5/12, "feet"),
  45670. default: true
  45671. },
  45672. {
  45673. name: "Macro",
  45674. height: math.unit(100, "feet")
  45675. },
  45676. {
  45677. name: "Max",
  45678. height: math.unit(3280, "feet")
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45684. {
  45685. front: {
  45686. height: math.unit(6 + 8/12, "feet"),
  45687. weight: math.unit(250, "lb"),
  45688. name: "Front",
  45689. image: {
  45690. source: "./media/characters/ztragon/front.svg",
  45691. extra: 1825/1684,
  45692. bottom: 98/1923
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Normal",
  45699. height: math.unit(6 + 8/12, "feet"),
  45700. default: true
  45701. },
  45702. {
  45703. name: "Macro",
  45704. height: math.unit(80, "feet")
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45710. {
  45711. front: {
  45712. height: math.unit(10.4, "feet"),
  45713. weight: math.unit(2, "tons"),
  45714. name: "Front",
  45715. image: {
  45716. source: "./media/characters/yesenia/front.svg",
  45717. extra: 1479/1474,
  45718. bottom: 233/1712
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(10.4, "feet"),
  45726. default: true
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45732. {
  45733. normal: {
  45734. height: math.unit(6 + 1/12, "feet"),
  45735. weight: math.unit(180, "lb"),
  45736. name: "Normal",
  45737. image: {
  45738. source: "./media/characters/leanne-lycheborne/normal.svg",
  45739. extra: 1748/1660,
  45740. bottom: 98/1846
  45741. }
  45742. },
  45743. were: {
  45744. height: math.unit(12, "feet"),
  45745. weight: math.unit(1600, "lb"),
  45746. name: "Were",
  45747. image: {
  45748. source: "./media/characters/leanne-lycheborne/were.svg",
  45749. extra: 1485/1432,
  45750. bottom: 66/1551
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Normal",
  45757. height: math.unit(6 + 1/12, "feet"),
  45758. default: true
  45759. },
  45760. ]
  45761. ))
  45762. characterMakers.push(() => makeCharacter(
  45763. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45764. {
  45765. side: {
  45766. height: math.unit(13, "feet"),
  45767. name: "Side",
  45768. image: {
  45769. source: "./media/characters/kira-tyler/side.svg",
  45770. extra: 693/393,
  45771. bottom: 58/751
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Normal",
  45778. height: math.unit(13, "feet"),
  45779. default: true
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45785. {
  45786. front: {
  45787. height: math.unit(10.3, "feet"),
  45788. weight: math.unit(150, "lb"),
  45789. name: "Front",
  45790. image: {
  45791. source: "./media/characters/blaze/front.svg",
  45792. extra: 1378/1286,
  45793. bottom: 172/1550
  45794. }
  45795. },
  45796. },
  45797. [
  45798. {
  45799. name: "Normal",
  45800. height: math.unit(10.3, "feet"),
  45801. default: true
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45807. {
  45808. side: {
  45809. height: math.unit(2, "meters"),
  45810. weight: math.unit(400, "kg"),
  45811. name: "Side",
  45812. image: {
  45813. source: "./media/characters/anu/side.svg",
  45814. extra: 506/394,
  45815. bottom: 18/524
  45816. }
  45817. },
  45818. },
  45819. [
  45820. {
  45821. name: "Humanoid",
  45822. height: math.unit(2, "meters")
  45823. },
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(5, "meters"),
  45827. default: true
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45833. {
  45834. front: {
  45835. height: math.unit(5 + 5/12, "feet"),
  45836. weight: math.unit(170, "lb"),
  45837. name: "Front",
  45838. image: {
  45839. source: "./media/characters/synx-the-lynx/front.svg",
  45840. extra: 1893/1745,
  45841. bottom: 17/1910
  45842. }
  45843. },
  45844. side: {
  45845. height: math.unit(5 + 5/12, "feet"),
  45846. weight: math.unit(170, "lb"),
  45847. name: "Side",
  45848. image: {
  45849. source: "./media/characters/synx-the-lynx/side.svg",
  45850. extra: 1884/1740,
  45851. bottom: 39/1923
  45852. }
  45853. },
  45854. back: {
  45855. height: math.unit(5 + 5/12, "feet"),
  45856. weight: math.unit(170, "lb"),
  45857. name: "Back",
  45858. image: {
  45859. source: "./media/characters/synx-the-lynx/back.svg",
  45860. extra: 1903/1755,
  45861. bottom: 14/1917
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(5 + 5/12, "feet"),
  45869. default: true
  45870. },
  45871. ]
  45872. ))
  45873. characterMakers.push(() => makeCharacter(
  45874. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45875. {
  45876. back: {
  45877. height: math.unit(15, "feet"),
  45878. name: "Back",
  45879. image: {
  45880. source: "./media/characters/nadezda-fex/back.svg",
  45881. extra: 1695/1481,
  45882. bottom: 25/1720
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(15, "feet"),
  45890. default: true
  45891. },
  45892. {
  45893. name: "Macro",
  45894. height: math.unit(2.5, "miles")
  45895. },
  45896. {
  45897. name: "Goddess",
  45898. height: math.unit(2, "multiverses")
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(216, "cm"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/lev/front.svg",
  45910. extra: 1728/1670,
  45911. bottom: 82/1810
  45912. }
  45913. },
  45914. back: {
  45915. height: math.unit(216, "cm"),
  45916. name: "Back",
  45917. image: {
  45918. source: "./media/characters/lev/back.svg",
  45919. extra: 1738/1675,
  45920. bottom: 24/1762
  45921. }
  45922. },
  45923. dressed: {
  45924. height: math.unit(216, "cm"),
  45925. name: "Dressed",
  45926. image: {
  45927. source: "./media/characters/lev/dressed.svg",
  45928. extra: 1397/1351,
  45929. bottom: 73/1470
  45930. }
  45931. },
  45932. head: {
  45933. height: math.unit(0.51, "meter"),
  45934. name: "Head",
  45935. image: {
  45936. source: "./media/characters/lev/head.svg"
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(216, "cm"),
  45944. default: true
  45945. },
  45946. {
  45947. name: "Relatively Macro",
  45948. height: math.unit(80, "meters")
  45949. },
  45950. {
  45951. name: "Megamacro",
  45952. height: math.unit(21600, "meters")
  45953. },
  45954. {
  45955. name: "Megamacro+",
  45956. height: math.unit(64800, "meters")
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(2, "meters"),
  45965. weight: math.unit(80, "kg"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/moka/front.svg",
  45969. extra: 1337/1255,
  45970. bottom: 58/1395
  45971. }
  45972. },
  45973. },
  45974. [
  45975. {
  45976. name: "Micro",
  45977. height: math.unit(15, "cm")
  45978. },
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(2, "meters"),
  45982. default: true
  45983. },
  45984. {
  45985. name: "Macro",
  45986. height: math.unit(20, "meters"),
  45987. },
  45988. ]
  45989. ))
  45990. characterMakers.push(() => makeCharacter(
  45991. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45992. {
  45993. front: {
  45994. height: math.unit(9, "feet"),
  45995. weight: math.unit(240, "lb"),
  45996. name: "Front",
  45997. image: {
  45998. source: "./media/characters/kuzco/front.svg",
  45999. extra: 1593/1487,
  46000. bottom: 32/1625
  46001. }
  46002. },
  46003. side: {
  46004. height: math.unit(9, "feet"),
  46005. weight: math.unit(240, "lb"),
  46006. name: "Side",
  46007. image: {
  46008. source: "./media/characters/kuzco/side.svg",
  46009. extra: 1575/1485,
  46010. bottom: 30/1605
  46011. }
  46012. },
  46013. back: {
  46014. height: math.unit(9, "feet"),
  46015. weight: math.unit(240, "lb"),
  46016. name: "Back",
  46017. image: {
  46018. source: "./media/characters/kuzco/back.svg",
  46019. extra: 1603/1514,
  46020. bottom: 14/1617
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(9, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46034. {
  46035. side: {
  46036. height: math.unit(2, "meters"),
  46037. weight: math.unit(300, "kg"),
  46038. name: "Side",
  46039. image: {
  46040. source: "./media/characters/ceruleus/side.svg",
  46041. extra: 1068/974,
  46042. bottom: 126/1194
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Normal",
  46049. height: math.unit(16, "meters"),
  46050. default: true
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(9, "feet"),
  46059. weight: math.unit(500, "kg"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/acouya/front.svg",
  46063. extra: 1660/1473,
  46064. bottom: 28/1688
  46065. }
  46066. },
  46067. },
  46068. [
  46069. {
  46070. name: "Normal",
  46071. height: math.unit(9, "feet"),
  46072. default: true
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46078. {
  46079. front: {
  46080. height: math.unit(5 + 6/12, "feet"),
  46081. weight: math.unit(195, "lb"),
  46082. name: "Front",
  46083. image: {
  46084. source: "./media/characters/vant/front.svg",
  46085. extra: 1396/1320,
  46086. bottom: 20/1416
  46087. }
  46088. },
  46089. back: {
  46090. height: math.unit(5 + 6/12, "feet"),
  46091. weight: math.unit(195, "lb"),
  46092. name: "Back",
  46093. image: {
  46094. source: "./media/characters/vant/back.svg",
  46095. extra: 1396/1320,
  46096. bottom: 20/1416
  46097. }
  46098. },
  46099. maw: {
  46100. height: math.unit(0.75, "feet"),
  46101. name: "Maw",
  46102. image: {
  46103. source: "./media/characters/vant/maw.svg"
  46104. }
  46105. },
  46106. paw: {
  46107. height: math.unit(1.07, "feet"),
  46108. name: "Paw",
  46109. image: {
  46110. source: "./media/characters/vant/paw.svg"
  46111. }
  46112. },
  46113. },
  46114. [
  46115. {
  46116. name: "Micro",
  46117. height: math.unit(0.25, "inches")
  46118. },
  46119. {
  46120. name: "Normal",
  46121. height: math.unit(5 + 6/12, "feet"),
  46122. default: true
  46123. },
  46124. {
  46125. name: "Macro",
  46126. height: math.unit(75, "feet")
  46127. },
  46128. ]
  46129. ))
  46130. characterMakers.push(() => makeCharacter(
  46131. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46132. {
  46133. front: {
  46134. height: math.unit(30, "meters"),
  46135. weight: math.unit(363, "tons"),
  46136. name: "Front",
  46137. image: {
  46138. source: "./media/characters/ahra/front.svg",
  46139. extra: 1914/1814,
  46140. bottom: 46/1960
  46141. }
  46142. },
  46143. },
  46144. [
  46145. {
  46146. name: "Macro",
  46147. height: math.unit(30, "meters"),
  46148. default: true
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46154. {
  46155. undressed: {
  46156. height: math.unit(2, "m"),
  46157. weight: math.unit(250, "kg"),
  46158. name: "Undressed",
  46159. image: {
  46160. source: "./media/characters/coriander/undressed.svg",
  46161. extra: 1757/1606,
  46162. bottom: 107/1864
  46163. }
  46164. },
  46165. dressed: {
  46166. height: math.unit(2, "m"),
  46167. weight: math.unit(250, "kg"),
  46168. name: "Dressed",
  46169. image: {
  46170. source: "./media/characters/coriander/dressed.svg",
  46171. extra: 1757/1606,
  46172. bottom: 107/1864
  46173. }
  46174. },
  46175. },
  46176. [
  46177. {
  46178. name: "Normal",
  46179. height: math.unit(4, "meters"),
  46180. default: true
  46181. },
  46182. {
  46183. name: "XL",
  46184. height: math.unit(6, "meters")
  46185. },
  46186. {
  46187. name: "XXL",
  46188. height: math.unit(8, "meters")
  46189. },
  46190. ]
  46191. ))
  46192. characterMakers.push(() => makeCharacter(
  46193. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46194. {
  46195. front: {
  46196. height: math.unit(6, "feet"),
  46197. name: "Front",
  46198. image: {
  46199. source: "./media/characters/syrinx/front.svg",
  46200. extra: 1557/1259,
  46201. bottom: 171/1728
  46202. }
  46203. },
  46204. },
  46205. [
  46206. {
  46207. name: "Normal",
  46208. height: math.unit(6 + 3/12, "feet"),
  46209. default: true
  46210. },
  46211. ]
  46212. ))
  46213. characterMakers.push(() => makeCharacter(
  46214. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46215. {
  46216. front: {
  46217. height: math.unit(11 + 6/12, "feet"),
  46218. weight: math.unit(1.5, "tons"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/bor/front.svg",
  46222. extra: 1189/1109,
  46223. bottom: 170/1359
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(11 + 6/12, "feet"),
  46231. default: true
  46232. },
  46233. {
  46234. name: "Macro",
  46235. height: math.unit(32 + 9/12, "feet")
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46241. {
  46242. anthro: {
  46243. height: math.unit(9, "feet"),
  46244. weight: math.unit(2076, "lb"),
  46245. name: "Anthro",
  46246. image: {
  46247. source: "./media/characters/abacus/anthro.svg",
  46248. extra: 1540/1494,
  46249. bottom: 233/1773
  46250. }
  46251. },
  46252. pigeon: {
  46253. height: math.unit(1, "feet"),
  46254. name: "Pigeon",
  46255. image: {
  46256. source: "./media/characters/abacus/pigeon.svg",
  46257. extra: 528/525,
  46258. bottom: 46/574
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(9, "feet"),
  46266. default: true
  46267. },
  46268. ]
  46269. ))
  46270. characterMakers.push(() => makeCharacter(
  46271. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46272. {
  46273. side: {
  46274. height: math.unit(6, "feet"),
  46275. name: "Side",
  46276. image: {
  46277. source: "./media/characters/delkhan/side.svg",
  46278. extra: 1884/1786,
  46279. bottom: 308/2192
  46280. }
  46281. },
  46282. head: {
  46283. height: math.unit(3.38, "feet"),
  46284. name: "Head",
  46285. image: {
  46286. source: "./media/characters/delkhan/head.svg"
  46287. }
  46288. },
  46289. },
  46290. [
  46291. {
  46292. name: "Normal",
  46293. height: math.unit(72, "feet"),
  46294. default: true
  46295. },
  46296. {
  46297. name: "Giant",
  46298. height: math.unit(172, "feet")
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46304. {
  46305. standing: {
  46306. height: math.unit(6, "feet"),
  46307. name: "Standing",
  46308. image: {
  46309. source: "./media/characters/euchidat/standing.svg",
  46310. extra: 1612/1553,
  46311. bottom: 116/1728
  46312. }
  46313. },
  46314. leaning: {
  46315. height: math.unit(6, "feet"),
  46316. name: "Leaning",
  46317. image: {
  46318. source: "./media/characters/euchidat/leaning.svg",
  46319. extra: 1719/1674,
  46320. bottom: 27/1746
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(175, "feet"),
  46328. default: true
  46329. },
  46330. {
  46331. name: "Megamacro",
  46332. height: math.unit(190, "miles")
  46333. },
  46334. {
  46335. name: "Gigamacro",
  46336. height: math.unit(190000, "miles")
  46337. },
  46338. ]
  46339. ))
  46340. characterMakers.push(() => makeCharacter(
  46341. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46342. {
  46343. front: {
  46344. height: math.unit(6, "feet"),
  46345. weight: math.unit(150, "lb"),
  46346. name: "Front",
  46347. image: {
  46348. source: "./media/characters/rebecca-stack/front.svg",
  46349. extra: 1256/1201,
  46350. bottom: 18/1274
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Normal",
  46357. height: math.unit(5 + 8/12, "feet"),
  46358. default: true
  46359. },
  46360. {
  46361. name: "Demolitionist",
  46362. height: math.unit(200, "feet")
  46363. },
  46364. {
  46365. name: "Out of Control",
  46366. height: math.unit(2, "miles")
  46367. },
  46368. {
  46369. name: "Giga",
  46370. height: math.unit(7200, "miles")
  46371. },
  46372. ]
  46373. ))
  46374. characterMakers.push(() => makeCharacter(
  46375. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46376. {
  46377. front: {
  46378. height: math.unit(6, "feet"),
  46379. weight: math.unit(150, "lb"),
  46380. name: "Front",
  46381. image: {
  46382. source: "./media/characters/jenny-cartwright/front.svg",
  46383. extra: 1384/1376,
  46384. bottom: 58/1442
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(6 + 7/12, "feet"),
  46392. default: true
  46393. },
  46394. {
  46395. name: "Librarian",
  46396. height: math.unit(55, "feet")
  46397. },
  46398. {
  46399. name: "Sightseer",
  46400. height: math.unit(50, "miles")
  46401. },
  46402. {
  46403. name: "Giga",
  46404. height: math.unit(30000, "miles")
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46410. {
  46411. nude: {
  46412. height: math.unit(8, "feet"),
  46413. weight: math.unit(225, "lb"),
  46414. name: "Nude",
  46415. image: {
  46416. source: "./media/characters/marvy/nude.svg",
  46417. extra: 1900/1683,
  46418. bottom: 89/1989
  46419. }
  46420. },
  46421. dressed: {
  46422. height: math.unit(8, "feet"),
  46423. weight: math.unit(225, "lb"),
  46424. name: "Dressed",
  46425. image: {
  46426. source: "./media/characters/marvy/dressed.svg",
  46427. extra: 1900/1683,
  46428. bottom: 89/1989
  46429. }
  46430. },
  46431. head: {
  46432. height: math.unit(2.85, "feet"),
  46433. name: "Head",
  46434. image: {
  46435. source: "./media/characters/marvy/head.svg"
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(8, "feet"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(8, "feet"),
  46452. weight: math.unit(250, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/leah/front.svg",
  46456. extra: 1257/1149,
  46457. bottom: 109/1366
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Normal",
  46464. height: math.unit(8, "feet"),
  46465. default: true
  46466. },
  46467. {
  46468. name: "Minimacro",
  46469. height: math.unit(40, "feet")
  46470. },
  46471. {
  46472. name: "Macro",
  46473. height: math.unit(124, "feet")
  46474. },
  46475. {
  46476. name: "Megamacro",
  46477. height: math.unit(850, "feet")
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46483. {
  46484. side: {
  46485. height: math.unit(13 + 6/12, "feet"),
  46486. weight: math.unit(3200, "lb"),
  46487. name: "Side",
  46488. image: {
  46489. source: "./media/characters/alvir/side.svg",
  46490. extra: 896/589,
  46491. bottom: 26/922
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(13 + 6/12, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46505. {
  46506. front: {
  46507. height: math.unit(5 + 4/12, "feet"),
  46508. weight: math.unit(236, "lb"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/zaina-khalil/front.svg",
  46512. extra: 1533/1485,
  46513. bottom: 94/1627
  46514. }
  46515. },
  46516. side: {
  46517. height: math.unit(5 + 4/12, "feet"),
  46518. weight: math.unit(236, "lb"),
  46519. name: "Side",
  46520. image: {
  46521. source: "./media/characters/zaina-khalil/side.svg",
  46522. extra: 1537/1498,
  46523. bottom: 66/1603
  46524. }
  46525. },
  46526. back: {
  46527. height: math.unit(5 + 4/12, "feet"),
  46528. weight: math.unit(236, "lb"),
  46529. name: "Back",
  46530. image: {
  46531. source: "./media/characters/zaina-khalil/back.svg",
  46532. extra: 1546/1494,
  46533. bottom: 89/1635
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(5 + 4/12, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46547. {
  46548. side: {
  46549. height: math.unit(12, "feet"),
  46550. weight: math.unit(4000, "lb"),
  46551. name: "Side",
  46552. image: {
  46553. source: "./media/characters/terry/side.svg",
  46554. extra: 1518/1439,
  46555. bottom: 149/1667
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Normal",
  46562. height: math.unit(12, "feet"),
  46563. default: true
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46569. {
  46570. front: {
  46571. height: math.unit(12, "feet"),
  46572. weight: math.unit(1500, "lb"),
  46573. name: "Front",
  46574. image: {
  46575. source: "./media/characters/kahea/front.svg",
  46576. extra: 1722/1617,
  46577. bottom: 179/1901
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Normal",
  46584. height: math.unit(12, "feet"),
  46585. default: true
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46591. {
  46592. demonFront: {
  46593. height: math.unit(36, "feet"),
  46594. name: "Front",
  46595. image: {
  46596. source: "./media/characters/alex-xuria/demon-front.svg",
  46597. extra: 1705/1673,
  46598. bottom: 198/1903
  46599. },
  46600. form: "demon",
  46601. default: true
  46602. },
  46603. demonBack: {
  46604. height: math.unit(36, "feet"),
  46605. name: "Back",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-back.svg",
  46608. extra: 1725/1693,
  46609. bottom: 70/1795
  46610. },
  46611. form: "demon"
  46612. },
  46613. demonHead: {
  46614. height: math.unit(2.14, "meters"),
  46615. name: "Head",
  46616. image: {
  46617. source: "./media/characters/alex-xuria/demon-head.svg"
  46618. },
  46619. form: "demon"
  46620. },
  46621. demonHand: {
  46622. height: math.unit(1.61, "meters"),
  46623. name: "Hand",
  46624. image: {
  46625. source: "./media/characters/alex-xuria/demon-hand.svg"
  46626. },
  46627. form: "demon"
  46628. },
  46629. demonPaw: {
  46630. height: math.unit(1.35, "meters"),
  46631. name: "Paw",
  46632. image: {
  46633. source: "./media/characters/alex-xuria/demon-paw.svg"
  46634. },
  46635. form: "demon"
  46636. },
  46637. demonFoot: {
  46638. height: math.unit(2.2, "meters"),
  46639. name: "Foot",
  46640. image: {
  46641. source: "./media/characters/alex-xuria/demon-foot.svg"
  46642. },
  46643. form: "demon"
  46644. },
  46645. demonCock: {
  46646. height: math.unit(1.74, "meters"),
  46647. name: "Cock",
  46648. image: {
  46649. source: "./media/characters/alex-xuria/demon-cock.svg"
  46650. },
  46651. form: "demon"
  46652. },
  46653. demonTailClosed: {
  46654. height: math.unit(1.47, "meters"),
  46655. name: "Tail (Closed)",
  46656. image: {
  46657. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46658. },
  46659. form: "demon"
  46660. },
  46661. demonTailOpen: {
  46662. height: math.unit(2.85, "meters"),
  46663. name: "Tail (Open)",
  46664. image: {
  46665. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46666. },
  46667. form: "demon"
  46668. },
  46669. incubusFront: {
  46670. height: math.unit(12, "feet"),
  46671. name: "Front",
  46672. image: {
  46673. source: "./media/characters/alex-xuria/incubus-front.svg",
  46674. extra: 1754/1677,
  46675. bottom: 125/1879
  46676. },
  46677. form: "incubus",
  46678. default: true
  46679. },
  46680. incubusBack: {
  46681. height: math.unit(12, "feet"),
  46682. name: "Back",
  46683. image: {
  46684. source: "./media/characters/alex-xuria/incubus-back.svg",
  46685. extra: 1702/1647,
  46686. bottom: 30/1732
  46687. },
  46688. form: "incubus"
  46689. },
  46690. incubusHead: {
  46691. height: math.unit(3.45, "feet"),
  46692. name: "Head",
  46693. image: {
  46694. source: "./media/characters/alex-xuria/incubus-head.svg"
  46695. },
  46696. form: "incubus"
  46697. },
  46698. rabbitFront: {
  46699. height: math.unit(6, "feet"),
  46700. name: "Front",
  46701. image: {
  46702. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46703. extra: 1369/1349,
  46704. bottom: 45/1414
  46705. },
  46706. form: "rabbit",
  46707. default: true
  46708. },
  46709. rabbitSide: {
  46710. height: math.unit(6, "feet"),
  46711. name: "Side",
  46712. image: {
  46713. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46714. extra: 1370/1356,
  46715. bottom: 37/1407
  46716. },
  46717. form: "rabbit"
  46718. },
  46719. rabbitBack: {
  46720. height: math.unit(6, "feet"),
  46721. name: "Back",
  46722. image: {
  46723. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46724. extra: 1375/1358,
  46725. bottom: 43/1418
  46726. },
  46727. form: "rabbit"
  46728. },
  46729. },
  46730. [
  46731. {
  46732. name: "Normal",
  46733. height: math.unit(6, "feet"),
  46734. default: true,
  46735. form: "rabbit"
  46736. },
  46737. {
  46738. name: "Incubus",
  46739. height: math.unit(12, "feet"),
  46740. default: true,
  46741. form: "incubus"
  46742. },
  46743. {
  46744. name: "Demon",
  46745. height: math.unit(36, "feet"),
  46746. default: true,
  46747. form: "demon"
  46748. }
  46749. ],
  46750. {
  46751. "demon": {
  46752. name: "Demon",
  46753. default: true
  46754. },
  46755. "incubus": {
  46756. name: "Incubus",
  46757. },
  46758. "rabbit": {
  46759. name: "Rabbit"
  46760. }
  46761. }
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46765. {
  46766. front: {
  46767. height: math.unit(7 + 5/12, "feet"),
  46768. weight: math.unit(510, "lb"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/syrup/front.svg",
  46772. extra: 932/916,
  46773. bottom: 26/958
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Normal",
  46780. height: math.unit(7 + 5/12, "feet"),
  46781. default: true
  46782. },
  46783. {
  46784. name: "Big",
  46785. height: math.unit(50, "feet")
  46786. },
  46787. {
  46788. name: "Macro",
  46789. height: math.unit(300, "feet")
  46790. },
  46791. {
  46792. name: "Megamacro",
  46793. height: math.unit(1, "mile")
  46794. },
  46795. ]
  46796. ))
  46797. characterMakers.push(() => makeCharacter(
  46798. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46799. {
  46800. front: {
  46801. height: math.unit(6 + 9/12, "feet"),
  46802. name: "Front",
  46803. image: {
  46804. source: "./media/characters/zeimne/front.svg",
  46805. extra: 1969/1806,
  46806. bottom: 53/2022
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Normal",
  46813. height: math.unit(6 + 9/12, "feet"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Giant",
  46818. height: math.unit(550, "feet")
  46819. },
  46820. {
  46821. name: "Mega",
  46822. height: math.unit(3, "miles")
  46823. },
  46824. {
  46825. name: "Giga",
  46826. height: math.unit(250, "miles")
  46827. },
  46828. {
  46829. name: "Tera",
  46830. height: math.unit(1, "AU")
  46831. },
  46832. ]
  46833. ))
  46834. characterMakers.push(() => makeCharacter(
  46835. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46836. {
  46837. front: {
  46838. height: math.unit(5 + 2/12, "feet"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/grar/front.svg",
  46842. extra: 1331/1119,
  46843. bottom: 60/1391
  46844. }
  46845. },
  46846. back: {
  46847. height: math.unit(5 + 2/12, "feet"),
  46848. name: "Back",
  46849. image: {
  46850. source: "./media/characters/grar/back.svg",
  46851. extra: 1385/1169,
  46852. bottom: 23/1408
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(5 + 2/12, "feet"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(13 + 7/12, "feet"),
  46869. weight: math.unit(2200, "lb"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/endraya/front.svg",
  46873. extra: 1289/1215,
  46874. bottom: 50/1339
  46875. }
  46876. },
  46877. nude: {
  46878. height: math.unit(13 + 7/12, "feet"),
  46879. weight: math.unit(2200, "lb"),
  46880. name: "Nude",
  46881. image: {
  46882. source: "./media/characters/endraya/nude.svg",
  46883. extra: 1247/1171,
  46884. bottom: 40/1287
  46885. }
  46886. },
  46887. head: {
  46888. height: math.unit(2.6, "feet"),
  46889. name: "Head",
  46890. image: {
  46891. source: "./media/characters/endraya/head.svg"
  46892. }
  46893. },
  46894. slit: {
  46895. height: math.unit(3.4, "feet"),
  46896. name: "Slit",
  46897. image: {
  46898. source: "./media/characters/endraya/slit.svg"
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(13 + 7/12, "feet"),
  46906. default: true
  46907. },
  46908. {
  46909. name: "Macro",
  46910. height: math.unit(200, "feet")
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(1.81, "meters"),
  46919. weight: math.unit(69, "kg"),
  46920. name: "Front",
  46921. image: {
  46922. source: "./media/characters/rodryana/front.svg",
  46923. extra: 2002/1921,
  46924. bottom: 53/2055
  46925. }
  46926. },
  46927. back: {
  46928. height: math.unit(1.81, "meters"),
  46929. weight: math.unit(69, "kg"),
  46930. name: "Back",
  46931. image: {
  46932. source: "./media/characters/rodryana/back.svg",
  46933. extra: 1993/1926,
  46934. bottom: 48/2041
  46935. }
  46936. },
  46937. maw: {
  46938. height: math.unit(0.19769417475, "meters"),
  46939. name: "Maw",
  46940. image: {
  46941. source: "./media/characters/rodryana/maw.svg"
  46942. }
  46943. },
  46944. slit: {
  46945. height: math.unit(0.31631067961, "meters"),
  46946. name: "Slit",
  46947. image: {
  46948. source: "./media/characters/rodryana/slit.svg"
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(1.81, "meters")
  46956. },
  46957. {
  46958. name: "Mini Macro",
  46959. height: math.unit(181, "meters")
  46960. },
  46961. {
  46962. name: "Macro",
  46963. height: math.unit(452, "meters"),
  46964. default: true
  46965. },
  46966. {
  46967. name: "Mega Macro",
  46968. height: math.unit(1.375, "km")
  46969. },
  46970. {
  46971. name: "Giga Macro",
  46972. height: math.unit(13.575, "km")
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46978. {
  46979. front: {
  46980. height: math.unit(6, "feet"),
  46981. weight: math.unit(1000, "lb"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/asaya/front.svg",
  46985. extra: 1460/1200,
  46986. bottom: 71/1531
  46987. }
  46988. },
  46989. },
  46990. [
  46991. {
  46992. name: "Normal",
  46993. height: math.unit(8, "km"),
  46994. default: true
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47000. {
  47001. front: {
  47002. height: math.unit(3.5, "meters"),
  47003. name: "Front",
  47004. image: {
  47005. source: "./media/characters/sarzu-and-israz/front.svg",
  47006. extra: 1570/1558,
  47007. bottom: 150/1720
  47008. },
  47009. },
  47010. back: {
  47011. height: math.unit(3.5, "meters"),
  47012. name: "Back",
  47013. image: {
  47014. source: "./media/characters/sarzu-and-israz/back.svg",
  47015. extra: 1523/1509,
  47016. bottom: 132/1655
  47017. },
  47018. },
  47019. frontFemale: {
  47020. height: math.unit(3.5, "meters"),
  47021. name: "Front (Female)",
  47022. image: {
  47023. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47024. extra: 1570/1558,
  47025. bottom: 150/1720
  47026. },
  47027. },
  47028. frontHerm: {
  47029. height: math.unit(3.5, "meters"),
  47030. name: "Front (Herm)",
  47031. image: {
  47032. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47033. extra: 1570/1558,
  47034. bottom: 150/1720
  47035. },
  47036. },
  47037. },
  47038. [
  47039. {
  47040. name: "Normal",
  47041. height: math.unit(3.5, "meters"),
  47042. default: true,
  47043. },
  47044. {
  47045. name: "Macro",
  47046. height: math.unit(65.5, "meters"),
  47047. },
  47048. ],
  47049. ))
  47050. characterMakers.push(() => makeCharacter(
  47051. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47052. {
  47053. front: {
  47054. height: math.unit(6, "feet"),
  47055. weight: math.unit(250, "lb"),
  47056. name: "Front",
  47057. image: {
  47058. source: "./media/characters/zenimma/front.svg",
  47059. extra: 1346/1320,
  47060. bottom: 58/1404
  47061. }
  47062. },
  47063. back: {
  47064. height: math.unit(6, "feet"),
  47065. weight: math.unit(250, "lb"),
  47066. name: "Back",
  47067. image: {
  47068. source: "./media/characters/zenimma/back.svg",
  47069. extra: 1324/1308,
  47070. bottom: 44/1368
  47071. }
  47072. },
  47073. dick: {
  47074. height: math.unit(1.44, "feet"),
  47075. name: "Dick",
  47076. image: {
  47077. source: "./media/characters/zenimma/dick.svg"
  47078. }
  47079. },
  47080. },
  47081. [
  47082. {
  47083. name: "Canon Height",
  47084. height: math.unit(66, "miles"),
  47085. default: true
  47086. },
  47087. ]
  47088. ))
  47089. characterMakers.push(() => makeCharacter(
  47090. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47091. {
  47092. nude: {
  47093. height: math.unit(6, "feet"),
  47094. weight: math.unit(150, "lb"),
  47095. name: "Nude",
  47096. image: {
  47097. source: "./media/characters/shavon/nude.svg",
  47098. extra: 1242/1096,
  47099. bottom: 98/1340
  47100. }
  47101. },
  47102. dressed: {
  47103. height: math.unit(6, "feet"),
  47104. weight: math.unit(150, "lb"),
  47105. name: "Dressed",
  47106. image: {
  47107. source: "./media/characters/shavon/dressed.svg",
  47108. extra: 1242/1096,
  47109. bottom: 98/1340
  47110. }
  47111. },
  47112. },
  47113. [
  47114. {
  47115. name: "Macro",
  47116. height: math.unit(255, "feet"),
  47117. default: true
  47118. },
  47119. ]
  47120. ))
  47121. characterMakers.push(() => makeCharacter(
  47122. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47123. {
  47124. front: {
  47125. height: math.unit(6, "feet"),
  47126. name: "Front",
  47127. image: {
  47128. source: "./media/characters/steph/front.svg",
  47129. extra: 1430/1330,
  47130. bottom: 54/1484
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Normal",
  47137. height: math.unit(6, "feet"),
  47138. default: true
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(9, "feet"),
  47147. weight: math.unit(400, "lb"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/kil'aman/front.svg",
  47151. extra: 1210/1159,
  47152. bottom: 109/1319
  47153. }
  47154. },
  47155. head: {
  47156. height: math.unit(2.14, "feet"),
  47157. name: "Head",
  47158. image: {
  47159. source: "./media/characters/kil'aman/head.svg"
  47160. }
  47161. },
  47162. maw: {
  47163. height: math.unit(1.21, "feet"),
  47164. name: "Maw",
  47165. image: {
  47166. source: "./media/characters/kil'aman/maw.svg"
  47167. }
  47168. },
  47169. foot: {
  47170. height: math.unit(1.7, "feet"),
  47171. name: "Foot",
  47172. image: {
  47173. source: "./media/characters/kil'aman/foot.svg"
  47174. }
  47175. },
  47176. dick: {
  47177. height: math.unit(2.1, "feet"),
  47178. name: "Dick",
  47179. image: {
  47180. source: "./media/characters/kil'aman/dick.svg"
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Normal",
  47187. height: math.unit(9, "feet")
  47188. },
  47189. {
  47190. name: "Canon Height",
  47191. height: math.unit(10, "miles"),
  47192. default: true
  47193. },
  47194. {
  47195. name: "Maximum",
  47196. height: math.unit(6e9, "miles")
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(90, "feet"),
  47205. weight: math.unit(675000, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/qadan/front.svg",
  47209. extra: 1012/1004,
  47210. bottom: 78/1090
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(90, "feet"),
  47215. weight: math.unit(675000, "lb"),
  47216. name: "Back",
  47217. image: {
  47218. source: "./media/characters/qadan/back.svg",
  47219. extra: 1042/1031,
  47220. bottom: 55/1097
  47221. }
  47222. },
  47223. armored: {
  47224. height: math.unit(90, "feet"),
  47225. weight: math.unit(675000, "lb"),
  47226. name: "Armored",
  47227. image: {
  47228. source: "./media/characters/qadan/armored.svg",
  47229. extra: 1047/1037,
  47230. bottom: 48/1095
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Normal",
  47237. height: math.unit(90, "feet"),
  47238. default: true
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47244. {
  47245. front: {
  47246. height: math.unit(6, "feet"),
  47247. weight: math.unit(225, "lb"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/brooke/front.svg",
  47251. extra: 1050/1010,
  47252. bottom: 66/1116
  47253. }
  47254. },
  47255. back: {
  47256. height: math.unit(6, "feet"),
  47257. weight: math.unit(225, "lb"),
  47258. name: "Back",
  47259. image: {
  47260. source: "./media/characters/brooke/back.svg",
  47261. extra: 1053/1013,
  47262. bottom: 41/1094
  47263. }
  47264. },
  47265. dressed: {
  47266. height: math.unit(6, "feet"),
  47267. weight: math.unit(225, "lb"),
  47268. name: "Dressed",
  47269. image: {
  47270. source: "./media/characters/brooke/dressed.svg",
  47271. extra: 1050/1010,
  47272. bottom: 66/1116
  47273. }
  47274. },
  47275. },
  47276. [
  47277. {
  47278. name: "Canon Height",
  47279. height: math.unit(500, "miles"),
  47280. default: true
  47281. },
  47282. ]
  47283. ))
  47284. characterMakers.push(() => makeCharacter(
  47285. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47286. {
  47287. front: {
  47288. height: math.unit(6 + 2/12, "feet"),
  47289. weight: math.unit(210, "lb"),
  47290. name: "Front",
  47291. image: {
  47292. source: "./media/characters/wubs/front.svg",
  47293. extra: 1345/1325,
  47294. bottom: 70/1415
  47295. }
  47296. },
  47297. back: {
  47298. height: math.unit(6 + 2/12, "feet"),
  47299. weight: math.unit(210, "lb"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/wubs/back.svg",
  47303. extra: 1296/1275,
  47304. bottom: 58/1354
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(6 + 2/12, "feet"),
  47312. default: true
  47313. },
  47314. {
  47315. name: "Macro",
  47316. height: math.unit(1000, "feet")
  47317. },
  47318. {
  47319. name: "Megamacro",
  47320. height: math.unit(1, "mile")
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47326. {
  47327. front: {
  47328. height: math.unit(4, "feet"),
  47329. weight: math.unit(120, "lb"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/blue/front.svg",
  47333. extra: 1636/1525,
  47334. bottom: 43/1679
  47335. }
  47336. },
  47337. back: {
  47338. height: math.unit(4, "feet"),
  47339. weight: math.unit(120, "lb"),
  47340. name: "Back",
  47341. image: {
  47342. source: "./media/characters/blue/back.svg",
  47343. extra: 1660/1560,
  47344. bottom: 57/1717
  47345. }
  47346. },
  47347. paws: {
  47348. height: math.unit(0.826, "feet"),
  47349. name: "Paws",
  47350. image: {
  47351. source: "./media/characters/blue/paws.svg"
  47352. }
  47353. },
  47354. },
  47355. [
  47356. {
  47357. name: "Micro",
  47358. height: math.unit(3, "inches")
  47359. },
  47360. {
  47361. name: "Normal",
  47362. height: math.unit(4, "feet"),
  47363. default: true
  47364. },
  47365. {
  47366. name: "Femenine Form",
  47367. height: math.unit(14, "feet")
  47368. },
  47369. {
  47370. name: "Werebat Form",
  47371. height: math.unit(18, "feet")
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47377. {
  47378. female: {
  47379. height: math.unit(7 + 4/12, "feet"),
  47380. weight: math.unit(243, "lb"),
  47381. name: "Female",
  47382. image: {
  47383. source: "./media/characters/kaya/female.svg",
  47384. extra: 975/898,
  47385. bottom: 34/1009
  47386. }
  47387. },
  47388. herm: {
  47389. height: math.unit(7 + 4/12, "feet"),
  47390. weight: math.unit(243, "lb"),
  47391. name: "Herm",
  47392. image: {
  47393. source: "./media/characters/kaya/herm.svg",
  47394. extra: 975/898,
  47395. bottom: 34/1009
  47396. }
  47397. },
  47398. },
  47399. [
  47400. {
  47401. name: "Normal",
  47402. height: math.unit(7 + 4/12, "feet"),
  47403. default: true
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47409. {
  47410. female: {
  47411. height: math.unit(9 + 4/12, "feet"),
  47412. weight: math.unit(398, "lb"),
  47413. name: "Female",
  47414. image: {
  47415. source: "./media/characters/kassandra/female.svg",
  47416. extra: 908/839,
  47417. bottom: 61/969
  47418. }
  47419. },
  47420. intersex: {
  47421. height: math.unit(9 + 4/12, "feet"),
  47422. weight: math.unit(398, "lb"),
  47423. name: "Intersex",
  47424. image: {
  47425. source: "./media/characters/kassandra/intersex.svg",
  47426. extra: 908/839,
  47427. bottom: 61/969
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(9 + 4/12, "feet"),
  47435. default: true
  47436. },
  47437. ]
  47438. ))
  47439. characterMakers.push(() => makeCharacter(
  47440. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47441. {
  47442. front: {
  47443. height: math.unit(3, "meters"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/amy/front.svg",
  47447. extra: 1380/1343,
  47448. bottom: 70/1450
  47449. }
  47450. },
  47451. back: {
  47452. height: math.unit(3, "meters"),
  47453. name: "Back",
  47454. image: {
  47455. source: "./media/characters/amy/back.svg",
  47456. extra: 1380/1347,
  47457. bottom: 66/1446
  47458. }
  47459. },
  47460. },
  47461. [
  47462. {
  47463. name: "Normal",
  47464. height: math.unit(3, "meters"),
  47465. default: true
  47466. },
  47467. ]
  47468. ))
  47469. characterMakers.push(() => makeCharacter(
  47470. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47471. {
  47472. side: {
  47473. height: math.unit(47, "cm"),
  47474. weight: math.unit(10.8, "kg"),
  47475. name: "Side",
  47476. image: {
  47477. source: "./media/characters/alphaschakal/side.svg",
  47478. extra: 1058/568,
  47479. bottom: 62/1120
  47480. }
  47481. },
  47482. back: {
  47483. height: math.unit(78, "cm"),
  47484. weight: math.unit(10.8, "kg"),
  47485. name: "Back",
  47486. image: {
  47487. source: "./media/characters/alphaschakal/back.svg",
  47488. extra: 1102/942,
  47489. bottom: 185/1287
  47490. }
  47491. },
  47492. head: {
  47493. height: math.unit(28, "cm"),
  47494. name: "Head",
  47495. image: {
  47496. source: "./media/characters/alphaschakal/head.svg",
  47497. extra: 696/508,
  47498. bottom: 0/696
  47499. }
  47500. },
  47501. paw: {
  47502. height: math.unit(16, "cm"),
  47503. name: "Paw",
  47504. image: {
  47505. source: "./media/characters/alphaschakal/paw.svg"
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(47, "cm"),
  47513. default: true
  47514. },
  47515. {
  47516. name: "Macro",
  47517. height: math.unit(340, "cm")
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47523. {
  47524. front: {
  47525. height: math.unit(36, "earths"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/ecobyss/front.svg",
  47529. extra: 1282/1215,
  47530. bottom: 11/1293
  47531. }
  47532. },
  47533. back: {
  47534. height: math.unit(36, "earths"),
  47535. name: "Back",
  47536. image: {
  47537. source: "./media/characters/ecobyss/back.svg",
  47538. extra: 1291/1222,
  47539. bottom: 8/1299
  47540. }
  47541. },
  47542. },
  47543. [
  47544. {
  47545. name: "Normal",
  47546. height: math.unit(36, "earths"),
  47547. default: true
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47553. {
  47554. front: {
  47555. height: math.unit(12, "feet"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/vasuk/front.svg",
  47559. extra: 1326/1207,
  47560. bottom: 64/1390
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Normal",
  47567. height: math.unit(12, "feet"),
  47568. default: true
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47574. {
  47575. side: {
  47576. height: math.unit(100, "feet"),
  47577. name: "Side",
  47578. image: {
  47579. source: "./media/characters/linneaus/side.svg",
  47580. extra: 987/807,
  47581. bottom: 47/1034
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Macro",
  47588. height: math.unit(100, "feet"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47595. {
  47596. front: {
  47597. height: math.unit(8, "feet"),
  47598. weight: math.unit(1200, "lb"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/nyterious-daligdig/front.svg",
  47602. extra: 1284/1094,
  47603. bottom: 84/1368
  47604. }
  47605. },
  47606. back: {
  47607. height: math.unit(8, "feet"),
  47608. weight: math.unit(1200, "lb"),
  47609. name: "Back",
  47610. image: {
  47611. source: "./media/characters/nyterious-daligdig/back.svg",
  47612. extra: 1301/1121,
  47613. bottom: 129/1430
  47614. }
  47615. },
  47616. mouth: {
  47617. height: math.unit(1.464, "feet"),
  47618. name: "Mouth",
  47619. image: {
  47620. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47621. }
  47622. },
  47623. },
  47624. [
  47625. {
  47626. name: "Small",
  47627. height: math.unit(8, "feet"),
  47628. default: true
  47629. },
  47630. {
  47631. name: "Normal",
  47632. height: math.unit(15, "feet")
  47633. },
  47634. {
  47635. name: "Macro",
  47636. height: math.unit(90, "feet")
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47642. {
  47643. front: {
  47644. height: math.unit(7 + 4/12, "feet"),
  47645. weight: math.unit(252, "lb"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/bandel/front.svg",
  47649. extra: 1946/1775,
  47650. bottom: 26/1972
  47651. }
  47652. },
  47653. back: {
  47654. height: math.unit(7 + 4/12, "feet"),
  47655. weight: math.unit(252, "lb"),
  47656. name: "Back",
  47657. image: {
  47658. source: "./media/characters/bandel/back.svg",
  47659. extra: 1940/1770,
  47660. bottom: 25/1965
  47661. }
  47662. },
  47663. maw: {
  47664. height: math.unit(2.15, "feet"),
  47665. name: "Maw",
  47666. image: {
  47667. source: "./media/characters/bandel/maw.svg"
  47668. }
  47669. },
  47670. stomach: {
  47671. height: math.unit(1.95, "feet"),
  47672. name: "Stomach",
  47673. image: {
  47674. source: "./media/characters/bandel/stomach.svg"
  47675. }
  47676. },
  47677. },
  47678. [
  47679. {
  47680. name: "Normal",
  47681. height: math.unit(7 + 4/12, "feet"),
  47682. default: true
  47683. },
  47684. ]
  47685. ))
  47686. characterMakers.push(() => makeCharacter(
  47687. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47688. {
  47689. front: {
  47690. height: math.unit(10 + 5/12, "feet"),
  47691. weight: math.unit(773.5, "kg"),
  47692. name: "Front",
  47693. image: {
  47694. source: "./media/characters/zed/front.svg",
  47695. extra: 987/941,
  47696. bottom: 52/1039
  47697. }
  47698. },
  47699. },
  47700. [
  47701. {
  47702. name: "Short",
  47703. height: math.unit(5 + 4/12, "feet")
  47704. },
  47705. {
  47706. name: "Average",
  47707. height: math.unit(10 + 5/12, "feet"),
  47708. default: true
  47709. },
  47710. {
  47711. name: "Mini-Macro",
  47712. height: math.unit(24 + 9/12, "feet")
  47713. },
  47714. {
  47715. name: "Macro",
  47716. height: math.unit(249, "feet")
  47717. },
  47718. {
  47719. name: "Mega-Macro",
  47720. height: math.unit(12490, "feet")
  47721. },
  47722. {
  47723. name: "Giga-Macro",
  47724. height: math.unit(24.9, "miles")
  47725. },
  47726. {
  47727. name: "Tera-Macro",
  47728. height: math.unit(24900, "miles")
  47729. },
  47730. {
  47731. name: "Cosmic Scale",
  47732. height: math.unit(38.9, "lightyears")
  47733. },
  47734. {
  47735. name: "Universal Scale",
  47736. height: math.unit(138e12, "lightyears")
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47742. {
  47743. front: {
  47744. height: math.unit(1561, "inches"),
  47745. name: "Front",
  47746. image: {
  47747. source: "./media/characters/ivan/front.svg",
  47748. extra: 1126/1071,
  47749. bottom: 26/1152
  47750. }
  47751. },
  47752. back: {
  47753. height: math.unit(1561, "inches"),
  47754. name: "Back",
  47755. image: {
  47756. source: "./media/characters/ivan/back.svg",
  47757. extra: 1134/1079,
  47758. bottom: 30/1164
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(1561, "inches"),
  47766. default: true
  47767. },
  47768. ]
  47769. ))
  47770. characterMakers.push(() => makeCharacter(
  47771. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47772. {
  47773. front: {
  47774. height: math.unit(5 + 7/12, "feet"),
  47775. weight: math.unit(150, "lb"),
  47776. name: "Front",
  47777. image: {
  47778. source: "./media/characters/robin-arctic-hare/front.svg",
  47779. extra: 1148/974,
  47780. bottom: 20/1168
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Normal",
  47787. height: math.unit(5 + 7/12, "feet"),
  47788. default: true
  47789. },
  47790. ]
  47791. ))
  47792. characterMakers.push(() => makeCharacter(
  47793. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47794. {
  47795. side: {
  47796. height: math.unit(5, "feet"),
  47797. name: "Side",
  47798. image: {
  47799. source: "./media/characters/birch/side.svg",
  47800. extra: 985/796,
  47801. bottom: 111/1096
  47802. }
  47803. },
  47804. },
  47805. [
  47806. {
  47807. name: "Normal",
  47808. height: math.unit(5, "feet"),
  47809. default: true
  47810. },
  47811. ]
  47812. ))
  47813. characterMakers.push(() => makeCharacter(
  47814. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47815. {
  47816. front: {
  47817. height: math.unit(4, "feet"),
  47818. name: "Front",
  47819. image: {
  47820. source: "./media/characters/rasp/front.svg",
  47821. extra: 561/478,
  47822. bottom: 74/635
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(4, "feet"),
  47830. default: true
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47836. {
  47837. front: {
  47838. height: math.unit(4 + 6/12, "feet"),
  47839. name: "Front",
  47840. image: {
  47841. source: "./media/characters/agatha/front.svg",
  47842. extra: 947/933,
  47843. bottom: 42/989
  47844. }
  47845. },
  47846. back: {
  47847. height: math.unit(4 + 6/12, "feet"),
  47848. name: "Back",
  47849. image: {
  47850. source: "./media/characters/agatha/back.svg",
  47851. extra: 935/922,
  47852. bottom: 48/983
  47853. }
  47854. },
  47855. },
  47856. [
  47857. {
  47858. name: "Normal",
  47859. height: math.unit(4 + 6 /12, "feet"),
  47860. default: true
  47861. },
  47862. {
  47863. name: "Max Size",
  47864. height: math.unit(500, "feet")
  47865. },
  47866. ]
  47867. ))
  47868. characterMakers.push(() => makeCharacter(
  47869. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47870. {
  47871. side: {
  47872. height: math.unit(30, "feet"),
  47873. name: "Side",
  47874. image: {
  47875. source: "./media/characters/roggy/side.svg",
  47876. extra: 909/643,
  47877. bottom: 63/972
  47878. }
  47879. },
  47880. lounging: {
  47881. height: math.unit(20, "feet"),
  47882. name: "Lounging",
  47883. image: {
  47884. source: "./media/characters/roggy/lounging.svg",
  47885. extra: 643/479,
  47886. bottom: 145/788
  47887. }
  47888. },
  47889. handpaw: {
  47890. height: math.unit(13.1, "feet"),
  47891. name: "Handpaw",
  47892. image: {
  47893. source: "./media/characters/roggy/handpaw.svg"
  47894. }
  47895. },
  47896. footpaw: {
  47897. height: math.unit(15.8, "feet"),
  47898. name: "Footpaw",
  47899. image: {
  47900. source: "./media/characters/roggy/footpaw.svg"
  47901. }
  47902. },
  47903. },
  47904. [
  47905. {
  47906. name: "Menacing",
  47907. height: math.unit(30, "feet"),
  47908. default: true
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47914. {
  47915. front: {
  47916. height: math.unit(5 + 7/12, "feet"),
  47917. weight: math.unit(135, "lb"),
  47918. name: "Front",
  47919. image: {
  47920. source: "./media/characters/naomi/front.svg",
  47921. extra: 1209/1154,
  47922. bottom: 129/1338
  47923. }
  47924. },
  47925. back: {
  47926. height: math.unit(5 + 7/12, "feet"),
  47927. weight: math.unit(135, "lb"),
  47928. name: "Back",
  47929. image: {
  47930. source: "./media/characters/naomi/back.svg",
  47931. extra: 1252/1190,
  47932. bottom: 23/1275
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Normal",
  47939. height: math.unit(5 + 7 /12, "feet"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47946. {
  47947. side: {
  47948. height: math.unit(35, "meters"),
  47949. name: "Side",
  47950. image: {
  47951. source: "./media/characters/kimpi/side.svg",
  47952. extra: 419/382,
  47953. bottom: 63/482
  47954. }
  47955. },
  47956. hand: {
  47957. height: math.unit(8.96, "meters"),
  47958. name: "Hand",
  47959. image: {
  47960. source: "./media/characters/kimpi/hand.svg"
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Normal",
  47967. height: math.unit(35, "meters"),
  47968. default: true
  47969. },
  47970. ]
  47971. ))
  47972. characterMakers.push(() => makeCharacter(
  47973. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47974. {
  47975. front: {
  47976. height: math.unit(4 + 4/12, "feet"),
  47977. name: "Front",
  47978. image: {
  47979. source: "./media/characters/pepper-purrloin/front.svg",
  47980. extra: 1141/1024,
  47981. bottom: 21/1162
  47982. }
  47983. },
  47984. },
  47985. [
  47986. {
  47987. name: "Normal",
  47988. height: math.unit(4 + 4/12, "feet"),
  47989. default: true
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47995. {
  47996. front: {
  47997. height: math.unit(6 + 2/12, "feet"),
  47998. name: "Front",
  47999. image: {
  48000. source: "./media/characters/raphael/front.svg",
  48001. extra: 1101/962,
  48002. bottom: 59/1160
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(6 + 2/12, "feet"),
  48010. default: true
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(6, "feet"),
  48019. weight: math.unit(150, "lb"),
  48020. name: "Front",
  48021. image: {
  48022. source: "./media/characters/victor-williams/front.svg",
  48023. extra: 1894/1825,
  48024. bottom: 67/1961
  48025. }
  48026. },
  48027. },
  48028. [
  48029. {
  48030. name: "Normal",
  48031. height: math.unit(6, "feet"),
  48032. default: true
  48033. },
  48034. ]
  48035. ))
  48036. characterMakers.push(() => makeCharacter(
  48037. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48038. {
  48039. front: {
  48040. height: math.unit(5 + 8/12, "feet"),
  48041. weight: math.unit(150, "lb"),
  48042. name: "Front",
  48043. image: {
  48044. source: "./media/characters/rachel/front.svg",
  48045. extra: 1902/1787,
  48046. bottom: 46/1948
  48047. }
  48048. },
  48049. },
  48050. [
  48051. {
  48052. name: "Base Height",
  48053. height: math.unit(5 + 8/12, "feet"),
  48054. default: true
  48055. },
  48056. {
  48057. name: "Macro",
  48058. height: math.unit(200, "feet")
  48059. },
  48060. {
  48061. name: "Mega Macro",
  48062. height: math.unit(1, "mile")
  48063. },
  48064. {
  48065. name: "Giga Macro",
  48066. height: math.unit(1500, "miles")
  48067. },
  48068. {
  48069. name: "Tera Macro",
  48070. height: math.unit(8000, "miles")
  48071. },
  48072. {
  48073. name: "Tera Macro+",
  48074. height: math.unit(2e5, "miles")
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48080. {
  48081. front: {
  48082. height: math.unit(6.5, "feet"),
  48083. name: "Front",
  48084. image: {
  48085. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48086. extra: 860/819,
  48087. bottom: 307/1167
  48088. }
  48089. },
  48090. back: {
  48091. height: math.unit(6.5, "feet"),
  48092. name: "Back",
  48093. image: {
  48094. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48095. extra: 880/837,
  48096. bottom: 395/1275
  48097. }
  48098. },
  48099. sleeping: {
  48100. height: math.unit(2.79, "feet"),
  48101. name: "Sleeping",
  48102. image: {
  48103. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48104. extra: 465/383,
  48105. bottom: 263/728
  48106. }
  48107. },
  48108. maw: {
  48109. height: math.unit(2.52, "feet"),
  48110. name: "Maw",
  48111. image: {
  48112. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48113. }
  48114. },
  48115. },
  48116. [
  48117. {
  48118. name: "Normal",
  48119. height: math.unit(6.5, "feet"),
  48120. default: true
  48121. },
  48122. ]
  48123. ))
  48124. characterMakers.push(() => makeCharacter(
  48125. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48126. {
  48127. front: {
  48128. height: math.unit(5, "feet"),
  48129. name: "Front",
  48130. image: {
  48131. source: "./media/characters/nova-nerium/front.svg",
  48132. extra: 1548/1392,
  48133. bottom: 374/1922
  48134. }
  48135. },
  48136. back: {
  48137. height: math.unit(5, "feet"),
  48138. name: "Back",
  48139. image: {
  48140. source: "./media/characters/nova-nerium/back.svg",
  48141. extra: 1658/1468,
  48142. bottom: 257/1915
  48143. }
  48144. },
  48145. },
  48146. [
  48147. {
  48148. name: "Normal",
  48149. height: math.unit(5, "feet"),
  48150. default: true
  48151. },
  48152. ]
  48153. ))
  48154. characterMakers.push(() => makeCharacter(
  48155. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48156. {
  48157. front: {
  48158. height: math.unit(5 + 4/12, "feet"),
  48159. name: "Front",
  48160. image: {
  48161. source: "./media/characters/ashe-pyriph/front.svg",
  48162. extra: 1935/1747,
  48163. bottom: 60/1995
  48164. }
  48165. },
  48166. },
  48167. [
  48168. {
  48169. name: "Normal",
  48170. height: math.unit(5 + 4/12, "feet"),
  48171. default: true
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48177. {
  48178. front: {
  48179. height: math.unit(8.7, "feet"),
  48180. name: "Front",
  48181. image: {
  48182. source: "./media/characters/flicker-wisp/front.svg",
  48183. extra: 1835/1613,
  48184. bottom: 449/2284
  48185. }
  48186. },
  48187. side: {
  48188. height: math.unit(8.7, "feet"),
  48189. name: "Side",
  48190. image: {
  48191. source: "./media/characters/flicker-wisp/side.svg",
  48192. extra: 1841/1642,
  48193. bottom: 336/2177
  48194. },
  48195. default: true
  48196. },
  48197. maw: {
  48198. height: math.unit(3.35, "feet"),
  48199. name: "Maw",
  48200. image: {
  48201. source: "./media/characters/flicker-wisp/maw.svg",
  48202. extra: 2338/1506,
  48203. bottom: 0/2338
  48204. }
  48205. },
  48206. ovipositor: {
  48207. height: math.unit(4.95, "feet"),
  48208. name: "Ovipositor",
  48209. image: {
  48210. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48211. }
  48212. },
  48213. egg: {
  48214. height: math.unit(0.385, "feet"),
  48215. weight: math.unit(2, "lb"),
  48216. name: "Egg",
  48217. image: {
  48218. source: "./media/characters/flicker-wisp/egg.svg"
  48219. }
  48220. },
  48221. },
  48222. [
  48223. {
  48224. name: "Normal",
  48225. height: math.unit(8.7, "feet"),
  48226. default: true
  48227. },
  48228. ]
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48232. {
  48233. side: {
  48234. height: math.unit(11, "feet"),
  48235. name: "Side",
  48236. image: {
  48237. source: "./media/characters/faefnul/side.svg",
  48238. extra: 1100/1007,
  48239. bottom: 0/1100
  48240. }
  48241. },
  48242. },
  48243. [
  48244. {
  48245. name: "Normal",
  48246. height: math.unit(11, "feet"),
  48247. default: true
  48248. },
  48249. ]
  48250. ))
  48251. characterMakers.push(() => makeCharacter(
  48252. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48253. {
  48254. front: {
  48255. height: math.unit(6 + 2/12, "feet"),
  48256. name: "Front",
  48257. image: {
  48258. source: "./media/characters/shady/front.svg",
  48259. extra: 502/461,
  48260. bottom: 9/511
  48261. }
  48262. },
  48263. kneeling: {
  48264. height: math.unit(4.6, "feet"),
  48265. name: "Kneeling",
  48266. image: {
  48267. source: "./media/characters/shady/kneeling.svg",
  48268. extra: 1328/1219,
  48269. bottom: 117/1445
  48270. }
  48271. },
  48272. maw: {
  48273. height: math.unit(2, "feet"),
  48274. name: "Maw",
  48275. image: {
  48276. source: "./media/characters/shady/maw.svg"
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Nano",
  48283. height: math.unit(1, "mm")
  48284. },
  48285. {
  48286. name: "Micro",
  48287. height: math.unit(12, "mm")
  48288. },
  48289. {
  48290. name: "Tiny",
  48291. height: math.unit(3, "inches")
  48292. },
  48293. {
  48294. name: "Normal",
  48295. height: math.unit(6 + 2/12, "feet"),
  48296. default: true
  48297. },
  48298. {
  48299. name: "Big",
  48300. height: math.unit(15, "feet")
  48301. },
  48302. {
  48303. name: "Macro",
  48304. height: math.unit(150, "feet")
  48305. },
  48306. {
  48307. name: "Titanic",
  48308. height: math.unit(500, "feet")
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(12, "feet"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/fenrir/front.svg",
  48320. extra: 968/875,
  48321. bottom: 22/990
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Big",
  48328. height: math.unit(12, "feet"),
  48329. default: true
  48330. },
  48331. ]
  48332. ))
  48333. characterMakers.push(() => makeCharacter(
  48334. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48335. {
  48336. front: {
  48337. height: math.unit(5 + 4/12, "feet"),
  48338. name: "Front",
  48339. image: {
  48340. source: "./media/characters/makar/front.svg",
  48341. extra: 1181/1112,
  48342. bottom: 78/1259
  48343. }
  48344. },
  48345. },
  48346. [
  48347. {
  48348. name: "Normal",
  48349. height: math.unit(5 + 4/12, "feet"),
  48350. default: true
  48351. },
  48352. ]
  48353. ))
  48354. characterMakers.push(() => makeCharacter(
  48355. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48356. {
  48357. front: {
  48358. height: math.unit(5 + 7/12, "feet"),
  48359. name: "Front",
  48360. image: {
  48361. source: "./media/characters/callow/front.svg",
  48362. extra: 1482/1304,
  48363. bottom: 23/1505
  48364. }
  48365. },
  48366. back: {
  48367. height: math.unit(5 + 7/12, "feet"),
  48368. name: "Back",
  48369. image: {
  48370. source: "./media/characters/callow/back.svg",
  48371. extra: 1484/1296,
  48372. bottom: 25/1509
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Micro",
  48379. height: math.unit(3, "inches"),
  48380. default: true
  48381. },
  48382. {
  48383. name: "Normal",
  48384. height: math.unit(5 + 7/12, "feet")
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(6 + 2/12, "feet"),
  48393. name: "Front",
  48394. image: {
  48395. source: "./media/characters/natel/front.svg",
  48396. extra: 1833/1692,
  48397. bottom: 166/1999
  48398. }
  48399. },
  48400. },
  48401. [
  48402. {
  48403. name: "Normal",
  48404. height: math.unit(6 + 2/12, "feet"),
  48405. default: true
  48406. },
  48407. ]
  48408. ))
  48409. characterMakers.push(() => makeCharacter(
  48410. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48411. {
  48412. front: {
  48413. height: math.unit(1.75, "meters"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/misu/front.svg",
  48417. extra: 1690/1558,
  48418. bottom: 234/1924
  48419. }
  48420. },
  48421. back: {
  48422. height: math.unit(1.75, "meters"),
  48423. name: "Back",
  48424. image: {
  48425. source: "./media/characters/misu/back.svg",
  48426. extra: 1762/1618,
  48427. bottom: 146/1908
  48428. }
  48429. },
  48430. frontNude: {
  48431. height: math.unit(1.75, "meters"),
  48432. name: "Front (Nude)",
  48433. image: {
  48434. source: "./media/characters/misu/front-nude.svg",
  48435. extra: 1690/1558,
  48436. bottom: 234/1924
  48437. }
  48438. },
  48439. backNude: {
  48440. height: math.unit(1.75, "meters"),
  48441. name: "Back (Nude)",
  48442. image: {
  48443. source: "./media/characters/misu/back-nude.svg",
  48444. extra: 1762/1618,
  48445. bottom: 146/1908
  48446. }
  48447. },
  48448. frontErect: {
  48449. height: math.unit(1.75, "meters"),
  48450. name: "Front (Erect)",
  48451. image: {
  48452. source: "./media/characters/misu/front-erect.svg",
  48453. extra: 1690/1558,
  48454. bottom: 234/1924
  48455. }
  48456. },
  48457. maw: {
  48458. height: math.unit(0.47, "meters"),
  48459. name: "Maw",
  48460. image: {
  48461. source: "./media/characters/misu/maw.svg"
  48462. }
  48463. },
  48464. head: {
  48465. height: math.unit(0.35, "meters"),
  48466. name: "Head",
  48467. image: {
  48468. source: "./media/characters/misu/head.svg"
  48469. }
  48470. },
  48471. rear: {
  48472. height: math.unit(0.47, "meters"),
  48473. name: "Rear",
  48474. image: {
  48475. source: "./media/characters/misu/rear.svg"
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(1.75, "meters")
  48483. },
  48484. {
  48485. name: "Not good for the people",
  48486. height: math.unit(42, "meters")
  48487. },
  48488. {
  48489. name: "Not good for the neighborhood",
  48490. height: math.unit(135, "meters")
  48491. },
  48492. {
  48493. name: "Bit bigger problem",
  48494. height: math.unit(380, "meters"),
  48495. default: true
  48496. },
  48497. {
  48498. name: "Not good for the city",
  48499. height: math.unit(1.5, "km")
  48500. },
  48501. {
  48502. name: "Not good for the county",
  48503. height: math.unit(5.5, "km")
  48504. },
  48505. {
  48506. name: "Not good for the state",
  48507. height: math.unit(25, "km")
  48508. },
  48509. {
  48510. name: "Not good for the country",
  48511. height: math.unit(125, "km")
  48512. },
  48513. {
  48514. name: "Not good for the continent",
  48515. height: math.unit(2100, "km")
  48516. },
  48517. {
  48518. name: "Not good for the planet",
  48519. height: math.unit(35000, "km")
  48520. },
  48521. {
  48522. name: "Just no",
  48523. height: math.unit(8.5e18, "km")
  48524. },
  48525. ]
  48526. ))
  48527. characterMakers.push(() => makeCharacter(
  48528. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48529. {
  48530. front: {
  48531. height: math.unit(6.5, "feet"),
  48532. name: "Front",
  48533. image: {
  48534. source: "./media/characters/poppy/front.svg",
  48535. extra: 1878/1812,
  48536. bottom: 43/1921
  48537. }
  48538. },
  48539. feet: {
  48540. height: math.unit(1.06, "feet"),
  48541. name: "Feet",
  48542. image: {
  48543. source: "./media/characters/poppy/feet.svg",
  48544. extra: 1083/1083,
  48545. bottom: 87/1170
  48546. }
  48547. },
  48548. },
  48549. [
  48550. {
  48551. name: "Human",
  48552. height: math.unit(6.5, "feet")
  48553. },
  48554. {
  48555. name: "Default",
  48556. height: math.unit(300, "feet"),
  48557. default: true
  48558. },
  48559. {
  48560. name: "Huge",
  48561. height: math.unit(850, "feet")
  48562. },
  48563. {
  48564. name: "Mega",
  48565. height: math.unit(8000, "feet")
  48566. },
  48567. {
  48568. name: "Giga",
  48569. height: math.unit(300, "miles")
  48570. },
  48571. ]
  48572. ))
  48573. characterMakers.push(() => makeCharacter(
  48574. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48575. {
  48576. bipedal: {
  48577. height: math.unit(7, "feet"),
  48578. name: "Bipedal",
  48579. image: {
  48580. source: "./media/characters/zener/bipedal.svg",
  48581. extra: 874/805,
  48582. bottom: 109/983
  48583. }
  48584. },
  48585. quadrupedal: {
  48586. height: math.unit(4.64, "feet"),
  48587. name: "Quadrupedal",
  48588. image: {
  48589. source: "./media/characters/zener/quadrupedal.svg",
  48590. extra: 638/507,
  48591. bottom: 190/828
  48592. }
  48593. },
  48594. cock: {
  48595. height: math.unit(18, "inches"),
  48596. name: "Cock",
  48597. image: {
  48598. source: "./media/characters/zener/cock.svg"
  48599. }
  48600. },
  48601. },
  48602. [
  48603. {
  48604. name: "Normal",
  48605. height: math.unit(7, "feet"),
  48606. default: true
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48612. {
  48613. nude: {
  48614. height: math.unit(5 + 6/12, "feet"),
  48615. name: "Nude",
  48616. image: {
  48617. source: "./media/characters/charlie-dog/nude.svg",
  48618. extra: 768/734,
  48619. bottom: 26/794
  48620. }
  48621. },
  48622. dressed: {
  48623. height: math.unit(5 + 6/12, "feet"),
  48624. name: "Dressed",
  48625. image: {
  48626. source: "./media/characters/charlie-dog/dressed.svg",
  48627. extra: 768/734,
  48628. bottom: 26/794
  48629. }
  48630. },
  48631. },
  48632. [
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(5 + 6/12, "feet"),
  48636. default: true
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(6 + 4/12, "feet"),
  48645. name: "Front",
  48646. image: {
  48647. source: "./media/characters/ir'istrasz/front.svg",
  48648. extra: 1014/977,
  48649. bottom: 65/1079
  48650. }
  48651. },
  48652. back: {
  48653. height: math.unit(6 + 4/12, "feet"),
  48654. name: "Back",
  48655. image: {
  48656. source: "./media/characters/ir'istrasz/back.svg",
  48657. extra: 1024/992,
  48658. bottom: 34/1058
  48659. }
  48660. },
  48661. },
  48662. [
  48663. {
  48664. name: "Normal",
  48665. height: math.unit(6 + 4/12, "feet"),
  48666. default: true
  48667. },
  48668. ]
  48669. ))
  48670. characterMakers.push(() => makeCharacter(
  48671. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48672. {
  48673. front: {
  48674. height: math.unit(5 + 8/12, "feet"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/dee-ditto/front.svg",
  48678. extra: 1874/1785,
  48679. bottom: 68/1942
  48680. }
  48681. },
  48682. back: {
  48683. height: math.unit(5 + 8/12, "feet"),
  48684. name: "Back",
  48685. image: {
  48686. source: "./media/characters/dee-ditto/back.svg",
  48687. extra: 1870/1783,
  48688. bottom: 77/1947
  48689. }
  48690. },
  48691. },
  48692. [
  48693. {
  48694. name: "Normal",
  48695. height: math.unit(5 + 8/12, "feet"),
  48696. default: true
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(7 + 6/12, "feet"),
  48705. name: "Front",
  48706. image: {
  48707. source: "./media/characters/fey/front.svg",
  48708. extra: 995/979,
  48709. bottom: 30/1025
  48710. }
  48711. },
  48712. back: {
  48713. height: math.unit(7 + 6/12, "feet"),
  48714. name: "Back",
  48715. image: {
  48716. source: "./media/characters/fey/back.svg",
  48717. extra: 1079/1008,
  48718. bottom: 5/1084
  48719. }
  48720. },
  48721. dressed: {
  48722. height: math.unit(7 + 6/12, "feet"),
  48723. name: "Dressed",
  48724. image: {
  48725. source: "./media/characters/fey/dressed.svg",
  48726. extra: 995/979,
  48727. bottom: 30/1025
  48728. }
  48729. },
  48730. },
  48731. [
  48732. {
  48733. name: "Normal",
  48734. height: math.unit(7 + 6/12, "feet"),
  48735. default: true
  48736. },
  48737. ]
  48738. ))
  48739. characterMakers.push(() => makeCharacter(
  48740. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48741. {
  48742. standing: {
  48743. height: math.unit(17, "feet"),
  48744. name: "Standing",
  48745. image: {
  48746. source: "./media/characters/aster/standing.svg",
  48747. extra: 1798/1598,
  48748. bottom: 117/1915
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(17, "feet"),
  48756. default: true
  48757. },
  48758. {
  48759. name: "Homewrecker",
  48760. height: math.unit(95, "feet")
  48761. },
  48762. {
  48763. name: "Planet Devourer",
  48764. height: math.unit(1008000, "miles")
  48765. },
  48766. ]
  48767. ))
  48768. characterMakers.push(() => makeCharacter(
  48769. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48770. {
  48771. front: {
  48772. height: math.unit(6 + 5/12, "feet"),
  48773. weight: math.unit(265, "lb"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/devon-childs/front.svg",
  48777. extra: 1795/1721,
  48778. bottom: 41/1836
  48779. }
  48780. },
  48781. side: {
  48782. height: math.unit(6 + 5/12, "feet"),
  48783. weight: math.unit(265, "lb"),
  48784. name: "Side",
  48785. image: {
  48786. source: "./media/characters/devon-childs/side.svg",
  48787. extra: 1812/1738,
  48788. bottom: 30/1842
  48789. }
  48790. },
  48791. back: {
  48792. height: math.unit(6 + 5/12, "feet"),
  48793. weight: math.unit(265, "lb"),
  48794. name: "Back",
  48795. image: {
  48796. source: "./media/characters/devon-childs/back.svg",
  48797. extra: 1808/1735,
  48798. bottom: 23/1831
  48799. }
  48800. },
  48801. hand: {
  48802. height: math.unit(1.464, "feet"),
  48803. name: "Hand",
  48804. image: {
  48805. source: "./media/characters/devon-childs/hand.svg"
  48806. }
  48807. },
  48808. foot: {
  48809. height: math.unit(1.6, "feet"),
  48810. name: "Foot",
  48811. image: {
  48812. source: "./media/characters/devon-childs/foot.svg"
  48813. }
  48814. },
  48815. },
  48816. [
  48817. {
  48818. name: "Micro",
  48819. height: math.unit(7, "cm")
  48820. },
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(6 + 5/12, "feet"),
  48824. default: true
  48825. },
  48826. {
  48827. name: "Macro",
  48828. height: math.unit(154, "feet")
  48829. },
  48830. ]
  48831. ))
  48832. characterMakers.push(() => makeCharacter(
  48833. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48834. {
  48835. front: {
  48836. height: math.unit(6, "feet"),
  48837. weight: math.unit(180, "lb"),
  48838. name: "Front",
  48839. image: {
  48840. source: "./media/characters/lydemox-vir/front.svg",
  48841. extra: 1632/1435,
  48842. bottom: 58/1690
  48843. }
  48844. },
  48845. frontSFW: {
  48846. height: math.unit(6, "feet"),
  48847. weight: math.unit(180, "lb"),
  48848. name: "Front (SFW)",
  48849. image: {
  48850. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48851. extra: 1632/1435,
  48852. bottom: 58/1690
  48853. }
  48854. },
  48855. back: {
  48856. height: math.unit(6, "feet"),
  48857. weight: math.unit(180, "lb"),
  48858. name: "Back",
  48859. image: {
  48860. source: "./media/characters/lydemox-vir/back.svg",
  48861. extra: 1593/1408,
  48862. bottom: 31/1624
  48863. }
  48864. },
  48865. paw: {
  48866. height: math.unit(1.85, "feet"),
  48867. name: "Paw",
  48868. image: {
  48869. source: "./media/characters/lydemox-vir/paw.svg"
  48870. }
  48871. },
  48872. dick: {
  48873. height: math.unit(1.8, "feet"),
  48874. name: "Dick",
  48875. image: {
  48876. source: "./media/characters/lydemox-vir/dick.svg"
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Macro",
  48883. height: math.unit(100, "feet"),
  48884. default: true
  48885. },
  48886. {
  48887. name: "Teramacro",
  48888. height: math.unit(1, "earth")
  48889. },
  48890. {
  48891. name: "Planetary",
  48892. height: math.unit(20, "earths")
  48893. },
  48894. ]
  48895. ))
  48896. characterMakers.push(() => makeCharacter(
  48897. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48898. {
  48899. front: {
  48900. height: math.unit(15 + 8/12, "feet"),
  48901. weight: math.unit(1237, "kg"),
  48902. name: "Front",
  48903. image: {
  48904. source: "./media/characters/mia/front.svg",
  48905. extra: 1573/1446,
  48906. bottom: 58/1631
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Small",
  48913. height: math.unit(9 + 5/12, "feet")
  48914. },
  48915. {
  48916. name: "Normal",
  48917. height: math.unit(15 + 8/12, "feet"),
  48918. default: true
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48924. {
  48925. front: {
  48926. height: math.unit(10 + 6/12, "feet"),
  48927. weight: math.unit(1.3, "tons"),
  48928. name: "Front",
  48929. image: {
  48930. source: "./media/characters/mr-graves/front.svg",
  48931. extra: 1779/1695,
  48932. bottom: 198/1977
  48933. }
  48934. },
  48935. },
  48936. [
  48937. {
  48938. name: "Normal",
  48939. height: math.unit(10 + 6 /12, "feet"),
  48940. default: true
  48941. },
  48942. ]
  48943. ))
  48944. characterMakers.push(() => makeCharacter(
  48945. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48946. {
  48947. dressedFront: {
  48948. height: math.unit(5 + 8/12, "feet"),
  48949. weight: math.unit(125, "lb"),
  48950. name: "Dressed (Front)",
  48951. image: {
  48952. source: "./media/characters/jess/dressed-front.svg",
  48953. extra: 1176/1152,
  48954. bottom: 42/1218
  48955. }
  48956. },
  48957. dressedSide: {
  48958. height: math.unit(5 + 8/12, "feet"),
  48959. weight: math.unit(125, "lb"),
  48960. name: "Dressed (Side)",
  48961. image: {
  48962. source: "./media/characters/jess/dressed-side.svg",
  48963. extra: 1204/1190,
  48964. bottom: 6/1210
  48965. }
  48966. },
  48967. nudeFront: {
  48968. height: math.unit(5 + 8/12, "feet"),
  48969. weight: math.unit(125, "lb"),
  48970. name: "Nude (Front)",
  48971. image: {
  48972. source: "./media/characters/jess/nude-front.svg",
  48973. extra: 1176/1152,
  48974. bottom: 42/1218
  48975. }
  48976. },
  48977. nudeSide: {
  48978. height: math.unit(5 + 8/12, "feet"),
  48979. weight: math.unit(125, "lb"),
  48980. name: "Nude (Side)",
  48981. image: {
  48982. source: "./media/characters/jess/nude-side.svg",
  48983. extra: 1204/1190,
  48984. bottom: 6/1210
  48985. }
  48986. },
  48987. organsFront: {
  48988. height: math.unit(2.83799342105, "feet"),
  48989. name: "Organs (Front)",
  48990. image: {
  48991. source: "./media/characters/jess/organs-front.svg"
  48992. }
  48993. },
  48994. organsSide: {
  48995. height: math.unit(2.64225290474, "feet"),
  48996. name: "Organs (Side)",
  48997. image: {
  48998. source: "./media/characters/jess/organs-side.svg"
  48999. }
  49000. },
  49001. digestiveTractFront: {
  49002. height: math.unit(2.8106580871, "feet"),
  49003. name: "Digestive Tract (Front)",
  49004. image: {
  49005. source: "./media/characters/jess/digestive-tract-front.svg"
  49006. }
  49007. },
  49008. digestiveTractSide: {
  49009. height: math.unit(2.54365045014, "feet"),
  49010. name: "Digestive Tract (Side)",
  49011. image: {
  49012. source: "./media/characters/jess/digestive-tract-side.svg"
  49013. }
  49014. },
  49015. respiratorySystemFront: {
  49016. height: math.unit(1.11196233456, "feet"),
  49017. name: "Respiratory System (Front)",
  49018. image: {
  49019. source: "./media/characters/jess/respiratory-system-front.svg"
  49020. }
  49021. },
  49022. respiratorySystemSide: {
  49023. height: math.unit(0.89327966297, "feet"),
  49024. name: "Respiratory System (Side)",
  49025. image: {
  49026. source: "./media/characters/jess/respiratory-system-side.svg"
  49027. }
  49028. },
  49029. urinaryTractFront: {
  49030. height: math.unit(1.16126356186, "feet"),
  49031. name: "Urinary Tract (Front)",
  49032. image: {
  49033. source: "./media/characters/jess/urinary-tract-front.svg"
  49034. }
  49035. },
  49036. urinaryTractSide: {
  49037. height: math.unit(1.20910039627, "feet"),
  49038. name: "Urinary Tract (Side)",
  49039. image: {
  49040. source: "./media/characters/jess/urinary-tract-side.svg"
  49041. }
  49042. },
  49043. reproductiveOrgansFront: {
  49044. height: math.unit(0.48422591566, "feet"),
  49045. name: "Reproductive Organs (Front)",
  49046. image: {
  49047. source: "./media/characters/jess/reproductive-organs-front.svg"
  49048. }
  49049. },
  49050. reproductiveOrgansSide: {
  49051. height: math.unit(0.61553314481, "feet"),
  49052. name: "Reproductive Organs (Side)",
  49053. image: {
  49054. source: "./media/characters/jess/reproductive-organs-side.svg"
  49055. }
  49056. },
  49057. breastsFront: {
  49058. height: math.unit(0.47690395121, "feet"),
  49059. name: "Breasts (Front)",
  49060. image: {
  49061. source: "./media/characters/jess/breasts-front.svg"
  49062. }
  49063. },
  49064. breastsSide: {
  49065. height: math.unit(0.30556998307, "feet"),
  49066. name: "Breasts (Side)",
  49067. image: {
  49068. source: "./media/characters/jess/breasts-side.svg"
  49069. }
  49070. },
  49071. heartFront: {
  49072. height: math.unit(0.53011022622, "feet"),
  49073. name: "Heart (Front)",
  49074. image: {
  49075. source: "./media/characters/jess/heart-front.svg"
  49076. }
  49077. },
  49078. heartSide: {
  49079. height: math.unit(0.51790695213, "feet"),
  49080. name: "Heart (Side)",
  49081. image: {
  49082. source: "./media/characters/jess/heart-side.svg"
  49083. }
  49084. },
  49085. earsAndNoseFront: {
  49086. height: math.unit(0.29385483995, "feet"),
  49087. name: "Ears and Nose (Front)",
  49088. image: {
  49089. source: "./media/characters/jess/ears-and-nose-front.svg"
  49090. }
  49091. },
  49092. earsAndNoseSide: {
  49093. height: math.unit(0.18109658741, "feet"),
  49094. name: "Ears and Nose (Side)",
  49095. image: {
  49096. source: "./media/characters/jess/ears-and-nose-side.svg"
  49097. }
  49098. },
  49099. },
  49100. [
  49101. {
  49102. name: "Normal",
  49103. height: math.unit(5 + 8/12, "feet"),
  49104. default: true
  49105. },
  49106. ]
  49107. ))
  49108. characterMakers.push(() => makeCharacter(
  49109. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49110. {
  49111. front: {
  49112. height: math.unit(6, "feet"),
  49113. weight: math.unit(6.64467e-7, "grams"),
  49114. name: "Front",
  49115. image: {
  49116. source: "./media/characters/wimpering/front.svg",
  49117. extra: 597/587,
  49118. bottom: 34/631
  49119. }
  49120. },
  49121. },
  49122. [
  49123. {
  49124. name: "Micro",
  49125. height: math.unit(0.4, "mm"),
  49126. default: true
  49127. },
  49128. ]
  49129. ))
  49130. characterMakers.push(() => makeCharacter(
  49131. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49132. {
  49133. front: {
  49134. height: math.unit(5 + 2/12, "feet"),
  49135. weight: math.unit(110, "lb"),
  49136. name: "Front",
  49137. image: {
  49138. source: "./media/characters/keltre/front.svg",
  49139. extra: 1099/1057,
  49140. bottom: 22/1121
  49141. }
  49142. },
  49143. back: {
  49144. height: math.unit(5 + 2/12, "feet"),
  49145. weight: math.unit(110, "lb"),
  49146. name: "Back",
  49147. image: {
  49148. source: "./media/characters/keltre/back.svg",
  49149. extra: 1095/1053,
  49150. bottom: 17/1112
  49151. }
  49152. },
  49153. dressed: {
  49154. height: math.unit(5 + 2/12, "feet"),
  49155. weight: math.unit(110, "lb"),
  49156. name: "Dressed",
  49157. image: {
  49158. source: "./media/characters/keltre/dressed.svg",
  49159. extra: 1099/1057,
  49160. bottom: 22/1121
  49161. }
  49162. },
  49163. winter: {
  49164. height: math.unit(5 + 2/12, "feet"),
  49165. weight: math.unit(110, "lb"),
  49166. name: "Winter",
  49167. image: {
  49168. source: "./media/characters/keltre/winter.svg",
  49169. extra: 1099/1057,
  49170. bottom: 22/1121
  49171. }
  49172. },
  49173. head: {
  49174. height: math.unit(1.61 * 0.86, "feet"),
  49175. name: "Head",
  49176. image: {
  49177. source: "./media/characters/keltre/head.svg",
  49178. extra: 534/421,
  49179. bottom: 0/534
  49180. }
  49181. },
  49182. hand: {
  49183. height: math.unit(1.3 * 0.86, "feet"),
  49184. name: "Hand",
  49185. image: {
  49186. source: "./media/characters/keltre/hand.svg"
  49187. }
  49188. },
  49189. foot: {
  49190. height: math.unit(1.8 * 0.86, "feet"),
  49191. name: "Foot",
  49192. image: {
  49193. source: "./media/characters/keltre/foot.svg"
  49194. }
  49195. },
  49196. },
  49197. [
  49198. {
  49199. name: "Fine",
  49200. height: math.unit(1, "inch")
  49201. },
  49202. {
  49203. name: "Dimnutive",
  49204. height: math.unit(4, "inches")
  49205. },
  49206. {
  49207. name: "Tiny",
  49208. height: math.unit(1, "foot")
  49209. },
  49210. {
  49211. name: "Small",
  49212. height: math.unit(3, "feet")
  49213. },
  49214. {
  49215. name: "Normal",
  49216. height: math.unit(5 + 2/12, "feet"),
  49217. default: true
  49218. },
  49219. ]
  49220. ))
  49221. characterMakers.push(() => makeCharacter(
  49222. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49223. {
  49224. front: {
  49225. height: math.unit(6 + 2/12, "feet"),
  49226. name: "Front",
  49227. image: {
  49228. source: "./media/characters/nox/front.svg",
  49229. extra: 1917/1830,
  49230. bottom: 74/1991
  49231. }
  49232. },
  49233. back: {
  49234. height: math.unit(6 + 2/12, "feet"),
  49235. name: "Back",
  49236. image: {
  49237. source: "./media/characters/nox/back.svg",
  49238. extra: 1896/1815,
  49239. bottom: 21/1917
  49240. }
  49241. },
  49242. head: {
  49243. height: math.unit(1.1, "feet"),
  49244. name: "Head",
  49245. image: {
  49246. source: "./media/characters/nox/head.svg",
  49247. extra: 874/704,
  49248. bottom: 0/874
  49249. }
  49250. },
  49251. tattoo: {
  49252. height: math.unit(0.729, "feet"),
  49253. name: "Tattoo",
  49254. image: {
  49255. source: "./media/characters/nox/tattoo.svg"
  49256. }
  49257. },
  49258. },
  49259. [
  49260. {
  49261. name: "Normal",
  49262. height: math.unit(6 + 2/12, "feet")
  49263. },
  49264. {
  49265. name: "Gigamacro",
  49266. height: math.unit(2, "earths"),
  49267. default: true
  49268. },
  49269. {
  49270. name: "Cosmic",
  49271. height: math.unit(867, "yottameters")
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(6, "feet"),
  49280. weight: math.unit(150, "lb"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/caspian/front.svg",
  49284. extra: 1443/1359,
  49285. bottom: 0/1443
  49286. }
  49287. },
  49288. back: {
  49289. height: math.unit(6, "feet"),
  49290. weight: math.unit(150, "lb"),
  49291. name: "Back",
  49292. image: {
  49293. source: "./media/characters/caspian/back.svg",
  49294. extra: 1379/1309,
  49295. bottom: 0/1379
  49296. }
  49297. },
  49298. head: {
  49299. height: math.unit(0.9, "feet"),
  49300. name: "Head",
  49301. image: {
  49302. source: "./media/characters/caspian/head.svg",
  49303. extra: 692/492,
  49304. bottom: 0/692
  49305. }
  49306. },
  49307. headAlt: {
  49308. height: math.unit(0.95, "feet"),
  49309. name: "Head (Alt)",
  49310. image: {
  49311. source: "./media/characters/caspian/head-alt.svg",
  49312. extra: 668/508,
  49313. bottom: 0/668
  49314. }
  49315. },
  49316. hand: {
  49317. height: math.unit(0.8, "feet"),
  49318. name: "Hand",
  49319. image: {
  49320. source: "./media/characters/caspian/hand.svg"
  49321. }
  49322. },
  49323. paw: {
  49324. height: math.unit(0.95, "feet"),
  49325. name: "Paw",
  49326. image: {
  49327. source: "./media/characters/caspian/paw.svg"
  49328. }
  49329. },
  49330. },
  49331. [
  49332. {
  49333. name: "Normal",
  49334. height: math.unit(162, "feet"),
  49335. default: true
  49336. },
  49337. ]
  49338. ))
  49339. characterMakers.push(() => makeCharacter(
  49340. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49341. {
  49342. front: {
  49343. height: math.unit(6, "feet"),
  49344. name: "Front",
  49345. image: {
  49346. source: "./media/characters/myra-aisling/front.svg",
  49347. extra: 1268/1166,
  49348. bottom: 73/1341
  49349. }
  49350. },
  49351. back: {
  49352. height: math.unit(6, "feet"),
  49353. name: "Back",
  49354. image: {
  49355. source: "./media/characters/myra-aisling/back.svg",
  49356. extra: 1249/1149,
  49357. bottom: 79/1328
  49358. }
  49359. },
  49360. dressed: {
  49361. height: math.unit(6, "feet"),
  49362. name: "Dressed",
  49363. image: {
  49364. source: "./media/characters/myra-aisling/dressed.svg",
  49365. extra: 1290/1189,
  49366. bottom: 47/1337
  49367. }
  49368. },
  49369. hand: {
  49370. height: math.unit(1.1, "feet"),
  49371. name: "Hand",
  49372. image: {
  49373. source: "./media/characters/myra-aisling/hand.svg"
  49374. }
  49375. },
  49376. paw: {
  49377. height: math.unit(1.23, "feet"),
  49378. name: "Paw",
  49379. image: {
  49380. source: "./media/characters/myra-aisling/paw.svg"
  49381. }
  49382. },
  49383. },
  49384. [
  49385. {
  49386. name: "Normal",
  49387. height: math.unit(160, "feet"),
  49388. default: true
  49389. },
  49390. ]
  49391. ))
  49392. characterMakers.push(() => makeCharacter(
  49393. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49394. {
  49395. front: {
  49396. height: math.unit(6, "feet"),
  49397. name: "Front",
  49398. image: {
  49399. source: "./media/characters/tenley-sidero/front.svg",
  49400. extra: 1365/1276,
  49401. bottom: 47/1412
  49402. }
  49403. },
  49404. back: {
  49405. height: math.unit(6, "feet"),
  49406. name: "Back",
  49407. image: {
  49408. source: "./media/characters/tenley-sidero/back.svg",
  49409. extra: 1383/1283,
  49410. bottom: 35/1418
  49411. }
  49412. },
  49413. dressed: {
  49414. height: math.unit(6, "feet"),
  49415. name: "Dressed",
  49416. image: {
  49417. source: "./media/characters/tenley-sidero/dressed.svg",
  49418. extra: 1364/1275,
  49419. bottom: 42/1406
  49420. }
  49421. },
  49422. head: {
  49423. height: math.unit(1.47, "feet"),
  49424. name: "Head",
  49425. image: {
  49426. source: "./media/characters/tenley-sidero/head.svg",
  49427. extra: 610/490,
  49428. bottom: 0/610
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(154, "feet"),
  49436. default: true
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49442. {
  49443. front: {
  49444. height: math.unit(5, "inches"),
  49445. name: "Front",
  49446. image: {
  49447. source: "./media/characters/mallory/front.svg",
  49448. extra: 1919/1678,
  49449. bottom: 29/1948
  49450. }
  49451. },
  49452. hand: {
  49453. height: math.unit(0.73, "inches"),
  49454. name: "Hand",
  49455. image: {
  49456. source: "./media/characters/mallory/hand.svg"
  49457. }
  49458. },
  49459. paw: {
  49460. height: math.unit(0.68, "inches"),
  49461. name: "Paw",
  49462. image: {
  49463. source: "./media/characters/mallory/paw.svg"
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Small",
  49470. height: math.unit(5, "inches"),
  49471. default: true
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49477. {
  49478. naked: {
  49479. height: math.unit(6, "feet"),
  49480. name: "Naked",
  49481. image: {
  49482. source: "./media/characters/mab/naked.svg",
  49483. extra: 1855/1757,
  49484. bottom: 208/2063
  49485. }
  49486. },
  49487. outside: {
  49488. height: math.unit(6, "feet"),
  49489. name: "Outside",
  49490. image: {
  49491. source: "./media/characters/mab/outside.svg",
  49492. extra: 1855/1757,
  49493. bottom: 208/2063
  49494. }
  49495. },
  49496. party: {
  49497. height: math.unit(6, "feet"),
  49498. name: "Party",
  49499. image: {
  49500. source: "./media/characters/mab/party.svg",
  49501. extra: 1855/1757,
  49502. bottom: 208/2063
  49503. }
  49504. },
  49505. },
  49506. [
  49507. {
  49508. name: "Normal",
  49509. height: math.unit(165, "feet"),
  49510. default: true
  49511. },
  49512. ]
  49513. ))
  49514. characterMakers.push(() => makeCharacter(
  49515. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49516. {
  49517. front: {
  49518. height: math.unit(12, "feet"),
  49519. weight: math.unit(20000, "lb"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/winter/front.svg",
  49523. extra: 1286/943,
  49524. bottom: 112/1398
  49525. }
  49526. },
  49527. frontNsfw: {
  49528. height: math.unit(12, "feet"),
  49529. weight: math.unit(20000, "lb"),
  49530. name: "Front (NSFW)",
  49531. image: {
  49532. source: "./media/characters/winter/front-nsfw.svg",
  49533. extra: 1286/943,
  49534. bottom: 112/1398
  49535. }
  49536. },
  49537. dick: {
  49538. height: math.unit(3.79, "feet"),
  49539. name: "Dick",
  49540. image: {
  49541. source: "./media/characters/winter/dick.svg"
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Big",
  49548. height: math.unit(12, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49555. {
  49556. front: {
  49557. height: math.unit(4.1, "inches"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/alto/front.svg",
  49561. extra: 736/627,
  49562. bottom: 90/826
  49563. }
  49564. },
  49565. },
  49566. [
  49567. {
  49568. name: "Normal",
  49569. height: math.unit(4.1, "inches"),
  49570. default: true
  49571. },
  49572. ]
  49573. ))
  49574. characterMakers.push(() => makeCharacter(
  49575. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49576. {
  49577. sitting: {
  49578. height: math.unit(3, "feet"),
  49579. name: "Sitting",
  49580. image: {
  49581. source: "./media/characters/ratstrid-v/sitting.svg",
  49582. extra: 355/310,
  49583. bottom: 136/491
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(3, "feet"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49597. {
  49598. back: {
  49599. height: math.unit(6, "feet"),
  49600. weight: math.unit(350, "lb"),
  49601. name: "Back",
  49602. image: {
  49603. source: "./media/characters/siz/back.svg",
  49604. extra: 1449/1274,
  49605. bottom: 13/1462
  49606. }
  49607. },
  49608. },
  49609. [
  49610. {
  49611. name: "Over-Overcompressed",
  49612. height: math.unit(8, "feet")
  49613. },
  49614. {
  49615. name: "Overcompressed",
  49616. height: math.unit(32, "feet")
  49617. },
  49618. {
  49619. name: "Compressed",
  49620. height: math.unit(128, "feet"),
  49621. default: true
  49622. },
  49623. {
  49624. name: "Half-Compressed",
  49625. height: math.unit(512, "feet")
  49626. },
  49627. {
  49628. name: "Quarter-Compressed",
  49629. height: math.unit(2048, "feet")
  49630. },
  49631. {
  49632. name: "Uncompressed?",
  49633. height: math.unit(8192, "feet")
  49634. },
  49635. ]
  49636. ))
  49637. characterMakers.push(() => makeCharacter(
  49638. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49639. {
  49640. front: {
  49641. height: math.unit(5 + 9/12, "feet"),
  49642. weight: math.unit(150, "lb"),
  49643. name: "Front",
  49644. image: {
  49645. source: "./media/characters/ven/front.svg",
  49646. extra: 1372/1320,
  49647. bottom: 73/1445
  49648. }
  49649. },
  49650. side: {
  49651. height: math.unit(5 + 9/12, "feet"),
  49652. weight: math.unit(1150, "lb"),
  49653. name: "Side",
  49654. image: {
  49655. source: "./media/characters/ven/side.svg",
  49656. extra: 1119/1070,
  49657. bottom: 42/1161
  49658. },
  49659. default: true
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Normal",
  49665. height: math.unit(5 + 9/12, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(12, "feet"),
  49675. weight: math.unit(1000, "kg"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/maple/front.svg",
  49679. extra: 1193/1081,
  49680. bottom: 22/1215
  49681. }
  49682. },
  49683. },
  49684. [
  49685. {
  49686. name: "Compressed",
  49687. height: math.unit(7, "feet")
  49688. },
  49689. {
  49690. name: "Normal",
  49691. height: math.unit(12, "feet"),
  49692. default: true
  49693. },
  49694. ]
  49695. ))
  49696. characterMakers.push(() => makeCharacter(
  49697. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49698. {
  49699. front: {
  49700. height: math.unit(9, "feet"),
  49701. weight: math.unit(1500, "lb"),
  49702. name: "Front",
  49703. image: {
  49704. source: "./media/characters/nora/front.svg",
  49705. extra: 1348/1286,
  49706. bottom: 218/1566
  49707. }
  49708. },
  49709. erect: {
  49710. height: math.unit(9, "feet"),
  49711. weight: math.unit(11500, "lb"),
  49712. name: "Erect",
  49713. image: {
  49714. source: "./media/characters/nora/erect.svg",
  49715. extra: 1488/1433,
  49716. bottom: 133/1621
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(9, "feet"),
  49724. default: true
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49730. {
  49731. front: {
  49732. height: math.unit(25, "feet"),
  49733. weight: math.unit(27500, "lb"),
  49734. name: "Front",
  49735. image: {
  49736. source: "./media/characters/north-caudin/front.svg",
  49737. extra: 1184/1082,
  49738. bottom: 23/1207
  49739. }
  49740. },
  49741. },
  49742. [
  49743. {
  49744. name: "Compressed",
  49745. height: math.unit(10, "feet")
  49746. },
  49747. {
  49748. name: "Normal",
  49749. height: math.unit(25, "feet"),
  49750. default: true
  49751. },
  49752. ]
  49753. ))
  49754. characterMakers.push(() => makeCharacter(
  49755. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49756. {
  49757. front: {
  49758. height: math.unit(9, "feet"),
  49759. weight: math.unit(1250, "lb"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/merrian/front.svg",
  49763. extra: 2393/2304,
  49764. bottom: 40/2433
  49765. }
  49766. },
  49767. },
  49768. [
  49769. {
  49770. name: "Normal",
  49771. height: math.unit(9, "feet"),
  49772. default: true
  49773. },
  49774. ]
  49775. ))
  49776. characterMakers.push(() => makeCharacter(
  49777. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49778. {
  49779. front: {
  49780. height: math.unit(9, "feet"),
  49781. weight: math.unit(1000, "lb"),
  49782. name: "Front",
  49783. image: {
  49784. source: "./media/characters/hazel/front.svg",
  49785. extra: 2351/2298,
  49786. bottom: 38/2389
  49787. }
  49788. },
  49789. },
  49790. [
  49791. {
  49792. name: "Normal",
  49793. height: math.unit(9, "feet"),
  49794. default: true
  49795. },
  49796. ]
  49797. ))
  49798. characterMakers.push(() => makeCharacter(
  49799. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49800. {
  49801. front: {
  49802. height: math.unit(13, "feet"),
  49803. weight: math.unit(3200, "lb"),
  49804. name: "Front",
  49805. image: {
  49806. source: "./media/characters/emma/front.svg",
  49807. extra: 2263/2029,
  49808. bottom: 68/2331
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(13, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(11 + 9/12, "feet"),
  49825. weight: math.unit(2500, "lb"),
  49826. name: "Front",
  49827. image: {
  49828. source: "./media/characters/ilumina/front.svg",
  49829. extra: 2248/2209,
  49830. bottom: 164/2412
  49831. }
  49832. },
  49833. },
  49834. [
  49835. {
  49836. name: "Normal",
  49837. height: math.unit(11 + 9/12, "feet"),
  49838. default: true
  49839. },
  49840. ]
  49841. ))
  49842. characterMakers.push(() => makeCharacter(
  49843. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49844. {
  49845. front: {
  49846. height: math.unit(8 + 10/12, "feet"),
  49847. weight: math.unit(1350, "lb"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/moonshine/front.svg",
  49851. extra: 2395/2288,
  49852. bottom: 40/2435
  49853. }
  49854. },
  49855. },
  49856. [
  49857. {
  49858. name: "Normal",
  49859. height: math.unit(8 + 10/12, "feet"),
  49860. default: true
  49861. },
  49862. ]
  49863. ))
  49864. characterMakers.push(() => makeCharacter(
  49865. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49866. {
  49867. front: {
  49868. height: math.unit(14, "feet"),
  49869. weight: math.unit(3400, "lb"),
  49870. name: "Front",
  49871. image: {
  49872. source: "./media/characters/aletia/front.svg",
  49873. extra: 1185/1052,
  49874. bottom: 21/1206
  49875. }
  49876. },
  49877. },
  49878. [
  49879. {
  49880. name: "Compressed",
  49881. height: math.unit(8, "feet")
  49882. },
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(14, "feet"),
  49886. default: true
  49887. },
  49888. ]
  49889. ))
  49890. characterMakers.push(() => makeCharacter(
  49891. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49892. {
  49893. front: {
  49894. height: math.unit(17, "feet"),
  49895. weight: math.unit(6500, "lb"),
  49896. name: "Front",
  49897. image: {
  49898. source: "./media/characters/deidra/front.svg",
  49899. extra: 1201/1081,
  49900. bottom: 16/1217
  49901. }
  49902. },
  49903. },
  49904. [
  49905. {
  49906. name: "Compressed",
  49907. height: math.unit(9 + 6/12, "feet")
  49908. },
  49909. {
  49910. name: "Normal",
  49911. height: math.unit(17, "feet"),
  49912. default: true
  49913. },
  49914. ]
  49915. ))
  49916. characterMakers.push(() => makeCharacter(
  49917. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49918. {
  49919. front: {
  49920. height: math.unit(7 + 4/12, "feet"),
  49921. weight: math.unit(280, "lb"),
  49922. name: "Front",
  49923. image: {
  49924. source: "./media/characters/freki-yrmori/front.svg",
  49925. extra: 1286/1182,
  49926. bottom: 29/1315
  49927. }
  49928. },
  49929. maw: {
  49930. height: math.unit(0.9, "feet"),
  49931. name: "Maw",
  49932. image: {
  49933. source: "./media/characters/freki-yrmori/maw.svg"
  49934. }
  49935. },
  49936. },
  49937. [
  49938. {
  49939. name: "Normal",
  49940. height: math.unit(7 + 4/12, "feet"),
  49941. default: true
  49942. },
  49943. {
  49944. name: "Macro",
  49945. height: math.unit(38.5, "meters")
  49946. },
  49947. ]
  49948. ))
  49949. characterMakers.push(() => makeCharacter(
  49950. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49951. {
  49952. side: {
  49953. height: math.unit(47.2, "meters"),
  49954. weight: math.unit(10000, "tons"),
  49955. name: "Side",
  49956. image: {
  49957. source: "./media/characters/aetherios/side.svg",
  49958. extra: 2363/642,
  49959. bottom: 221/2584
  49960. }
  49961. },
  49962. top: {
  49963. height: math.unit(240, "meters"),
  49964. weight: math.unit(10000, "tons"),
  49965. name: "Top",
  49966. image: {
  49967. source: "./media/characters/aetherios/top.svg"
  49968. }
  49969. },
  49970. bottom: {
  49971. height: math.unit(240, "meters"),
  49972. weight: math.unit(10000, "tons"),
  49973. name: "Bottom",
  49974. image: {
  49975. source: "./media/characters/aetherios/bottom.svg"
  49976. }
  49977. },
  49978. head: {
  49979. height: math.unit(38.6, "meters"),
  49980. name: "Head",
  49981. image: {
  49982. source: "./media/characters/aetherios/head.svg",
  49983. extra: 1335/1112,
  49984. bottom: 0/1335
  49985. }
  49986. },
  49987. front: {
  49988. height: math.unit(29, "meters"),
  49989. name: "Front",
  49990. image: {
  49991. source: "./media/characters/aetherios/front.svg",
  49992. extra: 1266/953,
  49993. bottom: 158/1424
  49994. }
  49995. },
  49996. maw: {
  49997. height: math.unit(16.37, "meters"),
  49998. name: "Maw",
  49999. image: {
  50000. source: "./media/characters/aetherios/maw.svg",
  50001. extra: 748/637,
  50002. bottom: 0/748
  50003. },
  50004. extraAttributes: {
  50005. preyCapacity: {
  50006. name: "Capacity",
  50007. power: 3,
  50008. type: "volume",
  50009. base: math.unit(1000, "people")
  50010. },
  50011. tongueSize: {
  50012. name: "Tongue Size",
  50013. power: 2,
  50014. type: "area",
  50015. base: math.unit(21, "m^2")
  50016. }
  50017. }
  50018. },
  50019. forepaw: {
  50020. height: math.unit(18, "meters"),
  50021. name: "Forepaw",
  50022. image: {
  50023. source: "./media/characters/aetherios/forepaw.svg"
  50024. }
  50025. },
  50026. hindpaw: {
  50027. height: math.unit(23, "meters"),
  50028. name: "Hindpaw",
  50029. image: {
  50030. source: "./media/characters/aetherios/hindpaw.svg"
  50031. }
  50032. },
  50033. genitals: {
  50034. height: math.unit(42, "meters"),
  50035. name: "Genitals",
  50036. image: {
  50037. source: "./media/characters/aetherios/genitals.svg"
  50038. }
  50039. },
  50040. },
  50041. [
  50042. {
  50043. name: "Normal",
  50044. height: math.unit(47.2, "meters"),
  50045. default: true
  50046. },
  50047. {
  50048. name: "Macro",
  50049. height: math.unit(160, "meters")
  50050. },
  50051. {
  50052. name: "Mega",
  50053. height: math.unit(1.87, "km")
  50054. },
  50055. {
  50056. name: "Giga",
  50057. height: math.unit(40000, "km")
  50058. },
  50059. {
  50060. name: "Stellar",
  50061. height: math.unit(158000000, "km")
  50062. },
  50063. {
  50064. name: "Cosmic",
  50065. height: math.unit(9.46e12, "km")
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50071. {
  50072. front: {
  50073. height: math.unit(5 + 4/12, "feet"),
  50074. weight: math.unit(80, "lb"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/mizu-gieeg/front.svg",
  50078. extra: 850/709,
  50079. bottom: 52/902
  50080. }
  50081. },
  50082. back: {
  50083. height: math.unit(5 + 4/12, "feet"),
  50084. weight: math.unit(80, "lb"),
  50085. name: "Back",
  50086. image: {
  50087. source: "./media/characters/mizu-gieeg/back.svg",
  50088. extra: 882/745,
  50089. bottom: 25/907
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Normal",
  50096. height: math.unit(5 + 4/12, "feet"),
  50097. default: true
  50098. },
  50099. ]
  50100. ))
  50101. characterMakers.push(() => makeCharacter(
  50102. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50103. {
  50104. front: {
  50105. height: math.unit(6, "feet"),
  50106. name: "Front",
  50107. image: {
  50108. source: "./media/characters/roselle-st-papier/front.svg",
  50109. extra: 1430/1280,
  50110. bottom: 37/1467
  50111. }
  50112. },
  50113. back: {
  50114. height: math.unit(6, "feet"),
  50115. name: "Back",
  50116. image: {
  50117. source: "./media/characters/roselle-st-papier/back.svg",
  50118. extra: 1491/1296,
  50119. bottom: 23/1514
  50120. }
  50121. },
  50122. ear: {
  50123. height: math.unit(1.26, "feet"),
  50124. name: "Ear",
  50125. image: {
  50126. source: "./media/characters/roselle-st-papier/ear.svg"
  50127. }
  50128. },
  50129. },
  50130. [
  50131. {
  50132. name: "Normal",
  50133. height: math.unit(150, "feet"),
  50134. default: true
  50135. },
  50136. ]
  50137. ))
  50138. characterMakers.push(() => makeCharacter(
  50139. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50140. {
  50141. front: {
  50142. height: math.unit(1, "inches"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/valargent/front.svg",
  50146. extra: 1825/1694,
  50147. bottom: 62/1887
  50148. }
  50149. },
  50150. back: {
  50151. height: math.unit(1, "inches"),
  50152. name: "Back",
  50153. image: {
  50154. source: "./media/characters/valargent/back.svg",
  50155. extra: 1775/1682,
  50156. bottom: 88/1863
  50157. }
  50158. },
  50159. },
  50160. [
  50161. {
  50162. name: "Micro",
  50163. height: math.unit(1, "inch"),
  50164. default: true
  50165. },
  50166. ]
  50167. ))
  50168. characterMakers.push(() => makeCharacter(
  50169. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50170. {
  50171. front: {
  50172. height: math.unit(3.4, "meters"),
  50173. name: "Front",
  50174. image: {
  50175. source: "./media/characters/zarina/front.svg",
  50176. extra: 1733/1425,
  50177. bottom: 93/1826
  50178. }
  50179. },
  50180. squatting: {
  50181. height: math.unit(2.14, "meters"),
  50182. name: "Squatting",
  50183. image: {
  50184. source: "./media/characters/zarina/squatting.svg",
  50185. extra: 1073/788,
  50186. bottom: 63/1136
  50187. }
  50188. },
  50189. back: {
  50190. height: math.unit(2.14, "meters"),
  50191. name: "Back",
  50192. image: {
  50193. source: "./media/characters/zarina/back.svg",
  50194. extra: 1128/885,
  50195. bottom: 0/1128
  50196. }
  50197. },
  50198. },
  50199. [
  50200. {
  50201. name: "Normal",
  50202. height: math.unit(3.4, "meters"),
  50203. default: true
  50204. },
  50205. {
  50206. name: "Big",
  50207. height: math.unit(5, "meters")
  50208. },
  50209. {
  50210. name: "Macro",
  50211. height: math.unit(110, "meters")
  50212. },
  50213. ]
  50214. ))
  50215. characterMakers.push(() => makeCharacter(
  50216. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50217. {
  50218. front: {
  50219. height: math.unit(7, "feet"),
  50220. name: "Front",
  50221. image: {
  50222. source: "./media/characters/ventus-astro-fox/front.svg",
  50223. extra: 1792/1623,
  50224. bottom: 28/1820
  50225. }
  50226. },
  50227. back: {
  50228. height: math.unit(7, "feet"),
  50229. name: "Back",
  50230. image: {
  50231. source: "./media/characters/ventus-astro-fox/back.svg",
  50232. extra: 1789/1620,
  50233. bottom: 31/1820
  50234. }
  50235. },
  50236. outfit: {
  50237. height: math.unit(7, "feet"),
  50238. name: "Outfit",
  50239. image: {
  50240. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50241. extra: 1054/925,
  50242. bottom: 15/1069
  50243. }
  50244. },
  50245. head: {
  50246. height: math.unit(1.12, "feet"),
  50247. name: "Head",
  50248. image: {
  50249. source: "./media/characters/ventus-astro-fox/head.svg",
  50250. extra: 866/504,
  50251. bottom: 0/866
  50252. }
  50253. },
  50254. hand: {
  50255. height: math.unit(1, "feet"),
  50256. name: "Hand",
  50257. image: {
  50258. source: "./media/characters/ventus-astro-fox/hand.svg"
  50259. }
  50260. },
  50261. paw: {
  50262. height: math.unit(1.5, "feet"),
  50263. name: "Paw",
  50264. image: {
  50265. source: "./media/characters/ventus-astro-fox/paw.svg"
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Normal",
  50272. height: math.unit(7, "feet"),
  50273. default: true
  50274. },
  50275. {
  50276. name: "Macro",
  50277. height: math.unit(200, "feet")
  50278. },
  50279. {
  50280. name: "Cosmic",
  50281. height: math.unit(3, "universes")
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50287. {
  50288. front: {
  50289. height: math.unit(3, "meters"),
  50290. weight: math.unit(7000, "lb"),
  50291. name: "Front",
  50292. image: {
  50293. source: "./media/characters/core-t/front.svg",
  50294. extra: 5729/4941,
  50295. bottom: 1129/6858
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Big",
  50302. height: math.unit(3, "meters"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50309. {
  50310. normal: {
  50311. height: math.unit(6 + 6/12, "feet"),
  50312. weight: math.unit(275, "lb"),
  50313. name: "Front",
  50314. image: {
  50315. source: "./media/characters/cadbunny/normal.svg",
  50316. extra: 1129/947,
  50317. bottom: 93/1222
  50318. },
  50319. default: true,
  50320. form: "normal"
  50321. },
  50322. gigantamax: {
  50323. height: math.unit(26, "feet"),
  50324. weight: math.unit(16000, "lb"),
  50325. name: "Front",
  50326. image: {
  50327. source: "./media/characters/cadbunny/gigantamax.svg",
  50328. extra: 1133/944,
  50329. bottom: 90/1223
  50330. },
  50331. default: true,
  50332. form: "gigantamax"
  50333. },
  50334. },
  50335. [
  50336. {
  50337. name: "Normal",
  50338. height: math.unit(6 + 6/12, "feet"),
  50339. default: true,
  50340. form: "normal"
  50341. },
  50342. {
  50343. name: "Small",
  50344. height: math.unit(26, "feet"),
  50345. default: true,
  50346. form: "gigantamax"
  50347. },
  50348. {
  50349. name: "Large",
  50350. height: math.unit(78, "feet"),
  50351. form: "gigantamax"
  50352. },
  50353. ],
  50354. {
  50355. "normal": {
  50356. name: "Normal",
  50357. default: true
  50358. },
  50359. "gigantamax": {
  50360. name: "Gigantamax"
  50361. }
  50362. }
  50363. ))
  50364. characterMakers.push(() => makeCharacter(
  50365. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50366. {
  50367. anthroFront: {
  50368. height: math.unit(8, "feet"),
  50369. weight: math.unit(300, "lb"),
  50370. name: "Front",
  50371. image: {
  50372. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50373. extra: 1272/1176,
  50374. bottom: 53/1325
  50375. },
  50376. form: "anthro",
  50377. default: true
  50378. },
  50379. feralSide: {
  50380. height: math.unit(4, "feet"),
  50381. weight: math.unit(250, "lb"),
  50382. name: "Side",
  50383. image: {
  50384. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50385. extra: 731/621,
  50386. bottom: 0/731
  50387. },
  50388. form: "feral",
  50389. default: true
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Regular",
  50395. height: math.unit(8, "feet"),
  50396. form: "anthro"
  50397. },
  50398. {
  50399. name: "Macro",
  50400. height: math.unit(250, "feet"),
  50401. form: "anthro",
  50402. default: true
  50403. },
  50404. {
  50405. name: "Regular",
  50406. height: math.unit(4, "feet"),
  50407. form: "feral"
  50408. },
  50409. {
  50410. name: "Macro",
  50411. height: math.unit(125, "feet"),
  50412. form: "feral",
  50413. default: true
  50414. },
  50415. ],
  50416. {
  50417. "anthro": {
  50418. name: "Anthro",
  50419. default: true
  50420. },
  50421. "feral": {
  50422. name: "Feral",
  50423. },
  50424. }
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50428. {
  50429. front: {
  50430. height: math.unit(11 + 10/12, "feet"),
  50431. weight: math.unit(1587, "kg"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/maple-javira-dragon/front.svg",
  50435. extra: 1136/744,
  50436. bottom: 73/1209
  50437. }
  50438. },
  50439. side: {
  50440. height: math.unit(11 + 10/12, "feet"),
  50441. weight: math.unit(1587, "kg"),
  50442. name: "Side",
  50443. image: {
  50444. source: "./media/characters/maple-javira-dragon/side.svg",
  50445. extra: 712/505,
  50446. bottom: 17/729
  50447. }
  50448. },
  50449. head: {
  50450. height: math.unit(8.05, "feet"),
  50451. name: "Head",
  50452. image: {
  50453. source: "./media/characters/maple-javira-dragon/head.svg",
  50454. extra: 1420/1344,
  50455. bottom: 0/1420
  50456. }
  50457. },
  50458. },
  50459. [
  50460. {
  50461. name: "Normal",
  50462. height: math.unit(11 + 10/12, "feet"),
  50463. default: true
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(117, "cm"),
  50472. weight: math.unit(50, "kg"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/sonia-wyverntail/front.svg",
  50476. extra: 708/592,
  50477. bottom: 25/733
  50478. }
  50479. },
  50480. },
  50481. [
  50482. {
  50483. name: "Normal",
  50484. height: math.unit(117, "cm"),
  50485. default: true
  50486. },
  50487. ]
  50488. ))
  50489. characterMakers.push(() => makeCharacter(
  50490. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50491. {
  50492. front: {
  50493. height: math.unit(6 + 5/12, "feet"),
  50494. name: "Front",
  50495. image: {
  50496. source: "./media/characters/micah/front.svg",
  50497. extra: 1758/1546,
  50498. bottom: 214/1972
  50499. }
  50500. },
  50501. },
  50502. [
  50503. {
  50504. name: "Normal",
  50505. height: math.unit(6 + 5/12, "feet"),
  50506. default: true
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(5 + 10/12, "feet"),
  50515. weight: math.unit(220, "lb"),
  50516. name: "Front",
  50517. image: {
  50518. source: "./media/characters/zarya/front.svg",
  50519. extra: 593/572,
  50520. bottom: 50/643
  50521. }
  50522. },
  50523. back: {
  50524. height: math.unit(5 + 10/12, "feet"),
  50525. weight: math.unit(220, "lb"),
  50526. name: "Back",
  50527. image: {
  50528. source: "./media/characters/zarya/back.svg",
  50529. extra: 603/582,
  50530. bottom: 38/641
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(5 + 10/12, "feet"),
  50538. default: true
  50539. },
  50540. ]
  50541. ))
  50542. characterMakers.push(() => makeCharacter(
  50543. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50544. {
  50545. front: {
  50546. height: math.unit(7.5, "feet"),
  50547. name: "Front",
  50548. image: {
  50549. source: "./media/characters/sven-hatisson/front.svg",
  50550. extra: 917/857,
  50551. bottom: 42/959
  50552. }
  50553. },
  50554. back: {
  50555. height: math.unit(7.5, "feet"),
  50556. name: "Back",
  50557. image: {
  50558. source: "./media/characters/sven-hatisson/back.svg",
  50559. extra: 903/856,
  50560. bottom: 15/918
  50561. }
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Base Height",
  50567. height: math.unit(7.5, "feet")
  50568. },
  50569. {
  50570. name: "Usual Height",
  50571. height: math.unit(13.5, "feet"),
  50572. default: true
  50573. },
  50574. {
  50575. name: "Smaller Macro",
  50576. height: math.unit(85, "feet")
  50577. },
  50578. {
  50579. name: "Moderate Macro",
  50580. height: math.unit(320, "feet")
  50581. },
  50582. {
  50583. name: "Large Macro",
  50584. height: math.unit(1000, "feet")
  50585. },
  50586. {
  50587. name: "Largest Size",
  50588. height: math.unit(2, "miles")
  50589. },
  50590. ]
  50591. ))
  50592. characterMakers.push(() => makeCharacter(
  50593. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50594. {
  50595. side: {
  50596. height: math.unit(1.8, "meters"),
  50597. weight: math.unit(275, "kg"),
  50598. name: "Side",
  50599. image: {
  50600. source: "./media/characters/terra/side.svg",
  50601. extra: 1273/1147,
  50602. bottom: 0/1273
  50603. }
  50604. },
  50605. },
  50606. [
  50607. {
  50608. name: "Normal",
  50609. height: math.unit(16.2, "meters"),
  50610. default: true
  50611. },
  50612. ]
  50613. ))
  50614. characterMakers.push(() => makeCharacter(
  50615. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50616. {
  50617. borzoiFront: {
  50618. height: math.unit(6 + 9/12, "feet"),
  50619. name: "Front",
  50620. image: {
  50621. source: "./media/characters/rae/borzoi-front.svg",
  50622. extra: 1161/1098,
  50623. bottom: 31/1192
  50624. },
  50625. form: "borzoi",
  50626. default: true
  50627. },
  50628. werewolfFront: {
  50629. height: math.unit(8 + 7/12, "feet"),
  50630. name: "Front",
  50631. image: {
  50632. source: "./media/characters/rae/werewolf-front.svg",
  50633. extra: 1411/1334,
  50634. bottom: 127/1538
  50635. },
  50636. form: "werewolf",
  50637. default: true
  50638. },
  50639. },
  50640. [
  50641. {
  50642. name: "Normal",
  50643. height: math.unit(6 + 9/12, "feet"),
  50644. default: true,
  50645. form: "borzoi"
  50646. },
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(8 + 7/12, "feet"),
  50650. default: true,
  50651. form: "werewolf"
  50652. },
  50653. ],
  50654. {
  50655. "borzoi": {
  50656. name: "Borzoi",
  50657. default: true
  50658. },
  50659. "werewolf": {
  50660. name: "Werewolf",
  50661. },
  50662. }
  50663. ))
  50664. characterMakers.push(() => makeCharacter(
  50665. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50666. {
  50667. front: {
  50668. height: math.unit(8 + 7/12, "feet"),
  50669. weight: math.unit(482, "lb"),
  50670. name: "Front",
  50671. image: {
  50672. source: "./media/characters/kit/front.svg",
  50673. extra: 1247/1103,
  50674. bottom: 41/1288
  50675. }
  50676. },
  50677. back: {
  50678. height: math.unit(8 + 7/12, "feet"),
  50679. weight: math.unit(482, "lb"),
  50680. name: "Back",
  50681. image: {
  50682. source: "./media/characters/kit/back.svg",
  50683. extra: 1252/1123,
  50684. bottom: 21/1273
  50685. }
  50686. },
  50687. paw: {
  50688. height: math.unit(1.46, "feet"),
  50689. name: "Paw",
  50690. image: {
  50691. source: "./media/characters/kit/paw.svg"
  50692. }
  50693. },
  50694. },
  50695. [
  50696. {
  50697. name: "Normal",
  50698. height: math.unit(2.61, "meters"),
  50699. default: true
  50700. },
  50701. {
  50702. name: "\"Tall\"",
  50703. height: math.unit(8.21, "meters")
  50704. },
  50705. {
  50706. name: "Tall",
  50707. height: math.unit(19.6, "meters")
  50708. },
  50709. {
  50710. name: "Very Tall",
  50711. height: math.unit(57.91, "meters")
  50712. },
  50713. {
  50714. name: "Semi-Macro",
  50715. height: math.unit(138.64, "meters")
  50716. },
  50717. {
  50718. name: "Macro",
  50719. height: math.unit(831.99, "meters")
  50720. },
  50721. {
  50722. name: "EX-Macro",
  50723. height: math.unit(96451121, "meters")
  50724. },
  50725. {
  50726. name: "S1-Omnipotent",
  50727. height: math.unit(4.42074e+9, "meters")
  50728. },
  50729. {
  50730. name: "S2-Omnipotent",
  50731. height: math.unit(9.42074e+17, "meters")
  50732. },
  50733. {
  50734. name: "Omnipotent",
  50735. height: math.unit(4.23112e+24, "meters")
  50736. },
  50737. {
  50738. name: "Hypergod",
  50739. height: math.unit(5.05176e+27, "meters")
  50740. },
  50741. {
  50742. name: "Hypergod-EX",
  50743. height: math.unit(9.45532e+49, "meters")
  50744. },
  50745. {
  50746. name: "Hypergod-SP",
  50747. height: math.unit(9.45532e+195, "meters")
  50748. },
  50749. ]
  50750. ))
  50751. characterMakers.push(() => makeCharacter(
  50752. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50753. {
  50754. side: {
  50755. height: math.unit(0.6, "meters"),
  50756. weight: math.unit(24, "kg"),
  50757. name: "Side",
  50758. image: {
  50759. source: "./media/characters/celeste/side.svg",
  50760. extra: 810/517,
  50761. bottom: 53/863
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Velociraptor",
  50768. height: math.unit(0.6, "meters"),
  50769. default: true
  50770. },
  50771. {
  50772. name: "Utahraptor",
  50773. height: math.unit(1.8, "meters")
  50774. },
  50775. {
  50776. name: "Gallimimus",
  50777. height: math.unit(4.0, "meters")
  50778. },
  50779. {
  50780. name: "Large",
  50781. height: math.unit(20, "meters")
  50782. },
  50783. {
  50784. name: "Planetary",
  50785. height: math.unit(50, "megameters")
  50786. },
  50787. {
  50788. name: "Stellar",
  50789. height: math.unit(1.5, "gigameters")
  50790. },
  50791. {
  50792. name: "Galactic",
  50793. height: math.unit(100, "exameters")
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(6, "feet"),
  50802. weight: math.unit(210, "lb"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/glacia/front.svg",
  50806. extra: 958/901,
  50807. bottom: 45/1003
  50808. }
  50809. },
  50810. },
  50811. [
  50812. {
  50813. name: "Macro",
  50814. height: math.unit(1000, "meters"),
  50815. default: true
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50821. {
  50822. front: {
  50823. height: math.unit(4, "meters"),
  50824. name: "Front",
  50825. image: {
  50826. source: "./media/characters/giri/front.svg",
  50827. extra: 966/894,
  50828. bottom: 21/987
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(4, "meters"),
  50836. default: true
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50842. {
  50843. back: {
  50844. height: math.unit(4, "feet"),
  50845. weight: math.unit(37, "lb"),
  50846. name: "Back",
  50847. image: {
  50848. source: "./media/characters/tin/back.svg",
  50849. extra: 845/780,
  50850. bottom: 28/873
  50851. }
  50852. },
  50853. },
  50854. [
  50855. {
  50856. name: "Normal",
  50857. height: math.unit(4, "feet"),
  50858. default: true
  50859. },
  50860. ]
  50861. ))
  50862. characterMakers.push(() => makeCharacter(
  50863. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50864. {
  50865. front: {
  50866. height: math.unit(25, "feet"),
  50867. name: "Front",
  50868. image: {
  50869. source: "./media/characters/cadenza-vivace/front.svg",
  50870. extra: 1842/1578,
  50871. bottom: 30/1872
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Macro",
  50878. height: math.unit(25, "feet"),
  50879. default: true
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50885. {
  50886. front: {
  50887. height: math.unit(10, "feet"),
  50888. weight: math.unit(625, "kg"),
  50889. name: "Front",
  50890. image: {
  50891. source: "./media/characters/zain/front.svg",
  50892. extra: 1682/1498,
  50893. bottom: 223/1905
  50894. }
  50895. },
  50896. back: {
  50897. height: math.unit(10, "feet"),
  50898. weight: math.unit(625, "kg"),
  50899. name: "Back",
  50900. image: {
  50901. source: "./media/characters/zain/back.svg",
  50902. extra: 1814/1657,
  50903. bottom: 152/1966
  50904. }
  50905. },
  50906. head: {
  50907. height: math.unit(10, "feet"),
  50908. weight: math.unit(625, "kg"),
  50909. name: "Head",
  50910. image: {
  50911. source: "./media/characters/zain/head.svg",
  50912. extra: 1059/762,
  50913. bottom: 0/1059
  50914. }
  50915. },
  50916. },
  50917. [
  50918. {
  50919. name: "Normal",
  50920. height: math.unit(10, "feet"),
  50921. default: true
  50922. },
  50923. ]
  50924. ))
  50925. characterMakers.push(() => makeCharacter(
  50926. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50927. {
  50928. front: {
  50929. height: math.unit(6 + 5/12, "feet"),
  50930. weight: math.unit(750, "lb"),
  50931. name: "Front",
  50932. image: {
  50933. source: "./media/characters/ruchex/front.svg",
  50934. extra: 877/820,
  50935. bottom: 17/894
  50936. },
  50937. extraAttributes: {
  50938. "width": {
  50939. name: "Width",
  50940. power: 1,
  50941. type: "length",
  50942. base: math.unit(4.757, "feet")
  50943. },
  50944. }
  50945. },
  50946. },
  50947. [
  50948. {
  50949. name: "Normal",
  50950. height: math.unit(6 + 5/12, "feet"),
  50951. default: true
  50952. },
  50953. ]
  50954. ))
  50955. characterMakers.push(() => makeCharacter(
  50956. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50957. {
  50958. dressedFront: {
  50959. height: math.unit(191, "cm"),
  50960. weight: math.unit(80, "kg"),
  50961. name: "Front",
  50962. image: {
  50963. source: "./media/characters/buster/dressed-front.svg",
  50964. extra: 1022/973,
  50965. bottom: 69/1091
  50966. }
  50967. },
  50968. dressedBack: {
  50969. height: math.unit(191, "cm"),
  50970. weight: math.unit(80, "kg"),
  50971. name: "Back",
  50972. image: {
  50973. source: "./media/characters/buster/dressed-back.svg",
  50974. extra: 1018/970,
  50975. bottom: 55/1073
  50976. }
  50977. },
  50978. nudeFront: {
  50979. height: math.unit(191, "cm"),
  50980. weight: math.unit(80, "kg"),
  50981. name: "Front (Nude)",
  50982. image: {
  50983. source: "./media/characters/buster/nude-front.svg",
  50984. extra: 1022/973,
  50985. bottom: 69/1091
  50986. }
  50987. },
  50988. nudeBack: {
  50989. height: math.unit(191, "cm"),
  50990. weight: math.unit(80, "kg"),
  50991. name: "Back (Nude)",
  50992. image: {
  50993. source: "./media/characters/buster/nude-back.svg",
  50994. extra: 1018/970,
  50995. bottom: 55/1073
  50996. }
  50997. },
  50998. dick: {
  50999. height: math.unit(2.59, "feet"),
  51000. name: "Dick",
  51001. image: {
  51002. source: "./media/characters/buster/dick.svg"
  51003. }
  51004. },
  51005. ass: {
  51006. height: math.unit(1.2, "feet"),
  51007. name: "Ass",
  51008. image: {
  51009. source: "./media/characters/buster/ass.svg"
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(191, "cm"),
  51017. default: true
  51018. },
  51019. ]
  51020. ))
  51021. characterMakers.push(() => makeCharacter(
  51022. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51023. {
  51024. side: {
  51025. height: math.unit(8.1, "feet"),
  51026. weight: math.unit(3500, "lb"),
  51027. name: "Side",
  51028. image: {
  51029. source: "./media/characters/sonya/side.svg",
  51030. extra: 1730/1317,
  51031. bottom: 86/1816
  51032. }
  51033. },
  51034. },
  51035. [
  51036. {
  51037. name: "Normal",
  51038. height: math.unit(8.1, "feet"),
  51039. default: true
  51040. },
  51041. ]
  51042. ))
  51043. characterMakers.push(() => makeCharacter(
  51044. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51045. {
  51046. front: {
  51047. height: math.unit(6, "feet"),
  51048. weight: math.unit(150, "lb"),
  51049. name: "Front",
  51050. image: {
  51051. source: "./media/characters/cadence-andrysiak/front.svg",
  51052. extra: 1164/1121,
  51053. bottom: 60/1224
  51054. }
  51055. },
  51056. back: {
  51057. height: math.unit(6, "feet"),
  51058. weight: math.unit(150, "lb"),
  51059. name: "Back",
  51060. image: {
  51061. source: "./media/characters/cadence-andrysiak/back.svg",
  51062. extra: 1200/1165,
  51063. bottom: 9/1209
  51064. }
  51065. },
  51066. dressed: {
  51067. height: math.unit(6, "feet"),
  51068. weight: math.unit(150, "lb"),
  51069. name: "Dressed",
  51070. image: {
  51071. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51072. extra: 1164/1121,
  51073. bottom: 60/1224
  51074. }
  51075. },
  51076. },
  51077. [
  51078. {
  51079. name: "Micro",
  51080. height: math.unit(1, "mm")
  51081. },
  51082. {
  51083. name: "Normal",
  51084. height: math.unit(6, "feet"),
  51085. default: true
  51086. },
  51087. ]
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51091. {
  51092. front: {
  51093. height: math.unit(60, "inches"),
  51094. weight: math.unit(16, "lb"),
  51095. preyCapacity: math.unit(80, "liters"),
  51096. name: "Front",
  51097. image: {
  51098. source: "./media/characters/penny-lynx/front.svg",
  51099. extra: 1959/1769,
  51100. bottom: 49/2008
  51101. }
  51102. },
  51103. },
  51104. [
  51105. {
  51106. name: "Nokia",
  51107. height: math.unit(2, "inches")
  51108. },
  51109. {
  51110. name: "Desktop",
  51111. height: math.unit(24, "inches")
  51112. },
  51113. {
  51114. name: "TV",
  51115. height: math.unit(60, "inches")
  51116. },
  51117. {
  51118. name: "Jumbotron",
  51119. height: math.unit(12, "feet")
  51120. },
  51121. {
  51122. name: "Billboard",
  51123. height: math.unit(48, "feet"),
  51124. default: true
  51125. },
  51126. {
  51127. name: "IMAX",
  51128. height: math.unit(96, "feet")
  51129. },
  51130. {
  51131. name: "SINGULARITY",
  51132. height: math.unit(864938, "miles")
  51133. },
  51134. ]
  51135. ))
  51136. characterMakers.push(() => makeCharacter(
  51137. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51138. {
  51139. front: {
  51140. height: math.unit(5 + 4/12, "feet"),
  51141. weight: math.unit(230, "lb"),
  51142. name: "Front",
  51143. image: {
  51144. source: "./media/characters/sukebe/front.svg",
  51145. extra: 2130/2038,
  51146. bottom: 90/2220
  51147. }
  51148. },
  51149. back: {
  51150. height: math.unit(3.48, "feet"),
  51151. weight: math.unit(230, "lb"),
  51152. name: "Back",
  51153. image: {
  51154. source: "./media/characters/sukebe/back.svg",
  51155. extra: 1670/1604,
  51156. bottom: 0/1670
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(5 + 4/12, "feet"),
  51164. default: true
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51170. {
  51171. front: {
  51172. height: math.unit(6, "feet"),
  51173. name: "Front",
  51174. image: {
  51175. source: "./media/characters/nylla/front.svg",
  51176. extra: 1868/1699,
  51177. bottom: 97/1965
  51178. }
  51179. },
  51180. back: {
  51181. height: math.unit(6, "feet"),
  51182. name: "Back",
  51183. image: {
  51184. source: "./media/characters/nylla/back.svg",
  51185. extra: 1889/1712,
  51186. bottom: 93/1982
  51187. }
  51188. },
  51189. frontNsfw: {
  51190. height: math.unit(6, "feet"),
  51191. name: "Front (NSFW)",
  51192. image: {
  51193. source: "./media/characters/nylla/front-nsfw.svg",
  51194. extra: 1868/1699,
  51195. bottom: 97/1965
  51196. },
  51197. extraAttributes: {
  51198. "dickLength": {
  51199. name: "Dick Length",
  51200. power: 1,
  51201. type: "length",
  51202. base: math.unit(1.4, "feet")
  51203. },
  51204. "cumVolume": {
  51205. name: "Cum Volume",
  51206. power: 3,
  51207. type: "volume",
  51208. base: math.unit(100, "mL")
  51209. },
  51210. }
  51211. },
  51212. backNsfw: {
  51213. height: math.unit(6, "feet"),
  51214. name: "Back (NSFW)",
  51215. image: {
  51216. source: "./media/characters/nylla/back-nsfw.svg",
  51217. extra: 1889/1712,
  51218. bottom: 93/1982
  51219. }
  51220. },
  51221. maw: {
  51222. height: math.unit(2.10, "feet"),
  51223. name: "Maw",
  51224. image: {
  51225. source: "./media/characters/nylla/maw.svg"
  51226. }
  51227. },
  51228. paws: {
  51229. height: math.unit(2.06, "feet"),
  51230. name: "Paws",
  51231. image: {
  51232. source: "./media/characters/nylla/paws.svg"
  51233. }
  51234. },
  51235. muzzle: {
  51236. height: math.unit(0.61, "feet"),
  51237. name: "Muzzle",
  51238. image: {
  51239. source: "./media/characters/nylla/muzzle.svg"
  51240. }
  51241. },
  51242. sheath: {
  51243. height: math.unit(1.305, "feet"),
  51244. name: "Sheath",
  51245. image: {
  51246. source: "./media/characters/nylla/sheath.svg"
  51247. }
  51248. },
  51249. },
  51250. [
  51251. {
  51252. name: "Micro",
  51253. height: math.unit(7.5, "inches")
  51254. },
  51255. {
  51256. name: "Normal",
  51257. height: math.unit(7, "feet"),
  51258. default: true
  51259. },
  51260. {
  51261. name: "Macro",
  51262. height: math.unit(60, "feet")
  51263. },
  51264. {
  51265. name: "Mega",
  51266. height: math.unit(200, "feet")
  51267. },
  51268. ]
  51269. ))
  51270. characterMakers.push(() => makeCharacter(
  51271. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51272. {
  51273. front: {
  51274. height: math.unit(10, "feet"),
  51275. weight: math.unit(2300, "lb"),
  51276. name: "Front",
  51277. image: {
  51278. source: "./media/characters/hunt3r/front.svg",
  51279. extra: 1909/1742,
  51280. bottom: 46/1955
  51281. }
  51282. },
  51283. },
  51284. [
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(10, "feet"),
  51288. default: true
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51294. {
  51295. dressed: {
  51296. height: math.unit(11, "feet"),
  51297. weight: math.unit(18500, "lb"),
  51298. preyCapacity: math.unit(9, "people"),
  51299. name: "Dressed",
  51300. image: {
  51301. source: "./media/characters/cylphis/dressed.svg",
  51302. extra: 1028/1003,
  51303. bottom: 75/1103
  51304. },
  51305. },
  51306. undressed: {
  51307. height: math.unit(11, "feet"),
  51308. weight: math.unit(18500, "lb"),
  51309. preyCapacity: math.unit(9, "people"),
  51310. name: "Undressed",
  51311. image: {
  51312. source: "./media/characters/cylphis/undressed.svg",
  51313. extra: 1028/1003,
  51314. bottom: 75/1103
  51315. }
  51316. },
  51317. full: {
  51318. height: math.unit(11, "feet"),
  51319. weight: math.unit(18500 + 150*9, "lb"),
  51320. preyCapacity: math.unit(9, "people"),
  51321. name: "Full",
  51322. image: {
  51323. source: "./media/characters/cylphis/full.svg",
  51324. extra: 1028/1003,
  51325. bottom: 75/1103
  51326. }
  51327. },
  51328. },
  51329. [
  51330. {
  51331. name: "Small",
  51332. height: math.unit(8, "feet")
  51333. },
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(11, "feet"),
  51337. default: true
  51338. },
  51339. ]
  51340. ))
  51341. characterMakers.push(() => makeCharacter(
  51342. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51343. {
  51344. front: {
  51345. height: math.unit(2 + 7/12, "feet"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/orishan/front.svg",
  51349. extra: 1058/1023,
  51350. bottom: 23/1081
  51351. }
  51352. },
  51353. back: {
  51354. height: math.unit(2 + 7/12, "feet"),
  51355. name: "Back",
  51356. image: {
  51357. source: "./media/characters/orishan/back.svg",
  51358. extra: 1058/1023,
  51359. bottom: 23/1081
  51360. }
  51361. },
  51362. },
  51363. [
  51364. {
  51365. name: "Micro",
  51366. height: math.unit(2, "cm")
  51367. },
  51368. {
  51369. name: "Normal",
  51370. height: math.unit(2 + 7/12, "feet"),
  51371. default: true
  51372. },
  51373. ]
  51374. ))
  51375. characterMakers.push(() => makeCharacter(
  51376. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51377. {
  51378. front: {
  51379. height: math.unit(3, "meters"),
  51380. weight: math.unit(508, "kg"),
  51381. name: "Front",
  51382. image: {
  51383. source: "./media/characters/seranis/front.svg",
  51384. extra: 1478/1454,
  51385. bottom: 41/1519
  51386. }
  51387. },
  51388. },
  51389. [
  51390. {
  51391. name: "Normal",
  51392. height: math.unit(3, "meters"),
  51393. default: true
  51394. },
  51395. {
  51396. name: "Macro",
  51397. height: math.unit(108, "meters")
  51398. },
  51399. {
  51400. name: "Megamacro",
  51401. height: math.unit(1250, "meters")
  51402. },
  51403. ]
  51404. ))
  51405. characterMakers.push(() => makeCharacter(
  51406. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51407. {
  51408. undressed: {
  51409. height: math.unit(5 + 3/12, "feet"),
  51410. name: "Undressed",
  51411. image: {
  51412. source: "./media/characters/ankou/undressed.svg",
  51413. extra: 1301/1213,
  51414. bottom: 87/1388
  51415. }
  51416. },
  51417. dressed: {
  51418. height: math.unit(5 + 3/12, "feet"),
  51419. name: "Dressed",
  51420. image: {
  51421. source: "./media/characters/ankou/dressed.svg",
  51422. extra: 1301/1213,
  51423. bottom: 87/1388
  51424. }
  51425. },
  51426. head: {
  51427. height: math.unit(1.61, "feet"),
  51428. name: "Head",
  51429. image: {
  51430. source: "./media/characters/ankou/head.svg"
  51431. }
  51432. },
  51433. },
  51434. [
  51435. {
  51436. name: "Normal",
  51437. height: math.unit(5 + 3/12, "feet"),
  51438. default: true
  51439. },
  51440. ]
  51441. ))
  51442. characterMakers.push(() => makeCharacter(
  51443. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51444. {
  51445. side: {
  51446. height: math.unit(6 + 3/12, "feet"),
  51447. weight: math.unit(200, "kg"),
  51448. name: "Side",
  51449. image: {
  51450. source: "./media/characters/juniper-skunktaur/side.svg",
  51451. extra: 1574/1229,
  51452. bottom: 38/1612
  51453. }
  51454. },
  51455. front: {
  51456. height: math.unit(6 + 3/12, "feet"),
  51457. weight: math.unit(200, "kg"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/juniper-skunktaur/front.svg",
  51461. extra: 1337/1278,
  51462. bottom: 22/1359
  51463. }
  51464. },
  51465. back: {
  51466. height: math.unit(6 + 3/12, "feet"),
  51467. weight: math.unit(200, "kg"),
  51468. name: "Back",
  51469. image: {
  51470. source: "./media/characters/juniper-skunktaur/back.svg",
  51471. extra: 1618/1273,
  51472. bottom: 13/1631
  51473. }
  51474. },
  51475. top: {
  51476. height: math.unit(2.62, "feet"),
  51477. weight: math.unit(200, "kg"),
  51478. name: "Top",
  51479. image: {
  51480. source: "./media/characters/juniper-skunktaur/top.svg"
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Normal",
  51487. height: math.unit(6 + 3/12, "feet"),
  51488. default: true
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51494. {
  51495. front: {
  51496. height: math.unit(20.5, "feet"),
  51497. name: "Front",
  51498. image: {
  51499. source: "./media/characters/rei/front.svg",
  51500. extra: 1349/1195,
  51501. bottom: 31/1380
  51502. }
  51503. },
  51504. back: {
  51505. height: math.unit(20.5, "feet"),
  51506. name: "Back",
  51507. image: {
  51508. source: "./media/characters/rei/back.svg",
  51509. extra: 1358/1204,
  51510. bottom: 22/1380
  51511. }
  51512. },
  51513. pawsDigi: {
  51514. height: math.unit(3.45, "feet"),
  51515. name: "Paws (Digi)",
  51516. image: {
  51517. source: "./media/characters/rei/paws-digi.svg"
  51518. }
  51519. },
  51520. pawsPlanti: {
  51521. height: math.unit(3.45, "feet"),
  51522. name: "Paws (Planti)",
  51523. image: {
  51524. source: "./media/characters/rei/paws-planti.svg"
  51525. }
  51526. },
  51527. },
  51528. [
  51529. {
  51530. name: "Normal",
  51531. height: math.unit(20.5, "feet"),
  51532. default: true
  51533. },
  51534. ]
  51535. ))
  51536. characterMakers.push(() => makeCharacter(
  51537. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51538. {
  51539. front: {
  51540. height: math.unit(5 + 11/12, "feet"),
  51541. name: "Front",
  51542. image: {
  51543. source: "./media/characters/carina/front.svg",
  51544. extra: 1720/1449,
  51545. bottom: 14/1734
  51546. }
  51547. },
  51548. back: {
  51549. height: math.unit(5 + 11/12, "feet"),
  51550. name: "Back",
  51551. image: {
  51552. source: "./media/characters/carina/back.svg",
  51553. extra: 1493/1445,
  51554. bottom: 17/1510
  51555. }
  51556. },
  51557. paw: {
  51558. height: math.unit(0.92, "feet"),
  51559. name: "Paw",
  51560. image: {
  51561. source: "./media/characters/carina/paw.svg"
  51562. }
  51563. },
  51564. },
  51565. [
  51566. {
  51567. name: "Normal",
  51568. height: math.unit(5 + 11/12, "feet"),
  51569. default: true
  51570. },
  51571. ]
  51572. ))
  51573. characterMakers.push(() => makeCharacter(
  51574. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51575. {
  51576. front: {
  51577. height: math.unit(4.88, "meters"),
  51578. name: "Front",
  51579. image: {
  51580. source: "./media/characters/maya/front.svg",
  51581. extra: 1222/1145,
  51582. bottom: 57/1279
  51583. }
  51584. },
  51585. },
  51586. [
  51587. {
  51588. name: "Normal",
  51589. height: math.unit(4.88, "meters"),
  51590. default: true
  51591. },
  51592. {
  51593. name: "Macro",
  51594. height: math.unit(38.1, "meters")
  51595. },
  51596. {
  51597. name: "Macro+",
  51598. height: math.unit(152.4, "meters")
  51599. },
  51600. {
  51601. name: "Macro++",
  51602. height: math.unit(16.09, "km")
  51603. },
  51604. {
  51605. name: "Mega-macro",
  51606. height: math.unit(700, "megameters")
  51607. },
  51608. ]
  51609. ))
  51610. characterMakers.push(() => makeCharacter(
  51611. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51612. {
  51613. front: {
  51614. height: math.unit(6 + 2/12, "feet"),
  51615. weight: math.unit(500, "lb"),
  51616. preyCapacity: math.unit(4, "people"),
  51617. name: "Front",
  51618. image: {
  51619. source: "./media/characters/yepir/front.svg"
  51620. }
  51621. },
  51622. side: {
  51623. height: math.unit(6 + 2/12, "feet"),
  51624. weight: math.unit(500, "lb"),
  51625. preyCapacity: math.unit(4, "people"),
  51626. name: "Side",
  51627. image: {
  51628. source: "./media/characters/yepir/side.svg"
  51629. }
  51630. },
  51631. paw: {
  51632. height: math.unit(1.05, "feet"),
  51633. name: "Paw",
  51634. image: {
  51635. source: "./media/characters/yepir/paw.svg"
  51636. }
  51637. },
  51638. },
  51639. [
  51640. {
  51641. name: "Normal",
  51642. height: math.unit(6 + 2/12, "feet"),
  51643. default: true
  51644. },
  51645. ]
  51646. ))
  51647. characterMakers.push(() => makeCharacter(
  51648. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51649. {
  51650. front: {
  51651. height: math.unit(5 + 4/12, "feet"),
  51652. name: "Front",
  51653. image: {
  51654. source: "./media/characters/russec/front.svg",
  51655. extra: 1926/1626,
  51656. bottom: 72/1998
  51657. }
  51658. },
  51659. back: {
  51660. height: math.unit(5 + 4/12, "feet"),
  51661. name: "Back",
  51662. image: {
  51663. source: "./media/characters/russec/back.svg",
  51664. extra: 1910/1591,
  51665. bottom: 48/1958
  51666. }
  51667. },
  51668. },
  51669. [
  51670. {
  51671. name: "Small",
  51672. height: math.unit(5 + 4/12, "feet")
  51673. },
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(72, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51683. {
  51684. side: {
  51685. height: math.unit(12, "feet"),
  51686. name: "Side",
  51687. image: {
  51688. source: "./media/characters/cianus/side.svg",
  51689. extra: 808/526,
  51690. bottom: 61/869
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Normal",
  51697. height: math.unit(12, "feet"),
  51698. default: true
  51699. },
  51700. ]
  51701. ))
  51702. characterMakers.push(() => makeCharacter(
  51703. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51704. {
  51705. front: {
  51706. height: math.unit(9 + 6/12, "feet"),
  51707. weight: math.unit(300, "lb"),
  51708. name: "Front",
  51709. image: {
  51710. source: "./media/characters/ahab/front.svg",
  51711. extra: 1897/1868,
  51712. bottom: 121/2018
  51713. }
  51714. },
  51715. frontNsfw: {
  51716. height: math.unit(9 + 6/12, "feet"),
  51717. weight: math.unit(300, "lb"),
  51718. name: "Front-nsfw",
  51719. image: {
  51720. source: "./media/characters/ahab/front-nsfw.svg",
  51721. extra: 1897/1868,
  51722. bottom: 121/2018
  51723. }
  51724. },
  51725. },
  51726. [
  51727. {
  51728. name: "Normal",
  51729. height: math.unit(9 + 6/12, "feet")
  51730. },
  51731. {
  51732. name: "Macro",
  51733. height: math.unit(657, "feet"),
  51734. default: true
  51735. },
  51736. ]
  51737. ))
  51738. characterMakers.push(() => makeCharacter(
  51739. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51740. {
  51741. front: {
  51742. height: math.unit(2.69, "meters"),
  51743. weight: math.unit(132, "kg"),
  51744. name: "Front",
  51745. image: {
  51746. source: "./media/characters/aarkus/front.svg",
  51747. extra: 1400/1231,
  51748. bottom: 34/1434
  51749. }
  51750. },
  51751. back: {
  51752. height: math.unit(2.69, "meters"),
  51753. weight: math.unit(132, "kg"),
  51754. name: "Back",
  51755. image: {
  51756. source: "./media/characters/aarkus/back.svg",
  51757. extra: 1381/1218,
  51758. bottom: 30/1411
  51759. }
  51760. },
  51761. frontNsfw: {
  51762. height: math.unit(2.69, "meters"),
  51763. weight: math.unit(132, "kg"),
  51764. name: "Front (NSFW)",
  51765. image: {
  51766. source: "./media/characters/aarkus/front-nsfw.svg",
  51767. extra: 1400/1231,
  51768. bottom: 34/1434
  51769. }
  51770. },
  51771. foot: {
  51772. height: math.unit(1.45, "feet"),
  51773. name: "Foot",
  51774. image: {
  51775. source: "./media/characters/aarkus/foot.svg"
  51776. }
  51777. },
  51778. head: {
  51779. height: math.unit(2.85, "feet"),
  51780. name: "Head",
  51781. image: {
  51782. source: "./media/characters/aarkus/head.svg"
  51783. }
  51784. },
  51785. headAlt: {
  51786. height: math.unit(3.07, "feet"),
  51787. name: "Head (Alt)",
  51788. image: {
  51789. source: "./media/characters/aarkus/head-alt.svg"
  51790. }
  51791. },
  51792. mouth: {
  51793. height: math.unit(1.25, "feet"),
  51794. name: "Mouth",
  51795. image: {
  51796. source: "./media/characters/aarkus/mouth.svg"
  51797. }
  51798. },
  51799. dick: {
  51800. height: math.unit(1.77, "feet"),
  51801. name: "Dick",
  51802. image: {
  51803. source: "./media/characters/aarkus/dick.svg"
  51804. }
  51805. },
  51806. },
  51807. [
  51808. {
  51809. name: "Normal",
  51810. height: math.unit(2.69, "meters"),
  51811. default: true
  51812. },
  51813. {
  51814. name: "Macro",
  51815. height: math.unit(269, "meters")
  51816. },
  51817. {
  51818. name: "Macro+",
  51819. height: math.unit(672.5, "meters")
  51820. },
  51821. {
  51822. name: "Megamacro",
  51823. height: math.unit(2.017, "km")
  51824. },
  51825. ]
  51826. ))
  51827. characterMakers.push(() => makeCharacter(
  51828. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51829. {
  51830. front: {
  51831. height: math.unit(23.47, "cm"),
  51832. weight: math.unit(600, "grams"),
  51833. name: "Front",
  51834. image: {
  51835. source: "./media/characters/diode/front.svg",
  51836. extra: 1778/1396,
  51837. bottom: 95/1873
  51838. }
  51839. },
  51840. side: {
  51841. height: math.unit(23.47, "cm"),
  51842. weight: math.unit(600, "grams"),
  51843. name: "Side",
  51844. image: {
  51845. source: "./media/characters/diode/side.svg",
  51846. extra: 1831/1404,
  51847. bottom: 86/1917
  51848. }
  51849. },
  51850. wings: {
  51851. height: math.unit(0.683, "feet"),
  51852. name: "Wings",
  51853. image: {
  51854. source: "./media/characters/diode/wings.svg"
  51855. }
  51856. },
  51857. },
  51858. [
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(23.47, "cm"),
  51862. default: true
  51863. },
  51864. ]
  51865. ))
  51866. characterMakers.push(() => makeCharacter(
  51867. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51868. {
  51869. front: {
  51870. height: math.unit(6 + 3/12, "feet"),
  51871. weight: math.unit(250, "lb"),
  51872. name: "Front",
  51873. image: {
  51874. source: "./media/characters/reika/front.svg",
  51875. extra: 1120/1078,
  51876. bottom: 86/1206
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Normal",
  51883. height: math.unit(6 + 3/12, "feet"),
  51884. default: true
  51885. },
  51886. ]
  51887. ))
  51888. characterMakers.push(() => makeCharacter(
  51889. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51890. {
  51891. front: {
  51892. height: math.unit(16 + 8/12, "feet"),
  51893. weight: math.unit(9000, "lb"),
  51894. name: "Front",
  51895. image: {
  51896. source: "./media/characters/lokuto-takama/front.svg",
  51897. extra: 1774/1632,
  51898. bottom: 147/1921
  51899. },
  51900. extraAttributes: {
  51901. "bustWidth": {
  51902. name: "Bust Width",
  51903. power: 1,
  51904. type: "length",
  51905. base: math.unit(2.4, "meters")
  51906. },
  51907. "breastWeight": {
  51908. name: "Breast Weight",
  51909. power: 3,
  51910. type: "mass",
  51911. base: math.unit(1000, "kg")
  51912. },
  51913. }
  51914. },
  51915. },
  51916. [
  51917. {
  51918. name: "Normal",
  51919. height: math.unit(16 + 8/12, "feet"),
  51920. default: true
  51921. },
  51922. ]
  51923. ))
  51924. characterMakers.push(() => makeCharacter(
  51925. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51926. {
  51927. front: {
  51928. height: math.unit(10, "cm"),
  51929. weight: math.unit(850, "grams"),
  51930. name: "Front",
  51931. image: {
  51932. source: "./media/characters/owak-bone/front.svg",
  51933. extra: 1965/1801,
  51934. bottom: 31/1996
  51935. }
  51936. },
  51937. },
  51938. [
  51939. {
  51940. name: "Normal",
  51941. height: math.unit(10, "cm"),
  51942. default: true
  51943. },
  51944. ]
  51945. ))
  51946. characterMakers.push(() => makeCharacter(
  51947. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51948. {
  51949. front: {
  51950. height: math.unit(2 + 6/12, "feet"),
  51951. weight: math.unit(9, "lb"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/muffin/front.svg",
  51955. extra: 1220/1195,
  51956. bottom: 84/1304
  51957. }
  51958. },
  51959. },
  51960. [
  51961. {
  51962. name: "Normal",
  51963. height: math.unit(2 + 6/12, "feet"),
  51964. default: true
  51965. },
  51966. ]
  51967. ))
  51968. characterMakers.push(() => makeCharacter(
  51969. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  51970. {
  51971. front: {
  51972. height: math.unit(7, "feet"),
  51973. name: "Front",
  51974. image: {
  51975. source: "./media/characters/chimera/front.svg",
  51976. extra: 1752/1614,
  51977. bottom: 68/1820
  51978. }
  51979. },
  51980. },
  51981. [
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(7, "feet")
  51985. },
  51986. {
  51987. name: "Gigamacro",
  51988. height: math.unit(2.9, "gigameters"),
  51989. default: true
  51990. },
  51991. {
  51992. name: "Universal",
  51993. height: math.unit(1.56e26, "yottameters")
  51994. },
  51995. ]
  51996. ))
  51997. characterMakers.push(() => makeCharacter(
  51998. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  51999. {
  52000. front: {
  52001. height: math.unit(3, "feet"),
  52002. weight: math.unit(20, "lb"),
  52003. name: "Front",
  52004. image: {
  52005. source: "./media/characters/kit-fennec-fox/front.svg",
  52006. extra: 1027/932,
  52007. bottom: 16/1043
  52008. }
  52009. },
  52010. back: {
  52011. height: math.unit(3, "feet"),
  52012. weight: math.unit(20, "lb"),
  52013. name: "Back",
  52014. image: {
  52015. source: "./media/characters/kit-fennec-fox/back.svg",
  52016. extra: 1027/932,
  52017. bottom: 16/1043
  52018. }
  52019. },
  52020. },
  52021. [
  52022. {
  52023. name: "Normal",
  52024. height: math.unit(3, "feet"),
  52025. default: true
  52026. },
  52027. ]
  52028. ))
  52029. characterMakers.push(() => makeCharacter(
  52030. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52031. {
  52032. front: {
  52033. height: math.unit(167, "cm"),
  52034. name: "Front",
  52035. image: {
  52036. source: "./media/characters/blue-otter/front.svg",
  52037. extra: 1951/1920,
  52038. bottom: 31/1982
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Otter-Sized",
  52045. height: math.unit(100, "cm")
  52046. },
  52047. {
  52048. name: "Normal",
  52049. height: math.unit(167, "cm"),
  52050. default: true
  52051. },
  52052. ]
  52053. ))
  52054. characterMakers.push(() => makeCharacter(
  52055. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52056. {
  52057. front: {
  52058. height: math.unit(4 + 4/12, "feet"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52062. extra: 1072/1067,
  52063. bottom: 117/1189
  52064. }
  52065. },
  52066. back: {
  52067. height: math.unit(4 + 4/12, "feet"),
  52068. name: "Back",
  52069. image: {
  52070. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52071. extra: 1135/1129,
  52072. bottom: 57/1192
  52073. }
  52074. },
  52075. head: {
  52076. height: math.unit(1.77, "feet"),
  52077. name: "Head",
  52078. image: {
  52079. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52080. }
  52081. },
  52082. },
  52083. [
  52084. {
  52085. name: "Normal",
  52086. height: math.unit(4 + 4/12, "feet"),
  52087. default: true
  52088. },
  52089. ]
  52090. ))
  52091. characterMakers.push(() => makeCharacter(
  52092. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52093. {
  52094. front: {
  52095. height: math.unit(2, "inches"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/carley-hartford/front.svg",
  52099. extra: 1035/988,
  52100. bottom: 23/1058
  52101. }
  52102. },
  52103. back: {
  52104. height: math.unit(2, "inches"),
  52105. name: "Back",
  52106. image: {
  52107. source: "./media/characters/carley-hartford/back.svg",
  52108. extra: 1035/988,
  52109. bottom: 23/1058
  52110. }
  52111. },
  52112. dressed: {
  52113. height: math.unit(2, "inches"),
  52114. name: "Dressed",
  52115. image: {
  52116. source: "./media/characters/carley-hartford/dressed.svg",
  52117. extra: 651/620,
  52118. bottom: 0/651
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Micro",
  52125. height: math.unit(2, "inches"),
  52126. default: true
  52127. },
  52128. {
  52129. name: "Macro",
  52130. height: math.unit(6 + 3/12, "feet")
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52136. {
  52137. front: {
  52138. height: math.unit(2 + 3/12, "feet"),
  52139. weight: math.unit(15 + 7/16, "lb"),
  52140. name: "Front",
  52141. image: {
  52142. source: "./media/characters/duke/front.svg",
  52143. extra: 910/815,
  52144. bottom: 30/940
  52145. }
  52146. },
  52147. },
  52148. [
  52149. {
  52150. name: "Normal",
  52151. height: math.unit(2 + 3/12, "feet"),
  52152. default: true
  52153. },
  52154. ]
  52155. ))
  52156. characterMakers.push(() => makeCharacter(
  52157. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52158. {
  52159. front: {
  52160. height: math.unit(5 + 4/12, "feet"),
  52161. weight: math.unit(156, "lb"),
  52162. name: "Front",
  52163. image: {
  52164. source: "./media/characters/dein/front.svg",
  52165. extra: 855/815,
  52166. bottom: 48/903
  52167. }
  52168. },
  52169. side: {
  52170. height: math.unit(5 + 4/12, "feet"),
  52171. weight: math.unit(156, "lb"),
  52172. name: "side",
  52173. image: {
  52174. source: "./media/characters/dein/side.svg",
  52175. extra: 846/803,
  52176. bottom: 25/871
  52177. }
  52178. },
  52179. maw: {
  52180. height: math.unit(1.45, "feet"),
  52181. name: "Maw",
  52182. image: {
  52183. source: "./media/characters/dein/maw.svg"
  52184. }
  52185. },
  52186. },
  52187. [
  52188. {
  52189. name: "Ferret Sized",
  52190. height: math.unit(2 + 5/12, "feet")
  52191. },
  52192. {
  52193. name: "Normal",
  52194. height: math.unit(5 + 4/12, "feet"),
  52195. default: true
  52196. },
  52197. ]
  52198. ))
  52199. characterMakers.push(() => makeCharacter(
  52200. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52201. {
  52202. front: {
  52203. height: math.unit(84 + 8/12, "feet"),
  52204. weight: math.unit(942180, "lb"),
  52205. name: "Front",
  52206. image: {
  52207. source: "./media/characters/daurine-arima/front.svg",
  52208. extra: 1989/1782,
  52209. bottom: 37/2026
  52210. }
  52211. },
  52212. side: {
  52213. height: math.unit(84 + 8/12, "feet"),
  52214. weight: math.unit(942180, "lb"),
  52215. name: "Side",
  52216. image: {
  52217. source: "./media/characters/daurine-arima/side.svg",
  52218. extra: 1997/1790,
  52219. bottom: 21/2018
  52220. }
  52221. },
  52222. back: {
  52223. height: math.unit(84 + 8/12, "feet"),
  52224. weight: math.unit(942180, "lb"),
  52225. name: "Back",
  52226. image: {
  52227. source: "./media/characters/daurine-arima/back.svg",
  52228. extra: 1992/1800,
  52229. bottom: 12/2004
  52230. }
  52231. },
  52232. head: {
  52233. height: math.unit(15.5, "feet"),
  52234. name: "Head",
  52235. image: {
  52236. source: "./media/characters/daurine-arima/head.svg"
  52237. }
  52238. },
  52239. headAlt: {
  52240. height: math.unit(19.19, "feet"),
  52241. name: "Head (Alt)",
  52242. image: {
  52243. source: "./media/characters/daurine-arima/head-alt.svg"
  52244. }
  52245. },
  52246. },
  52247. [
  52248. {
  52249. name: "Minimum height",
  52250. height: math.unit(8 + 10/12, "feet")
  52251. },
  52252. {
  52253. name: "Comfort height",
  52254. height: math.unit(19 + 6 /12, "feet")
  52255. },
  52256. {
  52257. name: "\"Normal\" height",
  52258. height: math.unit(28 + 10/12, "feet")
  52259. },
  52260. {
  52261. name: "Base height",
  52262. height: math.unit(84 + 8/12, "feet"),
  52263. default: true
  52264. },
  52265. {
  52266. name: "Mini-macro",
  52267. height: math.unit(2360, "feet")
  52268. },
  52269. {
  52270. name: "Macro",
  52271. height: math.unit(10, "miles")
  52272. },
  52273. {
  52274. name: "Goddess",
  52275. height: math.unit(9.99e40, "yottameters")
  52276. },
  52277. ]
  52278. ))
  52279. characterMakers.push(() => makeCharacter(
  52280. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52281. {
  52282. front: {
  52283. height: math.unit(2.3, "meters"),
  52284. name: "Front",
  52285. image: {
  52286. source: "./media/characters/cilenomon/front.svg",
  52287. extra: 1963/1778,
  52288. bottom: 54/2017
  52289. }
  52290. },
  52291. },
  52292. [
  52293. {
  52294. name: "Normal",
  52295. height: math.unit(2.3, "meters"),
  52296. default: true
  52297. },
  52298. {
  52299. name: "Big",
  52300. height: math.unit(5, "meters")
  52301. },
  52302. {
  52303. name: "Macro",
  52304. height: math.unit(30, "meters")
  52305. },
  52306. {
  52307. name: "True",
  52308. height: math.unit(1, "universe")
  52309. },
  52310. ]
  52311. ))
  52312. characterMakers.push(() => makeCharacter(
  52313. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52314. {
  52315. front: {
  52316. height: math.unit(5, "feet"),
  52317. name: "Front",
  52318. image: {
  52319. source: "./media/characters/sen-mink/front.svg",
  52320. extra: 1727/1675,
  52321. bottom: 35/1762
  52322. }
  52323. },
  52324. },
  52325. [
  52326. {
  52327. name: "Normal",
  52328. height: math.unit(5, "feet"),
  52329. default: true
  52330. },
  52331. ]
  52332. ))
  52333. //characters
  52334. function makeCharacters() {
  52335. const results = [];
  52336. characterMakers.forEach(character => {
  52337. results.push(character());
  52338. });
  52339. return results;
  52340. }