less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

50939 строки
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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. }
  1959. //species
  1960. function getSpeciesInfo(speciesList) {
  1961. let result = new Set();
  1962. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1963. result.add(entry)
  1964. });
  1965. return Array.from(result);
  1966. };
  1967. function getSpeciesInfoHelper(species) {
  1968. if (!speciesData[species]) {
  1969. console.warn(species + " doesn't exist");
  1970. return [];
  1971. }
  1972. if (speciesData[species].parents) {
  1973. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1974. } else {
  1975. return [species];
  1976. }
  1977. }
  1978. characterMakers.push(() => makeCharacter(
  1979. {
  1980. name: "Fen",
  1981. species: ["crux"],
  1982. description: {
  1983. title: "Bio",
  1984. text: "Very furry. Sheds on everything."
  1985. },
  1986. tags: [
  1987. "anthro",
  1988. "goo"
  1989. ]
  1990. },
  1991. {
  1992. front: {
  1993. height: math.unit(12, "feet"),
  1994. weight: math.unit(2400, "lb"),
  1995. name: "Front",
  1996. image: {
  1997. source: "./media/characters/fen/front.svg",
  1998. extra: 1804/1562,
  1999. bottom: 205/2009
  2000. }
  2001. },
  2002. diving: {
  2003. height: math.unit(4.9, "meters"),
  2004. weight: math.unit(2400, "lb"),
  2005. name: "Diving",
  2006. image: {
  2007. source: "./media/characters/fen/diving.svg"
  2008. }
  2009. },
  2010. goo: {
  2011. height: math.unit(12, "feet"),
  2012. weight: math.unit(3600, "lb"),
  2013. volume: math.unit(1000, "liters"),
  2014. capacity: math.unit(6, "people"),
  2015. name: "Goo",
  2016. image: {
  2017. source: "./media/characters/fen/goo.svg",
  2018. extra: 1307/1071,
  2019. bottom: 134/1441
  2020. }
  2021. },
  2022. maw: {
  2023. height: math.unit(5.03, "feet"),
  2024. name: "Maw",
  2025. image: {
  2026. source: "./media/characters/fen/maw.svg"
  2027. }
  2028. },
  2029. gooCeiling: {
  2030. height: math.unit(6.6, "feet"),
  2031. weight: math.unit(3000, "lb"),
  2032. volume: math.unit(1000, "liters"),
  2033. capacity: math.unit(6, "people"),
  2034. name: "Goo (Ceiling)",
  2035. image: {
  2036. source: "./media/characters/fen/goo-ceiling.svg"
  2037. }
  2038. },
  2039. back: {
  2040. height: math.unit(12, "feet"),
  2041. weight: math.unit(2400, "lb"),
  2042. name: "Back",
  2043. image: {
  2044. source: "./media/characters/fen/back.svg",
  2045. },
  2046. info: {
  2047. description: {
  2048. mode: "append",
  2049. text: "\n\nHe is not currently looking at you."
  2050. }
  2051. }
  2052. },
  2053. full: {
  2054. height: math.unit(1.85, "meter"),
  2055. weight: math.unit(3200, "lb"),
  2056. name: "Full",
  2057. image: {
  2058. source: "./media/characters/fen/full.svg",
  2059. extra: 1133/859,
  2060. bottom: 145/1278
  2061. },
  2062. info: {
  2063. description: {
  2064. mode: "append",
  2065. text: "\n\nMunch."
  2066. }
  2067. }
  2068. },
  2069. gooLounging: {
  2070. height: math.unit(4.53, "feet"),
  2071. weight: math.unit(3000, "lb"),
  2072. capacity: math.unit(6, "people"),
  2073. name: "Goo (Lounging)",
  2074. image: {
  2075. source: "./media/characters/fen/goo-lounging.svg",
  2076. bottom: 116 / 613
  2077. }
  2078. },
  2079. lounging: {
  2080. height: math.unit(10.52, "feet"),
  2081. weight: math.unit(2400, "lb"),
  2082. name: "Lounging",
  2083. image: {
  2084. source: "./media/characters/fen/lounging.svg"
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Small",
  2091. height: math.unit(2.2428, "meter")
  2092. },
  2093. {
  2094. name: "Normal",
  2095. height: math.unit(12, "feet"),
  2096. default: true,
  2097. },
  2098. {
  2099. name: "Big",
  2100. height: math.unit(20, "feet")
  2101. },
  2102. {
  2103. name: "Minimacro",
  2104. height: math.unit(40, "feet"),
  2105. info: {
  2106. description: {
  2107. mode: "append",
  2108. text: "\n\nTOO DAMN BIG"
  2109. }
  2110. }
  2111. },
  2112. {
  2113. name: "Macro",
  2114. height: math.unit(100, "feet"),
  2115. info: {
  2116. description: {
  2117. mode: "append",
  2118. text: "\n\nTOO DAMN BIG"
  2119. }
  2120. }
  2121. },
  2122. {
  2123. name: "Megamacro",
  2124. height: math.unit(2, "miles")
  2125. },
  2126. {
  2127. name: "Gigamacro",
  2128. height: math.unit(10, "earths")
  2129. },
  2130. ]
  2131. ))
  2132. characterMakers.push(() => makeCharacter(
  2133. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2134. {
  2135. front: {
  2136. height: math.unit(183, "cm"),
  2137. weight: math.unit(80, "kg"),
  2138. name: "Front",
  2139. image: {
  2140. source: "./media/characters/sofia-fluttertail/front.svg",
  2141. bottom: 0.01,
  2142. extra: 2154 / 2081
  2143. }
  2144. },
  2145. frontAlt: {
  2146. height: math.unit(183, "cm"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Front (alt)",
  2149. image: {
  2150. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2151. }
  2152. },
  2153. back: {
  2154. height: math.unit(183, "cm"),
  2155. weight: math.unit(80, "kg"),
  2156. name: "Back",
  2157. image: {
  2158. source: "./media/characters/sofia-fluttertail/back.svg"
  2159. }
  2160. },
  2161. kneeling: {
  2162. height: math.unit(125, "cm"),
  2163. weight: math.unit(80, "kg"),
  2164. name: "Kneeling",
  2165. image: {
  2166. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2167. extra: 1033 / 977,
  2168. bottom: 23.7 / 1057
  2169. }
  2170. },
  2171. maw: {
  2172. height: math.unit(183 / 5, "cm"),
  2173. name: "Maw",
  2174. image: {
  2175. source: "./media/characters/sofia-fluttertail/maw.svg"
  2176. }
  2177. },
  2178. mawcloseup: {
  2179. height: math.unit(183 / 5 * 0.41, "cm"),
  2180. name: "Maw (Closeup)",
  2181. image: {
  2182. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2183. }
  2184. },
  2185. paws: {
  2186. height: math.unit(1.17, "feet"),
  2187. name: "Paws",
  2188. image: {
  2189. source: "./media/characters/sofia-fluttertail/paws.svg",
  2190. extra: 851 / 851,
  2191. bottom: 17 / 868
  2192. }
  2193. },
  2194. },
  2195. [
  2196. {
  2197. name: "Normal",
  2198. height: math.unit(1.83, "meter")
  2199. },
  2200. {
  2201. name: "Size Thief",
  2202. height: math.unit(18, "feet")
  2203. },
  2204. {
  2205. name: "50 Foot Collie",
  2206. height: math.unit(50, "feet")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(96, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Megamerger",
  2215. height: math.unit(650, "feet")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(7, "feet"),
  2224. weight: math.unit(100, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/march/front.svg",
  2228. extra: 1992/1851,
  2229. bottom: 39/2031
  2230. }
  2231. },
  2232. foot: {
  2233. height: math.unit(0.9, "feet"),
  2234. name: "Foot",
  2235. image: {
  2236. source: "./media/characters/march/foot.svg"
  2237. }
  2238. },
  2239. },
  2240. [
  2241. {
  2242. name: "Normal",
  2243. height: math.unit(7.9, "feet")
  2244. },
  2245. {
  2246. name: "Macro",
  2247. height: math.unit(220, "meters")
  2248. },
  2249. {
  2250. name: "Megamacro",
  2251. height: math.unit(2.98, "km"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "Gigamacro",
  2256. height: math.unit(15963, "km")
  2257. },
  2258. {
  2259. name: "Teramacro",
  2260. height: math.unit(2980000000, "km")
  2261. },
  2262. {
  2263. name: "Examacro",
  2264. height: math.unit(250, "parsecs")
  2265. },
  2266. ]
  2267. ))
  2268. characterMakers.push(() => makeCharacter(
  2269. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2270. {
  2271. front: {
  2272. height: math.unit(6, "feet"),
  2273. weight: math.unit(60, "kg"),
  2274. name: "Front",
  2275. image: {
  2276. source: "./media/characters/noir/front.svg",
  2277. extra: 1,
  2278. bottom: 0.032
  2279. }
  2280. },
  2281. },
  2282. [
  2283. {
  2284. name: "Normal",
  2285. height: math.unit(6.6, "feet")
  2286. },
  2287. {
  2288. name: "Macro",
  2289. height: math.unit(500, "feet")
  2290. },
  2291. {
  2292. name: "Megamacro",
  2293. height: math.unit(2.5, "km"),
  2294. default: true
  2295. },
  2296. {
  2297. name: "Gigamacro",
  2298. height: math.unit(22500, "km")
  2299. },
  2300. {
  2301. name: "Teramacro",
  2302. height: math.unit(2500000000, "km")
  2303. },
  2304. {
  2305. name: "Examacro",
  2306. height: math.unit(200, "parsecs")
  2307. },
  2308. ]
  2309. ))
  2310. characterMakers.push(() => makeCharacter(
  2311. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2312. {
  2313. front: {
  2314. height: math.unit(7, "feet"),
  2315. weight: math.unit(100, "kg"),
  2316. name: "Front",
  2317. image: {
  2318. source: "./media/characters/okuri/front.svg",
  2319. extra: 739/665,
  2320. bottom: 39/778
  2321. }
  2322. },
  2323. back: {
  2324. height: math.unit(7, "feet"),
  2325. weight: math.unit(100, "kg"),
  2326. name: "Back",
  2327. image: {
  2328. source: "./media/characters/okuri/back.svg",
  2329. extra: 734/653,
  2330. bottom: 13/747
  2331. }
  2332. },
  2333. sitting: {
  2334. height: math.unit(2.95, "feet"),
  2335. weight: math.unit(100, "kg"),
  2336. name: "Sitting",
  2337. image: {
  2338. source: "./media/characters/okuri/sitting.svg",
  2339. extra: 370/318,
  2340. bottom: 99/469
  2341. }
  2342. },
  2343. },
  2344. [
  2345. {
  2346. name: "Smallest",
  2347. height: math.unit(5 + 2/12, "feet")
  2348. },
  2349. {
  2350. name: "Smaller",
  2351. height: math.unit(300, "feet")
  2352. },
  2353. {
  2354. name: "Small",
  2355. height: math.unit(1000, "feet")
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(1, "mile")
  2360. },
  2361. {
  2362. name: "Mega Macro (Small)",
  2363. height: math.unit(20, "km")
  2364. },
  2365. {
  2366. name: "Mega Macro (Large)",
  2367. height: math.unit(600, "km")
  2368. },
  2369. {
  2370. name: "Giga Macro",
  2371. height: math.unit(10000, "km")
  2372. },
  2373. {
  2374. name: "Normal",
  2375. height: math.unit(577560, "km"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Large",
  2380. height: math.unit(4, "galaxies")
  2381. },
  2382. {
  2383. name: "Largest",
  2384. height: math.unit(15, "multiverses")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(7, "feet"),
  2393. weight: math.unit(100, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/manny/front.svg",
  2397. extra: 1,
  2398. bottom: 0.06
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(7, "feet"),
  2403. weight: math.unit(100, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/manny/back.svg",
  2407. extra: 1,
  2408. bottom: 0.014
  2409. }
  2410. },
  2411. },
  2412. [
  2413. {
  2414. name: "Normal",
  2415. height: math.unit(7, "feet"),
  2416. },
  2417. {
  2418. name: "Macro",
  2419. height: math.unit(78, "feet"),
  2420. default: true
  2421. },
  2422. {
  2423. name: "Macro+",
  2424. height: math.unit(300, "meters")
  2425. },
  2426. {
  2427. name: "Macro++",
  2428. height: math.unit(2400, "meters")
  2429. },
  2430. {
  2431. name: "Megamacro",
  2432. height: math.unit(5167, "meters")
  2433. },
  2434. {
  2435. name: "Gigamacro",
  2436. height: math.unit(41769, "miles")
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(7, "feet"),
  2445. weight: math.unit(100, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/adake/front-1.svg"
  2449. }
  2450. },
  2451. frontAlt: {
  2452. height: math.unit(7, "feet"),
  2453. weight: math.unit(100, "kg"),
  2454. name: "Front (Alt)",
  2455. image: {
  2456. source: "./media/characters/adake/front-2.svg",
  2457. extra: 1,
  2458. bottom: 0.01
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(7, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/adake/back.svg",
  2467. }
  2468. },
  2469. kneel: {
  2470. height: math.unit(5.385, "feet"),
  2471. weight: math.unit(100, "kg"),
  2472. name: "Kneeling",
  2473. image: {
  2474. source: "./media/characters/adake/kneel.svg",
  2475. bottom: 0.052
  2476. }
  2477. },
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(7, "feet"),
  2483. },
  2484. {
  2485. name: "Macro",
  2486. height: math.unit(78, "feet"),
  2487. default: true
  2488. },
  2489. {
  2490. name: "Macro+",
  2491. height: math.unit(300, "meters")
  2492. },
  2493. {
  2494. name: "Macro++",
  2495. height: math.unit(2400, "meters")
  2496. },
  2497. {
  2498. name: "Megamacro",
  2499. height: math.unit(5167, "meters")
  2500. },
  2501. {
  2502. name: "Gigamacro",
  2503. height: math.unit(41769, "miles")
  2504. },
  2505. ]
  2506. ))
  2507. characterMakers.push(() => makeCharacter(
  2508. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2509. {
  2510. front: {
  2511. height: math.unit(1.65, "meters"),
  2512. weight: math.unit(50, "kg"),
  2513. name: "Front",
  2514. image: {
  2515. source: "./media/characters/elijah/front.svg",
  2516. extra: 858 / 830,
  2517. bottom: 95.5 / 953.8559
  2518. }
  2519. },
  2520. back: {
  2521. height: math.unit(1.65, "meters"),
  2522. weight: math.unit(50, "kg"),
  2523. name: "Back",
  2524. image: {
  2525. source: "./media/characters/elijah/back.svg",
  2526. extra: 895 / 850,
  2527. bottom: 5.3 / 897.956
  2528. }
  2529. },
  2530. frontNsfw: {
  2531. height: math.unit(1.65, "meters"),
  2532. weight: math.unit(50, "kg"),
  2533. name: "Front (NSFW)",
  2534. image: {
  2535. source: "./media/characters/elijah/front-nsfw.svg",
  2536. extra: 858 / 830,
  2537. bottom: 95.5 / 953.8559
  2538. }
  2539. },
  2540. backNsfw: {
  2541. height: math.unit(1.65, "meters"),
  2542. weight: math.unit(50, "kg"),
  2543. name: "Back (NSFW)",
  2544. image: {
  2545. source: "./media/characters/elijah/back-nsfw.svg",
  2546. extra: 895 / 850,
  2547. bottom: 5.3 / 897.956
  2548. }
  2549. },
  2550. dick: {
  2551. height: math.unit(1, "feet"),
  2552. name: "Dick",
  2553. image: {
  2554. source: "./media/characters/elijah/dick.svg"
  2555. }
  2556. },
  2557. beakOpen: {
  2558. height: math.unit(1.25, "feet"),
  2559. name: "Beak (Open)",
  2560. image: {
  2561. source: "./media/characters/elijah/beak-open.svg"
  2562. }
  2563. },
  2564. beakShut: {
  2565. height: math.unit(1.25, "feet"),
  2566. name: "Beak (Shut)",
  2567. image: {
  2568. source: "./media/characters/elijah/beak-shut.svg"
  2569. }
  2570. },
  2571. footFlexing: {
  2572. height: math.unit(1.61, "feet"),
  2573. name: "Foot (Flexing)",
  2574. image: {
  2575. source: "./media/characters/elijah/foot-flexing.svg"
  2576. }
  2577. },
  2578. footStepping: {
  2579. height: math.unit(1.44, "feet"),
  2580. name: "Foot (Stepping)",
  2581. image: {
  2582. source: "./media/characters/elijah/foot-stepping.svg"
  2583. }
  2584. },
  2585. plantigradeLeg: {
  2586. height: math.unit(2.34, "feet"),
  2587. name: "Plantigrade Leg",
  2588. image: {
  2589. source: "./media/characters/elijah/plantigrade-leg.svg"
  2590. }
  2591. },
  2592. plantigradeFootLeft: {
  2593. height: math.unit(0.9, "feet"),
  2594. name: "Plantigrade Foot (Left)",
  2595. image: {
  2596. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2597. }
  2598. },
  2599. plantigradeFootRight: {
  2600. height: math.unit(0.9, "feet"),
  2601. name: "Plantigrade Foot (Right)",
  2602. image: {
  2603. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2604. }
  2605. },
  2606. },
  2607. [
  2608. {
  2609. name: "Normal",
  2610. height: math.unit(1.65, "meters")
  2611. },
  2612. {
  2613. name: "Macro",
  2614. height: math.unit(55, "meters"),
  2615. default: true
  2616. },
  2617. {
  2618. name: "Macro+",
  2619. height: math.unit(105, "meters")
  2620. },
  2621. ]
  2622. ))
  2623. characterMakers.push(() => makeCharacter(
  2624. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2625. {
  2626. front: {
  2627. height: math.unit(7 + 2/12, "feet"),
  2628. weight: math.unit(320, "kg"),
  2629. name: "Front",
  2630. image: {
  2631. source: "./media/characters/rai/front.svg",
  2632. extra: 1802/1696,
  2633. bottom: 68/1870
  2634. }
  2635. },
  2636. frontDressed: {
  2637. height: math.unit(7 + 2/12, "feet"),
  2638. weight: math.unit(320, "kg"),
  2639. name: "Front (Dressed)",
  2640. image: {
  2641. source: "./media/characters/rai/front-dressed.svg",
  2642. extra: 1802/1696,
  2643. bottom: 68/1870
  2644. }
  2645. },
  2646. side: {
  2647. height: math.unit(7 + 2/12, "feet"),
  2648. weight: math.unit(320, "kg"),
  2649. name: "Side",
  2650. image: {
  2651. source: "./media/characters/rai/side.svg",
  2652. extra: 1789/1710,
  2653. bottom: 115/1904
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(7 + 2/12, "feet"),
  2658. weight: math.unit(320, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/rai/back.svg",
  2662. extra: 1770/1707,
  2663. bottom: 28/1798
  2664. }
  2665. },
  2666. feral: {
  2667. height: math.unit(9.5, "feet"),
  2668. weight: math.unit(640, "kg"),
  2669. name: "Feral",
  2670. image: {
  2671. source: "./media/characters/rai/feral.svg",
  2672. extra: 945/553,
  2673. bottom: 176/1121
  2674. }
  2675. },
  2676. dragon: {
  2677. height: math.unit(23, "feet"),
  2678. weight: math.unit(50000, "lb"),
  2679. name: "Dragon",
  2680. image: {
  2681. source: "./media/characters/rai/dragon.svg",
  2682. extra: 2498 / 2030,
  2683. bottom: 85.2 / 2584
  2684. }
  2685. },
  2686. maw: {
  2687. height: math.unit(1.69, "feet"),
  2688. name: "Maw",
  2689. image: {
  2690. source: "./media/characters/rai/maw.svg"
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Normal",
  2697. height: math.unit(7 + 2/12, "feet")
  2698. },
  2699. {
  2700. name: "Big",
  2701. height: math.unit(11, "feet")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(302, "feet"),
  2706. default: true
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2712. {
  2713. frontDressed: {
  2714. height: math.unit(216, "feet"),
  2715. weight: math.unit(7000000, "lb"),
  2716. name: "Front (Dressed)",
  2717. image: {
  2718. source: "./media/characters/jazzy/front-dressed.svg",
  2719. extra: 2738 / 2651,
  2720. bottom: 41.8 / 2786
  2721. }
  2722. },
  2723. backDressed: {
  2724. height: math.unit(216, "feet"),
  2725. weight: math.unit(7000000, "lb"),
  2726. name: "Back (Dressed)",
  2727. image: {
  2728. source: "./media/characters/jazzy/back-dressed.svg",
  2729. extra: 2775 / 2673,
  2730. bottom: 36.8 / 2817
  2731. }
  2732. },
  2733. front: {
  2734. height: math.unit(216, "feet"),
  2735. weight: math.unit(7000000, "lb"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/jazzy/front.svg",
  2739. extra: 2738 / 2651,
  2740. bottom: 41.8 / 2786
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(216, "feet"),
  2745. weight: math.unit(7000000, "lb"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/jazzy/back.svg",
  2749. extra: 2775 / 2673,
  2750. bottom: 36.8 / 2817
  2751. }
  2752. },
  2753. maw: {
  2754. height: math.unit(20, "feet"),
  2755. name: "Maw",
  2756. image: {
  2757. source: "./media/characters/jazzy/maw.svg"
  2758. }
  2759. },
  2760. paws: {
  2761. height: math.unit(27.5, "feet"),
  2762. name: "Paws",
  2763. image: {
  2764. source: "./media/characters/jazzy/paws.svg"
  2765. }
  2766. },
  2767. eye: {
  2768. height: math.unit(4.4, "feet"),
  2769. name: "Eye",
  2770. image: {
  2771. source: "./media/characters/jazzy/eye.svg"
  2772. }
  2773. },
  2774. droneOffense: {
  2775. height: math.unit(9.5, "inches"),
  2776. name: "Drone (Offense)",
  2777. image: {
  2778. source: "./media/characters/jazzy/drone-offense.svg"
  2779. }
  2780. },
  2781. droneRecon: {
  2782. height: math.unit(9.5, "inches"),
  2783. name: "Drone (Recon)",
  2784. image: {
  2785. source: "./media/characters/jazzy/drone-recon.svg"
  2786. }
  2787. },
  2788. droneDefense: {
  2789. height: math.unit(9.5, "inches"),
  2790. name: "Drone (Defense)",
  2791. image: {
  2792. source: "./media/characters/jazzy/drone-defense.svg"
  2793. }
  2794. },
  2795. },
  2796. [
  2797. {
  2798. name: "Macro",
  2799. height: math.unit(216, "feet"),
  2800. default: true
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(9 + 6/12, "feet"),
  2809. weight: math.unit(700, "lb"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/flamm/front.svg",
  2813. extra: 1751/1632,
  2814. bottom: 46/1797
  2815. }
  2816. },
  2817. buff: {
  2818. height: math.unit(9 + 6/12, "feet"),
  2819. weight: math.unit(950, "lb"),
  2820. name: "Buff",
  2821. image: {
  2822. source: "./media/characters/flamm/buff.svg",
  2823. extra: 3018/2874,
  2824. bottom: 221/3239
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Normal",
  2831. height: math.unit(9.5, "feet")
  2832. },
  2833. {
  2834. name: "Macro",
  2835. height: math.unit(200, "feet"),
  2836. default: true
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(5 + 3/12, "feet"),
  2845. weight: math.unit(60, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/zephiro/front.svg",
  2849. extra: 2309 / 2162,
  2850. bottom: 0.069
  2851. }
  2852. },
  2853. side: {
  2854. height: math.unit(5 + 3/12, "feet"),
  2855. weight: math.unit(60, "kg"),
  2856. name: "Side",
  2857. image: {
  2858. source: "./media/characters/zephiro/side.svg",
  2859. extra: 2403 / 2279,
  2860. bottom: 0.015
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(5 + 3/12, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/zephiro/back.svg",
  2869. extra: 2373 / 2244,
  2870. bottom: 0.013
  2871. }
  2872. },
  2873. hand: {
  2874. height: math.unit(0.68, "feet"),
  2875. name: "Hand",
  2876. image: {
  2877. source: "./media/characters/zephiro/hand.svg"
  2878. }
  2879. },
  2880. paw: {
  2881. height: math.unit(1, "feet"),
  2882. name: "Paw",
  2883. image: {
  2884. source: "./media/characters/zephiro/paw.svg"
  2885. }
  2886. },
  2887. beans: {
  2888. height: math.unit(0.93, "feet"),
  2889. name: "Beans",
  2890. image: {
  2891. source: "./media/characters/zephiro/beans.svg"
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Micro",
  2898. height: math.unit(3, "inches")
  2899. },
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(5 + 3 / 12, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(118, "feet")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(5, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/fory/front.svg",
  2920. extra: 2862 / 2674,
  2921. bottom: 180 / 3043.8
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(5, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/fory/back.svg",
  2930. extra: 2962 / 2791,
  2931. bottom: 106 / 3071.8
  2932. }
  2933. },
  2934. foot: {
  2935. height: math.unit(2.14, "feet"),
  2936. name: "Foot",
  2937. image: {
  2938. source: "./media/characters/fory/foot.svg"
  2939. }
  2940. },
  2941. },
  2942. [
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(5, "feet")
  2946. },
  2947. {
  2948. name: "Macro",
  2949. height: math.unit(50, "feet"),
  2950. default: true
  2951. },
  2952. {
  2953. name: "Megamacro",
  2954. height: math.unit(10, "miles")
  2955. },
  2956. {
  2957. name: "Gigamacro",
  2958. height: math.unit(5, "earths")
  2959. },
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2964. {
  2965. front: {
  2966. height: math.unit(7, "feet"),
  2967. weight: math.unit(90, "kg"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/kurrikage/front.svg",
  2971. extra: 1845/1733,
  2972. bottom: 119/1964
  2973. }
  2974. },
  2975. back: {
  2976. height: math.unit(7, "feet"),
  2977. weight: math.unit(90, "kg"),
  2978. name: "Back",
  2979. image: {
  2980. source: "./media/characters/kurrikage/back.svg",
  2981. extra: 1790/1677,
  2982. bottom: 61/1851
  2983. }
  2984. },
  2985. dressed: {
  2986. height: math.unit(7, "feet"),
  2987. weight: math.unit(90, "kg"),
  2988. name: "Dressed",
  2989. image: {
  2990. source: "./media/characters/kurrikage/dressed.svg",
  2991. extra: 1845/1733,
  2992. bottom: 119/1964
  2993. }
  2994. },
  2995. foot: {
  2996. height: math.unit(1.5, "feet"),
  2997. name: "Foot",
  2998. image: {
  2999. source: "./media/characters/kurrikage/foot.svg"
  3000. }
  3001. },
  3002. staff: {
  3003. height: math.unit(6.7, "feet"),
  3004. name: "Staff",
  3005. image: {
  3006. source: "./media/characters/kurrikage/staff.svg"
  3007. }
  3008. },
  3009. peek: {
  3010. height: math.unit(1.05, "feet"),
  3011. name: "Peeking",
  3012. image: {
  3013. source: "./media/characters/kurrikage/peek.svg",
  3014. bottom: 0.08
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Normal",
  3021. height: math.unit(12, "feet"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Big",
  3026. height: math.unit(20, "feet")
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(500, "feet")
  3031. },
  3032. {
  3033. name: "Megamacro",
  3034. height: math.unit(20, "miles")
  3035. },
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3040. {
  3041. front: {
  3042. height: math.unit(6, "feet"),
  3043. weight: math.unit(75, "kg"),
  3044. name: "Front",
  3045. image: {
  3046. source: "./media/characters/shingo/front.svg",
  3047. extra: 1900/1825,
  3048. bottom: 82/1982
  3049. }
  3050. },
  3051. side: {
  3052. height: math.unit(6, "feet"),
  3053. weight: math.unit(75, "kg"),
  3054. name: "Side",
  3055. image: {
  3056. source: "./media/characters/shingo/side.svg",
  3057. extra: 1930/1865,
  3058. bottom: 16/1946
  3059. }
  3060. },
  3061. back: {
  3062. height: math.unit(6, "feet"),
  3063. weight: math.unit(75, "kg"),
  3064. name: "Back",
  3065. image: {
  3066. source: "./media/characters/shingo/back.svg",
  3067. extra: 1922/1852,
  3068. bottom: 16/1938
  3069. }
  3070. },
  3071. frontDressed: {
  3072. height: math.unit(6, "feet"),
  3073. weight: math.unit(150, "lb"),
  3074. name: "Front-dressed",
  3075. image: {
  3076. source: "./media/characters/shingo/front-dressed.svg",
  3077. extra: 1900/1825,
  3078. bottom: 82/1982
  3079. }
  3080. },
  3081. paw: {
  3082. height: math.unit(1.29, "feet"),
  3083. name: "Paw",
  3084. image: {
  3085. source: "./media/characters/shingo/paw.svg"
  3086. }
  3087. },
  3088. hand: {
  3089. height: math.unit(1.07, "feet"),
  3090. name: "Hand",
  3091. image: {
  3092. source: "./media/characters/shingo/hand.svg"
  3093. }
  3094. },
  3095. frontAlt: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Front (Alt)",
  3099. image: {
  3100. source: "./media/characters/shingo/front-alt.svg",
  3101. extra: 3511 / 3338,
  3102. bottom: 0.005
  3103. }
  3104. },
  3105. frontAlt2: {
  3106. height: math.unit(6, "feet"),
  3107. weight: math.unit(75, "kg"),
  3108. name: "Front (Alt 2)",
  3109. image: {
  3110. source: "./media/characters/shingo/front-alt-2.svg",
  3111. extra: 706/681,
  3112. bottom: 11/717
  3113. }
  3114. },
  3115. pawAlt: {
  3116. height: math.unit(1, "feet"),
  3117. name: "Paw (Alt)",
  3118. image: {
  3119. source: "./media/characters/shingo/paw-alt.svg"
  3120. }
  3121. },
  3122. },
  3123. [
  3124. {
  3125. name: "Micro",
  3126. height: math.unit(4, "inches")
  3127. },
  3128. {
  3129. name: "Normal",
  3130. height: math.unit(6, "feet"),
  3131. default: true
  3132. },
  3133. {
  3134. name: "Macro",
  3135. height: math.unit(108, "feet")
  3136. },
  3137. {
  3138. name: "Macro+",
  3139. height: math.unit(1500, "feet")
  3140. },
  3141. ]
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3145. {
  3146. side: {
  3147. height: math.unit(6, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Side",
  3150. image: {
  3151. source: "./media/characters/aigey/side.svg"
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(200, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Megamacro",
  3163. height: math.unit(100, "miles")
  3164. },
  3165. ]
  3166. )
  3167. )
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3170. {
  3171. front: {
  3172. height: math.unit(5 + 5 / 12, "feet"),
  3173. weight: math.unit(75, "kg"),
  3174. name: "Front",
  3175. image: {
  3176. source: "./media/characters/natasha/front.svg",
  3177. extra: 859 / 824,
  3178. bottom: 23 / 879.6
  3179. }
  3180. },
  3181. frontNsfw: {
  3182. height: math.unit(5 + 5 / 12, "feet"),
  3183. weight: math.unit(75, "kg"),
  3184. name: "Front (NSFW)",
  3185. image: {
  3186. source: "./media/characters/natasha/front-nsfw.svg",
  3187. extra: 859 / 824,
  3188. bottom: 23 / 879.6
  3189. }
  3190. },
  3191. frontErect: {
  3192. height: math.unit(5 + 5 / 12, "feet"),
  3193. weight: math.unit(75, "kg"),
  3194. name: "Front (Erect)",
  3195. image: {
  3196. source: "./media/characters/natasha/front-erect.svg",
  3197. extra: 859 / 824,
  3198. bottom: 23 / 879.6
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(5 + 5 / 12, "feet"),
  3203. weight: math.unit(75, "kg"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/natasha/back.svg",
  3207. extra: 887.9 / 852.6,
  3208. bottom: 9.7 / 896.4
  3209. }
  3210. },
  3211. backAlt: {
  3212. height: math.unit(5 + 5 / 12, "feet"),
  3213. weight: math.unit(75, "kg"),
  3214. name: "Back (Alt)",
  3215. image: {
  3216. source: "./media/characters/natasha/back-alt.svg",
  3217. extra: 1236.7 / 1192,
  3218. bottom: 22.3 / 1258.2
  3219. }
  3220. },
  3221. dick: {
  3222. height: math.unit(1.772, "feet"),
  3223. name: "Dick",
  3224. image: {
  3225. source: "./media/characters/natasha/dick.svg"
  3226. }
  3227. },
  3228. paw: {
  3229. height: math.unit(0.250, "meters"),
  3230. name: "Paw",
  3231. image: {
  3232. source: "./media/characters/natasha/paw.svg"
  3233. }
  3234. },
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(5 + 5 / 12, "feet")
  3240. },
  3241. {
  3242. name: "Large",
  3243. height: math.unit(12, "feet")
  3244. },
  3245. {
  3246. name: "Macro",
  3247. height: math.unit(100, "feet"),
  3248. default: true
  3249. },
  3250. {
  3251. name: "Macro+",
  3252. height: math.unit(260, "feet")
  3253. },
  3254. {
  3255. name: "Macro++",
  3256. height: math.unit(1, "mile")
  3257. },
  3258. ]
  3259. ))
  3260. characterMakers.push(() => makeCharacter(
  3261. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3262. {
  3263. front: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Front",
  3267. image: {
  3268. source: "./media/characters/malik/front.svg"
  3269. }
  3270. },
  3271. side: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Side",
  3275. image: {
  3276. source: "./media/characters/malik/side.svg",
  3277. extra: 1.1539
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(6, "feet"),
  3282. weight: math.unit(75, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/malik/back.svg"
  3286. }
  3287. },
  3288. },
  3289. [
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(156, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro+",
  3297. height: math.unit(1188, "feet")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(6, "feet"),
  3306. weight: math.unit(75, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/sefer/front.svg",
  3310. extra: 848 / 659,
  3311. bottom: 28.3 / 876.442
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(6, "feet"),
  3316. weight: math.unit(75, "kg"),
  3317. name: "Back",
  3318. image: {
  3319. source: "./media/characters/sefer/back.svg",
  3320. extra: 864 / 695,
  3321. bottom: 10 / 871
  3322. }
  3323. },
  3324. frontDressed: {
  3325. height: math.unit(6, "feet"),
  3326. weight: math.unit(75, "kg"),
  3327. name: "Front (Dressed)",
  3328. image: {
  3329. source: "./media/characters/sefer/front-dressed.svg",
  3330. extra: 839 / 653,
  3331. bottom: 37.6 / 878
  3332. }
  3333. },
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(6, "feet"),
  3339. default: true
  3340. },
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3345. {
  3346. body: {
  3347. height: math.unit(2.2428, "meter"),
  3348. weight: math.unit(124.738, "kg"),
  3349. name: "Body",
  3350. image: {
  3351. extra: 1225 / 1050,
  3352. source: "./media/characters/north/front.svg"
  3353. }
  3354. }
  3355. },
  3356. [
  3357. {
  3358. name: "Micro",
  3359. height: math.unit(4, "inches")
  3360. },
  3361. {
  3362. name: "Macro",
  3363. height: math.unit(63, "meters")
  3364. },
  3365. {
  3366. name: "Megamacro",
  3367. height: math.unit(101, "miles"),
  3368. default: true
  3369. }
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3374. {
  3375. angled: {
  3376. height: math.unit(4, "meter"),
  3377. weight: math.unit(150, "kg"),
  3378. name: "Angled",
  3379. image: {
  3380. source: "./media/characters/talan/angled-sfw.svg",
  3381. bottom: 29 / 3734
  3382. }
  3383. },
  3384. angledNsfw: {
  3385. height: math.unit(4, "meter"),
  3386. weight: math.unit(150, "kg"),
  3387. name: "Angled (NSFW)",
  3388. image: {
  3389. source: "./media/characters/talan/angled-nsfw.svg",
  3390. bottom: 29 / 3734
  3391. }
  3392. },
  3393. frontNsfw: {
  3394. height: math.unit(4, "meter"),
  3395. weight: math.unit(150, "kg"),
  3396. name: "Front (NSFW)",
  3397. image: {
  3398. source: "./media/characters/talan/front-nsfw.svg",
  3399. bottom: 29 / 3734
  3400. }
  3401. },
  3402. sideNsfw: {
  3403. height: math.unit(4, "meter"),
  3404. weight: math.unit(150, "kg"),
  3405. name: "Side (NSFW)",
  3406. image: {
  3407. source: "./media/characters/talan/side-nsfw.svg",
  3408. bottom: 29 / 3734
  3409. }
  3410. },
  3411. back: {
  3412. height: math.unit(4, "meter"),
  3413. weight: math.unit(150, "kg"),
  3414. name: "Back",
  3415. image: {
  3416. source: "./media/characters/talan/back.svg"
  3417. }
  3418. },
  3419. dickBottom: {
  3420. height: math.unit(0.621, "meter"),
  3421. name: "Dick (Bottom)",
  3422. image: {
  3423. source: "./media/characters/talan/dick-bottom.svg"
  3424. }
  3425. },
  3426. dickTop: {
  3427. height: math.unit(0.621, "meter"),
  3428. name: "Dick (Top)",
  3429. image: {
  3430. source: "./media/characters/talan/dick-top.svg"
  3431. }
  3432. },
  3433. dickSide: {
  3434. height: math.unit(0.305, "meter"),
  3435. name: "Dick (Side)",
  3436. image: {
  3437. source: "./media/characters/talan/dick-side.svg"
  3438. }
  3439. },
  3440. dickFront: {
  3441. height: math.unit(0.305, "meter"),
  3442. name: "Dick (Front)",
  3443. image: {
  3444. source: "./media/characters/talan/dick-front.svg"
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(4, "meters")
  3452. },
  3453. {
  3454. name: "Macro",
  3455. height: math.unit(100, "meters")
  3456. },
  3457. {
  3458. name: "Megamacro",
  3459. height: math.unit(2, "miles"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Gigamacro",
  3464. height: math.unit(5000, "miles")
  3465. },
  3466. {
  3467. name: "Teramacro",
  3468. height: math.unit(100, "parsecs")
  3469. }
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(90, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/gael'rathus/front.svg"
  3481. }
  3482. },
  3483. frontAlt: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Front (alt)",
  3487. image: {
  3488. source: "./media/characters/gael'rathus/front-alt.svg"
  3489. }
  3490. },
  3491. frontAlt2: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(90, "kg"),
  3494. name: "Front (alt 2)",
  3495. image: {
  3496. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(9, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Large",
  3508. height: math.unit(25, "feet")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(0.25, "miles")
  3513. },
  3514. {
  3515. name: "Megamacro",
  3516. height: math.unit(10, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3522. {
  3523. side: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(140, "kg"),
  3526. name: "Side",
  3527. image: {
  3528. source: "./media/characters/sosha/side.svg",
  3529. bottom: 0.042
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(12, "feet"),
  3537. default: true
  3538. }
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3543. {
  3544. side: {
  3545. height: math.unit(5 + 5 / 12, "feet"),
  3546. weight: math.unit(170, "kg"),
  3547. name: "Side",
  3548. image: {
  3549. source: "./media/characters/runnola/side.svg",
  3550. extra: 741 / 448,
  3551. bottom: 0.05
  3552. }
  3553. },
  3554. },
  3555. [
  3556. {
  3557. name: "Small",
  3558. height: math.unit(3, "feet")
  3559. },
  3560. {
  3561. name: "Normal",
  3562. height: math.unit(5 + 5 / 12, "feet"),
  3563. default: true
  3564. },
  3565. {
  3566. name: "Big",
  3567. height: math.unit(10, "feet")
  3568. },
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3573. {
  3574. front: {
  3575. height: math.unit(2, "meter"),
  3576. weight: math.unit(50, "kg"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/kurribird/front.svg",
  3580. bottom: 0.015
  3581. }
  3582. },
  3583. frontAlt: {
  3584. height: math.unit(1.5, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Front (Alt)",
  3587. image: {
  3588. source: "./media/characters/kurribird/front-alt.svg",
  3589. extra: 1.45
  3590. }
  3591. },
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(7, "feet")
  3597. },
  3598. {
  3599. name: "Big",
  3600. height: math.unit(12, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(1500, "feet")
  3606. },
  3607. {
  3608. name: "Megamacro",
  3609. height: math.unit(2, "miles")
  3610. }
  3611. ]
  3612. ))
  3613. characterMakers.push(() => makeCharacter(
  3614. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3615. {
  3616. front: {
  3617. height: math.unit(2, "meter"),
  3618. weight: math.unit(80, "kg"),
  3619. name: "Front",
  3620. image: {
  3621. source: "./media/characters/elbial/front.svg",
  3622. extra: 1643 / 1556,
  3623. bottom: 60.2 / 1696
  3624. }
  3625. },
  3626. side: {
  3627. height: math.unit(2, "meter"),
  3628. weight: math.unit(80, "kg"),
  3629. name: "Side",
  3630. image: {
  3631. source: "./media/characters/elbial/side.svg",
  3632. extra: 1601/1528,
  3633. bottom: 97/1698
  3634. }
  3635. },
  3636. back: {
  3637. height: math.unit(2, "meter"),
  3638. weight: math.unit(80, "kg"),
  3639. name: "Back",
  3640. image: {
  3641. source: "./media/characters/elbial/back.svg",
  3642. extra: 1653/1569,
  3643. bottom: 20/1673
  3644. }
  3645. },
  3646. frontDressed: {
  3647. height: math.unit(2, "meter"),
  3648. weight: math.unit(80, "kg"),
  3649. name: "Front (Dressed)",
  3650. image: {
  3651. source: "./media/characters/elbial/front-dressed.svg",
  3652. extra: 1638/1569,
  3653. bottom: 70/1708
  3654. }
  3655. },
  3656. genitals: {
  3657. height: math.unit(2 / 3.367, "meter"),
  3658. name: "Genitals",
  3659. image: {
  3660. source: "./media/characters/elbial/genitals.svg"
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Large",
  3667. height: math.unit(100, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(500, "feet"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Megamacro",
  3676. height: math.unit(10, "miles")
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(25000, "miles")
  3681. },
  3682. {
  3683. name: "Full-Size",
  3684. height: math.unit(8000000, "gigaparsecs")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(60, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/noah/front.svg"
  3697. }
  3698. },
  3699. talons: {
  3700. height: math.unit(0.315, "meter"),
  3701. name: "Talons",
  3702. image: {
  3703. source: "./media/characters/noah/talons.svg"
  3704. }
  3705. }
  3706. },
  3707. [
  3708. {
  3709. name: "Large",
  3710. height: math.unit(50, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(750, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Megamacro",
  3719. height: math.unit(50, "miles")
  3720. },
  3721. {
  3722. name: "Gigamacro",
  3723. height: math.unit(100000, "miles")
  3724. },
  3725. {
  3726. name: "Full-Size",
  3727. height: math.unit(3000000000, "miles")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(80, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/natalya/front.svg"
  3740. }
  3741. },
  3742. back: {
  3743. height: math.unit(2, "meter"),
  3744. weight: math.unit(80, "kg"),
  3745. name: "Back",
  3746. image: {
  3747. source: "./media/characters/natalya/back.svg"
  3748. }
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Normal",
  3754. height: math.unit(150, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(5, "miles")
  3760. },
  3761. {
  3762. name: "Full-Size",
  3763. height: math.unit(600, "kiloparsecs")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(2, "meter"),
  3772. weight: math.unit(50, "kg"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/erestrebah/front.svg",
  3776. extra: 1262/1162,
  3777. bottom: 96/1358
  3778. }
  3779. },
  3780. back: {
  3781. height: math.unit(2, "meter"),
  3782. weight: math.unit(50, "kg"),
  3783. name: "Back",
  3784. image: {
  3785. source: "./media/characters/erestrebah/back.svg",
  3786. extra: 1257/1139,
  3787. bottom: 13/1270
  3788. }
  3789. },
  3790. wing: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(50, "kg"),
  3793. name: "Wing",
  3794. image: {
  3795. source: "./media/characters/erestrebah/wing.svg",
  3796. extra: 1262/1162,
  3797. bottom: 96/1358
  3798. }
  3799. },
  3800. mouth: {
  3801. height: math.unit(0.39, "feet"),
  3802. name: "Mouth",
  3803. image: {
  3804. source: "./media/characters/erestrebah/mouth.svg"
  3805. }
  3806. }
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(10, "feet")
  3812. },
  3813. {
  3814. name: "Large",
  3815. height: math.unit(50, "feet"),
  3816. default: true
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(300, "feet")
  3821. },
  3822. {
  3823. name: "Macro+",
  3824. height: math.unit(750, "feet")
  3825. },
  3826. {
  3827. name: "Megamacro",
  3828. height: math.unit(3, "miles")
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(2, "meter"),
  3837. weight: math.unit(80, "kg"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/jennifer/front.svg",
  3841. bottom: 0.11,
  3842. extra: 1.16
  3843. }
  3844. },
  3845. frontAlt: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(80, "kg"),
  3848. name: "Front (Alt)",
  3849. image: {
  3850. source: "./media/characters/jennifer/front-alt.svg"
  3851. }
  3852. }
  3853. },
  3854. [
  3855. {
  3856. name: "Canon Height",
  3857. height: math.unit(120, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Macro+",
  3862. height: math.unit(300, "feet")
  3863. },
  3864. {
  3865. name: "Megamacro",
  3866. height: math.unit(20000, "feet")
  3867. }
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(2, "meter"),
  3875. weight: math.unit(50, "kg"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/kalista/front.svg",
  3879. extra: 1314/1145,
  3880. bottom: 101/1415
  3881. }
  3882. },
  3883. back: {
  3884. height: math.unit(2, "meter"),
  3885. weight: math.unit(50, "kg"),
  3886. name: "Back",
  3887. image: {
  3888. source: "./media/characters/kalista/back.svg",
  3889. extra: 1366 / 1156,
  3890. bottom: 33.9 / 1362.78
  3891. }
  3892. }
  3893. },
  3894. [
  3895. {
  3896. name: "Uncomfortably Small",
  3897. height: math.unit(10, "feet")
  3898. },
  3899. {
  3900. name: "Small",
  3901. height: math.unit(30, "feet")
  3902. },
  3903. {
  3904. name: "Macro",
  3905. height: math.unit(100, "feet"),
  3906. default: true
  3907. },
  3908. {
  3909. name: "Macro+",
  3910. height: math.unit(2000, "feet")
  3911. },
  3912. {
  3913. name: "True Form",
  3914. height: math.unit(8924, "miles")
  3915. }
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(120, "kg"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/ggv/front.svg"
  3927. }
  3928. },
  3929. side: {
  3930. height: math.unit(2, "meter"),
  3931. weight: math.unit(120, "kg"),
  3932. name: "Side",
  3933. image: {
  3934. source: "./media/characters/ggv/side.svg"
  3935. }
  3936. }
  3937. },
  3938. [
  3939. {
  3940. name: "Extremely Puny",
  3941. height: math.unit(9 + 5 / 12, "feet")
  3942. },
  3943. {
  3944. name: "Horribly Small",
  3945. height: math.unit(47.7, "miles"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Reasonably Sized",
  3950. height: math.unit(25000, "parsecs")
  3951. },
  3952. {
  3953. name: "Slightly Uncompressed",
  3954. height: math.unit(7.77e31, "parsecs")
  3955. },
  3956. {
  3957. name: "Omniversal",
  3958. height: math.unit(1e300, "meters")
  3959. },
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(75, "lb"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/napalm/front.svg"
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(75, "lb"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/napalm/back.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Standard",
  3985. height: math.unit(55, "feet"),
  3986. default: true
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(7 + 5 / 6, "feet"),
  3995. weight: math.unit(325, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/asana/front.svg",
  3999. extra: 1133 / 1060,
  4000. bottom: 15.2 / 1148.6
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(7 + 5 / 6, "feet"),
  4005. weight: math.unit(325, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/asana/back.svg",
  4009. extra: 1114 / 1043,
  4010. bottom: 5 / 1120
  4011. }
  4012. },
  4013. dressedDark: {
  4014. height: math.unit(7 + 5 / 6, "feet"),
  4015. weight: math.unit(325, "lb"),
  4016. name: "Dressed (Dark)",
  4017. image: {
  4018. source: "./media/characters/asana/dressed-dark.svg",
  4019. extra: 1133 / 1060,
  4020. bottom: 15.2 / 1148.6
  4021. }
  4022. },
  4023. dressedLight: {
  4024. height: math.unit(7 + 5 / 6, "feet"),
  4025. weight: math.unit(325, "lb"),
  4026. name: "Dressed (Light)",
  4027. image: {
  4028. source: "./media/characters/asana/dressed-light.svg",
  4029. extra: 1133 / 1060,
  4030. bottom: 15.2 / 1148.6
  4031. }
  4032. },
  4033. },
  4034. [
  4035. {
  4036. name: "Standard",
  4037. height: math.unit(7 + 5 / 6, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Large",
  4042. height: math.unit(10, "meters")
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(2500, "meters")
  4047. },
  4048. {
  4049. name: "Megamacro",
  4050. height: math.unit(5e6, "meters")
  4051. },
  4052. {
  4053. name: "Examacro",
  4054. height: math.unit(5e12, "lightyears")
  4055. },
  4056. {
  4057. name: "Max Size",
  4058. height: math.unit(1e31, "lightyears")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(2, "meter"),
  4067. weight: math.unit(60, "kg"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/ebony/front.svg",
  4071. bottom: 0.03,
  4072. extra: 1045 / 810 + 0.03
  4073. }
  4074. },
  4075. side: {
  4076. height: math.unit(2, "meter"),
  4077. weight: math.unit(60, "kg"),
  4078. name: "Side",
  4079. image: {
  4080. source: "./media/characters/ebony/side.svg",
  4081. bottom: 0.03,
  4082. extra: 1045 / 810 + 0.03
  4083. }
  4084. },
  4085. back: {
  4086. height: math.unit(2, "meter"),
  4087. weight: math.unit(60, "kg"),
  4088. name: "Back",
  4089. image: {
  4090. source: "./media/characters/ebony/back.svg",
  4091. bottom: 0.01,
  4092. extra: 1045 / 810 + 0.01
  4093. }
  4094. },
  4095. },
  4096. [
  4097. // TODO check why I did this lol
  4098. {
  4099. name: "Standard",
  4100. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(200, "feet")
  4106. },
  4107. {
  4108. name: "Gigamacro",
  4109. height: math.unit(13000, "km")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(175, "lb"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/mountain/front.svg",
  4122. extra: 972 / 955,
  4123. bottom: 64 / 1036.6
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(6, "feet"),
  4128. weight: math.unit(175, "lb"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/mountain/back.svg",
  4132. extra: 970 / 950,
  4133. bottom: 28.25 / 999
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Large",
  4140. height: math.unit(20, "meters")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(300, "meters")
  4145. },
  4146. {
  4147. name: "Gigamacro",
  4148. height: math.unit(10000, "km"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Examacro",
  4153. height: math.unit(10e9, "lightyears")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(8, "feet"),
  4162. weight: math.unit(500, "lb"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/rick/front.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(8, "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(5, "km")
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(8, "feet"),
  4186. weight: math.unit(120, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/ona/front.svg"
  4190. }
  4191. },
  4192. frontAlt: {
  4193. height: math.unit(8, "feet"),
  4194. weight: math.unit(120, "lb"),
  4195. name: "Front (Alt)",
  4196. image: {
  4197. source: "./media/characters/ona/front-alt.svg"
  4198. }
  4199. },
  4200. back: {
  4201. height: math.unit(8, "feet"),
  4202. weight: math.unit(120, "lb"),
  4203. name: "Back",
  4204. image: {
  4205. source: "./media/characters/ona/back.svg"
  4206. }
  4207. },
  4208. foot: {
  4209. height: math.unit(1.1, "feet"),
  4210. name: "Foot",
  4211. image: {
  4212. source: "./media/characters/ona/foot.svg"
  4213. }
  4214. }
  4215. },
  4216. [
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(70, "km"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(681818, "miles")
  4225. },
  4226. {
  4227. name: "Examacro",
  4228. height: math.unit(3800000, "lightyears")
  4229. },
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(12, "feet"),
  4237. weight: math.unit(3000, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/mech/front.svg",
  4241. extra: 2900 / 2770,
  4242. bottom: 110 / 3010
  4243. }
  4244. },
  4245. back: {
  4246. height: math.unit(12, "feet"),
  4247. weight: math.unit(3000, "lb"),
  4248. name: "Back",
  4249. image: {
  4250. source: "./media/characters/mech/back.svg",
  4251. extra: 3011 / 2890,
  4252. bottom: 94 / 3105
  4253. }
  4254. },
  4255. maw: {
  4256. height: math.unit(3.07, "feet"),
  4257. name: "Maw",
  4258. image: {
  4259. source: "./media/characters/mech/maw.svg"
  4260. }
  4261. },
  4262. head: {
  4263. height: math.unit(2.82, "feet"),
  4264. name: "Head",
  4265. image: {
  4266. source: "./media/characters/mech/head.svg"
  4267. }
  4268. },
  4269. dick: {
  4270. height: math.unit(1.43, "feet"),
  4271. name: "Dick",
  4272. image: {
  4273. source: "./media/characters/mech/dick.svg"
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(12, "feet")
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(300, "feet"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Macro+",
  4289. height: math.unit(1500, "feet")
  4290. },
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(1.3, "meter"),
  4298. weight: math.unit(30, "kg"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/gregory/front.svg",
  4302. }
  4303. }
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(1.3, "meter"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(20, "meter")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(2.8, "meter"),
  4322. weight: math.unit(200, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/elory/front.svg",
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(2.8, "meter"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(38, "meter")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(470, "feet"),
  4346. weight: math.unit(924, "tons"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/angelpatamon/front.svg",
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(470, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Deity Size I",
  4361. height: math.unit(28651.2, "km")
  4362. },
  4363. {
  4364. name: "Deity Size II",
  4365. height: math.unit(171907.2, "km")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4371. {
  4372. side: {
  4373. height: math.unit(7.2, "meter"),
  4374. weight: math.unit(8.2, "tons"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/cryae/side.svg",
  4378. extra: 3500 / 1500
  4379. }
  4380. }
  4381. },
  4382. [
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(7.2, "meter"),
  4386. default: true
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(175, "lb"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/xera/front.svg",
  4399. extra: 2377 / 1972,
  4400. bottom: 75.5 / 2452
  4401. }
  4402. },
  4403. side: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(175, "lb"),
  4406. name: "Side",
  4407. image: {
  4408. source: "./media/characters/xera/side.svg",
  4409. extra: 2345 / 2019,
  4410. bottom: 39.7 / 2384
  4411. }
  4412. },
  4413. back: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(175, "lb"),
  4416. name: "Back",
  4417. image: {
  4418. source: "./media/characters/xera/back.svg",
  4419. extra: 2095 / 1984,
  4420. bottom: 67 / 2166
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Small",
  4427. height: math.unit(10, "feet")
  4428. },
  4429. {
  4430. name: "Macro",
  4431. height: math.unit(500, "meters"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Macro+",
  4436. height: math.unit(10, "km")
  4437. },
  4438. {
  4439. name: "Gigamacro",
  4440. height: math.unit(25000, "km")
  4441. },
  4442. {
  4443. name: "Teramacro",
  4444. height: math.unit(3e6, "km")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(175, "lb"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/nebula/front.svg",
  4457. extra: 2566 / 2362,
  4458. bottom: 81 / 2644
  4459. }
  4460. }
  4461. },
  4462. [
  4463. {
  4464. name: "Small",
  4465. height: math.unit(4.5, "meters")
  4466. },
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(1500, "meters"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Megamacro",
  4474. height: math.unit(150, "km")
  4475. },
  4476. {
  4477. name: "Gigamacro",
  4478. height: math.unit(27000, "km")
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4484. {
  4485. front: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(225, "lb"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/abysgar/front.svg"
  4491. }
  4492. }
  4493. },
  4494. [
  4495. {
  4496. name: "Small",
  4497. height: math.unit(4.5, "meters")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(1250, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(125, "km")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(26000, "km")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(6, "feet"),
  4519. weight: math.unit(180, "lb"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/yakuz/front.svg"
  4523. }
  4524. }
  4525. },
  4526. [
  4527. {
  4528. name: "Small",
  4529. height: math.unit(5, "meters")
  4530. },
  4531. {
  4532. name: "Macro",
  4533. height: math.unit(1500, "meters"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Megamacro",
  4538. height: math.unit(200, "km")
  4539. },
  4540. {
  4541. name: "Gigamacro",
  4542. height: math.unit(100000, "km")
  4543. }
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(6, "feet"),
  4551. weight: math.unit(175, "lb"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/mirova/front.svg",
  4555. extra: 3334 / 3071,
  4556. bottom: 42 / 3375.6
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Small",
  4563. height: math.unit(5, "meters")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(900, "meters"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Megamacro",
  4572. height: math.unit(135, "km")
  4573. },
  4574. {
  4575. name: "Gigamacro",
  4576. height: math.unit(20000, "km")
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4582. {
  4583. side: {
  4584. height: math.unit(28.35, "feet"),
  4585. weight: math.unit(99.75, "tons"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/asana-mech/side.svg",
  4589. extra: 923 / 699,
  4590. bottom: 50 / 975
  4591. }
  4592. },
  4593. chaingun: {
  4594. height: math.unit(7, "feet"),
  4595. weight: math.unit(2400, "lb"),
  4596. name: "Chaingun",
  4597. image: {
  4598. source: "./media/characters/asana-mech/chaingun.svg"
  4599. }
  4600. },
  4601. laser: {
  4602. height: math.unit(7.12, "feet"),
  4603. weight: math.unit(2000, "lb"),
  4604. name: "Laser",
  4605. image: {
  4606. source: "./media/characters/asana-mech/laser.svg"
  4607. }
  4608. },
  4609. },
  4610. [
  4611. {
  4612. name: "Normal",
  4613. height: math.unit(28.35, "feet"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(2500, "feet")
  4619. },
  4620. {
  4621. name: "Megamacro",
  4622. height: math.unit(25, "miles")
  4623. },
  4624. {
  4625. name: "Examacro",
  4626. height: math.unit(6e8, "lightyears")
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4632. {
  4633. front: {
  4634. height: math.unit(5, "meters"),
  4635. weight: math.unit(1000, "kg"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/asche/front.svg",
  4639. extra: 1258 / 1190,
  4640. bottom: 47 / 1305
  4641. }
  4642. },
  4643. frontUnderwear: {
  4644. height: math.unit(5, "meters"),
  4645. weight: math.unit(1000, "kg"),
  4646. name: "Front (Underwear)",
  4647. image: {
  4648. source: "./media/characters/asche/front-underwear.svg",
  4649. extra: 1258 / 1190,
  4650. bottom: 47 / 1305
  4651. }
  4652. },
  4653. frontDressed: {
  4654. height: math.unit(5, "meters"),
  4655. weight: math.unit(1000, "kg"),
  4656. name: "Front (Dressed)",
  4657. image: {
  4658. source: "./media/characters/asche/front-dressed.svg",
  4659. extra: 1258 / 1190,
  4660. bottom: 47 / 1305
  4661. }
  4662. },
  4663. frontArmor: {
  4664. height: math.unit(5, "meters"),
  4665. weight: math.unit(1000, "kg"),
  4666. name: "Front (Armored)",
  4667. image: {
  4668. source: "./media/characters/asche/front-armored.svg",
  4669. extra: 1374 / 1308,
  4670. bottom: 23 / 1397
  4671. }
  4672. },
  4673. mp724: {
  4674. height: math.unit(0.96, "meters"),
  4675. weight: math.unit(38, "kg"),
  4676. name: "H&K MP724",
  4677. image: {
  4678. source: "./media/characters/asche/h&k-mp724.svg"
  4679. }
  4680. },
  4681. side: {
  4682. height: math.unit(5, "meters"),
  4683. weight: math.unit(1000, "kg"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/asche/side.svg",
  4687. extra: 1717 / 1609,
  4688. bottom: 0.005
  4689. }
  4690. },
  4691. back: {
  4692. height: math.unit(5, "meters"),
  4693. weight: math.unit(1000, "kg"),
  4694. name: "Back",
  4695. image: {
  4696. source: "./media/characters/asche/back.svg",
  4697. extra: 1570 / 1501
  4698. }
  4699. },
  4700. },
  4701. [
  4702. {
  4703. name: "DEFCON 5",
  4704. height: math.unit(5, "meters")
  4705. },
  4706. {
  4707. name: "DEFCON 4",
  4708. height: math.unit(500, "meters"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "DEFCON 3",
  4713. height: math.unit(5, "km")
  4714. },
  4715. {
  4716. name: "DEFCON 2",
  4717. height: math.unit(500, "km")
  4718. },
  4719. {
  4720. name: "DEFCON 1",
  4721. height: math.unit(500000, "km")
  4722. },
  4723. {
  4724. name: "DEFCON 0",
  4725. height: math.unit(3, "gigaparsecs")
  4726. },
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(2, "meters"),
  4734. weight: math.unit(76, "kg"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/gale/front.svg"
  4738. }
  4739. },
  4740. frontAlt1: {
  4741. height: math.unit(2, "meters"),
  4742. weight: math.unit(76, "kg"),
  4743. name: "Front (Alt 1)",
  4744. image: {
  4745. source: "./media/characters/gale/front-alt-1.svg"
  4746. }
  4747. },
  4748. frontAlt2: {
  4749. height: math.unit(2, "meters"),
  4750. weight: math.unit(76, "kg"),
  4751. name: "Front (Alt 2)",
  4752. image: {
  4753. source: "./media/characters/gale/front-alt-2.svg"
  4754. }
  4755. },
  4756. },
  4757. [
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(7, "feet")
  4761. },
  4762. {
  4763. name: "Macro",
  4764. height: math.unit(150, "feet"),
  4765. default: true
  4766. },
  4767. {
  4768. name: "Macro+",
  4769. height: math.unit(300, "feet")
  4770. },
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(5 + 10/12, "feet"),
  4778. weight: math.unit(67, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/draylen/front.svg",
  4782. extra: 832/777,
  4783. bottom: 85/917
  4784. }
  4785. }
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(5 + 10/12, "feet")
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(150, "feet"),
  4795. default: true
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(7 + 9 / 12, "feet"),
  4804. weight: math.unit(379, "lbs"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/chez/front.svg"
  4808. }
  4809. },
  4810. side: {
  4811. height: math.unit(7 + 9 / 12, "feet"),
  4812. weight: math.unit(379, "lbs"),
  4813. name: "Side",
  4814. image: {
  4815. source: "./media/characters/chez/side.svg"
  4816. }
  4817. }
  4818. },
  4819. [
  4820. {
  4821. name: "Normal",
  4822. height: math.unit(7 + 9 / 12, "feet"),
  4823. default: true
  4824. },
  4825. {
  4826. name: "God King",
  4827. height: math.unit(9750000, "meters")
  4828. }
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4833. {
  4834. front: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(275, "lbs"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/kaylum/front.svg",
  4840. bottom: 0.01,
  4841. extra: 1166 / 1031
  4842. }
  4843. },
  4844. frontWingless: {
  4845. height: math.unit(6, "feet"),
  4846. weight: math.unit(275, "lbs"),
  4847. name: "Front (Wingless)",
  4848. image: {
  4849. source: "./media/characters/kaylum/front-wingless.svg",
  4850. bottom: 0.01,
  4851. extra: 1117 / 1031
  4852. }
  4853. }
  4854. },
  4855. [
  4856. {
  4857. name: "Normal",
  4858. height: math.unit(3.05, "meters")
  4859. },
  4860. {
  4861. name: "Master",
  4862. height: math.unit(5.5, "meters")
  4863. },
  4864. {
  4865. name: "Rampage",
  4866. height: math.unit(19, "meters")
  4867. },
  4868. {
  4869. name: "Macro Lite",
  4870. height: math.unit(37, "meters")
  4871. },
  4872. {
  4873. name: "Hyper Predator",
  4874. height: math.unit(61, "meters")
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(138, "meters"),
  4879. default: true
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(5 + 5 / 12, "feet"),
  4888. weight: math.unit(120, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/geta/front.svg",
  4892. extra: 1003/933,
  4893. bottom: 21/1024
  4894. }
  4895. },
  4896. paw: {
  4897. height: math.unit(0.35, "feet"),
  4898. name: "Paw",
  4899. image: {
  4900. source: "./media/characters/geta/paw.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Micro",
  4907. height: math.unit(3, "inches"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(5 + 5 / 12, "feet")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(300, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/tyrnn/front.svg"
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Main Height",
  4931. height: math.unit(355, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Fave. Height",
  4936. height: math.unit(2400, "feet")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(300, "lbs"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/appledectomy/front.svg"
  4949. }
  4950. }
  4951. },
  4952. [
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(2500, "feet")
  4956. },
  4957. {
  4958. name: "Megamacro",
  4959. height: math.unit(50, "miles"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Gigamacro",
  4964. height: math.unit(5000, "miles")
  4965. },
  4966. {
  4967. name: "Teramacro",
  4968. height: math.unit(250000, "miles")
  4969. },
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(200, "lbs"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/vulpes/front.svg",
  4981. extra: 573 / 543,
  4982. bottom: 0.033
  4983. }
  4984. },
  4985. side: {
  4986. height: math.unit(6, "feet"),
  4987. weight: math.unit(200, "lbs"),
  4988. name: "Side",
  4989. image: {
  4990. source: "./media/characters/vulpes/side.svg",
  4991. extra: 577 / 549,
  4992. bottom: 11 / 588
  4993. }
  4994. },
  4995. back: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(200, "lbs"),
  4998. name: "Back",
  4999. image: {
  5000. source: "./media/characters/vulpes/back.svg",
  5001. extra: 573 / 549,
  5002. bottom: 20 / 593
  5003. }
  5004. },
  5005. feet: {
  5006. height: math.unit(1.276, "feet"),
  5007. name: "Feet",
  5008. image: {
  5009. source: "./media/characters/vulpes/feet.svg"
  5010. }
  5011. },
  5012. maw: {
  5013. height: math.unit(1.18, "feet"),
  5014. name: "Maw",
  5015. image: {
  5016. source: "./media/characters/vulpes/maw.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Micro",
  5023. height: math.unit(2, "inches")
  5024. },
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(6.3, "feet")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(850, "feet")
  5032. },
  5033. {
  5034. name: "Megamacro",
  5035. height: math.unit(7500, "feet"),
  5036. default: true
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(570000, "miles")
  5041. }
  5042. ]
  5043. ))
  5044. characterMakers.push(() => makeCharacter(
  5045. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5046. {
  5047. front: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(210, "lbs"),
  5050. name: "Front",
  5051. image: {
  5052. source: "./media/characters/rain-fallen/front.svg"
  5053. }
  5054. },
  5055. side: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(210, "lbs"),
  5058. name: "Side",
  5059. image: {
  5060. source: "./media/characters/rain-fallen/side.svg"
  5061. }
  5062. },
  5063. back: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(210, "lbs"),
  5066. name: "Back",
  5067. image: {
  5068. source: "./media/characters/rain-fallen/back.svg"
  5069. }
  5070. },
  5071. feral: {
  5072. height: math.unit(9, "feet"),
  5073. weight: math.unit(700, "lbs"),
  5074. name: "Feral",
  5075. image: {
  5076. source: "./media/characters/rain-fallen/feral.svg"
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Meddling with Mortals",
  5083. height: math.unit(8 + 8/12, "feet")
  5084. },
  5085. {
  5086. name: "Normal",
  5087. height: math.unit(5, "meter")
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(150, "meter"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Megamacro",
  5096. height: math.unit(278e6, "meter")
  5097. },
  5098. {
  5099. name: "Gigamacro",
  5100. height: math.unit(2e9, "meter")
  5101. },
  5102. {
  5103. name: "Teramacro",
  5104. height: math.unit(8e12, "meter")
  5105. },
  5106. {
  5107. name: "Devourer",
  5108. height: math.unit(14, "zettameters")
  5109. },
  5110. {
  5111. name: "Scarlet King",
  5112. height: math.unit(18, "yottameters")
  5113. },
  5114. {
  5115. name: "Void",
  5116. height: math.unit(1e88, "yottameters")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5122. {
  5123. standing: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(180, "lbs"),
  5126. name: "Standing",
  5127. image: {
  5128. source: "./media/characters/zaakira/standing.svg",
  5129. extra: 1599/1504,
  5130. bottom: 39/1638
  5131. }
  5132. },
  5133. laying: {
  5134. height: math.unit(3, "feet"),
  5135. weight: math.unit(180, "lbs"),
  5136. name: "Laying",
  5137. image: {
  5138. source: "./media/characters/zaakira/laying.svg"
  5139. }
  5140. },
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(12, "feet")
  5146. },
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(279, "feet"),
  5150. default: true
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5156. {
  5157. femSfw: {
  5158. height: math.unit(8, "feet"),
  5159. weight: math.unit(350, "lb"),
  5160. name: "Fem",
  5161. image: {
  5162. source: "./media/characters/sigvald/fem-sfw.svg",
  5163. extra: 182 / 164,
  5164. bottom: 8.7 / 190.5
  5165. }
  5166. },
  5167. femNsfw: {
  5168. height: math.unit(8, "feet"),
  5169. weight: math.unit(350, "lb"),
  5170. name: "Fem (NSFW)",
  5171. image: {
  5172. source: "./media/characters/sigvald/fem-nsfw.svg",
  5173. extra: 182 / 164,
  5174. bottom: 8.7 / 190.5
  5175. }
  5176. },
  5177. maleNsfw: {
  5178. height: math.unit(8, "feet"),
  5179. weight: math.unit(350, "lb"),
  5180. name: "Male (NSFW)",
  5181. image: {
  5182. source: "./media/characters/sigvald/male-nsfw.svg",
  5183. extra: 182 / 164,
  5184. bottom: 8.7 / 190.5
  5185. }
  5186. },
  5187. hermNsfw: {
  5188. height: math.unit(8, "feet"),
  5189. weight: math.unit(350, "lb"),
  5190. name: "Herm (NSFW)",
  5191. image: {
  5192. source: "./media/characters/sigvald/herm-nsfw.svg",
  5193. extra: 182 / 164,
  5194. bottom: 8.7 / 190.5
  5195. }
  5196. },
  5197. dick: {
  5198. height: math.unit(2.36, "feet"),
  5199. name: "Dick",
  5200. image: {
  5201. source: "./media/characters/sigvald/dick.svg"
  5202. }
  5203. },
  5204. eye: {
  5205. height: math.unit(0.31, "feet"),
  5206. name: "Eye",
  5207. image: {
  5208. source: "./media/characters/sigvald/eye.svg"
  5209. }
  5210. },
  5211. mouth: {
  5212. height: math.unit(0.92, "feet"),
  5213. name: "Mouth",
  5214. image: {
  5215. source: "./media/characters/sigvald/mouth.svg"
  5216. }
  5217. },
  5218. paws: {
  5219. height: math.unit(2.2, "feet"),
  5220. name: "Paws",
  5221. image: {
  5222. source: "./media/characters/sigvald/paws.svg"
  5223. }
  5224. }
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(8, "feet")
  5230. },
  5231. {
  5232. name: "Large",
  5233. height: math.unit(12, "feet")
  5234. },
  5235. {
  5236. name: "Larger",
  5237. height: math.unit(20, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(150, "feet")
  5242. },
  5243. {
  5244. name: "Macro+",
  5245. height: math.unit(200, "feet"),
  5246. default: true
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5252. {
  5253. side: {
  5254. height: math.unit(12, "feet"),
  5255. weight: math.unit(2000, "kg"),
  5256. name: "Side",
  5257. image: {
  5258. source: "./media/characters/scott/side.svg",
  5259. extra: 754 / 724,
  5260. bottom: 0.069
  5261. }
  5262. },
  5263. upright: {
  5264. height: math.unit(12, "feet"),
  5265. weight: math.unit(2000, "kg"),
  5266. name: "Upright",
  5267. image: {
  5268. source: "./media/characters/scott/upright.svg",
  5269. extra: 3881 / 3722,
  5270. bottom: 0.05
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(12, "feet"),
  5278. default: true
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5284. {
  5285. side: {
  5286. height: math.unit(8, "meters"),
  5287. weight: math.unit(84755, "lbs"),
  5288. name: "Side",
  5289. image: {
  5290. source: "./media/characters/tobias/side.svg",
  5291. extra: 1474 / 1096,
  5292. bottom: 38.9 / 1513.1235
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Normal",
  5299. height: math.unit(8, "meters"),
  5300. default: true
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5306. {
  5307. front: {
  5308. height: math.unit(5.5, "feet"),
  5309. weight: math.unit(400, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/kieran/front.svg",
  5313. extra: 2694 / 2364,
  5314. bottom: 217 / 2908
  5315. }
  5316. },
  5317. side: {
  5318. height: math.unit(5.5, "feet"),
  5319. weight: math.unit(400, "lbs"),
  5320. name: "Side",
  5321. image: {
  5322. source: "./media/characters/kieran/side.svg",
  5323. extra: 875 / 777,
  5324. bottom: 84.6 / 959
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(5.5, "feet"),
  5332. default: true
  5333. },
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5338. {
  5339. side: {
  5340. height: math.unit(2, "meters"),
  5341. weight: math.unit(70, "kg"),
  5342. name: "Side",
  5343. image: {
  5344. source: "./media/characters/sanya/side.svg",
  5345. bottom: 0.02,
  5346. extra: 1.02
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Small",
  5353. height: math.unit(2, "meters")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(3, "meters")
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(16, "meters"),
  5362. default: true
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(2, "meters"),
  5371. weight: math.unit(120, "kg"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/miranda/front.svg",
  5375. extra: 195 / 185,
  5376. bottom: 10.9 / 206.5
  5377. }
  5378. },
  5379. back: {
  5380. height: math.unit(2, "meters"),
  5381. weight: math.unit(120, "kg"),
  5382. name: "Back",
  5383. image: {
  5384. source: "./media/characters/miranda/back.svg",
  5385. extra: 201 / 193,
  5386. bottom: 2.3 / 203.7
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(10, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "James", species: ["deer"], tags: ["anthro"] },
  5400. {
  5401. side: {
  5402. height: math.unit(2, "meters"),
  5403. weight: math.unit(100, "kg"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/james/front.svg",
  5407. extra: 10 / 8.5
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(8.5, "feet"),
  5415. default: true
  5416. }
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5421. {
  5422. side: {
  5423. height: math.unit(9.5, "feet"),
  5424. weight: math.unit(2500, "lbs"),
  5425. name: "Side",
  5426. image: {
  5427. source: "./media/characters/heather/side.svg"
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Normal",
  5434. height: math.unit(9.5, "feet"),
  5435. default: true
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5441. {
  5442. side: {
  5443. height: math.unit(6.5, "feet"),
  5444. weight: math.unit(400, "lbs"),
  5445. name: "Side",
  5446. image: {
  5447. source: "./media/characters/lukas/side.svg",
  5448. extra: 7.25 / 6.5
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(6.5, "feet"),
  5456. default: true
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5462. {
  5463. side: {
  5464. height: math.unit(5, "feet"),
  5465. weight: math.unit(3000, "lbs"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/louise/side.svg"
  5469. }
  5470. },
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(5, "feet"),
  5476. default: true
  5477. }
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5482. {
  5483. side: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(150, "lbs"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/ramona/side.svg",
  5489. extra: 871/854,
  5490. bottom: 41/912
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(5.3, "meters"),
  5498. default: true
  5499. },
  5500. {
  5501. name: "Macro",
  5502. height: math.unit(20, "stories")
  5503. },
  5504. {
  5505. name: "Macro+",
  5506. height: math.unit(50, "stories")
  5507. },
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5512. {
  5513. standing: {
  5514. height: math.unit(5.75, "feet"),
  5515. weight: math.unit(160, "lbs"),
  5516. name: "Standing",
  5517. image: {
  5518. source: "./media/characters/deerpuff/standing.svg",
  5519. extra: 682 / 624
  5520. }
  5521. },
  5522. sitting: {
  5523. height: math.unit(5.75 / 1.79, "feet"),
  5524. weight: math.unit(160, "lbs"),
  5525. name: "Sitting",
  5526. image: {
  5527. source: "./media/characters/deerpuff/sitting.svg",
  5528. bottom: 44 / 400,
  5529. extra: 1
  5530. }
  5531. },
  5532. taurLaying: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(400, "lbs"),
  5535. name: "Taur (Laying)",
  5536. image: {
  5537. source: "./media/characters/deerpuff/taur-laying.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Puffball",
  5544. height: math.unit(6, "inches")
  5545. },
  5546. {
  5547. name: "Normalpuff",
  5548. height: math.unit(5.75, "feet")
  5549. },
  5550. {
  5551. name: "Macropuff",
  5552. height: math.unit(1500, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Megapuff",
  5557. height: math.unit(500, "miles")
  5558. },
  5559. {
  5560. name: "Gigapuff",
  5561. height: math.unit(250000, "miles")
  5562. },
  5563. {
  5564. name: "Omegapuff",
  5565. height: math.unit(1000, "lightyears")
  5566. },
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5571. {
  5572. stomping: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(170, "lbs"),
  5575. name: "Stomping",
  5576. image: {
  5577. source: "./media/characters/vivian/stomping.svg"
  5578. }
  5579. },
  5580. sitting: {
  5581. height: math.unit(6 / 1.75, "feet"),
  5582. weight: math.unit(170, "lbs"),
  5583. name: "Sitting",
  5584. image: {
  5585. source: "./media/characters/vivian/sitting.svg",
  5586. bottom: 1 / 6.4,
  5587. extra: 1,
  5588. }
  5589. },
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(7, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(10, "stories")
  5600. },
  5601. {
  5602. name: "Macro+",
  5603. height: math.unit(30, "stories")
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(10, "miles")
  5608. },
  5609. {
  5610. name: "Megamacro+",
  5611. height: math.unit(2750000, "meters")
  5612. },
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5617. {
  5618. front: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(160, "lbs"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/prince/front.svg",
  5624. extra: 3400 / 3000
  5625. }
  5626. },
  5627. jumping: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(160, "lbs"),
  5630. name: "Jumping",
  5631. image: {
  5632. source: "./media/characters/prince/jump.svg",
  5633. extra: 2555 / 2134
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(7.75, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Not cute",
  5645. height: math.unit(17, "feet")
  5646. },
  5647. {
  5648. name: "I said NOT",
  5649. height: math.unit(91, "feet")
  5650. },
  5651. {
  5652. name: "Please stop",
  5653. height: math.unit(560, "feet")
  5654. },
  5655. {
  5656. name: "What have you done",
  5657. height: math.unit(2200, "feet")
  5658. },
  5659. {
  5660. name: "Deer God",
  5661. height: math.unit(3.6, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5667. {
  5668. standing: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(300, "lbs"),
  5671. name: "Standing",
  5672. image: {
  5673. source: "./media/characters/psymon/standing.svg",
  5674. extra: 1888 / 1810,
  5675. bottom: 0.05
  5676. }
  5677. },
  5678. slithering: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(300, "lbs"),
  5681. name: "Slithering",
  5682. image: {
  5683. source: "./media/characters/psymon/slithering.svg",
  5684. extra: 1330 / 1224
  5685. }
  5686. },
  5687. slitheringAlt: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(300, "lbs"),
  5690. name: "Slithering (Alt)",
  5691. image: {
  5692. source: "./media/characters/psymon/slithering-alt.svg",
  5693. extra: 1330 / 1224
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(11.25, "feet"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Large",
  5705. height: math.unit(27, "feet")
  5706. },
  5707. {
  5708. name: "Giant",
  5709. height: math.unit(87, "feet")
  5710. },
  5711. {
  5712. name: "Macro",
  5713. height: math.unit(365, "feet")
  5714. },
  5715. {
  5716. name: "Megamacro",
  5717. height: math.unit(3, "miles")
  5718. },
  5719. {
  5720. name: "World Serpent",
  5721. height: math.unit(8000, "miles")
  5722. },
  5723. ]
  5724. ))
  5725. characterMakers.push(() => makeCharacter(
  5726. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5727. {
  5728. front: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(180, "lbs"),
  5731. name: "Front",
  5732. image: {
  5733. source: "./media/characters/daimos/front.svg",
  5734. extra: 4160 / 3897,
  5735. bottom: 0.021
  5736. }
  5737. }
  5738. },
  5739. [
  5740. {
  5741. name: "Normal",
  5742. height: math.unit(8, "feet"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Big Dog",
  5747. height: math.unit(22, "feet")
  5748. },
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(127, "feet")
  5752. },
  5753. {
  5754. name: "Megamacro",
  5755. height: math.unit(3600, "feet")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5761. {
  5762. side: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(180, "lbs"),
  5765. name: "Side",
  5766. image: {
  5767. source: "./media/characters/blake/side.svg",
  5768. extra: 1212 / 1120,
  5769. bottom: 0.05
  5770. }
  5771. },
  5772. crouched: {
  5773. height: math.unit(6 * 0.57, "feet"),
  5774. weight: math.unit(180, "lbs"),
  5775. name: "Crouched",
  5776. image: {
  5777. source: "./media/characters/blake/crouched.svg",
  5778. extra: 840 / 587,
  5779. bottom: 0.04
  5780. }
  5781. },
  5782. bent: {
  5783. height: math.unit(6 * 0.75, "feet"),
  5784. weight: math.unit(180, "lbs"),
  5785. name: "Bent",
  5786. image: {
  5787. source: "./media/characters/blake/bent.svg",
  5788. extra: 592 / 544,
  5789. bottom: 0.035
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(8 + 1 / 6, "feet"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Big Backside",
  5801. height: math.unit(37, "feet")
  5802. },
  5803. {
  5804. name: "Subway Shredder",
  5805. height: math.unit(72, "feet")
  5806. },
  5807. {
  5808. name: "City Carver",
  5809. height: math.unit(1675, "feet")
  5810. },
  5811. {
  5812. name: "Tectonic Tweaker",
  5813. height: math.unit(2300, "miles")
  5814. },
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(180, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/guisetto/front.svg",
  5826. extra: 856 / 817,
  5827. bottom: 0.06
  5828. }
  5829. },
  5830. airborne: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(180, "lbs"),
  5833. name: "Airborne",
  5834. image: {
  5835. source: "./media/characters/guisetto/airborne.svg",
  5836. extra: 584 / 525
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(10 + 11 / 12, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Large",
  5848. height: math.unit(35, "feet")
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(475, "feet")
  5853. },
  5854. ]
  5855. ))
  5856. characterMakers.push(() => makeCharacter(
  5857. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5858. {
  5859. front: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(180, "lbs"),
  5862. name: "Front",
  5863. image: {
  5864. source: "./media/characters/luxor/front.svg",
  5865. extra: 2940 / 2152
  5866. }
  5867. },
  5868. back: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(180, "lbs"),
  5871. name: "Back",
  5872. image: {
  5873. source: "./media/characters/luxor/back.svg",
  5874. extra: 1083 / 960
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(5 + 5 / 6, "feet"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Lamp",
  5886. height: math.unit(50, "feet")
  5887. },
  5888. {
  5889. name: "Lämp",
  5890. height: math.unit(300, "feet")
  5891. },
  5892. {
  5893. name: "The sun is a lamp",
  5894. height: math.unit(250000, "miles")
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5900. {
  5901. front: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(50, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/huoyan/front.svg"
  5907. }
  5908. },
  5909. side: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(180, "lbs"),
  5912. name: "Side",
  5913. image: {
  5914. source: "./media/characters/huoyan/side.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Chef",
  5921. height: math.unit(9, "feet")
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(65, "feet"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(780, "feet")
  5931. },
  5932. {
  5933. name: "Flaming Mountain",
  5934. height: math.unit(4.8, "miles")
  5935. },
  5936. {
  5937. name: "Celestial",
  5938. height: math.unit(765000, "miles")
  5939. },
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(5 + 3 / 4, "feet"),
  5947. weight: math.unit(120, "lbs"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/tails/front.svg"
  5951. }
  5952. }
  5953. },
  5954. [
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(5 + 3 / 4, "feet"),
  5958. default: true
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(4, "feet"),
  5967. weight: math.unit(50, "lbs"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/rainy/front.svg"
  5971. }
  5972. }
  5973. },
  5974. [
  5975. {
  5976. name: "Macro",
  5977. height: math.unit(800, "feet"),
  5978. default: true
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5984. {
  5985. front: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(150, "lbs"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/rainier/front.svg"
  5991. }
  5992. }
  5993. },
  5994. [
  5995. {
  5996. name: "Micro",
  5997. height: math.unit(2, "mm"),
  5998. default: true
  5999. }
  6000. ]
  6001. ))
  6002. characterMakers.push(() => makeCharacter(
  6003. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6004. {
  6005. front: {
  6006. height: math.unit(8 + 4/12, "feet"),
  6007. weight: math.unit(450, "kilograms"),
  6008. volume: math.unit(5, "cups"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/andy-renard/front.svg",
  6012. extra: 1839/1726,
  6013. bottom: 134/1973
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(8 + 4/12, "feet"),
  6018. weight: math.unit(450, "kilograms"),
  6019. volume: math.unit(5, "cups"),
  6020. name: "Back",
  6021. image: {
  6022. source: "./media/characters/andy-renard/back.svg",
  6023. extra: 1838/1710,
  6024. bottom: 105/1943
  6025. }
  6026. },
  6027. },
  6028. [
  6029. {
  6030. name: "Tall",
  6031. height: math.unit(8 + 4/12, "feet")
  6032. },
  6033. {
  6034. name: "Mini Macro",
  6035. height: math.unit(15, "feet"),
  6036. default: true
  6037. },
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(100, "feet")
  6041. },
  6042. {
  6043. name: "Mega Macro",
  6044. height: math.unit(1000, "feet")
  6045. },
  6046. {
  6047. name: "Giga Macro",
  6048. height: math.unit(10, "miles")
  6049. },
  6050. {
  6051. name: "God Macro",
  6052. height: math.unit(1, "multiverse")
  6053. },
  6054. ]
  6055. ))
  6056. characterMakers.push(() => makeCharacter(
  6057. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6058. {
  6059. front: {
  6060. height: math.unit(6, "feet"),
  6061. weight: math.unit(210, "lbs"),
  6062. name: "Front",
  6063. image: {
  6064. source: "./media/characters/cimmaron/front-sfw.svg",
  6065. extra: 701 / 676,
  6066. bottom: 0.046
  6067. }
  6068. },
  6069. back: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(210, "lbs"),
  6072. name: "Back",
  6073. image: {
  6074. source: "./media/characters/cimmaron/back-sfw.svg",
  6075. extra: 701 / 676,
  6076. bottom: 0.046
  6077. }
  6078. },
  6079. frontNsfw: {
  6080. height: math.unit(6, "feet"),
  6081. weight: math.unit(210, "lbs"),
  6082. name: "Front (NSFW)",
  6083. image: {
  6084. source: "./media/characters/cimmaron/front-nsfw.svg",
  6085. extra: 701 / 676,
  6086. bottom: 0.046
  6087. }
  6088. },
  6089. backNsfw: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(210, "lbs"),
  6092. name: "Back (NSFW)",
  6093. image: {
  6094. source: "./media/characters/cimmaron/back-nsfw.svg",
  6095. extra: 701 / 676,
  6096. bottom: 0.046
  6097. }
  6098. },
  6099. dick: {
  6100. height: math.unit(1.714, "feet"),
  6101. name: "Dick",
  6102. image: {
  6103. source: "./media/characters/cimmaron/dick.svg"
  6104. }
  6105. },
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(6, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro Mayor",
  6115. height: math.unit(350, "meters")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(200, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/akari/front.svg",
  6128. extra: 962 / 901,
  6129. bottom: 0.04
  6130. }
  6131. }
  6132. },
  6133. [
  6134. {
  6135. name: "Micro",
  6136. height: math.unit(5, "inches"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(7, "feet")
  6142. },
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(140, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/cynosura/front.svg",
  6154. extra: 896 / 847
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(6, "feet"),
  6159. weight: math.unit(140, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/cynosura/back.svg",
  6163. extra: 1365 / 1250
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Micro",
  6170. height: math.unit(4, "inches")
  6171. },
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(5.75, "feet"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Tall",
  6179. height: math.unit(10, "feet")
  6180. },
  6181. {
  6182. name: "Big",
  6183. height: math.unit(20, "feet")
  6184. },
  6185. {
  6186. name: "Macro",
  6187. height: math.unit(50, "feet")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(13 + 2/12, "feet"),
  6196. weight: math.unit(800, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/gin/front.svg",
  6200. extra: 1312/1191,
  6201. bottom: 45/1357
  6202. }
  6203. },
  6204. mouth: {
  6205. height: math.unit(2.39 * 1.8, "feet"),
  6206. name: "Mouth",
  6207. image: {
  6208. source: "./media/characters/gin/mouth.svg"
  6209. }
  6210. },
  6211. hand: {
  6212. height: math.unit(1.57 * 2.19, "feet"),
  6213. name: "Hand",
  6214. image: {
  6215. source: "./media/characters/gin/hand.svg"
  6216. }
  6217. },
  6218. foot: {
  6219. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6220. name: "Foot",
  6221. image: {
  6222. source: "./media/characters/gin/foot.svg"
  6223. }
  6224. },
  6225. sole: {
  6226. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6227. name: "Sole",
  6228. image: {
  6229. source: "./media/characters/gin/sole.svg"
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Very Small",
  6236. height: math.unit(13 + 2 / 12, "feet")
  6237. },
  6238. {
  6239. name: "Micro",
  6240. height: math.unit(600, "miles")
  6241. },
  6242. {
  6243. name: "Regular",
  6244. height: math.unit(20, "earths"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Macro",
  6249. height: math.unit(2.2, "solarradii")
  6250. },
  6251. {
  6252. name: "Teramacro",
  6253. height: math.unit(1.2, "galaxies")
  6254. },
  6255. {
  6256. name: "Omegamacro",
  6257. height: math.unit(200, "universes")
  6258. },
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(6 + 1 / 6, "feet"),
  6266. weight: math.unit(178, "lbs"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/guy/front.svg"
  6270. }
  6271. }
  6272. },
  6273. [
  6274. {
  6275. name: "Normal",
  6276. height: math.unit(6 + 1 / 6, "feet"),
  6277. default: true
  6278. },
  6279. {
  6280. name: "Large",
  6281. height: math.unit(25 + 7 / 12, "feet")
  6282. },
  6283. {
  6284. name: "Macro",
  6285. height: math.unit(60 + 9 / 12, "feet")
  6286. },
  6287. {
  6288. name: "Macro+",
  6289. height: math.unit(246, "feet")
  6290. },
  6291. {
  6292. name: "Macro++",
  6293. height: math.unit(878, "feet")
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(9, "feet"),
  6302. weight: math.unit(800, "lbs"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/tiberius/front.svg",
  6306. extra: 2295 / 2071
  6307. }
  6308. },
  6309. back: {
  6310. height: math.unit(9, "feet"),
  6311. weight: math.unit(800, "lbs"),
  6312. name: "Back",
  6313. image: {
  6314. source: "./media/characters/tiberius/back.svg",
  6315. extra: 2373 / 2160
  6316. }
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(9, "feet"),
  6323. default: true
  6324. }
  6325. ]
  6326. ))
  6327. characterMakers.push(() => makeCharacter(
  6328. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6329. {
  6330. front: {
  6331. height: math.unit(6, "feet"),
  6332. weight: math.unit(600, "lbs"),
  6333. name: "Front",
  6334. image: {
  6335. source: "./media/characters/surgo/front.svg",
  6336. extra: 3591 / 2227
  6337. }
  6338. },
  6339. back: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(600, "lbs"),
  6342. name: "Back",
  6343. image: {
  6344. source: "./media/characters/surgo/back.svg",
  6345. extra: 3557 / 2228
  6346. }
  6347. },
  6348. laying: {
  6349. height: math.unit(6 * 0.85, "feet"),
  6350. weight: math.unit(600, "lbs"),
  6351. name: "Laying",
  6352. image: {
  6353. source: "./media/characters/surgo/laying.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(6, "feet"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6367. {
  6368. side: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(150, "lbs"),
  6371. name: "Side",
  6372. image: {
  6373. source: "./media/characters/cibus/side.svg",
  6374. extra: 800 / 400
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(6, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(240, "lbs"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/nibbles/front.svg"
  6395. }
  6396. },
  6397. side: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(240, "lbs"),
  6400. name: "Side",
  6401. image: {
  6402. source: "./media/characters/nibbles/side.svg"
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(9, "feet"),
  6410. default: true
  6411. }
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6416. {
  6417. side: {
  6418. height: math.unit(5 + 1 / 6, "feet"),
  6419. weight: math.unit(130, "lbs"),
  6420. name: "Side",
  6421. image: {
  6422. source: "./media/characters/rikky/side.svg",
  6423. extra: 851 / 801
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(5 + 1 / 6, "feet")
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(152, "feet"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Megamacro",
  6439. height: math.unit(7, "miles")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6445. {
  6446. side: {
  6447. height: math.unit(370, "cm"),
  6448. weight: math.unit(350, "lbs"),
  6449. name: "Side",
  6450. image: {
  6451. source: "./media/characters/malfressa/side.svg"
  6452. }
  6453. },
  6454. walking: {
  6455. height: math.unit(370, "cm"),
  6456. weight: math.unit(350, "lbs"),
  6457. name: "Walking",
  6458. image: {
  6459. source: "./media/characters/malfressa/walking.svg"
  6460. }
  6461. },
  6462. feral: {
  6463. height: math.unit(2500, "cm"),
  6464. weight: math.unit(100000, "lbs"),
  6465. name: "Feral",
  6466. image: {
  6467. source: "./media/characters/malfressa/feral.svg",
  6468. extra: 2108 / 837,
  6469. bottom: 0.02
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(370, "cm")
  6477. },
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(300, "meters"),
  6481. default: true
  6482. }
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(6, "feet"),
  6490. weight: math.unit(60, "kg"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/jaro/front.svg",
  6494. extra: 845/817,
  6495. bottom: 45/890
  6496. }
  6497. },
  6498. back: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(60, "kg"),
  6501. name: "Back",
  6502. image: {
  6503. source: "./media/characters/jaro/back.svg",
  6504. extra: 847/817,
  6505. bottom: 34/881
  6506. }
  6507. },
  6508. },
  6509. [
  6510. {
  6511. name: "Micro",
  6512. height: math.unit(7, "inches")
  6513. },
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(5.5, "feet"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Minimacro",
  6521. height: math.unit(20, "feet")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(200, "meters")
  6526. }
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(195, "lb"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/rogue/front.svg"
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Macro",
  6544. height: math.unit(90, "feet"),
  6545. default: true
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6551. {
  6552. standing: {
  6553. height: math.unit(5 + 8 / 12, "feet"),
  6554. weight: math.unit(140, "lb"),
  6555. name: "Standing",
  6556. image: {
  6557. source: "./media/characters/piper/standing.svg",
  6558. extra: 1440/1284,
  6559. bottom: 66/1506
  6560. }
  6561. },
  6562. running: {
  6563. height: math.unit(5 + 8 / 12, "feet"),
  6564. weight: math.unit(140, "lb"),
  6565. name: "Running",
  6566. image: {
  6567. source: "./media/characters/piper/running.svg",
  6568. extra: 3948/3655,
  6569. bottom: 0/3948
  6570. }
  6571. },
  6572. sole: {
  6573. height: math.unit(0.81, "feet"),
  6574. weight: math.unit(2, "kg"),
  6575. name: "Sole",
  6576. image: {
  6577. source: "./media/characters/piper/sole.svg"
  6578. }
  6579. },
  6580. nipple: {
  6581. height: math.unit(0.25, "feet"),
  6582. weight: math.unit(1.5, "lb"),
  6583. name: "Nipple",
  6584. image: {
  6585. source: "./media/characters/piper/nipple.svg"
  6586. }
  6587. },
  6588. head: {
  6589. height: math.unit(1.1, "feet"),
  6590. name: "Head",
  6591. image: {
  6592. source: "./media/characters/piper/head.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Micro",
  6599. height: math.unit(2, "inches")
  6600. },
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(5 + 8 / 12, "feet")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(250, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(7, "miles")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(220, "lb"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/gemini/front.svg"
  6625. }
  6626. },
  6627. back: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(220, "lb"),
  6630. name: "Back",
  6631. image: {
  6632. source: "./media/characters/gemini/back.svg"
  6633. }
  6634. },
  6635. kneeling: {
  6636. height: math.unit(6 / 1.5, "feet"),
  6637. weight: math.unit(220, "lb"),
  6638. name: "Kneeling",
  6639. image: {
  6640. source: "./media/characters/gemini/kneeling.svg",
  6641. bottom: 0.02
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(300, "meters"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(6900, "meters")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6659. {
  6660. anthro: {
  6661. height: math.unit(2.35, "meters"),
  6662. weight: math.unit(73, "kg"),
  6663. name: "Anthro",
  6664. image: {
  6665. source: "./media/characters/alicia/anthro.svg",
  6666. extra: 2571 / 2385,
  6667. bottom: 75 / 2648
  6668. }
  6669. },
  6670. paw: {
  6671. height: math.unit(1.32, "feet"),
  6672. name: "Paw",
  6673. image: {
  6674. source: "./media/characters/alicia/paw.svg"
  6675. }
  6676. },
  6677. feral: {
  6678. height: math.unit(1.69, "meters"),
  6679. weight: math.unit(73, "kg"),
  6680. name: "Feral",
  6681. image: {
  6682. source: "./media/characters/alicia/feral.svg",
  6683. extra: 2123 / 1715,
  6684. bottom: 222 / 2349
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(2.35, "meters")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(60, "meters"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(10000, "kilometers")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(7, "feet"),
  6709. weight: math.unit(250, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/archy/front.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(1, "inch")
  6720. },
  6721. {
  6722. name: "Shorty",
  6723. height: math.unit(5, "feet")
  6724. },
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(7, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(600, "meters"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(1, "mile")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(1.65, "meters"),
  6745. weight: math.unit(74, "kg"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/berri/front.svg",
  6749. extra: 857 / 837,
  6750. bottom: 18 / 877
  6751. }
  6752. },
  6753. bum: {
  6754. height: math.unit(1.46, "feet"),
  6755. name: "Bum",
  6756. image: {
  6757. source: "./media/characters/berri/bum.svg"
  6758. }
  6759. },
  6760. mouth: {
  6761. height: math.unit(0.44, "feet"),
  6762. name: "Mouth",
  6763. image: {
  6764. source: "./media/characters/berri/mouth.svg"
  6765. }
  6766. },
  6767. paw: {
  6768. height: math.unit(0.826, "feet"),
  6769. name: "Paw",
  6770. image: {
  6771. source: "./media/characters/berri/paw.svg"
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(1.65, "meters")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(60, "m"),
  6783. default: true
  6784. },
  6785. {
  6786. name: "Megamacro",
  6787. height: math.unit(9.213, "km")
  6788. },
  6789. {
  6790. name: "Planet Eater",
  6791. height: math.unit(489, "megameters")
  6792. },
  6793. {
  6794. name: "Teramacro",
  6795. height: math.unit(2471635000000, "meters")
  6796. },
  6797. {
  6798. name: "Examacro",
  6799. height: math.unit(8.0624e+26, "meters")
  6800. }
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(1.72, "meters"),
  6808. weight: math.unit(68, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/lexi/front.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Very Smol",
  6818. height: math.unit(10, "mm")
  6819. },
  6820. {
  6821. name: "Micro",
  6822. height: math.unit(6.8, "cm"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.72, "m")
  6828. }
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(1.69, "meters"),
  6836. weight: math.unit(68, "kg"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/martin/front.svg",
  6840. extra: 596 / 581
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Micro",
  6847. height: math.unit(6.85, "cm"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(1.69, "m")
  6853. }
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(1.69, "meters"),
  6861. weight: math.unit(68, "kg"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/juno/front.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(7, "cm")
  6872. },
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(1.89, "m")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(353, "meters"),
  6880. default: true
  6881. }
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(1.93, "meters"),
  6889. weight: math.unit(83, "kg"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/samantha/front.svg"
  6893. }
  6894. },
  6895. frontClothed: {
  6896. height: math.unit(1.93, "meters"),
  6897. weight: math.unit(83, "kg"),
  6898. name: "Front (Clothed)",
  6899. image: {
  6900. source: "./media/characters/samantha/front-clothed.svg"
  6901. }
  6902. },
  6903. back: {
  6904. height: math.unit(1.93, "meters"),
  6905. weight: math.unit(83, "kg"),
  6906. name: "Back",
  6907. image: {
  6908. source: "./media/characters/samantha/back.svg"
  6909. }
  6910. },
  6911. },
  6912. [
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.93, "m")
  6916. },
  6917. {
  6918. name: "Macro",
  6919. height: math.unit(74, "meters"),
  6920. default: true
  6921. },
  6922. {
  6923. name: "Macro+",
  6924. height: math.unit(223, "meters"),
  6925. },
  6926. {
  6927. name: "Megamacro",
  6928. height: math.unit(8381, "meters"),
  6929. },
  6930. {
  6931. name: "Megamacro+",
  6932. height: math.unit(12000, "kilometers")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(1.92, "meters"),
  6941. weight: math.unit(80, "kg"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/dr-clay/front.svg"
  6945. }
  6946. },
  6947. frontClothed: {
  6948. height: math.unit(1.92, "meters"),
  6949. weight: math.unit(80, "kg"),
  6950. name: "Front (Clothed)",
  6951. image: {
  6952. source: "./media/characters/dr-clay/front-clothed.svg"
  6953. }
  6954. }
  6955. },
  6956. [
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(1.92, "m")
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(214, "meters"),
  6964. default: true
  6965. },
  6966. {
  6967. name: "Macro+",
  6968. height: math.unit(12.237, "meters"),
  6969. },
  6970. {
  6971. name: "Megamacro",
  6972. height: math.unit(557, "megameters"),
  6973. },
  6974. {
  6975. name: "Unimaginable",
  6976. height: math.unit(120e9, "lightyears")
  6977. },
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6982. {
  6983. front: {
  6984. height: math.unit(2, "meters"),
  6985. weight: math.unit(80, "kg"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6989. }
  6990. }
  6991. },
  6992. [
  6993. {
  6994. name: "Teramacro",
  6995. height: math.unit(500000, "lightyears"),
  6996. default: true
  6997. },
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7002. {
  7003. crux: {
  7004. height: math.unit(2, "meters"),
  7005. weight: math.unit(150, "kg"),
  7006. name: "Crux",
  7007. image: {
  7008. source: "./media/characters/vemus/crux.svg",
  7009. extra: 1074/936,
  7010. bottom: 23/1097
  7011. }
  7012. },
  7013. skunkTanuki: {
  7014. height: math.unit(2, "meters"),
  7015. weight: math.unit(150, "kg"),
  7016. name: "Skunk-Tanuki",
  7017. image: {
  7018. source: "./media/characters/vemus/skunk-tanuki.svg",
  7019. extra: 926/893,
  7020. bottom: 20/946
  7021. }
  7022. },
  7023. },
  7024. [
  7025. {
  7026. name: "Normal",
  7027. height: math.unit(3.75, "meters"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Big",
  7032. height: math.unit(8, "meters")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(100, "meters")
  7037. },
  7038. {
  7039. name: "Macro+",
  7040. height: math.unit(1500, "meters")
  7041. },
  7042. {
  7043. name: "Stellar",
  7044. height: math.unit(14e8, "meters")
  7045. },
  7046. ]
  7047. ))
  7048. characterMakers.push(() => makeCharacter(
  7049. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7050. {
  7051. front: {
  7052. height: math.unit(2, "meters"),
  7053. weight: math.unit(70, "kg"),
  7054. name: "Front",
  7055. image: {
  7056. source: "./media/characters/beherit/front.svg",
  7057. extra: 1234/1109,
  7058. bottom: 55/1289
  7059. }
  7060. }
  7061. },
  7062. [
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(6, "feet")
  7066. },
  7067. {
  7068. name: "Lorg",
  7069. height: math.unit(25, "feet"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Lorger",
  7074. height: math.unit(75, "feet")
  7075. },
  7076. {
  7077. name: "Macro",
  7078. height: math.unit(200, "meters")
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(2, "meters"),
  7087. weight: math.unit(150, "kg"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/everett/front.svg",
  7091. extra: 1017/866,
  7092. bottom: 86/1103
  7093. }
  7094. },
  7095. paw: {
  7096. height: math.unit(2 / 3.6, "meters"),
  7097. name: "Paw",
  7098. image: {
  7099. source: "./media/characters/everett/paw.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(15, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Lorg",
  7111. height: math.unit(70, "feet"),
  7112. default: true
  7113. },
  7114. {
  7115. name: "Lorger",
  7116. height: math.unit(250, "feet")
  7117. },
  7118. {
  7119. name: "Macro",
  7120. height: math.unit(500, "meters")
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7126. {
  7127. front: {
  7128. height: math.unit(2, "meters"),
  7129. weight: math.unit(86, "kg"),
  7130. name: "Front",
  7131. image: {
  7132. source: "./media/characters/rose/front.svg",
  7133. extra: 1785/1636,
  7134. bottom: 30/1815
  7135. },
  7136. form: "liom",
  7137. default: true
  7138. },
  7139. frontSporty: {
  7140. height: math.unit(2, "meters"),
  7141. weight: math.unit(86, "kg"),
  7142. name: "Front (Sporty)",
  7143. image: {
  7144. source: "./media/characters/rose/front-sporty.svg",
  7145. extra: 350/335,
  7146. bottom: 10/360
  7147. },
  7148. form: "liom"
  7149. },
  7150. frontAlt: {
  7151. height: math.unit(1.6, "meters"),
  7152. weight: math.unit(86, "kg"),
  7153. name: "Front (Alt)",
  7154. image: {
  7155. source: "./media/characters/rose/front-alt.svg",
  7156. extra: 299/283,
  7157. bottom: 3/302
  7158. },
  7159. form: "liom"
  7160. },
  7161. plush: {
  7162. height: math.unit(2, "meters"),
  7163. weight: math.unit(86/3, "kg"),
  7164. name: "Plush",
  7165. image: {
  7166. source: "./media/characters/rose/plush.svg",
  7167. extra: 361/337,
  7168. bottom: 11/372
  7169. },
  7170. form: "plush",
  7171. default: true
  7172. },
  7173. faeStanding: {
  7174. height: math.unit(10, "cm"),
  7175. weight: math.unit(10, "grams"),
  7176. name: "Standing",
  7177. image: {
  7178. source: "./media/characters/rose/fae-standing.svg",
  7179. extra: 1189/1060,
  7180. bottom: 27/1216
  7181. },
  7182. form: "fae",
  7183. default: true
  7184. },
  7185. faeSitting: {
  7186. height: math.unit(5, "cm"),
  7187. weight: math.unit(10, "grams"),
  7188. name: "Sitting",
  7189. image: {
  7190. source: "./media/characters/rose/fae-sitting.svg",
  7191. extra: 737/577,
  7192. bottom: 356/1093
  7193. },
  7194. form: "fae"
  7195. },
  7196. faePaw: {
  7197. height: math.unit(1.35, "cm"),
  7198. name: "Paw",
  7199. image: {
  7200. source: "./media/characters/rose/fae-paw.svg"
  7201. },
  7202. form: "fae"
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "True Micro",
  7208. height: math.unit(9, "cm"),
  7209. form: "liom"
  7210. },
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(16, "cm"),
  7214. form: "liom"
  7215. },
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(1.85, "meters"),
  7219. default: true,
  7220. form: "liom"
  7221. },
  7222. {
  7223. name: "Mini-Macro",
  7224. height: math.unit(5, "meters"),
  7225. form: "liom"
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(15, "meters"),
  7230. form: "liom"
  7231. },
  7232. {
  7233. name: "True Macro",
  7234. height: math.unit(40, "meters"),
  7235. form: "liom"
  7236. },
  7237. {
  7238. name: "City Scale",
  7239. height: math.unit(1, "km"),
  7240. form: "liom"
  7241. },
  7242. {
  7243. name: "Plushie",
  7244. height: math.unit(9, "cm"),
  7245. form: "plush",
  7246. default: true
  7247. },
  7248. {
  7249. name: "Fae",
  7250. height: math.unit(10, "cm"),
  7251. form: "fae",
  7252. default: true
  7253. },
  7254. ],
  7255. {
  7256. "liom": {
  7257. name: "Liom"
  7258. },
  7259. "plush": {
  7260. name: "Plush"
  7261. },
  7262. "fae": {
  7263. name: "Fae Fox",
  7264. default: true
  7265. }
  7266. }
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(2, "meters"),
  7273. weight: math.unit(350, "lbs"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/regal/front.svg"
  7277. }
  7278. },
  7279. back: {
  7280. height: math.unit(2, "meters"),
  7281. weight: math.unit(350, "lbs"),
  7282. name: "Back",
  7283. image: {
  7284. source: "./media/characters/regal/back.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(350, "feet"),
  7292. default: true
  7293. }
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(4 + 11 / 12, "feet"),
  7301. weight: math.unit(100, "lbs"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/opal/front.svg"
  7305. }
  7306. },
  7307. frontAlt: {
  7308. height: math.unit(4 + 11 / 12, "feet"),
  7309. weight: math.unit(100, "lbs"),
  7310. name: "Front (Alt)",
  7311. image: {
  7312. source: "./media/characters/opal/front-alt.svg"
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Small",
  7319. height: math.unit(4 + 11 / 12, "feet")
  7320. },
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(20, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(120, "feet")
  7329. },
  7330. {
  7331. name: "Megamacro",
  7332. height: math.unit(80, "miles")
  7333. },
  7334. {
  7335. name: "True Size",
  7336. height: math.unit(100000, "lightyears")
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(200, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/vector-wuff/front.svg"
  7349. }
  7350. }
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(2.8, "meters")
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(450, "meters"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Megamacro",
  7364. height: math.unit(15, "kilometers")
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(256, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/dannik/front.svg"
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(69.57, "meters"),
  7384. default: true
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(120, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/azura-saharah/front.svg"
  7397. }
  7398. },
  7399. back: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(120, "lbs"),
  7402. name: "Back",
  7403. image: {
  7404. source: "./media/characters/azura-saharah/back.svg"
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(100, "feet"),
  7412. default: true
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7418. {
  7419. side: {
  7420. height: math.unit(5 + 4 / 12, "feet"),
  7421. weight: math.unit(163, "lbs"),
  7422. name: "Side",
  7423. image: {
  7424. source: "./media/characters/kennedy/side.svg"
  7425. }
  7426. }
  7427. },
  7428. [
  7429. {
  7430. name: "Standard Doggo",
  7431. height: math.unit(5 + 4 / 12, "feet")
  7432. },
  7433. {
  7434. name: "Big Doggo",
  7435. height: math.unit(25 + 3 / 12, "feet"),
  7436. default: true
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7442. {
  7443. front: {
  7444. height: math.unit(5 + 5/12, "feet"),
  7445. weight: math.unit(100, "lbs"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/odios-de-lunar/front.svg",
  7449. extra: 1468/1323,
  7450. bottom: 22/1490
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(3, "inches")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(5.5, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(100, "feet")
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7472. {
  7473. back: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(220, "lbs"),
  7476. name: "Back",
  7477. image: {
  7478. source: "./media/characters/mandake/back.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(7, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(78, "feet")
  7491. },
  7492. {
  7493. name: "Macro+",
  7494. height: math.unit(300, "meters")
  7495. },
  7496. {
  7497. name: "Macro++",
  7498. height: math.unit(2400, "feet")
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(5167, "meters")
  7503. },
  7504. {
  7505. name: "Gigamacro",
  7506. height: math.unit(41769, "miles")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(120, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/yozey/front.svg"
  7519. }
  7520. },
  7521. frontAlt: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(120, "lbs"),
  7524. name: "Front (Alt)",
  7525. image: {
  7526. source: "./media/characters/yozey/front-alt.svg"
  7527. }
  7528. },
  7529. side: {
  7530. height: math.unit(6, "feet"),
  7531. weight: math.unit(120, "lbs"),
  7532. name: "Side",
  7533. image: {
  7534. source: "./media/characters/yozey/side.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Micro",
  7541. height: math.unit(3, "inches"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Normal",
  7546. height: math.unit(6, "feet")
  7547. }
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(103, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/valeska-voss/front.svg"
  7559. }
  7560. }
  7561. },
  7562. [
  7563. {
  7564. name: "Mini-Sized Sub",
  7565. height: math.unit(3.1, "inches")
  7566. },
  7567. {
  7568. name: "Mid-Sized Sub",
  7569. height: math.unit(6.2, "inches")
  7570. },
  7571. {
  7572. name: "Full-Sized Sub",
  7573. height: math.unit(9.3, "inches")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5 + 2 / 12, "foot"),
  7578. default: true
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(160, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/gene-zeta/front.svg",
  7591. extra: 3006 / 2826,
  7592. bottom: 182 / 3188
  7593. }
  7594. }
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(6, "inches")
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5 + 11 / 12, "foot"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(140, "feet")
  7609. },
  7610. {
  7611. name: "Supercharged",
  7612. height: math.unit(2500, "feet")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(350, "lbs"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/razinox/front.svg",
  7625. extra: 1686 / 1548,
  7626. bottom: 28.2 / 1868
  7627. }
  7628. },
  7629. back: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(350, "lbs"),
  7632. name: "Back",
  7633. image: {
  7634. source: "./media/characters/razinox/back.svg",
  7635. extra: 1660 / 1590,
  7636. bottom: 15 / 1665
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(10 + 8 / 12, "foot")
  7644. },
  7645. {
  7646. name: "Minimacro",
  7647. height: math.unit(15, "foot")
  7648. },
  7649. {
  7650. name: "Macro",
  7651. height: math.unit(60, "foot"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Megamacro",
  7656. height: math.unit(5, "miles")
  7657. },
  7658. {
  7659. name: "Gigamacro",
  7660. height: math.unit(6000, "miles")
  7661. },
  7662. ]
  7663. ))
  7664. characterMakers.push(() => makeCharacter(
  7665. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7666. {
  7667. front: {
  7668. height: math.unit(6, "feet"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Front",
  7671. image: {
  7672. source: "./media/characters/cobalt/front.svg"
  7673. }
  7674. }
  7675. },
  7676. [
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(8 + 1 / 12, "foot")
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(111, "foot"),
  7684. default: true
  7685. },
  7686. {
  7687. name: "Supracosmic",
  7688. height: math.unit(1e42, "feet")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(5, "inches"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/amanda/front.svg",
  7700. extra: 926/791,
  7701. bottom: 38/964
  7702. }
  7703. },
  7704. back: {
  7705. height: math.unit(5, "inches"),
  7706. name: "Back",
  7707. image: {
  7708. source: "./media/characters/amanda/back.svg",
  7709. extra: 909/805,
  7710. bottom: 43/952
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Micro",
  7717. height: math.unit(5, "inches"),
  7718. default: true
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(2.75, "meters"),
  7727. weight: math.unit(1200, "lb"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/teal/front.svg",
  7731. extra: 2463 / 2320,
  7732. bottom: 166 / 2629
  7733. }
  7734. },
  7735. back: {
  7736. height: math.unit(2.75, "meters"),
  7737. weight: math.unit(1200, "lb"),
  7738. name: "Back",
  7739. image: {
  7740. source: "./media/characters/teal/back.svg",
  7741. extra: 2580 / 2489,
  7742. bottom: 151 / 2731
  7743. }
  7744. },
  7745. sitting: {
  7746. height: math.unit(1.9, "meters"),
  7747. weight: math.unit(1200, "lb"),
  7748. name: "Sitting",
  7749. image: {
  7750. source: "./media/characters/teal/sitting.svg",
  7751. extra: 623 / 590,
  7752. bottom: 121 / 744
  7753. }
  7754. },
  7755. standing: {
  7756. height: math.unit(2.75, "meters"),
  7757. weight: math.unit(1200, "lb"),
  7758. name: "Standing",
  7759. image: {
  7760. source: "./media/characters/teal/standing.svg",
  7761. extra: 923 / 893,
  7762. bottom: 60 / 983
  7763. }
  7764. },
  7765. stretching: {
  7766. height: math.unit(3.65, "meters"),
  7767. weight: math.unit(1200, "lb"),
  7768. name: "Stretching",
  7769. image: {
  7770. source: "./media/characters/teal/stretching.svg",
  7771. extra: 1276 / 1244,
  7772. bottom: 0 / 1276
  7773. }
  7774. },
  7775. legged: {
  7776. height: math.unit(1.3, "meters"),
  7777. weight: math.unit(100, "lb"),
  7778. name: "Legged",
  7779. image: {
  7780. source: "./media/characters/teal/legged.svg",
  7781. extra: 462 / 437,
  7782. bottom: 24 / 486
  7783. }
  7784. },
  7785. naga: {
  7786. height: math.unit(5.4, "meters"),
  7787. weight: math.unit(4000, "lb"),
  7788. name: "Naga",
  7789. image: {
  7790. source: "./media/characters/teal/naga.svg",
  7791. extra: 1902 / 1858,
  7792. bottom: 0 / 1902
  7793. }
  7794. },
  7795. hand: {
  7796. height: math.unit(0.52, "meters"),
  7797. name: "Hand",
  7798. image: {
  7799. source: "./media/characters/teal/hand.svg"
  7800. }
  7801. },
  7802. maw: {
  7803. height: math.unit(0.43, "meters"),
  7804. name: "Maw",
  7805. image: {
  7806. source: "./media/characters/teal/maw.svg"
  7807. }
  7808. },
  7809. slit: {
  7810. height: math.unit(0.25, "meters"),
  7811. name: "Slit",
  7812. image: {
  7813. source: "./media/characters/teal/slit.svg"
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(2.75, "meters"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(300, "feet")
  7826. },
  7827. {
  7828. name: "Macro+",
  7829. height: math.unit(2000, "feet")
  7830. },
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7835. {
  7836. frontCat: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(180, "lbs"),
  7839. name: "Front (Cat)",
  7840. image: {
  7841. source: "./media/characters/ravin-amulet/front-cat.svg"
  7842. }
  7843. },
  7844. frontCatAlt: {
  7845. height: math.unit(6, "feet"),
  7846. weight: math.unit(180, "lbs"),
  7847. name: "Front (Alt, Cat)",
  7848. image: {
  7849. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7850. }
  7851. },
  7852. frontWerewolf: {
  7853. height: math.unit(6 * 1.2, "feet"),
  7854. weight: math.unit(225, "lbs"),
  7855. name: "Front (Werewolf)",
  7856. image: {
  7857. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7858. }
  7859. },
  7860. backWerewolf: {
  7861. height: math.unit(6 * 1.2, "feet"),
  7862. weight: math.unit(225, "lbs"),
  7863. name: "Back (Werewolf)",
  7864. image: {
  7865. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7866. }
  7867. },
  7868. },
  7869. [
  7870. {
  7871. name: "Nano",
  7872. height: math.unit(1, "micrometer")
  7873. },
  7874. {
  7875. name: "Micro",
  7876. height: math.unit(1, "inch")
  7877. },
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(6, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Macro",
  7885. height: math.unit(60, "feet")
  7886. }
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(165, "lbs"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/fluoresce/front.svg"
  7898. }
  7899. }
  7900. },
  7901. [
  7902. {
  7903. name: "Micro",
  7904. height: math.unit(6, "cm")
  7905. },
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(5 + 7 / 12, "feet"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Macro",
  7913. height: math.unit(56, "feet")
  7914. },
  7915. {
  7916. name: "Megamacro",
  7917. height: math.unit(1.9, "miles")
  7918. },
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7923. {
  7924. front: {
  7925. height: math.unit(9 + 6 / 12, "feet"),
  7926. weight: math.unit(523, "lbs"),
  7927. name: "Side",
  7928. image: {
  7929. source: "./media/characters/aurora/side.svg"
  7930. }
  7931. }
  7932. },
  7933. [
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(9 + 6 / 12, "feet")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(96, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro+",
  7945. height: math.unit(243, "feet")
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(194, "cm"),
  7954. weight: math.unit(90, "kg"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/ranek/front.svg",
  7958. extra: 1862/1791,
  7959. bottom: 80/1942
  7960. }
  7961. },
  7962. back: {
  7963. height: math.unit(194, "cm"),
  7964. weight: math.unit(90, "kg"),
  7965. name: "Back",
  7966. image: {
  7967. source: "./media/characters/ranek/back.svg",
  7968. extra: 1853/1787,
  7969. bottom: 74/1927
  7970. }
  7971. },
  7972. feral: {
  7973. height: math.unit(30, "cm"),
  7974. weight: math.unit(1.6, "lbs"),
  7975. name: "Feral",
  7976. image: {
  7977. source: "./media/characters/ranek/feral.svg",
  7978. extra: 990/631,
  7979. bottom: 29/1019
  7980. }
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(194, "cm"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(100, "meters")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(5 + 6 / 12, "feet"),
  8000. weight: math.unit(153, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/andrew-cooper/front.svg"
  8004. }
  8005. },
  8006. },
  8007. [
  8008. {
  8009. name: "Nano",
  8010. height: math.unit(1, "mm")
  8011. },
  8012. {
  8013. name: "Micro",
  8014. height: math.unit(2, "inches")
  8015. },
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(5 + 6 / 12, "feet"),
  8019. default: true
  8020. }
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(6, "feet"),
  8028. weight: math.unit(180, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/akane-sato/front.svg",
  8032. extra: 1219 / 1140
  8033. }
  8034. },
  8035. back: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(180, "lbs"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/akane-sato/back.svg",
  8041. extra: 1219 / 1170
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Normal",
  8048. height: math.unit(2.5, "meters")
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(250, "meters"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Megamacro",
  8057. height: math.unit(25, "km")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(65, "kg"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/rook/front.svg",
  8070. extra: 960 / 950
  8071. }
  8072. }
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(8.8, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(88, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(8, "miles")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(12 + 2 / 12, "feet"),
  8095. weight: math.unit(808, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/prodigy/front.svg"
  8099. }
  8100. }
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(12 + 2 / 12, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Macro",
  8110. height: math.unit(143, "feet")
  8111. },
  8112. {
  8113. name: "Macro+",
  8114. height: math.unit(400, "feet")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(225, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/daniel/front.svg"
  8127. }
  8128. },
  8129. leaning: {
  8130. height: math.unit(6, "feet"),
  8131. weight: math.unit(225, "lbs"),
  8132. name: "Leaning",
  8133. image: {
  8134. source: "./media/characters/daniel/leaning.svg"
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(1000, "feet"),
  8142. default: true
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(88, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/chiros/front.svg",
  8155. extra: 306 / 226
  8156. }
  8157. },
  8158. side: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(88, "lbs"),
  8161. name: "Side",
  8162. image: {
  8163. source: "./media/characters/chiros/side.svg",
  8164. extra: 306 / 226
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(6, "cm"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(100, "lbs"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/selka/front.svg",
  8185. extra: 947 / 887
  8186. }
  8187. }
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(5, "cm"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(8 + 3 / 12, "feet"),
  8202. weight: math.unit(424, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/verin/front.svg",
  8206. extra: 1845 / 1550
  8207. }
  8208. },
  8209. frontArmored: {
  8210. height: math.unit(8 + 3 / 12, "feet"),
  8211. weight: math.unit(424, "lbs"),
  8212. name: "Front (Armored)",
  8213. image: {
  8214. source: "./media/characters/verin/front-armor.svg",
  8215. extra: 1845 / 1550,
  8216. bottom: 0.01
  8217. }
  8218. },
  8219. back: {
  8220. height: math.unit(8 + 3 / 12, "feet"),
  8221. weight: math.unit(424, "lbs"),
  8222. name: "Back",
  8223. image: {
  8224. source: "./media/characters/verin/back.svg",
  8225. bottom: 0.1,
  8226. extra: 1
  8227. }
  8228. },
  8229. foot: {
  8230. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8231. name: "Foot",
  8232. image: {
  8233. source: "./media/characters/verin/foot.svg"
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(8 + 3 / 12, "feet")
  8241. },
  8242. {
  8243. name: "Minimacro",
  8244. height: math.unit(21, "feet"),
  8245. default: true
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(626, "feet")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2.718, "meters"),
  8258. weight: math.unit(150, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/sovrim-terraquian/front.svg",
  8262. extra: 1752/1689,
  8263. bottom: 36/1788
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(2.718, "meters"),
  8268. weight: math.unit(150, "lbs"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/sovrim-terraquian/back.svg",
  8272. extra: 1698/1657,
  8273. bottom: 58/1756
  8274. }
  8275. },
  8276. tongue: {
  8277. height: math.unit(2.865, "feet"),
  8278. name: "Tongue",
  8279. image: {
  8280. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8281. }
  8282. },
  8283. hand: {
  8284. height: math.unit(1.61, "feet"),
  8285. name: "Hand",
  8286. image: {
  8287. source: "./media/characters/sovrim-terraquian/hand.svg"
  8288. }
  8289. },
  8290. foot: {
  8291. height: math.unit(1.05, "feet"),
  8292. name: "Foot",
  8293. image: {
  8294. source: "./media/characters/sovrim-terraquian/foot.svg"
  8295. }
  8296. },
  8297. footAlt: {
  8298. height: math.unit(0.88, "feet"),
  8299. name: "Foot (Alt)",
  8300. image: {
  8301. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Micro",
  8308. height: math.unit(2, "inches")
  8309. },
  8310. {
  8311. name: "Small",
  8312. height: math.unit(1, "meter")
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(Math.E, "meters"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Macro",
  8321. height: math.unit(20, "meters")
  8322. },
  8323. {
  8324. name: "Macro+",
  8325. height: math.unit(400, "meters")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(7, "feet"),
  8334. weight: math.unit(489, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/reece-silvermane/front.svg",
  8338. bottom: 0.02,
  8339. extra: 1
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(1.5, "miles"),
  8347. default: true
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(78, "kg"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/kane/front.svg",
  8360. extra: 978 / 899
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(2.1, "m"),
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(1, "km"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(200, "kg"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/tegon/front.svg",
  8385. bottom: 0.01,
  8386. extra: 1
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(1, "inch")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(6 + 3 / 12, "feet"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(300, "feet")
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(69, "miles")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8412. {
  8413. side: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(2304, "lbs"),
  8416. name: "Side",
  8417. image: {
  8418. source: "./media/characters/arcturax/side.svg",
  8419. extra: 790 / 376,
  8420. bottom: 0.01
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(2, "inch")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(6, "feet")
  8432. },
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(39, "feet"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Megamacro",
  8440. height: math.unit(7, "miles")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(50, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/sentri/front.svg",
  8453. extra: 1750 / 1570,
  8454. bottom: 0.025
  8455. }
  8456. },
  8457. frontAlt: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(50, "lbs"),
  8460. name: "Front (Alt)",
  8461. image: {
  8462. source: "./media/characters/sentri/front-alt.svg",
  8463. extra: 1750 / 1570,
  8464. bottom: 0.025
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(15, "feet"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Macro",
  8476. height: math.unit(2500, "feet")
  8477. }
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(5 + 8 / 12, "feet"),
  8485. weight: math.unit(130, "lbs"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/corvin/front.svg",
  8489. extra: 1803 / 1629
  8490. }
  8491. },
  8492. frontShirt: {
  8493. height: math.unit(5 + 8 / 12, "feet"),
  8494. weight: math.unit(130, "lbs"),
  8495. name: "Front (Shirt)",
  8496. image: {
  8497. source: "./media/characters/corvin/front-shirt.svg",
  8498. extra: 1803 / 1629
  8499. }
  8500. },
  8501. frontPoncho: {
  8502. height: math.unit(5 + 8 / 12, "feet"),
  8503. weight: math.unit(130, "lbs"),
  8504. name: "Front (Poncho)",
  8505. image: {
  8506. source: "./media/characters/corvin/front-poncho.svg",
  8507. extra: 1803 / 1629
  8508. }
  8509. },
  8510. side: {
  8511. height: math.unit(5 + 8 / 12, "feet"),
  8512. weight: math.unit(130, "lbs"),
  8513. name: "Side",
  8514. image: {
  8515. source: "./media/characters/corvin/side.svg",
  8516. extra: 1012 / 945
  8517. }
  8518. },
  8519. back: {
  8520. height: math.unit(5 + 8 / 12, "feet"),
  8521. weight: math.unit(130, "lbs"),
  8522. name: "Back",
  8523. image: {
  8524. source: "./media/characters/corvin/back.svg",
  8525. extra: 1803 / 1629
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Micro",
  8532. height: math.unit(3, "inches")
  8533. },
  8534. {
  8535. name: "Normal",
  8536. height: math.unit(5 + 8 / 12, "feet")
  8537. },
  8538. {
  8539. name: "Macro",
  8540. height: math.unit(300, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Megamacro",
  8545. height: math.unit(500, "miles")
  8546. }
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(135, "lbs"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/q/front.svg",
  8558. extra: 854 / 752,
  8559. bottom: 0.005
  8560. }
  8561. },
  8562. back: {
  8563. height: math.unit(6, "feet"),
  8564. weight: math.unit(130, "lbs"),
  8565. name: "Back",
  8566. image: {
  8567. source: "./media/characters/q/back.svg",
  8568. extra: 854 / 752
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(90, "feet"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Extra Macro",
  8580. height: math.unit(300, "feet"),
  8581. },
  8582. {
  8583. name: "BIG WALF",
  8584. height: math.unit(750, "feet"),
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(150, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/carley/front.svg",
  8597. extra: 3927 / 3540,
  8598. bottom: 29.2 / 735
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Normal",
  8605. height: math.unit(6 + 3 / 12, "feet")
  8606. },
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(185, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Megamacro",
  8614. height: math.unit(8, "miles"),
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(3, "feet"),
  8623. weight: math.unit(28, "lbs"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/citrine/front.svg"
  8627. }
  8628. }
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(3, "feet"),
  8634. default: true
  8635. }
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8640. {
  8641. front: {
  8642. height: math.unit(14, "feet"),
  8643. weight: math.unit(1450, "kg"),
  8644. capacity: math.unit(15, "people"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/aura-starwind/front.svg",
  8648. extra: 1440/1327,
  8649. bottom: 11/1451
  8650. }
  8651. },
  8652. side: {
  8653. height: math.unit(14, "feet"),
  8654. weight: math.unit(1450, "kg"),
  8655. capacity: math.unit(15, "people"),
  8656. name: "Side",
  8657. image: {
  8658. source: "./media/characters/aura-starwind/side.svg",
  8659. extra: 1654 / 1497
  8660. }
  8661. },
  8662. taur: {
  8663. height: math.unit(18, "feet"),
  8664. weight: math.unit(5500, "kg"),
  8665. capacity: math.unit(50, "people"),
  8666. name: "Taur",
  8667. image: {
  8668. source: "./media/characters/aura-starwind/taur.svg",
  8669. extra: 1760 / 1650
  8670. }
  8671. },
  8672. feral: {
  8673. height: math.unit(46, "feet"),
  8674. weight: math.unit(25000, "kg"),
  8675. capacity: math.unit(120, "people"),
  8676. name: "Feral",
  8677. image: {
  8678. source: "./media/characters/aura-starwind/feral.svg"
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(14, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(50, "meters")
  8691. },
  8692. {
  8693. name: "Megamacro",
  8694. height: math.unit(5000, "meters")
  8695. },
  8696. {
  8697. name: "Gigamacro",
  8698. height: math.unit(100000, "kilometers")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(2 + 7 / 12, "feet"),
  8707. weight: math.unit(32, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/rivet/front.svg",
  8711. extra: 1716 / 1658,
  8712. bottom: 0.03
  8713. }
  8714. },
  8715. foot: {
  8716. height: math.unit(0.551, "feet"),
  8717. name: "Rivet's Foot",
  8718. image: {
  8719. source: "./media/characters/rivet/foot.svg"
  8720. },
  8721. rename: true
  8722. }
  8723. },
  8724. [
  8725. {
  8726. name: "Micro",
  8727. height: math.unit(1.5, "inches"),
  8728. },
  8729. {
  8730. name: "Normal",
  8731. height: math.unit(2 + 7 / 12, "feet"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(85, "feet")
  8737. },
  8738. {
  8739. name: "Megamacro",
  8740. height: math.unit(2.2, "km")
  8741. }
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8746. {
  8747. front: {
  8748. height: math.unit(5 + 9 / 12, "feet"),
  8749. weight: math.unit(150, "lbs"),
  8750. name: "Front",
  8751. image: {
  8752. source: "./media/characters/coffee/front.svg",
  8753. extra: 3666 / 3032,
  8754. bottom: 0.04
  8755. }
  8756. },
  8757. foot: {
  8758. height: math.unit(1.29, "feet"),
  8759. name: "Foot",
  8760. image: {
  8761. source: "./media/characters/coffee/foot.svg"
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Micro",
  8768. height: math.unit(2, "inches"),
  8769. },
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(5 + 9 / 12, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(800, "feet")
  8778. },
  8779. {
  8780. name: "Megamacro",
  8781. height: math.unit(25, "miles")
  8782. }
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(200, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/chari-gal/front.svg",
  8794. extra: 1568 / 1385,
  8795. bottom: 0.047
  8796. }
  8797. },
  8798. gigantamax: {
  8799. height: math.unit(6 * 16, "feet"),
  8800. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8801. name: "Gigantamax",
  8802. image: {
  8803. source: "./media/characters/chari-gal/gigantamax.svg",
  8804. extra: 1124 / 888,
  8805. bottom: 0.03
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(5 + 7 / 12, "feet")
  8813. },
  8814. {
  8815. name: "Macro",
  8816. height: math.unit(200, "feet"),
  8817. default: true
  8818. }
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(150, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/nova/front.svg",
  8830. extra: 5000 / 4722,
  8831. bottom: 0.02
  8832. }
  8833. }
  8834. },
  8835. [
  8836. {
  8837. name: "Micro-",
  8838. height: math.unit(0.8, "inches")
  8839. },
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(2, "inches"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(3 + 1 / 12, "feet"),
  8852. weight: math.unit(21.7, "lbs"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/argent/front.svg",
  8856. extra: 1471 / 1331,
  8857. bottom: 100.8 / 1575.5
  8858. }
  8859. }
  8860. },
  8861. [
  8862. {
  8863. name: "Micro",
  8864. height: math.unit(2, "inches")
  8865. },
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(3 + 1 / 12, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(120, "feet")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8879. {
  8880. lamp: {
  8881. height: math.unit(7 * 1559 / 989, "feet"),
  8882. name: "Magic Lamp",
  8883. image: {
  8884. source: "./media/characters/mira-al-cul/lamp.svg",
  8885. extra: 1617 / 1559
  8886. }
  8887. },
  8888. front: {
  8889. height: math.unit(7, "feet"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/mira-al-cul/front.svg",
  8893. extra: 1044 / 990
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Heavily Restricted",
  8900. height: math.unit(7 * 1559 / 989, "feet")
  8901. },
  8902. {
  8903. name: "Freshly Freed",
  8904. height: math.unit(50 * 1559 / 989, "feet")
  8905. },
  8906. {
  8907. name: "World Encompassing",
  8908. height: math.unit(10000 * 1559 / 989, "miles")
  8909. },
  8910. {
  8911. name: "Galactic",
  8912. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8913. },
  8914. {
  8915. name: "Palmed Universe",
  8916. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Multiversal Matriarch",
  8921. height: math.unit(8.87e10, "yottameters")
  8922. },
  8923. {
  8924. name: "Void Mother",
  8925. height: math.unit(3.14e110, "yottaparsecs")
  8926. },
  8927. {
  8928. name: "Toying with Transcendence",
  8929. height: math.unit(1e307, "meters")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8935. {
  8936. front: {
  8937. height: math.unit(17 + 1 / 12, "feet"),
  8938. weight: math.unit(476.2 * 5, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/kuro-shi-uchū/front.svg",
  8942. extra: 2329 / 1835,
  8943. bottom: 0.02
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Micro",
  8950. height: math.unit(2, "inches")
  8951. },
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(12, "meters")
  8955. },
  8956. {
  8957. name: "Planetary",
  8958. height: math.unit(0.00929, "AU"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Universal",
  8963. height: math.unit(20, "gigaparsecs")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(5 + 2 / 12, "feet"),
  8972. weight: math.unit(120, "lbs"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/katherine/front.svg",
  8976. extra: 2075 / 1969
  8977. }
  8978. },
  8979. dress: {
  8980. height: math.unit(5 + 2 / 12, "feet"),
  8981. weight: math.unit(120, "lbs"),
  8982. name: "Dress",
  8983. image: {
  8984. source: "./media/characters/katherine/dress.svg",
  8985. extra: 2258 / 2064
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(1, "inches"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(5 + 2 / 12, "feet")
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(100, "meters")
  9002. },
  9003. {
  9004. name: "Megamacro",
  9005. height: math.unit(80, "miles")
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(7 + 8 / 12, "feet"),
  9014. weight: math.unit(250, "lbs"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/yevis/front.svg",
  9018. extra: 1938 / 1755
  9019. }
  9020. }
  9021. },
  9022. [
  9023. {
  9024. name: "Mortal",
  9025. height: math.unit(7 + 8 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Battle",
  9029. height: math.unit(25 + 11 / 12, "feet")
  9030. },
  9031. {
  9032. name: "Wrath",
  9033. height: math.unit(1654 + 11 / 12, "feet")
  9034. },
  9035. {
  9036. name: "Planet Destroyer",
  9037. height: math.unit(12000, "miles")
  9038. },
  9039. {
  9040. name: "Galaxy Conqueror",
  9041. height: math.unit(1.45, "zettameters"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Universal War",
  9046. height: math.unit(184, "gigaparsecs")
  9047. },
  9048. {
  9049. name: "Eternity War",
  9050. height: math.unit(1.98e55, "yottaparsecs")
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(5 + 8 / 12, "feet"),
  9059. weight: math.unit(63, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/xavier/front.svg",
  9063. extra: 944 / 883
  9064. }
  9065. },
  9066. frontStretch: {
  9067. height: math.unit(5 + 8 / 12, "feet"),
  9068. weight: math.unit(63, "kg"),
  9069. name: "Stretching",
  9070. image: {
  9071. source: "./media/characters/xavier/front-stretch.svg",
  9072. extra: 962 / 820
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(5 + 8 / 12, "feet")
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(100, "meters"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "McLargeHuge",
  9088. height: math.unit(10, "miles")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(5 + 5 / 12, "feet"),
  9097. weight: math.unit(150, "lb"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/joshii/front.svg",
  9101. extra: 765 / 653,
  9102. bottom: 51 / 816
  9103. }
  9104. },
  9105. foot: {
  9106. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9107. name: "Foot",
  9108. image: {
  9109. source: "./media/characters/joshii/foot.svg"
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(2, "inches"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(5 + 5 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(785, "feet")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(24.5, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(150, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/goddess-elizabeth/front.svg",
  9142. extra: 1800 / 1525,
  9143. bottom: 0.005
  9144. }
  9145. },
  9146. foot: {
  9147. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9148. name: "Foot",
  9149. image: {
  9150. source: "./media/characters/goddess-elizabeth/foot.svg"
  9151. }
  9152. },
  9153. mouth: {
  9154. height: math.unit(6, "feet"),
  9155. name: "Mouth",
  9156. image: {
  9157. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(12, "feet")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(80, "miles"),
  9169. default: true
  9170. },
  9171. {
  9172. name: "Macro",
  9173. height: math.unit(15000, "parsecs")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(5 + 9 / 12, "feet"),
  9182. weight: math.unit(144, "lb"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/kara/front.svg"
  9186. }
  9187. },
  9188. feet: {
  9189. height: math.unit(6 / 6.765, "feet"),
  9190. name: "Kara's Feet",
  9191. rename: true,
  9192. image: {
  9193. source: "./media/characters/kara/feet.svg"
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(5 + 9 / 12, "feet")
  9201. },
  9202. {
  9203. name: "Macro",
  9204. height: math.unit(174, "feet"),
  9205. default: true
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(18, "feet"),
  9214. weight: math.unit(4050, "lb"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/tyrone/front.svg",
  9218. extra: 2405 / 2270,
  9219. bottom: 182 / 2587
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(18, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(300, "feet")
  9232. },
  9233. {
  9234. name: "Megamacro",
  9235. height: math.unit(15, "km")
  9236. },
  9237. {
  9238. name: "Gigamacro",
  9239. height: math.unit(500, "km")
  9240. },
  9241. {
  9242. name: "Teramacro",
  9243. height: math.unit(0.5, "gigameters")
  9244. },
  9245. {
  9246. name: "Omnimacro",
  9247. height: math.unit(1e252, "yottauniverse")
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(7 + 8 / 12, "feet"),
  9256. weight: math.unit(120, "lb"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/danny/front.svg",
  9260. extra: 1490 / 1350
  9261. }
  9262. },
  9263. back: {
  9264. height: math.unit(7 + 8 / 12, "feet"),
  9265. weight: math.unit(120, "lb"),
  9266. name: "Back",
  9267. image: {
  9268. source: "./media/characters/danny/back.svg",
  9269. extra: 1490 / 1350
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(7 + 8 / 12, "feet"),
  9277. default: true
  9278. },
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9283. {
  9284. front: {
  9285. height: math.unit(3.5, "inches"),
  9286. weight: math.unit(19, "grams"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mallow/front.svg",
  9290. extra: 471 / 431
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(3.5, "inches"),
  9295. weight: math.unit(19, "grams"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/mallow/back.svg",
  9299. extra: 471 / 431
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(3.5, "inches"),
  9307. default: true
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(9, "feet"),
  9316. weight: math.unit(230, "kg"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/starry-aqua/front.svg"
  9320. }
  9321. },
  9322. back: {
  9323. height: math.unit(9, "feet"),
  9324. weight: math.unit(230, "kg"),
  9325. name: "Back",
  9326. image: {
  9327. source: "./media/characters/starry-aqua/back.svg"
  9328. }
  9329. },
  9330. hand: {
  9331. height: math.unit(9 * 0.1168, "feet"),
  9332. name: "Hand",
  9333. image: {
  9334. source: "./media/characters/starry-aqua/hand.svg"
  9335. }
  9336. },
  9337. foot: {
  9338. height: math.unit(9 * 0.18, "feet"),
  9339. name: "Foot",
  9340. image: {
  9341. source: "./media/characters/starry-aqua/foot.svg"
  9342. }
  9343. }
  9344. },
  9345. [
  9346. {
  9347. name: "Micro",
  9348. height: math.unit(3, "inches")
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(9, "feet")
  9353. },
  9354. {
  9355. name: "Macro",
  9356. height: math.unit(300, "feet"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Megamacro",
  9361. height: math.unit(3200, "feet")
  9362. }
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(15, "feet"),
  9370. weight: math.unit(5026, "lb"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/luka-towers/front.svg",
  9374. extra: 1269/1133,
  9375. bottom: 51/1320
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(15, "feet"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Minimacro",
  9387. height: math.unit(25, "feet")
  9388. },
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(320, "feet")
  9392. },
  9393. {
  9394. name: "Megamacro",
  9395. height: math.unit(35000, "feet")
  9396. },
  9397. {
  9398. name: "Gigamacro",
  9399. height: math.unit(4000, "miles")
  9400. },
  9401. {
  9402. name: "Teramacro",
  9403. height: math.unit(15000, "miles")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(150, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/natalie-nightring/front.svg",
  9416. extra: 1,
  9417. bottom: 0.06
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Uh Oh",
  9424. height: math.unit(0.1, "mm")
  9425. },
  9426. {
  9427. name: "Small",
  9428. height: math.unit(3, "inches")
  9429. },
  9430. {
  9431. name: "Human Scale",
  9432. height: math.unit(6, "feet")
  9433. },
  9434. {
  9435. name: "Librarian",
  9436. height: math.unit(50, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Immense",
  9441. height: math.unit(200, "miles")
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(180, "lbs"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/danni-rosie/front.svg",
  9454. extra: 1260 / 1128,
  9455. bottom: 0.022
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Micro",
  9462. height: math.unit(2, "inches"),
  9463. default: true
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9469. {
  9470. front: {
  9471. height: math.unit(5 + 9 / 12, "feet"),
  9472. weight: math.unit(220, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/samantha-kruse/front.svg",
  9476. extra: (985 / 935),
  9477. bottom: 0.03
  9478. }
  9479. },
  9480. frontUndressed: {
  9481. height: math.unit(5 + 9 / 12, "feet"),
  9482. weight: math.unit(220, "lb"),
  9483. name: "Front (Undressed)",
  9484. image: {
  9485. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9486. extra: (973 / 923),
  9487. bottom: 0.025
  9488. }
  9489. },
  9490. fat: {
  9491. height: math.unit(5 + 9 / 12, "feet"),
  9492. weight: math.unit(900, "lb"),
  9493. name: "Front (Fat)",
  9494. image: {
  9495. source: "./media/characters/samantha-kruse/fat.svg",
  9496. extra: 2688 / 2561
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(5 + 9 / 12, "feet"),
  9504. default: true
  9505. }
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9510. {
  9511. back: {
  9512. height: math.unit(5 + 4 / 12, "feet"),
  9513. weight: math.unit(4963, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/amelia-rosie/back.svg",
  9517. extra: 1113 / 963,
  9518. bottom: 0.01
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Level 0",
  9525. height: math.unit(5 + 4 / 12, "feet")
  9526. },
  9527. {
  9528. name: "Level 1",
  9529. height: math.unit(164597, "feet"),
  9530. default: true
  9531. },
  9532. {
  9533. name: "Level 2",
  9534. height: math.unit(956243, "miles")
  9535. },
  9536. {
  9537. name: "Level 3",
  9538. height: math.unit(29421709423, "miles")
  9539. },
  9540. {
  9541. name: "Level 4",
  9542. height: math.unit(154, "lightyears")
  9543. },
  9544. {
  9545. name: "Level 5",
  9546. height: math.unit(4738272, "lightyears")
  9547. },
  9548. {
  9549. name: "Level 6",
  9550. height: math.unit(145787152896, "lightyears")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9556. {
  9557. front: {
  9558. height: math.unit(5 + 11 / 12, "feet"),
  9559. weight: math.unit(65, "kg"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/rook-kitara/front.svg",
  9563. extra: 1347 / 1274,
  9564. bottom: 0.005
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Totally Unfair",
  9571. height: math.unit(1.8, "mm")
  9572. },
  9573. {
  9574. name: "Lap Rookie",
  9575. height: math.unit(1.4, "feet")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(5 + 11 / 12, "feet"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "How Did This Happen",
  9584. height: math.unit(80, "miles")
  9585. }
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(7, "feet"),
  9593. weight: math.unit(300, "lb"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/pisces/front.svg",
  9597. extra: 2255 / 2115,
  9598. bottom: 0.03
  9599. }
  9600. },
  9601. back: {
  9602. height: math.unit(7, "feet"),
  9603. weight: math.unit(300, "lb"),
  9604. name: "Back",
  9605. image: {
  9606. source: "./media/characters/pisces/back.svg",
  9607. extra: 2146 / 2055,
  9608. bottom: 0.04
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(7, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Swimming Pool",
  9620. height: math.unit(12.2, "meters")
  9621. },
  9622. {
  9623. name: "Olympic Swimming Pool",
  9624. height: math.unit(56.3, "meters")
  9625. },
  9626. {
  9627. name: "Lake Superior",
  9628. height: math.unit(93900, "meters")
  9629. },
  9630. {
  9631. name: "Mediterranean Sea",
  9632. height: math.unit(644457, "meters")
  9633. },
  9634. {
  9635. name: "World's Oceans",
  9636. height: math.unit(4567491, "meters")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(2.3, "meters"),
  9645. weight: math.unit(120, "kg"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/zelas/front.svg"
  9649. }
  9650. },
  9651. side: {
  9652. height: math.unit(2.3, "meters"),
  9653. weight: math.unit(120, "kg"),
  9654. name: "Side",
  9655. image: {
  9656. source: "./media/characters/zelas/side.svg"
  9657. }
  9658. },
  9659. back: {
  9660. height: math.unit(2.3, "meters"),
  9661. weight: math.unit(120, "kg"),
  9662. name: "Back",
  9663. image: {
  9664. source: "./media/characters/zelas/back.svg"
  9665. }
  9666. },
  9667. foot: {
  9668. height: math.unit(1.116, "feet"),
  9669. name: "Foot",
  9670. image: {
  9671. source: "./media/characters/zelas/foot.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(2.3, "meters")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(30, "meters"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(1, "inch"),
  9692. weight: math.unit(0.21, "grams"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/talbot/front.svg",
  9696. extra: 594 / 544
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Micro",
  9703. height: math.unit(1, "inch"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9710. {
  9711. front: {
  9712. height: math.unit(3 + 3 / 12, "feet"),
  9713. weight: math.unit(51.8, "lb"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/fliss/front.svg",
  9717. extra: 840 / 640
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Teeny Tiny",
  9724. height: math.unit(1, "mm")
  9725. },
  9726. {
  9727. name: "Small",
  9728. height: math.unit(1, "inch"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Standard Sylveon",
  9733. height: math.unit(3 + 3 / 12, "feet")
  9734. },
  9735. {
  9736. name: "Large Nuisance",
  9737. height: math.unit(33, "feet")
  9738. },
  9739. {
  9740. name: "City Filler",
  9741. height: math.unit(3000, "feet")
  9742. },
  9743. {
  9744. name: "New Horizon",
  9745. height: math.unit(6000, "miles")
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(5, "cm"),
  9754. weight: math.unit(1.94, "g"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/fleta/front.svg",
  9758. extra: 835 / 803
  9759. }
  9760. },
  9761. back: {
  9762. height: math.unit(5, "cm"),
  9763. weight: math.unit(1.94, "g"),
  9764. name: "Back",
  9765. image: {
  9766. source: "./media/characters/fleta/back.svg",
  9767. extra: 835 / 803
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Micro",
  9774. height: math.unit(5, "cm"),
  9775. default: true
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(6, "feet"),
  9784. weight: math.unit(225, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/dominic/front.svg",
  9788. extra: 1770 / 1620,
  9789. bottom: 0.025
  9790. }
  9791. },
  9792. back: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(225, "lb"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/dominic/back.svg",
  9798. extra: 1745 / 1620,
  9799. bottom: 0.065
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Nano",
  9806. height: math.unit(0.1, "mm")
  9807. },
  9808. {
  9809. name: "Micro-",
  9810. height: math.unit(1, "mm")
  9811. },
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(4, "inches")
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(6 + 4 / 12, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(115, "feet")
  9824. },
  9825. {
  9826. name: "Macro+",
  9827. height: math.unit(955, "feet")
  9828. },
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(8990, "feet")
  9832. },
  9833. {
  9834. name: "Gigmacro",
  9835. height: math.unit(9310, "miles")
  9836. },
  9837. {
  9838. name: "Teramacro",
  9839. height: math.unit(1567005010, "miles")
  9840. },
  9841. {
  9842. name: "Examacro",
  9843. height: math.unit(1425, "parsecs")
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(400, "feet"),
  9852. weight: math.unit(44444444, "lb"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/major-colonel/front.svg"
  9856. }
  9857. },
  9858. back: {
  9859. height: math.unit(400, "feet"),
  9860. weight: math.unit(44444444, "lb"),
  9861. name: "Back",
  9862. image: {
  9863. source: "./media/characters/major-colonel/back.svg"
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(400, "feet"),
  9871. default: true
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9877. {
  9878. catFront: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(120, "lb"),
  9881. name: "Front (Cat Side)",
  9882. image: {
  9883. source: "./media/characters/axel-lycan/cat-front.svg",
  9884. extra: 430 / 402,
  9885. bottom: 43 / 472.35
  9886. }
  9887. },
  9888. catBack: {
  9889. height: math.unit(6, "feet"),
  9890. weight: math.unit(120, "lb"),
  9891. name: "Back (Cat Side)",
  9892. image: {
  9893. source: "./media/characters/axel-lycan/cat-back.svg",
  9894. extra: 447 / 419,
  9895. bottom: 23.3 / 469
  9896. }
  9897. },
  9898. wolfFront: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(120, "lb"),
  9901. name: "Front (Wolf Side)",
  9902. image: {
  9903. source: "./media/characters/axel-lycan/wolf-front.svg",
  9904. extra: 485 / 456,
  9905. bottom: 19 / 504
  9906. }
  9907. },
  9908. wolfBack: {
  9909. height: math.unit(6, "feet"),
  9910. weight: math.unit(120, "lb"),
  9911. name: "Back (Wolf Side)",
  9912. image: {
  9913. source: "./media/characters/axel-lycan/wolf-back.svg",
  9914. extra: 475 / 438,
  9915. bottom: 39.2 / 514
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(1, "km"),
  9923. default: true
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(5 + 9 / 12, "feet"),
  9932. weight: math.unit(175, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/vanrel-hyena/front.svg",
  9936. extra: 1086 / 1010,
  9937. bottom: 0.04
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(5 + 9 / 12, "feet"),
  9945. default: true
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(103, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/abbott-absol/front.svg",
  9958. extra: 2010 / 1842
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Megamicro",
  9965. height: math.unit(0.1, "mm")
  9966. },
  9967. {
  9968. name: "Micro",
  9969. height: math.unit(1, "inch")
  9970. },
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(6, "feet"),
  9974. default: true
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(264, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/hector/front.svg",
  9987. extra: 2280 / 2130,
  9988. bottom: 0.07
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(12.25, "foot"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Macro",
  10000. height: math.unit(160, "feet")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/sal/front.svg",
  10013. extra: 1846 / 1699,
  10014. bottom: 0.04
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Megamacro",
  10021. height: math.unit(10, "miles"),
  10022. default: true
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10028. {
  10029. front: {
  10030. height: math.unit(3, "meters"),
  10031. weight: math.unit(450, "kg"),
  10032. name: "front",
  10033. image: {
  10034. source: "./media/characters/ranger/front.svg",
  10035. extra: 2401 / 2243,
  10036. bottom: 0.05
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(3, "meters"),
  10044. default: true
  10045. },
  10046. ]
  10047. ))
  10048. characterMakers.push(() => makeCharacter(
  10049. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10050. {
  10051. front: {
  10052. height: math.unit(14, "feet"),
  10053. weight: math.unit(800, "kg"),
  10054. name: "Front",
  10055. image: {
  10056. source: "./media/characters/theresa/front.svg",
  10057. extra: 3575 / 3346,
  10058. bottom: 0.03
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(14, "feet"),
  10066. default: true
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10072. {
  10073. front: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(3, "kg"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/ine/front.svg",
  10079. extra: 678 / 539,
  10080. bottom: 0.023
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(2.265, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(5, "feet"),
  10097. weight: math.unit(30, "kg"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/vial/front.svg",
  10101. extra: 1365 / 1277,
  10102. bottom: 0.04
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(5, "feet"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10116. {
  10117. side: {
  10118. height: math.unit(3.4, "meters"),
  10119. weight: math.unit(1000, "lb"),
  10120. name: "Side",
  10121. image: {
  10122. source: "./media/characters/rovoska/side.svg",
  10123. extra: 4403 / 1515
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Normal",
  10130. height: math.unit(3.4, "meters"),
  10131. default: true
  10132. },
  10133. ]
  10134. ))
  10135. characterMakers.push(() => makeCharacter(
  10136. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10137. {
  10138. front: {
  10139. height: math.unit(8, "feet"),
  10140. weight: math.unit(315, "lb"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/gunner-rotthbauer/front.svg"
  10144. }
  10145. },
  10146. back: {
  10147. height: math.unit(8, "feet"),
  10148. weight: math.unit(315, "lb"),
  10149. name: "Back",
  10150. image: {
  10151. source: "./media/characters/gunner-rotthbauer/back.svg"
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Micro",
  10158. height: math.unit(3.5, "inches")
  10159. },
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(8, "feet"),
  10163. default: true
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(250, "feet")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(1, "AU")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5 + 5 / 12, "feet"),
  10180. weight: math.unit(140, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/allatia/front.svg",
  10184. extra: 1227 / 1180,
  10185. bottom: 0.027
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 5 / 12, "feet")
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(250, "feet"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "Megamacro",
  10201. height: math.unit(8, "miles")
  10202. }
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(120, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/tene/front.svg",
  10214. extra: 814/750,
  10215. bottom: 36/850
  10216. }
  10217. },
  10218. stomping: {
  10219. height: math.unit(2.025, "meters"),
  10220. weight: math.unit(120, "lb"),
  10221. name: "Stomping",
  10222. image: {
  10223. source: "./media/characters/tene/stomping.svg",
  10224. extra: 885/821,
  10225. bottom: 15/900
  10226. }
  10227. },
  10228. sitting: {
  10229. height: math.unit(1, "meter"),
  10230. weight: math.unit(120, "lb"),
  10231. name: "Sitting",
  10232. image: {
  10233. source: "./media/characters/tene/sitting.svg",
  10234. extra: 396/366,
  10235. bottom: 79/475
  10236. }
  10237. },
  10238. smiling: {
  10239. height: math.unit(1.2, "feet"),
  10240. name: "Smiling",
  10241. image: {
  10242. source: "./media/characters/tene/smiling.svg",
  10243. extra: 1364/1071,
  10244. bottom: 0/1364
  10245. }
  10246. },
  10247. smug: {
  10248. height: math.unit(1.3, "feet"),
  10249. name: "Smug",
  10250. image: {
  10251. source: "./media/characters/tene/smug.svg",
  10252. extra: 1323/1082,
  10253. bottom: 0/1323
  10254. }
  10255. },
  10256. feral: {
  10257. height: math.unit(3.9, "feet"),
  10258. weight: math.unit(250, "lb"),
  10259. name: "Feral",
  10260. image: {
  10261. source: "./media/characters/tene/feral.svg",
  10262. extra: 717 / 458,
  10263. bottom: 0.179
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(6, "feet")
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(300, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(5, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10285. {
  10286. side: {
  10287. height: math.unit(6, "feet"),
  10288. name: "Side",
  10289. image: {
  10290. source: "./media/characters/evander/side.svg",
  10291. extra: 877 / 477
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(0.83, "meters"),
  10299. default: true
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(12, "feet"),
  10308. weight: math.unit(1000, "lb"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10312. extra: 1762 / 1611
  10313. }
  10314. },
  10315. back: {
  10316. height: math.unit(12, "feet"),
  10317. weight: math.unit(1000, "lb"),
  10318. name: "Back",
  10319. image: {
  10320. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10321. extra: 1762 / 1611
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(12, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Kaiju",
  10333. height: math.unit(150, "feet")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(150, "lb"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/zero-alurus/front.svg"
  10346. }
  10347. },
  10348. back: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(150, "lb"),
  10351. name: "Back",
  10352. image: {
  10353. source: "./media/characters/zero-alurus/back.svg"
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(5 + 10 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(60, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Macro+",
  10369. height: math.unit(450, "feet")
  10370. },
  10371. ]
  10372. ))
  10373. characterMakers.push(() => makeCharacter(
  10374. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10375. {
  10376. front: {
  10377. height: math.unit(6, "feet"),
  10378. weight: math.unit(200, "lb"),
  10379. name: "Front",
  10380. image: {
  10381. source: "./media/characters/mega-shi/front.svg",
  10382. extra: 1279 / 1250,
  10383. bottom: 0.02
  10384. }
  10385. },
  10386. back: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(200, "lb"),
  10389. name: "Back",
  10390. image: {
  10391. source: "./media/characters/mega-shi/back.svg",
  10392. extra: 1279 / 1250,
  10393. bottom: 0.02
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Micro",
  10400. height: math.unit(16 + 6 / 12, "feet")
  10401. },
  10402. {
  10403. name: "Third Dimension",
  10404. height: math.unit(40, "meters")
  10405. },
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(660, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(10, "miles")
  10414. },
  10415. {
  10416. name: "Planetary Launch",
  10417. height: math.unit(500, "miles")
  10418. },
  10419. {
  10420. name: "Interstellar",
  10421. height: math.unit(1e9, "miles")
  10422. },
  10423. {
  10424. name: "Leaving the Universe",
  10425. height: math.unit(1, "gigaparsec")
  10426. },
  10427. {
  10428. name: "Travelling Universes",
  10429. height: math.unit(30e15, "parsecs")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(5 + 4/12, "feet"),
  10438. weight: math.unit(120, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/odyssey/front.svg",
  10442. extra: 1747/1571,
  10443. bottom: 47/1794
  10444. }
  10445. },
  10446. side: {
  10447. height: math.unit(5.1, "feet"),
  10448. weight: math.unit(120, "lb"),
  10449. name: "Side",
  10450. image: {
  10451. source: "./media/characters/odyssey/side.svg",
  10452. extra: 1847/1619,
  10453. bottom: 47/1894
  10454. }
  10455. },
  10456. lounging: {
  10457. height: math.unit(1.464, "feet"),
  10458. weight: math.unit(120, "lb"),
  10459. name: "Lounging",
  10460. image: {
  10461. source: "./media/characters/odyssey/lounging.svg",
  10462. extra: 1235/837,
  10463. bottom: 551/1786
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(5 + 4 / 12, "feet")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(1, "km")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(3000, "km")
  10479. },
  10480. {
  10481. name: "Gigamacro",
  10482. height: math.unit(1, "AU"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Omniversal",
  10487. height: math.unit(100e14, "lightyears")
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(6, "feet"),
  10496. weight: math.unit(300, "lb"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/mekuto/front.svg",
  10500. extra: 921 / 832,
  10501. bottom: 0.03
  10502. }
  10503. },
  10504. hand: {
  10505. height: math.unit(6 / 10.24, "feet"),
  10506. name: "Hand",
  10507. image: {
  10508. source: "./media/characters/mekuto/hand.svg"
  10509. }
  10510. },
  10511. foot: {
  10512. height: math.unit(6 / 5.05, "feet"),
  10513. name: "Foot",
  10514. image: {
  10515. source: "./media/characters/mekuto/foot.svg"
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Minimicro",
  10522. height: math.unit(0.2, "inches")
  10523. },
  10524. {
  10525. name: "Micro",
  10526. height: math.unit(1.5, "inches")
  10527. },
  10528. {
  10529. name: "Normal",
  10530. height: math.unit(5 + 11 / 12, "feet"),
  10531. default: true
  10532. },
  10533. {
  10534. name: "Minimacro",
  10535. height: math.unit(17 + 9 / 12, "feet")
  10536. },
  10537. {
  10538. name: "Macro",
  10539. height: math.unit(177.5, "feet")
  10540. },
  10541. {
  10542. name: "Megamacro",
  10543. height: math.unit(152, "miles")
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(6.5, "inches"),
  10552. weight: math.unit(13, "oz"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/dafydd-tomos/front.svg",
  10556. extra: 2990 / 2603,
  10557. bottom: 0.03
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Micro",
  10564. height: math.unit(6.5, "inches"),
  10565. default: true
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/splinter/front.svg",
  10578. extra: 2990 / 2882,
  10579. bottom: 0.04
  10580. }
  10581. },
  10582. back: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(150, "lb"),
  10585. name: "Back",
  10586. image: {
  10587. source: "./media/characters/splinter/back.svg",
  10588. extra: 2990 / 2882,
  10589. bottom: 0.04
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(6, "feet")
  10597. },
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(230, "meters"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(4 + 10 / 12, "feet"),
  10610. weight: math.unit(480, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/snow-gabumon/front.svg",
  10614. extra: 1140 / 963,
  10615. bottom: 0.058
  10616. }
  10617. },
  10618. back: {
  10619. height: math.unit(4 + 10 / 12, "feet"),
  10620. weight: math.unit(480, "lb"),
  10621. name: "Back",
  10622. image: {
  10623. source: "./media/characters/snow-gabumon/back.svg",
  10624. extra: 1115 / 962,
  10625. bottom: 0.041
  10626. }
  10627. },
  10628. frontUndresed: {
  10629. height: math.unit(4 + 10 / 12, "feet"),
  10630. weight: math.unit(480, "lb"),
  10631. name: "Front (Undressed)",
  10632. image: {
  10633. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10634. extra: 1061 / 960,
  10635. bottom: 0.045
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Micro",
  10642. height: math.unit(1, "inch")
  10643. },
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(4 + 10 / 12, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(200, "feet")
  10652. },
  10653. {
  10654. name: "Megamacro",
  10655. height: math.unit(120, "miles")
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(9800, "miles")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(1.7, "meters"),
  10668. weight: math.unit(140, "lb"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/moody/front.svg",
  10672. extra: 3226 / 3007,
  10673. bottom: 0.087
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Micro",
  10680. height: math.unit(1, "mm")
  10681. },
  10682. {
  10683. name: "Normal",
  10684. height: math.unit(1.7, "meters"),
  10685. default: true
  10686. },
  10687. {
  10688. name: "Macro",
  10689. height: math.unit(80, "meters")
  10690. },
  10691. {
  10692. name: "Macro+",
  10693. height: math.unit(500, "meters")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(150, "lb"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/zyas/front.svg",
  10706. extra: 1180 / 1120,
  10707. bottom: 0.045
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Normal",
  10714. height: math.unit(10, "feet"),
  10715. default: true
  10716. },
  10717. {
  10718. name: "Macro",
  10719. height: math.unit(500, "feet")
  10720. },
  10721. {
  10722. name: "Megamacro",
  10723. height: math.unit(5, "miles")
  10724. },
  10725. {
  10726. name: "Teramacro",
  10727. height: math.unit(150000, "miles")
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10733. {
  10734. front: {
  10735. height: math.unit(6, "feet"),
  10736. weight: math.unit(150, "lb"),
  10737. name: "Front",
  10738. image: {
  10739. source: "./media/characters/cuon/front.svg",
  10740. extra: 1390 / 1320,
  10741. bottom: 0.008
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Micro",
  10748. height: math.unit(3, "inches")
  10749. },
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(18 + 9 / 12, "feet"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(360, "feet")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(360, "miles")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(2.4, "meters"),
  10770. weight: math.unit(70, "kg"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/nyanuxk/front.svg",
  10774. extra: 1172 / 1084,
  10775. bottom: 0.065
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(2.4, "meters"),
  10780. weight: math.unit(70, "kg"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/nyanuxk/side.svg",
  10784. extra: 1190 / 1132,
  10785. bottom: 0.007
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(2.4, "meters"),
  10790. weight: math.unit(70, "kg"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/nyanuxk/back.svg",
  10794. extra: 1200 / 1141,
  10795. bottom: 0.015
  10796. }
  10797. },
  10798. foot: {
  10799. height: math.unit(0.52, "meters"),
  10800. name: "Foot",
  10801. image: {
  10802. source: "./media/characters/nyanuxk/foot.svg"
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Micro",
  10809. height: math.unit(2, "cm")
  10810. },
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(2.4, "meters"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Smaller Macro",
  10818. height: math.unit(120, "meters")
  10819. },
  10820. {
  10821. name: "Bigger Macro",
  10822. height: math.unit(1.2, "km")
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(15, "kilometers")
  10827. },
  10828. {
  10829. name: "Gigamacro",
  10830. height: math.unit(2000, "km")
  10831. },
  10832. {
  10833. name: "Teramacro",
  10834. height: math.unit(500000, "km")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10840. {
  10841. side: {
  10842. height: math.unit(6, "feet"),
  10843. name: "Side",
  10844. image: {
  10845. source: "./media/characters/ailbhe/side.svg",
  10846. extra: 757 / 464,
  10847. bottom: 0.041
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(1.07, "meters"),
  10855. default: true
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10861. {
  10862. front: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(120, "kg"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/zevulfius/front.svg",
  10868. extra: 965 / 903
  10869. }
  10870. },
  10871. side: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(120, "kg"),
  10874. name: "Side",
  10875. image: {
  10876. source: "./media/characters/zevulfius/side.svg",
  10877. extra: 939 / 900
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(120, "kg"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/zevulfius/back.svg",
  10886. extra: 918 / 854,
  10887. bottom: 0.005
  10888. }
  10889. },
  10890. foot: {
  10891. height: math.unit(6 / 3.72, "feet"),
  10892. name: "Foot",
  10893. image: {
  10894. source: "./media/characters/zevulfius/foot.svg"
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Macro",
  10901. height: math.unit(750, "meters")
  10902. },
  10903. {
  10904. name: "Megamacro",
  10905. height: math.unit(20, "km"),
  10906. default: true
  10907. },
  10908. {
  10909. name: "Gigamacro",
  10910. height: math.unit(2000, "km")
  10911. },
  10912. {
  10913. name: "Teramacro",
  10914. height: math.unit(250000, "km")
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10920. {
  10921. front: {
  10922. height: math.unit(100, "feet"),
  10923. weight: math.unit(350, "kg"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/rikes/front.svg",
  10927. extra: 1565 / 1483,
  10928. bottom: 0.017
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(100, "feet"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(8, "feet"),
  10945. weight: math.unit(356, "lb"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/adam-silver-mane/front.svg",
  10949. extra: 1036/937,
  10950. bottom: 63/1099
  10951. }
  10952. },
  10953. side: {
  10954. height: math.unit(8, "feet"),
  10955. weight: math.unit(356, "lb"),
  10956. name: "Side",
  10957. image: {
  10958. source: "./media/characters/adam-silver-mane/side.svg",
  10959. extra: 997/901,
  10960. bottom: 59/1056
  10961. }
  10962. },
  10963. frontNsfw: {
  10964. height: math.unit(8, "feet"),
  10965. weight: math.unit(356, "lb"),
  10966. name: "Front (NSFW)",
  10967. image: {
  10968. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10969. extra: 1036/937,
  10970. bottom: 63/1099
  10971. }
  10972. },
  10973. sideNsfw: {
  10974. height: math.unit(8, "feet"),
  10975. weight: math.unit(356, "lb"),
  10976. name: "Side (NSFW)",
  10977. image: {
  10978. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10979. extra: 997/901,
  10980. bottom: 59/1056
  10981. }
  10982. },
  10983. dick: {
  10984. height: math.unit(2.1, "feet"),
  10985. name: "Dick",
  10986. image: {
  10987. source: "./media/characters/adam-silver-mane/dick.svg"
  10988. }
  10989. },
  10990. taur: {
  10991. height: math.unit(16, "feet"),
  10992. weight: math.unit(1500, "kg"),
  10993. name: "Taur",
  10994. image: {
  10995. source: "./media/characters/adam-silver-mane/taur.svg",
  10996. extra: 1713 / 1571,
  10997. bottom: 0.01
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(8, "feet")
  11005. },
  11006. {
  11007. name: "Minimacro",
  11008. height: math.unit(80, "feet")
  11009. },
  11010. {
  11011. name: "MDA",
  11012. height: math.unit(80, "meters")
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(800, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(8000, "feet")
  11022. },
  11023. {
  11024. name: "Gigamacro",
  11025. height: math.unit(800, "miles")
  11026. },
  11027. {
  11028. name: "Teramacro",
  11029. height: math.unit(80000, "miles")
  11030. },
  11031. {
  11032. name: "Celestial",
  11033. height: math.unit(8e6, "miles")
  11034. },
  11035. {
  11036. name: "Star Dragon",
  11037. height: math.unit(800000, "parsecs")
  11038. },
  11039. {
  11040. name: "Godly",
  11041. height: math.unit(800, "teraparsecs")
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(150, "lb"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/ky'owin/front.svg",
  11054. extra: 3888 / 3068,
  11055. bottom: 0.015
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(6 + 8 / 12, "feet")
  11063. },
  11064. {
  11065. name: "Large",
  11066. height: math.unit(68, "feet")
  11067. },
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(132, "feet")
  11071. },
  11072. {
  11073. name: "Macro+",
  11074. height: math.unit(340, "feet")
  11075. },
  11076. {
  11077. name: "Macro++",
  11078. height: math.unit(680, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Megamacro",
  11083. height: math.unit(1, "mile")
  11084. },
  11085. {
  11086. name: "Megamacro+",
  11087. height: math.unit(10, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(4, "feet"),
  11096. weight: math.unit(50, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/mal/front.svg",
  11100. extra: 785 / 724,
  11101. bottom: 0.07
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(4, "inches")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(4, "feet"),
  11113. default: true
  11114. },
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(200, "feet")
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11123. {
  11124. front: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(150, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/jordan-deware/front.svg",
  11130. extra: 1191 / 1012
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Nano",
  11137. height: math.unit(0.01, "mm")
  11138. },
  11139. {
  11140. name: "Minimicro",
  11141. height: math.unit(1, "mm")
  11142. },
  11143. {
  11144. name: "Micro",
  11145. height: math.unit(0.5, "inches")
  11146. },
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(4, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Minimacro",
  11154. height: math.unit(40, "meters")
  11155. },
  11156. {
  11157. name: "Small Macro",
  11158. height: math.unit(400, "meters")
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(4, "miles")
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(40, "miles")
  11167. },
  11168. {
  11169. name: "Megamacro+",
  11170. height: math.unit(400, "miles")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(400000, "miles")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11180. {
  11181. side: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(150, "lb"),
  11184. name: "Side",
  11185. image: {
  11186. source: "./media/characters/kimiko/side.svg",
  11187. extra: 600 / 358
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(15, "feet"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(220, "feet")
  11200. },
  11201. {
  11202. name: "Macro+",
  11203. height: math.unit(1450, "feet")
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(11500, "feet")
  11208. },
  11209. {
  11210. name: "Gigamacro",
  11211. height: math.unit(9500, "miles")
  11212. },
  11213. {
  11214. name: "Teramacro",
  11215. height: math.unit(2208005005, "miles")
  11216. },
  11217. {
  11218. name: "Examacro",
  11219. height: math.unit(2750, "parsecs")
  11220. },
  11221. {
  11222. name: "Zettamacro",
  11223. height: math.unit(101500, "parsecs")
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(70, "kg"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/andrew-sleepy/front.svg"
  11236. }
  11237. },
  11238. side: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(70, "kg"),
  11241. name: "Side",
  11242. image: {
  11243. source: "./media/characters/andrew-sleepy/side.svg"
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Micro",
  11250. height: math.unit(1, "mm"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/judio/front.svg",
  11264. extra: 1258 / 1110
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(5 + 6 / 12, "feet")
  11272. },
  11273. {
  11274. name: "Macro",
  11275. height: math.unit(1000, "feet"),
  11276. default: true
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(10, "miles")
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11286. {
  11287. frontDressed: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(68, "kg"),
  11290. name: "Front (Dressed)",
  11291. image: {
  11292. source: "./media/characters/nomaxice/front-dressed.svg",
  11293. extra: 1137/824,
  11294. bottom: 74/1211
  11295. }
  11296. },
  11297. frontShorts: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(68, "kg"),
  11300. name: "Front (Shorts)",
  11301. image: {
  11302. source: "./media/characters/nomaxice/front-shorts.svg",
  11303. extra: 1137/824,
  11304. bottom: 74/1211
  11305. }
  11306. },
  11307. back: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(68, "kg"),
  11310. name: "Back",
  11311. image: {
  11312. source: "./media/characters/nomaxice/back.svg",
  11313. extra: 822/786,
  11314. bottom: 39/861
  11315. }
  11316. },
  11317. hand: {
  11318. height: math.unit(0.565, "feet"),
  11319. name: "Hand",
  11320. image: {
  11321. source: "./media/characters/nomaxice/hand.svg"
  11322. }
  11323. },
  11324. foot: {
  11325. height: math.unit(1, "feet"),
  11326. name: "Foot",
  11327. image: {
  11328. source: "./media/characters/nomaxice/foot.svg"
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Micro",
  11335. height: math.unit(8, "cm")
  11336. },
  11337. {
  11338. name: "Norm",
  11339. height: math.unit(1.82, "m")
  11340. },
  11341. {
  11342. name: "Norm+",
  11343. height: math.unit(8.8, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Big",
  11348. height: math.unit(8, "meters")
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(18, "meters")
  11353. },
  11354. {
  11355. name: "Macro+",
  11356. height: math.unit(88, "meters")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(12, "feet"),
  11365. weight: math.unit(1.5, "tons"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/dydros/front.svg",
  11369. extra: 863 / 800,
  11370. bottom: 0.015
  11371. }
  11372. },
  11373. back: {
  11374. height: math.unit(12, "feet"),
  11375. weight: math.unit(1.5, "tons"),
  11376. name: "Back",
  11377. image: {
  11378. source: "./media/characters/dydros/back.svg",
  11379. extra: 900 / 843,
  11380. bottom: 0.005
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(12, "feet"),
  11388. default: true
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(100, "kg"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/riggi/front.svg",
  11401. extra: 5787 / 5303
  11402. }
  11403. },
  11404. hyper: {
  11405. height: math.unit(6 * 5 / 3, "feet"),
  11406. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11407. name: "Hyper",
  11408. image: {
  11409. source: "./media/characters/riggi/hyper.svg",
  11410. extra: 3595 / 3485
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Small Macro",
  11417. height: math.unit(50, "feet")
  11418. },
  11419. {
  11420. name: "Default",
  11421. height: math.unit(200, "feet"),
  11422. default: true
  11423. },
  11424. {
  11425. name: "Loom",
  11426. height: math.unit(10000, "feet")
  11427. },
  11428. {
  11429. name: "Cruising Altitude",
  11430. height: math.unit(30000, "feet")
  11431. },
  11432. {
  11433. name: "Megamacro",
  11434. height: math.unit(100, "miles")
  11435. },
  11436. {
  11437. name: "Continent Sized",
  11438. height: math.unit(2800, "miles")
  11439. },
  11440. {
  11441. name: "Earth Sized",
  11442. height: math.unit(8000, "miles")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(250, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/alexi/front.svg",
  11455. extra: 3483 / 3291,
  11456. bottom: 0.04
  11457. }
  11458. },
  11459. back: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(250, "lb"),
  11462. name: "Back",
  11463. image: {
  11464. source: "./media/characters/alexi/back.svg",
  11465. extra: 3533 / 3356,
  11466. bottom: 0.021
  11467. }
  11468. },
  11469. frontTransforming: {
  11470. height: math.unit(8.58, "feet"),
  11471. weight: math.unit(1300, "lb"),
  11472. name: "Transforming",
  11473. image: {
  11474. source: "./media/characters/alexi/front-transforming.svg",
  11475. extra: 437 / 409,
  11476. bottom: 19 / 458.66
  11477. }
  11478. },
  11479. frontTransformed: {
  11480. height: math.unit(12.5, "feet"),
  11481. weight: math.unit(4000, "lb"),
  11482. name: "Transformed",
  11483. image: {
  11484. source: "./media/characters/alexi/front-transformed.svg",
  11485. extra: 639 / 614,
  11486. bottom: 30.55 / 671
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Normal",
  11493. height: math.unit(14, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Minimacro",
  11498. height: math.unit(30, "meters")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(500, "meters")
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(9000, "km")
  11507. },
  11508. {
  11509. name: "Teramacro",
  11510. height: math.unit(384000, "km")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(150, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/kayroo/front.svg",
  11523. extra: 1153 / 1038,
  11524. bottom: 0.06
  11525. }
  11526. },
  11527. foot: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(150, "lb"),
  11530. name: "Foot",
  11531. image: {
  11532. source: "./media/characters/kayroo/foot.svg"
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(8, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Minimacro",
  11544. height: math.unit(250, "feet")
  11545. },
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(2800, "feet")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(5200, "feet")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(27000, "feet")
  11557. },
  11558. {
  11559. name: "Omega",
  11560. height: math.unit(45000, "feet")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(18, "feet"),
  11569. weight: math.unit(5800, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/rhys/front.svg",
  11573. extra: 3386 / 3090,
  11574. bottom: 0.07
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Normal",
  11581. height: math.unit(18, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Working Size",
  11586. height: math.unit(200, "feet")
  11587. },
  11588. {
  11589. name: "Demolition Size",
  11590. height: math.unit(2000, "feet")
  11591. },
  11592. {
  11593. name: "Maximum Licensed Size",
  11594. height: math.unit(5, "miles")
  11595. },
  11596. {
  11597. name: "Maximum Observed Size",
  11598. height: math.unit(10, "yottameters")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(6, "feet"),
  11607. weight: math.unit(250, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/toto/front.svg",
  11611. extra: 527 / 479,
  11612. bottom: 0.05
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Micro",
  11619. height: math.unit(3, "feet")
  11620. },
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(10, "feet")
  11624. },
  11625. {
  11626. name: "Macro",
  11627. height: math.unit(150, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Megamacro",
  11632. height: math.unit(1200, "feet")
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "King", species: ["lion"], tags: ["anthro"] },
  11638. {
  11639. back: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Back",
  11643. image: {
  11644. source: "./media/characters/king/back.svg"
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Micro",
  11651. height: math.unit(2, "inches")
  11652. },
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(8, "feet")
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(200, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(50, "miles")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(11, "feet"),
  11673. weight: math.unit(1400, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/cordite/front.svg",
  11677. extra: 1919/1827,
  11678. bottom: 40/1959
  11679. }
  11680. },
  11681. side: {
  11682. height: math.unit(11, "feet"),
  11683. weight: math.unit(1400, "lb"),
  11684. name: "Side",
  11685. image: {
  11686. source: "./media/characters/cordite/side.svg",
  11687. extra: 1908/1793,
  11688. bottom: 38/1946
  11689. }
  11690. },
  11691. back: {
  11692. height: math.unit(11, "feet"),
  11693. weight: math.unit(1400, "lb"),
  11694. name: "Back",
  11695. image: {
  11696. source: "./media/characters/cordite/back.svg",
  11697. extra: 1938/1837,
  11698. bottom: 10/1948
  11699. }
  11700. },
  11701. feral: {
  11702. height: math.unit(2, "feet"),
  11703. weight: math.unit(90, "lb"),
  11704. name: "Feral",
  11705. image: {
  11706. source: "./media/characters/cordite/feral.svg",
  11707. extra: 1260 / 755,
  11708. bottom: 0.05
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(11, "feet"),
  11716. default: true
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/pianostrong/front.svg",
  11729. extra: 6577 / 6254,
  11730. bottom: 0.02
  11731. }
  11732. },
  11733. side: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "lb"),
  11736. name: "Side",
  11737. image: {
  11738. source: "./media/characters/pianostrong/side.svg",
  11739. extra: 6106 / 5730
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/pianostrong/back.svg",
  11748. extra: 6085 / 5733,
  11749. bottom: 0.01
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(100, "feet")
  11757. },
  11758. {
  11759. name: "Macro+",
  11760. height: math.unit(300, "feet"),
  11761. default: true
  11762. },
  11763. {
  11764. name: "Macro++",
  11765. height: math.unit(1000, "feet")
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(150, "lb"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/kona/front.svg",
  11778. extra: 2960 / 2629,
  11779. bottom: 0.005
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(11 + 8 / 12, "feet")
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(850, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro+",
  11795. height: math.unit(1.5, "km"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(80, "miles")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(3500, "miles")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11810. {
  11811. side: {
  11812. height: math.unit(1.9, "meters"),
  11813. weight: math.unit(326, "kg"),
  11814. name: "Side",
  11815. image: {
  11816. source: "./media/characters/levi/side.svg",
  11817. extra: 1704 / 1334,
  11818. bottom: 0.02
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(1.9, "meters"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(20, "meters")
  11831. },
  11832. {
  11833. name: "Macro+",
  11834. height: math.unit(200, "meters")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(2, "km")
  11839. },
  11840. {
  11841. name: "Megamacro+",
  11842. height: math.unit(20, "km")
  11843. },
  11844. {
  11845. name: "Gigamacro",
  11846. height: math.unit(2500, "km")
  11847. },
  11848. {
  11849. name: "Gigamacro+",
  11850. height: math.unit(120000, "km")
  11851. },
  11852. {
  11853. name: "Teramacro",
  11854. height: math.unit(7.77e6, "km")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6 + 4/12, "feet"),
  11863. weight: math.unit(190, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/bmc/front.svg",
  11867. extra: 1626/1472,
  11868. bottom: 79/1705
  11869. }
  11870. },
  11871. back: {
  11872. height: math.unit(6 + 4/12, "feet"),
  11873. weight: math.unit(190, "lb"),
  11874. name: "Back",
  11875. image: {
  11876. source: "./media/characters/bmc/back.svg",
  11877. extra: 1640/1479,
  11878. bottom: 45/1685
  11879. }
  11880. },
  11881. frontArmor: {
  11882. height: math.unit(6 + 4/12, "feet"),
  11883. weight: math.unit(190, "lb"),
  11884. name: "Front-armor",
  11885. image: {
  11886. source: "./media/characters/bmc/front-armor.svg",
  11887. extra: 1538/1468,
  11888. bottom: 79/1617
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Human-sized",
  11895. height: math.unit(6 + 4 / 12, "feet")
  11896. },
  11897. {
  11898. name: "Interactive Size",
  11899. height: math.unit(25, "feet")
  11900. },
  11901. {
  11902. name: "Small",
  11903. height: math.unit(250, "feet")
  11904. },
  11905. {
  11906. name: "Normal",
  11907. height: math.unit(1250, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Good Day",
  11912. height: math.unit(88, "miles")
  11913. },
  11914. {
  11915. name: "Largest Measured Size",
  11916. height: math.unit(105.960, "galaxies")
  11917. },
  11918. ]
  11919. ))
  11920. characterMakers.push(() => makeCharacter(
  11921. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11922. {
  11923. front: {
  11924. height: math.unit(20, "feet"),
  11925. weight: math.unit(2016, "kg"),
  11926. name: "Front",
  11927. image: {
  11928. source: "./media/characters/sven-the-kaiju/front.svg",
  11929. extra: 1277/1250,
  11930. bottom: 35/1312
  11931. }
  11932. },
  11933. mouth: {
  11934. height: math.unit(1.85, "feet"),
  11935. name: "Mouth",
  11936. image: {
  11937. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11938. }
  11939. },
  11940. },
  11941. [
  11942. {
  11943. name: "Fairy",
  11944. height: math.unit(6, "inches")
  11945. },
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(20, "feet"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Rampage",
  11953. height: math.unit(200, "feet")
  11954. },
  11955. {
  11956. name: "Archfey Forest Guardian",
  11957. height: math.unit(1, "mile")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(4, "meters"),
  11966. weight: math.unit(2, "tons"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/marik/front.svg",
  11970. extra: 1057 / 1003,
  11971. bottom: 0.08
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(4, "meters"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(20, "meters")
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(50, "km")
  11988. },
  11989. {
  11990. name: "Gigamacro",
  11991. height: math.unit(100, "km")
  11992. },
  11993. {
  11994. name: "Alpha Macro",
  11995. height: math.unit(7.88e7, "yottameters")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(110, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/mel/front.svg",
  12008. extra: 736 / 617,
  12009. bottom: 0.017
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Pico",
  12016. height: math.unit(3, "pm")
  12017. },
  12018. {
  12019. name: "Nano",
  12020. height: math.unit(3, "nm")
  12021. },
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(0.3, "mm"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Micro+",
  12029. height: math.unit(3, "mm")
  12030. },
  12031. {
  12032. name: "Normal",
  12033. height: math.unit(5 + 10.5 / 12, "feet")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12039. {
  12040. kaiju: {
  12041. height: math.unit(1.75, "meters"),
  12042. weight: math.unit(55, "kg"),
  12043. name: "Kaiju",
  12044. image: {
  12045. source: "./media/characters/lykonous/kaiju.svg",
  12046. extra: 1055 / 946,
  12047. bottom: 0.135
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Normal",
  12054. height: math.unit(2.5, "meters"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Kaiju Dragon",
  12059. height: math.unit(60, "meters")
  12060. },
  12061. {
  12062. name: "Mega Kaiju",
  12063. height: math.unit(120, "km")
  12064. },
  12065. {
  12066. name: "Giga Kaiju",
  12067. height: math.unit(200, "megameters")
  12068. },
  12069. {
  12070. name: "Terra Kaiju",
  12071. height: math.unit(400, "gigameters")
  12072. },
  12073. {
  12074. name: "Kaiju Dragon God",
  12075. height: math.unit(13000, "exaparsecs")
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(150, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/blü/front.svg",
  12088. extra: 1883 / 1564,
  12089. bottom: 0.031
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(13, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Big Boi",
  12101. height: math.unit(150, "meters")
  12102. },
  12103. {
  12104. name: "Mini Stomper",
  12105. height: math.unit(300, "meters")
  12106. },
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(1000, "meters")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(11000, "meters")
  12114. },
  12115. {
  12116. name: "Gigamacro",
  12117. height: math.unit(11000, "km")
  12118. },
  12119. {
  12120. name: "Teramacro",
  12121. height: math.unit(420000, "km")
  12122. },
  12123. {
  12124. name: "Examacro",
  12125. height: math.unit(120, "parsecs")
  12126. },
  12127. {
  12128. name: "God Tho",
  12129. height: math.unit(98000000000, "parsecs")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12135. {
  12136. taurFront: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(200, "lb"),
  12139. name: "Taur (Front)",
  12140. image: {
  12141. source: "./media/characters/scales/taur-front.svg",
  12142. extra: 1,
  12143. bottom: 0.05
  12144. }
  12145. },
  12146. taurBack: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(200, "lb"),
  12149. name: "Taur (Back)",
  12150. image: {
  12151. source: "./media/characters/scales/taur-back.svg",
  12152. extra: 1,
  12153. bottom: 0.08
  12154. }
  12155. },
  12156. anthro: {
  12157. height: math.unit(6 * 7 / 12, "feet"),
  12158. weight: math.unit(100, "lb"),
  12159. name: "Anthro",
  12160. image: {
  12161. source: "./media/characters/scales/anthro.svg",
  12162. extra: 1,
  12163. bottom: 0.06
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(12, "feet"),
  12171. default: true
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/koragos/front.svg",
  12184. extra: 841 / 794,
  12185. bottom: 0.035
  12186. }
  12187. },
  12188. back: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(150, "lb"),
  12191. name: "Back",
  12192. image: {
  12193. source: "./media/characters/koragos/back.svg",
  12194. extra: 841 / 810,
  12195. bottom: 0.022
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(6 + 11 / 12, "feet"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(490, "feet")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(10, "miles")
  12212. },
  12213. {
  12214. name: "Gigamacro",
  12215. height: math.unit(50, "miles")
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(250, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/xylrem/front.svg",
  12228. extra: 3323 / 3050,
  12229. bottom: 0.065
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Micro",
  12236. height: math.unit(4, "feet")
  12237. },
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(16, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(2720, "feet")
  12246. },
  12247. {
  12248. name: "Megamacro",
  12249. height: math.unit(25000, "miles")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(8, "feet"),
  12258. weight: math.unit(250, "kg"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/ikideru/front.svg",
  12262. extra: 930 / 870,
  12263. bottom: 0.087
  12264. }
  12265. },
  12266. back: {
  12267. height: math.unit(8, "feet"),
  12268. weight: math.unit(250, "kg"),
  12269. name: "Back",
  12270. image: {
  12271. source: "./media/characters/ikideru/back.svg",
  12272. extra: 919 / 852,
  12273. bottom: 0.055
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Rare",
  12280. height: math.unit(8, "feet"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Playful Loom",
  12285. height: math.unit(80, "feet")
  12286. },
  12287. {
  12288. name: "City Leaner",
  12289. height: math.unit(230, "feet")
  12290. },
  12291. {
  12292. name: "Megamacro",
  12293. height: math.unit(2500, "feet")
  12294. },
  12295. {
  12296. name: "Gigamacro",
  12297. height: math.unit(26400, "feet")
  12298. },
  12299. {
  12300. name: "Tectonic Shifter",
  12301. height: math.unit(1.7, "megameters")
  12302. },
  12303. {
  12304. name: "Planet Carer",
  12305. height: math.unit(21, "megameters")
  12306. },
  12307. {
  12308. name: "God",
  12309. height: math.unit(11157.22, "parsecs")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(120, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/neo/front.svg"
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Micro",
  12328. height: math.unit(2, "inches"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Human Size",
  12333. height: math.unit(5 + 8 / 12, "feet")
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(13 + 10 / 12, "feet"),
  12342. weight: math.unit(5320, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/chauncey-chantz/front.svg",
  12346. extra: 1587 / 1435,
  12347. bottom: 0.02
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(13 + 10 / 12, "feet"),
  12355. default: true
  12356. },
  12357. {
  12358. name: "Macro",
  12359. height: math.unit(45, "feet")
  12360. },
  12361. {
  12362. name: "Megamacro",
  12363. height: math.unit(250, "miles")
  12364. },
  12365. {
  12366. name: "Planetary",
  12367. height: math.unit(10000, "miles")
  12368. },
  12369. {
  12370. name: "Galactic",
  12371. height: math.unit(40000, "parsecs")
  12372. },
  12373. {
  12374. name: "Universal",
  12375. height: math.unit(1, "yottameter")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/epifox/front.svg",
  12388. extra: 1,
  12389. bottom: 0.075
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Micro",
  12396. height: math.unit(6, "inches")
  12397. },
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(12, "feet"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Macro",
  12405. height: math.unit(3810, "feet")
  12406. },
  12407. {
  12408. name: "Megamacro",
  12409. height: math.unit(500, "miles")
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12415. {
  12416. front: {
  12417. height: math.unit(1.8796, "m"),
  12418. weight: math.unit(230, "lb"),
  12419. name: "Front",
  12420. image: {
  12421. source: "./media/characters/colin-t/front.svg",
  12422. extra: 1272 / 1193,
  12423. bottom: 0.07
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Micro",
  12430. height: math.unit(0.571, "meters")
  12431. },
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(1.8796, "meters"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Tall",
  12439. height: math.unit(4, "meters")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(67.241, "meters")
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(371.856, "meters")
  12448. },
  12449. {
  12450. name: "Planetary",
  12451. height: math.unit(12631.5689, "km")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(1.85, "meters"),
  12460. weight: math.unit(80, "kg"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/matvei/front.svg",
  12464. extra: 614 / 594,
  12465. bottom: 0.01
  12466. }
  12467. },
  12468. },
  12469. [
  12470. {
  12471. name: "Normal",
  12472. height: math.unit(1.85, "meters"),
  12473. default: true
  12474. },
  12475. ]
  12476. ))
  12477. characterMakers.push(() => makeCharacter(
  12478. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12479. {
  12480. front: {
  12481. height: math.unit(5 + 9 / 12, "feet"),
  12482. weight: math.unit(70, "lb"),
  12483. name: "Front",
  12484. image: {
  12485. source: "./media/characters/quincy/front.svg",
  12486. extra: 3041 / 2751
  12487. }
  12488. },
  12489. back: {
  12490. height: math.unit(5 + 9 / 12, "feet"),
  12491. weight: math.unit(70, "lb"),
  12492. name: "Back",
  12493. image: {
  12494. source: "./media/characters/quincy/back.svg",
  12495. extra: 3041 / 2751
  12496. }
  12497. },
  12498. flying: {
  12499. height: math.unit(5 + 4 / 12, "feet"),
  12500. weight: math.unit(70, "lb"),
  12501. name: "Flying",
  12502. image: {
  12503. source: "./media/characters/quincy/flying.svg",
  12504. extra: 1044 / 930
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Micro",
  12511. height: math.unit(3, "cm")
  12512. },
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(5 + 9 / 12, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(200, "meters"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(1000, "meters")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(3 + 11/12, "feet"),
  12533. weight: math.unit(50, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/vanrel/front.svg",
  12537. extra: 1104/949,
  12538. bottom: 52/1156
  12539. }
  12540. },
  12541. back: {
  12542. height: math.unit(3 + 11/12, "feet"),
  12543. weight: math.unit(50, "lb"),
  12544. name: "Back",
  12545. image: {
  12546. source: "./media/characters/vanrel/back.svg",
  12547. extra: 1119/976,
  12548. bottom: 37/1156
  12549. }
  12550. },
  12551. tome: {
  12552. height: math.unit(1.35, "feet"),
  12553. weight: math.unit(10, "lb"),
  12554. name: "Vanrel's Tome",
  12555. rename: true,
  12556. image: {
  12557. source: "./media/characters/vanrel/tome.svg"
  12558. }
  12559. },
  12560. beans: {
  12561. height: math.unit(0.89, "feet"),
  12562. name: "Beans",
  12563. image: {
  12564. source: "./media/characters/vanrel/beans.svg"
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(3 + 11/12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(7 + 5 / 12, "feet"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/kuiper-vanrel/front.svg",
  12584. extra: 1219/1169,
  12585. bottom: 69/1288
  12586. }
  12587. },
  12588. back: {
  12589. height: math.unit(7 + 5 / 12, "feet"),
  12590. name: "Back",
  12591. image: {
  12592. source: "./media/characters/kuiper-vanrel/back.svg",
  12593. extra: 1236/1193,
  12594. bottom: 27/1263
  12595. }
  12596. },
  12597. foot: {
  12598. height: math.unit(0.55, "meters"),
  12599. name: "Foot",
  12600. image: {
  12601. source: "./media/characters/kuiper-vanrel/foot.svg",
  12602. }
  12603. },
  12604. battle: {
  12605. height: math.unit(6.824, "feet"),
  12606. name: "Battle",
  12607. image: {
  12608. source: "./media/characters/kuiper-vanrel/battle.svg",
  12609. extra: 1466 / 1327,
  12610. bottom: 29 / 1492.5
  12611. }
  12612. },
  12613. meerkui: {
  12614. height: math.unit(18, "inches"),
  12615. name: "Meerkui",
  12616. image: {
  12617. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12618. extra: 1354/1289,
  12619. bottom: 69/1423
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(7 + 5 / 12, "feet"),
  12627. default: true
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(8 + 5 / 12, "feet"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/keset-vanrel/front.svg",
  12639. extra: 1231/1148,
  12640. bottom: 82/1313
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(8 + 5 / 12, "feet"),
  12645. name: "Back",
  12646. image: {
  12647. source: "./media/characters/keset-vanrel/back.svg",
  12648. extra: 1240/1174,
  12649. bottom: 33/1273
  12650. }
  12651. },
  12652. hand: {
  12653. height: math.unit(0.6, "meters"),
  12654. name: "Hand",
  12655. image: {
  12656. source: "./media/characters/keset-vanrel/hand.svg"
  12657. }
  12658. },
  12659. foot: {
  12660. height: math.unit(0.94978, "meters"),
  12661. name: "Foot",
  12662. image: {
  12663. source: "./media/characters/keset-vanrel/foot.svg"
  12664. }
  12665. },
  12666. battle: {
  12667. height: math.unit(7.408, "feet"),
  12668. name: "Battle",
  12669. image: {
  12670. source: "./media/characters/keset-vanrel/battle.svg",
  12671. extra: 1890 / 1386,
  12672. bottom: 73.28 / 1970
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(8 + 5 / 12, "feet"),
  12680. default: true
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(6, "feet"),
  12689. weight: math.unit(150, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/neos/front.svg",
  12693. extra: 1696 / 992,
  12694. bottom: 0.14
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(54, "cm"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(100, "m")
  12707. },
  12708. {
  12709. name: "Megamacro",
  12710. height: math.unit(10, "km")
  12711. },
  12712. {
  12713. name: "Megamacro+",
  12714. height: math.unit(100, "km")
  12715. },
  12716. {
  12717. name: "Gigamacro",
  12718. height: math.unit(100, "Mm")
  12719. },
  12720. {
  12721. name: "Teramacro",
  12722. height: math.unit(100, "Gm")
  12723. },
  12724. {
  12725. name: "Examacro",
  12726. height: math.unit(100, "Em")
  12727. },
  12728. {
  12729. name: "Godly",
  12730. height: math.unit(10000, "Ym")
  12731. },
  12732. {
  12733. name: "Beyond Godly",
  12734. height: math.unit(25, "multiverses")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12740. {
  12741. feminine: {
  12742. height: math.unit(5, "feet"),
  12743. weight: math.unit(100, "lb"),
  12744. name: "Feminine",
  12745. image: {
  12746. source: "./media/characters/sammy-mouse/feminine.svg",
  12747. extra: 2526 / 2425,
  12748. bottom: 0.123
  12749. }
  12750. },
  12751. masculine: {
  12752. height: math.unit(5, "feet"),
  12753. weight: math.unit(100, "lb"),
  12754. name: "Masculine",
  12755. image: {
  12756. source: "./media/characters/sammy-mouse/masculine.svg",
  12757. extra: 2526 / 2425,
  12758. bottom: 0.123
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Micro",
  12765. height: math.unit(5, "inches")
  12766. },
  12767. {
  12768. name: "Normal",
  12769. height: math.unit(5, "feet"),
  12770. default: true
  12771. },
  12772. {
  12773. name: "Macro",
  12774. height: math.unit(60, "feet")
  12775. },
  12776. ]
  12777. ))
  12778. characterMakers.push(() => makeCharacter(
  12779. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12780. {
  12781. front: {
  12782. height: math.unit(4, "feet"),
  12783. weight: math.unit(50, "lb"),
  12784. name: "Front",
  12785. image: {
  12786. source: "./media/characters/kole/front.svg",
  12787. extra: 1423 / 1303,
  12788. bottom: 0.025
  12789. }
  12790. },
  12791. back: {
  12792. height: math.unit(4, "feet"),
  12793. weight: math.unit(50, "lb"),
  12794. name: "Back",
  12795. image: {
  12796. source: "./media/characters/kole/back.svg",
  12797. extra: 1426 / 1280,
  12798. bottom: 0.02
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(4, "feet"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(2.5, "feet"),
  12815. weight: math.unit(32, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/rufran/front.svg",
  12819. extra: 1313/885,
  12820. bottom: 94/1407
  12821. }
  12822. },
  12823. side: {
  12824. height: math.unit(2.5, "feet"),
  12825. weight: math.unit(32, "lb"),
  12826. name: "Side",
  12827. image: {
  12828. source: "./media/characters/rufran/side.svg",
  12829. extra: 1109/852,
  12830. bottom: 118/1227
  12831. }
  12832. },
  12833. back: {
  12834. height: math.unit(2.5, "feet"),
  12835. weight: math.unit(32, "lb"),
  12836. name: "Back",
  12837. image: {
  12838. source: "./media/characters/rufran/back.svg",
  12839. extra: 1280/878,
  12840. bottom: 131/1411
  12841. }
  12842. },
  12843. mouth: {
  12844. height: math.unit(1.13, "feet"),
  12845. name: "Mouth",
  12846. image: {
  12847. source: "./media/characters/rufran/mouth.svg"
  12848. }
  12849. },
  12850. foot: {
  12851. height: math.unit(1.33, "feet"),
  12852. name: "Foot",
  12853. image: {
  12854. source: "./media/characters/rufran/foot.svg"
  12855. }
  12856. },
  12857. koboldFront: {
  12858. height: math.unit(2 + 6 / 12, "feet"),
  12859. weight: math.unit(20, "lb"),
  12860. name: "Front (Kobold)",
  12861. image: {
  12862. source: "./media/characters/rufran/kobold-front.svg",
  12863. extra: 2041 / 1839,
  12864. bottom: 0.055
  12865. }
  12866. },
  12867. koboldBack: {
  12868. height: math.unit(2 + 6 / 12, "feet"),
  12869. weight: math.unit(20, "lb"),
  12870. name: "Back (Kobold)",
  12871. image: {
  12872. source: "./media/characters/rufran/kobold-back.svg",
  12873. extra: 2054 / 1839,
  12874. bottom: 0.01
  12875. }
  12876. },
  12877. koboldHand: {
  12878. height: math.unit(0.2166, "meters"),
  12879. name: "Hand (Kobold)",
  12880. image: {
  12881. source: "./media/characters/rufran/kobold-hand.svg"
  12882. }
  12883. },
  12884. koboldFoot: {
  12885. height: math.unit(0.185, "meters"),
  12886. name: "Foot (Kobold)",
  12887. image: {
  12888. source: "./media/characters/rufran/kobold-foot.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(1, "inch")
  12896. },
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(2 + 6 / 12, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Big",
  12904. height: math.unit(60, "feet")
  12905. },
  12906. {
  12907. name: "Macro",
  12908. height: math.unit(325, "feet")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(0.3, "meters"),
  12917. weight: math.unit(3.5, "kg"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/chip/front.svg",
  12921. extra: 748 / 674
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Micro",
  12928. height: math.unit(1, "inch"),
  12929. default: true
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12935. {
  12936. side: {
  12937. height: math.unit(2.3, "meters"),
  12938. weight: math.unit(3500, "lb"),
  12939. name: "Side",
  12940. image: {
  12941. source: "./media/characters/torvid/side.svg",
  12942. extra: 1972 / 722,
  12943. bottom: 0.035
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(2.3, "meters"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(2, "meters"),
  12960. weight: math.unit(150.5, "kg"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/susan/front.svg",
  12964. extra: 693 / 635,
  12965. bottom: 0.05
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Megamacro",
  12972. height: math.unit(505, "miles"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(6, "feet"),
  12982. weight: math.unit(150, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/raindrops/front.svg",
  12986. extra: 2655 / 2461,
  12987. bottom: 49 / 2705
  12988. }
  12989. },
  12990. back: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/raindrops/back.svg",
  12996. extra: 2574 / 2400,
  12997. bottom: 65 / 2634
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Micro",
  13004. height: math.unit(6, "inches")
  13005. },
  13006. {
  13007. name: "Normal",
  13008. height: math.unit(6 + 2 / 12, "feet")
  13009. },
  13010. {
  13011. name: "Macro",
  13012. height: math.unit(131, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Megamacro",
  13017. height: math.unit(15, "miles")
  13018. },
  13019. {
  13020. name: "Gigamacro",
  13021. height: math.unit(4000, "miles")
  13022. },
  13023. {
  13024. name: "Teramacro",
  13025. height: math.unit(315000, "miles")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(2.794, "meters"),
  13034. weight: math.unit(325, "kg"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/tezwa/front.svg",
  13038. extra: 2083 / 1906,
  13039. bottom: 0.031
  13040. }
  13041. },
  13042. foot: {
  13043. height: math.unit(0.687, "meters"),
  13044. name: "Foot",
  13045. image: {
  13046. source: "./media/characters/tezwa/foot.svg"
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(9 + 2 / 12, "feet"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(58, "feet"),
  13063. weight: math.unit(89000, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/typhus/front.svg",
  13067. extra: 816 / 800,
  13068. bottom: 0.065
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(58, "feet"),
  13076. default: true
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(12, "feet"),
  13085. weight: math.unit(6, "tonnes"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/lyra-von-wulf/front.svg",
  13089. extra: 1,
  13090. bottom: 0.10
  13091. }
  13092. },
  13093. frontMecha: {
  13094. height: math.unit(12, "feet"),
  13095. weight: math.unit(12, "tonnes"),
  13096. name: "Front (Mecha)",
  13097. image: {
  13098. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13099. extra: 1,
  13100. bottom: 0.042
  13101. }
  13102. },
  13103. maw: {
  13104. height: math.unit(2.2, "feet"),
  13105. name: "Maw",
  13106. image: {
  13107. source: "./media/characters/lyra-von-wulf/maw.svg"
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Normal",
  13114. height: math.unit(12, "feet"),
  13115. default: true
  13116. },
  13117. {
  13118. name: "Classic",
  13119. height: math.unit(50, "feet")
  13120. },
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(500, "feet")
  13124. },
  13125. {
  13126. name: "Megamacro",
  13127. height: math.unit(1, "mile")
  13128. },
  13129. {
  13130. name: "Gigamacro",
  13131. height: math.unit(400, "miles")
  13132. },
  13133. {
  13134. name: "Teramacro",
  13135. height: math.unit(22000, "miles")
  13136. },
  13137. {
  13138. name: "Solarmacro",
  13139. height: math.unit(8600000, "miles")
  13140. },
  13141. {
  13142. name: "Galactic",
  13143. height: math.unit(1057000, "lightyears")
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6 + 10 / 12, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/dixon/front.svg",
  13156. extra: 3361 / 3209,
  13157. bottom: 0.01
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(6 + 10 / 12, "feet"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Big",
  13169. height: math.unit(12, "meters")
  13170. },
  13171. {
  13172. name: "Macro",
  13173. height: math.unit(500, "meters")
  13174. },
  13175. {
  13176. name: "Megamacro",
  13177. height: math.unit(2, "km")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(185, "cm"),
  13186. weight: math.unit(68, "kg"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/kauko/front.svg",
  13190. extra: 1455 / 1421,
  13191. bottom: 0.03
  13192. }
  13193. },
  13194. back: {
  13195. height: math.unit(185, "cm"),
  13196. weight: math.unit(68, "kg"),
  13197. name: "Back",
  13198. image: {
  13199. source: "./media/characters/kauko/back.svg",
  13200. extra: 1455 / 1421,
  13201. bottom: 0.004
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(185, "cm"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "kg"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/varg/front.svg",
  13222. extra: 1108 / 1018,
  13223. bottom: 0.0375
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(5, "meters")
  13231. },
  13232. {
  13233. name: "Macro",
  13234. height: math.unit(200, "meters")
  13235. },
  13236. {
  13237. name: "Megamacro",
  13238. height: math.unit(20, "kilometers")
  13239. },
  13240. {
  13241. name: "True Size",
  13242. height: math.unit(211, "km"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Gigamacro",
  13247. height: math.unit(1000, "km")
  13248. },
  13249. {
  13250. name: "Gigamacro+",
  13251. height: math.unit(8000, "km")
  13252. },
  13253. {
  13254. name: "Teramacro",
  13255. height: math.unit(1000000, "km")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(7 + 7 / 12, "feet"),
  13264. weight: math.unit(267, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/dayza/front.svg",
  13268. extra: 1262 / 1200,
  13269. bottom: 0.035
  13270. }
  13271. },
  13272. side: {
  13273. height: math.unit(7 + 7 / 12, "feet"),
  13274. weight: math.unit(267, "lb"),
  13275. name: "Side",
  13276. image: {
  13277. source: "./media/characters/dayza/side.svg",
  13278. extra: 1295 / 1245,
  13279. bottom: 0.05
  13280. }
  13281. },
  13282. back: {
  13283. height: math.unit(7 + 7 / 12, "feet"),
  13284. weight: math.unit(267, "lb"),
  13285. name: "Back",
  13286. image: {
  13287. source: "./media/characters/dayza/back.svg",
  13288. extra: 1241 / 1170
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(7 + 7 / 12, "feet"),
  13296. default: true
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(155, "feet")
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6 + 5 / 12, "feet"),
  13309. weight: math.unit(160, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/xanthos/front.svg",
  13313. extra: 1,
  13314. bottom: 0.04
  13315. }
  13316. },
  13317. back: {
  13318. height: math.unit(6 + 5 / 12, "feet"),
  13319. weight: math.unit(160, "lb"),
  13320. name: "Back",
  13321. image: {
  13322. source: "./media/characters/xanthos/back.svg",
  13323. extra: 1,
  13324. bottom: 0.03
  13325. }
  13326. },
  13327. hand: {
  13328. height: math.unit(0.928, "feet"),
  13329. name: "Hand",
  13330. image: {
  13331. source: "./media/characters/xanthos/hand.svg"
  13332. }
  13333. },
  13334. foot: {
  13335. height: math.unit(1.286, "feet"),
  13336. name: "Foot",
  13337. image: {
  13338. source: "./media/characters/xanthos/foot.svg"
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(6 + 5 / 12, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Normal+",
  13350. height: math.unit(6, "meters")
  13351. },
  13352. {
  13353. name: "Macro",
  13354. height: math.unit(40, "feet")
  13355. },
  13356. {
  13357. name: "Macro+",
  13358. height: math.unit(200, "meters")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(20, "km")
  13363. },
  13364. {
  13365. name: "Megamacro+",
  13366. height: math.unit(100, "km")
  13367. },
  13368. {
  13369. name: "Gigamacro",
  13370. height: math.unit(200, "megameters")
  13371. },
  13372. {
  13373. name: "Gigamacro+",
  13374. height: math.unit(1.5, "gigameters")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6 + 3 / 12, "feet"),
  13383. weight: math.unit(215, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/grynn/front.svg",
  13387. extra: 4627 / 4209,
  13388. bottom: 0.047
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(6, "inches")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(6 + 3 / 12, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Big",
  13404. height: math.unit(104, "feet")
  13405. },
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(944, "feet")
  13409. },
  13410. {
  13411. name: "Macro+",
  13412. height: math.unit(9480, "feet")
  13413. },
  13414. {
  13415. name: "Megamacro",
  13416. height: math.unit(78752, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro+",
  13420. height: math.unit(630128, "feet")
  13421. },
  13422. {
  13423. name: "Megamacro++",
  13424. height: math.unit(3150695, "feet")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(7 + 5 / 12, "feet"),
  13433. weight: math.unit(450, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/mocha-aura/front.svg",
  13437. extra: 1907 / 1817,
  13438. bottom: 0.04
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(7 + 5 / 12, "feet"),
  13443. weight: math.unit(450, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/mocha-aura/back.svg",
  13447. extra: 1900 / 1825,
  13448. bottom: 0.045
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Nano",
  13455. height: math.unit(1, "nm")
  13456. },
  13457. {
  13458. name: "Megamicro",
  13459. height: math.unit(1, "mm")
  13460. },
  13461. {
  13462. name: "Micro",
  13463. height: math.unit(3, "inches")
  13464. },
  13465. {
  13466. name: "Normal",
  13467. height: math.unit(7 + 5 / 12, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(30, "feet")
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(3500, "feet")
  13477. },
  13478. {
  13479. name: "Teramacro",
  13480. height: math.unit(500000, "miles")
  13481. },
  13482. {
  13483. name: "Petamacro",
  13484. height: math.unit(50000000000000000, "parsecs")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/ilisha-devya/front.svg",
  13497. extra: 1053/1049,
  13498. bottom: 270/1323
  13499. }
  13500. },
  13501. back: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Back",
  13505. image: {
  13506. source: "./media/characters/ilisha-devya/back.svg",
  13507. extra: 1131/1128,
  13508. bottom: 39/1170
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(500, "feet"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Megamacro",
  13520. height: math.unit(10, "miles")
  13521. },
  13522. {
  13523. name: "Gigamacro",
  13524. height: math.unit(100000, "miles")
  13525. },
  13526. {
  13527. name: "Examacro",
  13528. height: math.unit(1e9, "lightyears")
  13529. },
  13530. {
  13531. name: "Omniversal",
  13532. height: math.unit(1e33, "lightyears")
  13533. },
  13534. {
  13535. name: "Beyond Infinite",
  13536. height: math.unit(1e100, "lightyears")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13542. {
  13543. Side: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Side",
  13547. image: {
  13548. source: "./media/characters/mira/side.svg",
  13549. extra: 900 / 799,
  13550. bottom: 0.02
  13551. }
  13552. },
  13553. },
  13554. [
  13555. {
  13556. name: "Human Size",
  13557. height: math.unit(6, "feet")
  13558. },
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(100, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Megamacro",
  13566. height: math.unit(10, "miles")
  13567. },
  13568. {
  13569. name: "Gigamacro",
  13570. height: math.unit(25000, "miles")
  13571. },
  13572. {
  13573. name: "Teramacro",
  13574. height: math.unit(300, "AU")
  13575. },
  13576. {
  13577. name: "Full Size",
  13578. height: math.unit(4.5e10, "lightyears")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/holly/front.svg",
  13591. extra: 639 / 606
  13592. }
  13593. },
  13594. back: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Back",
  13598. image: {
  13599. source: "./media/characters/holly/back.svg",
  13600. extra: 623 / 598
  13601. }
  13602. },
  13603. frontWorking: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front (Working)",
  13607. image: {
  13608. source: "./media/characters/holly/front-working.svg",
  13609. extra: 607 / 577,
  13610. bottom: 0.048
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(12 + 3 / 12, "feet"),
  13618. default: true
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/porter/front.svg",
  13631. extra: 1,
  13632. bottom: 0.01
  13633. }
  13634. },
  13635. frontRobes: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Front (Robes)",
  13639. image: {
  13640. source: "./media/characters/porter/front-robes.svg",
  13641. extra: 1.01,
  13642. bottom: 0.01
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(11 + 9 / 12, "feet"),
  13650. default: true
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13656. {
  13657. legendary: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Legendary",
  13661. image: {
  13662. source: "./media/characters/lucy/legendary.svg",
  13663. extra: 1355 / 1100,
  13664. bottom: 0.045
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Legendary",
  13671. height: math.unit(86882 * 2, "miles"),
  13672. default: true
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(150, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/drusilla/front.svg",
  13685. extra: 678 / 635,
  13686. bottom: 0.03
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/drusilla/back.svg",
  13695. extra: 678 / 635,
  13696. bottom: 0.005
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(100, "feet")
  13704. },
  13705. {
  13706. name: "Canon Height",
  13707. height: math.unit(2000, "feet"),
  13708. default: true
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(180, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/renard-thatch/front.svg",
  13721. extra: 2411 / 2275,
  13722. bottom: 0.01
  13723. }
  13724. },
  13725. frontPosing: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(180, "lb"),
  13728. name: "Front (Posing)",
  13729. image: {
  13730. source: "./media/characters/renard-thatch/front-posing.svg",
  13731. extra: 2381 / 2261,
  13732. bottom: 0.01
  13733. }
  13734. },
  13735. back: {
  13736. height: math.unit(6, "feet"),
  13737. weight: math.unit(180, "lb"),
  13738. name: "Back",
  13739. image: {
  13740. source: "./media/characters/renard-thatch/back.svg",
  13741. extra: 2428 / 2288
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Micro",
  13748. height: math.unit(3, "inches")
  13749. },
  13750. {
  13751. name: "Default",
  13752. height: math.unit(6, "feet"),
  13753. default: true
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(75, "feet")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(1450, "feet"),
  13766. weight: math.unit(1.21e6, "tons"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/sekvra/front.svg",
  13770. extra: 1193/1190,
  13771. bottom: 78/1271
  13772. }
  13773. },
  13774. side: {
  13775. height: math.unit(1450, "feet"),
  13776. weight: math.unit(1.21e6, "tons"),
  13777. name: "Side",
  13778. image: {
  13779. source: "./media/characters/sekvra/side.svg",
  13780. extra: 1193/1190,
  13781. bottom: 52/1245
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(1450, "feet"),
  13786. weight: math.unit(1.21e6, "tons"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/sekvra/back.svg",
  13790. extra: 1219/1216,
  13791. bottom: 21/1240
  13792. }
  13793. },
  13794. frontClothed: {
  13795. height: math.unit(1450, "feet"),
  13796. weight: math.unit(1.21e6, "tons"),
  13797. name: "Front (Clothed)",
  13798. image: {
  13799. source: "./media/characters/sekvra/front-clothed.svg",
  13800. extra: 1192/1189,
  13801. bottom: 79/1271
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(1450, "feet"),
  13809. default: true
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(15000, "feet")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(150, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/carmine/front.svg",
  13826. extra: 1,
  13827. bottom: 0.035
  13828. }
  13829. },
  13830. frontArmor: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front (Armor)",
  13834. image: {
  13835. source: "./media/characters/carmine/front-armor.svg",
  13836. extra: 1,
  13837. bottom: 0.035
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Large",
  13844. height: math.unit(1, "mile")
  13845. },
  13846. {
  13847. name: "Huge",
  13848. height: math.unit(40, "miles"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Colossal",
  13853. height: math.unit(2500, "miles")
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(6, "feet"),
  13862. weight: math.unit(150, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/elyssia/front.svg",
  13866. extra: 2201 / 2035,
  13867. bottom: 0.05
  13868. }
  13869. },
  13870. frontClothed: {
  13871. height: math.unit(6, "feet"),
  13872. weight: math.unit(150, "lb"),
  13873. name: "Front (Clothed)",
  13874. image: {
  13875. source: "./media/characters/elyssia/front-clothed.svg",
  13876. extra: 2201 / 2035,
  13877. bottom: 0.05
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(150, "lb"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/elyssia/back.svg",
  13886. extra: 2201 / 2035,
  13887. bottom: 0.013
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Smaller",
  13894. height: math.unit(150, "feet")
  13895. },
  13896. {
  13897. name: "Standard",
  13898. height: math.unit(1400, "feet"),
  13899. default: true
  13900. },
  13901. {
  13902. name: "Distracted",
  13903. height: math.unit(15000, "feet")
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(7 + 4/12, "feet"),
  13912. weight: math.unit(690, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/geno-maxwell/front.svg",
  13916. extra: 984/856,
  13917. bottom: 87/1071
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(7 + 4/12, "feet"),
  13922. weight: math.unit(690, "lb"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/geno-maxwell/back.svg",
  13926. extra: 981/854,
  13927. bottom: 57/1038
  13928. }
  13929. },
  13930. frontCostume: {
  13931. height: math.unit(7 + 4/12, "feet"),
  13932. weight: math.unit(690, "lb"),
  13933. name: "Front (Costume)",
  13934. image: {
  13935. source: "./media/characters/geno-maxwell/front-costume.svg",
  13936. extra: 984/856,
  13937. bottom: 87/1071
  13938. }
  13939. },
  13940. backcostume: {
  13941. height: math.unit(7 + 4/12, "feet"),
  13942. weight: math.unit(690, "lb"),
  13943. name: "Back (Costume)",
  13944. image: {
  13945. source: "./media/characters/geno-maxwell/back-costume.svg",
  13946. extra: 981/854,
  13947. bottom: 57/1038
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(3, "inches")
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(7 + 4 / 12, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(220, "feet")
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(11, "miles")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(7 + 4/12, "feet"),
  13976. weight: math.unit(750, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/regena-maxwell/front.svg",
  13980. extra: 984/856,
  13981. bottom: 87/1071
  13982. }
  13983. },
  13984. back: {
  13985. height: math.unit(7 + 4/12, "feet"),
  13986. weight: math.unit(750, "lb"),
  13987. name: "Back",
  13988. image: {
  13989. source: "./media/characters/regena-maxwell/back.svg",
  13990. extra: 981/854,
  13991. bottom: 57/1038
  13992. }
  13993. },
  13994. frontCostume: {
  13995. height: math.unit(7 + 4/12, "feet"),
  13996. weight: math.unit(750, "lb"),
  13997. name: "Front (Costume)",
  13998. image: {
  13999. source: "./media/characters/regena-maxwell/front-costume.svg",
  14000. extra: 984/856,
  14001. bottom: 87/1071
  14002. }
  14003. },
  14004. backcostume: {
  14005. height: math.unit(7 + 4/12, "feet"),
  14006. weight: math.unit(750, "lb"),
  14007. name: "Back (Costume)",
  14008. image: {
  14009. source: "./media/characters/regena-maxwell/back-costume.svg",
  14010. extra: 981/854,
  14011. bottom: 57/1038
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(7 + 4 / 12, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(220, "feet")
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(11, "miles")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14040. extra: 860 / 690,
  14041. bottom: 0.03
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(1.7, "meters"),
  14049. default: true
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/quilly/front.svg",
  14062. extra: 890 / 776
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Gigamacro",
  14069. height: math.unit(404090, "miles"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(7 + 8 / 12, "feet"),
  14079. weight: math.unit(350, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/tempest/front.svg",
  14083. extra: 1175 / 1086,
  14084. bottom: 0.02
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(7 + 8 / 12, "feet"),
  14092. default: true
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14098. {
  14099. side: {
  14100. height: math.unit(4 + 5 / 12, "feet"),
  14101. weight: math.unit(80, "lb"),
  14102. name: "Side",
  14103. image: {
  14104. source: "./media/characters/rodger/side.svg",
  14105. extra: 1235 / 1118
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Micro",
  14112. height: math.unit(1, "inch")
  14113. },
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(4 + 5 / 12, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(120, "feet")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/danyel/front.svg",
  14134. extra: 1185 / 1123,
  14135. bottom: 0.05
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Shrunken",
  14142. height: math.unit(0.5, "mm")
  14143. },
  14144. {
  14145. name: "Micro",
  14146. height: math.unit(1, "mm"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Upsized",
  14151. height: math.unit(5 + 5 / 12, "feet")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(5 + 6 / 12, "feet"),
  14160. weight: math.unit(200, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/vivian-bijoux/front.svg",
  14164. extra: 1217/1209,
  14165. bottom: 76/1293
  14166. }
  14167. },
  14168. back: {
  14169. height: math.unit(5 + 6 / 12, "feet"),
  14170. weight: math.unit(200, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/vivian-bijoux/back.svg",
  14174. extra: 1214/1208,
  14175. bottom: 51/1265
  14176. }
  14177. },
  14178. dressed: {
  14179. height: math.unit(5 + 6 / 12, "feet"),
  14180. weight: math.unit(200, "lb"),
  14181. name: "Dressed",
  14182. image: {
  14183. source: "./media/characters/vivian-bijoux/dressed.svg",
  14184. extra: 1217/1209,
  14185. bottom: 76/1293
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5 + 6 / 12, "feet"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Bad Dream",
  14197. height: math.unit(500, "feet")
  14198. },
  14199. {
  14200. name: "Nightmare",
  14201. height: math.unit(500, "miles")
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(6 + 1 / 12, "feet"),
  14210. weight: math.unit(260, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/zeta/front.svg",
  14214. extra: 1968 / 1889,
  14215. bottom: 0.06
  14216. }
  14217. },
  14218. back: {
  14219. height: math.unit(6 + 1 / 12, "feet"),
  14220. weight: math.unit(260, "lb"),
  14221. name: "Back",
  14222. image: {
  14223. source: "./media/characters/zeta/back.svg",
  14224. extra: 1944 / 1858,
  14225. bottom: 0.03
  14226. }
  14227. },
  14228. hand: {
  14229. height: math.unit(1.112, "feet"),
  14230. name: "Hand",
  14231. image: {
  14232. source: "./media/characters/zeta/hand.svg"
  14233. }
  14234. },
  14235. foot: {
  14236. height: math.unit(1.48, "feet"),
  14237. name: "Foot",
  14238. image: {
  14239. source: "./media/characters/zeta/foot.svg"
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(6, "inches")
  14247. },
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(6 + 1 / 12, "feet"),
  14251. default: true
  14252. },
  14253. {
  14254. name: "Macro",
  14255. height: math.unit(20, "feet")
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/jamie-larsen/front.svg",
  14268. extra: 962 / 933,
  14269. bottom: 0.02
  14270. }
  14271. },
  14272. back: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(150, "lb"),
  14275. name: "Back",
  14276. image: {
  14277. source: "./media/characters/jamie-larsen/back.svg",
  14278. extra: 997 / 946
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(28 + 7 / 12, "feet"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Macro+",
  14290. height: math.unit(180, "feet")
  14291. },
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(10, "miles")
  14295. },
  14296. {
  14297. name: "Gigamacro",
  14298. height: math.unit(200000, "miles")
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(120, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/vance/front.svg",
  14311. extra: 1980 / 1890,
  14312. bottom: 0.09
  14313. }
  14314. },
  14315. back: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(120, "lb"),
  14318. name: "Back",
  14319. image: {
  14320. source: "./media/characters/vance/back.svg",
  14321. extra: 2081 / 1994,
  14322. bottom: 0.014
  14323. }
  14324. },
  14325. hand: {
  14326. height: math.unit(0.88, "feet"),
  14327. name: "Hand",
  14328. image: {
  14329. source: "./media/characters/vance/hand.svg"
  14330. }
  14331. },
  14332. foot: {
  14333. height: math.unit(0.64, "feet"),
  14334. name: "Foot",
  14335. image: {
  14336. source: "./media/characters/vance/foot.svg"
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Small",
  14343. height: math.unit(90, "feet"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(100, "meters")
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(15, "miles")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(180, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/xochitl/front.svg",
  14365. extra: 2297 / 2261,
  14366. bottom: 0.065
  14367. }
  14368. },
  14369. back: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(180, "lb"),
  14372. name: "Back",
  14373. image: {
  14374. source: "./media/characters/xochitl/back.svg",
  14375. extra: 2386 / 2354,
  14376. bottom: 0.01
  14377. }
  14378. },
  14379. foot: {
  14380. height: math.unit(6 / 5 * 1.15, "feet"),
  14381. weight: math.unit(150, "lb"),
  14382. name: "Foot",
  14383. image: {
  14384. source: "./media/characters/xochitl/foot.svg"
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Macro",
  14391. height: math.unit(80, "feet")
  14392. },
  14393. {
  14394. name: "Macro+",
  14395. height: math.unit(400, "feet"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Gigamacro",
  14400. height: math.unit(80000, "miles")
  14401. },
  14402. {
  14403. name: "Gigamacro+",
  14404. height: math.unit(400000, "miles")
  14405. },
  14406. {
  14407. name: "Teramacro",
  14408. height: math.unit(300, "AU")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/vincent/front.svg",
  14421. extra: 1130 / 1080,
  14422. bottom: 0.055
  14423. }
  14424. },
  14425. beak: {
  14426. height: math.unit(6 * 0.1, "feet"),
  14427. name: "Beak",
  14428. image: {
  14429. source: "./media/characters/vincent/beak.svg"
  14430. }
  14431. },
  14432. hand: {
  14433. height: math.unit(6 * 0.85, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Hand",
  14436. image: {
  14437. source: "./media/characters/vincent/hand.svg"
  14438. }
  14439. },
  14440. foot: {
  14441. height: math.unit(6 * 0.19, "feet"),
  14442. weight: math.unit(150, "lb"),
  14443. name: "Foot",
  14444. image: {
  14445. source: "./media/characters/vincent/foot.svg"
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Base",
  14452. height: math.unit(6 + 5 / 12, "feet"),
  14453. default: true
  14454. },
  14455. {
  14456. name: "Macro",
  14457. height: math.unit(300, "feet")
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(2, "miles")
  14462. },
  14463. {
  14464. name: "Gigamacro",
  14465. height: math.unit(1000, "miles")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(2, "meters"),
  14474. weight: math.unit(500, "kg"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/coatl/front.svg",
  14478. extra: 3948 / 3500,
  14479. bottom: 0.082
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(4, "meters")
  14487. },
  14488. {
  14489. name: "Macro",
  14490. height: math.unit(100, "meters"),
  14491. default: true
  14492. },
  14493. {
  14494. name: "Macro+",
  14495. height: math.unit(300, "meters")
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(3, "gigameters")
  14500. },
  14501. {
  14502. name: "Megamacro+",
  14503. height: math.unit(300, "terameters")
  14504. },
  14505. {
  14506. name: "Megamacro++",
  14507. height: math.unit(3, "lightyears")
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(6, "feet"),
  14516. weight: math.unit(50, "kg"),
  14517. name: "front",
  14518. image: {
  14519. source: "./media/characters/shiroryu/front.svg",
  14520. extra: 1990 / 1935
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Mortal Mingling",
  14527. height: math.unit(3, "meters")
  14528. },
  14529. {
  14530. name: "Kaiju-ish",
  14531. height: math.unit(250, "meters")
  14532. },
  14533. {
  14534. name: "Somewhat Godly",
  14535. height: math.unit(400, "km"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Planetary",
  14540. height: math.unit(300, "megameters")
  14541. },
  14542. {
  14543. name: "Galaxy-dwarfing",
  14544. height: math.unit(450, "kiloparsecs")
  14545. },
  14546. {
  14547. name: "Universe Eater",
  14548. height: math.unit(150, "gigaparsecs")
  14549. },
  14550. {
  14551. name: "Almost Immeasurable",
  14552. height: math.unit(1.3e266, "yottaparsecs")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(150, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/umeko/front.svg",
  14565. extra: 1,
  14566. bottom: 0.019
  14567. }
  14568. },
  14569. frontArmored: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(150, "lb"),
  14572. name: "Front (Armored)",
  14573. image: {
  14574. source: "./media/characters/umeko/front-armored.svg",
  14575. extra: 1,
  14576. bottom: 0.021
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Macro",
  14583. height: math.unit(220, "feet"),
  14584. default: true
  14585. },
  14586. {
  14587. name: "Guardian Dragon",
  14588. height: math.unit(50, "miles")
  14589. },
  14590. {
  14591. name: "Cosmic",
  14592. height: math.unit(800000, "miles")
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(150, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/cassidy/front.svg",
  14605. extra: 810/808,
  14606. bottom: 41/851
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Canon Height",
  14613. height: math.unit(120, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Macro+",
  14618. height: math.unit(400, "feet")
  14619. },
  14620. {
  14621. name: "Macro++",
  14622. height: math.unit(4000, "feet")
  14623. },
  14624. {
  14625. name: "Megamacro",
  14626. height: math.unit(3, "miles")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(150, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/isaac/front.svg",
  14639. extra: 896 / 815,
  14640. bottom: 0.11
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Human Size",
  14647. height: math.unit(8, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(400, "feet")
  14653. },
  14654. {
  14655. name: "Megamacro",
  14656. height: math.unit(50, "miles")
  14657. },
  14658. {
  14659. name: "Canon Height",
  14660. height: math.unit(200, "AU")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(72, "kg"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/sleekit/front.svg",
  14673. extra: 4693 / 4487,
  14674. bottom: 0.012
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Minimum Height",
  14681. height: math.unit(10, "meters")
  14682. },
  14683. {
  14684. name: "Smaller",
  14685. height: math.unit(25, "meters")
  14686. },
  14687. {
  14688. name: "Larger",
  14689. height: math.unit(38, "meters"),
  14690. default: true
  14691. },
  14692. {
  14693. name: "Maximum height",
  14694. height: math.unit(100, "meters")
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(150, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/nillia/front.svg",
  14707. extra: 2195 / 2037,
  14708. bottom: 0.005
  14709. }
  14710. },
  14711. back: {
  14712. height: math.unit(6, "feet"),
  14713. weight: math.unit(150, "lb"),
  14714. name: "Back",
  14715. image: {
  14716. source: "./media/characters/nillia/back.svg",
  14717. extra: 2195 / 2037,
  14718. bottom: 0.005
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Canon Height",
  14725. height: math.unit(489, "feet"),
  14726. default: true
  14727. }
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/mesmyriza/front.svg",
  14739. extra: 2067 / 1784,
  14740. bottom: 0.035
  14741. }
  14742. },
  14743. foot: {
  14744. height: math.unit(6 / (250 / 35), "feet"),
  14745. name: "Foot",
  14746. image: {
  14747. source: "./media/characters/mesmyriza/foot.svg"
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(457, "meters"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(8, "megameters")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(250, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/saudade/front.svg",
  14772. extra: 1172 / 1139,
  14773. bottom: 0.035
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Micro",
  14780. height: math.unit(3, "inches")
  14781. },
  14782. {
  14783. name: "Normal",
  14784. height: math.unit(6, "feet"),
  14785. default: true
  14786. },
  14787. {
  14788. name: "Macro",
  14789. height: math.unit(50, "feet")
  14790. },
  14791. {
  14792. name: "Megamacro",
  14793. height: math.unit(2800, "feet")
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(5 + 4 / 12, "feet"),
  14802. weight: math.unit(100, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/keireer/front.svg",
  14806. extra: 716 / 666,
  14807. bottom: 0.05
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(5 + 4 / 12, "feet"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(90, "kg"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/mirja/front.svg",
  14828. extra: 1789 / 1683,
  14829. bottom: 0.05
  14830. }
  14831. },
  14832. frontDressed: {
  14833. height: math.unit(6, "feet"),
  14834. weight: math.unit(90, "lb"),
  14835. name: "Front (Dressed)",
  14836. image: {
  14837. source: "./media/characters/mirja/front-dressed.svg",
  14838. extra: 1789 / 1683,
  14839. bottom: 0.05
  14840. }
  14841. },
  14842. back: {
  14843. height: math.unit(6, "feet"),
  14844. weight: math.unit(90, "lb"),
  14845. name: "Back",
  14846. image: {
  14847. source: "./media/characters/mirja/back.svg",
  14848. extra: 953 / 917,
  14849. bottom: 0.017
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "\"Incognito\"",
  14856. height: math.unit(3, "meters")
  14857. },
  14858. {
  14859. name: "Strolling Size",
  14860. height: math.unit(15, "km")
  14861. },
  14862. {
  14863. name: "Larger Strolling Size",
  14864. height: math.unit(400, "km")
  14865. },
  14866. {
  14867. name: "Preferred Size",
  14868. height: math.unit(5000, "km")
  14869. },
  14870. {
  14871. name: "True Size",
  14872. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(15, "feet"),
  14882. weight: math.unit(880, "kg"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/nightraver/front.svg",
  14886. extra: 2444 / 2160,
  14887. bottom: 0.027
  14888. }
  14889. },
  14890. back: {
  14891. height: math.unit(15, "feet"),
  14892. weight: math.unit(880, "kg"),
  14893. name: "Back",
  14894. image: {
  14895. source: "./media/characters/nightraver/back.svg",
  14896. extra: 2309 / 2180,
  14897. bottom: 0.005
  14898. }
  14899. },
  14900. sole: {
  14901. height: math.unit(2.878, "feet"),
  14902. name: "Sole",
  14903. image: {
  14904. source: "./media/characters/nightraver/sole.svg"
  14905. }
  14906. },
  14907. foot: {
  14908. height: math.unit(2.285, "feet"),
  14909. name: "Foot",
  14910. image: {
  14911. source: "./media/characters/nightraver/foot.svg"
  14912. }
  14913. },
  14914. maw: {
  14915. height: math.unit(2.67, "feet"),
  14916. name: "Maw",
  14917. image: {
  14918. source: "./media/characters/nightraver/maw.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Micro",
  14925. height: math.unit(1, "cm")
  14926. },
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(15, "feet"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Macro",
  14934. height: math.unit(300, "feet")
  14935. },
  14936. {
  14937. name: "Megamacro",
  14938. height: math.unit(300, "miles")
  14939. },
  14940. {
  14941. name: "Gigamacro",
  14942. height: math.unit(10000, "miles")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14948. {
  14949. side: {
  14950. height: math.unit(2, "inches"),
  14951. weight: math.unit(5, "grams"),
  14952. name: "Side",
  14953. image: {
  14954. source: "./media/characters/arc/side.svg"
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Micro",
  14961. height: math.unit(2, "inches"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(1.1938, "meters"),
  14971. weight: math.unit(54, "kg"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/nebula-shahar/front.svg",
  14975. extra: 1642 / 1436,
  14976. bottom: 0.06
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Megamicro",
  14983. height: math.unit(0.3, "mm")
  14984. },
  14985. {
  14986. name: "Micro",
  14987. height: math.unit(3, "cm")
  14988. },
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(138, "cm"),
  14992. default: true
  14993. },
  14994. {
  14995. name: "Macro",
  14996. height: math.unit(30, "m")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5.24, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/shayla/front.svg",
  15009. extra: 1512 / 1414,
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. back: {
  15014. height: math.unit(5.24, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Back",
  15017. image: {
  15018. source: "./media/characters/shayla/back.svg",
  15019. extra: 1512 / 1414
  15020. }
  15021. },
  15022. hand: {
  15023. height: math.unit(0.7781496062992126, "feet"),
  15024. name: "Hand",
  15025. image: {
  15026. source: "./media/characters/shayla/hand.svg"
  15027. }
  15028. },
  15029. foot: {
  15030. height: math.unit(1.4206036745406823, "feet"),
  15031. name: "Foot",
  15032. image: {
  15033. source: "./media/characters/shayla/foot.svg"
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Micro",
  15040. height: math.unit(0.32, "feet")
  15041. },
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5.24, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(492.12, "feet")
  15050. },
  15051. {
  15052. name: "Megamacro",
  15053. height: math.unit(186.41, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(2.2, "m"),
  15062. weight: math.unit(120, "kg"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/pia-jr/front.svg",
  15066. extra: 1000 / 970,
  15067. bottom: 0.035
  15068. }
  15069. },
  15070. hand: {
  15071. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15072. name: "Hand",
  15073. image: {
  15074. source: "./media/characters/pia-jr/hand.svg"
  15075. }
  15076. },
  15077. paw: {
  15078. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15079. name: "Paw",
  15080. image: {
  15081. source: "./media/characters/pia-jr/paw.svg"
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Micro",
  15088. height: math.unit(1.2, "cm")
  15089. },
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(2.2, "m"),
  15093. default: true
  15094. },
  15095. {
  15096. name: "Macro",
  15097. height: math.unit(180, "m")
  15098. },
  15099. {
  15100. name: "Megamacro",
  15101. height: math.unit(420, "km")
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(2, "m"),
  15110. weight: math.unit(115, "kg"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/pia-sr/front.svg",
  15114. extra: 760 / 730,
  15115. bottom: 0.015
  15116. }
  15117. },
  15118. back: {
  15119. height: math.unit(2, "m"),
  15120. weight: math.unit(115, "kg"),
  15121. name: "Back",
  15122. image: {
  15123. source: "./media/characters/pia-sr/back.svg",
  15124. extra: 760 / 730,
  15125. bottom: 0.01
  15126. }
  15127. },
  15128. hand: {
  15129. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15130. name: "Hand",
  15131. image: {
  15132. source: "./media/characters/pia-sr/hand.svg"
  15133. }
  15134. },
  15135. foot: {
  15136. height: math.unit(1.83, "feet"),
  15137. name: "Foot",
  15138. image: {
  15139. source: "./media/characters/pia-sr/foot.svg"
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Micro",
  15146. height: math.unit(88, "mm")
  15147. },
  15148. {
  15149. name: "Normal",
  15150. height: math.unit(2, "m"),
  15151. default: true
  15152. },
  15153. {
  15154. name: "Macro",
  15155. height: math.unit(200, "m")
  15156. },
  15157. {
  15158. name: "Megamacro",
  15159. height: math.unit(420, "km")
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(8 + 2 / 12, "feet"),
  15168. weight: math.unit(300, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/kibibyte/front.svg",
  15172. extra: 2221 / 2098,
  15173. bottom: 0.04
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(8 + 2 / 12, "feet"),
  15181. default: true
  15182. },
  15183. {
  15184. name: "Socialable Macro",
  15185. height: math.unit(50, "feet")
  15186. },
  15187. {
  15188. name: "Macro",
  15189. height: math.unit(300, "feet")
  15190. },
  15191. {
  15192. name: "Megamacro",
  15193. height: math.unit(500, "miles")
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15199. {
  15200. front: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Front",
  15204. image: {
  15205. source: "./media/characters/felix/front.svg",
  15206. extra: 762 / 722,
  15207. bottom: 0.02
  15208. }
  15209. },
  15210. frontClothed: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Front (Clothed)",
  15214. image: {
  15215. source: "./media/characters/felix/front-clothed.svg",
  15216. extra: 762 / 722,
  15217. bottom: 0.02
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(6 + 8 / 12, "feet"),
  15225. default: true
  15226. },
  15227. {
  15228. name: "Macro",
  15229. height: math.unit(2600, "feet")
  15230. },
  15231. {
  15232. name: "Megamacro",
  15233. height: math.unit(450, "miles")
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15239. {
  15240. front: {
  15241. height: math.unit(6 + 1 / 12, "feet"),
  15242. weight: math.unit(250, "lb"),
  15243. name: "Front",
  15244. image: {
  15245. source: "./media/characters/tobo/front.svg",
  15246. extra: 608 / 586,
  15247. bottom: 0.023
  15248. }
  15249. },
  15250. back: {
  15251. height: math.unit(6 + 1 / 12, "feet"),
  15252. weight: math.unit(250, "lb"),
  15253. name: "Back",
  15254. image: {
  15255. source: "./media/characters/tobo/back.svg",
  15256. extra: 608 / 586
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Nano",
  15263. height: math.unit(2, "nm")
  15264. },
  15265. {
  15266. name: "Megamicro",
  15267. height: math.unit(0.1, "mm")
  15268. },
  15269. {
  15270. name: "Micro",
  15271. height: math.unit(1, "inch"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Human-sized",
  15276. height: math.unit(6 + 1 / 12, "feet")
  15277. },
  15278. {
  15279. name: "Macro",
  15280. height: math.unit(250, "feet")
  15281. },
  15282. {
  15283. name: "Megamacro",
  15284. height: math.unit(75, "miles")
  15285. },
  15286. {
  15287. name: "Texas-sized",
  15288. height: math.unit(750, "miles")
  15289. },
  15290. {
  15291. name: "Teramacro",
  15292. height: math.unit(50000, "miles")
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(269, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/danny-kapowsky/front.svg",
  15305. extra: 766 / 736,
  15306. bottom: 0.044
  15307. }
  15308. },
  15309. back: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(269, "lb"),
  15312. name: "Back",
  15313. image: {
  15314. source: "./media/characters/danny-kapowsky/back.svg",
  15315. extra: 797 / 760,
  15316. bottom: 0.025
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Macro",
  15323. height: math.unit(150, "feet"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Macro+",
  15328. height: math.unit(200, "feet")
  15329. },
  15330. {
  15331. name: "Macro++",
  15332. height: math.unit(300, "feet")
  15333. },
  15334. {
  15335. name: "Macro+++",
  15336. height: math.unit(400, "feet")
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15342. {
  15343. side: {
  15344. height: math.unit(6, "feet"),
  15345. weight: math.unit(170, "lb"),
  15346. name: "Side",
  15347. image: {
  15348. source: "./media/characters/finn/side.svg",
  15349. extra: 1953 / 1807,
  15350. bottom: 0.057
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Megamacro",
  15357. height: math.unit(14445, "feet"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(5 + 6 / 12, "feet"),
  15367. weight: math.unit(125, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/roy/front.svg",
  15371. extra: 1,
  15372. bottom: 0.11
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Micro",
  15379. height: math.unit(3, "inches"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(5 + 6 / 12, "feet")
  15385. },
  15386. {
  15387. name: "Lesser Macro",
  15388. height: math.unit(60, "feet")
  15389. },
  15390. {
  15391. name: "Greater Macro",
  15392. height: math.unit(120, "feet")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(100, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/aevsivs/front.svg",
  15405. extra: 1,
  15406. bottom: 0.03
  15407. }
  15408. },
  15409. back: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(100, "lb"),
  15412. name: "Back",
  15413. image: {
  15414. source: "./media/characters/aevsivs/back.svg"
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Micro",
  15421. height: math.unit(2, "inches"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(5, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(5 + 7 / 12, "feet"),
  15435. weight: math.unit(159, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/hildegard/front.svg",
  15439. extra: 289 / 269,
  15440. bottom: 7.63 / 297.8
  15441. }
  15442. },
  15443. back: {
  15444. height: math.unit(5 + 7 / 12, "feet"),
  15445. weight: math.unit(159, "lb"),
  15446. name: "Back",
  15447. image: {
  15448. source: "./media/characters/hildegard/back.svg",
  15449. extra: 280 / 260,
  15450. bottom: 2.3 / 282
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(5 + 7 / 12, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15464. {
  15465. bernard: {
  15466. height: math.unit(2 + 7 / 12, "feet"),
  15467. weight: math.unit(66, "lb"),
  15468. name: "Bernard",
  15469. rename: true,
  15470. image: {
  15471. source: "./media/characters/bernard-wilder/bernard.svg",
  15472. extra: 192 / 128,
  15473. bottom: 0.05
  15474. }
  15475. },
  15476. wilder: {
  15477. height: math.unit(5 + 8 / 12, "feet"),
  15478. weight: math.unit(143, "lb"),
  15479. name: "Wilder",
  15480. rename: true,
  15481. image: {
  15482. source: "./media/characters/bernard-wilder/wilder.svg",
  15483. extra: 361 / 312,
  15484. bottom: 0.02
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(2 + 7 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15498. {
  15499. anthro: {
  15500. height: math.unit(6 + 1 / 12, "feet"),
  15501. weight: math.unit(155, "lb"),
  15502. name: "Anthro",
  15503. image: {
  15504. source: "./media/characters/hearth/anthro.svg",
  15505. extra: 1178/1136,
  15506. bottom: 28/1206
  15507. }
  15508. },
  15509. feral: {
  15510. height: math.unit(3.78, "feet"),
  15511. weight: math.unit(35, "kg"),
  15512. name: "Feral",
  15513. image: {
  15514. source: "./media/characters/hearth/feral.svg",
  15515. extra: 153 / 135,
  15516. bottom: 0.03
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(6 + 1 / 12, "feet"),
  15524. default: true
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(182, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/ingrid/front.svg",
  15537. extra: 294 / 268,
  15538. bottom: 0.027
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(6, "feet"),
  15546. default: true
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15552. {
  15553. eevee: {
  15554. height: math.unit(2 + 10 / 12, "feet"),
  15555. weight: math.unit(86, "lb"),
  15556. name: "Malgam",
  15557. image: {
  15558. source: "./media/characters/malgam/eevee.svg",
  15559. extra: 952/784,
  15560. bottom: 38/990
  15561. }
  15562. },
  15563. sylveon: {
  15564. height: math.unit(4, "feet"),
  15565. weight: math.unit(101, "lb"),
  15566. name: "Future Malgam",
  15567. rename: true,
  15568. image: {
  15569. source: "./media/characters/malgam/sylveon.svg",
  15570. extra: 371 / 325,
  15571. bottom: 0.015
  15572. }
  15573. },
  15574. gigantamax: {
  15575. height: math.unit(50, "feet"),
  15576. name: "Gigantamax Malgam",
  15577. rename: true,
  15578. image: {
  15579. source: "./media/characters/malgam/gigantamax.svg"
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(2 + 10 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(5 + 11 / 12, "feet"),
  15596. weight: math.unit(188, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/fleur/front.svg",
  15600. extra: 309 / 283,
  15601. bottom: 0.007
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(5 + 11 / 12, "feet"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(5 + 4 / 12, "feet"),
  15618. weight: math.unit(122, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/jude/front.svg",
  15622. extra: 288 / 273,
  15623. bottom: 0.03
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(5 + 4 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(5 + 11 / 12, "feet"),
  15640. weight: math.unit(190, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/seara/front.svg",
  15644. extra: 1,
  15645. bottom: 0.05
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(5 + 11 / 12, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(16 + 5 / 12, "feet"),
  15662. weight: math.unit(524, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/caspian-lugia/front.svg",
  15666. extra: 1,
  15667. bottom: 0.04
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(16 + 5 / 12, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(5 + 7 / 12, "feet"),
  15684. weight: math.unit(170, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/mika/front.svg",
  15688. extra: 1,
  15689. bottom: 0.016
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(5 + 7 / 12, "feet"),
  15697. default: true
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6 + 2 / 12, "feet"),
  15706. weight: math.unit(268, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/sol/front.svg",
  15710. extra: 247 / 231,
  15711. bottom: 0.05
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(6 + 2 / 12, "feet"),
  15719. default: true
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15725. {
  15726. buizel: {
  15727. height: math.unit(2 + 5 / 12, "feet"),
  15728. weight: math.unit(87, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/umiko/buizel.svg",
  15732. extra: 172 / 157,
  15733. bottom: 0.01
  15734. },
  15735. form: "buizel",
  15736. default: true
  15737. },
  15738. floatzel: {
  15739. height: math.unit(5 + 9 / 12, "feet"),
  15740. weight: math.unit(250, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/umiko/floatzel.svg",
  15744. extra: 1076/1006,
  15745. bottom: 15/1091
  15746. },
  15747. form: "floatzel",
  15748. default: true
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(2 + 5 / 12, "feet"),
  15755. form: "buizel",
  15756. default: true
  15757. },
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(5 + 9 / 12, "feet"),
  15761. form: "floatzel",
  15762. default: true
  15763. },
  15764. ],
  15765. {
  15766. "buizel": {
  15767. name: "Buizel"
  15768. },
  15769. "floatzel": {
  15770. name: "Floatzel",
  15771. default: true
  15772. }
  15773. }
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(6 + 2 / 12, "feet"),
  15780. weight: math.unit(146, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/iliac/front.svg",
  15784. extra: 389 / 365,
  15785. bottom: 0.035
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(6 + 2 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(6, "feet"),
  15802. weight: math.unit(170, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/topaz/front.svg",
  15806. extra: 317 / 303,
  15807. bottom: 0.055
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(6, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(5 + 11 / 12, "feet"),
  15824. weight: math.unit(144, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/gabriel/front.svg",
  15828. extra: 285 / 262,
  15829. bottom: 0.004
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(5 + 11 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15843. {
  15844. side: {
  15845. height: math.unit(6 + 5 / 12, "feet"),
  15846. weight: math.unit(300, "lb"),
  15847. name: "Side",
  15848. image: {
  15849. source: "./media/characters/tempest-suicune/side.svg",
  15850. extra: 195 / 154,
  15851. bottom: 0.04
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(6 + 5 / 12, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(7 + 2 / 12, "feet"),
  15868. weight: math.unit(322, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/vulcan/front.svg",
  15872. extra: 154 / 147,
  15873. bottom: 0.04
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(7 + 2 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 10 / 12, "feet"),
  15890. weight: math.unit(264, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/gault/front.svg",
  15894. extra: 161 / 140,
  15895. bottom: 0.028
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 10 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/shard/front.svg",
  15916. extra: 273 / 238,
  15917. bottom: 0.02
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(3 + 6 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(5 + 11 / 12, "feet"),
  15934. weight: math.unit(146, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/ashe/front.svg",
  15938. extra: 400 / 373,
  15939. bottom: 0.01
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(5 + 11 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(5 + 5 / 12, "feet"),
  15956. weight: math.unit(135, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/beatrix/front.svg",
  15960. extra: 392 / 379,
  15961. bottom: 0.01
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(6, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6 + 2/12, "feet"),
  15978. weight: math.unit(135, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/ignatius/front.svg",
  15982. extra: 1380/1259,
  15983. bottom: 27/1407
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(6 + 2/12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 2 / 12, "feet"),
  16000. weight: math.unit(138, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/mei-li/front.svg",
  16004. extra: 237 / 229,
  16005. bottom: 0.03
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(6 + 2 / 12, "feet"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(2 + 4 / 12, "feet"),
  16022. weight: math.unit(62, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/puru/front.svg",
  16026. extra: 206 / 149,
  16027. bottom: 0.06
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(2 + 4 / 12, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16041. {
  16042. anthro: {
  16043. height: math.unit(5 + 8/12, "feet"),
  16044. weight: math.unit(200, "lb"),
  16045. energyNeed: math.unit(2000, "kcal"),
  16046. name: "Anthro",
  16047. image: {
  16048. source: "./media/characters/kee/anthro.svg",
  16049. extra: 3251/3184,
  16050. bottom: 250/3501
  16051. }
  16052. },
  16053. taur: {
  16054. height: math.unit(11, "feet"),
  16055. weight: math.unit(500, "lb"),
  16056. energyNeed: math.unit(5000, "kcal"),
  16057. name: "Taur",
  16058. image: {
  16059. source: "./media/characters/kee/taur.svg",
  16060. extra: 1362/1320,
  16061. bottom: 83/1445
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(5 + 8/12, "feet"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(35, "feet")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16079. {
  16080. anthro: {
  16081. height: math.unit(7, "feet"),
  16082. weight: math.unit(190, "lb"),
  16083. name: "Anthro",
  16084. image: {
  16085. source: "./media/characters/cobalt-dracha/anthro.svg",
  16086. extra: 231 / 225,
  16087. bottom: 0.04
  16088. }
  16089. },
  16090. feral: {
  16091. height: math.unit(9 + 7 / 12, "feet"),
  16092. weight: math.unit(294, "lb"),
  16093. name: "Feral",
  16094. image: {
  16095. source: "./media/characters/cobalt-dracha/feral.svg",
  16096. extra: 692 / 633,
  16097. bottom: 0.05
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(7, "feet"),
  16105. default: true
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16111. {
  16112. fallen: {
  16113. height: math.unit(11 + 8 / 12, "feet"),
  16114. weight: math.unit(485, "lb"),
  16115. name: "Java (Fallen)",
  16116. rename: true,
  16117. image: {
  16118. source: "./media/characters/java/fallen.svg",
  16119. extra: 226 / 208,
  16120. bottom: 0.005
  16121. }
  16122. },
  16123. godkin: {
  16124. height: math.unit(10 + 6 / 12, "feet"),
  16125. weight: math.unit(328, "lb"),
  16126. name: "Java (Godkin)",
  16127. rename: true,
  16128. image: {
  16129. source: "./media/characters/java/godkin.svg",
  16130. extra: 1104/1068,
  16131. bottom: 36/1140
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(11 + 8 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(5 + 9 / 12, "feet"),
  16148. weight: math.unit(170, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/purna/front.svg",
  16152. extra: 239 / 229,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 9 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5 + 9 / 12, "feet"),
  16170. weight: math.unit(142, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/kuva/front.svg",
  16174. extra: 281 / 271,
  16175. bottom: 0.006
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(5 + 9 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16189. {
  16190. anthro: {
  16191. height: math.unit(9 + 2 / 12, "feet"),
  16192. weight: math.unit(270, "lb"),
  16193. name: "Anthro",
  16194. image: {
  16195. source: "./media/characters/embra/anthro.svg",
  16196. extra: 200 / 187,
  16197. bottom: 0.02
  16198. }
  16199. },
  16200. feral: {
  16201. height: math.unit(18 + 8 / 12, "feet"),
  16202. weight: math.unit(576, "lb"),
  16203. name: "Feral",
  16204. image: {
  16205. source: "./media/characters/embra/feral.svg",
  16206. extra: 152 / 137,
  16207. bottom: 0.037
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(9 + 2 / 12, "feet"),
  16215. default: true
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16221. {
  16222. anthro: {
  16223. height: math.unit(10 + 9 / 12, "feet"),
  16224. weight: math.unit(224, "lb"),
  16225. name: "Anthro",
  16226. image: {
  16227. source: "./media/characters/grottos/anthro.svg",
  16228. extra: 350 / 332,
  16229. bottom: 0.045
  16230. }
  16231. },
  16232. feral: {
  16233. height: math.unit(20 + 7 / 12, "feet"),
  16234. weight: math.unit(629, "lb"),
  16235. name: "Feral",
  16236. image: {
  16237. source: "./media/characters/grottos/feral.svg",
  16238. extra: 207 / 190,
  16239. bottom: 0.05
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(10 + 9 / 12, "feet"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16253. {
  16254. anthro: {
  16255. height: math.unit(9 + 6 / 12, "feet"),
  16256. weight: math.unit(298, "lb"),
  16257. name: "Anthro",
  16258. image: {
  16259. source: "./media/characters/frifna/anthro.svg",
  16260. extra: 282 / 269,
  16261. bottom: 0.015
  16262. }
  16263. },
  16264. feral: {
  16265. height: math.unit(16 + 2 / 12, "feet"),
  16266. weight: math.unit(624, "lb"),
  16267. name: "Feral",
  16268. image: {
  16269. source: "./media/characters/frifna/feral.svg"
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(9 + 6 / 12, "feet"),
  16277. default: true
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6 + 2 / 12, "feet"),
  16286. weight: math.unit(168, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/elise/front.svg",
  16290. extra: 276 / 271
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6 + 2 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(5 + 10 / 12, "feet"),
  16307. weight: math.unit(210, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/glade/front.svg",
  16311. extra: 258 / 247,
  16312. bottom: 0.008
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(5 + 10 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(5 + 10 / 12, "feet"),
  16329. weight: math.unit(129, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/rina/front.svg",
  16333. extra: 266 / 255,
  16334. bottom: 0.005
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(5 + 10 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6 + 1 / 12, "feet"),
  16351. weight: math.unit(192, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/veronica/front.svg",
  16355. extra: 319 / 309,
  16356. bottom: 0.005
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(6 + 1 / 12, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(9 + 3 / 12, "feet"),
  16373. weight: math.unit(1100, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/braxton/front.svg",
  16377. extra: 1057 / 984,
  16378. bottom: 0.05
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(9 + 3 / 12, "feet")
  16386. },
  16387. {
  16388. name: "Giant",
  16389. height: math.unit(300, "feet"),
  16390. default: true
  16391. },
  16392. {
  16393. name: "Macro",
  16394. height: math.unit(700, "feet")
  16395. },
  16396. {
  16397. name: "Megamacro",
  16398. height: math.unit(6000, "feet")
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(6 + 7 / 12, "feet"),
  16407. weight: math.unit(150, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/blue-feyonics/front.svg",
  16411. extra: 1403 / 1306,
  16412. bottom: 0.047
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(6 + 7 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(1.8, "meters"),
  16429. weight: math.unit(60, "kg"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/maxwell/front.svg",
  16433. extra: 2060 / 1873
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Micro",
  16440. height: math.unit(1, "mm")
  16441. },
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(1.8, "meter"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(30, "meters")
  16450. },
  16451. {
  16452. name: "Megamacro",
  16453. height: math.unit(10, "km")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(6, "feet"),
  16462. weight: math.unit(150, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/jack/front.svg",
  16466. extra: 1754 / 1640,
  16467. bottom: 0.01
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(80000, "feet"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Max size",
  16479. height: math.unit(10, "lightyears")
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16485. {
  16486. urban: {
  16487. height: math.unit(5, "feet"),
  16488. weight: math.unit(240, "lb"),
  16489. name: "Urban",
  16490. image: {
  16491. source: "./media/characters/cafat/urban.svg",
  16492. extra: 1223/1126,
  16493. bottom: 205/1428
  16494. }
  16495. },
  16496. summer: {
  16497. height: math.unit(5, "feet"),
  16498. weight: math.unit(240, "lb"),
  16499. name: "Summer",
  16500. image: {
  16501. source: "./media/characters/cafat/summer.svg",
  16502. extra: 1223/1126,
  16503. bottom: 205/1428
  16504. }
  16505. },
  16506. winter: {
  16507. height: math.unit(5, "feet"),
  16508. weight: math.unit(240, "lb"),
  16509. name: "Winter",
  16510. image: {
  16511. source: "./media/characters/cafat/winter.svg",
  16512. extra: 1223/1126,
  16513. bottom: 205/1428
  16514. }
  16515. },
  16516. lingerie: {
  16517. height: math.unit(5, "feet"),
  16518. weight: math.unit(240, "lb"),
  16519. name: "Lingerie",
  16520. image: {
  16521. source: "./media/characters/cafat/lingerie.svg",
  16522. extra: 1223/1126,
  16523. bottom: 205/1428
  16524. }
  16525. },
  16526. upright: {
  16527. height: math.unit(6.3, "feet"),
  16528. weight: math.unit(240, "lb"),
  16529. name: "Upright",
  16530. image: {
  16531. source: "./media/characters/cafat/upright.svg",
  16532. bottom: 0.01
  16533. }
  16534. },
  16535. uprightFull: {
  16536. height: math.unit(6.3, "feet"),
  16537. weight: math.unit(240, "lb"),
  16538. name: "Upright (Full)",
  16539. image: {
  16540. source: "./media/characters/cafat/upright-full.svg",
  16541. bottom: 0.01
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Small",
  16548. height: math.unit(5, "feet"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Large",
  16553. height: math.unit(13, "feet")
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(150, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/verin-raharra/front.svg",
  16566. extra: 5019 / 4835,
  16567. bottom: 0.023
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(7 + 5 / 12, "feet"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Upsized",
  16579. height: math.unit(20, "feet")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(7, "feet"),
  16588. weight: math.unit(230, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/nakata/front.svg",
  16592. extra: 1.005,
  16593. bottom: 0.01
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Normal",
  16600. height: math.unit(7, "feet"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Big",
  16605. height: math.unit(14, "feet")
  16606. },
  16607. {
  16608. name: "Macro",
  16609. height: math.unit(400, "feet")
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(4.91, "feet"),
  16618. weight: math.unit(100, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/lily/front.svg",
  16622. extra: 1585 / 1415,
  16623. bottom: 0.02
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(4.91, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16637. {
  16638. laying: {
  16639. height: math.unit(4 + 4 / 12, "feet"),
  16640. weight: math.unit(600, "lb"),
  16641. name: "Laying",
  16642. image: {
  16643. source: "./media/characters/sheila/laying.svg",
  16644. extra: 1333 / 1265,
  16645. bottom: 0.16
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(4 + 4 / 12, "feet"),
  16653. default: true
  16654. },
  16655. ]
  16656. ))
  16657. characterMakers.push(() => makeCharacter(
  16658. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16659. {
  16660. front: {
  16661. height: math.unit(6, "feet"),
  16662. weight: math.unit(190, "lb"),
  16663. name: "Front",
  16664. image: {
  16665. source: "./media/characters/sax/front.svg",
  16666. extra: 1187 / 973,
  16667. bottom: 0.042
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Micro",
  16674. height: math.unit(4, "inches"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/pandora/front.svg",
  16688. extra: 2720 / 2556,
  16689. bottom: 0.015
  16690. }
  16691. },
  16692. back: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(150, "lb"),
  16695. name: "Back",
  16696. image: {
  16697. source: "./media/characters/pandora/back.svg",
  16698. extra: 2720 / 2556,
  16699. bottom: 0.01
  16700. }
  16701. },
  16702. beans: {
  16703. height: math.unit(6 / 8, "feet"),
  16704. name: "Beans",
  16705. image: {
  16706. source: "./media/characters/pandora/beans.svg"
  16707. }
  16708. },
  16709. collar: {
  16710. height: math.unit(0.31, "feet"),
  16711. name: "Collar",
  16712. image: {
  16713. source: "./media/characters/pandora/collar.svg"
  16714. }
  16715. },
  16716. skirt: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(150, "lb"),
  16719. name: "Skirt",
  16720. image: {
  16721. source: "./media/characters/pandora/skirt.svg",
  16722. extra: 1622 / 1525,
  16723. bottom: 0.015
  16724. }
  16725. },
  16726. hoodie: {
  16727. height: math.unit(6, "feet"),
  16728. weight: math.unit(150, "lb"),
  16729. name: "Hoodie",
  16730. image: {
  16731. source: "./media/characters/pandora/hoodie.svg",
  16732. extra: 1622 / 1525,
  16733. bottom: 0.015
  16734. }
  16735. },
  16736. casual: {
  16737. height: math.unit(6, "feet"),
  16738. weight: math.unit(150, "lb"),
  16739. name: "Casual",
  16740. image: {
  16741. source: "./media/characters/pandora/casual.svg",
  16742. extra: 1622 / 1525,
  16743. bottom: 0.015
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6, "feet")
  16751. },
  16752. {
  16753. name: "Big Steppy",
  16754. height: math.unit(1, "km"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Galactic Steppy",
  16759. height: math.unit(2, "gigameters")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16765. {
  16766. side: {
  16767. height: math.unit(10, "feet"),
  16768. weight: math.unit(800, "kg"),
  16769. name: "Side",
  16770. image: {
  16771. source: "./media/characters/venio-darcony/side.svg",
  16772. extra: 1373 / 1003,
  16773. bottom: 0.037
  16774. }
  16775. },
  16776. front: {
  16777. height: math.unit(19, "feet"),
  16778. weight: math.unit(800, "kg"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/venio-darcony/front.svg"
  16782. }
  16783. },
  16784. back: {
  16785. height: math.unit(19, "feet"),
  16786. weight: math.unit(800, "kg"),
  16787. name: "Back",
  16788. image: {
  16789. source: "./media/characters/venio-darcony/back.svg"
  16790. }
  16791. },
  16792. sideNsfw: {
  16793. height: math.unit(10, "feet"),
  16794. weight: math.unit(800, "kg"),
  16795. name: "Side (NSFW)",
  16796. image: {
  16797. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16798. extra: 1373 / 1003,
  16799. bottom: 0.037
  16800. }
  16801. },
  16802. frontNsfw: {
  16803. height: math.unit(19, "feet"),
  16804. weight: math.unit(800, "kg"),
  16805. name: "Front (NSFW)",
  16806. image: {
  16807. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16808. }
  16809. },
  16810. backNsfw: {
  16811. height: math.unit(19, "feet"),
  16812. weight: math.unit(800, "kg"),
  16813. name: "Back (NSFW)",
  16814. image: {
  16815. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16816. }
  16817. },
  16818. sideArmored: {
  16819. height: math.unit(10, "feet"),
  16820. weight: math.unit(800, "kg"),
  16821. name: "Side (Armored)",
  16822. image: {
  16823. source: "./media/characters/venio-darcony/side-armored.svg",
  16824. extra: 1373 / 1003,
  16825. bottom: 0.037
  16826. }
  16827. },
  16828. frontArmored: {
  16829. height: math.unit(19, "feet"),
  16830. weight: math.unit(900, "kg"),
  16831. name: "Front (Armored)",
  16832. image: {
  16833. source: "./media/characters/venio-darcony/front-armored.svg"
  16834. }
  16835. },
  16836. backArmored: {
  16837. height: math.unit(19, "feet"),
  16838. weight: math.unit(900, "kg"),
  16839. name: "Back (Armored)",
  16840. image: {
  16841. source: "./media/characters/venio-darcony/back-armored.svg"
  16842. }
  16843. },
  16844. sword: {
  16845. height: math.unit(10, "feet"),
  16846. weight: math.unit(50, "lb"),
  16847. name: "Sword",
  16848. image: {
  16849. source: "./media/characters/venio-darcony/sword.svg"
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(10, "feet")
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(130, "feet"),
  16861. default: true
  16862. },
  16863. {
  16864. name: "Macro+",
  16865. height: math.unit(240, "feet")
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6, "feet"),
  16874. weight: math.unit(150, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/veski/front.svg",
  16878. extra: 1299 / 1225,
  16879. bottom: 0.04
  16880. }
  16881. },
  16882. back: {
  16883. height: math.unit(6, "feet"),
  16884. weight: math.unit(150, "lb"),
  16885. name: "Back",
  16886. image: {
  16887. source: "./media/characters/veski/back.svg",
  16888. extra: 1299 / 1225,
  16889. bottom: 0.008
  16890. }
  16891. },
  16892. maw: {
  16893. height: math.unit(1.5 * 1.21, "feet"),
  16894. name: "Maw",
  16895. image: {
  16896. source: "./media/characters/veski/maw.svg"
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Macro",
  16903. height: math.unit(2, "km"),
  16904. default: true
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(5 + 7 / 12, "feet"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/isabelle/front.svg",
  16916. extra: 2130 / 1976,
  16917. bottom: 0.05
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Supermicro",
  16924. height: math.unit(10, "micrometers")
  16925. },
  16926. {
  16927. name: "Micro",
  16928. height: math.unit(1, "inch")
  16929. },
  16930. {
  16931. name: "Tiny",
  16932. height: math.unit(5, "inches")
  16933. },
  16934. {
  16935. name: "Standard",
  16936. height: math.unit(5 + 7 / 12, "inches")
  16937. },
  16938. {
  16939. name: "Macro",
  16940. height: math.unit(80, "meters"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Megamacro",
  16945. height: math.unit(250, "meters")
  16946. },
  16947. {
  16948. name: "Gigamacro",
  16949. height: math.unit(5, "km")
  16950. },
  16951. {
  16952. name: "Cosmic",
  16953. height: math.unit(2.5e6, "miles")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(150, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/hanzo/front.svg",
  16966. extra: 374 / 344,
  16967. bottom: 0.02
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(8, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(7, "feet"),
  16984. weight: math.unit(130, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/anna/front.svg",
  16988. extra: 169 / 145,
  16989. bottom: 0.06
  16990. }
  16991. },
  16992. full: {
  16993. height: math.unit(4.96, "feet"),
  16994. weight: math.unit(220, "lb"),
  16995. name: "Full",
  16996. image: {
  16997. source: "./media/characters/anna/full.svg",
  16998. extra: 138 / 114,
  16999. bottom: 0.15
  17000. }
  17001. },
  17002. tongue: {
  17003. height: math.unit(2.53, "feet"),
  17004. name: "Tongue",
  17005. image: {
  17006. source: "./media/characters/anna/tongue.svg"
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(7, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(7, "feet"),
  17023. weight: math.unit(150, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/ian-corvid/front.svg",
  17027. extra: 150 / 142,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. back: {
  17032. height: math.unit(7, "feet"),
  17033. weight: math.unit(150, "lb"),
  17034. name: "Back",
  17035. image: {
  17036. source: "./media/characters/ian-corvid/back.svg",
  17037. extra: 150 / 143,
  17038. bottom: 0.01
  17039. }
  17040. },
  17041. stomping: {
  17042. height: math.unit(7, "feet"),
  17043. weight: math.unit(150, "lb"),
  17044. name: "Stomping",
  17045. image: {
  17046. source: "./media/characters/ian-corvid/stomping.svg",
  17047. extra: 76 / 72
  17048. }
  17049. },
  17050. sitting: {
  17051. height: math.unit(7 / 1.8, "feet"),
  17052. weight: math.unit(150, "lb"),
  17053. name: "Sitting",
  17054. image: {
  17055. source: "./media/characters/ian-corvid/sitting.svg",
  17056. extra: 1400 / 1269,
  17057. bottom: 0.15
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Tiny Microw",
  17064. height: math.unit(1, "inch")
  17065. },
  17066. {
  17067. name: "Microw",
  17068. height: math.unit(6, "inches")
  17069. },
  17070. {
  17071. name: "Crow",
  17072. height: math.unit(7 + 1 / 12, "feet"),
  17073. default: true
  17074. },
  17075. {
  17076. name: "Macrow",
  17077. height: math.unit(176, "feet")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(5 + 7 / 12, "feet"),
  17086. weight: math.unit(147, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/natalie-kellon/front.svg",
  17090. extra: 1214 / 1141,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Micro",
  17098. height: math.unit(1 / 16, "inch")
  17099. },
  17100. {
  17101. name: "Tiny",
  17102. height: math.unit(4, "inches")
  17103. },
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(5 + 7 / 12, "feet"),
  17107. default: true
  17108. },
  17109. {
  17110. name: "Amazon",
  17111. height: math.unit(12, "feet")
  17112. },
  17113. {
  17114. name: "Giantess",
  17115. height: math.unit(160, "meters")
  17116. },
  17117. {
  17118. name: "Titaness",
  17119. height: math.unit(800, "meters")
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(6, "feet"),
  17128. weight: math.unit(150, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/alluria/front.svg",
  17132. extra: 806 / 738,
  17133. bottom: 0.01
  17134. }
  17135. },
  17136. side: {
  17137. height: math.unit(6, "feet"),
  17138. weight: math.unit(150, "lb"),
  17139. name: "Side",
  17140. image: {
  17141. source: "./media/characters/alluria/side.svg",
  17142. extra: 800 / 750,
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/alluria/back.svg",
  17151. extra: 806 / 738,
  17152. }
  17153. },
  17154. frontMaid: {
  17155. height: math.unit(6, "feet"),
  17156. weight: math.unit(150, "lb"),
  17157. name: "Front (Maid)",
  17158. image: {
  17159. source: "./media/characters/alluria/front-maid.svg",
  17160. extra: 806 / 738,
  17161. bottom: 0.01
  17162. }
  17163. },
  17164. sideMaid: {
  17165. height: math.unit(6, "feet"),
  17166. weight: math.unit(150, "lb"),
  17167. name: "Side (Maid)",
  17168. image: {
  17169. source: "./media/characters/alluria/side-maid.svg",
  17170. extra: 800 / 750,
  17171. bottom: 0.005
  17172. }
  17173. },
  17174. backMaid: {
  17175. height: math.unit(6, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Back (Maid)",
  17178. image: {
  17179. source: "./media/characters/alluria/back-maid.svg",
  17180. extra: 806 / 738,
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Micro",
  17187. height: math.unit(6, "inches"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6, "feet"),
  17197. weight: math.unit(150, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/kyle/front.svg",
  17201. extra: 1069 / 962,
  17202. bottom: 77.228 / 1727.45
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Macro",
  17209. height: math.unit(150, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(300, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/duncan/front.svg",
  17223. extra: 1650 / 1482,
  17224. bottom: 0.05
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Macro",
  17231. height: math.unit(100, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(5 + 4 / 12, "feet"),
  17241. weight: math.unit(220, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/memory/front.svg",
  17245. extra: 3641 / 3545,
  17246. bottom: 0.03
  17247. }
  17248. },
  17249. back: {
  17250. height: math.unit(5 + 4 / 12, "feet"),
  17251. weight: math.unit(220, "lb"),
  17252. name: "Back",
  17253. image: {
  17254. source: "./media/characters/memory/back.svg",
  17255. extra: 3641 / 3545,
  17256. bottom: 0.025
  17257. }
  17258. },
  17259. frontSkirt: {
  17260. height: math.unit(5 + 4 / 12, "feet"),
  17261. weight: math.unit(220, "lb"),
  17262. name: "Front (Skirt)",
  17263. image: {
  17264. source: "./media/characters/memory/front-skirt.svg",
  17265. extra: 3641 / 3545,
  17266. bottom: 0.03
  17267. }
  17268. },
  17269. frontDress: {
  17270. height: math.unit(5 + 4 / 12, "feet"),
  17271. weight: math.unit(220, "lb"),
  17272. name: "Front (Dress)",
  17273. image: {
  17274. source: "./media/characters/memory/front-dress.svg",
  17275. extra: 3641 / 3545,
  17276. bottom: 0.03
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Micro",
  17283. height: math.unit(6, "inches"),
  17284. default: true
  17285. },
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(5 + 4 / 12, "feet")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17294. {
  17295. front: {
  17296. height: math.unit(4 + 11 / 12, "feet"),
  17297. weight: math.unit(100, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/luno/front.svg",
  17301. extra: 1535 / 1487,
  17302. bottom: 0.03
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Micro",
  17309. height: math.unit(3, "inches")
  17310. },
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(4 + 11 / 12, "feet"),
  17314. default: true
  17315. },
  17316. {
  17317. name: "Macro",
  17318. height: math.unit(300, "feet")
  17319. },
  17320. {
  17321. name: "Megamacro",
  17322. height: math.unit(700, "miles")
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(6 + 2 / 12, "feet"),
  17331. weight: math.unit(170, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/jamesy/front.svg",
  17335. extra: 440 / 382,
  17336. bottom: 0.005
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Micro",
  17343. height: math.unit(3, "inches")
  17344. },
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(6 + 2 / 12, "feet"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(300, "feet")
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(700, "miles")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(6, "feet"),
  17365. weight: math.unit(160, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/mark/front.svg",
  17369. extra: 3300 / 3100,
  17370. bottom: 136.42 / 3440.47
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Macro",
  17377. height: math.unit(120, "meters")
  17378. },
  17379. {
  17380. name: "Bigger Macro",
  17381. height: math.unit(350, "meters")
  17382. },
  17383. {
  17384. name: "Megamacro",
  17385. height: math.unit(8, "km"),
  17386. default: true
  17387. },
  17388. {
  17389. name: "Continental",
  17390. height: math.unit(4550, "km")
  17391. },
  17392. {
  17393. name: "Planetary",
  17394. height: math.unit(65000, "km")
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(6, "feet"),
  17403. weight: math.unit(400, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/mac/front.svg",
  17407. extra: 1048 / 987.7,
  17408. bottom: 60 / 1107.6,
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(500, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(5 + 2 / 12, "feet"),
  17425. weight: math.unit(190, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/bari/front.svg",
  17429. extra: 3156 / 2880,
  17430. bottom: 0.03
  17431. }
  17432. },
  17433. back: {
  17434. height: math.unit(5 + 2 / 12, "feet"),
  17435. weight: math.unit(190, "lb"),
  17436. name: "Back",
  17437. image: {
  17438. source: "./media/characters/bari/back.svg",
  17439. extra: 3260 / 2834,
  17440. bottom: 0.025
  17441. }
  17442. },
  17443. frontPlush: {
  17444. height: math.unit(5 + 2 / 12, "feet"),
  17445. weight: math.unit(190, "lb"),
  17446. name: "Front (Plush)",
  17447. image: {
  17448. source: "./media/characters/bari/front-plush.svg",
  17449. extra: 1112 / 1061,
  17450. bottom: 0.002
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Micro",
  17457. height: math.unit(3, "inches")
  17458. },
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(5 + 2 / 12, "feet"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Macro",
  17466. height: math.unit(20, "feet")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17472. {
  17473. front: {
  17474. height: math.unit(6 + 1 / 12, "feet"),
  17475. weight: math.unit(275, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/hunter-misha-raven/front.svg"
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Mortal",
  17485. height: math.unit(6 + 1 / 12, "feet")
  17486. },
  17487. {
  17488. name: "Divine",
  17489. height: math.unit(1.12134e34, "parsecs"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(6 + 3 / 12, "feet"),
  17499. weight: math.unit(220, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/max-calore/front.svg",
  17503. extra: 1700 / 1648,
  17504. bottom: 0.01
  17505. }
  17506. },
  17507. back: {
  17508. height: math.unit(6 + 3 / 12, "feet"),
  17509. weight: math.unit(220, "lb"),
  17510. name: "Back",
  17511. image: {
  17512. source: "./media/characters/max-calore/back.svg",
  17513. extra: 1700 / 1648,
  17514. bottom: 0.01
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6 + 3 / 12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17528. {
  17529. side: {
  17530. height: math.unit(2 + 8 / 12, "feet"),
  17531. weight: math.unit(99, "lb"),
  17532. name: "Side",
  17533. image: {
  17534. source: "./media/characters/aspen/side.svg",
  17535. extra: 152 / 138,
  17536. bottom: 0.032
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(2 + 8 / 12, "feet"),
  17544. default: true
  17545. },
  17546. ]
  17547. ))
  17548. characterMakers.push(() => makeCharacter(
  17549. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17550. {
  17551. side: {
  17552. height: math.unit(3 + 2 / 12, "feet"),
  17553. weight: math.unit(224, "lb"),
  17554. name: "Side",
  17555. image: {
  17556. source: "./media/characters/sheila-feral-wolf/side.svg",
  17557. extra: 179 / 166,
  17558. bottom: 0.03
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(3 + 2 / 12, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17572. {
  17573. side: {
  17574. height: math.unit(1 + 9 / 12, "feet"),
  17575. weight: math.unit(38, "lb"),
  17576. name: "Side",
  17577. image: {
  17578. source: "./media/characters/michelle/side.svg",
  17579. extra: 147 / 136.7,
  17580. bottom: 0.03
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(1 + 9 / 12, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(1.54, "feet"),
  17597. weight: math.unit(50, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/nino/front.svg"
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(1.54, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(1.49, "feet"),
  17617. weight: math.unit(45, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/viola/front.svg"
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(1.49, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6 + 5 / 12, "feet"),
  17637. weight: math.unit(580, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/atlas/front.svg",
  17641. extra: 298.5 / 290,
  17642. bottom: 0.015
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(6 + 5 / 12, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17656. {
  17657. side: {
  17658. height: math.unit(15.6, "inches"),
  17659. weight: math.unit(10, "lb"),
  17660. name: "Side",
  17661. image: {
  17662. source: "./media/characters/davy/side.svg",
  17663. extra: 200 / 170,
  17664. bottom: 0.01
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(15.6, "inches"),
  17672. default: true
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17678. {
  17679. side: {
  17680. height: math.unit(4 + 8 / 12, "feet"),
  17681. weight: math.unit(166, "lb"),
  17682. name: "Side",
  17683. image: {
  17684. source: "./media/characters/fiona/side.svg",
  17685. extra: 232 / 220,
  17686. bottom: 0.03
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(4 + 8 / 12, "feet"),
  17694. default: true
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17700. {
  17701. front: {
  17702. height: math.unit(26, "inches"),
  17703. weight: math.unit(35, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/lyla/front.svg",
  17707. bottom: 0.1
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(3, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17721. {
  17722. side: {
  17723. height: math.unit(1.8, "feet"),
  17724. weight: math.unit(44, "lb"),
  17725. name: "Side",
  17726. image: {
  17727. source: "./media/characters/perseus/side.svg",
  17728. bottom: 0.21
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(1.8, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17742. {
  17743. side: {
  17744. height: math.unit(4 + 2 / 12, "feet"),
  17745. weight: math.unit(20, "lb"),
  17746. name: "Side",
  17747. image: {
  17748. source: "./media/characters/remus/side.svg"
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(4 + 2 / 12, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(4 + 11 / 12, "feet"),
  17765. weight: math.unit(114, "lb"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/raf/front.svg",
  17769. extra: 1504/1339,
  17770. bottom: 26/1530
  17771. }
  17772. },
  17773. side: {
  17774. height: math.unit(4 + 11 / 12, "feet"),
  17775. weight: math.unit(114, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/raf/side.svg",
  17779. extra: 1466/1316,
  17780. bottom: 29/1495
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Micro",
  17787. height: math.unit(2, "inches")
  17788. },
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(4 + 11 / 12, "feet"),
  17792. default: true
  17793. },
  17794. {
  17795. name: "Macro",
  17796. height: math.unit(70, "feet")
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(1.5, "meters"),
  17805. weight: math.unit(68, "kg"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/liam-einarr/front.svg",
  17809. extra: 2822 / 2666
  17810. }
  17811. },
  17812. back: {
  17813. height: math.unit(1.5, "meters"),
  17814. weight: math.unit(68, "kg"),
  17815. name: "Back",
  17816. image: {
  17817. source: "./media/characters/liam-einarr/back.svg",
  17818. extra: 2822 / 2666,
  17819. bottom: 0.015
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(1.5, "meters"),
  17827. default: true
  17828. },
  17829. {
  17830. name: "Macro",
  17831. height: math.unit(150, "meters")
  17832. },
  17833. {
  17834. name: "Megamacro",
  17835. height: math.unit(35, "km")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(6, "feet"),
  17844. weight: math.unit(75, "kg"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/linda/front.svg",
  17848. extra: 930 / 874,
  17849. bottom: 0.004
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(6, "feet"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(6 + 8 / 12, "feet"),
  17866. weight: math.unit(220, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/caylex/front.svg",
  17870. extra: 821 / 772,
  17871. bottom: 0.07
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(6 + 8 / 12, "feet"),
  17876. weight: math.unit(220, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/caylex/back.svg",
  17880. extra: 821 / 772,
  17881. bottom: 0.022
  17882. }
  17883. },
  17884. hand: {
  17885. height: math.unit(1.25, "feet"),
  17886. name: "Hand",
  17887. image: {
  17888. source: "./media/characters/caylex/hand.svg"
  17889. }
  17890. },
  17891. foot: {
  17892. height: math.unit(1.6, "feet"),
  17893. name: "Foot",
  17894. image: {
  17895. source: "./media/characters/caylex/foot.svg"
  17896. }
  17897. },
  17898. armored: {
  17899. height: math.unit(6 + 8 / 12, "feet"),
  17900. weight: math.unit(250, "lb"),
  17901. name: "Armored",
  17902. image: {
  17903. source: "./media/characters/caylex/armored.svg",
  17904. extra: 1420 / 1310,
  17905. bottom: 0.045
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Normal",
  17912. height: math.unit(6 + 8 / 12, "feet"),
  17913. default: true
  17914. },
  17915. {
  17916. name: "Normal+",
  17917. height: math.unit(12, "feet")
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(7 + 6 / 12, "feet"),
  17926. weight: math.unit(288, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/alana/front.svg",
  17930. extra: 679 / 653,
  17931. bottom: 22.5 / 701
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(7 + 6 / 12, "feet")
  17939. },
  17940. {
  17941. name: "Large",
  17942. height: math.unit(50, "feet")
  17943. },
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(100, "feet"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Macro+",
  17951. height: math.unit(200, "feet")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(6 + 1 / 12, "feet"),
  17960. weight: math.unit(210, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/hasani/front.svg",
  17964. extra: 244 / 232,
  17965. bottom: 0.01
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(6 + 1 / 12, "feet"),
  17970. weight: math.unit(210, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/hasani/back.svg",
  17974. extra: 244 / 232,
  17975. bottom: 0.01
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(6 + 1 / 12, "feet")
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(175, "feet"),
  17987. default: true
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17993. {
  17994. front: {
  17995. height: math.unit(1.82, "meters"),
  17996. weight: math.unit(140, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/nita/front.svg",
  18000. extra: 2473 / 2363,
  18001. bottom: 0.01
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(1.82, "m")
  18009. },
  18010. {
  18011. name: "Macro",
  18012. height: math.unit(300, "m")
  18013. },
  18014. {
  18015. name: "Mistake Canon",
  18016. height: math.unit(0.5, "miles"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Big Mistake",
  18021. height: math.unit(13, "miles")
  18022. },
  18023. {
  18024. name: "Playing God",
  18025. height: math.unit(2450, "miles")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(4, "feet"),
  18034. weight: math.unit(120, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/shiriko/front.svg",
  18038. extra: 970/934,
  18039. bottom: 5/975
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(4, "feet"),
  18047. default: true
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(6, "feet"),
  18056. name: "front",
  18057. image: {
  18058. source: "./media/characters/deja/front.svg",
  18059. extra: 926 / 840,
  18060. bottom: 0.07
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Planck Length",
  18067. height: math.unit(1.6e-35, "meters")
  18068. },
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(30.48, "meters"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Universal",
  18076. height: math.unit(8.8e26, "meters")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18082. {
  18083. side: {
  18084. height: math.unit(8, "feet"),
  18085. weight: math.unit(6300, "lb"),
  18086. name: "Side",
  18087. image: {
  18088. source: "./media/characters/anima/side.svg",
  18089. bottom: 0.035
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(8, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(8, "feet"),
  18106. weight: math.unit(350, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/bianca/front.svg",
  18110. extra: 234 / 225,
  18111. bottom: 0.03
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(8, "feet"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(6, "feet"),
  18128. weight: math.unit(150, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/adinia/front.svg",
  18132. extra: 1845 / 1672,
  18133. bottom: 0.02
  18134. }
  18135. },
  18136. back: {
  18137. height: math.unit(6, "feet"),
  18138. weight: math.unit(150, "lb"),
  18139. name: "Back",
  18140. image: {
  18141. source: "./media/characters/adinia/back.svg",
  18142. extra: 1845 / 1672,
  18143. bottom: 0.002
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(11 + 5 / 12, "feet"),
  18151. default: true
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(3, "meters"),
  18160. weight: math.unit(200, "kg"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/lykasa/front.svg",
  18164. extra: 1076 / 976,
  18165. bottom: 0.06
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(3, "meters")
  18173. },
  18174. {
  18175. name: "Kaiju",
  18176. height: math.unit(120, "meters"),
  18177. default: true
  18178. },
  18179. {
  18180. name: "Mega Kaiju",
  18181. height: math.unit(240, "km")
  18182. },
  18183. {
  18184. name: "Giga Kaiju",
  18185. height: math.unit(400, "megameters")
  18186. },
  18187. {
  18188. name: "Tera Kaiju",
  18189. height: math.unit(800, "gigameters")
  18190. },
  18191. {
  18192. name: "Kaiju Dragon Goddess",
  18193. height: math.unit(26, "zettaparsecs")
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18199. {
  18200. side: {
  18201. height: math.unit(283 / 124 * 6, "feet"),
  18202. weight: math.unit(35000, "lb"),
  18203. name: "Side",
  18204. image: {
  18205. source: "./media/characters/malfaren/side.svg",
  18206. extra: 1310/529,
  18207. bottom: 24/1334
  18208. }
  18209. },
  18210. front: {
  18211. height: math.unit(22.36, "feet"),
  18212. weight: math.unit(35000, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/malfaren/front.svg",
  18216. extra: 1237/1115,
  18217. bottom: 32/1269
  18218. }
  18219. },
  18220. maw: {
  18221. height: math.unit(6.9, "feet"),
  18222. name: "Maw",
  18223. image: {
  18224. source: "./media/characters/malfaren/maw.svg"
  18225. }
  18226. },
  18227. dick: {
  18228. height: math.unit(6.19, "feet"),
  18229. name: "Dick",
  18230. image: {
  18231. source: "./media/characters/malfaren/dick.svg"
  18232. }
  18233. },
  18234. eye: {
  18235. height: math.unit(0.69, "feet"),
  18236. name: "Eye",
  18237. image: {
  18238. source: "./media/characters/malfaren/eye.svg"
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Big",
  18245. height: math.unit(283 / 162 * 6, "feet"),
  18246. },
  18247. {
  18248. name: "Bigger",
  18249. height: math.unit(283 / 124 * 6, "feet")
  18250. },
  18251. {
  18252. name: "Massive",
  18253. height: math.unit(283 / 92 * 6, "feet"),
  18254. default: true
  18255. },
  18256. {
  18257. name: "👀💦",
  18258. height: math.unit(283 / 73 * 6, "feet"),
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(1.7, "m"),
  18267. weight: math.unit(70, "kg"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/kernel/front.svg",
  18271. extra: 222 / 210,
  18272. bottom: 0.007
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Nano",
  18279. height: math.unit(17, "micrometers")
  18280. },
  18281. {
  18282. name: "Micro",
  18283. height: math.unit(1.7, "mm")
  18284. },
  18285. {
  18286. name: "Small",
  18287. height: math.unit(1.7, "cm")
  18288. },
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(1.7, "m"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(1.75, "meters"),
  18301. weight: math.unit(65, "kg"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/jayne-folest/front.svg",
  18305. extra: 2115 / 2007,
  18306. bottom: 0.02
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(1.75, "meters"),
  18311. weight: math.unit(65, "kg"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/jayne-folest/back.svg",
  18315. extra: 2115 / 2007,
  18316. bottom: 0.005
  18317. }
  18318. },
  18319. frontClothed: {
  18320. height: math.unit(1.75, "meters"),
  18321. weight: math.unit(65, "kg"),
  18322. name: "Front (Clothed)",
  18323. image: {
  18324. source: "./media/characters/jayne-folest/front-clothed.svg",
  18325. extra: 2115 / 2007,
  18326. bottom: 0.035
  18327. }
  18328. },
  18329. hand: {
  18330. height: math.unit(1 / 1.260, "feet"),
  18331. name: "Hand",
  18332. image: {
  18333. source: "./media/characters/jayne-folest/hand.svg"
  18334. }
  18335. },
  18336. foot: {
  18337. height: math.unit(1 / 0.918, "feet"),
  18338. name: "Foot",
  18339. image: {
  18340. source: "./media/characters/jayne-folest/foot.svg"
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Micro",
  18347. height: math.unit(4, "cm")
  18348. },
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(1.75, "meters")
  18352. },
  18353. {
  18354. name: "Macro",
  18355. height: math.unit(47.5, "meters"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(180, "cm"),
  18365. weight: math.unit(70, "kg"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/algier/front.svg",
  18369. extra: 596 / 572,
  18370. bottom: 0.04
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(180, "cm"),
  18375. weight: math.unit(70, "kg"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/algier/back.svg",
  18379. extra: 596 / 572,
  18380. bottom: 0.025
  18381. }
  18382. },
  18383. frontdressed: {
  18384. height: math.unit(180, "cm"),
  18385. weight: math.unit(150, "kg"),
  18386. name: "Front-dressed",
  18387. image: {
  18388. source: "./media/characters/algier/front-dressed.svg",
  18389. extra: 596 / 572,
  18390. bottom: 0.038
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Micro",
  18397. height: math.unit(5, "cm")
  18398. },
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(180, "cm"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(64, "m")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18412. {
  18413. upright: {
  18414. height: math.unit(7, "feet"),
  18415. weight: math.unit(300, "lb"),
  18416. name: "Upright",
  18417. image: {
  18418. source: "./media/characters/pretzel/upright.svg",
  18419. extra: 534 / 522,
  18420. bottom: 0.065
  18421. }
  18422. },
  18423. sprawling: {
  18424. height: math.unit(3.75, "feet"),
  18425. weight: math.unit(300, "lb"),
  18426. name: "Sprawling",
  18427. image: {
  18428. source: "./media/characters/pretzel/sprawling.svg",
  18429. extra: 314 / 281,
  18430. bottom: 0.1
  18431. }
  18432. },
  18433. tongue: {
  18434. height: math.unit(2, "feet"),
  18435. name: "Tongue",
  18436. image: {
  18437. source: "./media/characters/pretzel/tongue.svg"
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Normal",
  18444. height: math.unit(7, "feet"),
  18445. default: true
  18446. },
  18447. {
  18448. name: "Oversized",
  18449. height: math.unit(15, "feet")
  18450. },
  18451. {
  18452. name: "Huge",
  18453. height: math.unit(30, "feet")
  18454. },
  18455. {
  18456. name: "Macro",
  18457. height: math.unit(250, "feet")
  18458. },
  18459. ]
  18460. ))
  18461. characterMakers.push(() => makeCharacter(
  18462. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18463. {
  18464. sideFront: {
  18465. height: math.unit(5 + 2 / 12, "feet"),
  18466. weight: math.unit(120, "lb"),
  18467. name: "Front Side",
  18468. image: {
  18469. source: "./media/characters/roxi/side-front.svg",
  18470. extra: 2924 / 2717,
  18471. bottom: 0.08
  18472. }
  18473. },
  18474. sideBack: {
  18475. height: math.unit(5 + 2 / 12, "feet"),
  18476. weight: math.unit(120, "lb"),
  18477. name: "Back Side",
  18478. image: {
  18479. source: "./media/characters/roxi/side-back.svg",
  18480. extra: 2904 / 2693,
  18481. bottom: 0.06
  18482. }
  18483. },
  18484. front: {
  18485. height: math.unit(5 + 2 / 12, "feet"),
  18486. weight: math.unit(120, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/roxi/front.svg",
  18490. extra: 2028 / 1907,
  18491. bottom: 0.01
  18492. }
  18493. },
  18494. frontAlt: {
  18495. height: math.unit(5 + 2 / 12, "feet"),
  18496. weight: math.unit(120, "lb"),
  18497. name: "Front (Alt)",
  18498. image: {
  18499. source: "./media/characters/roxi/front-alt.svg",
  18500. extra: 1828 / 1798,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. sitting: {
  18505. height: math.unit(2.8, "feet"),
  18506. weight: math.unit(120, "lb"),
  18507. name: "Sitting",
  18508. image: {
  18509. source: "./media/characters/roxi/sitting.svg",
  18510. extra: 2660 / 2462,
  18511. bottom: 0.1
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(5 + 2 / 12, "feet"),
  18519. default: true
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18525. {
  18526. side: {
  18527. height: math.unit(55, "feet"),
  18528. weight: math.unit(153, "tons"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/shadow/side.svg",
  18532. extra: 701 / 628,
  18533. bottom: 0.02
  18534. }
  18535. },
  18536. flying: {
  18537. height: math.unit(145, "feet"),
  18538. weight: math.unit(153, "tons"),
  18539. name: "Flying",
  18540. image: {
  18541. source: "./media/characters/shadow/flying.svg"
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(55, "feet"),
  18549. default: true
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(6, "feet"),
  18558. weight: math.unit(200, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/marcie/front.svg",
  18562. extra: 960 / 876,
  18563. bottom: 58 / 1017.87
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Macro",
  18570. height: math.unit(1, "mile"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(7, "feet"),
  18580. weight: math.unit(200, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/kachina/front.svg",
  18584. extra: 1290.68 / 1119,
  18585. bottom: 36.5 / 1327.18
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(7, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18599. {
  18600. looking: {
  18601. height: math.unit(2, "meters"),
  18602. weight: math.unit(300, "kg"),
  18603. name: "Looking",
  18604. image: {
  18605. source: "./media/characters/kash/looking.svg",
  18606. extra: 474 / 344,
  18607. bottom: 0.03
  18608. }
  18609. },
  18610. side: {
  18611. height: math.unit(2, "meters"),
  18612. weight: math.unit(300, "kg"),
  18613. name: "Side",
  18614. image: {
  18615. source: "./media/characters/kash/side.svg",
  18616. extra: 302 / 251,
  18617. bottom: 0.03
  18618. }
  18619. },
  18620. front: {
  18621. height: math.unit(2, "meters"),
  18622. weight: math.unit(300, "kg"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/kash/front.svg",
  18626. extra: 495 / 360,
  18627. bottom: 0.015
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(2, "meters"),
  18635. default: true
  18636. },
  18637. {
  18638. name: "Big",
  18639. height: math.unit(3, "meters")
  18640. },
  18641. {
  18642. name: "Large",
  18643. height: math.unit(5, "meters")
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18649. {
  18650. feeding: {
  18651. height: math.unit(6.7, "feet"),
  18652. weight: math.unit(350, "lb"),
  18653. name: "Feeding",
  18654. image: {
  18655. source: "./media/characters/lalim/feeding.svg",
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(6.7, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(9.5, "feet"),
  18672. weight: math.unit(600, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/de'vout/front.svg",
  18676. extra: 1443 / 1328,
  18677. bottom: 0.025
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(9.5, "feet"),
  18682. weight: math.unit(600, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/de'vout/back.svg",
  18686. extra: 1443 / 1328
  18687. }
  18688. },
  18689. frontDressed: {
  18690. height: math.unit(9.5, "feet"),
  18691. weight: math.unit(600, "lb"),
  18692. name: "Front (Dressed",
  18693. image: {
  18694. source: "./media/characters/de'vout/front-dressed.svg",
  18695. extra: 1443 / 1328,
  18696. bottom: 0.025
  18697. }
  18698. },
  18699. backDressed: {
  18700. height: math.unit(9.5, "feet"),
  18701. weight: math.unit(600, "lb"),
  18702. name: "Back (Dressed",
  18703. image: {
  18704. source: "./media/characters/de'vout/back-dressed.svg",
  18705. extra: 1443 / 1328
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(9.5, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(8, "feet"),
  18722. weight: math.unit(225, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/talana/front.svg",
  18726. extra: 1410 / 1300,
  18727. bottom: 0.015
  18728. }
  18729. },
  18730. frontDressed: {
  18731. height: math.unit(8, "feet"),
  18732. weight: math.unit(225, "lb"),
  18733. name: "Front (Dressed",
  18734. image: {
  18735. source: "./media/characters/talana/front-dressed.svg",
  18736. extra: 1410 / 1300,
  18737. bottom: 0.015
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(8, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18751. {
  18752. side: {
  18753. height: math.unit(7.2, "feet"),
  18754. weight: math.unit(150, "lb"),
  18755. name: "Side",
  18756. image: {
  18757. source: "./media/characters/xeauvok/side.svg",
  18758. extra: 1975 / 1523,
  18759. bottom: 0.07
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(7.2, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18773. {
  18774. side: {
  18775. height: math.unit(10, "feet"),
  18776. weight: math.unit(900, "kg"),
  18777. name: "Side",
  18778. image: {
  18779. source: "./media/characters/zara/side.svg",
  18780. extra: 504 / 498
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(10, "feet"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18794. {
  18795. side: {
  18796. height: math.unit(6, "feet"),
  18797. weight: math.unit(150, "lb"),
  18798. name: "Side",
  18799. image: {
  18800. source: "./media/characters/richard-dragon/side.svg",
  18801. extra: 845 / 340,
  18802. bottom: 0.017
  18803. }
  18804. },
  18805. maw: {
  18806. height: math.unit(2.97, "feet"),
  18807. name: "Maw",
  18808. image: {
  18809. source: "./media/characters/richard-dragon/maw.svg"
  18810. }
  18811. },
  18812. },
  18813. [
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18818. {
  18819. front: {
  18820. height: math.unit(4, "feet"),
  18821. weight: math.unit(100, "lb"),
  18822. name: "Front",
  18823. image: {
  18824. source: "./media/characters/richard-smeargle/front.svg",
  18825. extra: 2952 / 2820,
  18826. bottom: 0.028
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(4, "feet"),
  18834. default: true
  18835. },
  18836. {
  18837. name: "Dynamax",
  18838. height: math.unit(20, "meters")
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(6, "feet"),
  18847. weight: math.unit(110, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/klay/front.svg",
  18851. extra: 962 / 883,
  18852. bottom: 0.04
  18853. }
  18854. },
  18855. back: {
  18856. height: math.unit(6, "feet"),
  18857. weight: math.unit(110, "lb"),
  18858. name: "Back",
  18859. image: {
  18860. source: "./media/characters/klay/back.svg",
  18861. extra: 962 / 883
  18862. }
  18863. },
  18864. beans: {
  18865. height: math.unit(1.15, "feet"),
  18866. name: "Beans",
  18867. image: {
  18868. source: "./media/characters/klay/beans.svg"
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Micro",
  18875. height: math.unit(6, "inches")
  18876. },
  18877. {
  18878. name: "Mini",
  18879. height: math.unit(3, "feet")
  18880. },
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(6, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Big",
  18888. height: math.unit(25, "feet")
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(100, "feet")
  18893. },
  18894. {
  18895. name: "Megamacro",
  18896. height: math.unit(400, "feet")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(6, "feet"),
  18905. weight: math.unit(160, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/marcus/front.svg",
  18909. extra: 734 / 676,
  18910. bottom: 0.03
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Little",
  18917. height: math.unit(6, "feet")
  18918. },
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(110, "feet"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(250, "feet")
  18927. },
  18928. {
  18929. name: "Megamacro",
  18930. height: math.unit(1000, "feet")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(7, "feet"),
  18939. weight: math.unit(275, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/claude-delroute/front.svg",
  18943. extra: 902/827,
  18944. bottom: 26/928
  18945. }
  18946. },
  18947. side: {
  18948. height: math.unit(7, "feet"),
  18949. weight: math.unit(275, "lb"),
  18950. name: "Side",
  18951. image: {
  18952. source: "./media/characters/claude-delroute/side.svg",
  18953. extra: 908/853,
  18954. bottom: 16/924
  18955. }
  18956. },
  18957. back: {
  18958. height: math.unit(7, "feet"),
  18959. weight: math.unit(275, "lb"),
  18960. name: "Back",
  18961. image: {
  18962. source: "./media/characters/claude-delroute/back.svg",
  18963. extra: 911/829,
  18964. bottom: 18/929
  18965. }
  18966. },
  18967. maw: {
  18968. height: math.unit(0.6407, "meters"),
  18969. name: "Maw",
  18970. image: {
  18971. source: "./media/characters/claude-delroute/maw.svg"
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(7, "feet"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Lorge",
  18983. height: math.unit(20, "feet")
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18989. {
  18990. front: {
  18991. height: math.unit(8 + 4 / 12, "feet"),
  18992. weight: math.unit(600, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/dragonien/front.svg",
  18996. extra: 100 / 94,
  18997. bottom: 3.3 / 103.3445
  18998. }
  18999. },
  19000. back: {
  19001. height: math.unit(8 + 4 / 12, "feet"),
  19002. weight: math.unit(600, "lb"),
  19003. name: "Back",
  19004. image: {
  19005. source: "./media/characters/dragonien/back.svg",
  19006. extra: 776 / 746,
  19007. bottom: 6.4 / 782.0616
  19008. }
  19009. },
  19010. foot: {
  19011. height: math.unit(1.54, "feet"),
  19012. name: "Foot",
  19013. image: {
  19014. source: "./media/characters/dragonien/foot.svg",
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(8 + 4 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(200, "feet")
  19027. },
  19028. {
  19029. name: "Megamacro",
  19030. height: math.unit(1, "mile")
  19031. },
  19032. {
  19033. name: "Gigamacro",
  19034. height: math.unit(1000, "miles")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(5 + 2 / 12, "feet"),
  19043. weight: math.unit(110, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/desta/front.svg",
  19047. extra: 767 / 726,
  19048. bottom: 11.7 / 779
  19049. }
  19050. },
  19051. back: {
  19052. height: math.unit(5 + 2 / 12, "feet"),
  19053. weight: math.unit(110, "lb"),
  19054. name: "Back",
  19055. image: {
  19056. source: "./media/characters/desta/back.svg",
  19057. extra: 777 / 728,
  19058. bottom: 6 / 784
  19059. }
  19060. },
  19061. frontAlt: {
  19062. height: math.unit(5 + 2 / 12, "feet"),
  19063. weight: math.unit(110, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/desta/front-alt.svg",
  19067. extra: 1482 / 1417
  19068. }
  19069. },
  19070. side: {
  19071. height: math.unit(5 + 2 / 12, "feet"),
  19072. weight: math.unit(110, "lb"),
  19073. name: "Side",
  19074. image: {
  19075. source: "./media/characters/desta/side.svg",
  19076. extra: 2579 / 2491,
  19077. bottom: 0.053
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Micro",
  19084. height: math.unit(6, "inches")
  19085. },
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(5 + 2 / 12, "feet"),
  19089. default: true
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(62, "feet")
  19094. },
  19095. {
  19096. name: "Megamacro",
  19097. height: math.unit(1800, "feet")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(10, "feet"),
  19106. weight: math.unit(700, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/storm-alystar/front.svg",
  19110. extra: 2112 / 1898,
  19111. bottom: 0.034
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Micro",
  19118. height: math.unit(3.5, "inches")
  19119. },
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(10, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(400, "feet")
  19128. },
  19129. {
  19130. name: "Deific",
  19131. height: math.unit(60, "miles")
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(2.35, "meters"),
  19140. weight: math.unit(119, "kg"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/ilia/front.svg",
  19144. extra: 1285 / 1255,
  19145. bottom: 0.06
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(2.35, "meters")
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(140, "meters"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Megamacro",
  19161. height: math.unit(100, "miles")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(6 + 5 / 12, "feet"),
  19170. weight: math.unit(190, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/kingdead/front.svg",
  19174. extra: 1228 / 1177
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Micro",
  19181. height: math.unit(7, "inches")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(6 + 5 / 12, "feet")
  19186. },
  19187. {
  19188. name: "Macro",
  19189. height: math.unit(150, "feet"),
  19190. default: true
  19191. },
  19192. {
  19193. name: "Megamacro",
  19194. height: math.unit(200, "miles")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(8, "feet"),
  19203. weight: math.unit(600, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/kyrehx/front.svg",
  19207. extra: 1195 / 1095,
  19208. bottom: 0.034
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Micro",
  19215. height: math.unit(2, "inches")
  19216. },
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(8, "feet"),
  19220. default: true
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(255, "feet")
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19233. weight: math.unit(184, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/xang/front.svg",
  19237. extra: 845 / 755
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19245. default: true
  19246. },
  19247. {
  19248. name: "Macro",
  19249. height: math.unit(0.935 * 146, "feet")
  19250. },
  19251. {
  19252. name: "Megamacro",
  19253. height: math.unit(0.935 * 3, "miles")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19259. {
  19260. frontDressed: {
  19261. height: math.unit(5 + 7 / 12, "feet"),
  19262. weight: math.unit(140, "lb"),
  19263. name: "Front (Dressed)",
  19264. image: {
  19265. source: "./media/characters/doc-weardno/front-dressed.svg",
  19266. extra: 263 / 234
  19267. }
  19268. },
  19269. backDressed: {
  19270. height: math.unit(5 + 7 / 12, "feet"),
  19271. weight: math.unit(140, "lb"),
  19272. name: "Back (Dressed)",
  19273. image: {
  19274. source: "./media/characters/doc-weardno/back-dressed.svg",
  19275. extra: 266 / 238
  19276. }
  19277. },
  19278. front: {
  19279. height: math.unit(5 + 7 / 12, "feet"),
  19280. weight: math.unit(140, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/doc-weardno/front.svg",
  19284. extra: 254 / 233
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Micro",
  19291. height: math.unit(3, "inches")
  19292. },
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 7 / 12, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(25, "feet")
  19301. },
  19302. {
  19303. name: "Megamacro",
  19304. height: math.unit(2, "miles")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6 + 2 / 12, "feet"),
  19313. weight: math.unit(153, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/seth-whilst/front.svg",
  19317. bottom: 0.07
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Micro",
  19324. height: math.unit(5, "inches")
  19325. },
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6 + 2 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(3, "inches"),
  19338. weight: math.unit(8, "grams"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/pocket-jabari/front.svg",
  19342. extra: 1024 / 974,
  19343. bottom: 0.039
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Minimicro",
  19350. height: math.unit(8, "mm")
  19351. },
  19352. {
  19353. name: "Micro",
  19354. height: math.unit(3, "inches"),
  19355. default: true
  19356. },
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(3, "feet")
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19365. {
  19366. frontDressed: {
  19367. height: math.unit(15, "feet"),
  19368. weight: math.unit(3280, "lb"),
  19369. name: "Front (Dressed)",
  19370. image: {
  19371. source: "./media/characters/sapphy/front-dressed.svg",
  19372. extra: 1951/1654,
  19373. bottom: 194/2145
  19374. },
  19375. form: "anthro",
  19376. default: true
  19377. },
  19378. backDressed: {
  19379. height: math.unit(15, "feet"),
  19380. weight: math.unit(3280, "lb"),
  19381. name: "Back (Dressed)",
  19382. image: {
  19383. source: "./media/characters/sapphy/back-dressed.svg",
  19384. extra: 2058/1918,
  19385. bottom: 125/2183
  19386. },
  19387. form: "anthro"
  19388. },
  19389. frontNude: {
  19390. height: math.unit(15, "feet"),
  19391. weight: math.unit(3280, "lb"),
  19392. name: "Front (Nude)",
  19393. image: {
  19394. source: "./media/characters/sapphy/front-nude.svg",
  19395. extra: 1951/1654,
  19396. bottom: 194/2145
  19397. },
  19398. form: "anthro"
  19399. },
  19400. backNude: {
  19401. height: math.unit(15, "feet"),
  19402. weight: math.unit(3280, "lb"),
  19403. name: "Back (Nude)",
  19404. image: {
  19405. source: "./media/characters/sapphy/back-nude.svg",
  19406. extra: 2058/1918,
  19407. bottom: 125/2183
  19408. },
  19409. form: "anthro"
  19410. },
  19411. full: {
  19412. height: math.unit(15, "feet"),
  19413. weight: math.unit(3280, "lb"),
  19414. name: "Full",
  19415. image: {
  19416. source: "./media/characters/sapphy/full.svg",
  19417. extra: 1396/1317,
  19418. bottom: 44/1440
  19419. },
  19420. form: "anthro"
  19421. },
  19422. dick: {
  19423. height: math.unit(3.8, "feet"),
  19424. name: "Dick",
  19425. image: {
  19426. source: "./media/characters/sapphy/dick.svg"
  19427. },
  19428. form: "anthro"
  19429. },
  19430. feral: {
  19431. height: math.unit(35, "feet"),
  19432. weight: math.unit(160, "tons"),
  19433. name: "Feral",
  19434. image: {
  19435. source: "./media/characters/sapphy/feral.svg",
  19436. extra: 1050/573,
  19437. bottom: 60/1110
  19438. },
  19439. form: "feral",
  19440. default: true
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(15, "feet"),
  19447. form: "anthro"
  19448. },
  19449. {
  19450. name: "Casual Macro",
  19451. height: math.unit(120, "feet"),
  19452. form: "anthro"
  19453. },
  19454. {
  19455. name: "Macro",
  19456. height: math.unit(2150, "feet"),
  19457. default: true,
  19458. form: "anthro"
  19459. },
  19460. {
  19461. name: "Megamacro",
  19462. height: math.unit(8, "miles"),
  19463. form: "anthro"
  19464. },
  19465. {
  19466. name: "Galaxy Mom",
  19467. height: math.unit(6, "megalightyears"),
  19468. form: "anthro"
  19469. },
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(35, "feet"),
  19473. form: "feral",
  19474. default: true
  19475. },
  19476. {
  19477. name: "Macro",
  19478. height: math.unit(300, "feet"),
  19479. form: "feral"
  19480. },
  19481. {
  19482. name: "Galaxy Mom",
  19483. height: math.unit(10, "megalightyears"),
  19484. form: "feral"
  19485. },
  19486. ],
  19487. {
  19488. "anthro": {
  19489. name: "Anthro",
  19490. default: true
  19491. },
  19492. "feral": {
  19493. name: "Feral"
  19494. }
  19495. }
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(6, "feet"),
  19502. weight: math.unit(170, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/kiro/front.svg",
  19506. extra: 1064 / 1012,
  19507. bottom: 0.052
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(6, "inches")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(6, "feet"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(72, "feet")
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(5 + 9 / 12, "feet"),
  19532. weight: math.unit(175, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/irishfox/front.svg",
  19536. extra: 1912 / 1680,
  19537. bottom: 0.02
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Nano",
  19544. height: math.unit(1, "mm")
  19545. },
  19546. {
  19547. name: "Micro",
  19548. height: math.unit(2, "inches")
  19549. },
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(5 + 9 / 12, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(45, "feet")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(6 + 1 / 12, "feet"),
  19566. weight: math.unit(75, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/aronai-sieyes/front.svg",
  19570. extra: 1532/1450,
  19571. bottom: 42/1574
  19572. }
  19573. },
  19574. side: {
  19575. height: math.unit(6 + 1 / 12, "feet"),
  19576. weight: math.unit(75, "lb"),
  19577. name: "Side",
  19578. image: {
  19579. source: "./media/characters/aronai-sieyes/side.svg",
  19580. extra: 1422/1365,
  19581. bottom: 148/1570
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(6 + 1 / 12, "feet"),
  19586. weight: math.unit(75, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/aronai-sieyes/back.svg",
  19590. extra: 1526/1464,
  19591. bottom: 51/1577
  19592. }
  19593. },
  19594. dressed: {
  19595. height: math.unit(6 + 1 / 12, "feet"),
  19596. weight: math.unit(75, "lb"),
  19597. name: "Dressed",
  19598. image: {
  19599. source: "./media/characters/aronai-sieyes/dressed.svg",
  19600. extra: 1559/1483,
  19601. bottom: 39/1598
  19602. }
  19603. },
  19604. slit: {
  19605. height: math.unit(1.3, "feet"),
  19606. name: "Slit",
  19607. image: {
  19608. source: "./media/characters/aronai-sieyes/slit.svg"
  19609. }
  19610. },
  19611. slitSpread: {
  19612. height: math.unit(0.9, "feet"),
  19613. name: "Slit (Spread)",
  19614. image: {
  19615. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19616. }
  19617. },
  19618. rump: {
  19619. height: math.unit(1.3, "feet"),
  19620. name: "Rump",
  19621. image: {
  19622. source: "./media/characters/aronai-sieyes/rump.svg"
  19623. }
  19624. },
  19625. maw: {
  19626. height: math.unit(1.25, "feet"),
  19627. name: "Maw",
  19628. image: {
  19629. source: "./media/characters/aronai-sieyes/maw.svg"
  19630. }
  19631. },
  19632. feral: {
  19633. height: math.unit(18, "feet"),
  19634. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19635. name: "Feral",
  19636. image: {
  19637. source: "./media/characters/aronai-sieyes/feral.svg",
  19638. extra: 1530 / 1240,
  19639. bottom: 0.035
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Micro",
  19646. height: math.unit(2, "inches")
  19647. },
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(6 + 1 / 12, "feet"),
  19651. default: true
  19652. }
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(12, "feet"),
  19660. weight: math.unit(410, "kg"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/xuna/front.svg",
  19664. extra: 2184 / 1980
  19665. }
  19666. },
  19667. side: {
  19668. height: math.unit(12, "feet"),
  19669. weight: math.unit(410, "kg"),
  19670. name: "Side",
  19671. image: {
  19672. source: "./media/characters/xuna/side.svg",
  19673. extra: 2184 / 1980
  19674. }
  19675. },
  19676. back: {
  19677. height: math.unit(12, "feet"),
  19678. weight: math.unit(410, "kg"),
  19679. name: "Back",
  19680. image: {
  19681. source: "./media/characters/xuna/back.svg",
  19682. extra: 2184 / 1980
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Nano glow",
  19689. height: math.unit(10, "nm")
  19690. },
  19691. {
  19692. name: "Micro floof",
  19693. height: math.unit(0.3, "m")
  19694. },
  19695. {
  19696. name: "Huggable softy boi",
  19697. height: math.unit(3.6576, "m"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Admirable floof",
  19702. height: math.unit(80, "meters")
  19703. },
  19704. {
  19705. name: "Gentle macro",
  19706. height: math.unit(300, "meters")
  19707. },
  19708. {
  19709. name: "Very careful floof",
  19710. height: math.unit(3200, "meters")
  19711. },
  19712. {
  19713. name: "The mega floof",
  19714. height: math.unit(36000, "meters")
  19715. },
  19716. {
  19717. name: "Giga-fur-Wicker",
  19718. height: math.unit(4800000, "meters")
  19719. },
  19720. {
  19721. name: "Licky world",
  19722. height: math.unit(20000000, "meters")
  19723. },
  19724. {
  19725. name: "Floofy cyan sun",
  19726. height: math.unit(1500000000, "meters")
  19727. },
  19728. {
  19729. name: "Milky Wicker",
  19730. height: math.unit(1000000000000000000000, "meters")
  19731. },
  19732. {
  19733. name: "The observing Wicker",
  19734. height: math.unit(999999999999999999999999999, "meters")
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19740. {
  19741. front: {
  19742. height: math.unit(5 + 9 / 12, "feet"),
  19743. weight: math.unit(150, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/arokha-sieyes/front.svg",
  19747. extra: 1425 / 1284,
  19748. bottom: 0.05
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 9 / 12, "feet")
  19756. },
  19757. {
  19758. name: "Macro",
  19759. height: math.unit(30, "meters"),
  19760. default: true
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(180, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/arokh-sieyes/front.svg",
  19773. extra: 1830 / 1769,
  19774. bottom: 0.01
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(6, "feet")
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(30, "meters"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19792. {
  19793. side: {
  19794. height: math.unit(13 + 1 / 12, "feet"),
  19795. weight: math.unit(8.5, "tonnes"),
  19796. name: "Side",
  19797. image: {
  19798. source: "./media/characters/goldeneye/side.svg",
  19799. extra: 1182 / 778,
  19800. bottom: 0.067
  19801. }
  19802. },
  19803. paw: {
  19804. height: math.unit(3.4, "feet"),
  19805. name: "Paw",
  19806. image: {
  19807. source: "./media/characters/goldeneye/paw.svg"
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(13 + 1 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19821. {
  19822. front: {
  19823. height: math.unit(6 + 1 / 12, "feet"),
  19824. weight: math.unit(210, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/leonardo-lycheborne/front.svg",
  19828. extra: 776/723,
  19829. bottom: 34/810
  19830. }
  19831. },
  19832. side: {
  19833. height: math.unit(6 + 1 / 12, "feet"),
  19834. weight: math.unit(210, "lb"),
  19835. name: "Side",
  19836. image: {
  19837. source: "./media/characters/leonardo-lycheborne/side.svg",
  19838. extra: 780/728,
  19839. bottom: 12/792
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(6 + 1 / 12, "feet"),
  19844. weight: math.unit(210, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/leonardo-lycheborne/back.svg",
  19848. extra: 775/721,
  19849. bottom: 17/792
  19850. }
  19851. },
  19852. hand: {
  19853. height: math.unit(1.08, "feet"),
  19854. name: "Hand",
  19855. image: {
  19856. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19857. }
  19858. },
  19859. foot: {
  19860. height: math.unit(1.32, "feet"),
  19861. name: "Foot",
  19862. image: {
  19863. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19864. }
  19865. },
  19866. maw: {
  19867. height: math.unit(1, "feet"),
  19868. name: "Maw",
  19869. image: {
  19870. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19871. }
  19872. },
  19873. were: {
  19874. height: math.unit(20, "feet"),
  19875. weight: math.unit(7800, "lb"),
  19876. name: "Were",
  19877. image: {
  19878. source: "./media/characters/leonardo-lycheborne/were.svg",
  19879. extra: 1224/1165,
  19880. bottom: 72/1296
  19881. }
  19882. },
  19883. feral: {
  19884. height: math.unit(7.5, "feet"),
  19885. weight: math.unit(600, "lb"),
  19886. name: "Feral",
  19887. image: {
  19888. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19889. extra: 797/702,
  19890. bottom: 139/936
  19891. }
  19892. },
  19893. taur: {
  19894. height: math.unit(11, "feet"),
  19895. weight: math.unit(3300, "lb"),
  19896. name: "Taur",
  19897. image: {
  19898. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19899. extra: 1271/1197,
  19900. bottom: 47/1318
  19901. }
  19902. },
  19903. barghest: {
  19904. height: math.unit(11, "feet"),
  19905. weight: math.unit(1300, "lb"),
  19906. name: "Barghest",
  19907. image: {
  19908. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19909. extra: 1291/1204,
  19910. bottom: 37/1328
  19911. }
  19912. },
  19913. dick: {
  19914. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19915. name: "Dick",
  19916. image: {
  19917. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19918. }
  19919. },
  19920. dickWere: {
  19921. height: math.unit((20) / 3.8, "feet"),
  19922. name: "Dick (Were)",
  19923. image: {
  19924. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(6 + 1 / 12, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19938. {
  19939. front: {
  19940. height: math.unit(10, "feet"),
  19941. weight: math.unit(350, "lb"),
  19942. name: "Front",
  19943. image: {
  19944. source: "./media/characters/jet/front.svg",
  19945. extra: 2050 / 1980,
  19946. bottom: 0.013
  19947. }
  19948. },
  19949. back: {
  19950. height: math.unit(10, "feet"),
  19951. weight: math.unit(350, "lb"),
  19952. name: "Back",
  19953. image: {
  19954. source: "./media/characters/jet/back.svg",
  19955. extra: 2050 / 1980,
  19956. bottom: 0.013
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Micro",
  19963. height: math.unit(6, "inches")
  19964. },
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(10, "feet"),
  19968. default: true
  19969. },
  19970. {
  19971. name: "Macro",
  19972. height: math.unit(100, "feet")
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(15, "feet"),
  19981. weight: math.unit(2800, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/tanarath/front.svg",
  19985. extra: 2392 / 2220,
  19986. bottom: 0.03
  19987. }
  19988. },
  19989. back: {
  19990. height: math.unit(15, "feet"),
  19991. weight: math.unit(2800, "lb"),
  19992. name: "Back",
  19993. image: {
  19994. source: "./media/characters/tanarath/back.svg",
  19995. extra: 2392 / 2220,
  19996. bottom: 0.03
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(15, "feet"),
  20004. default: true
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(7 + 1 / 12, "feet"),
  20013. weight: math.unit(175, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/patty-cattybatty/front.svg",
  20017. extra: 908 / 874,
  20018. bottom: 0.025
  20019. }
  20020. },
  20021. },
  20022. [
  20023. {
  20024. name: "Micro",
  20025. height: math.unit(1, "inch")
  20026. },
  20027. {
  20028. name: "Normal",
  20029. height: math.unit(7 + 1 / 12, "feet")
  20030. },
  20031. {
  20032. name: "Mini Macro",
  20033. height: math.unit(155, "feet")
  20034. },
  20035. {
  20036. name: "Macro",
  20037. height: math.unit(1077, "feet")
  20038. },
  20039. {
  20040. name: "Mega Macro",
  20041. height: math.unit(47650, "feet"),
  20042. default: true
  20043. },
  20044. {
  20045. name: "Giga Macro",
  20046. height: math.unit(440, "miles")
  20047. },
  20048. {
  20049. name: "Tera Macro",
  20050. height: math.unit(8700, "miles")
  20051. },
  20052. {
  20053. name: "Planetary Macro",
  20054. height: math.unit(32700, "miles")
  20055. },
  20056. {
  20057. name: "Solar Macro",
  20058. height: math.unit(550000, "miles")
  20059. },
  20060. {
  20061. name: "Celestial Macro",
  20062. height: math.unit(2.5, "AU")
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(4 + 5 / 12, "feet"),
  20071. weight: math.unit(90, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/cappu/front.svg",
  20075. extra: 1247 / 1152,
  20076. bottom: 0.012
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(4 + 5 / 12, "feet"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20090. {
  20091. frontDressed: {
  20092. height: math.unit(70, "cm"),
  20093. weight: math.unit(6, "kg"),
  20094. name: "Front (Dressed)",
  20095. image: {
  20096. source: "./media/characters/sebi/front-dressed.svg",
  20097. extra: 713.5 / 686.5,
  20098. bottom: 0.003
  20099. }
  20100. },
  20101. front: {
  20102. height: math.unit(70, "cm"),
  20103. weight: math.unit(5, "kg"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/sebi/front.svg",
  20107. extra: 713.5 / 686.5,
  20108. bottom: 0.003
  20109. }
  20110. }
  20111. },
  20112. [
  20113. {
  20114. name: "Normal",
  20115. height: math.unit(70, "cm"),
  20116. default: true
  20117. },
  20118. {
  20119. name: "Macro",
  20120. height: math.unit(8, "meters")
  20121. },
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20126. {
  20127. front: {
  20128. height: math.unit(6, "feet"),
  20129. weight: math.unit(150, "lb"),
  20130. name: "Front",
  20131. image: {
  20132. source: "./media/characters/typhek/front.svg",
  20133. extra: 1948 / 1929,
  20134. bottom: 0.025
  20135. }
  20136. },
  20137. side: {
  20138. height: math.unit(6, "feet"),
  20139. weight: math.unit(150, "lb"),
  20140. name: "Side",
  20141. image: {
  20142. source: "./media/characters/typhek/side.svg",
  20143. extra: 2034 / 2010,
  20144. bottom: 0.003
  20145. }
  20146. },
  20147. back: {
  20148. height: math.unit(6, "feet"),
  20149. weight: math.unit(150, "lb"),
  20150. name: "Back",
  20151. image: {
  20152. source: "./media/characters/typhek/back.svg",
  20153. extra: 2005 / 1978,
  20154. bottom: 0.004
  20155. }
  20156. },
  20157. palm: {
  20158. height: math.unit(1.2, "feet"),
  20159. name: "Palm",
  20160. image: {
  20161. source: "./media/characters/typhek/palm.svg"
  20162. }
  20163. },
  20164. fist: {
  20165. height: math.unit(1.1, "feet"),
  20166. name: "Fist",
  20167. image: {
  20168. source: "./media/characters/typhek/fist.svg"
  20169. }
  20170. },
  20171. foot: {
  20172. height: math.unit(1.57, "feet"),
  20173. name: "Foot",
  20174. image: {
  20175. source: "./media/characters/typhek/foot.svg"
  20176. }
  20177. },
  20178. sole: {
  20179. height: math.unit(2.05, "feet"),
  20180. name: "Sole",
  20181. image: {
  20182. source: "./media/characters/typhek/sole.svg"
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(40, "stories"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(1, "mile")
  20195. },
  20196. {
  20197. name: "Gigamacro",
  20198. height: math.unit(4000, "solarradii")
  20199. },
  20200. {
  20201. name: "Universal",
  20202. height: math.unit(1.1, "universes")
  20203. }
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20208. {
  20209. side: {
  20210. height: math.unit(5 + 7 / 12, "feet"),
  20211. weight: math.unit(150, "lb"),
  20212. name: "Side",
  20213. image: {
  20214. source: "./media/characters/kassy/side.svg",
  20215. extra: 1280 / 1225,
  20216. bottom: 0.002
  20217. }
  20218. },
  20219. front: {
  20220. height: math.unit(5 + 7 / 12, "feet"),
  20221. weight: math.unit(150, "lb"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/kassy/front.svg",
  20225. extra: 1280 / 1225,
  20226. bottom: 0.025
  20227. }
  20228. },
  20229. back: {
  20230. height: math.unit(5 + 7 / 12, "feet"),
  20231. weight: math.unit(150, "lb"),
  20232. name: "Back",
  20233. image: {
  20234. source: "./media/characters/kassy/back.svg",
  20235. extra: 1280 / 1225,
  20236. bottom: 0.002
  20237. }
  20238. },
  20239. foot: {
  20240. height: math.unit(1.266, "feet"),
  20241. name: "Foot",
  20242. image: {
  20243. source: "./media/characters/kassy/foot.svg"
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(5 + 7 / 12, "feet")
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(137, "feet"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Megamacro",
  20259. height: math.unit(1, "mile")
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20265. {
  20266. front: {
  20267. height: math.unit(6 + 1 / 12, "feet"),
  20268. weight: math.unit(200, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/neil/front.svg",
  20272. extra: 1326 / 1250,
  20273. bottom: 0.023
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(6 + 1 / 12, "feet"),
  20281. default: true
  20282. },
  20283. {
  20284. name: "Macro",
  20285. height: math.unit(200, "feet")
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(5 + 9 / 12, "feet"),
  20294. weight: math.unit(190, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/atticus/front.svg",
  20298. extra: 2934 / 2785,
  20299. bottom: 0.025
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(5 + 9 / 12, "feet"),
  20307. default: true
  20308. },
  20309. {
  20310. name: "Macro",
  20311. height: math.unit(180, "feet")
  20312. },
  20313. ]
  20314. ))
  20315. characterMakers.push(() => makeCharacter(
  20316. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20317. {
  20318. side: {
  20319. height: math.unit(9, "feet"),
  20320. weight: math.unit(650, "lb"),
  20321. name: "Side",
  20322. image: {
  20323. source: "./media/characters/milo/side.svg",
  20324. extra: 2644 / 2310,
  20325. bottom: 0.032
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(9, "feet"),
  20333. default: true
  20334. },
  20335. {
  20336. name: "Macro",
  20337. height: math.unit(300, "feet")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20343. {
  20344. side: {
  20345. height: math.unit(8, "meters"),
  20346. weight: math.unit(90000, "kg"),
  20347. name: "Side",
  20348. image: {
  20349. source: "./media/characters/ijzer/side.svg",
  20350. extra: 2756 / 1600,
  20351. bottom: 0.01
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Small",
  20358. height: math.unit(3, "meters")
  20359. },
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(8, "meters"),
  20363. default: true
  20364. },
  20365. {
  20366. name: "Normal+",
  20367. height: math.unit(10, "meters")
  20368. },
  20369. {
  20370. name: "Bigger",
  20371. height: math.unit(24, "meters")
  20372. },
  20373. {
  20374. name: "Huge",
  20375. height: math.unit(80, "meters")
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(6 + 2 / 12, "feet"),
  20384. weight: math.unit(153, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/luca-cervicum/front.svg",
  20388. extra: 370 / 327,
  20389. bottom: 0.015
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(6 + 2 / 12, "feet"),
  20394. weight: math.unit(153, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/luca-cervicum/back.svg",
  20398. extra: 367 / 333,
  20399. bottom: 0.005
  20400. }
  20401. },
  20402. frontGear: {
  20403. height: math.unit(6 + 2 / 12, "feet"),
  20404. weight: math.unit(173, "lb"),
  20405. name: "Front (Gear)",
  20406. image: {
  20407. source: "./media/characters/luca-cervicum/front-gear.svg",
  20408. extra: 377 / 333,
  20409. bottom: 0.006
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(6 + 2 / 12, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20423. {
  20424. front: {
  20425. height: math.unit(6 + 1 / 12, "feet"),
  20426. weight: math.unit(304, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/oliver/front.svg",
  20430. extra: 157 / 143,
  20431. bottom: 0.08
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(6 + 1 / 12, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. weight: math.unit(140, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/shane/front.svg",
  20452. extra: 304 / 289,
  20453. bottom: 0.005
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(5 + 7 / 12, "feet"),
  20461. default: true
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(5 + 9 / 12, "feet"),
  20470. weight: math.unit(178, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/shin/front.svg",
  20474. extra: 159 / 151,
  20475. bottom: 0.015
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 9 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(5 + 10 / 12, "feet"),
  20492. weight: math.unit(168, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/xerxes/front.svg",
  20496. extra: 282 / 260,
  20497. bottom: 0.045
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Normal",
  20504. height: math.unit(5 + 10 / 12, "feet"),
  20505. default: true
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20511. {
  20512. front: {
  20513. height: math.unit(6 + 7 / 12, "feet"),
  20514. weight: math.unit(208, "lb"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/chaska/front.svg",
  20518. extra: 332 / 319,
  20519. bottom: 0.015
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(6 + 7 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(5 + 8 / 12, "feet"),
  20536. weight: math.unit(208, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/enuk/front.svg",
  20540. extra: 437 / 406,
  20541. bottom: 0.02
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(5 + 8 / 12, "feet"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(5 + 10 / 12, "feet"),
  20558. weight: math.unit(252, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/bruun/front.svg",
  20562. extra: 197 / 187,
  20563. bottom: 0.012
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 10 / 12, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(6 + 10 / 12, "feet"),
  20580. weight: math.unit(255, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/alexeev/front.svg",
  20584. extra: 213 / 200,
  20585. bottom: 0.05
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(6 + 10 / 12, "feet"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(2 + 8 / 12, "feet"),
  20602. weight: math.unit(22, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/evelyn/front.svg",
  20606. extra: 208 / 180
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(2 + 8 / 12, "feet"),
  20614. default: true
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20620. {
  20621. front: {
  20622. height: math.unit(5 + 9 / 12, "feet"),
  20623. weight: math.unit(139, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/inca/front.svg",
  20627. extra: 294 / 291,
  20628. bottom: 0.03
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(5 + 9 / 12, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(6 + 3 / 12, "feet"),
  20645. weight: math.unit(185, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/mera/front.svg",
  20649. extra: 291 / 277,
  20650. bottom: 0.03
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(6 + 3 / 12, "feet"),
  20658. default: true
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20664. {
  20665. front: {
  20666. height: math.unit(6 + 7 / 12, "feet"),
  20667. weight: math.unit(160, "lb"),
  20668. name: "Front",
  20669. image: {
  20670. source: "./media/characters/ceres/front.svg",
  20671. extra: 1023 / 950,
  20672. bottom: 0.027
  20673. }
  20674. },
  20675. back: {
  20676. height: math.unit(6 + 7 / 12, "feet"),
  20677. weight: math.unit(160, "lb"),
  20678. name: "Back",
  20679. image: {
  20680. source: "./media/characters/ceres/back.svg",
  20681. extra: 1023 / 950
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(6 + 7 / 12, "feet"),
  20689. default: true
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(5 + 10 / 12, "feet"),
  20698. weight: math.unit(150, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/kris/front.svg",
  20702. extra: 885 / 803,
  20703. bottom: 0.03
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(5 + 10 / 12, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(7, "feet"),
  20720. weight: math.unit(120, "kg"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/taluthus/front.svg",
  20724. extra: 903 / 833,
  20725. bottom: 0.015
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(7, "feet"),
  20733. default: true
  20734. },
  20735. {
  20736. name: "Macro",
  20737. height: math.unit(300, "feet")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(5 + 9 / 12, "feet"),
  20746. weight: math.unit(145, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/dawn/front.svg",
  20750. extra: 2094 / 2016,
  20751. bottom: 0.025
  20752. }
  20753. },
  20754. back: {
  20755. height: math.unit(5 + 9 / 12, "feet"),
  20756. weight: math.unit(160, "lb"),
  20757. name: "Back",
  20758. image: {
  20759. source: "./media/characters/dawn/back.svg",
  20760. extra: 2112 / 2080,
  20761. bottom: 0.005
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(6 + 7 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20775. {
  20776. anthro: {
  20777. height: math.unit(8 + 3 / 12, "feet"),
  20778. weight: math.unit(450, "lb"),
  20779. name: "Anthro",
  20780. image: {
  20781. source: "./media/characters/arador/anthro.svg",
  20782. extra: 1835 / 1718,
  20783. bottom: 0.025
  20784. }
  20785. },
  20786. feral: {
  20787. height: math.unit(4, "feet"),
  20788. weight: math.unit(200, "lb"),
  20789. name: "Feral",
  20790. image: {
  20791. source: "./media/characters/arador/feral.svg",
  20792. extra: 1683 / 1514,
  20793. bottom: 0.07
  20794. }
  20795. },
  20796. },
  20797. [
  20798. {
  20799. name: "Normal",
  20800. height: math.unit(8 + 3 / 12, "feet")
  20801. },
  20802. {
  20803. name: "Macro",
  20804. height: math.unit(82.5, "feet"),
  20805. default: true
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(5 + 10 / 12, "feet"),
  20814. weight: math.unit(125, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/dharsi/front.svg",
  20818. extra: 716 / 630,
  20819. bottom: 0.035
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Nano",
  20826. height: math.unit(100, "nm")
  20827. },
  20828. {
  20829. name: "Micro",
  20830. height: math.unit(2, "inches")
  20831. },
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(5 + 10 / 12, "feet"),
  20835. default: true
  20836. },
  20837. {
  20838. name: "Macro",
  20839. height: math.unit(1000, "feet")
  20840. },
  20841. {
  20842. name: "Megamacro",
  20843. height: math.unit(10, "miles")
  20844. },
  20845. {
  20846. name: "Gigamacro",
  20847. height: math.unit(3000, "miles")
  20848. },
  20849. {
  20850. name: "Teramacro",
  20851. height: math.unit(500000, "miles")
  20852. },
  20853. {
  20854. name: "Teramacro+",
  20855. height: math.unit(30, "galaxies")
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(6, "feet"),
  20864. weight: math.unit(150, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/deathy/front.svg",
  20868. extra: 1552 / 1463,
  20869. bottom: 0.025
  20870. }
  20871. },
  20872. side: {
  20873. height: math.unit(6, "feet"),
  20874. weight: math.unit(150, "lb"),
  20875. name: "Side",
  20876. image: {
  20877. source: "./media/characters/deathy/side.svg",
  20878. extra: 1604 / 1455,
  20879. bottom: 0.025
  20880. }
  20881. },
  20882. back: {
  20883. height: math.unit(6, "feet"),
  20884. weight: math.unit(150, "lb"),
  20885. name: "Back",
  20886. image: {
  20887. source: "./media/characters/deathy/back.svg",
  20888. extra: 1580 / 1463,
  20889. bottom: 0.005
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Micro",
  20896. height: math.unit(5, "millimeters")
  20897. },
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(6 + 5 / 12, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20907. {
  20908. front: {
  20909. height: math.unit(16, "feet"),
  20910. weight: math.unit(4000, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/juniper/front.svg",
  20914. bottom: 0.04
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(16, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(6, "feet"),
  20931. weight: math.unit(150, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/hipster/front.svg",
  20935. extra: 1312 / 1209,
  20936. bottom: 0.025
  20937. }
  20938. },
  20939. back: {
  20940. height: math.unit(6, "feet"),
  20941. weight: math.unit(150, "lb"),
  20942. name: "Back",
  20943. image: {
  20944. source: "./media/characters/hipster/back.svg",
  20945. extra: 1281 / 1196,
  20946. bottom: 0.01
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Micro",
  20953. height: math.unit(1, "mm")
  20954. },
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(4, "inches"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(500, "feet")
  20963. },
  20964. {
  20965. name: "Megamacro",
  20966. height: math.unit(1000, "miles")
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(6, "feet"),
  20975. weight: math.unit(150, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/tendirmuldr/front.svg",
  20979. extra: 1878 / 1772,
  20980. bottom: 0.015
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Megamacro",
  20987. height: math.unit(1500, "miles"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20994. {
  20995. front: {
  20996. height: math.unit(14, "feet"),
  20997. weight: math.unit(12000, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/mort/front.svg",
  21001. extra: 365 / 318,
  21002. bottom: 0.01
  21003. }
  21004. },
  21005. side: {
  21006. height: math.unit(14, "feet"),
  21007. weight: math.unit(12000, "lb"),
  21008. name: "Side",
  21009. image: {
  21010. source: "./media/characters/mort/side.svg",
  21011. extra: 365 / 318,
  21012. bottom: 0.052
  21013. },
  21014. default: true
  21015. },
  21016. back: {
  21017. height: math.unit(14, "feet"),
  21018. weight: math.unit(12000, "lb"),
  21019. name: "Back",
  21020. image: {
  21021. source: "./media/characters/mort/back.svg",
  21022. extra: 371 / 332,
  21023. bottom: 0.18
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(14, "feet"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21037. {
  21038. front: {
  21039. height: math.unit(8, "feet"),
  21040. weight: math.unit(1, "ton"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/lycoa/front.svg",
  21044. extra: 1836/1728,
  21045. bottom: 81/1917
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(8, "feet"),
  21050. weight: math.unit(1, "ton"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/lycoa/back.svg",
  21054. extra: 1785/1720,
  21055. bottom: 91/1876
  21056. }
  21057. },
  21058. head: {
  21059. height: math.unit(1.6243, "feet"),
  21060. name: "Head",
  21061. image: {
  21062. source: "./media/characters/lycoa/head.svg",
  21063. extra: 1011/782,
  21064. bottom: 0/1011
  21065. }
  21066. },
  21067. tailmaw: {
  21068. height: math.unit(1.9, "feet"),
  21069. name: "Tailmaw",
  21070. image: {
  21071. source: "./media/characters/lycoa/tailmaw.svg"
  21072. }
  21073. },
  21074. tentacles: {
  21075. height: math.unit(2.1, "feet"),
  21076. name: "Tentacles",
  21077. image: {
  21078. source: "./media/characters/lycoa/tentacles.svg"
  21079. }
  21080. },
  21081. dick: {
  21082. height: math.unit(1.73, "feet"),
  21083. name: "Dick",
  21084. image: {
  21085. source: "./media/characters/lycoa/dick.svg"
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(8, "feet"),
  21093. default: true
  21094. },
  21095. {
  21096. name: "Macro",
  21097. height: math.unit(30, "feet")
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21103. {
  21104. front: {
  21105. height: math.unit(4 + 2 / 12, "feet"),
  21106. weight: math.unit(70, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/naldara/front.svg",
  21110. extra: 1664/1387,
  21111. bottom: 81/1745
  21112. },
  21113. form: "anthro",
  21114. default: true
  21115. },
  21116. naga: {
  21117. height: math.unit(20, "feet"),
  21118. weight: math.unit(15000, "kg"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/naldara/naga.svg",
  21122. extra: 1590/1396,
  21123. bottom: 285/1875
  21124. },
  21125. form: "naga",
  21126. default: true
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(4 + 2 / 12, "feet"),
  21133. form: "anthro",
  21134. default: true
  21135. },
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(20, "feet"),
  21139. form: "naga",
  21140. default: true
  21141. },
  21142. ],
  21143. {
  21144. "anthro": {
  21145. name: "Anthro",
  21146. default: true
  21147. },
  21148. "naga": {
  21149. name: "Naga"
  21150. }
  21151. }
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(13 + 7 / 12, "feet"),
  21158. weight: math.unit(1500, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/briar/front.svg",
  21162. extra: 1223/1157,
  21163. bottom: 123/1346
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(13 + 7 / 12, "feet"),
  21171. default: true
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21177. {
  21178. side: {
  21179. height: math.unit(16, "feet"),
  21180. weight: math.unit(500, "lb"),
  21181. name: "Side",
  21182. image: {
  21183. source: "./media/characters/vanguard/side.svg",
  21184. extra: 1022/914,
  21185. bottom: 30/1052
  21186. }
  21187. },
  21188. sideAlt: {
  21189. height: math.unit(10, "feet"),
  21190. weight: math.unit(500, "lb"),
  21191. name: "Side (Alt)",
  21192. image: {
  21193. source: "./media/characters/vanguard/side-alt.svg",
  21194. extra: 502 / 425,
  21195. bottom: 0.087
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(17.71, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21209. {
  21210. front: {
  21211. height: math.unit(7.5, "feet"),
  21212. weight: math.unit(2, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/artemis/work-safe-front.svg",
  21216. extra: 1192 / 1075,
  21217. bottom: 0.07
  21218. },
  21219. form: "work-safe",
  21220. default: true
  21221. },
  21222. frontNsfw: {
  21223. height: math.unit(7.5, "feet"),
  21224. weight: math.unit(2, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/artemis/calibrating-front.svg",
  21228. extra: 1192 / 1075,
  21229. bottom: 0.07
  21230. },
  21231. form: "calibrating",
  21232. default: true
  21233. },
  21234. frontNsfwer: {
  21235. height: math.unit(7.5, "feet"),
  21236. weight: math.unit(2, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/artemis/oversize-load-front.svg",
  21240. extra: 1192 / 1075,
  21241. bottom: 0.07
  21242. },
  21243. form: "oversize-load",
  21244. default: true
  21245. },
  21246. side: {
  21247. height: math.unit(7.5, "feet"),
  21248. weight: math.unit(2, "lb"),
  21249. name: "Side",
  21250. image: {
  21251. source: "./media/characters/artemis/work-safe-side.svg",
  21252. extra: 1192 / 1075,
  21253. bottom: 0.07
  21254. },
  21255. form: "work-safe"
  21256. },
  21257. sideNsfw: {
  21258. height: math.unit(7.5, "feet"),
  21259. weight: math.unit(2, "lb"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/artemis/calibrating-side.svg",
  21263. extra: 1192 / 1075,
  21264. bottom: 0.07
  21265. },
  21266. form: "calibrating"
  21267. },
  21268. sideNsfwer: {
  21269. height: math.unit(7.5, "feet"),
  21270. weight: math.unit(2, "lb"),
  21271. name: "Side",
  21272. image: {
  21273. source: "./media/characters/artemis/oversize-load-side.svg",
  21274. extra: 1192 / 1075,
  21275. bottom: 0.07
  21276. },
  21277. form: "oversize-load"
  21278. },
  21279. maw: {
  21280. height: math.unit(1.1, "feet"),
  21281. name: "Maw",
  21282. image: {
  21283. source: "./media/characters/artemis/maw.svg"
  21284. },
  21285. form: "work-safe"
  21286. },
  21287. stomach: {
  21288. height: math.unit(0.95, "feet"),
  21289. name: "Stomach",
  21290. image: {
  21291. source: "./media/characters/artemis/stomach.svg"
  21292. },
  21293. form: "work-safe"
  21294. },
  21295. dickCanine: {
  21296. height: math.unit(1, "feet"),
  21297. name: "Dick (Canine)",
  21298. image: {
  21299. source: "./media/characters/artemis/dick-canine.svg"
  21300. },
  21301. form: "calibrating"
  21302. },
  21303. dickEquine: {
  21304. height: math.unit(0.85, "feet"),
  21305. name: "Dick (Equine)",
  21306. image: {
  21307. source: "./media/characters/artemis/dick-equine.svg"
  21308. },
  21309. form: "calibrating"
  21310. },
  21311. dickExotic: {
  21312. height: math.unit(0.85, "feet"),
  21313. name: "Dick (Exotic)",
  21314. image: {
  21315. source: "./media/characters/artemis/dick-exotic.svg"
  21316. },
  21317. form: "calibrating"
  21318. },
  21319. dickCanineBigger: {
  21320. height: math.unit(1 * 1.33, "feet"),
  21321. name: "Dick (Canine)",
  21322. image: {
  21323. source: "./media/characters/artemis/dick-canine.svg"
  21324. },
  21325. form: "oversize-load"
  21326. },
  21327. dickEquineBigger: {
  21328. height: math.unit(0.85 * 1.33, "feet"),
  21329. name: "Dick (Equine)",
  21330. image: {
  21331. source: "./media/characters/artemis/dick-equine.svg"
  21332. },
  21333. form: "oversize-load"
  21334. },
  21335. dickExoticBigger: {
  21336. height: math.unit(0.85 * 1.33, "feet"),
  21337. name: "Dick (Exotic)",
  21338. image: {
  21339. source: "./media/characters/artemis/dick-exotic.svg"
  21340. },
  21341. form: "oversize-load"
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(7.5, "feet"),
  21348. form: "work-safe",
  21349. default: true
  21350. },
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(7.5, "feet"),
  21354. form: "calibrating",
  21355. default: true
  21356. },
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(7.5, "feet"),
  21360. form: "oversize-load",
  21361. default: true
  21362. },
  21363. {
  21364. name: "Enlarged",
  21365. height: math.unit(12, "feet"),
  21366. form: "work-safe",
  21367. },
  21368. {
  21369. name: "Enlarged",
  21370. height: math.unit(12, "feet"),
  21371. form: "calibrating",
  21372. },
  21373. {
  21374. name: "Enlarged",
  21375. height: math.unit(12, "feet"),
  21376. form: "oversize-load",
  21377. },
  21378. ],
  21379. {
  21380. "work-safe": {
  21381. name: "Work-Safe",
  21382. default: true
  21383. },
  21384. "calibrating": {
  21385. name: "Calibrating"
  21386. },
  21387. "oversize-load": {
  21388. name: "Oversize Load"
  21389. }
  21390. }
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(5 + 3 / 12, "feet"),
  21397. weight: math.unit(160, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/kira/front.svg",
  21401. extra: 906 / 786,
  21402. bottom: 0.01
  21403. }
  21404. },
  21405. back: {
  21406. height: math.unit(5 + 3 / 12, "feet"),
  21407. weight: math.unit(160, "lb"),
  21408. name: "Back",
  21409. image: {
  21410. source: "./media/characters/kira/back.svg",
  21411. extra: 882 / 757,
  21412. bottom: 0.005
  21413. }
  21414. },
  21415. frontDressed: {
  21416. height: math.unit(5 + 3 / 12, "feet"),
  21417. weight: math.unit(160, "lb"),
  21418. name: "Front (Dressed)",
  21419. image: {
  21420. source: "./media/characters/kira/front-dressed.svg",
  21421. extra: 906 / 786,
  21422. bottom: 0.01
  21423. }
  21424. },
  21425. beans: {
  21426. height: math.unit(0.92, "feet"),
  21427. name: "Beans",
  21428. image: {
  21429. source: "./media/characters/kira/beans.svg"
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(5 + 3 / 12, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(5 + 4 / 12, "feet"),
  21446. weight: math.unit(145, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/scramble/front.svg",
  21450. extra: 763 / 727,
  21451. bottom: 0.05
  21452. }
  21453. },
  21454. back: {
  21455. height: math.unit(5 + 4 / 12, "feet"),
  21456. weight: math.unit(145, "lb"),
  21457. name: "Back",
  21458. image: {
  21459. source: "./media/characters/scramble/back.svg",
  21460. extra: 826 / 737,
  21461. bottom: 0.002
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 4 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21475. {
  21476. side: {
  21477. height: math.unit(6 + 2 / 12, "feet"),
  21478. weight: math.unit(190, "lb"),
  21479. name: "Side",
  21480. image: {
  21481. source: "./media/characters/biscuit/side.svg",
  21482. extra: 858 / 791,
  21483. bottom: 0.044
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6 + 2 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 2 / 12, "feet"),
  21500. weight: math.unit(120, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/poffin/front.svg",
  21504. extra: 786 / 680,
  21505. bottom: 0.005
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5 + 2 / 12, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(6 + 3 / 12, "feet"),
  21522. weight: math.unit(519, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/dhari/front.svg",
  21526. extra: 1048 / 946,
  21527. bottom: 0.015
  21528. }
  21529. },
  21530. back: {
  21531. height: math.unit(6 + 3 / 12, "feet"),
  21532. weight: math.unit(519, "lb"),
  21533. name: "Back",
  21534. image: {
  21535. source: "./media/characters/dhari/back.svg",
  21536. extra: 1048 / 931,
  21537. bottom: 0.005
  21538. }
  21539. },
  21540. frontDressed: {
  21541. height: math.unit(6 + 3 / 12, "feet"),
  21542. weight: math.unit(519, "lb"),
  21543. name: "Front (Dressed)",
  21544. image: {
  21545. source: "./media/characters/dhari/front-dressed.svg",
  21546. extra: 1713 / 1546,
  21547. bottom: 0.02
  21548. }
  21549. },
  21550. backDressed: {
  21551. height: math.unit(6 + 3 / 12, "feet"),
  21552. weight: math.unit(519, "lb"),
  21553. name: "Back (Dressed)",
  21554. image: {
  21555. source: "./media/characters/dhari/back-dressed.svg",
  21556. extra: 1699 / 1537,
  21557. bottom: 0.01
  21558. }
  21559. },
  21560. maw: {
  21561. height: math.unit(0.95, "feet"),
  21562. name: "Maw",
  21563. image: {
  21564. source: "./media/characters/dhari/maw.svg"
  21565. }
  21566. },
  21567. wereFront: {
  21568. height: math.unit(12 + 8 / 12, "feet"),
  21569. weight: math.unit(4000, "lb"),
  21570. name: "Front (Were)",
  21571. image: {
  21572. source: "./media/characters/dhari/were-front.svg",
  21573. extra: 1065 / 969,
  21574. bottom: 0.015
  21575. }
  21576. },
  21577. wereBack: {
  21578. height: math.unit(12 + 8 / 12, "feet"),
  21579. weight: math.unit(4000, "lb"),
  21580. name: "Back (Were)",
  21581. image: {
  21582. source: "./media/characters/dhari/were-back.svg",
  21583. extra: 1065 / 969,
  21584. bottom: 0.012
  21585. }
  21586. },
  21587. wereMaw: {
  21588. height: math.unit(0.625, "meters"),
  21589. name: "Maw (Were)",
  21590. image: {
  21591. source: "./media/characters/dhari/were-maw.svg"
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(6 + 3 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21605. {
  21606. anthro: {
  21607. height: math.unit(5 + 7 / 12, "feet"),
  21608. weight: math.unit(175, "lb"),
  21609. name: "Anthro",
  21610. image: {
  21611. source: "./media/characters/rena-dyne/anthro.svg",
  21612. extra: 1849 / 1785,
  21613. bottom: 0.005
  21614. }
  21615. },
  21616. taur: {
  21617. height: math.unit(15 + 6 / 12, "feet"),
  21618. weight: math.unit(8000, "lb"),
  21619. name: "Taur",
  21620. image: {
  21621. source: "./media/characters/rena-dyne/taur.svg",
  21622. extra: 2315 / 2234,
  21623. bottom: 0.033
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Normal",
  21630. height: math.unit(5 + 7 / 12, "feet"),
  21631. default: true
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(8, "feet"),
  21640. weight: math.unit(600, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/weremeep/front.svg",
  21644. extra: 967 / 862,
  21645. bottom: 0.01
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(8, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Lorg",
  21657. height: math.unit(12, "feet")
  21658. },
  21659. {
  21660. name: "Oh Lawd She Comin'",
  21661. height: math.unit(20, "feet")
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21667. {
  21668. front: {
  21669. height: math.unit(4, "feet"),
  21670. weight: math.unit(90, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/reza/front.svg",
  21674. extra: 1183 / 1111,
  21675. bottom: 0.017
  21676. }
  21677. },
  21678. back: {
  21679. height: math.unit(4, "feet"),
  21680. weight: math.unit(90, "lb"),
  21681. name: "Back",
  21682. image: {
  21683. source: "./media/characters/reza/back.svg",
  21684. extra: 1183 / 1111,
  21685. bottom: 0.01
  21686. }
  21687. },
  21688. drake: {
  21689. height: math.unit(30, "feet"),
  21690. weight: math.unit(246960, "lb"),
  21691. name: "Drake",
  21692. image: {
  21693. source: "./media/characters/reza/drake.svg",
  21694. extra: 2350 / 2024,
  21695. bottom: 60.7 / 2403
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Normal",
  21702. height: math.unit(4, "feet"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21709. {
  21710. side: {
  21711. height: math.unit(15, "feet"),
  21712. weight: math.unit(14, "tons"),
  21713. name: "Side",
  21714. image: {
  21715. source: "./media/characters/athea/side.svg",
  21716. extra: 960 / 540,
  21717. bottom: 0.003
  21718. }
  21719. },
  21720. sitting: {
  21721. height: math.unit(6 * 2.85, "feet"),
  21722. weight: math.unit(14, "tons"),
  21723. name: "Sitting",
  21724. image: {
  21725. source: "./media/characters/athea/sitting.svg",
  21726. extra: 621 / 581,
  21727. bottom: 0.075
  21728. }
  21729. },
  21730. maw: {
  21731. height: math.unit(7.59498031496063, "feet"),
  21732. name: "Maw",
  21733. image: {
  21734. source: "./media/characters/athea/maw.svg"
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Lap Cat",
  21741. height: math.unit(2.5, "feet")
  21742. },
  21743. {
  21744. name: "Minimacro",
  21745. height: math.unit(15, "feet"),
  21746. default: true
  21747. },
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(120, "feet")
  21751. },
  21752. {
  21753. name: "Macro+",
  21754. height: math.unit(640, "feet")
  21755. },
  21756. {
  21757. name: "Colossus",
  21758. height: math.unit(2.2, "miles")
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21764. {
  21765. front: {
  21766. height: math.unit(8 + 8 / 12, "feet"),
  21767. weight: math.unit(130, "kg"),
  21768. name: "Front",
  21769. image: {
  21770. source: "./media/characters/seroko/front.svg",
  21771. extra: 1385 / 1280,
  21772. bottom: 0.025
  21773. }
  21774. },
  21775. back: {
  21776. height: math.unit(8 + 8 / 12, "feet"),
  21777. weight: math.unit(130, "kg"),
  21778. name: "Back",
  21779. image: {
  21780. source: "./media/characters/seroko/back.svg",
  21781. extra: 1369 / 1238,
  21782. bottom: 0.018
  21783. }
  21784. },
  21785. frontDressed: {
  21786. height: math.unit(8 + 8 / 12, "feet"),
  21787. weight: math.unit(130, "kg"),
  21788. name: "Front (Dressed)",
  21789. image: {
  21790. source: "./media/characters/seroko/front-dressed.svg",
  21791. extra: 1366 / 1275,
  21792. bottom: 0.03
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(8 + 8 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(5.5, "feet"),
  21809. weight: math.unit(160, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/quatzi/front.svg",
  21813. extra: 2346 / 2242,
  21814. bottom: 0.015
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(5.5, "feet"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Big",
  21826. height: math.unit(7.7, "feet")
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(5 + 11 / 12, "feet"),
  21835. weight: math.unit(180, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/sen/front.svg",
  21839. extra: 1321 / 1254,
  21840. bottom: 0.015
  21841. }
  21842. },
  21843. side: {
  21844. height: math.unit(5 + 11 / 12, "feet"),
  21845. weight: math.unit(180, "lb"),
  21846. name: "Side",
  21847. image: {
  21848. source: "./media/characters/sen/side.svg",
  21849. extra: 1321 / 1254,
  21850. bottom: 0.007
  21851. }
  21852. },
  21853. back: {
  21854. height: math.unit(5 + 11 / 12, "feet"),
  21855. weight: math.unit(180, "lb"),
  21856. name: "Back",
  21857. image: {
  21858. source: "./media/characters/sen/back.svg",
  21859. extra: 1321 / 1254
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(5 + 11 / 12, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(166.6, "cm"),
  21876. weight: math.unit(66.6, "kg"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/fruity/front.svg",
  21880. extra: 1510 / 1386,
  21881. bottom: 0.04
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(166.6, "cm"),
  21886. weight: math.unit(66.6, "lb"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/fruity/back.svg",
  21890. extra: 1563 / 1435,
  21891. bottom: 0.005
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(166.6, "cm"),
  21899. default: true
  21900. },
  21901. {
  21902. name: "Demonic",
  21903. height: math.unit(166.6, "feet")
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21909. {
  21910. side: {
  21911. height: math.unit(10, "feet"),
  21912. weight: math.unit(500, "lb"),
  21913. name: "Side",
  21914. image: {
  21915. source: "./media/characters/zost/side.svg",
  21916. extra: 2870/2533,
  21917. bottom: 252/3122
  21918. }
  21919. },
  21920. mawFront: {
  21921. height: math.unit(1.08, "meters"),
  21922. name: "Maw (Front)",
  21923. image: {
  21924. source: "./media/characters/zost/maw-front.svg"
  21925. }
  21926. },
  21927. mawSide: {
  21928. height: math.unit(2.66, "feet"),
  21929. name: "Maw (Side)",
  21930. image: {
  21931. source: "./media/characters/zost/maw-side.svg"
  21932. }
  21933. },
  21934. wingspan: {
  21935. height: math.unit(7.4, "feet"),
  21936. name: "Wingspan",
  21937. image: {
  21938. source: "./media/characters/zost/wingspan.svg"
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Normal",
  21945. height: math.unit(10, "feet"),
  21946. default: true
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21952. {
  21953. front: {
  21954. height: math.unit(5 + 4 / 12, "feet"),
  21955. weight: math.unit(120, "lb"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/luci/front.svg",
  21959. extra: 1985 / 1884,
  21960. bottom: 0.04
  21961. }
  21962. },
  21963. back: {
  21964. height: math.unit(5 + 4 / 12, "feet"),
  21965. weight: math.unit(120, "lb"),
  21966. name: "Back",
  21967. image: {
  21968. source: "./media/characters/luci/back.svg",
  21969. extra: 1892 / 1791,
  21970. bottom: 0.002
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(5 + 4 / 12, "feet"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(1500, "feet"),
  21987. weight: math.unit(3.8e6, "tons"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/2th/front.svg",
  21991. extra: 3489 / 3350,
  21992. bottom: 0.1
  21993. }
  21994. },
  21995. foot: {
  21996. height: math.unit(461, "feet"),
  21997. name: "Foot",
  21998. image: {
  21999. source: "./media/characters/2th/foot.svg"
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "\"Micro\"",
  22006. height: math.unit(15 + 7 / 12, "feet")
  22007. },
  22008. {
  22009. name: "Normal",
  22010. height: math.unit(1500, "feet"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Macro",
  22015. height: math.unit(5000, "feet")
  22016. },
  22017. {
  22018. name: "Megamacro",
  22019. height: math.unit(15, "miles")
  22020. },
  22021. {
  22022. name: "Gigamacro",
  22023. height: math.unit(4000, "miles")
  22024. },
  22025. {
  22026. name: "Galactic",
  22027. height: math.unit(50, "AU")
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(5 + 6 / 12, "feet"),
  22036. weight: math.unit(220, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/amethyst/front.svg",
  22040. extra: 2078 / 2040,
  22041. bottom: 0.045
  22042. }
  22043. },
  22044. back: {
  22045. height: math.unit(5 + 6 / 12, "feet"),
  22046. weight: math.unit(220, "lb"),
  22047. name: "Back",
  22048. image: {
  22049. source: "./media/characters/amethyst/back.svg",
  22050. extra: 2021 / 1989,
  22051. bottom: 0.02
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(5 + 6 / 12, "feet"),
  22059. default: true
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22065. {
  22066. front: {
  22067. height: math.unit(4 + 11 / 12, "feet"),
  22068. weight: math.unit(120, "lb"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/yumi-akiyama/front.svg",
  22072. extra: 1327 / 1235,
  22073. bottom: 0.02
  22074. }
  22075. },
  22076. back: {
  22077. height: math.unit(4 + 11 / 12, "feet"),
  22078. weight: math.unit(120, "lb"),
  22079. name: "Back",
  22080. image: {
  22081. source: "./media/characters/yumi-akiyama/back.svg",
  22082. extra: 1287 / 1245,
  22083. bottom: 0.002
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "Galactic",
  22090. height: math.unit(50, "galaxies"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Universal",
  22095. height: math.unit(100, "universes")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(8, "feet"),
  22104. weight: math.unit(500, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/rifter-yrmori/front.svg",
  22108. extra: 1180 / 1125,
  22109. bottom: 0.02
  22110. }
  22111. },
  22112. back: {
  22113. height: math.unit(8, "feet"),
  22114. weight: math.unit(500, "lb"),
  22115. name: "Back",
  22116. image: {
  22117. source: "./media/characters/rifter-yrmori/back.svg",
  22118. extra: 1190 / 1145,
  22119. bottom: 0.001
  22120. }
  22121. },
  22122. wings: {
  22123. height: math.unit(7.75, "feet"),
  22124. weight: math.unit(500, "lb"),
  22125. name: "Wings",
  22126. image: {
  22127. source: "./media/characters/rifter-yrmori/wings.svg",
  22128. extra: 1357 / 1285
  22129. }
  22130. },
  22131. maw: {
  22132. height: math.unit(0.8, "feet"),
  22133. name: "Maw",
  22134. image: {
  22135. source: "./media/characters/rifter-yrmori/maw.svg"
  22136. }
  22137. },
  22138. mawfront: {
  22139. height: math.unit(1.45, "feet"),
  22140. name: "Maw (Front)",
  22141. image: {
  22142. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(8, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Macro",
  22154. height: math.unit(42, "meters")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22160. {
  22161. were: {
  22162. height: math.unit(25 + 6 / 12, "feet"),
  22163. weight: math.unit(10000, "lb"),
  22164. name: "Were",
  22165. image: {
  22166. source: "./media/characters/tahajin/were.svg",
  22167. extra: 801 / 770,
  22168. bottom: 0.042
  22169. }
  22170. },
  22171. aquatic: {
  22172. height: math.unit(6 + 4 / 12, "feet"),
  22173. weight: math.unit(160, "lb"),
  22174. name: "Aquatic",
  22175. image: {
  22176. source: "./media/characters/tahajin/aquatic.svg",
  22177. extra: 572 / 542,
  22178. bottom: 0.04
  22179. }
  22180. },
  22181. chow: {
  22182. height: math.unit(8 + 11 / 12, "feet"),
  22183. weight: math.unit(450, "lb"),
  22184. name: "Chow",
  22185. image: {
  22186. source: "./media/characters/tahajin/chow.svg",
  22187. extra: 660 / 640,
  22188. bottom: 0.015
  22189. }
  22190. },
  22191. demiNaga: {
  22192. height: math.unit(6 + 8 / 12, "feet"),
  22193. weight: math.unit(300, "lb"),
  22194. name: "Demi Naga",
  22195. image: {
  22196. source: "./media/characters/tahajin/demi-naga.svg",
  22197. extra: 643 / 615,
  22198. bottom: 0.1
  22199. }
  22200. },
  22201. data: {
  22202. height: math.unit(5, "inches"),
  22203. weight: math.unit(0.1, "lb"),
  22204. name: "Data",
  22205. image: {
  22206. source: "./media/characters/tahajin/data.svg"
  22207. }
  22208. },
  22209. fluu: {
  22210. height: math.unit(5 + 7 / 12, "feet"),
  22211. weight: math.unit(140, "lb"),
  22212. name: "Fluu",
  22213. image: {
  22214. source: "./media/characters/tahajin/fluu.svg",
  22215. extra: 628 / 592,
  22216. bottom: 0.02
  22217. }
  22218. },
  22219. starWarrior: {
  22220. height: math.unit(4 + 5 / 12, "feet"),
  22221. weight: math.unit(50, "lb"),
  22222. name: "Star Warrior",
  22223. image: {
  22224. source: "./media/characters/tahajin/star-warrior.svg"
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(25 + 6 / 12, "feet"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(8, "feet"),
  22241. weight: math.unit(350, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/gabira/front.svg",
  22245. extra: 608 / 580,
  22246. bottom: 0.03
  22247. }
  22248. },
  22249. back: {
  22250. height: math.unit(8, "feet"),
  22251. weight: math.unit(350, "lb"),
  22252. name: "Back",
  22253. image: {
  22254. source: "./media/characters/gabira/back.svg",
  22255. extra: 608 / 580,
  22256. bottom: 0.03
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(8, "feet"),
  22264. default: true
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(5 + 3 / 12, "feet"),
  22273. weight: math.unit(137, "lb"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/sasha-katraine/front.svg",
  22277. extra: 1745/1694,
  22278. bottom: 37/1782
  22279. }
  22280. },
  22281. back: {
  22282. height: math.unit(5 + 3 / 12, "feet"),
  22283. weight: math.unit(137, "lb"),
  22284. name: "Back",
  22285. image: {
  22286. source: "./media/characters/sasha-katraine/back.svg",
  22287. extra: 1776/1699,
  22288. bottom: 26/1802
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Micro",
  22295. height: math.unit(5, "inches")
  22296. },
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(5 + 3 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22306. {
  22307. side: {
  22308. height: math.unit(4, "inches"),
  22309. weight: math.unit(200, "grams"),
  22310. name: "Side",
  22311. image: {
  22312. source: "./media/characters/der/side.svg",
  22313. extra: 719 / 400,
  22314. bottom: 30.6 / 749.9187
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Micro",
  22321. height: math.unit(4, "inches"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22328. {
  22329. side: {
  22330. height: math.unit(30, "meters"),
  22331. weight: math.unit(700, "tonnes"),
  22332. name: "Side",
  22333. image: {
  22334. source: "./media/characters/fixerdragon/side.svg",
  22335. extra: (1293.0514 - 116.03) / 1106.86,
  22336. bottom: 116.03 / 1293.0514
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Planck",
  22343. height: math.unit(1.6e-35, "meters")
  22344. },
  22345. {
  22346. name: "Micro",
  22347. height: math.unit(0.4, "meters")
  22348. },
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(30, "meters"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Megamacro",
  22356. height: math.unit(1.2, "megameters")
  22357. },
  22358. {
  22359. name: "Teramacro",
  22360. height: math.unit(130, "terameters")
  22361. },
  22362. {
  22363. name: "Yottamacro",
  22364. height: math.unit(6200, "yottameters")
  22365. },
  22366. ]
  22367. ));
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(8, "feet"),
  22373. weight: math.unit(250, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/kite/front.svg",
  22377. extra: 2796 / 2659,
  22378. bottom: 0.002
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(8, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(360, "feet")
  22391. },
  22392. {
  22393. name: "Megamacro",
  22394. height: math.unit(1500, "feet")
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22400. {
  22401. front: {
  22402. height: math.unit(5 + 11/12, "feet"),
  22403. weight: math.unit(170, "lb"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/poojawa-vynar/front.svg",
  22407. extra: 1735/1585,
  22408. bottom: 96/1831
  22409. }
  22410. },
  22411. back: {
  22412. height: math.unit(5 + 11/12, "feet"),
  22413. weight: math.unit(170, "lb"),
  22414. name: "Back",
  22415. image: {
  22416. source: "./media/characters/poojawa-vynar/back.svg",
  22417. extra: 1749/1607,
  22418. bottom: 28/1777
  22419. }
  22420. },
  22421. male: {
  22422. height: math.unit(5 + 11/12, "feet"),
  22423. weight: math.unit(170, "lb"),
  22424. name: "Male",
  22425. image: {
  22426. source: "./media/characters/poojawa-vynar/male.svg",
  22427. extra: 1855/1713,
  22428. bottom: 63/1918
  22429. }
  22430. },
  22431. taur: {
  22432. height: math.unit(5 + 11/12, "feet"),
  22433. weight: math.unit(170, "lb"),
  22434. name: "Taur",
  22435. image: {
  22436. source: "./media/characters/poojawa-vynar/taur.svg",
  22437. extra: 1151/1059,
  22438. bottom: 356/1507
  22439. }
  22440. },
  22441. frontDressed: {
  22442. height: math.unit(5 + 11/12, "feet"),
  22443. weight: math.unit(170, "lb"),
  22444. name: "Front (Dressed)",
  22445. image: {
  22446. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22447. extra: 1735/1585,
  22448. bottom: 96/1831
  22449. }
  22450. },
  22451. backDressed: {
  22452. height: math.unit(5 + 11/12, "feet"),
  22453. weight: math.unit(170, "lb"),
  22454. name: "Back (Dressed)",
  22455. image: {
  22456. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22457. extra: 1749/1607,
  22458. bottom: 28/1777
  22459. }
  22460. },
  22461. maleDressed: {
  22462. height: math.unit(5 + 11/12, "feet"),
  22463. weight: math.unit(170, "lb"),
  22464. name: "Male (Dressed)",
  22465. image: {
  22466. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22467. extra: 1855/1713,
  22468. bottom: 63/1918
  22469. }
  22470. },
  22471. taurDressed: {
  22472. height: math.unit(5 + 11/12, "feet"),
  22473. weight: math.unit(170, "lb"),
  22474. name: "Taur (Dressed)",
  22475. image: {
  22476. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22477. extra: 1151/1059,
  22478. bottom: 356/1507
  22479. }
  22480. },
  22481. maw: {
  22482. height: math.unit(1.46, "feet"),
  22483. name: "Maw",
  22484. image: {
  22485. source: "./media/characters/poojawa-vynar/maw.svg"
  22486. }
  22487. },
  22488. head: {
  22489. height: math.unit(2.34, "feet"),
  22490. name: "Head",
  22491. image: {
  22492. source: "./media/characters/poojawa-vynar/head.svg"
  22493. }
  22494. },
  22495. paw: {
  22496. height: math.unit(1.61, "feet"),
  22497. name: "Paw",
  22498. image: {
  22499. source: "./media/characters/poojawa-vynar/paw.svg"
  22500. }
  22501. },
  22502. pawToering: {
  22503. height: math.unit(1.72, "feet"),
  22504. name: "Paw (Toering)",
  22505. image: {
  22506. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22507. }
  22508. },
  22509. toering: {
  22510. height: math.unit(2.9, "inches"),
  22511. name: "Toering",
  22512. image: {
  22513. source: "./media/characters/poojawa-vynar/toering.svg"
  22514. }
  22515. },
  22516. shaft: {
  22517. height: math.unit(0.625, "feet"),
  22518. name: "Shaft",
  22519. image: {
  22520. source: "./media/characters/poojawa-vynar/shaft.svg"
  22521. }
  22522. },
  22523. spade: {
  22524. height: math.unit(0.42, "feet"),
  22525. name: "Spade",
  22526. image: {
  22527. source: "./media/characters/poojawa-vynar/spade.svg"
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Shortstack",
  22534. height: math.unit(4, "feet")
  22535. },
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(5 + 11 / 12, "feet"),
  22539. default: true
  22540. },
  22541. {
  22542. name: "Tauric",
  22543. height: math.unit(4, "meters")
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(293, "meters"),
  22552. weight: math.unit(70400, "tons"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/violette/front.svg",
  22556. extra: 1227 / 1180,
  22557. bottom: 0.005
  22558. }
  22559. },
  22560. back: {
  22561. height: math.unit(293, "meters"),
  22562. weight: math.unit(70400, "tons"),
  22563. name: "Back",
  22564. image: {
  22565. source: "./media/characters/violette/back.svg",
  22566. extra: 1227 / 1180,
  22567. bottom: 0.005
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Macro",
  22574. height: math.unit(293, "meters"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(1050, "feet"),
  22584. weight: math.unit(200000, "tons"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/alessandra/front.svg",
  22588. extra: 960 / 912,
  22589. bottom: 0.06
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Macro",
  22596. height: math.unit(1050, "feet")
  22597. },
  22598. {
  22599. name: "Macro+",
  22600. height: math.unit(900, "meters"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22607. {
  22608. front: {
  22609. height: math.unit(5, "feet"),
  22610. weight: math.unit(187, "lb"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/person/front.svg",
  22614. extra: 3087 / 2945,
  22615. bottom: 91 / 3181
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(3, "inches")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(5, "feet"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Macro",
  22631. height: math.unit(90, "feet")
  22632. },
  22633. {
  22634. name: "Max Size",
  22635. height: math.unit(280, "feet")
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22641. {
  22642. front: {
  22643. height: math.unit(4.5, "meters"),
  22644. weight: math.unit(3200, "lb"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/ty/front.svg",
  22648. extra: 1038 / 960,
  22649. bottom: 31.156 / 1068
  22650. }
  22651. },
  22652. back: {
  22653. height: math.unit(4.5, "meters"),
  22654. weight: math.unit(3200, "lb"),
  22655. name: "Back",
  22656. image: {
  22657. source: "./media/characters/ty/back.svg",
  22658. extra: 1044 / 966,
  22659. bottom: 7.48 / 1049
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(4.5, "meters"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22673. {
  22674. front: {
  22675. height: math.unit(5 + 4 / 12, "feet"),
  22676. weight: math.unit(115, "lb"),
  22677. name: "Front",
  22678. image: {
  22679. source: "./media/characters/rocky/front.svg",
  22680. extra: 1012 / 975,
  22681. bottom: 54 / 1066
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(5 + 4 / 12, "feet"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22695. {
  22696. upright: {
  22697. height: math.unit(6, "meters"),
  22698. weight: math.unit(4000, "kg"),
  22699. name: "Upright",
  22700. image: {
  22701. source: "./media/characters/ruin/upright.svg",
  22702. extra: 668 / 661,
  22703. bottom: 42 / 799.8396
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(6, "meters"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(5, "feet"),
  22720. weight: math.unit(106, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/robin/front.svg",
  22724. extra: 862 / 799,
  22725. bottom: 42.4 / 914.8856
  22726. }
  22727. },
  22728. },
  22729. [
  22730. {
  22731. name: "Normal",
  22732. height: math.unit(5, "feet"),
  22733. default: true
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22739. {
  22740. side: {
  22741. height: math.unit(3, "feet"),
  22742. weight: math.unit(225, "lb"),
  22743. name: "Side",
  22744. image: {
  22745. source: "./media/characters/saian/side.svg",
  22746. extra: 566 / 356,
  22747. bottom: 79.7 / 643
  22748. }
  22749. },
  22750. maw: {
  22751. height: math.unit(2.85, "feet"),
  22752. name: "Maw",
  22753. image: {
  22754. source: "./media/characters/saian/maw.svg"
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(3, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22768. {
  22769. side: {
  22770. height: math.unit(8, "feet"),
  22771. weight: math.unit(300, "lb"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/equus-silvermane/side.svg",
  22775. extra: 2176 / 2050,
  22776. bottom: 65.7 / 2245
  22777. }
  22778. },
  22779. front: {
  22780. height: math.unit(8, "feet"),
  22781. weight: math.unit(300, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/equus-silvermane/front.svg",
  22785. extra: 4633 / 4400,
  22786. bottom: 71.3 / 4706.915
  22787. }
  22788. },
  22789. sideStepping: {
  22790. height: math.unit(8, "feet"),
  22791. weight: math.unit(300, "lb"),
  22792. name: "Side (Stepping)",
  22793. image: {
  22794. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22795. extra: 1968 / 1860,
  22796. bottom: 16.4 / 1989
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(8, "feet")
  22804. },
  22805. {
  22806. name: "Minimacro",
  22807. height: math.unit(75, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(150, "feet")
  22813. },
  22814. {
  22815. name: "Macro+",
  22816. height: math.unit(1000, "feet")
  22817. },
  22818. {
  22819. name: "Megamacro",
  22820. height: math.unit(1, "mile")
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22826. {
  22827. side: {
  22828. height: math.unit(20, "feet"),
  22829. weight: math.unit(30000, "kg"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/windar/side.svg",
  22833. extra: 1491 / 1248,
  22834. bottom: 82.56 / 1568
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(20, "feet"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22848. {
  22849. side: {
  22850. height: math.unit(15.66, "feet"),
  22851. weight: math.unit(150, "lb"),
  22852. name: "Side",
  22853. image: {
  22854. source: "./media/characters/melody/side.svg",
  22855. extra: 1097 / 944,
  22856. bottom: 11.8 / 1109
  22857. }
  22858. },
  22859. sideOutfit: {
  22860. height: math.unit(15.66, "feet"),
  22861. weight: math.unit(150, "lb"),
  22862. name: "Side (Outfit)",
  22863. image: {
  22864. source: "./media/characters/melody/side-outfit.svg",
  22865. extra: 1097 / 944,
  22866. bottom: 11.8 / 1109
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(15.66, "feet"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(8, "feet"),
  22883. weight: math.unit(325, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/windera/front.svg",
  22887. extra: 3180 / 2845,
  22888. bottom: 178 / 3365
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Normal",
  22895. height: math.unit(8, "feet"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22902. {
  22903. front: {
  22904. height: math.unit(28.75, "feet"),
  22905. weight: math.unit(2000, "kg"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/sonear/front.svg",
  22909. extra: 1041.1 / 964.9,
  22910. bottom: 53.7 / 1096.6
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(28.75, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22924. {
  22925. side: {
  22926. height: math.unit(25.5, "feet"),
  22927. weight: math.unit(23000, "kg"),
  22928. name: "Side",
  22929. image: {
  22930. source: "./media/characters/kanara/side.svg"
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(25.5, "feet"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22944. {
  22945. side: {
  22946. height: math.unit(10, "feet"),
  22947. weight: math.unit(1000, "kg"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/ereus/side.svg",
  22951. extra: 1157 / 959,
  22952. bottom: 153 / 1312.5
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(10, "feet"),
  22960. default: true
  22961. },
  22962. ]
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22966. {
  22967. side: {
  22968. height: math.unit(4.5, "feet"),
  22969. weight: math.unit(500, "lb"),
  22970. name: "Side",
  22971. image: {
  22972. source: "./media/characters/e-ter/side.svg",
  22973. extra: 1550 / 1248,
  22974. bottom: 146 / 1694
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(4.5, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22988. {
  22989. side: {
  22990. height: math.unit(9.7, "feet"),
  22991. weight: math.unit(4000, "kg"),
  22992. name: "Side",
  22993. image: {
  22994. source: "./media/characters/yamie/side.svg"
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(9.7, "feet"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23008. {
  23009. front: {
  23010. height: math.unit(50, "feet"),
  23011. weight: math.unit(50000, "kg"),
  23012. name: "Front",
  23013. image: {
  23014. source: "./media/characters/anders/front.svg",
  23015. extra: 570 / 539,
  23016. bottom: 14.7 / 586.7
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Large",
  23023. height: math.unit(50, "feet")
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(2000, "feet"),
  23028. default: true
  23029. },
  23030. {
  23031. name: "Megamacro",
  23032. height: math.unit(12, "miles")
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23038. {
  23039. front: {
  23040. height: math.unit(7 + 2 / 12, "feet"),
  23041. weight: math.unit(300, "lb"),
  23042. name: "Front",
  23043. image: {
  23044. source: "./media/characters/reban/front.svg",
  23045. extra: 1287/1212,
  23046. bottom: 148/1435
  23047. }
  23048. },
  23049. head: {
  23050. height: math.unit(1.95, "feet"),
  23051. name: "Head",
  23052. image: {
  23053. source: "./media/characters/reban/head.svg"
  23054. }
  23055. },
  23056. maw: {
  23057. height: math.unit(0.95, "feet"),
  23058. name: "Maw",
  23059. image: {
  23060. source: "./media/characters/reban/maw.svg"
  23061. }
  23062. },
  23063. foot: {
  23064. height: math.unit(1.65, "feet"),
  23065. name: "Foot",
  23066. image: {
  23067. source: "./media/characters/reban/foot.svg"
  23068. }
  23069. },
  23070. dick: {
  23071. height: math.unit(7 / 5, "feet"),
  23072. name: "Dick",
  23073. image: {
  23074. source: "./media/characters/reban/dick.svg"
  23075. }
  23076. },
  23077. },
  23078. [
  23079. {
  23080. name: "Natural Height",
  23081. height: math.unit(7 + 2 / 12, "feet")
  23082. },
  23083. {
  23084. name: "Macro",
  23085. height: math.unit(500, "feet"),
  23086. default: true
  23087. },
  23088. {
  23089. name: "Canon Height",
  23090. height: math.unit(50, "AU")
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(6, "feet"),
  23099. weight: math.unit(150, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/terrance-keayes/front.svg",
  23103. extra: 1.005,
  23104. bottom: 151 / 1615
  23105. }
  23106. },
  23107. side: {
  23108. height: math.unit(6, "feet"),
  23109. weight: math.unit(150, "lb"),
  23110. name: "Side",
  23111. image: {
  23112. source: "./media/characters/terrance-keayes/side.svg",
  23113. extra: 1.005,
  23114. bottom: 129.4 / 1544
  23115. }
  23116. },
  23117. back: {
  23118. height: math.unit(6, "feet"),
  23119. weight: math.unit(150, "lb"),
  23120. name: "Back",
  23121. image: {
  23122. source: "./media/characters/terrance-keayes/back.svg",
  23123. extra: 1.005,
  23124. bottom: 58.4 / 1557.3
  23125. }
  23126. },
  23127. dick: {
  23128. height: math.unit(6 * 0.208, "feet"),
  23129. name: "Dick",
  23130. image: {
  23131. source: "./media/characters/terrance-keayes/dick.svg"
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Canon Height",
  23138. height: math.unit(35, "miles"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(6, "feet"),
  23148. weight: math.unit(150, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/ofelia/front.svg",
  23152. extra: 1130/1117,
  23153. bottom: 91/1221
  23154. }
  23155. },
  23156. back: {
  23157. height: math.unit(6, "feet"),
  23158. weight: math.unit(150, "lb"),
  23159. name: "Back",
  23160. image: {
  23161. source: "./media/characters/ofelia/back.svg",
  23162. extra: 1172/1159,
  23163. bottom: 28/1200
  23164. }
  23165. },
  23166. maw: {
  23167. height: math.unit(1, "feet"),
  23168. name: "Maw",
  23169. image: {
  23170. source: "./media/characters/ofelia/maw.svg"
  23171. }
  23172. },
  23173. foot: {
  23174. height: math.unit(1.949, "feet"),
  23175. name: "Foot",
  23176. image: {
  23177. source: "./media/characters/ofelia/foot.svg"
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Canon Height",
  23184. height: math.unit(2000, "miles"),
  23185. default: true
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23191. {
  23192. front: {
  23193. height: math.unit(6, "feet"),
  23194. weight: math.unit(150, "lb"),
  23195. name: "Front",
  23196. image: {
  23197. source: "./media/characters/samuel/front.svg",
  23198. extra: 265 / 258,
  23199. bottom: 2 / 266.1566
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Macro",
  23206. height: math.unit(100, "feet"),
  23207. default: true
  23208. },
  23209. {
  23210. name: "Full Size",
  23211. height: math.unit(1000, "miles")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(6, "feet"),
  23220. weight: math.unit(300, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/beishir-kiel/front.svg",
  23224. extra: 569 / 547,
  23225. bottom: 41.9 / 609
  23226. }
  23227. },
  23228. maw: {
  23229. height: math.unit(6 * 0.202, "feet"),
  23230. name: "Maw",
  23231. image: {
  23232. source: "./media/characters/beishir-kiel/maw.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Macro",
  23239. height: math.unit(300, "feet"),
  23240. default: true
  23241. },
  23242. ]
  23243. ))
  23244. characterMakers.push(() => makeCharacter(
  23245. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23246. {
  23247. front: {
  23248. height: math.unit(5 + 7/12, "feet"),
  23249. weight: math.unit(120, "lb"),
  23250. name: "Front",
  23251. image: {
  23252. source: "./media/characters/logan-grey/front.svg",
  23253. extra: 1836/1738,
  23254. bottom: 108/1944
  23255. }
  23256. },
  23257. back: {
  23258. height: math.unit(5 + 7/12, "feet"),
  23259. weight: math.unit(120, "lb"),
  23260. name: "Back",
  23261. image: {
  23262. source: "./media/characters/logan-grey/back.svg",
  23263. extra: 1880/1794,
  23264. bottom: 24/1904
  23265. }
  23266. },
  23267. frontSfw: {
  23268. height: math.unit(5 + 7/12, "feet"),
  23269. weight: math.unit(120, "lb"),
  23270. name: "Front (SFW)",
  23271. image: {
  23272. source: "./media/characters/logan-grey/front-sfw.svg",
  23273. extra: 1836/1738,
  23274. bottom: 108/1944
  23275. }
  23276. },
  23277. backSfw: {
  23278. height: math.unit(5 + 7/12, "feet"),
  23279. weight: math.unit(120, "lb"),
  23280. name: "Back (SFW)",
  23281. image: {
  23282. source: "./media/characters/logan-grey/back-sfw.svg",
  23283. extra: 1880/1794,
  23284. bottom: 24/1904
  23285. }
  23286. },
  23287. hands: {
  23288. height: math.unit(0.84, "feet"),
  23289. name: "Hands",
  23290. image: {
  23291. source: "./media/characters/logan-grey/hands.svg"
  23292. }
  23293. },
  23294. paws: {
  23295. height: math.unit(0.72, "feet"),
  23296. name: "Paws",
  23297. image: {
  23298. source: "./media/characters/logan-grey/paws.svg"
  23299. }
  23300. },
  23301. cock: {
  23302. height: math.unit(1.45, "feet"),
  23303. name: "Cock",
  23304. image: {
  23305. source: "./media/characters/logan-grey/cock.svg"
  23306. }
  23307. },
  23308. cockAlt: {
  23309. height: math.unit(1.437, "feet"),
  23310. name: "Cock (alt)",
  23311. image: {
  23312. source: "./media/characters/logan-grey/cock-alt.svg"
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Normal",
  23319. height: math.unit(5 + 8 / 12, "feet")
  23320. },
  23321. {
  23322. name: "The 500 Foot Femboy",
  23323. height: math.unit(500, "feet"),
  23324. default: true
  23325. },
  23326. {
  23327. name: "Megmacro",
  23328. height: math.unit(20, "miles")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(8 + 2 / 12, "feet"),
  23337. weight: math.unit(275, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/draganta/front.svg",
  23341. extra: 1177 / 1135,
  23342. bottom: 33.46 / 1212.1
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Normal",
  23349. height: math.unit(8 + 6 / 12, "feet"),
  23350. default: true
  23351. },
  23352. {
  23353. name: "Macro",
  23354. height: math.unit(150, "feet")
  23355. },
  23356. {
  23357. name: "Megamacro",
  23358. height: math.unit(1000, "miles")
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(1.72, "m"),
  23367. weight: math.unit(80, "lb"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/voski/front.svg",
  23371. extra: 2076.22 / 2022.4,
  23372. bottom: 102.7 / 2177.3866
  23373. }
  23374. },
  23375. frontFlaccid: {
  23376. height: math.unit(1.72, "m"),
  23377. weight: math.unit(80, "lb"),
  23378. name: "Front (Flaccid)",
  23379. image: {
  23380. source: "./media/characters/voski/front-flaccid.svg",
  23381. extra: 2076.22 / 2022.4,
  23382. bottom: 102.7 / 2177.3866
  23383. }
  23384. },
  23385. frontErect: {
  23386. height: math.unit(1.72, "m"),
  23387. weight: math.unit(80, "lb"),
  23388. name: "Front (Erect)",
  23389. image: {
  23390. source: "./media/characters/voski/front-erect.svg",
  23391. extra: 2076.22 / 2022.4,
  23392. bottom: 102.7 / 2177.3866
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(1.72, "m"),
  23397. weight: math.unit(80, "lb"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/voski/back.svg",
  23401. extra: 2104 / 2051,
  23402. bottom: 10.45 / 2113.63
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Normal",
  23409. height: math.unit(1.72, "m")
  23410. },
  23411. {
  23412. name: "Macro",
  23413. height: math.unit(55, "m"),
  23414. default: true
  23415. },
  23416. {
  23417. name: "Macro+",
  23418. height: math.unit(300, "m")
  23419. },
  23420. {
  23421. name: "Macro++",
  23422. height: math.unit(700, "m")
  23423. },
  23424. {
  23425. name: "Macro+++",
  23426. height: math.unit(4500, "m")
  23427. },
  23428. {
  23429. name: "Macro++++",
  23430. height: math.unit(45, "km")
  23431. },
  23432. {
  23433. name: "Macro+++++",
  23434. height: math.unit(1220, "km")
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23440. {
  23441. front: {
  23442. height: math.unit(2.3, "m"),
  23443. weight: math.unit(304, "kg"),
  23444. name: "Front",
  23445. image: {
  23446. source: "./media/characters/icowom-lee/front.svg",
  23447. extra: 985 / 955,
  23448. bottom: 25.4 / 1012
  23449. }
  23450. },
  23451. fronttentacles: {
  23452. height: math.unit(2.3, "m"),
  23453. weight: math.unit(304, "kg"),
  23454. name: "Front-tentacles",
  23455. image: {
  23456. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23457. extra: 985 / 955,
  23458. bottom: 25.4 / 1012
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(2.3, "m"),
  23463. weight: math.unit(304, "kg"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/icowom-lee/back.svg",
  23467. extra: 975 / 954,
  23468. bottom: 9.5 / 985
  23469. }
  23470. },
  23471. backtentacles: {
  23472. height: math.unit(2.3, "m"),
  23473. weight: math.unit(304, "kg"),
  23474. name: "Back-tentacles",
  23475. image: {
  23476. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23477. extra: 975 / 954,
  23478. bottom: 9.5 / 985
  23479. }
  23480. },
  23481. frontDressed: {
  23482. height: math.unit(2.3, "m"),
  23483. weight: math.unit(304, "kg"),
  23484. name: "Front (Dressed)",
  23485. image: {
  23486. source: "./media/characters/icowom-lee/front-dressed.svg",
  23487. extra: 3076 / 2933,
  23488. bottom: 51.4 / 3125.1889
  23489. }
  23490. },
  23491. rump: {
  23492. height: math.unit(0.776, "meters"),
  23493. name: "Rump",
  23494. image: {
  23495. source: "./media/characters/icowom-lee/rump.svg"
  23496. }
  23497. },
  23498. genitals: {
  23499. height: math.unit(0.78, "meters"),
  23500. name: "Genitals",
  23501. image: {
  23502. source: "./media/characters/icowom-lee/genitals.svg"
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(2.3, "meters"),
  23510. default: true
  23511. },
  23512. {
  23513. name: "Macro",
  23514. height: math.unit(94, "meters"),
  23515. default: true
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23521. {
  23522. front: {
  23523. height: math.unit(22, "meters"),
  23524. weight: math.unit(21000, "kg"),
  23525. name: "Front",
  23526. image: {
  23527. source: "./media/characters/shock-diamond/front.svg",
  23528. extra: 2204 / 2053,
  23529. bottom: 65 / 2239.47
  23530. }
  23531. },
  23532. frontNude: {
  23533. height: math.unit(22, "meters"),
  23534. weight: math.unit(21000, "kg"),
  23535. name: "Front (Nude)",
  23536. image: {
  23537. source: "./media/characters/shock-diamond/front-nude.svg",
  23538. extra: 2514 / 2285,
  23539. bottom: 13 / 2527.56
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Normal",
  23546. height: math.unit(3, "meters")
  23547. },
  23548. {
  23549. name: "Macro",
  23550. height: math.unit(22, "meters"),
  23551. default: true
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(5 + 4 / 12, "feet"),
  23560. weight: math.unit(120, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/rory/front.svg",
  23564. extra: 1318/1241,
  23565. bottom: 42/1360
  23566. }
  23567. },
  23568. back: {
  23569. height: math.unit(5 + 4 / 12, "feet"),
  23570. weight: math.unit(120, "lb"),
  23571. name: "Back",
  23572. image: {
  23573. source: "./media/characters/rory/back.svg",
  23574. extra: 1318/1241,
  23575. bottom: 42/1360
  23576. }
  23577. },
  23578. butt: {
  23579. height: math.unit(1.74, "feet"),
  23580. name: "Butt",
  23581. image: {
  23582. source: "./media/characters/rory/butt.svg"
  23583. }
  23584. },
  23585. dick: {
  23586. height: math.unit(1.02, "feet"),
  23587. name: "Dick",
  23588. image: {
  23589. source: "./media/characters/rory/dick.svg"
  23590. }
  23591. },
  23592. paws: {
  23593. height: math.unit(1, "feet"),
  23594. name: "Paws",
  23595. image: {
  23596. source: "./media/characters/rory/paws.svg"
  23597. }
  23598. },
  23599. frontAlt: {
  23600. height: math.unit(5 + 4 / 12, "feet"),
  23601. weight: math.unit(120, "lb"),
  23602. name: "Front (Alt)",
  23603. image: {
  23604. source: "./media/characters/rory/front-alt.svg",
  23605. extra: 589 / 556,
  23606. bottom: 45.7 / 635.76
  23607. }
  23608. },
  23609. frontAltNude: {
  23610. height: math.unit(5 + 4 / 12, "feet"),
  23611. weight: math.unit(120, "lb"),
  23612. name: "Front (Alt, Nude)",
  23613. image: {
  23614. source: "./media/characters/rory/front-alt-nude.svg",
  23615. extra: 589 / 556,
  23616. bottom: 45.7 / 635.76
  23617. }
  23618. },
  23619. side: {
  23620. height: math.unit(5 + 4 / 12, "feet"),
  23621. weight: math.unit(120, "lb"),
  23622. name: "Side",
  23623. image: {
  23624. source: "./media/characters/rory/side.svg",
  23625. extra: 597 / 564,
  23626. bottom: 55 / 653
  23627. }
  23628. },
  23629. backAlt: {
  23630. height: math.unit(5 + 4 / 12, "feet"),
  23631. weight: math.unit(120, "lb"),
  23632. name: "Back (Alt)",
  23633. image: {
  23634. source: "./media/characters/rory/back-alt.svg",
  23635. extra: 620 / 585,
  23636. bottom: 8.86 / 630.43
  23637. }
  23638. },
  23639. dickAlt: {
  23640. height: math.unit(0.86, "feet"),
  23641. name: "Dick (Alt)",
  23642. image: {
  23643. source: "./media/characters/rory/dick-alt.svg"
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 4 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(100, "feet")
  23656. },
  23657. {
  23658. name: "Macro+",
  23659. height: math.unit(140, "feet")
  23660. },
  23661. {
  23662. name: "Macro++",
  23663. height: math.unit(300, "feet")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5 + 9 / 12, "feet"),
  23672. weight: math.unit(190, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/sprisk/front.svg",
  23676. extra: 1225 / 1180,
  23677. bottom: 42.7 / 1266.4
  23678. }
  23679. },
  23680. frontNsfw: {
  23681. height: math.unit(5 + 9 / 12, "feet"),
  23682. weight: math.unit(190, "lb"),
  23683. name: "Front (NSFW)",
  23684. image: {
  23685. source: "./media/characters/sprisk/front-nsfw.svg",
  23686. extra: 1225 / 1180,
  23687. bottom: 42.7 / 1266.4
  23688. }
  23689. },
  23690. back: {
  23691. height: math.unit(5 + 9 / 12, "feet"),
  23692. weight: math.unit(190, "lb"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/sprisk/back.svg",
  23696. extra: 1247 / 1200,
  23697. bottom: 5.6 / 1253.04
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Tiny",
  23704. height: math.unit(2, "inches")
  23705. },
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(5 + 9 / 12, "feet"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Mini Macro",
  23713. height: math.unit(18, "feet")
  23714. },
  23715. {
  23716. name: "Macro",
  23717. height: math.unit(100, "feet")
  23718. },
  23719. {
  23720. name: "MACRO",
  23721. height: math.unit(50, "miles")
  23722. },
  23723. {
  23724. name: "M A C R O",
  23725. height: math.unit(300, "miles")
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(15.6, "meters"),
  23734. weight: math.unit(700000, "kg"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/bunsen/side.svg",
  23738. extra: 1644 / 358
  23739. }
  23740. },
  23741. foot: {
  23742. height: math.unit(1.611 * 1644 / 358, "meter"),
  23743. name: "Foot",
  23744. image: {
  23745. source: "./media/characters/bunsen/foot.svg"
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Small",
  23752. height: math.unit(10, "feet")
  23753. },
  23754. {
  23755. name: "Normal",
  23756. height: math.unit(15.6, "meters"),
  23757. default: true
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23763. {
  23764. front: {
  23765. height: math.unit(4 + 11 / 12, "feet"),
  23766. weight: math.unit(140, "lb"),
  23767. name: "Front",
  23768. image: {
  23769. source: "./media/characters/sesh/front.svg",
  23770. extra: 3420 / 3231,
  23771. bottom: 72 / 3949.5
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(4 + 11 / 12, "feet")
  23779. },
  23780. {
  23781. name: "Grown",
  23782. height: math.unit(15, "feet"),
  23783. default: true
  23784. },
  23785. {
  23786. name: "Macro",
  23787. height: math.unit(1500, "feet")
  23788. },
  23789. {
  23790. name: "Megamacro",
  23791. height: math.unit(30, "miles")
  23792. },
  23793. {
  23794. name: "Continental",
  23795. height: math.unit(3000, "miles")
  23796. },
  23797. {
  23798. name: "Gravity Mass",
  23799. height: math.unit(300000, "miles")
  23800. },
  23801. {
  23802. name: "Planet Buster",
  23803. height: math.unit(30000000, "miles")
  23804. },
  23805. {
  23806. name: "Big",
  23807. height: math.unit(3000000000, "miles")
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(9, "feet"),
  23816. weight: math.unit(350, "lb"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/pepper/front.svg",
  23820. extra: 1448 / 1312,
  23821. bottom: 9.4 / 1457.88
  23822. }
  23823. },
  23824. back: {
  23825. height: math.unit(9, "feet"),
  23826. weight: math.unit(350, "lb"),
  23827. name: "Back",
  23828. image: {
  23829. source: "./media/characters/pepper/back.svg",
  23830. extra: 1423 / 1300,
  23831. bottom: 4.6 / 1429
  23832. }
  23833. },
  23834. maw: {
  23835. height: math.unit(0.932, "feet"),
  23836. name: "Maw",
  23837. image: {
  23838. source: "./media/characters/pepper/maw.svg"
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Normal",
  23845. height: math.unit(9, "feet"),
  23846. default: true
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(6, "feet"),
  23855. weight: math.unit(150, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/maelstrom/front.svg",
  23859. extra: 2100 / 1883,
  23860. bottom: 94 / 2196.7
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Less Kaiju",
  23867. height: math.unit(200, "feet")
  23868. },
  23869. {
  23870. name: "Kaiju",
  23871. height: math.unit(400, "feet"),
  23872. default: true
  23873. },
  23874. {
  23875. name: "Kaiju-er",
  23876. height: math.unit(600, "feet")
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(6 + 5 / 12, "feet"),
  23885. weight: math.unit(180, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/lexir/front.svg",
  23889. extra: 180 / 172,
  23890. bottom: 12 / 192
  23891. }
  23892. },
  23893. back: {
  23894. height: math.unit(6 + 5 / 12, "feet"),
  23895. weight: math.unit(180, "lb"),
  23896. name: "Back",
  23897. image: {
  23898. source: "./media/characters/lexir/back.svg",
  23899. extra: 1273/1201,
  23900. bottom: 39/1312
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Very Smal",
  23907. height: math.unit(1, "nm")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(6 + 5 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(1, "mile")
  23917. },
  23918. {
  23919. name: "Megamacro",
  23920. height: math.unit(50, "miles")
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(1.5, "meters"),
  23929. weight: math.unit(100, "lb"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/maksio/front.svg",
  23933. extra: 1549 / 1531,
  23934. bottom: 123.7 / 1674.5429
  23935. }
  23936. },
  23937. back: {
  23938. height: math.unit(1.5, "meters"),
  23939. weight: math.unit(100, "lb"),
  23940. name: "Back",
  23941. image: {
  23942. source: "./media/characters/maksio/back.svg",
  23943. extra: 1541 / 1509,
  23944. bottom: 97 / 1639
  23945. }
  23946. },
  23947. hand: {
  23948. height: math.unit(0.621, "feet"),
  23949. name: "Hand",
  23950. image: {
  23951. source: "./media/characters/maksio/hand.svg"
  23952. }
  23953. },
  23954. foot: {
  23955. height: math.unit(1.611, "feet"),
  23956. name: "Foot",
  23957. image: {
  23958. source: "./media/characters/maksio/foot.svg"
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Shrunken",
  23965. height: math.unit(10, "cm")
  23966. },
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(150, "cm"),
  23970. default: true
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23976. {
  23977. front: {
  23978. height: math.unit(100, "feet"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/erza-bear/front.svg",
  23982. extra: 2449 / 2390,
  23983. bottom: 46 / 2494
  23984. }
  23985. },
  23986. back: {
  23987. height: math.unit(100, "feet"),
  23988. name: "Back",
  23989. image: {
  23990. source: "./media/characters/erza-bear/back.svg",
  23991. extra: 2489 / 2430,
  23992. bottom: 85.4 / 2480
  23993. }
  23994. },
  23995. tail: {
  23996. height: math.unit(42, "feet"),
  23997. name: "Tail",
  23998. image: {
  23999. source: "./media/characters/erza-bear/tail.svg"
  24000. }
  24001. },
  24002. tongue: {
  24003. height: math.unit(8, "feet"),
  24004. name: "Tongue",
  24005. image: {
  24006. source: "./media/characters/erza-bear/tongue.svg"
  24007. }
  24008. },
  24009. dick: {
  24010. height: math.unit(10.5, "feet"),
  24011. name: "Dick",
  24012. image: {
  24013. source: "./media/characters/erza-bear/dick.svg"
  24014. }
  24015. },
  24016. dickVertical: {
  24017. height: math.unit(16.9, "feet"),
  24018. name: "Dick (Vertical)",
  24019. image: {
  24020. source: "./media/characters/erza-bear/dick-vertical.svg"
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Macro",
  24027. height: math.unit(100, "feet"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(172, "cm"),
  24037. weight: math.unit(73, "kg"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/violet-flor/front.svg",
  24041. extra: 1530 / 1442,
  24042. bottom: 61.9 / 1588.8
  24043. }
  24044. },
  24045. back: {
  24046. height: math.unit(180, "cm"),
  24047. weight: math.unit(73, "kg"),
  24048. name: "Back",
  24049. image: {
  24050. source: "./media/characters/violet-flor/back.svg",
  24051. extra: 1692 / 1630,
  24052. bottom: 20 / 1712
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Normal",
  24059. height: math.unit(172, "cm"),
  24060. default: true
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24066. {
  24067. front: {
  24068. height: math.unit(6, "feet"),
  24069. weight: math.unit(220, "lb"),
  24070. name: "Front",
  24071. image: {
  24072. source: "./media/characters/lynn-rhea/front.svg",
  24073. extra: 310 / 273
  24074. }
  24075. },
  24076. back: {
  24077. height: math.unit(6, "feet"),
  24078. weight: math.unit(220, "lb"),
  24079. name: "Back",
  24080. image: {
  24081. source: "./media/characters/lynn-rhea/back.svg",
  24082. extra: 310 / 273
  24083. }
  24084. },
  24085. dicks: {
  24086. height: math.unit(0.9, "feet"),
  24087. name: "Dicks",
  24088. image: {
  24089. source: "./media/characters/lynn-rhea/dicks.svg"
  24090. }
  24091. },
  24092. slit: {
  24093. height: math.unit(0.4, "feet"),
  24094. name: "Slit",
  24095. image: {
  24096. source: "./media/characters/lynn-rhea/slit.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Micro",
  24103. height: math.unit(1, "inch")
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(60, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Megamacro",
  24112. height: math.unit(2, "miles")
  24113. },
  24114. {
  24115. name: "Gigamacro",
  24116. height: math.unit(3, "earths")
  24117. },
  24118. {
  24119. name: "Galactic",
  24120. height: math.unit(0.8, "galaxies")
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24126. {
  24127. front: {
  24128. height: math.unit(1600, "feet"),
  24129. weight: math.unit(85758785169, "kg"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/valathos/front.svg",
  24133. extra: 1451 / 1339
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Macro",
  24140. height: math.unit(1600, "feet"),
  24141. default: true
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(7 + 5 / 12, "feet"),
  24150. weight: math.unit(300, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/azula/front.svg",
  24154. extra: 3208 / 2880,
  24155. bottom: 80.2 / 3277
  24156. }
  24157. },
  24158. back: {
  24159. height: math.unit(7 + 5 / 12, "feet"),
  24160. weight: math.unit(300, "lb"),
  24161. name: "Back",
  24162. image: {
  24163. source: "./media/characters/azula/back.svg",
  24164. extra: 3169 / 2822,
  24165. bottom: 150.6 / 3321
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(7 + 5 / 12, "feet"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Big",
  24177. height: math.unit(20, "feet")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(5 + 1 / 12, "feet"),
  24186. weight: math.unit(110, "lb"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/rupert/front.svg",
  24190. extra: 1549 / 1495,
  24191. bottom: 54.2 / 1604.4
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Normal",
  24198. height: math.unit(5 + 1 / 12, "feet"),
  24199. default: true
  24200. },
  24201. ]
  24202. ))
  24203. characterMakers.push(() => makeCharacter(
  24204. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24205. {
  24206. front: {
  24207. height: math.unit(8 + 4 / 12, "feet"),
  24208. weight: math.unit(350, "lb"),
  24209. name: "Front",
  24210. image: {
  24211. source: "./media/characters/sheera-castellar/front.svg",
  24212. extra: 1957 / 1894,
  24213. bottom: 26.97 / 1975.017
  24214. }
  24215. },
  24216. side: {
  24217. height: math.unit(8 + 4 / 12, "feet"),
  24218. weight: math.unit(350, "lb"),
  24219. name: "Side",
  24220. image: {
  24221. source: "./media/characters/sheera-castellar/side.svg",
  24222. extra: 1957 / 1894
  24223. }
  24224. },
  24225. back: {
  24226. height: math.unit(8 + 4 / 12, "feet"),
  24227. weight: math.unit(350, "lb"),
  24228. name: "Back",
  24229. image: {
  24230. source: "./media/characters/sheera-castellar/back.svg",
  24231. extra: 1957 / 1894
  24232. }
  24233. },
  24234. angled: {
  24235. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24236. weight: math.unit(350, "lb"),
  24237. name: "Angled",
  24238. image: {
  24239. source: "./media/characters/sheera-castellar/angled.svg",
  24240. extra: 1807 / 1707,
  24241. bottom: 68 / 1875
  24242. }
  24243. },
  24244. genitals: {
  24245. height: math.unit(2.2, "feet"),
  24246. name: "Genitals",
  24247. image: {
  24248. source: "./media/characters/sheera-castellar/genitals.svg"
  24249. }
  24250. },
  24251. taur: {
  24252. height: math.unit(10 + 6/12, "feet"),
  24253. name: "Taur",
  24254. image: {
  24255. source: "./media/characters/sheera-castellar/taur.svg",
  24256. extra: 2017/1909,
  24257. bottom: 185/2202
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Normal",
  24264. height: math.unit(8 + 4 / 12, "feet")
  24265. },
  24266. {
  24267. name: "Macro",
  24268. height: math.unit(150, "feet"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Macro+",
  24273. height: math.unit(800, "feet")
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(6, "feet"),
  24282. weight: math.unit(150, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/jaipur/front.svg",
  24286. extra: 3860 / 3731,
  24287. bottom: 287 / 4140
  24288. }
  24289. },
  24290. back: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(150, "lb"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/jaipur/back.svg",
  24296. extra: 1637/1561,
  24297. bottom: 154/1791
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(1.85, "meters"),
  24305. default: true
  24306. },
  24307. {
  24308. name: "Macro",
  24309. height: math.unit(150, "meters")
  24310. },
  24311. {
  24312. name: "Macro+",
  24313. height: math.unit(0.5, "miles")
  24314. },
  24315. {
  24316. name: "Macro++",
  24317. height: math.unit(2.5, "miles")
  24318. },
  24319. {
  24320. name: "Macro+++",
  24321. height: math.unit(12, "miles")
  24322. },
  24323. {
  24324. name: "Macro++++",
  24325. height: math.unit(120, "miles")
  24326. },
  24327. {
  24328. name: "Macro+++++",
  24329. height: math.unit(1200, "miles")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(6, "feet"),
  24338. weight: math.unit(150, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/sheila-wolf/front.svg",
  24342. extra: 1931 / 1808,
  24343. bottom: 29.5 / 1960
  24344. }
  24345. },
  24346. dick: {
  24347. height: math.unit(1.464, "feet"),
  24348. name: "Dick",
  24349. image: {
  24350. source: "./media/characters/sheila-wolf/dick.svg"
  24351. }
  24352. },
  24353. muzzle: {
  24354. height: math.unit(0.513, "feet"),
  24355. name: "Muzzle",
  24356. image: {
  24357. source: "./media/characters/sheila-wolf/muzzle.svg"
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Macro",
  24364. height: math.unit(70, "feet"),
  24365. default: true
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(32, "meters"),
  24374. weight: math.unit(300000, "kg"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/almor/front.svg",
  24378. extra: 1408 / 1322,
  24379. bottom: 94.6 / 1506.5
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(32, "meters"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(7, "feet"),
  24396. weight: math.unit(200, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/silver/front.svg",
  24400. extra: 472.1 / 450.5,
  24401. bottom: 26.5 / 499.424
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(7, "feet"),
  24409. default: true
  24410. },
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(800, "feet")
  24414. },
  24415. {
  24416. name: "Megamacro",
  24417. height: math.unit(250, "miles")
  24418. },
  24419. ]
  24420. ))
  24421. characterMakers.push(() => makeCharacter(
  24422. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24423. {
  24424. front: {
  24425. height: math.unit(6, "feet"),
  24426. weight: math.unit(150, "lb"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/pliskin/front.svg",
  24430. extra: 1469 / 1359,
  24431. bottom: 70 / 1540
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Micro",
  24438. height: math.unit(3, "inches")
  24439. },
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(5 + 11 / 12, "feet"),
  24443. default: true
  24444. },
  24445. {
  24446. name: "Macro",
  24447. height: math.unit(120, "feet")
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(6, "feet"),
  24456. weight: math.unit(150, "lb"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/sammy/front.svg",
  24460. extra: 1193 / 1089,
  24461. bottom: 30.5 / 1226
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(1700, "feet"),
  24469. default: true
  24470. },
  24471. {
  24472. name: "Examacro",
  24473. height: math.unit(2.5e9, "lightyears")
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(21, "meters"),
  24482. weight: math.unit(12, "tonnes"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/kuru/front.svg",
  24486. extra: 4301 / 3785,
  24487. bottom: 371.3 / 4691
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(21, "meters"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(23, "meters"),
  24504. weight: math.unit(12.2, "tonnes"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/rakka/front.svg",
  24508. extra: 4670 / 4169,
  24509. bottom: 301 / 4968.7
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Macro",
  24516. height: math.unit(23, "meters"),
  24517. default: true
  24518. },
  24519. ]
  24520. ))
  24521. characterMakers.push(() => makeCharacter(
  24522. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24523. {
  24524. front: {
  24525. height: math.unit(6, "feet"),
  24526. weight: math.unit(150, "lb"),
  24527. name: "Front",
  24528. image: {
  24529. source: "./media/characters/rhys-feline/front.svg",
  24530. extra: 2488 / 2308,
  24531. bottom: 35.67 / 2519.19
  24532. }
  24533. },
  24534. },
  24535. [
  24536. {
  24537. name: "Really Small",
  24538. height: math.unit(1, "nm")
  24539. },
  24540. {
  24541. name: "Micro",
  24542. height: math.unit(4, "inches")
  24543. },
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(4 + 10 / 12, "feet"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(100, "feet")
  24552. },
  24553. {
  24554. name: "Megamacto",
  24555. height: math.unit(50, "miles")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24561. {
  24562. side: {
  24563. height: math.unit(30, "feet"),
  24564. weight: math.unit(35000, "kg"),
  24565. name: "Side",
  24566. image: {
  24567. source: "./media/characters/alydar/side.svg",
  24568. extra: 234 / 222,
  24569. bottom: 6.5 / 241
  24570. }
  24571. },
  24572. front: {
  24573. height: math.unit(30, "feet"),
  24574. weight: math.unit(35000, "kg"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/alydar/front.svg",
  24578. extra: 223.37 / 210.2,
  24579. bottom: 22.3 / 246.76
  24580. }
  24581. },
  24582. top: {
  24583. height: math.unit(64.54, "feet"),
  24584. weight: math.unit(35000, "kg"),
  24585. name: "Top",
  24586. image: {
  24587. source: "./media/characters/alydar/top.svg"
  24588. }
  24589. },
  24590. anthro: {
  24591. height: math.unit(30, "feet"),
  24592. weight: math.unit(9000, "kg"),
  24593. name: "Anthro",
  24594. image: {
  24595. source: "./media/characters/alydar/anthro.svg",
  24596. extra: 432 / 421,
  24597. bottom: 7.18 / 440
  24598. }
  24599. },
  24600. maw: {
  24601. height: math.unit(11.693, "feet"),
  24602. name: "Maw",
  24603. image: {
  24604. source: "./media/characters/alydar/maw.svg"
  24605. }
  24606. },
  24607. head: {
  24608. height: math.unit(11.693, "feet"),
  24609. name: "Head",
  24610. image: {
  24611. source: "./media/characters/alydar/head.svg"
  24612. }
  24613. },
  24614. headAlt: {
  24615. height: math.unit(12.861, "feet"),
  24616. name: "Head (Alt)",
  24617. image: {
  24618. source: "./media/characters/alydar/head-alt.svg"
  24619. }
  24620. },
  24621. wing: {
  24622. height: math.unit(20.712, "feet"),
  24623. name: "Wing",
  24624. image: {
  24625. source: "./media/characters/alydar/wing.svg"
  24626. }
  24627. },
  24628. wingFeather: {
  24629. height: math.unit(9.662, "feet"),
  24630. name: "Wing Feather",
  24631. image: {
  24632. source: "./media/characters/alydar/wing-feather.svg"
  24633. }
  24634. },
  24635. countourFeather: {
  24636. height: math.unit(4.154, "feet"),
  24637. name: "Contour Feather",
  24638. image: {
  24639. source: "./media/characters/alydar/contour-feather.svg"
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Diplomatic",
  24646. height: math.unit(13, "feet"),
  24647. default: true
  24648. },
  24649. {
  24650. name: "Small",
  24651. height: math.unit(30, "feet")
  24652. },
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(95, "feet"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Large",
  24660. height: math.unit(285, "feet")
  24661. },
  24662. {
  24663. name: "Incomprehensible",
  24664. height: math.unit(450, "megameters")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24670. {
  24671. side: {
  24672. height: math.unit(11, "feet"),
  24673. weight: math.unit(1750, "kg"),
  24674. name: "Side",
  24675. image: {
  24676. source: "./media/characters/selicia/side.svg",
  24677. extra: 440 / 396,
  24678. bottom: 24.8 / 465.979
  24679. }
  24680. },
  24681. maw: {
  24682. height: math.unit(4.665, "feet"),
  24683. name: "Maw",
  24684. image: {
  24685. source: "./media/characters/selicia/maw.svg"
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(11, "feet"),
  24693. default: true
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24699. {
  24700. side: {
  24701. height: math.unit(2 + 6 / 12, "feet"),
  24702. weight: math.unit(30, "lb"),
  24703. name: "Side",
  24704. image: {
  24705. source: "./media/characters/layla/side.svg",
  24706. extra: 244 / 188,
  24707. bottom: 18.2 / 262.1
  24708. }
  24709. },
  24710. back: {
  24711. height: math.unit(2 + 6 / 12, "feet"),
  24712. weight: math.unit(30, "lb"),
  24713. name: "Back",
  24714. image: {
  24715. source: "./media/characters/layla/back.svg",
  24716. extra: 308 / 241.5,
  24717. bottom: 8.9 / 316.8
  24718. }
  24719. },
  24720. cumming: {
  24721. height: math.unit(2 + 6 / 12, "feet"),
  24722. weight: math.unit(30, "lb"),
  24723. name: "Cumming",
  24724. image: {
  24725. source: "./media/characters/layla/cumming.svg",
  24726. extra: 342 / 279,
  24727. bottom: 595 / 938
  24728. }
  24729. },
  24730. dickFlaccid: {
  24731. height: math.unit(2.595, "feet"),
  24732. name: "Flaccid Genitals",
  24733. image: {
  24734. source: "./media/characters/layla/dick-flaccid.svg"
  24735. }
  24736. },
  24737. dickErect: {
  24738. height: math.unit(2.359, "feet"),
  24739. name: "Erect Genitals",
  24740. image: {
  24741. source: "./media/characters/layla/dick-erect.svg"
  24742. }
  24743. },
  24744. dragon: {
  24745. height: math.unit(40, "feet"),
  24746. name: "Dragon",
  24747. image: {
  24748. source: "./media/characters/layla/dragon.svg",
  24749. extra: 610/535,
  24750. bottom: 367/977
  24751. }
  24752. },
  24753. taur: {
  24754. height: math.unit(30, "feet"),
  24755. name: "Taur",
  24756. image: {
  24757. source: "./media/characters/layla/taur.svg",
  24758. extra: 1268/1199,
  24759. bottom: 112/1380
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Micro",
  24766. height: math.unit(1, "inch")
  24767. },
  24768. {
  24769. name: "Small",
  24770. height: math.unit(1, "foot")
  24771. },
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(2 + 6 / 12, "feet"),
  24775. default: true
  24776. },
  24777. {
  24778. name: "Macro",
  24779. height: math.unit(200, "feet")
  24780. },
  24781. {
  24782. name: "Megamacro",
  24783. height: math.unit(1000, "miles")
  24784. },
  24785. {
  24786. name: "Planetary",
  24787. height: math.unit(8000, "miles")
  24788. },
  24789. {
  24790. name: "True Layla",
  24791. height: math.unit(200000 * 7, "multiverses")
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24797. {
  24798. back: {
  24799. height: math.unit(10.5, "feet"),
  24800. weight: math.unit(800, "lb"),
  24801. name: "Back",
  24802. image: {
  24803. source: "./media/characters/knox/back.svg",
  24804. extra: 1486 / 1089,
  24805. bottom: 107 / 1601.4
  24806. }
  24807. },
  24808. side: {
  24809. height: math.unit(10.5, "feet"),
  24810. weight: math.unit(800, "lb"),
  24811. name: "Side",
  24812. image: {
  24813. source: "./media/characters/knox/side.svg",
  24814. extra: 244 / 218,
  24815. bottom: 14 / 260
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Compact",
  24822. height: math.unit(10.5, "feet"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Dynamax",
  24827. height: math.unit(210, "feet")
  24828. },
  24829. {
  24830. name: "Full Macro",
  24831. height: math.unit(850, "feet")
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(28, "feet"),
  24840. weight: math.unit(10500, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/kayda/front.svg",
  24844. extra: 1536 / 1428,
  24845. bottom: 68.7 / 1603
  24846. }
  24847. },
  24848. back: {
  24849. height: math.unit(28, "feet"),
  24850. weight: math.unit(10500, "lb"),
  24851. name: "Back",
  24852. image: {
  24853. source: "./media/characters/kayda/back.svg",
  24854. extra: 1557 / 1464,
  24855. bottom: 39.5 / 1597.49
  24856. }
  24857. },
  24858. dick: {
  24859. height: math.unit(3.858, "feet"),
  24860. name: "Dick",
  24861. image: {
  24862. source: "./media/characters/kayda/dick.svg"
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Macro",
  24869. height: math.unit(28, "feet"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(10 + 11 / 12, "feet"),
  24879. weight: math.unit(1400, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/brian/front.svg",
  24883. extra: 737 / 692,
  24884. bottom: 55.4 / 785
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(10 + 11 / 12, "feet"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24898. {
  24899. front: {
  24900. height: math.unit(5 + 8 / 12, "feet"),
  24901. weight: math.unit(140, "lb"),
  24902. name: "Front",
  24903. image: {
  24904. source: "./media/characters/khemri/front.svg",
  24905. extra: 4780 / 4059,
  24906. bottom: 80.1 / 4859.25
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Micro",
  24913. height: math.unit(6, "inches")
  24914. },
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(5 + 8 / 12, "feet"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24924. {
  24925. front: {
  24926. height: math.unit(13, "feet"),
  24927. weight: math.unit(1700, "lb"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/felix-braveheart/front.svg",
  24931. extra: 1222 / 1157,
  24932. bottom: 53.2 / 1280
  24933. }
  24934. },
  24935. back: {
  24936. height: math.unit(13, "feet"),
  24937. weight: math.unit(1700, "lb"),
  24938. name: "Back",
  24939. image: {
  24940. source: "./media/characters/felix-braveheart/back.svg",
  24941. extra: 1277 / 1203,
  24942. bottom: 50.2 / 1327
  24943. }
  24944. },
  24945. feral: {
  24946. height: math.unit(6, "feet"),
  24947. weight: math.unit(400, "lb"),
  24948. name: "Feral",
  24949. image: {
  24950. source: "./media/characters/felix-braveheart/feral.svg",
  24951. extra: 682 / 625,
  24952. bottom: 6.9 / 688
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(13, "feet"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24966. {
  24967. side: {
  24968. height: math.unit(5 + 11 / 12, "feet"),
  24969. weight: math.unit(1400, "lb"),
  24970. name: "Side",
  24971. image: {
  24972. source: "./media/characters/shadow-blade/side.svg",
  24973. extra: 1726 / 1267,
  24974. bottom: 58.4 / 1785
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(5 + 11 / 12, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(1 + 6 / 12, "feet"),
  24991. weight: math.unit(25, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/karla-halldor/front.svg",
  24995. extra: 1459 / 1383,
  24996. bottom: 12 / 1472
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(1 + 6 / 12, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(6 + 2 / 12, "feet"),
  25013. weight: math.unit(160, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/ariam/front.svg",
  25017. extra: 1073/976,
  25018. bottom: 52/1125
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(6 + 2/12, "feet"),
  25023. weight: math.unit(160, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/ariam/back.svg",
  25027. extra: 1103/1023,
  25028. bottom: 9/1112
  25029. }
  25030. },
  25031. dressed: {
  25032. height: math.unit(6 + 2/12, "feet"),
  25033. weight: math.unit(160, "lb"),
  25034. name: "Dressed",
  25035. image: {
  25036. source: "./media/characters/ariam/dressed.svg",
  25037. extra: 1099/1009,
  25038. bottom: 25/1124
  25039. }
  25040. },
  25041. squatting: {
  25042. height: math.unit(4.1, "feet"),
  25043. weight: math.unit(160, "lb"),
  25044. name: "Squatting",
  25045. image: {
  25046. source: "./media/characters/ariam/squatting.svg",
  25047. extra: 2617 / 2112,
  25048. bottom: 61.2 / 2681,
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(6 + 2 / 12, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Normal+",
  25060. height: math.unit(4, "meters")
  25061. },
  25062. {
  25063. name: "Macro",
  25064. height: math.unit(50, "meters")
  25065. },
  25066. {
  25067. name: "Macro+",
  25068. height: math.unit(100, "meters")
  25069. },
  25070. {
  25071. name: "Megamacro",
  25072. height: math.unit(20, "km")
  25073. },
  25074. {
  25075. name: "Caretaker",
  25076. height: math.unit(444, "megameters")
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25082. {
  25083. front: {
  25084. height: math.unit(1.67, "meters"),
  25085. weight: math.unit(140, "lb"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25089. extra: 438 / 410,
  25090. bottom: 0.75 / 439
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Shrunken",
  25097. height: math.unit(7.6, "cm")
  25098. },
  25099. {
  25100. name: "Human Scale",
  25101. height: math.unit(1.67, "meters")
  25102. },
  25103. {
  25104. name: "Wolxi Scale",
  25105. height: math.unit(36.7, "meters"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(1.73, "meters"),
  25115. weight: math.unit(240, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/izue-two-mothers/front.svg",
  25119. extra: 469 / 437,
  25120. bottom: 1.24 / 470.6
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Shrunken",
  25127. height: math.unit(7.86, "cm")
  25128. },
  25129. {
  25130. name: "Human Scale",
  25131. height: math.unit(1.73, "meters")
  25132. },
  25133. {
  25134. name: "Wolxi Scale",
  25135. height: math.unit(38, "meters"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(1.55, "meters"),
  25145. weight: math.unit(120, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/teeku-love-shack/front.svg",
  25149. extra: 387 / 362,
  25150. bottom: 1.51 / 388
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Shrunken",
  25157. height: math.unit(7, "cm")
  25158. },
  25159. {
  25160. name: "Human Scale",
  25161. height: math.unit(1.55, "meters")
  25162. },
  25163. {
  25164. name: "Wolxi Scale",
  25165. height: math.unit(34.1, "meters"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(1.83, "meters"),
  25175. weight: math.unit(135, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/dejma-the-red/front.svg",
  25179. extra: 480 / 458,
  25180. bottom: 1.8 / 482
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Shrunken",
  25187. height: math.unit(8.3, "cm")
  25188. },
  25189. {
  25190. name: "Human Scale",
  25191. height: math.unit(1.83, "meters")
  25192. },
  25193. {
  25194. name: "Wolxi Scale",
  25195. height: math.unit(40, "meters"),
  25196. default: true
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25202. {
  25203. front: {
  25204. height: math.unit(1.78, "meters"),
  25205. weight: math.unit(65, "kg"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/aki/front.svg",
  25209. extra: 452 / 415
  25210. }
  25211. },
  25212. frontNsfw: {
  25213. height: math.unit(1.78, "meters"),
  25214. weight: math.unit(65, "kg"),
  25215. name: "Front (NSFW)",
  25216. image: {
  25217. source: "./media/characters/aki/front-nsfw.svg",
  25218. extra: 452 / 415
  25219. }
  25220. },
  25221. back: {
  25222. height: math.unit(1.78, "meters"),
  25223. weight: math.unit(65, "kg"),
  25224. name: "Back",
  25225. image: {
  25226. source: "./media/characters/aki/back.svg",
  25227. extra: 452 / 415
  25228. }
  25229. },
  25230. rump: {
  25231. height: math.unit(2.05, "feet"),
  25232. name: "Rump",
  25233. image: {
  25234. source: "./media/characters/aki/rump.svg"
  25235. }
  25236. },
  25237. dick: {
  25238. height: math.unit(0.95, "feet"),
  25239. name: "Dick",
  25240. image: {
  25241. source: "./media/characters/aki/dick.svg"
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Micro",
  25248. height: math.unit(15, "cm")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(178, "cm"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(214, "m")
  25258. },
  25259. {
  25260. name: "Macro+",
  25261. height: math.unit(534, "m")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(5 + 5 / 12, "feet"),
  25270. weight: math.unit(120, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/ari/front.svg",
  25274. extra: 1550/1471,
  25275. bottom: 39/1589
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(5 + 5 / 12, "feet")
  25283. },
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(100, "feet"),
  25287. default: true
  25288. },
  25289. {
  25290. name: "Megamacro",
  25291. height: math.unit(100, "miles")
  25292. },
  25293. {
  25294. name: "Gigamacro",
  25295. height: math.unit(80000, "miles")
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25301. {
  25302. side: {
  25303. height: math.unit(9, "feet"),
  25304. weight: math.unit(400, "kg"),
  25305. name: "Side",
  25306. image: {
  25307. source: "./media/characters/bolt/side.svg",
  25308. extra: 1126 / 896,
  25309. bottom: 60 / 1187.3,
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Micro",
  25316. height: math.unit(5, "inches")
  25317. },
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(9, "feet"),
  25321. default: true
  25322. },
  25323. {
  25324. name: "Macro",
  25325. height: math.unit(700, "feet")
  25326. },
  25327. {
  25328. name: "Max Size",
  25329. height: math.unit(1.52e22, "yottameters")
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(4.3, "meters"),
  25338. weight: math.unit(3, "tons"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/draekon-sylviar/front.svg",
  25342. extra: 2072/1512,
  25343. bottom: 74/2146
  25344. }
  25345. },
  25346. back: {
  25347. height: math.unit(4.3, "meters"),
  25348. weight: math.unit(3, "tons"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/draekon-sylviar/back.svg",
  25352. extra: 1639/1483,
  25353. bottom: 41/1680
  25354. }
  25355. },
  25356. feral: {
  25357. height: math.unit(1.15, "meters"),
  25358. weight: math.unit(3, "tons"),
  25359. name: "Feral",
  25360. image: {
  25361. source: "./media/characters/draekon-sylviar/feral.svg",
  25362. extra: 1033/395,
  25363. bottom: 130/1163
  25364. }
  25365. },
  25366. maw: {
  25367. height: math.unit(1.3, "meters"),
  25368. name: "Maw",
  25369. image: {
  25370. source: "./media/characters/draekon-sylviar/maw.svg"
  25371. }
  25372. },
  25373. mawSeparated: {
  25374. height: math.unit(1.53, "meters"),
  25375. name: "Separated Maw",
  25376. image: {
  25377. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25378. }
  25379. },
  25380. tail: {
  25381. height: math.unit(1.15, "meters"),
  25382. name: "Tail",
  25383. image: {
  25384. source: "./media/characters/draekon-sylviar/tail.svg"
  25385. }
  25386. },
  25387. tailDick: {
  25388. height: math.unit(1.15, "meters"),
  25389. name: "Tail (Dick)",
  25390. image: {
  25391. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25392. }
  25393. },
  25394. tailDickSeparated: {
  25395. height: math.unit(1.19, "meters"),
  25396. name: "Tail (Separated Dick)",
  25397. image: {
  25398. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25399. }
  25400. },
  25401. slit: {
  25402. height: math.unit(1, "meters"),
  25403. name: "Slit",
  25404. image: {
  25405. source: "./media/characters/draekon-sylviar/slit.svg"
  25406. }
  25407. },
  25408. dick: {
  25409. height: math.unit(1.15, "meters"),
  25410. name: "Dick",
  25411. image: {
  25412. source: "./media/characters/draekon-sylviar/dick.svg"
  25413. }
  25414. },
  25415. dickSeparated: {
  25416. height: math.unit(1.1, "meters"),
  25417. name: "Separated Dick",
  25418. image: {
  25419. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25420. }
  25421. },
  25422. sheath: {
  25423. height: math.unit(1.15, "meters"),
  25424. name: "Sheath",
  25425. image: {
  25426. source: "./media/characters/draekon-sylviar/sheath.svg"
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Small",
  25433. height: math.unit(4.53 / 2, "meters"),
  25434. default: true
  25435. },
  25436. {
  25437. name: "Normal",
  25438. height: math.unit(4.53, "meters"),
  25439. default: true
  25440. },
  25441. {
  25442. name: "Large",
  25443. height: math.unit(4.53 * 2, "meters"),
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25449. {
  25450. front: {
  25451. height: math.unit(6 + 2 / 12, "feet"),
  25452. weight: math.unit(180, "lb"),
  25453. name: "Front",
  25454. image: {
  25455. source: "./media/characters/brawler/front.svg",
  25456. extra: 3301 / 3027,
  25457. bottom: 138 / 3439
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(6 + 2 / 12, "feet"),
  25465. default: true
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(11, "feet"),
  25474. weight: math.unit(1000, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/alex/front.svg",
  25478. bottom: 44.5 / 620
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Micro",
  25485. height: math.unit(5, "inches")
  25486. },
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(11, "feet"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(9.5e9, "feet")
  25495. },
  25496. {
  25497. name: "Max Size",
  25498. height: math.unit(1.4e283, "yottameters")
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25504. {
  25505. female: {
  25506. height: math.unit(29.9, "m"),
  25507. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25508. name: "Female",
  25509. image: {
  25510. source: "./media/characters/zenari/female.svg",
  25511. extra: 3281.6 / 3217,
  25512. bottom: 72.2 / 3353
  25513. }
  25514. },
  25515. male: {
  25516. height: math.unit(27.7, "m"),
  25517. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25518. name: "Male",
  25519. image: {
  25520. source: "./media/characters/zenari/male.svg",
  25521. extra: 3008 / 2991,
  25522. bottom: 54.6 / 3069
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(29.7, "meters"),
  25530. default: true
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25536. {
  25537. female: {
  25538. height: math.unit(23.8, "m"),
  25539. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25540. name: "Female",
  25541. image: {
  25542. source: "./media/characters/mactarian/female.svg",
  25543. extra: 2662 / 2569,
  25544. bottom: 73 / 2736
  25545. }
  25546. },
  25547. male: {
  25548. height: math.unit(23.8, "m"),
  25549. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25550. name: "Male",
  25551. image: {
  25552. source: "./media/characters/mactarian/male.svg",
  25553. extra: 2673 / 2600,
  25554. bottom: 76 / 2750
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Macro",
  25561. height: math.unit(23.8, "meters"),
  25562. default: true
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25568. {
  25569. female: {
  25570. height: math.unit(19.3, "m"),
  25571. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25572. name: "Female",
  25573. image: {
  25574. source: "./media/characters/umok/female.svg",
  25575. extra: 2186 / 2078,
  25576. bottom: 87 / 2277
  25577. }
  25578. },
  25579. male: {
  25580. height: math.unit(19.5, "m"),
  25581. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25582. name: "Male",
  25583. image: {
  25584. source: "./media/characters/umok/male.svg",
  25585. extra: 2233 / 2140,
  25586. bottom: 24.4 / 2258
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(19.3, "meters"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25600. {
  25601. female: {
  25602. height: math.unit(26.15, "m"),
  25603. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25604. name: "Female",
  25605. image: {
  25606. source: "./media/characters/joraxian/female.svg",
  25607. extra: 2912 / 2824,
  25608. bottom: 36 / 2956
  25609. }
  25610. },
  25611. male: {
  25612. height: math.unit(25.4, "m"),
  25613. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25614. name: "Male",
  25615. image: {
  25616. source: "./media/characters/joraxian/male.svg",
  25617. extra: 2877 / 2721,
  25618. bottom: 82 / 2967
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(26.15, "meters"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25632. {
  25633. female: {
  25634. height: math.unit(21.6, "m"),
  25635. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25636. name: "Female",
  25637. image: {
  25638. source: "./media/characters/sthara/female.svg",
  25639. extra: 2516 / 2347,
  25640. bottom: 21.5 / 2537
  25641. }
  25642. },
  25643. male: {
  25644. height: math.unit(24, "m"),
  25645. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25646. name: "Male",
  25647. image: {
  25648. source: "./media/characters/sthara/male.svg",
  25649. extra: 2732 / 2607,
  25650. bottom: 23 / 2732
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Macro",
  25657. height: math.unit(21.6, "meters"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(6 + 4 / 12, "feet"),
  25667. weight: math.unit(175, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/luka-bryzant/front.svg",
  25671. extra: 311 / 289,
  25672. bottom: 4 / 315
  25673. }
  25674. },
  25675. back: {
  25676. height: math.unit(6 + 4 / 12, "feet"),
  25677. weight: math.unit(175, "lb"),
  25678. name: "Back",
  25679. image: {
  25680. source: "./media/characters/luka-bryzant/back.svg",
  25681. extra: 311 / 289,
  25682. bottom: 3.8 / 313.7
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Micro",
  25689. height: math.unit(10, "inches")
  25690. },
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(6 + 4 / 12, "feet"),
  25694. default: true
  25695. },
  25696. {
  25697. name: "Large",
  25698. height: math.unit(12, "feet")
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(5 + 7 / 12, "feet"),
  25707. weight: math.unit(185, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/aman-aquila/front.svg",
  25711. extra: 1013 / 976,
  25712. bottom: 45.6 / 1057
  25713. }
  25714. },
  25715. side: {
  25716. height: math.unit(5 + 7 / 12, "feet"),
  25717. weight: math.unit(185, "lb"),
  25718. name: "Side",
  25719. image: {
  25720. source: "./media/characters/aman-aquila/side.svg",
  25721. extra: 1054 / 1011,
  25722. bottom: 15 / 1070
  25723. }
  25724. },
  25725. back: {
  25726. height: math.unit(5 + 7 / 12, "feet"),
  25727. weight: math.unit(185, "lb"),
  25728. name: "Back",
  25729. image: {
  25730. source: "./media/characters/aman-aquila/back.svg",
  25731. extra: 1026 / 970,
  25732. bottom: 12 / 1039
  25733. }
  25734. },
  25735. head: {
  25736. height: math.unit(1.211, "feet"),
  25737. name: "Head",
  25738. image: {
  25739. source: "./media/characters/aman-aquila/head.svg",
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Minimicro",
  25746. height: math.unit(0.057, "inches")
  25747. },
  25748. {
  25749. name: "Micro",
  25750. height: math.unit(7, "inches")
  25751. },
  25752. {
  25753. name: "Mini",
  25754. height: math.unit(3 + 7 / 12, "feet")
  25755. },
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(5 + 7 / 12, "feet"),
  25759. default: true
  25760. },
  25761. {
  25762. name: "Macro",
  25763. height: math.unit(157 + 7 / 12, "feet")
  25764. },
  25765. {
  25766. name: "Megamacro",
  25767. height: math.unit(1557 + 7 / 12, "feet")
  25768. },
  25769. {
  25770. name: "Gigamacro",
  25771. height: math.unit(15557 + 7 / 12, "feet")
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(3 + 2 / 12, "inches"),
  25780. weight: math.unit(0.3, "ounces"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/hiphae/front.svg",
  25784. extra: 1931 / 1683,
  25785. bottom: 24 / 1955
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Normal",
  25792. height: math.unit(3 + 1 / 2, "inches"),
  25793. default: true
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(5 + 10 / 12, "feet"),
  25802. weight: math.unit(165, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/nicky/front.svg",
  25806. extra: 3144 / 2886,
  25807. bottom: 45.6 / 3192
  25808. }
  25809. },
  25810. back: {
  25811. height: math.unit(5 + 10 / 12, "feet"),
  25812. weight: math.unit(165, "lb"),
  25813. name: "Back",
  25814. image: {
  25815. source: "./media/characters/nicky/back.svg",
  25816. extra: 3055 / 2804,
  25817. bottom: 28.4 / 3087
  25818. }
  25819. },
  25820. frontclothed: {
  25821. height: math.unit(5 + 10 / 12, "feet"),
  25822. weight: math.unit(165, "lb"),
  25823. name: "Front-clothed",
  25824. image: {
  25825. source: "./media/characters/nicky/front-clothed.svg",
  25826. extra: 3184.9 / 2926.9,
  25827. bottom: 86.5 / 3239.9
  25828. }
  25829. },
  25830. foot: {
  25831. height: math.unit(1.16, "feet"),
  25832. name: "Foot",
  25833. image: {
  25834. source: "./media/characters/nicky/foot.svg"
  25835. }
  25836. },
  25837. feet: {
  25838. height: math.unit(1.34, "feet"),
  25839. name: "Feet",
  25840. image: {
  25841. source: "./media/characters/nicky/feet.svg"
  25842. }
  25843. },
  25844. maw: {
  25845. height: math.unit(0.9, "feet"),
  25846. name: "Maw",
  25847. image: {
  25848. source: "./media/characters/nicky/maw.svg"
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(5 + 10 / 12, "feet"),
  25856. default: true
  25857. },
  25858. {
  25859. name: "Macro",
  25860. height: math.unit(60, "feet")
  25861. },
  25862. {
  25863. name: "Megamacro",
  25864. height: math.unit(1, "mile")
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25870. {
  25871. side: {
  25872. height: math.unit(10, "feet"),
  25873. weight: math.unit(600, "lb"),
  25874. name: "Side",
  25875. image: {
  25876. source: "./media/characters/blair/side.svg",
  25877. bottom: 16.6 / 475,
  25878. extra: 458 / 431
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Micro",
  25885. height: math.unit(8, "inches")
  25886. },
  25887. {
  25888. name: "Normal",
  25889. height: math.unit(10, "feet"),
  25890. default: true
  25891. },
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(180, "feet")
  25895. },
  25896. ]
  25897. ))
  25898. characterMakers.push(() => makeCharacter(
  25899. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25900. {
  25901. front: {
  25902. height: math.unit(5 + 4 / 12, "feet"),
  25903. weight: math.unit(125, "lb"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/fisher/front.svg",
  25907. extra: 444 / 390,
  25908. bottom: 2 / 444.8
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Micro",
  25915. height: math.unit(4, "inches")
  25916. },
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(5 + 4 / 12, "feet"),
  25920. default: true
  25921. },
  25922. {
  25923. name: "Macro",
  25924. height: math.unit(100, "feet")
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(6.71, "feet"),
  25933. weight: math.unit(200, "lb"),
  25934. capacity: math.unit(1000000, "people"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/gliss/front.svg",
  25938. extra: 2347 / 2231,
  25939. bottom: 113 / 2462
  25940. }
  25941. },
  25942. hammerspaceSize: {
  25943. height: math.unit(6.71 * 717, "feet"),
  25944. weight: math.unit(200, "lb"),
  25945. capacity: math.unit(1000000, "people"),
  25946. name: "Hammerspace Size",
  25947. image: {
  25948. source: "./media/characters/gliss/front.svg",
  25949. extra: 2347 / 2231,
  25950. bottom: 113 / 2462
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(6.71, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25964. {
  25965. side: {
  25966. height: math.unit(1.44, "m"),
  25967. weight: math.unit(80, "kg"),
  25968. name: "Side",
  25969. image: {
  25970. source: "./media/characters/dune-anderson/side.svg",
  25971. bottom: 49 / 1426
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Wolf-sized",
  25978. height: math.unit(1.44, "meters")
  25979. },
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(5.05, "meters"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Big",
  25987. height: math.unit(14.4, "meters")
  25988. },
  25989. {
  25990. name: "Huge",
  25991. height: math.unit(144, "meters")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(7, "feet"),
  26000. weight: math.unit(425, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/hind/front.svg",
  26004. extra: 2091 / 1860,
  26005. bottom: 129 / 2220
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(7, "feet"),
  26010. weight: math.unit(425, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/hind/back.svg",
  26014. extra: 2091 / 1860,
  26015. bottom: 24.6 / 2309
  26016. }
  26017. },
  26018. tail: {
  26019. height: math.unit(2.8, "feet"),
  26020. name: "Tail",
  26021. image: {
  26022. source: "./media/characters/hind/tail.svg"
  26023. }
  26024. },
  26025. head: {
  26026. height: math.unit(2.55, "feet"),
  26027. name: "Head",
  26028. image: {
  26029. source: "./media/characters/hind/head.svg"
  26030. }
  26031. },
  26032. },
  26033. [
  26034. {
  26035. name: "XS",
  26036. height: math.unit(0.7, "feet")
  26037. },
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(7, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "XL",
  26045. height: math.unit(70, "feet")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(2.1, "meters"),
  26054. weight: math.unit(150, "lb"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/tharquench-sizestealer/front.svg",
  26058. extra: 1605/1470,
  26059. bottom: 36/1641
  26060. }
  26061. },
  26062. frontAlt: {
  26063. height: math.unit(2.1, "meters"),
  26064. weight: math.unit(150, "lb"),
  26065. name: "Front (Alt)",
  26066. image: {
  26067. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26068. extra: 2318 / 2063,
  26069. bottom: 93.4 / 2410
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Nano",
  26076. height: math.unit(1, "mm")
  26077. },
  26078. {
  26079. name: "Micro",
  26080. height: math.unit(1, "cm")
  26081. },
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(2.1, "meters"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26091. {
  26092. front: {
  26093. height: math.unit(7 + 5 / 12, "feet"),
  26094. weight: math.unit(357, "lb"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/solex-draconov/front.svg",
  26098. extra: 1993 / 1865,
  26099. bottom: 117 / 2111
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Natural Height",
  26106. height: math.unit(7 + 5 / 12, "feet"),
  26107. default: true
  26108. },
  26109. {
  26110. name: "Macro",
  26111. height: math.unit(350, "feet")
  26112. },
  26113. {
  26114. name: "Macro+",
  26115. height: math.unit(1000, "feet")
  26116. },
  26117. {
  26118. name: "Megamacro",
  26119. height: math.unit(20, "km")
  26120. },
  26121. {
  26122. name: "Megamacro+",
  26123. height: math.unit(1000, "km")
  26124. },
  26125. {
  26126. name: "Gigamacro",
  26127. height: math.unit(2.5, "Gm")
  26128. },
  26129. {
  26130. name: "Teramacro",
  26131. height: math.unit(15, "Tm")
  26132. },
  26133. {
  26134. name: "Galactic",
  26135. height: math.unit(30, "Zm")
  26136. },
  26137. {
  26138. name: "Universal",
  26139. height: math.unit(21000, "Ym")
  26140. },
  26141. {
  26142. name: "Omniversal",
  26143. height: math.unit(9.861e50, "Ym")
  26144. },
  26145. {
  26146. name: "Existential",
  26147. height: math.unit(1e300, "meters")
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26153. {
  26154. side: {
  26155. height: math.unit(25, "feet"),
  26156. weight: math.unit(90000, "lb"),
  26157. name: "Side",
  26158. image: {
  26159. source: "./media/characters/mandarax/side.svg",
  26160. extra: 614 / 332,
  26161. bottom: 55 / 630
  26162. }
  26163. },
  26164. lounging: {
  26165. height: math.unit(15.4, "feet"),
  26166. weight: math.unit(90000, "lb"),
  26167. name: "Lounging",
  26168. image: {
  26169. source: "./media/characters/mandarax/lounging.svg",
  26170. extra: 817/609,
  26171. bottom: 685/1502
  26172. }
  26173. },
  26174. head: {
  26175. height: math.unit(11.4, "feet"),
  26176. name: "Head",
  26177. image: {
  26178. source: "./media/characters/mandarax/head.svg"
  26179. }
  26180. },
  26181. belly: {
  26182. height: math.unit(33, "feet"),
  26183. name: "Belly",
  26184. capacity: math.unit(500, "people"),
  26185. image: {
  26186. source: "./media/characters/mandarax/belly.svg"
  26187. }
  26188. },
  26189. dick: {
  26190. height: math.unit(8.46, "feet"),
  26191. name: "Dick",
  26192. image: {
  26193. source: "./media/characters/mandarax/dick.svg"
  26194. }
  26195. },
  26196. top: {
  26197. height: math.unit(28, "meters"),
  26198. name: "Top",
  26199. image: {
  26200. source: "./media/characters/mandarax/top.svg"
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(25, "feet"),
  26208. default: true
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(5, "feet"),
  26217. weight: math.unit(90, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/pixil/front.svg",
  26221. extra: 2000 / 1618,
  26222. bottom: 12.3 / 2011
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(5, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Megamacro",
  26234. height: math.unit(10, "miles"),
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26240. {
  26241. front: {
  26242. height: math.unit(7 + 2 / 12, "feet"),
  26243. weight: math.unit(200, "lb"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/angel/front.svg",
  26247. extra: 1830 / 1737,
  26248. bottom: 22.6 / 1854,
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(7 + 2 / 12, "feet"),
  26256. default: true
  26257. },
  26258. {
  26259. name: "Macro",
  26260. height: math.unit(1000, "feet")
  26261. },
  26262. {
  26263. name: "Megamacro",
  26264. height: math.unit(2, "miles")
  26265. },
  26266. {
  26267. name: "Gigamacro",
  26268. height: math.unit(20, "earths")
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26274. {
  26275. front: {
  26276. height: math.unit(5, "feet"),
  26277. weight: math.unit(180, "lb"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/mekana/front.svg",
  26281. extra: 1671 / 1605,
  26282. bottom: 3.5 / 1691
  26283. }
  26284. },
  26285. side: {
  26286. height: math.unit(5, "feet"),
  26287. weight: math.unit(180, "lb"),
  26288. name: "Side",
  26289. image: {
  26290. source: "./media/characters/mekana/side.svg",
  26291. extra: 1671 / 1605,
  26292. bottom: 3.5 / 1691
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(5, "feet"),
  26297. weight: math.unit(180, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/mekana/back.svg",
  26301. extra: 1671 / 1605,
  26302. bottom: 3.5 / 1691
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(5, "feet"),
  26310. default: true
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(4 + 6 / 12, "feet"),
  26319. weight: math.unit(80, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/pixie/front.svg",
  26323. extra: 1924 / 1825,
  26324. bottom: 22.4 / 1946
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(4 + 6 / 12, "feet"),
  26332. default: true
  26333. },
  26334. {
  26335. name: "Macro",
  26336. height: math.unit(40, "feet")
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(2.1, "meters"),
  26345. weight: math.unit(200, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/the-lascivious/front.svg",
  26349. extra: 1 / 0.893,
  26350. bottom: 3.5 / 573.7
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "Human Scale",
  26357. height: math.unit(2.1, "meters")
  26358. },
  26359. {
  26360. name: "Wolxi Scale",
  26361. height: math.unit(46.2, "m"),
  26362. default: true
  26363. },
  26364. {
  26365. name: "Boinker of Buildings",
  26366. height: math.unit(10, "km")
  26367. },
  26368. {
  26369. name: "Shagger of Skyscrapers",
  26370. height: math.unit(40, "km")
  26371. },
  26372. {
  26373. name: "Banger of Boroughs",
  26374. height: math.unit(4000, "km")
  26375. },
  26376. {
  26377. name: "Screwer of States",
  26378. height: math.unit(100000, "km")
  26379. },
  26380. {
  26381. name: "Pounder of Planets",
  26382. height: math.unit(2000000, "km")
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26388. {
  26389. front: {
  26390. height: math.unit(6, "feet"),
  26391. weight: math.unit(150, "lb"),
  26392. name: "Front",
  26393. image: {
  26394. source: "./media/characters/aj/front.svg",
  26395. extra: 2039 / 1562,
  26396. bottom: 40 / 2079
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(11 + 6 / 12, "feet"),
  26404. default: true
  26405. },
  26406. {
  26407. name: "Megamacro",
  26408. height: math.unit(60, "megameters")
  26409. },
  26410. ]
  26411. ))
  26412. characterMakers.push(() => makeCharacter(
  26413. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26414. {
  26415. side: {
  26416. height: math.unit(31 + 8 / 12, "feet"),
  26417. weight: math.unit(75000, "kg"),
  26418. name: "Side",
  26419. image: {
  26420. source: "./media/characters/koros/side.svg",
  26421. extra: 1442 / 1297,
  26422. bottom: 122.7 / 1562
  26423. }
  26424. },
  26425. dicksKingsCrown: {
  26426. height: math.unit(6, "feet"),
  26427. name: "Dicks (King's Crown)",
  26428. image: {
  26429. source: "./media/characters/koros/dicks-kings-crown.svg"
  26430. }
  26431. },
  26432. dicksTailSet: {
  26433. height: math.unit(3, "feet"),
  26434. name: "Dicks (Tail Set)",
  26435. image: {
  26436. source: "./media/characters/koros/dicks-tail-set.svg"
  26437. }
  26438. },
  26439. dickCumming: {
  26440. height: math.unit(7.98, "feet"),
  26441. name: "Dick (Cumming)",
  26442. image: {
  26443. source: "./media/characters/koros/dick-cumming.svg"
  26444. }
  26445. },
  26446. dicksBack: {
  26447. height: math.unit(5.9, "feet"),
  26448. name: "Dicks (Back)",
  26449. image: {
  26450. source: "./media/characters/koros/dicks-back.svg"
  26451. }
  26452. },
  26453. dicksFront: {
  26454. height: math.unit(3.72, "feet"),
  26455. name: "Dicks (Front)",
  26456. image: {
  26457. source: "./media/characters/koros/dicks-front.svg"
  26458. }
  26459. },
  26460. dicksPeeking: {
  26461. height: math.unit(3.0, "feet"),
  26462. name: "Dicks (Peeking)",
  26463. image: {
  26464. source: "./media/characters/koros/dicks-peeking.svg"
  26465. }
  26466. },
  26467. eye: {
  26468. height: math.unit(1.7, "feet"),
  26469. name: "Eye",
  26470. image: {
  26471. source: "./media/characters/koros/eye.svg"
  26472. }
  26473. },
  26474. headFront: {
  26475. height: math.unit(11.69, "feet"),
  26476. name: "Head (Front)",
  26477. image: {
  26478. source: "./media/characters/koros/head-front.svg"
  26479. }
  26480. },
  26481. headSide: {
  26482. height: math.unit(14, "feet"),
  26483. name: "Head (Side)",
  26484. image: {
  26485. source: "./media/characters/koros/head-side.svg"
  26486. }
  26487. },
  26488. leg: {
  26489. height: math.unit(17, "feet"),
  26490. name: "Leg",
  26491. image: {
  26492. source: "./media/characters/koros/leg.svg"
  26493. }
  26494. },
  26495. mawSide: {
  26496. height: math.unit(12.8, "feet"),
  26497. name: "Maw (Side)",
  26498. image: {
  26499. source: "./media/characters/koros/maw-side.svg"
  26500. }
  26501. },
  26502. mawSpitting: {
  26503. height: math.unit(17, "feet"),
  26504. name: "Maw (Spitting)",
  26505. image: {
  26506. source: "./media/characters/koros/maw-spitting.svg"
  26507. }
  26508. },
  26509. slit: {
  26510. height: math.unit(2.8, "feet"),
  26511. name: "Slit",
  26512. image: {
  26513. source: "./media/characters/koros/slit.svg"
  26514. }
  26515. },
  26516. stomach: {
  26517. height: math.unit(6.8, "feet"),
  26518. capacity: math.unit(20, "people"),
  26519. name: "Stomach",
  26520. image: {
  26521. source: "./media/characters/koros/stomach.svg"
  26522. }
  26523. },
  26524. wingspanBottom: {
  26525. height: math.unit(114, "feet"),
  26526. name: "Wingspan (Bottom)",
  26527. image: {
  26528. source: "./media/characters/koros/wingspan-bottom.svg"
  26529. }
  26530. },
  26531. wingspanTop: {
  26532. height: math.unit(104, "feet"),
  26533. name: "Wingspan (Top)",
  26534. image: {
  26535. source: "./media/characters/koros/wingspan-top.svg"
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(31 + 8 / 12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(18 + 5 / 12, "feet"),
  26552. weight: math.unit(3750, "kg"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/vexx/front.svg",
  26556. extra: 426 / 396,
  26557. bottom: 31.5 / 458
  26558. }
  26559. },
  26560. maw: {
  26561. height: math.unit(6, "feet"),
  26562. name: "Maw",
  26563. image: {
  26564. source: "./media/characters/vexx/maw.svg"
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Normal",
  26571. height: math.unit(18 + 5 / 12, "feet"),
  26572. default: true
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(17 + 6 / 12, "feet"),
  26581. weight: math.unit(150, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/baadra/front.svg",
  26585. extra: 1694/1553,
  26586. bottom: 179/1873
  26587. }
  26588. },
  26589. frontAlt: {
  26590. height: math.unit(17 + 6 / 12, "feet"),
  26591. weight: math.unit(150, "lb"),
  26592. name: "Front (Alt)",
  26593. image: {
  26594. source: "./media/characters/baadra/front-alt.svg",
  26595. extra: 3137 / 2890,
  26596. bottom: 168.4 / 3305
  26597. }
  26598. },
  26599. back: {
  26600. height: math.unit(17 + 6 / 12, "feet"),
  26601. weight: math.unit(150, "lb"),
  26602. name: "Back",
  26603. image: {
  26604. source: "./media/characters/baadra/back.svg",
  26605. extra: 3142 / 2890,
  26606. bottom: 220 / 3371
  26607. }
  26608. },
  26609. head: {
  26610. height: math.unit(5.45, "feet"),
  26611. name: "Head",
  26612. image: {
  26613. source: "./media/characters/baadra/head.svg"
  26614. }
  26615. },
  26616. headAngry: {
  26617. height: math.unit(4.95, "feet"),
  26618. name: "Head (Angry)",
  26619. image: {
  26620. source: "./media/characters/baadra/head-angry.svg"
  26621. }
  26622. },
  26623. headOpen: {
  26624. height: math.unit(6, "feet"),
  26625. name: "Head (Open)",
  26626. image: {
  26627. source: "./media/characters/baadra/head-open.svg"
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(17 + 6 / 12, "feet"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(7 + 3 / 12, "feet"),
  26644. weight: math.unit(180, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/juri/front.svg",
  26648. extra: 1401 / 1237,
  26649. bottom: 18.5 / 1418
  26650. }
  26651. },
  26652. side: {
  26653. height: math.unit(7 + 3 / 12, "feet"),
  26654. weight: math.unit(180, "lb"),
  26655. name: "Side",
  26656. image: {
  26657. source: "./media/characters/juri/side.svg",
  26658. extra: 1424 / 1242,
  26659. bottom: 18.5 / 1447
  26660. }
  26661. },
  26662. sitting: {
  26663. height: math.unit(6, "feet"),
  26664. weight: math.unit(180, "lb"),
  26665. name: "Sitting",
  26666. image: {
  26667. source: "./media/characters/juri/sitting.svg",
  26668. extra: 1270 / 1143,
  26669. bottom: 100 / 1343
  26670. }
  26671. },
  26672. back: {
  26673. height: math.unit(7 + 3 / 12, "feet"),
  26674. weight: math.unit(180, "lb"),
  26675. name: "Back",
  26676. image: {
  26677. source: "./media/characters/juri/back.svg",
  26678. extra: 1377 / 1240,
  26679. bottom: 23.7 / 1405
  26680. }
  26681. },
  26682. maw: {
  26683. height: math.unit(2.8, "feet"),
  26684. name: "Maw",
  26685. image: {
  26686. source: "./media/characters/juri/maw.svg"
  26687. }
  26688. },
  26689. stomach: {
  26690. height: math.unit(0.89, "feet"),
  26691. capacity: math.unit(4, "liters"),
  26692. name: "Stomach",
  26693. image: {
  26694. source: "./media/characters/juri/stomach.svg"
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Normal",
  26701. height: math.unit(7 + 3 / 12, "feet"),
  26702. default: true
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26708. {
  26709. fox: {
  26710. height: math.unit(5 + 6 / 12, "feet"),
  26711. weight: math.unit(140, "lb"),
  26712. name: "Fox",
  26713. image: {
  26714. source: "./media/characters/maxene-sita/fox.svg",
  26715. extra: 146 / 138,
  26716. bottom: 2.1 / 148.19
  26717. }
  26718. },
  26719. foxLaying: {
  26720. height: math.unit(1.70, "feet"),
  26721. weight: math.unit(140, "lb"),
  26722. name: "Fox (Laying)",
  26723. image: {
  26724. source: "./media/characters/maxene-sita/fox-laying.svg",
  26725. extra: 910 / 572,
  26726. bottom: 71 / 981
  26727. }
  26728. },
  26729. kitsune: {
  26730. height: math.unit(10, "feet"),
  26731. weight: math.unit(800, "lb"),
  26732. name: "Kitsune",
  26733. image: {
  26734. source: "./media/characters/maxene-sita/kitsune.svg",
  26735. extra: 185 / 176,
  26736. bottom: 4.7 / 189.9
  26737. }
  26738. },
  26739. hellhound: {
  26740. height: math.unit(10, "feet"),
  26741. weight: math.unit(700, "lb"),
  26742. name: "Hellhound",
  26743. image: {
  26744. source: "./media/characters/maxene-sita/hellhound.svg",
  26745. extra: 1600 / 1545,
  26746. bottom: 81 / 1681
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(5 + 6 / 12, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26760. {
  26761. front: {
  26762. height: math.unit(3 + 4 / 12, "feet"),
  26763. weight: math.unit(70, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/maia/front.svg",
  26767. extra: 227 / 219.5,
  26768. bottom: 40 / 267
  26769. }
  26770. },
  26771. back: {
  26772. height: math.unit(3 + 4 / 12, "feet"),
  26773. weight: math.unit(70, "lb"),
  26774. name: "Back",
  26775. image: {
  26776. source: "./media/characters/maia/back.svg",
  26777. extra: 237 / 225
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(3 + 4 / 12, "feet"),
  26785. default: true
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(5 + 10 / 12, "feet"),
  26794. weight: math.unit(197, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/jabaro/front.svg",
  26798. extra: 225 / 216,
  26799. bottom: 5.06 / 230
  26800. }
  26801. },
  26802. back: {
  26803. height: math.unit(5 + 10 / 12, "feet"),
  26804. weight: math.unit(197, "lb"),
  26805. name: "Back",
  26806. image: {
  26807. source: "./media/characters/jabaro/back.svg",
  26808. extra: 225 / 219,
  26809. bottom: 1.9 / 227
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(5 + 10 / 12, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(5 + 8 / 12, "feet"),
  26826. weight: math.unit(139, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/risa/front.svg",
  26830. extra: 270 / 260,
  26831. bottom: 11.2 / 282
  26832. }
  26833. },
  26834. back: {
  26835. height: math.unit(5 + 8 / 12, "feet"),
  26836. weight: math.unit(139, "lb"),
  26837. name: "Back",
  26838. image: {
  26839. source: "./media/characters/risa/back.svg",
  26840. extra: 264 / 255,
  26841. bottom: 4 / 268
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(5 + 8 / 12, "feet"),
  26849. default: true
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(2 + 11 / 12, "feet"),
  26858. weight: math.unit(30, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/weatley/front.svg",
  26862. bottom: 10.7 / 414,
  26863. extra: 403.5 / 362
  26864. }
  26865. },
  26866. back: {
  26867. height: math.unit(2 + 11 / 12, "feet"),
  26868. weight: math.unit(30, "lb"),
  26869. name: "Back",
  26870. image: {
  26871. source: "./media/characters/weatley/back.svg",
  26872. bottom: 10.7 / 414,
  26873. extra: 403.5 / 362
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(2 + 11 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(5 + 2 / 12, "feet"),
  26890. weight: math.unit(50, "kg"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/mercury-crescent/front.svg",
  26894. extra: 1088 / 1033,
  26895. bottom: 18.9 / 1109
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(5 + 2 / 12, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(2, "feet"),
  26912. weight: math.unit(15, "kg"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/diamond-jones/front.svg",
  26916. extra: 727/723,
  26917. bottom: 46/773
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(2, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(3, "feet"),
  26934. weight: math.unit(30, "kg"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/sweet-bit/front.svg",
  26938. extra: 675 / 567,
  26939. bottom: 27.7 / 703
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(3, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26953. {
  26954. side: {
  26955. height: math.unit(9.178, "feet"),
  26956. weight: math.unit(500, "lb"),
  26957. name: "Side",
  26958. image: {
  26959. source: "./media/characters/umbrazen/side.svg",
  26960. extra: 1730 / 1473,
  26961. bottom: 34.6 / 1765
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(9.178, "feet"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(10, "feet"),
  26978. weight: math.unit(750, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/arlist/front.svg",
  26982. extra: 961 / 778,
  26983. bottom: 6.2 / 986
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(10, "feet"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(5 + 1 / 12, "feet"),
  27000. weight: math.unit(110, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/aradel/front.svg",
  27004. extra: 324 / 303,
  27005. bottom: 3.6 / 329.4
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(5 + 1 / 12, "feet"),
  27013. default: true
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27019. {
  27020. dressed: {
  27021. height: math.unit(3 + 8 / 12, "feet"),
  27022. weight: math.unit(50, "lb"),
  27023. name: "Dressed",
  27024. image: {
  27025. source: "./media/characters/serryn/dressed.svg",
  27026. extra: 1792 / 1656,
  27027. bottom: 43.5 / 1840
  27028. }
  27029. },
  27030. nude: {
  27031. height: math.unit(3 + 8 / 12, "feet"),
  27032. weight: math.unit(50, "lb"),
  27033. name: "Nude",
  27034. image: {
  27035. source: "./media/characters/serryn/nude.svg",
  27036. extra: 1792 / 1656,
  27037. bottom: 43.5 / 1840
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(3 + 8 / 12, "feet"),
  27045. default: true
  27046. },
  27047. ]
  27048. ))
  27049. characterMakers.push(() => makeCharacter(
  27050. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27051. {
  27052. front: {
  27053. height: math.unit(7 + 10 / 12, "feet"),
  27054. weight: math.unit(255, "lb"),
  27055. name: "Front",
  27056. image: {
  27057. source: "./media/characters/xavier-thyme/front.svg",
  27058. extra: 3733 / 3642,
  27059. bottom: 131 / 3869
  27060. }
  27061. },
  27062. frontRaven: {
  27063. height: math.unit(7 + 10 / 12, "feet"),
  27064. weight: math.unit(255, "lb"),
  27065. name: "Front (Raven)",
  27066. image: {
  27067. source: "./media/characters/xavier-thyme/front-raven.svg",
  27068. extra: 4385 / 3642,
  27069. bottom: 131 / 4517
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(7 + 10 / 12, "feet"),
  27077. default: true
  27078. },
  27079. ]
  27080. ))
  27081. characterMakers.push(() => makeCharacter(
  27082. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27083. {
  27084. front: {
  27085. height: math.unit(1.6, "m"),
  27086. weight: math.unit(50, "kg"),
  27087. name: "Front",
  27088. image: {
  27089. source: "./media/characters/kiki/front.svg",
  27090. extra: 4682 / 3610,
  27091. bottom: 115 / 4777
  27092. }
  27093. },
  27094. },
  27095. [
  27096. {
  27097. name: "Normal",
  27098. height: math.unit(1.6, "meters"),
  27099. default: true
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(50, "m"),
  27108. weight: math.unit(500, "tonnes"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/ryoko/front.svg",
  27112. extra: 4632 / 3926,
  27113. bottom: 193 / 4823
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(50, "meters"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(30, "m"),
  27130. weight: math.unit(22, "tonnes"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/elio/front.svg",
  27134. extra: 4582 / 3720,
  27135. bottom: 236 / 4828
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Normal",
  27142. height: math.unit(30, "meters"),
  27143. default: true
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27149. {
  27150. front: {
  27151. height: math.unit(6 + 3 / 12, "feet"),
  27152. weight: math.unit(120, "lb"),
  27153. name: "Front",
  27154. image: {
  27155. source: "./media/characters/azura/front.svg",
  27156. extra: 1149 / 1135,
  27157. bottom: 45 / 1194
  27158. }
  27159. },
  27160. frontClothed: {
  27161. height: math.unit(6 + 3 / 12, "feet"),
  27162. weight: math.unit(120, "lb"),
  27163. name: "Front (Clothed)",
  27164. image: {
  27165. source: "./media/characters/azura/front-clothed.svg",
  27166. extra: 1149 / 1135,
  27167. bottom: 45 / 1194
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(6 + 3 / 12, "feet"),
  27175. default: true
  27176. },
  27177. {
  27178. name: "Macro",
  27179. height: math.unit(20 + 6 / 12, "feet")
  27180. },
  27181. {
  27182. name: "Megamacro",
  27183. height: math.unit(12, "miles")
  27184. },
  27185. {
  27186. name: "Gigamacro",
  27187. height: math.unit(10000, "miles")
  27188. },
  27189. {
  27190. name: "Teramacro",
  27191. height: math.unit(900000, "miles")
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(12, "feet"),
  27200. weight: math.unit(1, "ton"),
  27201. capacity: math.unit(660000, "gallons"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/zeus/front.svg",
  27205. extra: 5005 / 4717,
  27206. bottom: 363 / 5388
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(12, "feet")
  27214. },
  27215. {
  27216. name: "Preferred Size",
  27217. height: math.unit(0.5, "miles"),
  27218. default: true
  27219. },
  27220. {
  27221. name: "Giga Horse",
  27222. height: math.unit(300, "miles")
  27223. },
  27224. {
  27225. name: "Riding Planets",
  27226. height: math.unit(30, "megameters")
  27227. },
  27228. {
  27229. name: "Cosmic Giant",
  27230. height: math.unit(3, "zettameters")
  27231. },
  27232. {
  27233. name: "Breeding God",
  27234. height: math.unit(9.92e22, "yottameters")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27240. {
  27241. side: {
  27242. height: math.unit(9, "feet"),
  27243. weight: math.unit(1500, "kg"),
  27244. name: "Side",
  27245. image: {
  27246. source: "./media/characters/fang/side.svg",
  27247. extra: 924 / 866,
  27248. bottom: 47.5 / 972.3
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(9, "feet"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Macro",
  27260. height: math.unit(75 + 6 / 12, "feet")
  27261. },
  27262. {
  27263. name: "Teramacro",
  27264. height: math.unit(50000, "miles")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(10, "feet"),
  27273. weight: math.unit(2, "tons"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/rekhit/front.svg",
  27277. extra: 2796 / 2590,
  27278. bottom: 225 / 3022
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(10, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(500, "feet")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(7 + 6.451 / 12, "feet"),
  27299. weight: math.unit(310, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/dahlia-verrick/front.svg",
  27303. extra: 1488 / 1365,
  27304. bottom: 6.2 / 1495
  27305. }
  27306. },
  27307. back: {
  27308. height: math.unit(7 + 6.451 / 12, "feet"),
  27309. weight: math.unit(310, "lb"),
  27310. name: "Back",
  27311. image: {
  27312. source: "./media/characters/dahlia-verrick/back.svg",
  27313. extra: 1472 / 1351,
  27314. bottom: 5.28 / 1477
  27315. }
  27316. },
  27317. frontBusiness: {
  27318. height: math.unit(7 + 6.451 / 12, "feet"),
  27319. weight: math.unit(200, "lb"),
  27320. name: "Front (Business)",
  27321. image: {
  27322. source: "./media/characters/dahlia-verrick/front-business.svg",
  27323. extra: 1478 / 1381,
  27324. bottom: 5.5 / 1484
  27325. }
  27326. },
  27327. frontCasual: {
  27328. height: math.unit(7 + 6.451 / 12, "feet"),
  27329. weight: math.unit(200, "lb"),
  27330. name: "Front (Casual)",
  27331. image: {
  27332. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27333. extra: 1478 / 1381,
  27334. bottom: 5.5 / 1484
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Travel-Sized",
  27341. height: math.unit(7.45, "inches")
  27342. },
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(7 + 6.451 / 12, "feet"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Hitting the Town",
  27350. height: math.unit(37 + 8 / 12, "feet")
  27351. },
  27352. {
  27353. name: "Stomp in the Suburbs",
  27354. height: math.unit(964 + 9.728 / 12, "feet")
  27355. },
  27356. {
  27357. name: "Sit on the City",
  27358. height: math.unit(61747 + 10.592 / 12, "feet")
  27359. },
  27360. {
  27361. name: "Glomp the Globe",
  27362. height: math.unit(252919327 + 4.832 / 12, "feet")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(6 + 4 / 12, "feet"),
  27371. weight: math.unit(320, "lb"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/balina-mahigan/front.svg",
  27375. extra: 447 / 428,
  27376. bottom: 18 / 466
  27377. }
  27378. },
  27379. back: {
  27380. height: math.unit(6 + 4 / 12, "feet"),
  27381. weight: math.unit(320, "lb"),
  27382. name: "Back",
  27383. image: {
  27384. source: "./media/characters/balina-mahigan/back.svg",
  27385. extra: 445 / 428,
  27386. bottom: 4.07 / 448
  27387. }
  27388. },
  27389. arm: {
  27390. height: math.unit(1.88, "feet"),
  27391. name: "Arm",
  27392. image: {
  27393. source: "./media/characters/balina-mahigan/arm.svg"
  27394. }
  27395. },
  27396. backPort: {
  27397. height: math.unit(0.685, "feet"),
  27398. name: "Back Port",
  27399. image: {
  27400. source: "./media/characters/balina-mahigan/back-port.svg"
  27401. }
  27402. },
  27403. hoofpaw: {
  27404. height: math.unit(1.41, "feet"),
  27405. name: "Hoofpaw",
  27406. image: {
  27407. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27408. }
  27409. },
  27410. leftHandBack: {
  27411. height: math.unit(0.938, "feet"),
  27412. name: "Left Hand (Back)",
  27413. image: {
  27414. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27415. }
  27416. },
  27417. leftHandFront: {
  27418. height: math.unit(0.938, "feet"),
  27419. name: "Left Hand (Front)",
  27420. image: {
  27421. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27422. }
  27423. },
  27424. rightHandBack: {
  27425. height: math.unit(0.95, "feet"),
  27426. name: "Right Hand (Back)",
  27427. image: {
  27428. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27429. }
  27430. },
  27431. rightHandFront: {
  27432. height: math.unit(0.95, "feet"),
  27433. name: "Right Hand (Front)",
  27434. image: {
  27435. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27436. }
  27437. },
  27438. },
  27439. [
  27440. {
  27441. name: "Normal",
  27442. height: math.unit(6 + 4 / 12, "feet"),
  27443. default: true
  27444. },
  27445. ]
  27446. ))
  27447. characterMakers.push(() => makeCharacter(
  27448. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27449. {
  27450. front: {
  27451. height: math.unit(6, "feet"),
  27452. weight: math.unit(320, "lb"),
  27453. name: "Front",
  27454. image: {
  27455. source: "./media/characters/balina-mejeri/front.svg",
  27456. extra: 517 / 488,
  27457. bottom: 44.2 / 561
  27458. }
  27459. },
  27460. },
  27461. [
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(6 + 4 / 12, "feet")
  27465. },
  27466. {
  27467. name: "Business",
  27468. height: math.unit(155, "feet"),
  27469. default: true
  27470. },
  27471. ]
  27472. ))
  27473. characterMakers.push(() => makeCharacter(
  27474. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27475. {
  27476. kneeling: {
  27477. height: math.unit(6 + 4 / 12, "feet"),
  27478. weight: math.unit(300 * 20, "lb"),
  27479. name: "Kneeling",
  27480. image: {
  27481. source: "./media/characters/balbarian/kneeling.svg",
  27482. extra: 922 / 862,
  27483. bottom: 42.4 / 965
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Normal",
  27490. height: math.unit(6 + 4 / 12, "feet")
  27491. },
  27492. {
  27493. name: "Treasured",
  27494. height: math.unit(18 + 9 / 12, "feet"),
  27495. default: true
  27496. },
  27497. {
  27498. name: "Macro",
  27499. height: math.unit(900, "feet")
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(6 + 4 / 12, "feet"),
  27508. weight: math.unit(325, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/balina-amarini/front.svg",
  27512. extra: 415 / 403,
  27513. bottom: 19 / 433.4
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(6 + 4 / 12, "feet"),
  27518. weight: math.unit(325, "lb"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/balina-amarini/back.svg",
  27522. extra: 415 / 403,
  27523. bottom: 13.5 / 432
  27524. }
  27525. },
  27526. overdrive: {
  27527. height: math.unit(6 + 4 / 12, "feet"),
  27528. weight: math.unit(400, "lb"),
  27529. name: "Overdrive",
  27530. image: {
  27531. source: "./media/characters/balina-amarini/overdrive.svg",
  27532. extra: 269 / 259,
  27533. bottom: 12 / 282
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Boom",
  27540. height: math.unit(9 + 10 / 12, "feet"),
  27541. default: true
  27542. },
  27543. {
  27544. name: "Macro",
  27545. height: math.unit(280, "feet")
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27551. {
  27552. goddess: {
  27553. height: math.unit(600, "feet"),
  27554. weight: math.unit(2000000, "tons"),
  27555. name: "Goddess",
  27556. image: {
  27557. source: "./media/characters/lady-kubwa/goddess.svg",
  27558. extra: 1240.5 / 1223,
  27559. bottom: 22 / 1263
  27560. }
  27561. },
  27562. goddesser: {
  27563. height: math.unit(900, "feet"),
  27564. weight: math.unit(20000000, "lb"),
  27565. name: "Goddess-er",
  27566. image: {
  27567. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27568. extra: 899 / 888,
  27569. bottom: 12.6 / 912
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Macro",
  27576. height: math.unit(600, "feet"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Megamacro",
  27581. height: math.unit(250, "miles")
  27582. },
  27583. ]
  27584. ))
  27585. characterMakers.push(() => makeCharacter(
  27586. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27587. {
  27588. front: {
  27589. height: math.unit(7 + 7 / 12, "feet"),
  27590. weight: math.unit(250, "lb"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/tala-grovehorn/front.svg",
  27594. extra: 2636 / 2525,
  27595. bottom: 147 / 2781
  27596. }
  27597. },
  27598. back: {
  27599. height: math.unit(7 + 7 / 12, "feet"),
  27600. weight: math.unit(250, "lb"),
  27601. name: "Back",
  27602. image: {
  27603. source: "./media/characters/tala-grovehorn/back.svg",
  27604. extra: 2635 / 2539,
  27605. bottom: 100 / 2732.8
  27606. }
  27607. },
  27608. mouth: {
  27609. height: math.unit(1.15, "feet"),
  27610. name: "Mouth",
  27611. image: {
  27612. source: "./media/characters/tala-grovehorn/mouth.svg"
  27613. }
  27614. },
  27615. dick: {
  27616. height: math.unit(2.36, "feet"),
  27617. name: "Dick",
  27618. image: {
  27619. source: "./media/characters/tala-grovehorn/dick.svg"
  27620. }
  27621. },
  27622. slit: {
  27623. height: math.unit(0.61, "feet"),
  27624. name: "Slit",
  27625. image: {
  27626. source: "./media/characters/tala-grovehorn/slit.svg"
  27627. }
  27628. },
  27629. },
  27630. [
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(7 + 7 / 12, "feet"),
  27638. weight: math.unit(225, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/epona/front.svg",
  27642. extra: 2445 / 2290,
  27643. bottom: 251 / 2696
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(7 + 7 / 12, "feet"),
  27648. weight: math.unit(225, "lb"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/epona/back.svg",
  27652. extra: 2546 / 2408,
  27653. bottom: 44 / 2589
  27654. }
  27655. },
  27656. genitals: {
  27657. height: math.unit(1.5, "feet"),
  27658. name: "Genitals",
  27659. image: {
  27660. source: "./media/characters/epona/genitals.svg"
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Normal",
  27667. height: math.unit(7 + 7 / 12, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(7, "feet"),
  27677. weight: math.unit(518, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/avia-bloodbourn/front.svg",
  27681. extra: 1466 / 1350,
  27682. bottom: 65 / 1527
  27683. }
  27684. },
  27685. },
  27686. [
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27691. {
  27692. front: {
  27693. height: math.unit(9.35, "feet"),
  27694. weight: math.unit(600, "lb"),
  27695. name: "Front",
  27696. image: {
  27697. source: "./media/characters/amera/front.svg",
  27698. extra: 891 / 818,
  27699. bottom: 30 / 922.7
  27700. }
  27701. },
  27702. back: {
  27703. height: math.unit(9.35, "feet"),
  27704. weight: math.unit(600, "lb"),
  27705. name: "Back",
  27706. image: {
  27707. source: "./media/characters/amera/back.svg",
  27708. extra: 876 / 824,
  27709. bottom: 6.8 / 884
  27710. }
  27711. },
  27712. dick: {
  27713. height: math.unit(2.14, "feet"),
  27714. name: "Dick",
  27715. image: {
  27716. source: "./media/characters/amera/dick.svg"
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(9.35, "feet"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27730. {
  27731. kneeling: {
  27732. height: math.unit(3 + 4 / 12, "feet"),
  27733. weight: math.unit(90, "lb"),
  27734. name: "Kneeling",
  27735. image: {
  27736. source: "./media/characters/rosewen/kneeling.svg",
  27737. extra: 1835 / 1571,
  27738. bottom: 27.7 / 1862
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Normal",
  27745. height: math.unit(3 + 4 / 12, "feet"),
  27746. default: true
  27747. },
  27748. ]
  27749. ))
  27750. characterMakers.push(() => makeCharacter(
  27751. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27752. {
  27753. front: {
  27754. height: math.unit(5 + 10 / 12, "feet"),
  27755. weight: math.unit(200, "lb"),
  27756. name: "Front",
  27757. image: {
  27758. source: "./media/characters/sabah/front.svg",
  27759. extra: 849 / 763,
  27760. bottom: 33.9 / 881
  27761. }
  27762. },
  27763. },
  27764. [
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(5 + 10 / 12, "feet"),
  27768. default: true
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27774. {
  27775. front: {
  27776. height: math.unit(3 + 5 / 12, "feet"),
  27777. weight: math.unit(40, "kg"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/purple-flame/front.svg",
  27781. extra: 1577 / 1412,
  27782. bottom: 97 / 1694
  27783. }
  27784. },
  27785. frontDressed: {
  27786. height: math.unit(3 + 5 / 12, "feet"),
  27787. weight: math.unit(40, "kg"),
  27788. name: "Front (Dressed)",
  27789. image: {
  27790. source: "./media/characters/purple-flame/front-dressed.svg",
  27791. extra: 1577 / 1412,
  27792. bottom: 97 / 1694
  27793. }
  27794. },
  27795. headphones: {
  27796. height: math.unit(0.85, "feet"),
  27797. name: "Headphones",
  27798. image: {
  27799. source: "./media/characters/purple-flame/headphones.svg"
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Really Small",
  27806. height: math.unit(5, "cm")
  27807. },
  27808. {
  27809. name: "Micro",
  27810. height: math.unit(1 + 5 / 12, "feet")
  27811. },
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(3 + 5 / 12, "feet"),
  27815. default: true
  27816. },
  27817. {
  27818. name: "Minimacro",
  27819. height: math.unit(125, "feet")
  27820. },
  27821. {
  27822. name: "Macro",
  27823. height: math.unit(0.5, "miles")
  27824. },
  27825. {
  27826. name: "Megamacro",
  27827. height: math.unit(50, "miles")
  27828. },
  27829. {
  27830. name: "Gigantic",
  27831. height: math.unit(750, "miles")
  27832. },
  27833. {
  27834. name: "Planetary",
  27835. height: math.unit(15000, "miles")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(14, "feet"),
  27844. weight: math.unit(959, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/arsenal/front.svg",
  27848. extra: 2357 / 2157,
  27849. bottom: 93 / 2458
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(14, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(6, "feet"),
  27866. weight: math.unit(150, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/adira/front.svg",
  27870. extra: 1078 / 1029,
  27871. bottom: 87 / 1166
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Micro",
  27878. height: math.unit(4, "inches"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Macro",
  27883. height: math.unit(50, "feet")
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(16, "feet"),
  27892. weight: math.unit(1000, "lb"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/grim/front.svg",
  27896. extra: 622 / 614,
  27897. bottom: 18.1 / 642
  27898. }
  27899. },
  27900. back: {
  27901. height: math.unit(16, "feet"),
  27902. weight: math.unit(1000, "lb"),
  27903. name: "Back",
  27904. image: {
  27905. source: "./media/characters/grim/back.svg",
  27906. extra: 610.6 / 602,
  27907. bottom: 40.8 / 652
  27908. }
  27909. },
  27910. hunched: {
  27911. height: math.unit(9.75, "feet"),
  27912. weight: math.unit(1000, "lb"),
  27913. name: "Hunched",
  27914. image: {
  27915. source: "./media/characters/grim/hunched.svg",
  27916. extra: 304 / 297,
  27917. bottom: 35.4 / 394
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(16, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(2.3, "meters"),
  27934. weight: math.unit(300, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/sinja/front-sfw.svg",
  27938. extra: 1393 / 1294,
  27939. bottom: 70 / 1463
  27940. }
  27941. },
  27942. frontNsfw: {
  27943. height: math.unit(2.3, "meters"),
  27944. weight: math.unit(300, "lb"),
  27945. name: "Front (NSFW)",
  27946. image: {
  27947. source: "./media/characters/sinja/front-nsfw.svg",
  27948. extra: 1393 / 1294,
  27949. bottom: 70 / 1463
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(2.3, "meters"),
  27954. weight: math.unit(300, "lb"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/sinja/back.svg",
  27958. extra: 1393 / 1294,
  27959. bottom: 70 / 1463
  27960. }
  27961. },
  27962. head: {
  27963. height: math.unit(1.771, "feet"),
  27964. name: "Head",
  27965. image: {
  27966. source: "./media/characters/sinja/head.svg"
  27967. }
  27968. },
  27969. slit: {
  27970. height: math.unit(0.8, "feet"),
  27971. name: "Slit",
  27972. image: {
  27973. source: "./media/characters/sinja/slit.svg"
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Normal",
  27980. height: math.unit(2.3, "meters")
  27981. },
  27982. {
  27983. name: "Macro",
  27984. height: math.unit(91, "meters"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Megamacro",
  27989. height: math.unit(91440, "meters")
  27990. },
  27991. {
  27992. name: "Gigamacro",
  27993. height: math.unit(60960000, "meters")
  27994. },
  27995. {
  27996. name: "Teramacro",
  27997. height: math.unit(9144000000, "meters")
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28003. {
  28004. front: {
  28005. height: math.unit(1.7, "meters"),
  28006. weight: math.unit(130, "lb"),
  28007. name: "Front",
  28008. image: {
  28009. source: "./media/characters/kyu/front.svg",
  28010. extra: 415 / 395,
  28011. bottom: 5 / 420
  28012. }
  28013. },
  28014. head: {
  28015. height: math.unit(1.75, "feet"),
  28016. name: "Head",
  28017. image: {
  28018. source: "./media/characters/kyu/head.svg"
  28019. }
  28020. },
  28021. foot: {
  28022. height: math.unit(0.81, "feet"),
  28023. name: "Foot",
  28024. image: {
  28025. source: "./media/characters/kyu/foot.svg"
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(1.7, "meters")
  28033. },
  28034. {
  28035. name: "Macro",
  28036. height: math.unit(131, "feet"),
  28037. default: true
  28038. },
  28039. {
  28040. name: "Megamacro",
  28041. height: math.unit(91440, "meters")
  28042. },
  28043. {
  28044. name: "Gigamacro",
  28045. height: math.unit(60960000, "meters")
  28046. },
  28047. {
  28048. name: "Teramacro",
  28049. height: math.unit(9144000000, "meters")
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(7 + 1 / 12, "feet"),
  28058. weight: math.unit(250, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/joey/front.svg",
  28062. extra: 1791 / 1537,
  28063. bottom: 28 / 1816
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Micro",
  28070. height: math.unit(3, "inches")
  28071. },
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(7 + 1 / 12, "feet"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(165, "cm"),
  28084. weight: math.unit(140, "lb"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/sam-evans/front.svg",
  28088. extra: 3417 / 3230,
  28089. bottom: 41.3 / 3417
  28090. }
  28091. },
  28092. frontSixTails: {
  28093. height: math.unit(165, "cm"),
  28094. weight: math.unit(140, "lb"),
  28095. name: "Front-six-tails",
  28096. image: {
  28097. source: "./media/characters/sam-evans/front-six-tails.svg",
  28098. extra: 3417 / 3230,
  28099. bottom: 41.3 / 3417
  28100. }
  28101. },
  28102. back: {
  28103. height: math.unit(165, "cm"),
  28104. weight: math.unit(140, "lb"),
  28105. name: "Back",
  28106. image: {
  28107. source: "./media/characters/sam-evans/back.svg",
  28108. extra: 3227 / 3032,
  28109. bottom: 6.8 / 3234
  28110. }
  28111. },
  28112. face: {
  28113. height: math.unit(0.68, "feet"),
  28114. name: "Face",
  28115. image: {
  28116. source: "./media/characters/sam-evans/face.svg"
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(165, "cm"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(100, "meters")
  28129. },
  28130. {
  28131. name: "Macro+",
  28132. height: math.unit(800, "meters")
  28133. },
  28134. {
  28135. name: "Macro++",
  28136. height: math.unit(3, "km")
  28137. },
  28138. {
  28139. name: "Macro+++",
  28140. height: math.unit(30, "km")
  28141. },
  28142. ]
  28143. ))
  28144. characterMakers.push(() => makeCharacter(
  28145. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28146. {
  28147. front: {
  28148. height: math.unit(10, "feet"),
  28149. weight: math.unit(750, "lb"),
  28150. name: "Front",
  28151. image: {
  28152. source: "./media/characters/juliet-a/front.svg",
  28153. extra: 1766 / 1720,
  28154. bottom: 43 / 1809
  28155. }
  28156. },
  28157. back: {
  28158. height: math.unit(10, "feet"),
  28159. weight: math.unit(750, "lb"),
  28160. name: "Back",
  28161. image: {
  28162. source: "./media/characters/juliet-a/back.svg",
  28163. extra: 1781 / 1734,
  28164. bottom: 35 / 1810,
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(10, "feet"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Dragon Form",
  28176. height: math.unit(250, "feet")
  28177. },
  28178. {
  28179. name: "Macro",
  28180. height: math.unit(1000, "feet")
  28181. },
  28182. {
  28183. name: "Megamacro",
  28184. height: math.unit(10000, "feet")
  28185. }
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28190. {
  28191. regular: {
  28192. height: math.unit(7 + 3 / 12, "feet"),
  28193. weight: math.unit(260, "lb"),
  28194. name: "Regular",
  28195. image: {
  28196. source: "./media/characters/wild/regular.svg",
  28197. extra: 97.45 / 92,
  28198. bottom: 6.8 / 104.3
  28199. }
  28200. },
  28201. biggums: {
  28202. height: math.unit(8 + 6 / 12, "feet"),
  28203. weight: math.unit(425, "lb"),
  28204. name: "Biggums",
  28205. image: {
  28206. source: "./media/characters/wild/biggums.svg",
  28207. extra: 97.45 / 92,
  28208. bottom: 7.5 / 132.34
  28209. }
  28210. },
  28211. mawRegular: {
  28212. height: math.unit(1.24, "feet"),
  28213. name: "Maw (Regular)",
  28214. image: {
  28215. source: "./media/characters/wild/maw.svg"
  28216. }
  28217. },
  28218. mawBiggums: {
  28219. height: math.unit(1.47, "feet"),
  28220. name: "Maw (Biggums)",
  28221. image: {
  28222. source: "./media/characters/wild/maw.svg"
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(7 + 3 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28236. {
  28237. front: {
  28238. height: math.unit(2.5, "meters"),
  28239. weight: math.unit(200, "kg"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/vidar/front.svg",
  28243. extra: 2994 / 2795,
  28244. bottom: 56 / 3061
  28245. }
  28246. },
  28247. back: {
  28248. height: math.unit(2.5, "meters"),
  28249. weight: math.unit(200, "kg"),
  28250. name: "Back",
  28251. image: {
  28252. source: "./media/characters/vidar/back.svg",
  28253. extra: 3131 / 2928,
  28254. bottom: 13.5 / 3141.5
  28255. }
  28256. },
  28257. feral: {
  28258. height: math.unit(2.5, "meters"),
  28259. weight: math.unit(2000, "kg"),
  28260. name: "Feral",
  28261. image: {
  28262. source: "./media/characters/vidar/feral.svg",
  28263. extra: 2790 / 1765,
  28264. bottom: 6 / 2796
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Normal",
  28271. height: math.unit(2.5, "meters"),
  28272. default: true
  28273. },
  28274. {
  28275. name: "Macro",
  28276. height: math.unit(100, "meters")
  28277. },
  28278. ]
  28279. ))
  28280. characterMakers.push(() => makeCharacter(
  28281. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28282. {
  28283. front: {
  28284. height: math.unit(5 + 9 / 12, "feet"),
  28285. weight: math.unit(120, "lb"),
  28286. name: "Front",
  28287. image: {
  28288. source: "./media/characters/ash/front.svg",
  28289. extra: 2189 / 1961,
  28290. bottom: 5.2 / 2194
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(5 + 9 / 12, "feet"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28304. {
  28305. front: {
  28306. height: math.unit(9, "feet"),
  28307. weight: math.unit(10000, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/gygabite/front.svg",
  28311. bottom: 31.7 / 537.8,
  28312. extra: 505 / 370
  28313. }
  28314. },
  28315. },
  28316. [
  28317. {
  28318. name: "Normal",
  28319. height: math.unit(9, "feet"),
  28320. default: true
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(12, "feet"),
  28329. weight: math.unit(35000, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/p0tat0/front.svg",
  28333. extra: 1065 / 921,
  28334. bottom: 55.7 / 1121.25
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(12, "feet"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28348. {
  28349. side: {
  28350. height: math.unit(6.5, "feet"),
  28351. weight: math.unit(800, "lb"),
  28352. name: "Side",
  28353. image: {
  28354. source: "./media/characters/dusk/side.svg",
  28355. extra: 615 / 373,
  28356. bottom: 53 / 664
  28357. }
  28358. },
  28359. sitting: {
  28360. height: math.unit(7, "feet"),
  28361. weight: math.unit(800, "lb"),
  28362. name: "Sitting",
  28363. image: {
  28364. source: "./media/characters/dusk/sitting.svg",
  28365. extra: 753 / 425,
  28366. bottom: 33 / 774
  28367. }
  28368. },
  28369. head: {
  28370. height: math.unit(6.1, "feet"),
  28371. name: "Head",
  28372. image: {
  28373. source: "./media/characters/dusk/head.svg"
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(7, "feet"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28387. {
  28388. front: {
  28389. height: math.unit(15, "feet"),
  28390. weight: math.unit(7000, "lb"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/jay-direwolf/front.svg",
  28394. extra: 1810 / 1732,
  28395. bottom: 66 / 1892
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(15, "feet"),
  28403. default: true
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(4 + 9 / 12, "feet"),
  28412. weight: math.unit(130, "lb"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/anchovie/front.svg",
  28416. extra: 382 / 350,
  28417. bottom: 25 / 409
  28418. }
  28419. },
  28420. back: {
  28421. height: math.unit(4 + 9 / 12, "feet"),
  28422. weight: math.unit(130, "lb"),
  28423. name: "Back",
  28424. image: {
  28425. source: "./media/characters/anchovie/back.svg",
  28426. extra: 385 / 352,
  28427. bottom: 16.6 / 402
  28428. }
  28429. },
  28430. frontDressed: {
  28431. height: math.unit(4 + 9 / 12, "feet"),
  28432. weight: math.unit(130, "lb"),
  28433. name: "Front (Dressed)",
  28434. image: {
  28435. source: "./media/characters/anchovie/front-dressed.svg",
  28436. extra: 382 / 350,
  28437. bottom: 25 / 409
  28438. }
  28439. },
  28440. backDressed: {
  28441. height: math.unit(4 + 9 / 12, "feet"),
  28442. weight: math.unit(130, "lb"),
  28443. name: "Back (Dressed)",
  28444. image: {
  28445. source: "./media/characters/anchovie/back-dressed.svg",
  28446. extra: 385 / 352,
  28447. bottom: 16.6 / 402
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Micro",
  28454. height: math.unit(6.4, "inches")
  28455. },
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(4 + 9 / 12, "feet"),
  28459. default: true
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(2, "meters"),
  28468. weight: math.unit(180, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/acidrenamon/front.svg",
  28472. extra: 987 / 890,
  28473. bottom: 22.8 / 1009
  28474. }
  28475. },
  28476. back: {
  28477. height: math.unit(2, "meters"),
  28478. weight: math.unit(180, "lb"),
  28479. name: "Back",
  28480. image: {
  28481. source: "./media/characters/acidrenamon/back.svg",
  28482. extra: 983 / 891,
  28483. bottom: 8.4 / 992
  28484. }
  28485. },
  28486. head: {
  28487. height: math.unit(1.92, "feet"),
  28488. name: "Head",
  28489. image: {
  28490. source: "./media/characters/acidrenamon/head.svg"
  28491. }
  28492. },
  28493. rump: {
  28494. height: math.unit(1.72, "feet"),
  28495. name: "Rump",
  28496. image: {
  28497. source: "./media/characters/acidrenamon/rump.svg"
  28498. }
  28499. },
  28500. tail: {
  28501. height: math.unit(4.2, "feet"),
  28502. name: "Tail",
  28503. image: {
  28504. source: "./media/characters/acidrenamon/tail.svg"
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(2, "meters"),
  28512. default: true
  28513. },
  28514. {
  28515. name: "Minimacro",
  28516. height: math.unit(7, "meters")
  28517. },
  28518. {
  28519. name: "Macro",
  28520. height: math.unit(200, "meters")
  28521. },
  28522. {
  28523. name: "Gigamacro",
  28524. height: math.unit(0.2, "earths")
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28530. {
  28531. front: {
  28532. height: math.unit(152, "feet"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/kenzie-lee/front.svg",
  28536. extra: 1869/1774,
  28537. bottom: 128/1997
  28538. }
  28539. },
  28540. side: {
  28541. height: math.unit(86, "feet"),
  28542. name: "Side",
  28543. image: {
  28544. source: "./media/characters/kenzie-lee/side.svg",
  28545. extra: 930/815,
  28546. bottom: 177/1107
  28547. }
  28548. },
  28549. paw: {
  28550. height: math.unit(15, "feet"),
  28551. name: "Paw",
  28552. image: {
  28553. source: "./media/characters/kenzie-lee/paw.svg"
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Kenzie Flea",
  28560. height: math.unit(2, "mm"),
  28561. default: true
  28562. },
  28563. {
  28564. name: "Micro",
  28565. height: math.unit(2, "inches")
  28566. },
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(152, "feet")
  28570. },
  28571. {
  28572. name: "Megamacro",
  28573. height: math.unit(7, "miles")
  28574. },
  28575. {
  28576. name: "Gigamacro",
  28577. height: math.unit(8000, "miles")
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(6, "feet"),
  28586. name: "Front",
  28587. image: {
  28588. source: "./media/characters/withers/front.svg",
  28589. extra: 1935/1760,
  28590. bottom: 72/2007
  28591. }
  28592. },
  28593. back: {
  28594. height: math.unit(6, "feet"),
  28595. name: "Back",
  28596. image: {
  28597. source: "./media/characters/withers/back.svg",
  28598. extra: 1944/1792,
  28599. bottom: 12/1956
  28600. }
  28601. },
  28602. dressed: {
  28603. height: math.unit(6, "feet"),
  28604. name: "Dressed",
  28605. image: {
  28606. source: "./media/characters/withers/dressed.svg",
  28607. extra: 1937/1765,
  28608. bottom: 73/2010
  28609. }
  28610. },
  28611. phase1: {
  28612. height: math.unit(1.1, "feet"),
  28613. name: "Phase 1",
  28614. image: {
  28615. source: "./media/characters/withers/phase-1.svg",
  28616. extra: 1885/1232,
  28617. bottom: 0/1885
  28618. }
  28619. },
  28620. phase2: {
  28621. height: math.unit(1.05, "feet"),
  28622. name: "Phase 2",
  28623. image: {
  28624. source: "./media/characters/withers/phase-2.svg",
  28625. extra: 1792/1090,
  28626. bottom: 0/1792
  28627. }
  28628. },
  28629. partyWipe: {
  28630. height: math.unit(1.1, "feet"),
  28631. name: "Party Wipe",
  28632. image: {
  28633. source: "./media/characters/withers/party-wipe.svg",
  28634. extra: 1864/1207,
  28635. bottom: 0/1864
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Macro",
  28642. height: math.unit(167, "feet"),
  28643. default: true
  28644. },
  28645. {
  28646. name: "Megamacro",
  28647. height: math.unit(15, "miles")
  28648. }
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(6 + 7 / 12, "feet"),
  28656. weight: math.unit(250, "lb"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/nemoskii/front.svg",
  28660. extra: 2270 / 1734,
  28661. bottom: 86 / 2354
  28662. }
  28663. },
  28664. back: {
  28665. height: math.unit(6 + 7 / 12, "feet"),
  28666. weight: math.unit(250, "lb"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/nemoskii/back.svg",
  28670. extra: 1845 / 1788,
  28671. bottom: 10.5 / 1852
  28672. }
  28673. },
  28674. head: {
  28675. height: math.unit(1.31, "feet"),
  28676. name: "Head",
  28677. image: {
  28678. source: "./media/characters/nemoskii/head.svg"
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Micro",
  28685. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28686. },
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(6 + 7 / 12, "feet"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Macro",
  28694. height: math.unit((6 + 7 / 12) * 150, "feet")
  28695. },
  28696. {
  28697. name: "Macro+",
  28698. height: math.unit((6 + 7 / 12) * 500, "feet")
  28699. },
  28700. {
  28701. name: "Megamacro",
  28702. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(1, "mile"),
  28711. weight: math.unit(265261.9, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/shui/front.svg",
  28715. extra: 1633 / 1564,
  28716. bottom: 91.5 / 1726
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(1, "mile"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(12 + 6 / 12, "feet"),
  28733. weight: math.unit(1342, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/arokh-takakura/front.svg",
  28737. extra: 1089 / 1043,
  28738. bottom: 77.4 / 1176.7
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(12 + 6 / 12, "feet"),
  28743. weight: math.unit(1342, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/arokh-takakura/back.svg",
  28747. extra: 1046 / 1019,
  28748. bottom: 102 / 1150
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Big",
  28755. height: math.unit(12 + 6 / 12, "feet"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(5 + 6 / 12, "feet"),
  28765. weight: math.unit(150, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/theo/front.svg",
  28769. extra: 1184 / 1131,
  28770. bottom: 7.4 / 1191
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Micro",
  28777. height: math.unit(5, "inches")
  28778. },
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(5 + 6 / 12, "feet"),
  28782. default: true
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(5 + 9 / 12, "feet"),
  28791. weight: math.unit(130, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/cecelia-swift/front.svg",
  28795. extra: 502 / 484,
  28796. bottom: 23 / 523
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(5 + 9 / 12, "feet"),
  28801. weight: math.unit(130, "lb"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/cecelia-swift/back.svg",
  28805. extra: 499 / 485,
  28806. bottom: 12 / 511
  28807. }
  28808. },
  28809. head: {
  28810. height: math.unit(0.90, "feet"),
  28811. name: "Head",
  28812. image: {
  28813. source: "./media/characters/cecelia-swift/head.svg"
  28814. }
  28815. },
  28816. rump: {
  28817. height: math.unit(1.75, "feet"),
  28818. name: "Rump",
  28819. image: {
  28820. source: "./media/characters/cecelia-swift/rump.svg"
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(5 + 9 / 12, "feet"),
  28828. default: true
  28829. },
  28830. {
  28831. name: "Big",
  28832. height: math.unit(50, "feet")
  28833. },
  28834. {
  28835. name: "Macro",
  28836. height: math.unit(100, "feet")
  28837. },
  28838. {
  28839. name: "Macro+",
  28840. height: math.unit(500, "feet")
  28841. },
  28842. {
  28843. name: "Macro++",
  28844. height: math.unit(1000, "feet")
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(150, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/kaunan/front.svg",
  28857. extra: 2890 / 2523,
  28858. bottom: 49 / 2939
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Macro",
  28865. height: math.unit(150, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(175, "cm"),
  28875. weight: math.unit(60, "kg"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/fei/front.svg",
  28879. extra: 1873/1723,
  28880. bottom: 53/1926
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Mortal",
  28887. height: math.unit(175, "cm")
  28888. },
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(3500, "m"),
  28892. default: true
  28893. },
  28894. {
  28895. name: "Stroll",
  28896. height: math.unit(17.5, "km")
  28897. },
  28898. {
  28899. name: "Showoff",
  28900. height: math.unit(175, "km")
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(7, "feet"),
  28909. weight: math.unit(1000, "kg"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/edrax/front.svg",
  28913. extra: 2838 / 2550,
  28914. bottom: 130 / 2968
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Small",
  28921. height: math.unit(7, "feet")
  28922. },
  28923. {
  28924. name: "Normal",
  28925. height: math.unit(1500, "meters")
  28926. },
  28927. {
  28928. name: "Mega",
  28929. height: math.unit(12000000, "km"),
  28930. default: true
  28931. },
  28932. {
  28933. name: "Megamacro",
  28934. height: math.unit(10600000, "lightyears")
  28935. },
  28936. {
  28937. name: "Hypermacro",
  28938. height: math.unit(256, "yottameters")
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(10, "feet"),
  28947. weight: math.unit(750, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/clove/front.svg",
  28951. extra: 1918/1751,
  28952. bottom: 52/1970
  28953. }
  28954. },
  28955. back: {
  28956. height: math.unit(10, "feet"),
  28957. weight: math.unit(750, "lb"),
  28958. name: "Back",
  28959. image: {
  28960. source: "./media/characters/clove/back.svg",
  28961. extra: 1912/1747,
  28962. bottom: 50/1962
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(10, "feet"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(4, "feet"),
  28979. weight: math.unit(50, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/alex-rabbit/front.svg",
  28983. extra: 507 / 458,
  28984. bottom: 18.5 / 527
  28985. }
  28986. },
  28987. back: {
  28988. height: math.unit(4, "feet"),
  28989. weight: math.unit(50, "lb"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/alex-rabbit/back.svg",
  28993. extra: 502 / 460,
  28994. bottom: 18.9 / 521
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(4, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(1 + 3 / 12, "feet"),
  29011. weight: math.unit(80, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/zander-rose/front.svg",
  29015. extra: 916 / 797,
  29016. bottom: 17 / 933
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(1 + 3 / 12, "feet"),
  29021. weight: math.unit(80, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/zander-rose/back.svg",
  29025. extra: 903 / 779,
  29026. bottom: 31 / 934
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(1 + 3 / 12, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29040. {
  29041. anthro: {
  29042. height: math.unit(6, "feet"),
  29043. weight: math.unit(150, "lb"),
  29044. name: "Anthro",
  29045. image: {
  29046. source: "./media/characters/razz/anthro.svg",
  29047. extra: 1437 / 1343,
  29048. bottom: 48 / 1485
  29049. }
  29050. },
  29051. feral: {
  29052. height: math.unit(6, "feet"),
  29053. weight: math.unit(150, "lb"),
  29054. name: "Feral",
  29055. image: {
  29056. source: "./media/characters/razz/feral.svg",
  29057. extra: 2569 / 1385,
  29058. bottom: 95 / 2664
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(6, "feet"),
  29066. default: true
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(9 + 4 / 12, "feet"),
  29075. weight: math.unit(500, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/morrigan/front.svg",
  29079. extra: 2707 / 2579,
  29080. bottom: 156 / 2863
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(9 + 4 / 12, "feet"),
  29088. default: true
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(5, "stories"),
  29097. weight: math.unit(4000, "lb"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/jenene/front.svg",
  29101. extra: 1780 / 1710,
  29102. bottom: 57 / 1837
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(5, "stories"),
  29110. default: true
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29116. {
  29117. taurSfw: {
  29118. height: math.unit(10, "meters"),
  29119. weight: math.unit(17500, "kg"),
  29120. name: "Taur",
  29121. image: {
  29122. source: "./media/characters/faey/taur-sfw.svg",
  29123. extra: 1200 / 968,
  29124. bottom: 41 / 1241
  29125. }
  29126. },
  29127. chestmaw: {
  29128. height: math.unit(2.01, "meters"),
  29129. name: "Chestmaw",
  29130. image: {
  29131. source: "./media/characters/faey/chestmaw.svg"
  29132. }
  29133. },
  29134. foot: {
  29135. height: math.unit(2.43, "meters"),
  29136. name: "Foot",
  29137. image: {
  29138. source: "./media/characters/faey/foot.svg"
  29139. }
  29140. },
  29141. jaws: {
  29142. height: math.unit(1.66, "meters"),
  29143. name: "Jaws",
  29144. image: {
  29145. source: "./media/characters/faey/jaws.svg"
  29146. }
  29147. },
  29148. tongues: {
  29149. height: math.unit(2.01, "meters"),
  29150. name: "Tongues",
  29151. image: {
  29152. source: "./media/characters/faey/tongues.svg"
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Small",
  29159. height: math.unit(10, "meters"),
  29160. default: true
  29161. },
  29162. {
  29163. name: "Big",
  29164. height: math.unit(500000, "km")
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(7, "feet"),
  29173. weight: math.unit(275, "lb"),
  29174. name: "Front",
  29175. image: {
  29176. source: "./media/characters/roku/front.svg",
  29177. extra: 903 / 878,
  29178. bottom: 37 / 940
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(7, "feet"),
  29186. default: true
  29187. },
  29188. {
  29189. name: "Macro",
  29190. height: math.unit(500, "feet")
  29191. },
  29192. {
  29193. name: "Megamacro",
  29194. height: math.unit(200, "miles")
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(6 + 2 / 12, "feet"),
  29203. weight: math.unit(150, "lb"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/lira/front.svg",
  29207. extra: 1727 / 1605,
  29208. bottom: 26 / 1753
  29209. }
  29210. },
  29211. back: {
  29212. height: math.unit(6 + 2 / 12, "feet"),
  29213. weight: math.unit(150, "lb"),
  29214. name: "Back",
  29215. image: {
  29216. source: "./media/characters/lira/back.svg",
  29217. extra: 1713/1621,
  29218. bottom: 20/1733
  29219. }
  29220. },
  29221. hand: {
  29222. height: math.unit(0.75, "feet"),
  29223. name: "Hand",
  29224. image: {
  29225. source: "./media/characters/lira/hand.svg"
  29226. }
  29227. },
  29228. maw: {
  29229. height: math.unit(0.65, "feet"),
  29230. name: "Maw",
  29231. image: {
  29232. source: "./media/characters/lira/maw.svg"
  29233. }
  29234. },
  29235. pawDigi: {
  29236. height: math.unit(1.6, "feet"),
  29237. name: "Paw Digi",
  29238. image: {
  29239. source: "./media/characters/lira/paw-digi.svg"
  29240. }
  29241. },
  29242. pawPlanti: {
  29243. height: math.unit(1.4, "feet"),
  29244. name: "Paw Planti",
  29245. image: {
  29246. source: "./media/characters/lira/paw-planti.svg"
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(6 + 2 / 12, "feet"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Macro",
  29258. height: math.unit(100, "feet")
  29259. },
  29260. {
  29261. name: "Macro²",
  29262. height: math.unit(1600, "feet")
  29263. },
  29264. {
  29265. name: "Planetary",
  29266. height: math.unit(20, "earths")
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(6, "feet"),
  29275. weight: math.unit(150, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/hadjet/front.svg",
  29279. extra: 1480 / 1346,
  29280. bottom: 26 / 1506
  29281. }
  29282. },
  29283. frontNsfw: {
  29284. height: math.unit(6, "feet"),
  29285. weight: math.unit(150, "lb"),
  29286. name: "Front (NSFW)",
  29287. image: {
  29288. source: "./media/characters/hadjet/front-nsfw.svg",
  29289. extra: 1440 / 1358,
  29290. bottom: 52 / 1492
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(10, "stories"),
  29298. default: true
  29299. },
  29300. {
  29301. name: "Megamacro",
  29302. height: math.unit(1.5, "miles")
  29303. },
  29304. {
  29305. name: "Megamacro+",
  29306. height: math.unit(5, "miles")
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29312. {
  29313. side: {
  29314. height: math.unit(106, "feet"),
  29315. weight: math.unit(500, "tonnes"),
  29316. name: "Side",
  29317. image: {
  29318. source: "./media/characters/kodran/side.svg",
  29319. extra: 553 / 480,
  29320. bottom: 33 / 586
  29321. }
  29322. },
  29323. front: {
  29324. height: math.unit(132, "feet"),
  29325. weight: math.unit(500, "tonnes"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/kodran/front.svg",
  29329. extra: 667 / 643,
  29330. bottom: 42 / 709
  29331. }
  29332. },
  29333. flying: {
  29334. height: math.unit(350, "feet"),
  29335. weight: math.unit(500, "tonnes"),
  29336. name: "Flying",
  29337. image: {
  29338. source: "./media/characters/kodran/flying.svg"
  29339. }
  29340. },
  29341. foot: {
  29342. height: math.unit(33, "feet"),
  29343. name: "Foot",
  29344. image: {
  29345. source: "./media/characters/kodran/foot.svg"
  29346. }
  29347. },
  29348. footFront: {
  29349. height: math.unit(19, "feet"),
  29350. name: "Foot (Front)",
  29351. image: {
  29352. source: "./media/characters/kodran/foot-front.svg",
  29353. extra: 261 / 261,
  29354. bottom: 91 / 352
  29355. }
  29356. },
  29357. headFront: {
  29358. height: math.unit(53, "feet"),
  29359. name: "Head (Front)",
  29360. image: {
  29361. source: "./media/characters/kodran/head-front.svg"
  29362. }
  29363. },
  29364. headSide: {
  29365. height: math.unit(65, "feet"),
  29366. name: "Head (Side)",
  29367. image: {
  29368. source: "./media/characters/kodran/head-side.svg"
  29369. }
  29370. },
  29371. throat: {
  29372. height: math.unit(79, "feet"),
  29373. name: "Throat",
  29374. image: {
  29375. source: "./media/characters/kodran/throat.svg"
  29376. }
  29377. },
  29378. },
  29379. [
  29380. {
  29381. name: "Large",
  29382. height: math.unit(106, "feet"),
  29383. default: true
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29389. {
  29390. side: {
  29391. height: math.unit(11, "feet"),
  29392. weight: math.unit(150, "lb"),
  29393. name: "Side",
  29394. image: {
  29395. source: "./media/characters/pyxaron/side.svg",
  29396. extra: 305 / 195,
  29397. bottom: 17 / 322
  29398. }
  29399. },
  29400. },
  29401. [
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(11, "feet"),
  29405. default: true
  29406. },
  29407. ]
  29408. ))
  29409. characterMakers.push(() => makeCharacter(
  29410. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29411. {
  29412. front: {
  29413. height: math.unit(6, "feet"),
  29414. weight: math.unit(150, "lb"),
  29415. name: "Front",
  29416. image: {
  29417. source: "./media/characters/meep/front.svg",
  29418. extra: 88 / 80,
  29419. bottom: 6 / 94
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Fun Sized",
  29426. height: math.unit(2, "inches"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Friend Sized",
  29431. height: math.unit(8, "inches")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(15, "feet"),
  29440. weight: math.unit(2500, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/holly-rabbit/front.svg",
  29444. extra: 1433 / 1233,
  29445. bottom: 125 / 1558
  29446. }
  29447. },
  29448. dick: {
  29449. height: math.unit(4.6, "feet"),
  29450. name: "Dick",
  29451. image: {
  29452. source: "./media/characters/holly-rabbit/dick.svg"
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(15, "feet"),
  29460. default: true
  29461. },
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(250, "feet")
  29465. },
  29466. {
  29467. name: "Macro+",
  29468. height: math.unit(2500, "feet")
  29469. },
  29470. ]
  29471. ))
  29472. characterMakers.push(() => makeCharacter(
  29473. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29474. {
  29475. front: {
  29476. height: math.unit(3.02, "meters"),
  29477. weight: math.unit(500, "kg"),
  29478. name: "Front",
  29479. image: {
  29480. source: "./media/characters/drena/front.svg",
  29481. extra: 282 / 243,
  29482. bottom: 8 / 290
  29483. }
  29484. },
  29485. side: {
  29486. height: math.unit(3.02, "meters"),
  29487. weight: math.unit(500, "kg"),
  29488. name: "Side",
  29489. image: {
  29490. source: "./media/characters/drena/side.svg",
  29491. extra: 280 / 245,
  29492. bottom: 10 / 290
  29493. }
  29494. },
  29495. back: {
  29496. height: math.unit(3.02, "meters"),
  29497. weight: math.unit(500, "kg"),
  29498. name: "Back",
  29499. image: {
  29500. source: "./media/characters/drena/back.svg",
  29501. extra: 278 / 243,
  29502. bottom: 2 / 280
  29503. }
  29504. },
  29505. foot: {
  29506. height: math.unit(0.75, "meters"),
  29507. name: "Foot",
  29508. image: {
  29509. source: "./media/characters/drena/foot.svg"
  29510. }
  29511. },
  29512. maw: {
  29513. height: math.unit(0.82, "meters"),
  29514. name: "Maw",
  29515. image: {
  29516. source: "./media/characters/drena/maw.svg"
  29517. }
  29518. },
  29519. eating: {
  29520. height: math.unit(0.75, "meters"),
  29521. name: "Eating",
  29522. image: {
  29523. source: "./media/characters/drena/eating.svg"
  29524. }
  29525. },
  29526. rump: {
  29527. height: math.unit(0.93, "meters"),
  29528. name: "Rump",
  29529. image: {
  29530. source: "./media/characters/drena/rump.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(3.02, "meters"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(6 + 4 / 12, "feet"),
  29547. weight: math.unit(250, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/remmyzilla/front.svg",
  29551. extra: 4033 / 3588,
  29552. bottom: 123 / 4156
  29553. }
  29554. },
  29555. back: {
  29556. height: math.unit(6 + 4 / 12, "feet"),
  29557. weight: math.unit(250, "lb"),
  29558. name: "Back",
  29559. image: {
  29560. source: "./media/characters/remmyzilla/back.svg",
  29561. extra: 2687 / 2555,
  29562. bottom: 48 / 2735
  29563. }
  29564. },
  29565. paw: {
  29566. height: math.unit(1.73, "feet"),
  29567. name: "Paw",
  29568. image: {
  29569. source: "./media/characters/remmyzilla/paw.svg"
  29570. }
  29571. },
  29572. maw: {
  29573. height: math.unit(1.73, "feet"),
  29574. name: "Maw",
  29575. image: {
  29576. source: "./media/characters/remmyzilla/maw.svg"
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(6 + 4 / 12, "feet")
  29584. },
  29585. {
  29586. name: "Minimacro",
  29587. height: math.unit(12 + 8 / 12, "feet")
  29588. },
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(640, "feet"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Megamacro",
  29596. height: math.unit(6400, "feet")
  29597. },
  29598. {
  29599. name: "Gigamacro",
  29600. height: math.unit(64000, "miles")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(2.5, "meters"),
  29609. weight: math.unit(300, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/lawrence/front.svg",
  29613. extra: 357 / 335,
  29614. bottom: 30 / 387
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(2.5, "meters"),
  29619. weight: math.unit(300, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/lawrence/back.svg",
  29623. extra: 357 / 338,
  29624. bottom: 16 / 373
  29625. }
  29626. },
  29627. head: {
  29628. height: math.unit(0.9, "meter"),
  29629. name: "Head",
  29630. image: {
  29631. source: "./media/characters/lawrence/head.svg"
  29632. }
  29633. },
  29634. maw: {
  29635. height: math.unit(0.7, "meter"),
  29636. name: "Maw",
  29637. image: {
  29638. source: "./media/characters/lawrence/maw.svg"
  29639. }
  29640. },
  29641. footBottom: {
  29642. height: math.unit(0.5, "meter"),
  29643. name: "Foot (Bottom)",
  29644. image: {
  29645. source: "./media/characters/lawrence/foot-bottom.svg"
  29646. }
  29647. },
  29648. footTop: {
  29649. height: math.unit(0.5, "meter"),
  29650. name: "Foot (Top)",
  29651. image: {
  29652. source: "./media/characters/lawrence/foot-top.svg"
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(2.5, "meters"),
  29660. default: true
  29661. },
  29662. {
  29663. name: "Macro",
  29664. height: math.unit(95, "meters")
  29665. },
  29666. {
  29667. name: "Megamacro",
  29668. height: math.unit(150, "km")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29674. {
  29675. front: {
  29676. height: math.unit(4.2, "meters"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/sydney/front.svg",
  29680. extra: 1323 / 1277,
  29681. bottom: 111 / 1434
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(4.2, "meters"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29695. {
  29696. back: {
  29697. height: math.unit(201, "feet"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/jessica/back.svg",
  29701. extra: 273 / 259,
  29702. bottom: 7 / 280
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(201, "feet"),
  29710. default: true
  29711. },
  29712. {
  29713. name: "Megamacro",
  29714. height: math.unit(8, "miles")
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29720. {
  29721. side: {
  29722. height: math.unit(5.6, "m"),
  29723. weight: math.unit(8000, "kg"),
  29724. name: "Side",
  29725. image: {
  29726. source: "./media/characters/victoria/side.svg",
  29727. extra: 1542/1229,
  29728. bottom: 124/1666
  29729. }
  29730. },
  29731. maw: {
  29732. height: math.unit(7.14, "feet"),
  29733. name: "Maw",
  29734. image: {
  29735. source: "./media/characters/victoria/maw.svg"
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(5.6, "m"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29749. {
  29750. front: {
  29751. height: math.unit(5 + 6 / 12, "feet"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/cat/front.svg",
  29755. extra: 1449/1295,
  29756. bottom: 34/1483
  29757. },
  29758. form: "cat",
  29759. default: true
  29760. },
  29761. back: {
  29762. height: math.unit(5 + 6 / 12, "feet"),
  29763. name: "Back",
  29764. image: {
  29765. source: "./media/characters/cat/back.svg",
  29766. extra: 1466/1301,
  29767. bottom: 19/1485
  29768. },
  29769. form: "cat"
  29770. },
  29771. taur: {
  29772. height: math.unit(7, "feet"),
  29773. name: "Taur",
  29774. image: {
  29775. source: "./media/characters/cat/taur.svg",
  29776. extra: 1389/1233,
  29777. bottom: 83/1472
  29778. },
  29779. form: "taur",
  29780. default: true
  29781. },
  29782. lucarioFront: {
  29783. height: math.unit(4, "feet"),
  29784. name: "Lucario (Front)",
  29785. image: {
  29786. source: "./media/characters/cat/lucario-front.svg",
  29787. extra: 1149/1019,
  29788. bottom: 84/1233
  29789. },
  29790. form: "lucario",
  29791. default: true
  29792. },
  29793. lucarioBack: {
  29794. height: math.unit(4, "feet"),
  29795. name: "Lucario (Back)",
  29796. image: {
  29797. source: "./media/characters/cat/lucario-back.svg",
  29798. extra: 1190/1059,
  29799. bottom: 33/1223
  29800. },
  29801. form: "lucario"
  29802. },
  29803. megaLucario: {
  29804. height: math.unit(4, "feet"),
  29805. name: "Mega Lucario",
  29806. image: {
  29807. source: "./media/characters/cat/mega-lucario.svg",
  29808. extra: 1515 / 1319,
  29809. bottom: 63 / 1578
  29810. },
  29811. form: "lucario"
  29812. },
  29813. nickit: {
  29814. height: math.unit(2, "feet"),
  29815. name: "Nickit",
  29816. image: {
  29817. source: "./media/characters/cat/nickit.svg",
  29818. extra: 1980 / 1585,
  29819. bottom: 102 / 2082
  29820. },
  29821. form: "nickit",
  29822. default: true
  29823. },
  29824. lopunnyFront: {
  29825. height: math.unit(5, "feet"),
  29826. name: "Lopunny (Front)",
  29827. image: {
  29828. source: "./media/characters/cat/lopunny-front.svg",
  29829. extra: 1782 / 1469,
  29830. bottom: 38 / 1820
  29831. },
  29832. form: "lopunny",
  29833. default: true
  29834. },
  29835. lopunnyBack: {
  29836. height: math.unit(5, "feet"),
  29837. name: "Lopunny (Back)",
  29838. image: {
  29839. source: "./media/characters/cat/lopunny-back.svg",
  29840. extra: 1660 / 1490,
  29841. bottom: 25 / 1685
  29842. },
  29843. form: "lopunny"
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Really small",
  29849. height: math.unit(1, "nm")
  29850. },
  29851. {
  29852. name: "Micro",
  29853. height: math.unit(5, "inches")
  29854. },
  29855. {
  29856. name: "Normal",
  29857. height: math.unit(5 + 6 / 12, "feet"),
  29858. default: true
  29859. },
  29860. {
  29861. name: "Macro",
  29862. height: math.unit(50, "feet")
  29863. },
  29864. {
  29865. name: "Macro+",
  29866. height: math.unit(150, "feet")
  29867. },
  29868. {
  29869. name: "Megamacro",
  29870. height: math.unit(100, "miles")
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(63.4, "meters"),
  29879. weight: math.unit(3.28349e+6, "kilograms"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/kirina-violet/front.svg",
  29883. extra: 2812 / 2725,
  29884. bottom: 0 / 2812
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(63.4, "meters"),
  29889. weight: math.unit(3.28349e+6, "kilograms"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/kirina-violet/back.svg",
  29893. extra: 2812 / 2725,
  29894. bottom: 0 / 2812
  29895. }
  29896. },
  29897. mouth: {
  29898. height: math.unit(4.35, "meters"),
  29899. name: "Mouth",
  29900. image: {
  29901. source: "./media/characters/kirina-violet/mouth.svg"
  29902. }
  29903. },
  29904. paw: {
  29905. height: math.unit(5.6, "meters"),
  29906. name: "Paw",
  29907. image: {
  29908. source: "./media/characters/kirina-violet/paw.svg"
  29909. }
  29910. },
  29911. tail: {
  29912. height: math.unit(18, "meters"),
  29913. name: "Tail",
  29914. image: {
  29915. source: "./media/characters/kirina-violet/tail.svg"
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Macro",
  29922. height: math.unit(63.4, "meters"),
  29923. default: true
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(75, "feet"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/cat-gigachu/front.svg",
  29935. extra: 1239/1027,
  29936. bottom: 32/1271
  29937. }
  29938. },
  29939. back: {
  29940. height: math.unit(75, "feet"),
  29941. name: "Back",
  29942. image: {
  29943. source: "./media/characters/cat-gigachu/back.svg",
  29944. extra: 1229/1030,
  29945. bottom: 9/1238
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Dynamax",
  29952. height: math.unit(75, "feet"),
  29953. default: true
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(6, "feet"),
  29962. weight: math.unit(150, "lb"),
  29963. name: "Front",
  29964. image: {
  29965. source: "./media/characters/sfaiyan/front.svg",
  29966. extra: 999 / 978,
  29967. bottom: 5 / 1004
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(1.82, "meters")
  29975. },
  29976. {
  29977. name: "Giant",
  29978. height: math.unit(2.27, "km"),
  29979. default: true
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(179, "cm"),
  29988. weight: math.unit(100, "kg"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/raunehkeli/front.svg",
  29992. extra: 1934 / 1926,
  29993. bottom: 0 / 1934
  29994. }
  29995. },
  29996. },
  29997. [
  29998. {
  29999. name: "Normal",
  30000. height: math.unit(179, "cm")
  30001. },
  30002. {
  30003. name: "Maximum",
  30004. height: math.unit(575, "meters"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30018. extra: 2625 / 2518,
  30019. bottom: 60 / 2685
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(6 + 2 / 12, "feet")
  30027. },
  30028. {
  30029. name: "Macro",
  30030. height: math.unit(1180, "feet"),
  30031. default: true
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(5 + 6 / 12, "feet"),
  30040. weight: math.unit(108, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/lilith-zott/front.svg",
  30044. extra: 2510 / 2238,
  30045. bottom: 100 / 2610
  30046. }
  30047. },
  30048. frontDressed: {
  30049. height: math.unit(5 + 6 / 12, "feet"),
  30050. weight: math.unit(108, "lb"),
  30051. name: "Front (Dressed)",
  30052. image: {
  30053. source: "./media/characters/lilith-zott/front-dressed.svg",
  30054. extra: 2510 / 2238,
  30055. bottom: 100 / 2610
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Normal",
  30062. height: math.unit(5 + 6 / 12, "feet")
  30063. },
  30064. {
  30065. name: "Macro",
  30066. height: math.unit(1030, "feet"),
  30067. default: true
  30068. },
  30069. ]
  30070. ))
  30071. characterMakers.push(() => makeCharacter(
  30072. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30073. {
  30074. front: {
  30075. height: math.unit(6, "feet"),
  30076. weight: math.unit(150, "lb"),
  30077. name: "Front",
  30078. image: {
  30079. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30080. extra: 2567 / 2435,
  30081. bottom: 39 / 2606
  30082. }
  30083. },
  30084. frontSuper: {
  30085. height: math.unit(6, "feet"),
  30086. name: "Front (Super)",
  30087. image: {
  30088. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30089. extra: 2567 / 2435,
  30090. bottom: 39 / 2606
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Normal",
  30097. height: math.unit(5 + 10 / 12, "feet")
  30098. },
  30099. {
  30100. name: "Macro",
  30101. height: math.unit(1100, "feet"),
  30102. default: true
  30103. },
  30104. ]
  30105. ))
  30106. characterMakers.push(() => makeCharacter(
  30107. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30108. {
  30109. front: {
  30110. height: math.unit(100, "miles"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/sona/front.svg",
  30114. extra: 2433 / 2201,
  30115. bottom: 53 / 2486
  30116. }
  30117. },
  30118. foot: {
  30119. height: math.unit(16.1, "miles"),
  30120. name: "Foot",
  30121. image: {
  30122. source: "./media/characters/sona/foot.svg"
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Macro",
  30129. height: math.unit(100, "miles"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(6, "feet"),
  30139. weight: math.unit(150, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/bailey/front.svg",
  30143. extra: 1778 / 1724,
  30144. bottom: 30 / 1808
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Micro",
  30151. height: math.unit(4, "inches")
  30152. },
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(5 + 5 / 12, "feet"),
  30156. default: true
  30157. },
  30158. {
  30159. name: "Macro",
  30160. height: math.unit(250, "feet")
  30161. },
  30162. {
  30163. name: "Megamacro",
  30164. height: math.unit(100, "miles")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(5 + 2 / 12, "feet"),
  30173. weight: math.unit(120, "lb"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/snaps/front.svg",
  30177. extra: 2370 / 2177,
  30178. bottom: 48 / 2418
  30179. }
  30180. },
  30181. back: {
  30182. height: math.unit(5 + 2 / 12, "feet"),
  30183. weight: math.unit(120, "lb"),
  30184. name: "Back",
  30185. image: {
  30186. source: "./media/characters/snaps/back.svg",
  30187. extra: 2408 / 2258,
  30188. bottom: 15 / 2423
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Micro",
  30195. height: math.unit(9, "inches")
  30196. },
  30197. {
  30198. name: "Normal",
  30199. height: math.unit(5 + 2 / 12, "feet"),
  30200. default: true
  30201. },
  30202. {
  30203. name: "Mini Macro",
  30204. height: math.unit(10, "feet")
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(1.8, "meters"),
  30213. weight: math.unit(85, "kg"),
  30214. name: "Front",
  30215. image: {
  30216. source: "./media/characters/azteck/front.svg",
  30217. extra: 2815 / 2625,
  30218. bottom: 89 / 2904
  30219. }
  30220. },
  30221. back: {
  30222. height: math.unit(1.8, "meters"),
  30223. weight: math.unit(85, "kg"),
  30224. name: "Back",
  30225. image: {
  30226. source: "./media/characters/azteck/back.svg",
  30227. extra: 2856 / 2648,
  30228. bottom: 85 / 2941
  30229. }
  30230. },
  30231. frontDressed: {
  30232. height: math.unit(1.8, "meters"),
  30233. weight: math.unit(85, "kg"),
  30234. name: "Front (Dressed)",
  30235. image: {
  30236. source: "./media/characters/azteck/front-dressed.svg",
  30237. extra: 2147 / 2003,
  30238. bottom: 68 / 2215
  30239. }
  30240. },
  30241. head: {
  30242. height: math.unit(0.47, "meters"),
  30243. weight: math.unit(85, "kg"),
  30244. name: "Head",
  30245. image: {
  30246. source: "./media/characters/azteck/head.svg"
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Bite sized",
  30253. height: math.unit(16, "cm")
  30254. },
  30255. {
  30256. name: "Normal",
  30257. height: math.unit(1.8, "meters"),
  30258. default: true
  30259. },
  30260. ]
  30261. ))
  30262. characterMakers.push(() => makeCharacter(
  30263. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30264. {
  30265. front: {
  30266. height: math.unit(6, "feet"),
  30267. weight: math.unit(150, "lb"),
  30268. name: "Front",
  30269. image: {
  30270. source: "./media/characters/pidge/front.svg",
  30271. extra: 1936/1820,
  30272. bottom: 0/1936
  30273. }
  30274. },
  30275. back: {
  30276. height: math.unit(6, "feet"),
  30277. weight: math.unit(150, "lb"),
  30278. name: "Back",
  30279. image: {
  30280. source: "./media/characters/pidge/back.svg",
  30281. extra: 1938/1843,
  30282. bottom: 0/1938
  30283. }
  30284. },
  30285. casual: {
  30286. height: math.unit(6, "feet"),
  30287. weight: math.unit(150, "lb"),
  30288. name: "Casual",
  30289. image: {
  30290. source: "./media/characters/pidge/casual.svg",
  30291. extra: 1936/1820,
  30292. bottom: 0/1936
  30293. }
  30294. },
  30295. tech: {
  30296. height: math.unit(6, "feet"),
  30297. weight: math.unit(150, "lb"),
  30298. name: "Tech",
  30299. image: {
  30300. source: "./media/characters/pidge/tech.svg",
  30301. extra: 1802/1682,
  30302. bottom: 0/1802
  30303. }
  30304. },
  30305. head: {
  30306. height: math.unit(1.61, "feet"),
  30307. name: "Head",
  30308. image: {
  30309. source: "./media/characters/pidge/head.svg"
  30310. }
  30311. },
  30312. collar: {
  30313. height: math.unit(0.82, "feet"),
  30314. name: "Collar",
  30315. image: {
  30316. source: "./media/characters/pidge/collar.svg"
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Macro",
  30323. height: math.unit(2, "mile"),
  30324. default: true
  30325. },
  30326. {
  30327. name: "PUPPY",
  30328. height: math.unit(20, "miles")
  30329. },
  30330. ]
  30331. ))
  30332. characterMakers.push(() => makeCharacter(
  30333. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30334. {
  30335. front: {
  30336. height: math.unit(6, "feet"),
  30337. weight: math.unit(150, "lb"),
  30338. name: "Front",
  30339. image: {
  30340. source: "./media/characters/en/front.svg",
  30341. extra: 1697 / 1563,
  30342. bottom: 103 / 1800
  30343. }
  30344. },
  30345. back: {
  30346. height: math.unit(6, "feet"),
  30347. weight: math.unit(150, "lb"),
  30348. name: "Back",
  30349. image: {
  30350. source: "./media/characters/en/back.svg",
  30351. extra: 1700 / 1570,
  30352. bottom: 51 / 1751
  30353. }
  30354. },
  30355. frontDressed: {
  30356. height: math.unit(6, "feet"),
  30357. weight: math.unit(150, "lb"),
  30358. name: "Front (Dressed)",
  30359. image: {
  30360. source: "./media/characters/en/front-dressed.svg",
  30361. extra: 1697 / 1563,
  30362. bottom: 103 / 1800
  30363. }
  30364. },
  30365. backDressed: {
  30366. height: math.unit(6, "feet"),
  30367. weight: math.unit(150, "lb"),
  30368. name: "Back (Dressed)",
  30369. image: {
  30370. source: "./media/characters/en/back-dressed.svg",
  30371. extra: 1700 / 1570,
  30372. bottom: 51 / 1751
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Macro",
  30379. height: math.unit(210, "feet"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(6, "feet"),
  30389. weight: math.unit(150, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/haze-orris/front.svg",
  30393. extra: 3975 / 3525,
  30394. bottom: 137 / 4112
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Micro",
  30401. height: math.unit(150, "mm"),
  30402. default: true
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/casselene-yaro/front.svg",
  30415. extra: 4721 / 4541,
  30416. bottom: 82 / 4803
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(6, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/casselene-yaro/back.svg",
  30425. extra: 4569 / 4377,
  30426. bottom: 69 / 4638
  30427. }
  30428. },
  30429. dressed: {
  30430. height: math.unit(6, "feet"),
  30431. weight: math.unit(150, "lb"),
  30432. name: "Dressed",
  30433. image: {
  30434. source: "./media/characters/casselene-yaro/dressed.svg",
  30435. extra: 4721 / 4541,
  30436. bottom: 82 / 4803
  30437. }
  30438. },
  30439. maw: {
  30440. height: math.unit(1, "feet"),
  30441. name: "Maw",
  30442. image: {
  30443. source: "./media/characters/casselene-yaro/maw.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Macro",
  30450. height: math.unit(190, "feet"),
  30451. default: true
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30457. {
  30458. front: {
  30459. height: math.unit(10, "feet"),
  30460. weight: math.unit(15015, "lb"),
  30461. name: "Front",
  30462. image: {
  30463. source: "./media/characters/platine/front.svg",
  30464. extra: 1428/1353,
  30465. bottom: 31/1459
  30466. }
  30467. },
  30468. },
  30469. [
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(10, "feet"),
  30473. default: true
  30474. },
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(100, "feet")
  30478. },
  30479. {
  30480. name: "Megamacro",
  30481. height: math.unit(1000, "feet")
  30482. },
  30483. ]
  30484. ))
  30485. characterMakers.push(() => makeCharacter(
  30486. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30487. {
  30488. front: {
  30489. height: math.unit(15 + 5 / 12, "feet"),
  30490. weight: math.unit(4600, "lb"),
  30491. name: "Front",
  30492. image: {
  30493. source: "./media/characters/neapolitan-ananassa/front.svg",
  30494. extra: 2903 / 2736,
  30495. bottom: 0 / 2903
  30496. }
  30497. },
  30498. side: {
  30499. height: math.unit(15 + 5 / 12, "feet"),
  30500. weight: math.unit(4600, "lb"),
  30501. name: "Side",
  30502. image: {
  30503. source: "./media/characters/neapolitan-ananassa/side.svg",
  30504. extra: 2925 / 2719,
  30505. bottom: 0 / 2925
  30506. }
  30507. },
  30508. back: {
  30509. height: math.unit(15 + 5 / 12, "feet"),
  30510. weight: math.unit(4600, "lb"),
  30511. name: "Back",
  30512. image: {
  30513. source: "./media/characters/neapolitan-ananassa/back.svg",
  30514. extra: 2903 / 2736,
  30515. bottom: 0 / 2903
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Normal",
  30522. height: math.unit(15 + 5 / 12, "feet"),
  30523. default: true
  30524. },
  30525. {
  30526. name: "Post-Millenium",
  30527. height: math.unit(35 + 5 / 12, "feet")
  30528. },
  30529. {
  30530. name: "Post-Era",
  30531. height: math.unit(450 + 5 / 12, "feet")
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(300, "meters"),
  30540. weight: math.unit(125000, "tonnes"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/pazuzu/front.svg",
  30544. extra: 877 / 794,
  30545. bottom: 47 / 924
  30546. }
  30547. },
  30548. },
  30549. [
  30550. {
  30551. name: "Macro",
  30552. height: math.unit(300, "meters"),
  30553. default: true
  30554. },
  30555. ]
  30556. ))
  30557. characterMakers.push(() => makeCharacter(
  30558. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30559. {
  30560. side: {
  30561. height: math.unit(10 + 7 / 12, "feet"),
  30562. weight: math.unit(2.5, "tons"),
  30563. name: "Side",
  30564. image: {
  30565. source: "./media/characters/aasha/side.svg",
  30566. extra: 1345 / 1245,
  30567. bottom: 111 / 1456
  30568. }
  30569. },
  30570. back: {
  30571. height: math.unit(10 + 7 / 12, "feet"),
  30572. weight: math.unit(2.5, "tons"),
  30573. name: "Back",
  30574. image: {
  30575. source: "./media/characters/aasha/back.svg",
  30576. extra: 1133 / 1057,
  30577. bottom: 257 / 1390
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(10 + 7 / 12, "feet"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(6 + 3 / 12, "feet"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/nevan/front.svg",
  30597. extra: 704 / 704,
  30598. bottom: 28 / 732
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(6 + 3 / 12, "feet"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/nevan/back.svg",
  30606. extra: 714 / 714,
  30607. bottom: 21 / 735
  30608. }
  30609. },
  30610. frontFlaccid: {
  30611. height: math.unit(6 + 3 / 12, "feet"),
  30612. name: "Front (Flaccid)",
  30613. image: {
  30614. source: "./media/characters/nevan/front-flaccid.svg",
  30615. extra: 704 / 704,
  30616. bottom: 28 / 732
  30617. }
  30618. },
  30619. frontErect: {
  30620. height: math.unit(6 + 3 / 12, "feet"),
  30621. name: "Front (Erect)",
  30622. image: {
  30623. source: "./media/characters/nevan/front-erect.svg",
  30624. extra: 704 / 704,
  30625. bottom: 28 / 732
  30626. }
  30627. },
  30628. backFlaccid: {
  30629. height: math.unit(6 + 3 / 12, "feet"),
  30630. name: "Back (Flaccid)",
  30631. image: {
  30632. source: "./media/characters/nevan/back-flaccid.svg",
  30633. extra: 714 / 714,
  30634. bottom: 21 / 735
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(6 + 3 / 12, "feet"),
  30642. default: true
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30648. {
  30649. front: {
  30650. height: math.unit(4, "feet"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/arhan/front.svg",
  30654. extra: 3368 / 3133,
  30655. bottom: 0 / 3368
  30656. }
  30657. },
  30658. side: {
  30659. height: math.unit(4, "feet"),
  30660. name: "Side",
  30661. image: {
  30662. source: "./media/characters/arhan/side.svg",
  30663. extra: 3347 / 3105,
  30664. bottom: 0 / 3347
  30665. }
  30666. },
  30667. tongue: {
  30668. height: math.unit(1.42, "feet"),
  30669. name: "Tongue",
  30670. image: {
  30671. source: "./media/characters/arhan/tongue.svg"
  30672. }
  30673. },
  30674. head: {
  30675. height: math.unit(0.85, "feet"),
  30676. name: "Head",
  30677. image: {
  30678. source: "./media/characters/arhan/head.svg"
  30679. }
  30680. },
  30681. },
  30682. [
  30683. {
  30684. name: "Normal",
  30685. height: math.unit(4, "feet"),
  30686. default: true
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30692. {
  30693. front: {
  30694. height: math.unit(5 + 7.5 / 12, "feet"),
  30695. weight: math.unit(120, "lb"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/digi-duncan/front.svg",
  30699. extra: 330 / 326,
  30700. bottom: 16 / 346
  30701. }
  30702. },
  30703. side: {
  30704. height: math.unit(5 + 7.5 / 12, "feet"),
  30705. weight: math.unit(120, "lb"),
  30706. name: "Side",
  30707. image: {
  30708. source: "./media/characters/digi-duncan/side.svg",
  30709. extra: 341 / 337,
  30710. bottom: 1 / 342
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(5 + 7.5 / 12, "feet"),
  30715. weight: math.unit(120, "lb"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/digi-duncan/back.svg",
  30719. extra: 330 / 326,
  30720. bottom: 12 / 342
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Speck",
  30727. height: math.unit(0.25, "mm")
  30728. },
  30729. {
  30730. name: "Micro",
  30731. height: math.unit(5, "mm")
  30732. },
  30733. {
  30734. name: "Tiny",
  30735. height: math.unit(0.5, "inches"),
  30736. default: true
  30737. },
  30738. {
  30739. name: "Human",
  30740. height: math.unit(5 + 7.5 / 12, "feet")
  30741. },
  30742. {
  30743. name: "Minigiant",
  30744. height: math.unit(8 + 5.25, "feet")
  30745. },
  30746. {
  30747. name: "Giant",
  30748. height: math.unit(2000, "feet")
  30749. },
  30750. {
  30751. name: "Mega",
  30752. height: math.unit(371.1, "miles")
  30753. },
  30754. ]
  30755. ))
  30756. characterMakers.push(() => makeCharacter(
  30757. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30758. {
  30759. front: {
  30760. height: math.unit(2, "meters"),
  30761. weight: math.unit(350, "kg"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30765. extra: 898 / 838,
  30766. bottom: 9 / 907
  30767. }
  30768. },
  30769. },
  30770. [
  30771. {
  30772. name: "Micro",
  30773. height: math.unit(8, "meters")
  30774. },
  30775. {
  30776. name: "Normal",
  30777. height: math.unit(50, "meters"),
  30778. default: true
  30779. },
  30780. {
  30781. name: "Macro",
  30782. height: math.unit(500, "meters")
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6 + 6 / 12, "feet"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/khardesh/front.svg",
  30794. extra: 1788/1596,
  30795. bottom: 66/1854
  30796. }
  30797. },
  30798. back: {
  30799. height: math.unit(6 + 6 / 12, "feet"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/khardesh/back.svg",
  30803. extra: 1781/1584,
  30804. bottom: 68/1849
  30805. }
  30806. },
  30807. },
  30808. [
  30809. {
  30810. name: "Normal",
  30811. height: math.unit(6 + 6 / 12, "feet"),
  30812. default: true
  30813. },
  30814. {
  30815. name: "Normal+",
  30816. height: math.unit(4, "meters")
  30817. },
  30818. {
  30819. name: "Macro",
  30820. height: math.unit(50, "meters")
  30821. },
  30822. {
  30823. name: "Macro+",
  30824. height: math.unit(100, "meters")
  30825. },
  30826. {
  30827. name: "Megamacro",
  30828. height: math.unit(20, "km")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(6, "feet"),
  30837. weight: math.unit(150, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/kosho/front.svg",
  30841. extra: 1847 / 1847,
  30842. bottom: 86 / 1933
  30843. }
  30844. },
  30845. },
  30846. [
  30847. {
  30848. name: "Second-stage micro",
  30849. height: math.unit(0.5, "inches")
  30850. },
  30851. {
  30852. name: "First-stage micro",
  30853. height: math.unit(6, "inches")
  30854. },
  30855. {
  30856. name: "Normal",
  30857. height: math.unit(6, "feet"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "First-stage macro",
  30862. height: math.unit(72, "feet")
  30863. },
  30864. {
  30865. name: "Second-stage macro",
  30866. height: math.unit(864, "feet")
  30867. },
  30868. ]
  30869. ))
  30870. characterMakers.push(() => makeCharacter(
  30871. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30872. {
  30873. normal: {
  30874. height: math.unit(4 + 6 / 12, "feet"),
  30875. name: "Normal",
  30876. image: {
  30877. source: "./media/characters/hydra/normal.svg",
  30878. extra: 2833 / 2634,
  30879. bottom: 68 / 2901
  30880. }
  30881. },
  30882. smol: {
  30883. height: math.unit(0.705, "inches"),
  30884. name: "Smol",
  30885. image: {
  30886. source: "./media/characters/hydra/smol.svg",
  30887. extra: 2715 / 2540,
  30888. bottom: 0 / 2715
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(4 + 6 / 12, "feet"),
  30896. default: true
  30897. }
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(0.6, "cm"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/daz/front.svg",
  30908. extra: 1682 / 1164,
  30909. bottom: 42 / 1724
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Normal",
  30916. height: math.unit(0.6, "cm"),
  30917. default: true
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(6, "feet"),
  30926. weight: math.unit(235, "lb"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/theo-pangolin/front.svg",
  30930. extra: 1996 / 1969,
  30931. bottom: 115 / 2111
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(6, "feet"),
  30936. weight: math.unit(235, "lb"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/theo-pangolin/back.svg",
  30940. extra: 1979 / 1979,
  30941. bottom: 40 / 2019
  30942. }
  30943. },
  30944. feral: {
  30945. height: math.unit(2, "feet"),
  30946. weight: math.unit(30, "lb"),
  30947. name: "Feral",
  30948. image: {
  30949. source: "./media/characters/theo-pangolin/feral.svg",
  30950. extra: 803 / 791,
  30951. bottom: 181 / 984
  30952. }
  30953. },
  30954. footFive: {
  30955. height: math.unit(1.43, "feet"),
  30956. name: "Foot (Five Toes)",
  30957. image: {
  30958. source: "./media/characters/theo-pangolin/foot-five.svg"
  30959. }
  30960. },
  30961. footFour: {
  30962. height: math.unit(1.43, "feet"),
  30963. name: "Foot (Four Toes)",
  30964. image: {
  30965. source: "./media/characters/theo-pangolin/foot-four.svg"
  30966. }
  30967. },
  30968. handFour: {
  30969. height: math.unit(0.81, "feet"),
  30970. name: "Hand (Four Fingers)",
  30971. image: {
  30972. source: "./media/characters/theo-pangolin/hand-four.svg"
  30973. }
  30974. },
  30975. handThree: {
  30976. height: math.unit(0.81, "feet"),
  30977. name: "Hand (Three Fingers)",
  30978. image: {
  30979. source: "./media/characters/theo-pangolin/hand-three.svg"
  30980. }
  30981. },
  30982. headFront: {
  30983. height: math.unit(1.37, "feet"),
  30984. name: "Head (Front)",
  30985. image: {
  30986. source: "./media/characters/theo-pangolin/head-front.svg"
  30987. }
  30988. },
  30989. headSide: {
  30990. height: math.unit(1.43, "feet"),
  30991. name: "Head (Side)",
  30992. image: {
  30993. source: "./media/characters/theo-pangolin/head-side.svg"
  30994. }
  30995. },
  30996. tongue: {
  30997. height: math.unit(2.29, "feet"),
  30998. name: "Tongue",
  30999. image: {
  31000. source: "./media/characters/theo-pangolin/tongue.svg"
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(6, "feet")
  31008. },
  31009. {
  31010. name: "Macro",
  31011. height: math.unit(400, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(6, "inches"),
  31021. weight: math.unit(0.036, "kg"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/renée/front.svg",
  31025. extra: 900 / 886,
  31026. bottom: 8 / 908
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Nano",
  31033. height: math.unit(1, "nm")
  31034. },
  31035. {
  31036. name: "Micro",
  31037. height: math.unit(1, "mm")
  31038. },
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(6, "inches")
  31042. },
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(2000, "feet"),
  31046. default: true
  31047. },
  31048. {
  31049. name: "Megamacro",
  31050. height: math.unit(2, "km")
  31051. },
  31052. {
  31053. name: "Gigamacro",
  31054. height: math.unit(2000, "km")
  31055. },
  31056. {
  31057. name: "Teramacro",
  31058. height: math.unit(250000, "km")
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(4, "meters"),
  31067. weight: math.unit(150, "kg"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/caledvwlch/front.svg",
  31071. extra: 1760 / 1551,
  31072. bottom: 28 / 1788
  31073. }
  31074. },
  31075. side: {
  31076. height: math.unit(4, "meters"),
  31077. weight: math.unit(150, "kg"),
  31078. name: "Side",
  31079. image: {
  31080. source: "./media/characters/caledvwlch/side.svg",
  31081. extra: 1605 / 1536,
  31082. bottom: 31 / 1636
  31083. }
  31084. },
  31085. back: {
  31086. height: math.unit(4, "meters"),
  31087. weight: math.unit(150, "kg"),
  31088. name: "Back",
  31089. image: {
  31090. source: "./media/characters/caledvwlch/back.svg",
  31091. extra: 1635 / 1565,
  31092. bottom: 27 / 1662
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "\"Incognito\"",
  31099. height: math.unit(4, "meters")
  31100. },
  31101. {
  31102. name: "Small rampage",
  31103. height: math.unit(600, "meters")
  31104. },
  31105. {
  31106. name: "Mega",
  31107. height: math.unit(30, "km")
  31108. },
  31109. {
  31110. name: "Home-size",
  31111. height: math.unit(50, "km"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Giga",
  31116. height: math.unit(300, "km")
  31117. },
  31118. {
  31119. name: "Lounging",
  31120. height: math.unit(11000, "km")
  31121. },
  31122. {
  31123. name: "Planet snacking",
  31124. height: math.unit(2000000, "km")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(6, "feet"),
  31133. weight: math.unit(215, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/sapphire-svell/front.svg",
  31137. extra: 495 / 455,
  31138. bottom: 20 / 515
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(6, "feet"),
  31143. weight: math.unit(216, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/sapphire-svell/back.svg",
  31147. extra: 497 / 477,
  31148. bottom: 7 / 504
  31149. }
  31150. },
  31151. maw: {
  31152. height: math.unit(1.57, "feet"),
  31153. name: "Maw",
  31154. image: {
  31155. source: "./media/characters/sapphire-svell/maw.svg"
  31156. }
  31157. },
  31158. foot: {
  31159. height: math.unit(1.07, "feet"),
  31160. name: "Foot",
  31161. image: {
  31162. source: "./media/characters/sapphire-svell/foot.svg"
  31163. }
  31164. },
  31165. toering: {
  31166. height: math.unit(1.7, "inch"),
  31167. name: "Toering",
  31168. image: {
  31169. source: "./media/characters/sapphire-svell/toering.svg"
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Normal",
  31176. height: math.unit(300, "feet"),
  31177. default: true
  31178. },
  31179. {
  31180. name: "Augmented",
  31181. height: math.unit(1250, "feet")
  31182. },
  31183. {
  31184. name: "Unleashed",
  31185. height: math.unit(3000, "feet")
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31191. {
  31192. side: {
  31193. height: math.unit(2 + 3 / 12, "feet"),
  31194. weight: math.unit(110, "lb"),
  31195. name: "Side",
  31196. image: {
  31197. source: "./media/characters/glitch-flux/side.svg",
  31198. extra: 997 / 805,
  31199. bottom: 20 / 1017
  31200. }
  31201. },
  31202. },
  31203. [
  31204. {
  31205. name: "Normal",
  31206. height: math.unit(2 + 3 / 12, "feet"),
  31207. default: true
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(4, "meters"),
  31216. name: "Front",
  31217. image: {
  31218. source: "./media/characters/mid/front.svg",
  31219. extra: 507 / 476,
  31220. bottom: 17 / 524
  31221. }
  31222. },
  31223. back: {
  31224. height: math.unit(4, "meters"),
  31225. name: "Back",
  31226. image: {
  31227. source: "./media/characters/mid/back.svg",
  31228. extra: 519 / 487,
  31229. bottom: 7 / 526
  31230. }
  31231. },
  31232. stuck: {
  31233. height: math.unit(2.2, "meters"),
  31234. name: "Stuck",
  31235. image: {
  31236. source: "./media/characters/mid/stuck.svg",
  31237. extra: 1951 / 1869,
  31238. bottom: 88 / 2039
  31239. }
  31240. }
  31241. },
  31242. [
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(4, "meters"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Big",
  31250. height: math.unit(10, "meters")
  31251. },
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(800, "meters")
  31255. },
  31256. {
  31257. name: "Megamacro",
  31258. height: math.unit(100, "km")
  31259. },
  31260. {
  31261. name: "Overgrown",
  31262. height: math.unit(1, "parsec")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(2.5, "meters"),
  31271. weight: math.unit(225, "kg"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/iris/front.svg",
  31275. extra: 3348 / 3251,
  31276. bottom: 205 / 3553
  31277. }
  31278. },
  31279. maw: {
  31280. height: math.unit(0.56, "meter"),
  31281. name: "Maw",
  31282. image: {
  31283. source: "./media/characters/iris/maw.svg"
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Mewter cat",
  31290. height: math.unit(1.2, "meters")
  31291. },
  31292. {
  31293. name: "Minimacro",
  31294. height: math.unit(2.5, "meters"),
  31295. default: true
  31296. },
  31297. {
  31298. name: "Macro",
  31299. height: math.unit(180, "meters")
  31300. },
  31301. {
  31302. name: "Megamacro",
  31303. height: math.unit(2746, "meters")
  31304. },
  31305. ]
  31306. ))
  31307. characterMakers.push(() => makeCharacter(
  31308. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31309. {
  31310. front: {
  31311. height: math.unit(6, "feet"),
  31312. weight: math.unit(135, "lb"),
  31313. name: "Front",
  31314. image: {
  31315. source: "./media/characters/axel/front.svg",
  31316. extra: 908 / 908,
  31317. bottom: 58 / 966
  31318. }
  31319. },
  31320. side: {
  31321. height: math.unit(6, "feet"),
  31322. weight: math.unit(135, "lb"),
  31323. name: "Side",
  31324. image: {
  31325. source: "./media/characters/axel/side.svg",
  31326. extra: 958 / 958,
  31327. bottom: 11 / 969
  31328. }
  31329. },
  31330. back: {
  31331. height: math.unit(6, "feet"),
  31332. weight: math.unit(135, "lb"),
  31333. name: "Back",
  31334. image: {
  31335. source: "./media/characters/axel/back.svg",
  31336. extra: 887 / 887,
  31337. bottom: 34 / 921
  31338. }
  31339. },
  31340. head: {
  31341. height: math.unit(1.07, "feet"),
  31342. name: "Head",
  31343. image: {
  31344. source: "./media/characters/axel/head.svg"
  31345. }
  31346. },
  31347. beak: {
  31348. height: math.unit(1.4, "feet"),
  31349. name: "Beak",
  31350. image: {
  31351. source: "./media/characters/axel/beak.svg"
  31352. }
  31353. },
  31354. beakSide: {
  31355. height: math.unit(1.4, "feet"),
  31356. name: "Beak Side",
  31357. image: {
  31358. source: "./media/characters/axel/beak-side.svg"
  31359. }
  31360. },
  31361. sheath: {
  31362. height: math.unit(0.5, "feet"),
  31363. name: "Sheath",
  31364. image: {
  31365. source: "./media/characters/axel/sheath.svg"
  31366. }
  31367. },
  31368. dick: {
  31369. height: math.unit(0.98, "feet"),
  31370. name: "Dick",
  31371. image: {
  31372. source: "./media/characters/axel/dick.svg"
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Macro",
  31379. height: math.unit(68, "meters"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(3.5, "meters"),
  31389. weight: math.unit(1200, "kg"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/joanna/front.svg",
  31393. extra: 1596 / 1488,
  31394. bottom: 29 / 1625
  31395. }
  31396. },
  31397. back: {
  31398. height: math.unit(3.5, "meters"),
  31399. weight: math.unit(1200, "kg"),
  31400. name: "Back",
  31401. image: {
  31402. source: "./media/characters/joanna/back.svg",
  31403. extra: 1594 / 1495,
  31404. bottom: 26 / 1620
  31405. }
  31406. },
  31407. frontShorts: {
  31408. height: math.unit(3.5, "meters"),
  31409. weight: math.unit(1200, "kg"),
  31410. name: "Front (Shorts)",
  31411. image: {
  31412. source: "./media/characters/joanna/front-shorts.svg",
  31413. extra: 1596 / 1488,
  31414. bottom: 29 / 1625
  31415. }
  31416. },
  31417. frontBiker: {
  31418. height: math.unit(3.5, "meters"),
  31419. weight: math.unit(1200, "kg"),
  31420. name: "Front (Biker)",
  31421. image: {
  31422. source: "./media/characters/joanna/front-biker.svg",
  31423. extra: 1596 / 1488,
  31424. bottom: 29 / 1625
  31425. }
  31426. },
  31427. backBiker: {
  31428. height: math.unit(3.5, "meters"),
  31429. weight: math.unit(1200, "kg"),
  31430. name: "Back (Biker)",
  31431. image: {
  31432. source: "./media/characters/joanna/back-biker.svg",
  31433. extra: 1594 / 1495,
  31434. bottom: 88 / 1682
  31435. }
  31436. },
  31437. bikeLeft: {
  31438. height: math.unit(2.4, "meters"),
  31439. weight: math.unit(1600, "kg"),
  31440. name: "Bike (Left)",
  31441. image: {
  31442. source: "./media/characters/joanna/bike-left.svg",
  31443. extra: 720 / 720,
  31444. bottom: 8 / 728
  31445. }
  31446. },
  31447. bikeRight: {
  31448. height: math.unit(2.4, "meters"),
  31449. weight: math.unit(1600, "kg"),
  31450. name: "Bike (Right)",
  31451. image: {
  31452. source: "./media/characters/joanna/bike-right.svg",
  31453. extra: 720 / 720,
  31454. bottom: 8 / 728
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Incognito",
  31461. height: math.unit(3.5, "meters")
  31462. },
  31463. {
  31464. name: "Casual Big",
  31465. height: math.unit(200, "meters")
  31466. },
  31467. {
  31468. name: "Macro",
  31469. height: math.unit(600, "meters")
  31470. },
  31471. {
  31472. name: "Original",
  31473. height: math.unit(20, "km"),
  31474. default: true
  31475. },
  31476. {
  31477. name: "Giga",
  31478. height: math.unit(400, "km")
  31479. },
  31480. {
  31481. name: "Lounging",
  31482. height: math.unit(1500, "km")
  31483. },
  31484. {
  31485. name: "Planetary",
  31486. height: math.unit(200000, "km")
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31492. {
  31493. front: {
  31494. height: math.unit(6, "feet"),
  31495. weight: math.unit(150, "lb"),
  31496. name: "Front",
  31497. image: {
  31498. source: "./media/characters/hugo-sigil/front.svg",
  31499. extra: 522 / 500,
  31500. bottom: 2 / 524
  31501. }
  31502. },
  31503. back: {
  31504. height: math.unit(6, "feet"),
  31505. weight: math.unit(150, "lb"),
  31506. name: "Back",
  31507. image: {
  31508. source: "./media/characters/hugo-sigil/back.svg",
  31509. extra: 519 / 495,
  31510. bottom: 5 / 524
  31511. }
  31512. },
  31513. maw: {
  31514. height: math.unit(1.4, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Maw",
  31517. image: {
  31518. source: "./media/characters/hugo-sigil/maw.svg"
  31519. }
  31520. },
  31521. feet: {
  31522. height: math.unit(1.56, "feet"),
  31523. weight: math.unit(150, "lb"),
  31524. name: "Feet",
  31525. image: {
  31526. source: "./media/characters/hugo-sigil/feet.svg",
  31527. extra: 177 / 177,
  31528. bottom: 12 / 189
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(6, "feet")
  31536. },
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(200, "feet"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(6, "feet"),
  31549. weight: math.unit(150, "lb"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/peri/front.svg",
  31553. extra: 2354 / 2233,
  31554. bottom: 49 / 2403
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Really Small",
  31561. height: math.unit(1, "nm")
  31562. },
  31563. {
  31564. name: "Micro",
  31565. height: math.unit(4, "inches")
  31566. },
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(7, "inches"),
  31570. default: true
  31571. },
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(400, "feet")
  31575. },
  31576. {
  31577. name: "Megamacro",
  31578. height: math.unit(100, "miles")
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31584. {
  31585. frontSlim: {
  31586. height: math.unit(7, "feet"),
  31587. name: "Front (Slim)",
  31588. image: {
  31589. source: "./media/characters/issilora/front-slim.svg",
  31590. extra: 529 / 449,
  31591. bottom: 53 / 582
  31592. }
  31593. },
  31594. sideSlim: {
  31595. height: math.unit(7, "feet"),
  31596. name: "Side (Slim)",
  31597. image: {
  31598. source: "./media/characters/issilora/side-slim.svg",
  31599. extra: 570 / 480,
  31600. bottom: 30 / 600
  31601. }
  31602. },
  31603. backSlim: {
  31604. height: math.unit(7, "feet"),
  31605. name: "Back (Slim)",
  31606. image: {
  31607. source: "./media/characters/issilora/back-slim.svg",
  31608. extra: 537 / 455,
  31609. bottom: 46 / 583
  31610. }
  31611. },
  31612. frontBuff: {
  31613. height: math.unit(7, "feet"),
  31614. name: "Front (Buff)",
  31615. image: {
  31616. source: "./media/characters/issilora/front-buff.svg",
  31617. extra: 2310 / 2035,
  31618. bottom: 335 / 2645
  31619. }
  31620. },
  31621. head: {
  31622. height: math.unit(1.94, "feet"),
  31623. name: "Head",
  31624. image: {
  31625. source: "./media/characters/issilora/head.svg"
  31626. }
  31627. },
  31628. },
  31629. [
  31630. {
  31631. name: "Minimum",
  31632. height: math.unit(7, "feet")
  31633. },
  31634. {
  31635. name: "Comfortable",
  31636. height: math.unit(17, "feet")
  31637. },
  31638. {
  31639. name: "Fun Size",
  31640. height: math.unit(47, "feet")
  31641. },
  31642. {
  31643. name: "Natural Macro",
  31644. height: math.unit(137, "feet"),
  31645. default: true
  31646. },
  31647. {
  31648. name: "Maximum Kaiju",
  31649. height: math.unit(397, "feet")
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31655. {
  31656. front: {
  31657. height: math.unit(50 + 9/12, "feet"),
  31658. weight: math.unit(32.8, "tons"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/irb'iiritaahn/front.svg",
  31662. extra: 1878/1826,
  31663. bottom: 326/2204
  31664. }
  31665. },
  31666. back: {
  31667. height: math.unit(50 + 9/12, "feet"),
  31668. weight: math.unit(32.8, "tons"),
  31669. name: "Back",
  31670. image: {
  31671. source: "./media/characters/irb'iiritaahn/back.svg",
  31672. extra: 2052/2018,
  31673. bottom: 152/2204
  31674. }
  31675. },
  31676. head: {
  31677. height: math.unit(12.86, "feet"),
  31678. name: "Head",
  31679. image: {
  31680. source: "./media/characters/irb'iiritaahn/head.svg"
  31681. }
  31682. },
  31683. maw: {
  31684. height: math.unit(9.66, "feet"),
  31685. name: "Maw",
  31686. image: {
  31687. source: "./media/characters/irb'iiritaahn/maw.svg"
  31688. }
  31689. },
  31690. frontDick: {
  31691. height: math.unit(8.78461, "feet"),
  31692. name: "Front Dick",
  31693. image: {
  31694. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31695. }
  31696. },
  31697. rearDick: {
  31698. height: math.unit(8.78461, "feet"),
  31699. name: "Rear Dick",
  31700. image: {
  31701. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31702. }
  31703. },
  31704. rearDickUnfolded: {
  31705. height: math.unit(8.78, "feet"),
  31706. name: "Rear Dick (Unfolded)",
  31707. image: {
  31708. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31709. }
  31710. },
  31711. wings: {
  31712. height: math.unit(43, "feet"),
  31713. name: "Wings",
  31714. image: {
  31715. source: "./media/characters/irb'iiritaahn/wings.svg"
  31716. }
  31717. },
  31718. },
  31719. [
  31720. {
  31721. name: "Macro",
  31722. height: math.unit(50 + 9/12, "feet"),
  31723. default: true
  31724. },
  31725. ]
  31726. ))
  31727. characterMakers.push(() => makeCharacter(
  31728. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31729. {
  31730. front: {
  31731. height: math.unit(205, "cm"),
  31732. weight: math.unit(102, "kg"),
  31733. name: "Front",
  31734. image: {
  31735. source: "./media/characters/irbisgreif/front.svg",
  31736. extra: 785/706,
  31737. bottom: 13/798
  31738. }
  31739. },
  31740. back: {
  31741. height: math.unit(205, "cm"),
  31742. weight: math.unit(102, "kg"),
  31743. name: "Back",
  31744. image: {
  31745. source: "./media/characters/irbisgreif/back.svg",
  31746. extra: 713/701,
  31747. bottom: 26/739
  31748. }
  31749. },
  31750. frontDressed: {
  31751. height: math.unit(216, "cm"),
  31752. weight: math.unit(102, "kg"),
  31753. name: "Front-dressed",
  31754. image: {
  31755. source: "./media/characters/irbisgreif/front-dressed.svg",
  31756. extra: 902/776,
  31757. bottom: 14/916
  31758. }
  31759. },
  31760. sideDressed: {
  31761. height: math.unit(195, "cm"),
  31762. weight: math.unit(102, "kg"),
  31763. name: "Side-dressed",
  31764. image: {
  31765. source: "./media/characters/irbisgreif/side-dressed.svg",
  31766. extra: 788/688,
  31767. bottom: 21/809
  31768. }
  31769. },
  31770. backDressed: {
  31771. height: math.unit(216, "cm"),
  31772. weight: math.unit(102, "kg"),
  31773. name: "Back-dressed",
  31774. image: {
  31775. source: "./media/characters/irbisgreif/back-dressed.svg",
  31776. extra: 901/783,
  31777. bottom: 10/911
  31778. }
  31779. },
  31780. dick: {
  31781. height: math.unit(0.49, "feet"),
  31782. name: "Dick",
  31783. image: {
  31784. source: "./media/characters/irbisgreif/dick.svg"
  31785. }
  31786. },
  31787. wingTop: {
  31788. height: math.unit(1.93 , "feet"),
  31789. name: "Wing-top",
  31790. image: {
  31791. source: "./media/characters/irbisgreif/wing-top.svg"
  31792. }
  31793. },
  31794. wingBottom: {
  31795. height: math.unit(1.93 , "feet"),
  31796. name: "Wing-bottom",
  31797. image: {
  31798. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31799. }
  31800. },
  31801. },
  31802. [
  31803. {
  31804. name: "Normal",
  31805. height: math.unit(216, "cm"),
  31806. default: true
  31807. },
  31808. ]
  31809. ))
  31810. characterMakers.push(() => makeCharacter(
  31811. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31812. {
  31813. front: {
  31814. height: math.unit(6, "feet"),
  31815. weight: math.unit(150, "lb"),
  31816. name: "Front",
  31817. image: {
  31818. source: "./media/characters/pride/front.svg",
  31819. extra: 1299/1230,
  31820. bottom: 18/1317
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Normal",
  31827. height: math.unit(7, "feet")
  31828. },
  31829. {
  31830. name: "Mini-macro",
  31831. height: math.unit(11, "feet")
  31832. },
  31833. {
  31834. name: "Macro",
  31835. height: math.unit(15, "meters"),
  31836. default: true
  31837. },
  31838. {
  31839. name: "Macro+",
  31840. height: math.unit(40, "meters")
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31846. {
  31847. front: {
  31848. height: math.unit(4 + 2 / 12, "feet"),
  31849. weight: math.unit(95, "lb"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/vaelophis-nyx/front.svg",
  31853. extra: 2532/2330,
  31854. bottom: 0/2532
  31855. }
  31856. },
  31857. back: {
  31858. height: math.unit(4 + 2 / 12, "feet"),
  31859. weight: math.unit(95, "lb"),
  31860. name: "Back",
  31861. image: {
  31862. source: "./media/characters/vaelophis-nyx/back.svg",
  31863. extra: 2484/2361,
  31864. bottom: 0/2484
  31865. }
  31866. },
  31867. feralSide: {
  31868. height: math.unit(2 + 1/12, "feet"),
  31869. weight: math.unit(20, "lb"),
  31870. name: "Feral (Side)",
  31871. image: {
  31872. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31873. extra: 1721/1581,
  31874. bottom: 70/1791
  31875. }
  31876. },
  31877. feralLazing: {
  31878. height: math.unit(1.08, "feet"),
  31879. weight: math.unit(20, "lb"),
  31880. name: "Feral (Lazing)",
  31881. image: {
  31882. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31883. extra: 822/822,
  31884. bottom: 248/1070
  31885. }
  31886. },
  31887. ear: {
  31888. height: math.unit(0.416, "feet"),
  31889. name: "Ear",
  31890. image: {
  31891. source: "./media/characters/vaelophis-nyx/ear.svg"
  31892. }
  31893. },
  31894. eye: {
  31895. height: math.unit(0.0748, "feet"),
  31896. name: "Eye",
  31897. image: {
  31898. source: "./media/characters/vaelophis-nyx/eye.svg"
  31899. }
  31900. },
  31901. mouth: {
  31902. height: math.unit(0.378, "feet"),
  31903. name: "Mouth",
  31904. image: {
  31905. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31906. }
  31907. },
  31908. spade: {
  31909. height: math.unit(0.55, "feet"),
  31910. name: "Spade",
  31911. image: {
  31912. source: "./media/characters/vaelophis-nyx/spade.svg"
  31913. }
  31914. },
  31915. },
  31916. [
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(4 + 2/12, "feet"),
  31920. default: true
  31921. },
  31922. ]
  31923. ))
  31924. characterMakers.push(() => makeCharacter(
  31925. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31926. {
  31927. front: {
  31928. height: math.unit(7, "feet"),
  31929. weight: math.unit(231, "lb"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/flux/front.svg",
  31933. extra: 919/871,
  31934. bottom: 0/919
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(7, "feet"),
  31939. weight: math.unit(231, "lb"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/flux/back.svg",
  31943. extra: 1040/992,
  31944. bottom: 0/1040
  31945. }
  31946. },
  31947. frontDressed: {
  31948. height: math.unit(7, "feet"),
  31949. weight: math.unit(231, "lb"),
  31950. name: "Front (Dressed)",
  31951. image: {
  31952. source: "./media/characters/flux/front-dressed.svg",
  31953. extra: 919/871,
  31954. bottom: 0/919
  31955. }
  31956. },
  31957. feralSide: {
  31958. height: math.unit(5, "feet"),
  31959. weight: math.unit(150, "lb"),
  31960. name: "Feral (Side)",
  31961. image: {
  31962. source: "./media/characters/flux/feral-side.svg",
  31963. extra: 598/528,
  31964. bottom: 28/626
  31965. }
  31966. },
  31967. head: {
  31968. height: math.unit(1.585, "feet"),
  31969. name: "Head",
  31970. image: {
  31971. source: "./media/characters/flux/head.svg"
  31972. }
  31973. },
  31974. headSide: {
  31975. height: math.unit(1.74, "feet"),
  31976. name: "Head (Side)",
  31977. image: {
  31978. source: "./media/characters/flux/head-side.svg"
  31979. }
  31980. },
  31981. headSideFire: {
  31982. height: math.unit(1.76, "feet"),
  31983. name: "Head (Side, Fire)",
  31984. image: {
  31985. source: "./media/characters/flux/head-side-fire.svg"
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Normal",
  31992. height: math.unit(7, "feet"),
  31993. default: true
  31994. },
  31995. ]
  31996. ))
  31997. characterMakers.push(() => makeCharacter(
  31998. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31999. {
  32000. front: {
  32001. height: math.unit(9, "feet"),
  32002. weight: math.unit(1012, "lb"),
  32003. name: "Front",
  32004. image: {
  32005. source: "./media/characters/ulfra-lupae/front.svg",
  32006. extra: 1083/1011,
  32007. bottom: 67/1150
  32008. }
  32009. },
  32010. },
  32011. [
  32012. {
  32013. name: "Micro",
  32014. height: math.unit(6, "inches")
  32015. },
  32016. {
  32017. name: "Socializing",
  32018. height: math.unit(6 + 5/12, "feet")
  32019. },
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(9, "feet"),
  32023. default: true
  32024. },
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(150, "feet")
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32033. {
  32034. front: {
  32035. height: math.unit(5 + 2/12, "feet"),
  32036. weight: math.unit(120, "lb"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/timber/front.svg",
  32040. extra: 2814/2705,
  32041. bottom: 181/2995
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Normal",
  32048. height: math.unit(5 + 2/12, "feet"),
  32049. default: true
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(9, "feet"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/nicki/front.svg",
  32061. extra: 1240/990,
  32062. bottom: 45/1285
  32063. },
  32064. form: "anthro",
  32065. default: true
  32066. },
  32067. side: {
  32068. height: math.unit(9, "feet"),
  32069. name: "Side",
  32070. image: {
  32071. source: "./media/characters/nicki/side.svg",
  32072. extra: 1047/973,
  32073. bottom: 61/1108
  32074. },
  32075. form: "anthro"
  32076. },
  32077. back: {
  32078. height: math.unit(9, "feet"),
  32079. name: "Back",
  32080. image: {
  32081. source: "./media/characters/nicki/back.svg",
  32082. extra: 1006/965,
  32083. bottom: 39/1045
  32084. },
  32085. form: "anthro"
  32086. },
  32087. taur: {
  32088. height: math.unit(15, "feet"),
  32089. name: "Taur",
  32090. image: {
  32091. source: "./media/characters/nicki/taur.svg",
  32092. extra: 1592/1347,
  32093. bottom: 0/1592
  32094. },
  32095. form: "taur",
  32096. default: true
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(9, "feet"),
  32103. form: "anthro",
  32104. default: true
  32105. },
  32106. {
  32107. name: "Normal",
  32108. height: math.unit(15, "feet"),
  32109. form: "taur",
  32110. default: true
  32111. }
  32112. ],
  32113. {
  32114. "anthro": {
  32115. name: "Anthro",
  32116. default: true
  32117. },
  32118. "taur": {
  32119. name: "Taur"
  32120. }
  32121. }
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(7 + 10/12, "feet"),
  32128. weight: math.unit(3.5, "tons"),
  32129. name: "Front",
  32130. image: {
  32131. source: "./media/characters/lee/front.svg",
  32132. extra: 1773/1615,
  32133. bottom: 86/1859
  32134. }
  32135. },
  32136. hand: {
  32137. height: math.unit(1.78, "feet"),
  32138. name: "Hand",
  32139. image: {
  32140. source: "./media/characters/lee/hand.svg"
  32141. }
  32142. },
  32143. maw: {
  32144. height: math.unit(1.18, "feet"),
  32145. name: "Maw",
  32146. image: {
  32147. source: "./media/characters/lee/maw.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(7 + 10/12, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32161. {
  32162. front: {
  32163. height: math.unit(9, "feet"),
  32164. name: "Front",
  32165. image: {
  32166. source: "./media/characters/guti/front.svg",
  32167. extra: 4551/4355,
  32168. bottom: 123/4674
  32169. }
  32170. },
  32171. tongue: {
  32172. height: math.unit(1, "feet"),
  32173. name: "Tongue",
  32174. image: {
  32175. source: "./media/characters/guti/tongue.svg"
  32176. }
  32177. },
  32178. paw: {
  32179. height: math.unit(1.18, "feet"),
  32180. name: "Paw",
  32181. image: {
  32182. source: "./media/characters/guti/paw.svg"
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(9, "feet"),
  32190. default: true
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32196. {
  32197. side: {
  32198. height: math.unit(5, "meters"),
  32199. name: "Side",
  32200. image: {
  32201. source: "./media/characters/vesper/side.svg",
  32202. extra: 1605/1518,
  32203. bottom: 0/1605
  32204. }
  32205. },
  32206. },
  32207. [
  32208. {
  32209. name: "Small",
  32210. height: math.unit(5, "meters")
  32211. },
  32212. {
  32213. name: "Sage",
  32214. height: math.unit(100, "meters"),
  32215. default: true
  32216. },
  32217. {
  32218. name: "Fun Size",
  32219. height: math.unit(600, "meters")
  32220. },
  32221. {
  32222. name: "Goddess",
  32223. height: math.unit(20000, "km")
  32224. },
  32225. {
  32226. name: "Maximum",
  32227. height: math.unit(5, "galaxies")
  32228. },
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32233. {
  32234. front: {
  32235. height: math.unit(6 + 3/12, "feet"),
  32236. weight: math.unit(190, "lb"),
  32237. name: "Front",
  32238. image: {
  32239. source: "./media/characters/gawain/front.svg",
  32240. extra: 2222/2139,
  32241. bottom: 90/2312
  32242. }
  32243. },
  32244. back: {
  32245. height: math.unit(6 + 3/12, "feet"),
  32246. weight: math.unit(190, "lb"),
  32247. name: "Back",
  32248. image: {
  32249. source: "./media/characters/gawain/back.svg",
  32250. extra: 2199/2111,
  32251. bottom: 73/2272
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(6 + 3/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32265. {
  32266. side: {
  32267. height: math.unit(3.5, "meters"),
  32268. weight: math.unit(16000, "lb"),
  32269. name: "Side",
  32270. image: {
  32271. source: "./media/characters/dascalti/side.svg",
  32272. extra: 392/273,
  32273. bottom: 47/439
  32274. }
  32275. },
  32276. breath: {
  32277. height: math.unit(7.4, "feet"),
  32278. name: "Breath",
  32279. image: {
  32280. source: "./media/characters/dascalti/breath.svg"
  32281. }
  32282. },
  32283. fed: {
  32284. height: math.unit(3.6, "meters"),
  32285. weight: math.unit(16000, "lb"),
  32286. name: "Fed",
  32287. image: {
  32288. source: "./media/characters/dascalti/fed.svg",
  32289. extra: 1419/820,
  32290. bottom: 95/1514
  32291. }
  32292. },
  32293. },
  32294. [
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(3.5, "meters"),
  32298. default: true
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(3 + 5/12, "feet"),
  32307. name: "Front",
  32308. image: {
  32309. source: "./media/characters/mauve/front.svg",
  32310. extra: 1126/1033,
  32311. bottom: 65/1191
  32312. }
  32313. },
  32314. side: {
  32315. height: math.unit(3 + 5/12, "feet"),
  32316. name: "Side",
  32317. image: {
  32318. source: "./media/characters/mauve/side.svg",
  32319. extra: 1089/1001,
  32320. bottom: 29/1118
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(3 + 5/12, "feet"),
  32325. name: "Back",
  32326. image: {
  32327. source: "./media/characters/mauve/back.svg",
  32328. extra: 1173/1053,
  32329. bottom: 109/1282
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(3 + 5/12, "feet"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32343. {
  32344. front: {
  32345. height: math.unit(6 + 3/12, "feet"),
  32346. weight: math.unit(430, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/carlos/front.svg",
  32350. extra: 1964/1913,
  32351. bottom: 70/2034
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(6 + 3/12, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32365. {
  32366. back: {
  32367. height: math.unit(5 + 10/12, "feet"),
  32368. weight: math.unit(200, "lb"),
  32369. name: "Back",
  32370. image: {
  32371. source: "./media/characters/jax/back.svg",
  32372. extra: 764/739,
  32373. bottom: 25/789
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(5 + 10/12, "feet"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(8, "feet"),
  32390. weight: math.unit(250, "lb"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/eikthynir/front.svg",
  32394. extra: 1332/1166,
  32395. bottom: 82/1414
  32396. }
  32397. },
  32398. back: {
  32399. height: math.unit(8, "feet"),
  32400. weight: math.unit(250, "lb"),
  32401. name: "Back",
  32402. image: {
  32403. source: "./media/characters/eikthynir/back.svg",
  32404. extra: 1342/1190,
  32405. bottom: 19/1361
  32406. }
  32407. },
  32408. dick: {
  32409. height: math.unit(2.35, "feet"),
  32410. name: "Dick",
  32411. image: {
  32412. source: "./media/characters/eikthynir/dick.svg"
  32413. }
  32414. },
  32415. },
  32416. [
  32417. {
  32418. name: "Normal",
  32419. height: math.unit(8, "feet"),
  32420. default: true
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(99, "meters"),
  32429. weight: math.unit(13000, "tons"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/zlmos/front.svg",
  32433. extra: 2202/1992,
  32434. bottom: 315/2517
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(99, "meters"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(6 + 5/12, "feet"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/purri/front.svg",
  32454. extra: 1698/1610,
  32455. bottom: 32/1730
  32456. }
  32457. },
  32458. frontAlt: {
  32459. height: math.unit(6 + 5/12, "feet"),
  32460. name: "Front (Alt)",
  32461. image: {
  32462. source: "./media/characters/purri/front-alt.svg",
  32463. extra: 450/420,
  32464. bottom: 26/476
  32465. }
  32466. },
  32467. boots: {
  32468. height: math.unit(5.5, "feet"),
  32469. name: "Boots",
  32470. image: {
  32471. source: "./media/characters/purri/boots.svg",
  32472. extra: 905/853,
  32473. bottom: 18/923
  32474. }
  32475. },
  32476. lying: {
  32477. height: math.unit(2, "feet"),
  32478. name: "Lying",
  32479. image: {
  32480. source: "./media/characters/purri/lying.svg",
  32481. extra: 940/843,
  32482. bottom: 146/1086
  32483. }
  32484. },
  32485. devious: {
  32486. height: math.unit(1.77, "feet"),
  32487. name: "Devious",
  32488. image: {
  32489. source: "./media/characters/purri/devious.svg",
  32490. extra: 1440/1155,
  32491. bottom: 147/1587
  32492. }
  32493. },
  32494. bean: {
  32495. height: math.unit(1.94, "feet"),
  32496. name: "Bean",
  32497. image: {
  32498. source: "./media/characters/purri/bean.svg"
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Micro",
  32505. height: math.unit(1, "mm")
  32506. },
  32507. {
  32508. name: "Normal",
  32509. height: math.unit(6 + 5/12, "feet"),
  32510. default: true
  32511. },
  32512. {
  32513. name: "Macro :3c",
  32514. height: math.unit(2, "miles")
  32515. },
  32516. ]
  32517. ))
  32518. characterMakers.push(() => makeCharacter(
  32519. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32520. {
  32521. front: {
  32522. height: math.unit(6 + 2/12, "feet"),
  32523. weight: math.unit(250, "lb"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/moonlight/front.svg",
  32527. extra: 1044/908,
  32528. bottom: 56/1100
  32529. }
  32530. },
  32531. feral: {
  32532. height: math.unit(3 + 1/12, "feet"),
  32533. weight: math.unit(50, "kg"),
  32534. name: "Feral",
  32535. image: {
  32536. source: "./media/characters/moonlight/feral.svg",
  32537. extra: 3705/2791,
  32538. bottom: 145/3850
  32539. }
  32540. },
  32541. paw: {
  32542. height: math.unit(1, "feet"),
  32543. name: "Paw",
  32544. image: {
  32545. source: "./media/characters/moonlight/paw.svg"
  32546. }
  32547. },
  32548. paws: {
  32549. height: math.unit(0.98, "feet"),
  32550. name: "Paws",
  32551. image: {
  32552. source: "./media/characters/moonlight/paws.svg",
  32553. extra: 939/939,
  32554. bottom: 50/989
  32555. }
  32556. },
  32557. mouth: {
  32558. height: math.unit(0.48, "feet"),
  32559. name: "Mouth",
  32560. image: {
  32561. source: "./media/characters/moonlight/mouth.svg"
  32562. }
  32563. },
  32564. dick: {
  32565. height: math.unit(1.46, "feet"),
  32566. name: "Dick",
  32567. image: {
  32568. source: "./media/characters/moonlight/dick.svg"
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(6 + 2/12, "feet"),
  32576. default: true
  32577. },
  32578. {
  32579. name: "Macro",
  32580. height: math.unit(300, "feet")
  32581. },
  32582. {
  32583. name: "Macro+",
  32584. height: math.unit(1, "mile")
  32585. },
  32586. {
  32587. name: "Mt. Moon",
  32588. height: math.unit(5, "miles")
  32589. },
  32590. {
  32591. name: "Megamacro",
  32592. height: math.unit(15, "miles")
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32598. {
  32599. back: {
  32600. height: math.unit(6, "feet"),
  32601. weight: math.unit(150, "lb"),
  32602. name: "Back",
  32603. image: {
  32604. source: "./media/characters/sylen/back.svg",
  32605. extra: 1335/1273,
  32606. bottom: 107/1442
  32607. }
  32608. },
  32609. },
  32610. [
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(5 + 5/12, "feet")
  32614. },
  32615. {
  32616. name: "Megamacro",
  32617. height: math.unit(3, "miles"),
  32618. default: true
  32619. },
  32620. ]
  32621. ))
  32622. characterMakers.push(() => makeCharacter(
  32623. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32624. {
  32625. front: {
  32626. height: math.unit(6, "feet"),
  32627. weight: math.unit(190, "lb"),
  32628. name: "Front",
  32629. image: {
  32630. source: "./media/characters/huttser/front.svg",
  32631. extra: 1152/1058,
  32632. bottom: 23/1175
  32633. }
  32634. },
  32635. side: {
  32636. height: math.unit(6, "feet"),
  32637. weight: math.unit(190, "lb"),
  32638. name: "Side",
  32639. image: {
  32640. source: "./media/characters/huttser/side.svg",
  32641. extra: 1174/1065,
  32642. bottom: 18/1192
  32643. }
  32644. },
  32645. back: {
  32646. height: math.unit(6, "feet"),
  32647. weight: math.unit(190, "lb"),
  32648. name: "Back",
  32649. image: {
  32650. source: "./media/characters/huttser/back.svg",
  32651. extra: 1158/1056,
  32652. bottom: 12/1170
  32653. }
  32654. },
  32655. },
  32656. [
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32661. {
  32662. side: {
  32663. height: math.unit(12 + 9/12, "feet"),
  32664. weight: math.unit(15000, "lb"),
  32665. name: "Side",
  32666. image: {
  32667. source: "./media/characters/faan/side.svg",
  32668. extra: 2747/2697,
  32669. bottom: 0/2747
  32670. }
  32671. },
  32672. front: {
  32673. height: math.unit(12 + 9/12, "feet"),
  32674. weight: math.unit(15000, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/faan/front.svg",
  32678. extra: 607/571,
  32679. bottom: 24/631
  32680. }
  32681. },
  32682. head: {
  32683. height: math.unit(2.85, "feet"),
  32684. name: "Head",
  32685. image: {
  32686. source: "./media/characters/faan/head.svg"
  32687. }
  32688. },
  32689. headAlt: {
  32690. height: math.unit(3.13, "feet"),
  32691. name: "Head-alt",
  32692. image: {
  32693. source: "./media/characters/faan/head-alt.svg"
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(12 + 9/12, "feet"),
  32701. default: true
  32702. },
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32707. {
  32708. front: {
  32709. height: math.unit(6, "feet"),
  32710. weight: math.unit(300, "lb"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/tanio/front.svg",
  32714. extra: 711/673,
  32715. bottom: 25/736
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(6, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(3, "inches"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/noboru/front.svg",
  32735. extra: 1039/932,
  32736. bottom: 18/1057
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Micro",
  32743. height: math.unit(3, "inches"),
  32744. default: true
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32750. {
  32751. front: {
  32752. height: math.unit(1.85, "meters"),
  32753. weight: math.unit(80, "kg"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/daniel-barrett/front.svg",
  32757. extra: 355/337,
  32758. bottom: 9/364
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Pico",
  32765. height: math.unit(0.0433, "mm")
  32766. },
  32767. {
  32768. name: "Nano",
  32769. height: math.unit(1.5, "mm")
  32770. },
  32771. {
  32772. name: "Micro",
  32773. height: math.unit(5.3, "cm"),
  32774. default: true
  32775. },
  32776. {
  32777. name: "Normal",
  32778. height: math.unit(1.85, "meters")
  32779. },
  32780. {
  32781. name: "Macro",
  32782. height: math.unit(64.7, "meters")
  32783. },
  32784. {
  32785. name: "Megamacro",
  32786. height: math.unit(2.26, "km")
  32787. },
  32788. {
  32789. name: "Gigamacro",
  32790. height: math.unit(79, "km")
  32791. },
  32792. {
  32793. name: "Teramacro",
  32794. height: math.unit(2765, "km")
  32795. },
  32796. {
  32797. name: "Petamacro",
  32798. height: math.unit(96678, "km")
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(30, "meters"),
  32807. weight: math.unit(400, "tons"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/zeel/front.svg",
  32811. extra: 2599/2599,
  32812. bottom: 226/2825
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Macro",
  32819. height: math.unit(30, "meters"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(6 + 7/12, "feet"),
  32829. weight: math.unit(210, "lb"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/tarn/front.svg",
  32833. extra: 3517/3220,
  32834. bottom: 91/3608
  32835. }
  32836. },
  32837. back: {
  32838. height: math.unit(6 + 7/12, "feet"),
  32839. weight: math.unit(210, "lb"),
  32840. name: "Back",
  32841. image: {
  32842. source: "./media/characters/tarn/back.svg",
  32843. extra: 3566/3241,
  32844. bottom: 34/3600
  32845. }
  32846. },
  32847. dick: {
  32848. height: math.unit(1.65, "feet"),
  32849. name: "Dick",
  32850. image: {
  32851. source: "./media/characters/tarn/dick.svg"
  32852. }
  32853. },
  32854. paw: {
  32855. height: math.unit(1.80, "feet"),
  32856. name: "Paw",
  32857. image: {
  32858. source: "./media/characters/tarn/paw.svg"
  32859. }
  32860. },
  32861. tongue: {
  32862. height: math.unit(0.97, "feet"),
  32863. name: "Tongue",
  32864. image: {
  32865. source: "./media/characters/tarn/tongue.svg"
  32866. }
  32867. },
  32868. },
  32869. [
  32870. {
  32871. name: "Micro",
  32872. height: math.unit(4, "inches")
  32873. },
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(6 + 7/12, "feet"),
  32877. default: true
  32878. },
  32879. {
  32880. name: "Macro",
  32881. height: math.unit(300, "feet")
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32887. {
  32888. front: {
  32889. height: math.unit(5 + 7/12, "feet"),
  32890. weight: math.unit(80, "kg"),
  32891. name: "Front",
  32892. image: {
  32893. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32894. extra: 3023/2865,
  32895. bottom: 33/3056
  32896. }
  32897. },
  32898. back: {
  32899. height: math.unit(5 + 7/12, "feet"),
  32900. weight: math.unit(80, "kg"),
  32901. name: "Back",
  32902. image: {
  32903. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32904. extra: 3020/2886,
  32905. bottom: 30/3050
  32906. }
  32907. },
  32908. dick: {
  32909. height: math.unit(0.98, "feet"),
  32910. name: "Dick",
  32911. image: {
  32912. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32913. }
  32914. },
  32915. anatomy: {
  32916. height: math.unit(2.86, "feet"),
  32917. name: "Anatomy",
  32918. image: {
  32919. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Really Small",
  32926. height: math.unit(2, "inches")
  32927. },
  32928. {
  32929. name: "Micro",
  32930. height: math.unit(5.583, "inches")
  32931. },
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(5 + 7/12, "feet"),
  32935. default: true
  32936. },
  32937. {
  32938. name: "Macro",
  32939. height: math.unit(67, "feet")
  32940. },
  32941. {
  32942. name: "Megamacro",
  32943. height: math.unit(134, "feet")
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32949. {
  32950. front: {
  32951. height: math.unit(9, "feet"),
  32952. weight: math.unit(120, "lb"),
  32953. name: "Front",
  32954. image: {
  32955. source: "./media/characters/sally/front.svg",
  32956. extra: 1506/1349,
  32957. bottom: 66/1572
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(9, "feet"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32971. {
  32972. front: {
  32973. height: math.unit(8, "feet"),
  32974. weight: math.unit(900, "lb"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/owen/front.svg",
  32978. extra: 1761/1657,
  32979. bottom: 74/1835
  32980. }
  32981. },
  32982. side: {
  32983. height: math.unit(8, "feet"),
  32984. weight: math.unit(900, "lb"),
  32985. name: "Side",
  32986. image: {
  32987. source: "./media/characters/owen/side.svg",
  32988. extra: 1797/1734,
  32989. bottom: 30/1827
  32990. }
  32991. },
  32992. back: {
  32993. height: math.unit(8, "feet"),
  32994. weight: math.unit(900, "lb"),
  32995. name: "Back",
  32996. image: {
  32997. source: "./media/characters/owen/back.svg",
  32998. extra: 1796/1706,
  32999. bottom: 59/1855
  33000. }
  33001. },
  33002. maw: {
  33003. height: math.unit(1.76, "feet"),
  33004. name: "Maw",
  33005. image: {
  33006. source: "./media/characters/owen/maw.svg"
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(8, "feet"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33020. {
  33021. front: {
  33022. height: math.unit(4, "feet"),
  33023. weight: math.unit(400, "lb"),
  33024. name: "Front",
  33025. image: {
  33026. source: "./media/characters/ryth/front.svg",
  33027. extra: 1920/1748,
  33028. bottom: 42/1962
  33029. }
  33030. },
  33031. back: {
  33032. height: math.unit(4, "feet"),
  33033. weight: math.unit(400, "lb"),
  33034. name: "Back",
  33035. image: {
  33036. source: "./media/characters/ryth/back.svg",
  33037. extra: 1897/1690,
  33038. bottom: 89/1986
  33039. }
  33040. },
  33041. mouth: {
  33042. height: math.unit(1.39, "feet"),
  33043. name: "Mouth",
  33044. image: {
  33045. source: "./media/characters/ryth/mouth.svg"
  33046. }
  33047. },
  33048. tailmaw: {
  33049. height: math.unit(1.23, "feet"),
  33050. name: "Tailmaw",
  33051. image: {
  33052. source: "./media/characters/ryth/tailmaw.svg"
  33053. }
  33054. },
  33055. goia: {
  33056. height: math.unit(4, "meters"),
  33057. weight: math.unit(10800, "lb"),
  33058. name: "Goia",
  33059. image: {
  33060. source: "./media/characters/ryth/goia.svg",
  33061. extra: 745/640,
  33062. bottom: 107/852
  33063. }
  33064. },
  33065. goiaFront: {
  33066. height: math.unit(4, "meters"),
  33067. weight: math.unit(10800, "lb"),
  33068. name: "Goia (Front)",
  33069. image: {
  33070. source: "./media/characters/ryth/goia-front.svg",
  33071. extra: 750/586,
  33072. bottom: 114/864
  33073. }
  33074. },
  33075. goiaMaw: {
  33076. height: math.unit(5.55, "feet"),
  33077. name: "Goia Maw",
  33078. image: {
  33079. source: "./media/characters/ryth/goia-maw.svg"
  33080. }
  33081. },
  33082. goiaForepaw: {
  33083. height: math.unit(3.5, "feet"),
  33084. name: "Goia Forepaw",
  33085. image: {
  33086. source: "./media/characters/ryth/goia-forepaw.svg"
  33087. }
  33088. },
  33089. goiaHindpaw: {
  33090. height: math.unit(5.55, "feet"),
  33091. name: "Goia Hindpaw",
  33092. image: {
  33093. source: "./media/characters/ryth/goia-hindpaw.svg"
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(4, "feet"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(7, "feet"),
  33110. weight: math.unit(180, "lb"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/necrolance/front.svg",
  33114. extra: 1062/947,
  33115. bottom: 41/1103
  33116. }
  33117. },
  33118. back: {
  33119. height: math.unit(7, "feet"),
  33120. weight: math.unit(180, "lb"),
  33121. name: "Back",
  33122. image: {
  33123. source: "./media/characters/necrolance/back.svg",
  33124. extra: 1045/984,
  33125. bottom: 14/1059
  33126. }
  33127. },
  33128. wing: {
  33129. height: math.unit(2.67, "feet"),
  33130. name: "Wing",
  33131. image: {
  33132. source: "./media/characters/necrolance/wing.svg"
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(7, "feet"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33146. {
  33147. front: {
  33148. height: math.unit(76, "meters"),
  33149. weight: math.unit(30000, "tons"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/tyler/front.svg",
  33153. extra: 1640/1640,
  33154. bottom: 114/1754
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Macro",
  33161. height: math.unit(76, "meters"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(4 + 11/12, "feet"),
  33171. weight: math.unit(132, "lb"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/icey/front.svg",
  33175. extra: 2750/2550,
  33176. bottom: 33/2783
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(4 + 11/12, "feet"),
  33181. weight: math.unit(132, "lb"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/icey/back.svg",
  33185. extra: 2624/2481,
  33186. bottom: 35/2659
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Normal",
  33193. height: math.unit(4 + 11/12, "feet"),
  33194. default: true
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33200. {
  33201. front: {
  33202. height: math.unit(100, "feet"),
  33203. weight: math.unit(0, "lb"),
  33204. name: "Front",
  33205. image: {
  33206. source: "./media/characters/smile/front.svg",
  33207. extra: 2983/2912,
  33208. bottom: 162/3145
  33209. }
  33210. },
  33211. back: {
  33212. height: math.unit(100, "feet"),
  33213. weight: math.unit(0, "lb"),
  33214. name: "Back",
  33215. image: {
  33216. source: "./media/characters/smile/back.svg",
  33217. extra: 3143/3031,
  33218. bottom: 91/3234
  33219. }
  33220. },
  33221. head: {
  33222. height: math.unit(26.3, "feet"),
  33223. weight: math.unit(0, "lb"),
  33224. name: "Head",
  33225. image: {
  33226. source: "./media/characters/smile/head.svg"
  33227. }
  33228. },
  33229. collar: {
  33230. height: math.unit(5.3, "feet"),
  33231. weight: math.unit(0, "lb"),
  33232. name: "Collar",
  33233. image: {
  33234. source: "./media/characters/smile/collar.svg"
  33235. }
  33236. },
  33237. },
  33238. [
  33239. {
  33240. name: "Macro",
  33241. height: math.unit(100, "feet"),
  33242. default: true
  33243. },
  33244. ]
  33245. ))
  33246. characterMakers.push(() => makeCharacter(
  33247. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33248. {
  33249. dragon: {
  33250. height: math.unit(26, "feet"),
  33251. weight: math.unit(36, "tons"),
  33252. name: "Dragon",
  33253. image: {
  33254. source: "./media/characters/arimphae/dragon.svg",
  33255. extra: 1574/983,
  33256. bottom: 357/1931
  33257. }
  33258. },
  33259. drake: {
  33260. height: math.unit(9, "feet"),
  33261. weight: math.unit(1.5, "tons"),
  33262. name: "Drake",
  33263. image: {
  33264. source: "./media/characters/arimphae/drake.svg",
  33265. extra: 1120/925,
  33266. bottom: 435/1555
  33267. }
  33268. },
  33269. },
  33270. [
  33271. {
  33272. name: "Small",
  33273. height: math.unit(26*5/9, "feet")
  33274. },
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(26, "feet"),
  33278. default: true
  33279. },
  33280. ]
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33284. {
  33285. front: {
  33286. height: math.unit(8 + 9/12, "feet"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/xander/front.svg",
  33290. extra: 1237/974,
  33291. bottom: 94/1331
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(8 + 9/12, "feet"),
  33299. default: true
  33300. },
  33301. {
  33302. name: "Gaze Grabber",
  33303. height: math.unit(13 + 8/12, "feet")
  33304. },
  33305. {
  33306. name: "Jaw Dropper",
  33307. height: math.unit(27, "feet")
  33308. },
  33309. {
  33310. name: "Show Stopper",
  33311. height: math.unit(136, "feet")
  33312. },
  33313. {
  33314. name: "Superstar",
  33315. height: math.unit(1.9e6, "miles")
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33321. {
  33322. side: {
  33323. height: math.unit(2100, "feet"),
  33324. name: "Side",
  33325. image: {
  33326. source: "./media/characters/osiris/side.svg",
  33327. extra: 1105/939,
  33328. bottom: 167/1272
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Macro",
  33335. height: math.unit(2100, "feet"),
  33336. default: true
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33342. {
  33343. front: {
  33344. height: math.unit(6 + 8/12, "feet"),
  33345. weight: math.unit(225, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/rhys-londe/front.svg",
  33349. extra: 2258/2141,
  33350. bottom: 188/2446
  33351. }
  33352. },
  33353. back: {
  33354. height: math.unit(6 + 8/12, "feet"),
  33355. weight: math.unit(225, "lb"),
  33356. name: "Back",
  33357. image: {
  33358. source: "./media/characters/rhys-londe/back.svg",
  33359. extra: 2237/2137,
  33360. bottom: 63/2300
  33361. }
  33362. },
  33363. frontNsfw: {
  33364. height: math.unit(6 + 8/12, "feet"),
  33365. weight: math.unit(225, "lb"),
  33366. name: "Front (NSFW)",
  33367. image: {
  33368. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33369. extra: 2258/2141,
  33370. bottom: 188/2446
  33371. }
  33372. },
  33373. backNsfw: {
  33374. height: math.unit(6 + 8/12, "feet"),
  33375. weight: math.unit(225, "lb"),
  33376. name: "Back (NSFW)",
  33377. image: {
  33378. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33379. extra: 2237/2137,
  33380. bottom: 63/2300
  33381. }
  33382. },
  33383. dick: {
  33384. height: math.unit(30, "inches"),
  33385. name: "Dick",
  33386. image: {
  33387. source: "./media/characters/rhys-londe/dick.svg"
  33388. }
  33389. },
  33390. maw: {
  33391. height: math.unit(1.6, "feet"),
  33392. name: "Maw",
  33393. image: {
  33394. source: "./media/characters/rhys-londe/maw.svg"
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(6 + 8/12, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(3 + 10/12, "feet"),
  33411. weight: math.unit(90, "lb"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/taivas-ensim/front.svg",
  33415. extra: 1327/1216,
  33416. bottom: 96/1423
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(3 + 10/12, "feet"),
  33421. weight: math.unit(90, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/taivas-ensim/back.svg",
  33425. extra: 1355/1247,
  33426. bottom: 11/1366
  33427. }
  33428. },
  33429. frontNsfw: {
  33430. height: math.unit(3 + 10/12, "feet"),
  33431. weight: math.unit(90, "lb"),
  33432. name: "Front (NSFW)",
  33433. image: {
  33434. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33435. extra: 1327/1216,
  33436. bottom: 96/1423
  33437. }
  33438. },
  33439. backNsfw: {
  33440. height: math.unit(3 + 10/12, "feet"),
  33441. weight: math.unit(90, "lb"),
  33442. name: "Back (NSFW)",
  33443. image: {
  33444. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33445. extra: 1355/1247,
  33446. bottom: 11/1366
  33447. }
  33448. },
  33449. },
  33450. [
  33451. {
  33452. name: "Normal",
  33453. height: math.unit(3 + 10/12, "feet"),
  33454. default: true
  33455. },
  33456. ]
  33457. ))
  33458. characterMakers.push(() => makeCharacter(
  33459. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33460. {
  33461. front: {
  33462. height: math.unit(9 + 6/12, "feet"),
  33463. weight: math.unit(940, "lb"),
  33464. name: "Front",
  33465. image: {
  33466. source: "./media/characters/byliss/front.svg",
  33467. extra: 1327/1290,
  33468. bottom: 82/1409
  33469. }
  33470. },
  33471. back: {
  33472. height: math.unit(9 + 6/12, "feet"),
  33473. weight: math.unit(940, "lb"),
  33474. name: "Back",
  33475. image: {
  33476. source: "./media/characters/byliss/back.svg",
  33477. extra: 1376/1349,
  33478. bottom: 9/1385
  33479. }
  33480. },
  33481. frontNsfw: {
  33482. height: math.unit(9 + 6/12, "feet"),
  33483. weight: math.unit(940, "lb"),
  33484. name: "Front (NSFW)",
  33485. image: {
  33486. source: "./media/characters/byliss/front-nsfw.svg",
  33487. extra: 1327/1290,
  33488. bottom: 82/1409
  33489. }
  33490. },
  33491. backNsfw: {
  33492. height: math.unit(9 + 6/12, "feet"),
  33493. weight: math.unit(940, "lb"),
  33494. name: "Back (NSFW)",
  33495. image: {
  33496. source: "./media/characters/byliss/back-nsfw.svg",
  33497. extra: 1376/1349,
  33498. bottom: 9/1385
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(9 + 6/12, "feet"),
  33506. default: true
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33512. {
  33513. front: {
  33514. height: math.unit(5 + 2/12, "feet"),
  33515. weight: math.unit(200, "lb"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/noraly/front.svg",
  33519. extra: 4985/4773,
  33520. bottom: 150/5135
  33521. }
  33522. },
  33523. full: {
  33524. height: math.unit(5 + 2/12, "feet"),
  33525. weight: math.unit(164, "lb"),
  33526. name: "Full",
  33527. image: {
  33528. source: "./media/characters/noraly/full.svg",
  33529. extra: 1114/1059,
  33530. bottom: 35/1149
  33531. }
  33532. },
  33533. fuller: {
  33534. height: math.unit(5 + 2/12, "feet"),
  33535. weight: math.unit(230, "lb"),
  33536. name: "Fuller",
  33537. image: {
  33538. source: "./media/characters/noraly/fuller.svg",
  33539. extra: 1114/1059,
  33540. bottom: 35/1149
  33541. }
  33542. },
  33543. fullest: {
  33544. height: math.unit(5 + 2/12, "feet"),
  33545. weight: math.unit(300, "lb"),
  33546. name: "Fullest",
  33547. image: {
  33548. source: "./media/characters/noraly/fullest.svg",
  33549. extra: 1114/1059,
  33550. bottom: 35/1149
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(5 + 2/12, "feet"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33564. {
  33565. front: {
  33566. height: math.unit(5 + 2/12, "feet"),
  33567. weight: math.unit(210, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/pera/front.svg",
  33571. extra: 1560/1531,
  33572. bottom: 165/1725
  33573. }
  33574. },
  33575. back: {
  33576. height: math.unit(5 + 2/12, "feet"),
  33577. weight: math.unit(210, "lb"),
  33578. name: "Back",
  33579. image: {
  33580. source: "./media/characters/pera/back.svg",
  33581. extra: 1523/1493,
  33582. bottom: 152/1675
  33583. }
  33584. },
  33585. dick: {
  33586. height: math.unit(2.4, "feet"),
  33587. name: "Dick",
  33588. image: {
  33589. source: "./media/characters/pera/dick.svg"
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Normal",
  33596. height: math.unit(5 + 2/12, "feet"),
  33597. default: true
  33598. },
  33599. ]
  33600. ))
  33601. characterMakers.push(() => makeCharacter(
  33602. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33603. {
  33604. front: {
  33605. height: math.unit(12, "feet"),
  33606. weight: math.unit(3200, "lb"),
  33607. name: "Front",
  33608. image: {
  33609. source: "./media/characters/julian/front.svg",
  33610. extra: 2962/2701,
  33611. bottom: 184/3146
  33612. }
  33613. },
  33614. maw: {
  33615. height: math.unit(5.35, "feet"),
  33616. name: "Maw",
  33617. image: {
  33618. source: "./media/characters/julian/maw.svg"
  33619. }
  33620. },
  33621. paw: {
  33622. height: math.unit(3.07, "feet"),
  33623. name: "Paw",
  33624. image: {
  33625. source: "./media/characters/julian/paw.svg"
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Default",
  33632. height: math.unit(12, "feet"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Big",
  33637. height: math.unit(50, "feet")
  33638. },
  33639. {
  33640. name: "Really Big",
  33641. height: math.unit(1, "mile")
  33642. },
  33643. {
  33644. name: "Extremely Big",
  33645. height: math.unit(100, "miles")
  33646. },
  33647. {
  33648. name: "Planet Hugger",
  33649. height: math.unit(200, "megameters")
  33650. },
  33651. {
  33652. name: "Unreasonably Big",
  33653. height: math.unit(1e300, "meters")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33659. {
  33660. solgooleo: {
  33661. height: math.unit(4, "meters"),
  33662. weight: math.unit(6000*1.5, "kg"),
  33663. volume: math.unit(6000, "liters"),
  33664. name: "Solgooleo",
  33665. image: {
  33666. source: "./media/characters/pi/solgooleo.svg",
  33667. extra: 388/331,
  33668. bottom: 29/417
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(4, "meters"),
  33676. default: true
  33677. },
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33682. {
  33683. front: {
  33684. height: math.unit(8, "feet"),
  33685. weight: math.unit(4, "tons"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/shaun/front.svg",
  33689. extra: 503/495,
  33690. bottom: 20/523
  33691. }
  33692. },
  33693. back: {
  33694. height: math.unit(8, "feet"),
  33695. weight: math.unit(4, "tons"),
  33696. name: "Back",
  33697. image: {
  33698. source: "./media/characters/shaun/back.svg",
  33699. extra: 487/480,
  33700. bottom: 20/507
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Lorg",
  33707. height: math.unit(8, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33714. {
  33715. frontAnthro: {
  33716. height: math.unit(7, "feet"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/sini/front-anthro.svg",
  33720. extra: 726/678,
  33721. bottom: 35/761
  33722. },
  33723. form: "anthro",
  33724. default: true
  33725. },
  33726. backAnthro: {
  33727. height: math.unit(7, "feet"),
  33728. name: "Back",
  33729. image: {
  33730. source: "./media/characters/sini/back-anthro.svg",
  33731. extra: 743/701,
  33732. bottom: 12/755
  33733. },
  33734. form: "anthro",
  33735. },
  33736. frontAnthroNsfw: {
  33737. height: math.unit(7, "feet"),
  33738. name: "Front (NSFW)",
  33739. image: {
  33740. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33741. extra: 726/678,
  33742. bottom: 35/761
  33743. },
  33744. form: "anthro"
  33745. },
  33746. backAnthroNsfw: {
  33747. height: math.unit(7, "feet"),
  33748. name: "Back (NSFW)",
  33749. image: {
  33750. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33751. extra: 743/701,
  33752. bottom: 12/755
  33753. },
  33754. form: "anthro",
  33755. },
  33756. mawAnthro: {
  33757. height: math.unit(2.14, "feet"),
  33758. name: "Maw",
  33759. image: {
  33760. source: "./media/characters/sini/maw-anthro.svg"
  33761. },
  33762. form: "anthro"
  33763. },
  33764. dick: {
  33765. height: math.unit(1.45, "feet"),
  33766. name: "Dick",
  33767. image: {
  33768. source: "./media/characters/sini/dick-anthro.svg"
  33769. },
  33770. form: "anthro"
  33771. },
  33772. feral: {
  33773. height: math.unit(16, "feet"),
  33774. name: "Feral",
  33775. image: {
  33776. source: "./media/characters/sini/feral.svg",
  33777. extra: 814/605,
  33778. bottom: 11/825
  33779. },
  33780. form: "feral",
  33781. default: true
  33782. },
  33783. feralNsfw: {
  33784. height: math.unit(16, "feet"),
  33785. name: "Feral (NSFW)",
  33786. image: {
  33787. source: "./media/characters/sini/feral-nsfw.svg",
  33788. extra: 814/605,
  33789. bottom: 11/825
  33790. },
  33791. form: "feral"
  33792. },
  33793. mawFeral: {
  33794. height: math.unit(5.66, "feet"),
  33795. name: "Maw",
  33796. image: {
  33797. source: "./media/characters/sini/maw-feral.svg"
  33798. },
  33799. form: "feral",
  33800. },
  33801. pawFeral: {
  33802. height: math.unit(5.17, "feet"),
  33803. name: "Paw",
  33804. image: {
  33805. source: "./media/characters/sini/paw-feral.svg"
  33806. },
  33807. form: "feral",
  33808. },
  33809. rumpFeral: {
  33810. height: math.unit(13.11, "feet"),
  33811. name: "Rump",
  33812. image: {
  33813. source: "./media/characters/sini/rump-feral.svg"
  33814. },
  33815. form: "feral",
  33816. },
  33817. dickFeral: {
  33818. height: math.unit(1, "feet"),
  33819. name: "Dick",
  33820. image: {
  33821. source: "./media/characters/sini/dick-feral.svg"
  33822. },
  33823. form: "feral",
  33824. },
  33825. eyeFeral: {
  33826. height: math.unit(1.23, "feet"),
  33827. name: "Eye",
  33828. image: {
  33829. source: "./media/characters/sini/eye-feral.svg"
  33830. },
  33831. form: "feral",
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(7, "feet"),
  33838. default: true,
  33839. form: "anthro"
  33840. },
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(16, "feet"),
  33844. default: true,
  33845. form: "feral"
  33846. },
  33847. ],
  33848. {
  33849. "anthro": {
  33850. name: "Anthro",
  33851. default: true
  33852. },
  33853. "feral": {
  33854. name: "Feral",
  33855. }
  33856. }
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33860. {
  33861. side: {
  33862. height: math.unit(47.2, "meters"),
  33863. weight: math.unit(10000, "tons"),
  33864. name: "Side",
  33865. image: {
  33866. source: "./media/characters/raylldo/side.svg",
  33867. extra: 2363/642,
  33868. bottom: 221/2584
  33869. }
  33870. },
  33871. top: {
  33872. height: math.unit(240, "meters"),
  33873. weight: math.unit(10000, "tons"),
  33874. name: "Top",
  33875. image: {
  33876. source: "./media/characters/raylldo/top.svg"
  33877. }
  33878. },
  33879. bottom: {
  33880. height: math.unit(240, "meters"),
  33881. weight: math.unit(10000, "tons"),
  33882. name: "Bottom",
  33883. image: {
  33884. source: "./media/characters/raylldo/bottom.svg"
  33885. }
  33886. },
  33887. head: {
  33888. height: math.unit(38.6, "meters"),
  33889. name: "Head",
  33890. image: {
  33891. source: "./media/characters/raylldo/head.svg",
  33892. extra: 1335/1112,
  33893. bottom: 0/1335
  33894. }
  33895. },
  33896. maw: {
  33897. height: math.unit(16.37, "meters"),
  33898. name: "Maw",
  33899. image: {
  33900. source: "./media/characters/raylldo/maw.svg",
  33901. extra: 883/660,
  33902. bottom: 0/883
  33903. },
  33904. extraAttributes: {
  33905. preyCapacity: {
  33906. name: "Capacity",
  33907. power: 3,
  33908. type: "volume",
  33909. base: math.unit(1000, "people")
  33910. },
  33911. tongueSize: {
  33912. name: "Tongue Size",
  33913. power: 2,
  33914. type: "area",
  33915. base: math.unit(21, "m^2")
  33916. }
  33917. }
  33918. },
  33919. forepaw: {
  33920. height: math.unit(18, "meters"),
  33921. name: "Forepaw",
  33922. image: {
  33923. source: "./media/characters/raylldo/forepaw.svg"
  33924. }
  33925. },
  33926. hindpaw: {
  33927. height: math.unit(23, "meters"),
  33928. name: "Hindpaw",
  33929. image: {
  33930. source: "./media/characters/raylldo/hindpaw.svg"
  33931. }
  33932. },
  33933. genitals: {
  33934. height: math.unit(42, "meters"),
  33935. name: "Genitals",
  33936. image: {
  33937. source: "./media/characters/raylldo/genitals.svg"
  33938. }
  33939. },
  33940. },
  33941. [
  33942. {
  33943. name: "Normal",
  33944. height: math.unit(47.2, "meters"),
  33945. default: true
  33946. },
  33947. ]
  33948. ))
  33949. characterMakers.push(() => makeCharacter(
  33950. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33951. {
  33952. anthroFront: {
  33953. height: math.unit(9, "feet"),
  33954. weight: math.unit(600, "lb"),
  33955. name: "Anthro (Front)",
  33956. image: {
  33957. source: "./media/characters/glint/anthro-front.svg",
  33958. extra: 1097/1018,
  33959. bottom: 28/1125
  33960. }
  33961. },
  33962. anthroBack: {
  33963. height: math.unit(9, "feet"),
  33964. weight: math.unit(600, "lb"),
  33965. name: "Anthro (Back)",
  33966. image: {
  33967. source: "./media/characters/glint/anthro-back.svg",
  33968. extra: 1154/997,
  33969. bottom: 36/1190
  33970. }
  33971. },
  33972. feral: {
  33973. height: math.unit(11, "feet"),
  33974. weight: math.unit(50000, "lb"),
  33975. name: "Feral",
  33976. image: {
  33977. source: "./media/characters/glint/feral.svg",
  33978. extra: 3035/1585,
  33979. bottom: 1169/4204
  33980. }
  33981. },
  33982. dickAnthro: {
  33983. height: math.unit(0.7, "meters"),
  33984. name: "Dick (Anthro)",
  33985. image: {
  33986. source: "./media/characters/glint/dick-anthro.svg"
  33987. }
  33988. },
  33989. dickFeral: {
  33990. height: math.unit(2.65, "meters"),
  33991. name: "Dick (Feral)",
  33992. image: {
  33993. source: "./media/characters/glint/dick-feral.svg"
  33994. }
  33995. },
  33996. slitHidden: {
  33997. height: math.unit(5.85, "meters"),
  33998. name: "Slit (Hidden)",
  33999. image: {
  34000. source: "./media/characters/glint/slit-hidden.svg"
  34001. }
  34002. },
  34003. slitErect: {
  34004. height: math.unit(5.85, "meters"),
  34005. name: "Slit (Erect)",
  34006. image: {
  34007. source: "./media/characters/glint/slit-erect.svg"
  34008. }
  34009. },
  34010. mawAnthro: {
  34011. height: math.unit(0.63, "meters"),
  34012. name: "Maw (Anthro)",
  34013. image: {
  34014. source: "./media/characters/glint/maw.svg"
  34015. }
  34016. },
  34017. mawFeral: {
  34018. height: math.unit(2.89, "meters"),
  34019. name: "Maw (Feral)",
  34020. image: {
  34021. source: "./media/characters/glint/maw.svg"
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Normal",
  34028. height: math.unit(9, "feet"),
  34029. default: true
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34035. {
  34036. side: {
  34037. height: math.unit(15, "feet"),
  34038. weight: math.unit(5000, "kg"),
  34039. name: "Side",
  34040. image: {
  34041. source: "./media/characters/kairne/side.svg",
  34042. extra: 979/811,
  34043. bottom: 13/992
  34044. }
  34045. },
  34046. front: {
  34047. height: math.unit(15, "feet"),
  34048. weight: math.unit(5000, "kg"),
  34049. name: "Front",
  34050. image: {
  34051. source: "./media/characters/kairne/front.svg",
  34052. extra: 908/814,
  34053. bottom: 26/934
  34054. }
  34055. },
  34056. sideNsfw: {
  34057. height: math.unit(15, "feet"),
  34058. weight: math.unit(5000, "kg"),
  34059. name: "Side (NSFW)",
  34060. image: {
  34061. source: "./media/characters/kairne/side-nsfw.svg",
  34062. extra: 979/811,
  34063. bottom: 13/992
  34064. }
  34065. },
  34066. frontNsfw: {
  34067. height: math.unit(15, "feet"),
  34068. weight: math.unit(5000, "kg"),
  34069. name: "Front (NSFW)",
  34070. image: {
  34071. source: "./media/characters/kairne/front-nsfw.svg",
  34072. extra: 908/814,
  34073. bottom: 26/934
  34074. }
  34075. },
  34076. dickCaged: {
  34077. height: math.unit(0.65, "meters"),
  34078. name: "Dick-caged",
  34079. image: {
  34080. source: "./media/characters/kairne/dick-caged.svg"
  34081. }
  34082. },
  34083. dick: {
  34084. height: math.unit(0.79, "meters"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/kairne/dick.svg"
  34088. }
  34089. },
  34090. genitals: {
  34091. height: math.unit(1.29, "meters"),
  34092. name: "Genitals",
  34093. image: {
  34094. source: "./media/characters/kairne/genitals.svg"
  34095. }
  34096. },
  34097. maw: {
  34098. height: math.unit(1.73, "meters"),
  34099. name: "Maw",
  34100. image: {
  34101. source: "./media/characters/kairne/maw.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(15, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(5 + 8/12, "feet"),
  34118. weight: math.unit(139, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/biscuit-jackal/front.svg",
  34122. extra: 2106/1961,
  34123. bottom: 58/2164
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(5 + 8/12, "feet"),
  34128. weight: math.unit(139, "lb"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/biscuit-jackal/back.svg",
  34132. extra: 2132/1976,
  34133. bottom: 57/2189
  34134. }
  34135. },
  34136. werejackal: {
  34137. height: math.unit(6 + 3/12, "feet"),
  34138. weight: math.unit(188, "lb"),
  34139. name: "Werejackal",
  34140. image: {
  34141. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34142. extra: 2373/2178,
  34143. bottom: 53/2426
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(5 + 8/12, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34157. {
  34158. front: {
  34159. height: math.unit(140, "cm"),
  34160. weight: math.unit(45, "kg"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/tayra-white/front.svg",
  34164. extra: 2229/2192,
  34165. bottom: 75/2304
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal",
  34172. height: math.unit(140, "cm"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(4 + 5/12, "feet"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/scoop/front.svg",
  34185. extra: 1257/1136,
  34186. bottom: 69/1326
  34187. }
  34188. },
  34189. back: {
  34190. height: math.unit(4 + 5/12, "feet"),
  34191. name: "Back",
  34192. image: {
  34193. source: "./media/characters/scoop/back.svg",
  34194. extra: 1321/1152,
  34195. bottom: 32/1353
  34196. }
  34197. },
  34198. maw: {
  34199. height: math.unit(0.68, "feet"),
  34200. name: "Maw",
  34201. image: {
  34202. source: "./media/characters/scoop/maw.svg"
  34203. }
  34204. },
  34205. },
  34206. [
  34207. {
  34208. name: "Really Small",
  34209. height: math.unit(1, "mm")
  34210. },
  34211. {
  34212. name: "Micro",
  34213. height: math.unit(1, "inch")
  34214. },
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(4 + 5/12, "feet"),
  34218. default: true
  34219. },
  34220. {
  34221. name: "Macro",
  34222. height: math.unit(200, "feet")
  34223. },
  34224. {
  34225. name: "Megamacro",
  34226. height: math.unit(3240, "feet")
  34227. },
  34228. {
  34229. name: "Teramacro",
  34230. height: math.unit(2500, "miles")
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34236. {
  34237. front: {
  34238. height: math.unit(15 + 7/12, "feet"),
  34239. weight: math.unit(1150, "tons"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/saphinara/front.svg",
  34243. extra: 1837/1643,
  34244. bottom: 84/1921
  34245. },
  34246. form: "normal",
  34247. default: true
  34248. },
  34249. side: {
  34250. height: math.unit(15 + 7/12, "feet"),
  34251. weight: math.unit(1150, "tons"),
  34252. name: "Side",
  34253. image: {
  34254. source: "./media/characters/saphinara/side.svg",
  34255. extra: 605/547,
  34256. bottom: 6/611
  34257. },
  34258. form: "normal"
  34259. },
  34260. back: {
  34261. height: math.unit(15 + 7/12, "feet"),
  34262. weight: math.unit(1150, "tons"),
  34263. name: "Back",
  34264. image: {
  34265. source: "./media/characters/saphinara/back.svg",
  34266. extra: 591/531,
  34267. bottom: 13/604
  34268. },
  34269. form: "normal"
  34270. },
  34271. frontTail: {
  34272. height: math.unit(15 + 7/12, "feet"),
  34273. weight: math.unit(1150, "tons"),
  34274. name: "Front (Full Tail)",
  34275. image: {
  34276. source: "./media/characters/saphinara/front-tail.svg",
  34277. extra: 2256/1630,
  34278. bottom: 261/2517
  34279. },
  34280. form: "normal"
  34281. },
  34282. insides: {
  34283. height: math.unit(11.92, "feet"),
  34284. name: "Insides",
  34285. image: {
  34286. source: "./media/characters/saphinara/insides.svg"
  34287. },
  34288. form: "normal"
  34289. },
  34290. head: {
  34291. height: math.unit(4.17, "feet"),
  34292. name: "Head",
  34293. image: {
  34294. source: "./media/characters/saphinara/head.svg"
  34295. },
  34296. form: "normal"
  34297. },
  34298. tongue: {
  34299. height: math.unit(4.60, "feet"),
  34300. name: "Tongue",
  34301. image: {
  34302. source: "./media/characters/saphinara/tongue.svg"
  34303. },
  34304. form: "normal"
  34305. },
  34306. headEnraged: {
  34307. height: math.unit(5.55, "feet"),
  34308. name: "Head (Enraged)",
  34309. image: {
  34310. source: "./media/characters/saphinara/head-enraged.svg"
  34311. },
  34312. form: "normal"
  34313. },
  34314. wings: {
  34315. height: math.unit(11.95, "feet"),
  34316. name: "Wings",
  34317. image: {
  34318. source: "./media/characters/saphinara/wings.svg"
  34319. },
  34320. form: "normal"
  34321. },
  34322. feathers: {
  34323. height: math.unit(8.92, "feet"),
  34324. name: "Feathers",
  34325. image: {
  34326. source: "./media/characters/saphinara/feathers.svg"
  34327. },
  34328. form: "normal"
  34329. },
  34330. shackles: {
  34331. height: math.unit(2, "feet"),
  34332. name: "Shackles",
  34333. image: {
  34334. source: "./media/characters/saphinara/shackles.svg"
  34335. },
  34336. form: "normal"
  34337. },
  34338. eyes: {
  34339. height: math.unit(1.331, "feet"),
  34340. name: "Eyes",
  34341. image: {
  34342. source: "./media/characters/saphinara/eyes.svg"
  34343. },
  34344. form: "normal"
  34345. },
  34346. eyesEnraged: {
  34347. height: math.unit(1.331, "feet"),
  34348. name: "Eyes (Enraged)",
  34349. image: {
  34350. source: "./media/characters/saphinara/eyes-enraged.svg"
  34351. },
  34352. form: "normal"
  34353. },
  34354. trueFormSide: {
  34355. height: math.unit(200, "feet"),
  34356. weight: math.unit(1e7, "tons"),
  34357. name: "Side",
  34358. image: {
  34359. source: "./media/characters/saphinara/true-form-side.svg",
  34360. extra: 1399/770,
  34361. bottom: 97/1496
  34362. },
  34363. form: "true-form",
  34364. default: true
  34365. },
  34366. trueFormMaw: {
  34367. height: math.unit(71.5, "feet"),
  34368. name: "Maw",
  34369. image: {
  34370. source: "./media/characters/saphinara/true-form-maw.svg",
  34371. extra: 2302/1453,
  34372. bottom: 0/2302
  34373. },
  34374. form: "true-form"
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(15 + 7/12, "feet"),
  34381. default: true,
  34382. form: "normal"
  34383. },
  34384. {
  34385. name: "Angry",
  34386. height: math.unit(30 + 6/12, "feet"),
  34387. form: "normal"
  34388. },
  34389. {
  34390. name: "Enraged",
  34391. height: math.unit(102 + 1/12, "feet"),
  34392. form: "normal"
  34393. },
  34394. {
  34395. name: "True",
  34396. height: math.unit(200, "feet"),
  34397. default: true,
  34398. form: "true-form"
  34399. }
  34400. ],
  34401. {
  34402. "normal": {
  34403. name: "Normal",
  34404. default: true
  34405. },
  34406. "true-form": {
  34407. name: "True Form"
  34408. }
  34409. }
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34413. {
  34414. front: {
  34415. height: math.unit(6 + 8/12, "feet"),
  34416. weight: math.unit(300, "lb"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/jrain/front.svg",
  34420. extra: 3039/2865,
  34421. bottom: 399/3438
  34422. }
  34423. },
  34424. back: {
  34425. height: math.unit(6 + 8/12, "feet"),
  34426. weight: math.unit(300, "lb"),
  34427. name: "Back",
  34428. image: {
  34429. source: "./media/characters/jrain/back.svg",
  34430. extra: 3089/2938,
  34431. bottom: 172/3261
  34432. }
  34433. },
  34434. head: {
  34435. height: math.unit(2.14, "feet"),
  34436. name: "Head",
  34437. image: {
  34438. source: "./media/characters/jrain/head.svg"
  34439. }
  34440. },
  34441. maw: {
  34442. height: math.unit(1.77, "feet"),
  34443. name: "Maw",
  34444. image: {
  34445. source: "./media/characters/jrain/maw.svg"
  34446. }
  34447. },
  34448. leftHand: {
  34449. height: math.unit(1.1, "feet"),
  34450. name: "Left Hand",
  34451. image: {
  34452. source: "./media/characters/jrain/left-hand.svg"
  34453. }
  34454. },
  34455. rightHand: {
  34456. height: math.unit(1.1, "feet"),
  34457. name: "Right Hand",
  34458. image: {
  34459. source: "./media/characters/jrain/right-hand.svg"
  34460. }
  34461. },
  34462. eye: {
  34463. height: math.unit(0.35, "feet"),
  34464. name: "Eye",
  34465. image: {
  34466. source: "./media/characters/jrain/eye.svg"
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Normal",
  34473. height: math.unit(6 + 8/12, "feet"),
  34474. default: true
  34475. },
  34476. {
  34477. name: "Casually Large",
  34478. height: math.unit(25, "feet")
  34479. },
  34480. {
  34481. name: "Giant",
  34482. height: math.unit(100, "feet")
  34483. },
  34484. {
  34485. name: "Kaiju",
  34486. height: math.unit(300, "feet")
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34492. {
  34493. dragon: {
  34494. height: math.unit(5, "meters"),
  34495. name: "Dragon",
  34496. image: {
  34497. source: "./media/characters/sabrina/dragon.svg",
  34498. extra: 3670 / 2365,
  34499. bottom: 333 / 4003
  34500. }
  34501. },
  34502. gryphon: {
  34503. height: math.unit(3, "meters"),
  34504. name: "Gryphon",
  34505. image: {
  34506. source: "./media/characters/sabrina/gryphon.svg",
  34507. extra: 1576 / 945,
  34508. bottom: 71 / 1647
  34509. }
  34510. },
  34511. snake: {
  34512. height: math.unit(12, "meters"),
  34513. name: "Snake",
  34514. image: {
  34515. source: "./media/characters/sabrina/snake.svg",
  34516. extra: 1758 / 1320,
  34517. bottom: 186 / 1944
  34518. }
  34519. },
  34520. collar: {
  34521. height: math.unit(1.86, "meters"),
  34522. name: "Collar",
  34523. image: {
  34524. source: "./media/characters/sabrina/collar.svg"
  34525. }
  34526. },
  34527. eye: {
  34528. height: math.unit(0.53, "meters"),
  34529. name: "Eye",
  34530. image: {
  34531. source: "./media/characters/sabrina/eye.svg"
  34532. }
  34533. },
  34534. foot: {
  34535. height: math.unit(1.86, "meters"),
  34536. name: "Foot",
  34537. image: {
  34538. source: "./media/characters/sabrina/foot.svg"
  34539. }
  34540. },
  34541. hand: {
  34542. height: math.unit(1.32, "meters"),
  34543. name: "Hand",
  34544. image: {
  34545. source: "./media/characters/sabrina/hand.svg"
  34546. }
  34547. },
  34548. head: {
  34549. height: math.unit(2.44, "meters"),
  34550. name: "Head",
  34551. image: {
  34552. source: "./media/characters/sabrina/head.svg"
  34553. }
  34554. },
  34555. headAngry: {
  34556. height: math.unit(2.44, "meters"),
  34557. name: "Head (Angry))",
  34558. image: {
  34559. source: "./media/characters/sabrina/head-angry.svg"
  34560. }
  34561. },
  34562. maw: {
  34563. height: math.unit(1.65, "meters"),
  34564. name: "Maw",
  34565. image: {
  34566. source: "./media/characters/sabrina/maw.svg"
  34567. }
  34568. },
  34569. spikes: {
  34570. height: math.unit(1.69, "meters"),
  34571. name: "Spikes",
  34572. image: {
  34573. source: "./media/characters/sabrina/spikes.svg"
  34574. }
  34575. },
  34576. stomach: {
  34577. height: math.unit(1.15, "meters"),
  34578. name: "Stomach",
  34579. image: {
  34580. source: "./media/characters/sabrina/stomach.svg"
  34581. }
  34582. },
  34583. tongue: {
  34584. height: math.unit(1.27, "meters"),
  34585. name: "Tongue",
  34586. image: {
  34587. source: "./media/characters/sabrina/tongue.svg"
  34588. }
  34589. },
  34590. wingDorsal: {
  34591. height: math.unit(4.85, "meters"),
  34592. name: "Wing (Dorsal)",
  34593. image: {
  34594. source: "./media/characters/sabrina/wing-dorsal.svg"
  34595. }
  34596. },
  34597. wingVentral: {
  34598. height: math.unit(4.85, "meters"),
  34599. name: "Wing (Ventral)",
  34600. image: {
  34601. source: "./media/characters/sabrina/wing-ventral.svg"
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(5, "meters"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34615. {
  34616. frontMaid: {
  34617. height: math.unit(5 + 5/12, "feet"),
  34618. weight: math.unit(130, "lb"),
  34619. name: "Front (Maid)",
  34620. image: {
  34621. source: "./media/characters/midnight-tales/front-maid.svg",
  34622. extra: 489/454,
  34623. bottom: 61/550
  34624. }
  34625. },
  34626. frontFormal: {
  34627. height: math.unit(5 + 5/12, "feet"),
  34628. weight: math.unit(130, "lb"),
  34629. name: "Front (Formal)",
  34630. image: {
  34631. source: "./media/characters/midnight-tales/front-formal.svg",
  34632. extra: 489/454,
  34633. bottom: 61/550
  34634. }
  34635. },
  34636. back: {
  34637. height: math.unit(5 + 5/12, "feet"),
  34638. weight: math.unit(130, "lb"),
  34639. name: "Back",
  34640. image: {
  34641. source: "./media/characters/midnight-tales/back.svg",
  34642. extra: 498/456,
  34643. bottom: 33/531
  34644. }
  34645. },
  34646. frontBeast: {
  34647. height: math.unit(40, "feet"),
  34648. weight: math.unit(64000, "lb"),
  34649. name: "Front (Beast)",
  34650. image: {
  34651. source: "./media/characters/midnight-tales/front-beast.svg",
  34652. extra: 927/860,
  34653. bottom: 53/980
  34654. }
  34655. },
  34656. backBeast: {
  34657. height: math.unit(40, "feet"),
  34658. weight: math.unit(64000, "lb"),
  34659. name: "Back (Beast)",
  34660. image: {
  34661. source: "./media/characters/midnight-tales/back-beast.svg",
  34662. extra: 929/855,
  34663. bottom: 16/945
  34664. }
  34665. },
  34666. footBeast: {
  34667. height: math.unit(6.7, "feet"),
  34668. name: "Foot (Beast)",
  34669. image: {
  34670. source: "./media/characters/midnight-tales/foot-beast.svg"
  34671. }
  34672. },
  34673. headBeast: {
  34674. height: math.unit(8, "feet"),
  34675. name: "Head (Beast)",
  34676. image: {
  34677. source: "./media/characters/midnight-tales/head-beast.svg"
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(5 + 5 / 12, "feet"),
  34685. default: true
  34686. },
  34687. {
  34688. name: "Macro",
  34689. height: math.unit(25, "feet")
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(5 + 10/12, "feet"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/argon/front.svg",
  34701. extra: 2009/1935,
  34702. bottom: 118/2127
  34703. }
  34704. },
  34705. back: {
  34706. height: math.unit(5 + 10/12, "feet"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/argon/back.svg",
  34710. extra: 2047/1992,
  34711. bottom: 20/2067
  34712. }
  34713. },
  34714. frontDressed: {
  34715. height: math.unit(5 + 10/12, "feet"),
  34716. name: "Front (Dressed)",
  34717. image: {
  34718. source: "./media/characters/argon/front-dressed.svg",
  34719. extra: 2009/1935,
  34720. bottom: 118/2127
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(5 + 10/12, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(8 + 6/12, "feet"),
  34737. weight: math.unit(1150, "lb"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/kichi/front.svg",
  34741. extra: 1267/1164,
  34742. bottom: 61/1328
  34743. }
  34744. },
  34745. back: {
  34746. height: math.unit(8 + 6/12, "feet"),
  34747. weight: math.unit(1150, "lb"),
  34748. name: "Back",
  34749. image: {
  34750. source: "./media/characters/kichi/back.svg",
  34751. extra: 1273/1166,
  34752. bottom: 33/1306
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(8 + 6/12, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(6, "feet"),
  34769. weight: math.unit(210, "lb"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/manetel-greyscale/front.svg",
  34773. extra: 350/312,
  34774. bottom: 8/358
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Micro",
  34781. height: math.unit(2, "inches")
  34782. },
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(6, "feet"),
  34786. default: true
  34787. },
  34788. {
  34789. name: "Minimacro",
  34790. height: math.unit(17, "feet")
  34791. },
  34792. {
  34793. name: "Macro",
  34794. height: math.unit(117, "feet")
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34800. {
  34801. side: {
  34802. height: math.unit(5 + 1/12, "feet"),
  34803. weight: math.unit(418, "lb"),
  34804. name: "Side",
  34805. image: {
  34806. source: "./media/characters/softpurr/side.svg",
  34807. extra: 1993/1945,
  34808. bottom: 134/2127
  34809. }
  34810. },
  34811. front: {
  34812. height: math.unit(5 + 1/12, "feet"),
  34813. weight: math.unit(418, "lb"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/softpurr/front.svg",
  34817. extra: 1950/1856,
  34818. bottom: 174/2124
  34819. }
  34820. },
  34821. paw: {
  34822. height: math.unit(1, "feet"),
  34823. name: "Paw",
  34824. image: {
  34825. source: "./media/characters/softpurr/paw.svg"
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(5 + 1/12, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(260, "meters"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/anahita/front.svg",
  34845. extra: 665/635,
  34846. bottom: 89/754
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Macro",
  34853. height: math.unit(260, "meters"),
  34854. default: true
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(4 + 10/12, "feet"),
  34863. weight: math.unit(160, "lb"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/chip-mouse/front.svg",
  34867. extra: 3528/3408,
  34868. bottom: 0/3528
  34869. }
  34870. },
  34871. frontNsfw: {
  34872. height: math.unit(4 + 10/12, "feet"),
  34873. weight: math.unit(160, "lb"),
  34874. name: "Front (NSFW)",
  34875. image: {
  34876. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34877. extra: 3528/3408,
  34878. bottom: 0/3528
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Normal",
  34885. height: math.unit(4 + 10/12, "feet"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34892. {
  34893. side: {
  34894. height: math.unit(10, "feet"),
  34895. weight: math.unit(14000, "lb"),
  34896. name: "Side",
  34897. image: {
  34898. source: "./media/characters/kremm/side.svg",
  34899. extra: 1390/1053,
  34900. bottom: 90/1480
  34901. }
  34902. },
  34903. gut: {
  34904. height: math.unit(5.8, "feet"),
  34905. name: "Gut",
  34906. image: {
  34907. source: "./media/characters/kremm/gut.svg"
  34908. }
  34909. },
  34910. ass: {
  34911. height: math.unit(6.1, "feet"),
  34912. name: "Ass",
  34913. image: {
  34914. source: "./media/characters/kremm/ass.svg"
  34915. }
  34916. },
  34917. jaws: {
  34918. height: math.unit(2.2, "feet"),
  34919. name: "Jaws",
  34920. image: {
  34921. source: "./media/characters/kremm/jaws.svg"
  34922. }
  34923. },
  34924. dick: {
  34925. height: math.unit(4.26, "feet"),
  34926. name: "Dick",
  34927. image: {
  34928. source: "./media/characters/kremm/dick.svg"
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Normal",
  34935. height: math.unit(10, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(30, "stories"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/kai/front.svg",
  34948. extra: 1892/1718,
  34949. bottom: 162/2054
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Macro",
  34956. height: math.unit(30, "stories"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(6 + 4/12, "feet"),
  34966. weight: math.unit(145, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/sykes/front.svg",
  34970. extra: 1321 / 1187,
  34971. bottom: 66 / 1387
  34972. }
  34973. },
  34974. back: {
  34975. height: math.unit(6 + 4/12, "feet"),
  34976. weight: math.unit(145, "lb"),
  34977. name: "Back",
  34978. image: {
  34979. source: "./media/characters/sykes/back.svg",
  34980. extra: 1326/1181,
  34981. bottom: 31/1357
  34982. }
  34983. },
  34984. traditionalOutfit: {
  34985. height: math.unit(6 + 4/12, "feet"),
  34986. weight: math.unit(145, "lb"),
  34987. name: "Traditional Outfit",
  34988. image: {
  34989. source: "./media/characters/sykes/traditional-outfit.svg",
  34990. extra: 1321 / 1187,
  34991. bottom: 66 / 1387
  34992. }
  34993. },
  34994. adventureOutfit: {
  34995. height: math.unit(6 + 4/12, "feet"),
  34996. weight: math.unit(145, "lb"),
  34997. name: "Adventure Outfit",
  34998. image: {
  34999. source: "./media/characters/sykes/adventure-outfit.svg",
  35000. extra: 1321 / 1187,
  35001. bottom: 66 / 1387
  35002. }
  35003. },
  35004. handLeft: {
  35005. height: math.unit(0.9, "feet"),
  35006. name: "Hand (Left)",
  35007. image: {
  35008. source: "./media/characters/sykes/hand-left.svg"
  35009. }
  35010. },
  35011. handRight: {
  35012. height: math.unit(0.839, "feet"),
  35013. name: "Hand (Right)",
  35014. image: {
  35015. source: "./media/characters/sykes/hand-right.svg"
  35016. }
  35017. },
  35018. leftFoot: {
  35019. height: math.unit(1.2, "feet"),
  35020. name: "Foot (Left)",
  35021. image: {
  35022. source: "./media/characters/sykes/foot-left.svg"
  35023. }
  35024. },
  35025. rightFoot: {
  35026. height: math.unit(1.2, "feet"),
  35027. name: "Foot (Right)",
  35028. image: {
  35029. source: "./media/characters/sykes/foot-right.svg"
  35030. }
  35031. },
  35032. maw: {
  35033. height: math.unit(1.93, "feet"),
  35034. name: "Maw",
  35035. image: {
  35036. source: "./media/characters/sykes/maw.svg"
  35037. }
  35038. },
  35039. teeth: {
  35040. height: math.unit(0.51, "feet"),
  35041. name: "Teeth",
  35042. image: {
  35043. source: "./media/characters/sykes/teeth.svg"
  35044. }
  35045. },
  35046. tongue: {
  35047. height: math.unit(2.13, "feet"),
  35048. name: "Tongue",
  35049. image: {
  35050. source: "./media/characters/sykes/tongue.svg"
  35051. }
  35052. },
  35053. uvula: {
  35054. height: math.unit(0.16, "feet"),
  35055. name: "Uvula",
  35056. image: {
  35057. source: "./media/characters/sykes/uvula.svg"
  35058. }
  35059. },
  35060. collar: {
  35061. height: math.unit(0.287, "feet"),
  35062. name: "Collar",
  35063. image: {
  35064. source: "./media/characters/sykes/collar.svg"
  35065. }
  35066. },
  35067. tail: {
  35068. height: math.unit(3.8, "feet"),
  35069. name: "Tail",
  35070. image: {
  35071. source: "./media/characters/sykes/tail.svg"
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Shrunken",
  35078. height: math.unit(5, "inches")
  35079. },
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(6 + 4 / 12, "feet"),
  35083. default: true
  35084. },
  35085. {
  35086. name: "Big",
  35087. height: math.unit(15, "feet")
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(5 + 8/12, "feet"),
  35096. weight: math.unit(190, "lb"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/oven-otter/front.svg",
  35100. extra: 1809/1740,
  35101. bottom: 181/1990
  35102. }
  35103. },
  35104. back: {
  35105. height: math.unit(5 + 8/12, "feet"),
  35106. weight: math.unit(190, "lb"),
  35107. name: "Back",
  35108. image: {
  35109. source: "./media/characters/oven-otter/back.svg",
  35110. extra: 1709/1635,
  35111. bottom: 118/1827
  35112. }
  35113. },
  35114. hand: {
  35115. height: math.unit(1.07, "feet"),
  35116. name: "Hand",
  35117. image: {
  35118. source: "./media/characters/oven-otter/hand.svg"
  35119. }
  35120. },
  35121. beans: {
  35122. height: math.unit(1.74, "feet"),
  35123. name: "Beans",
  35124. image: {
  35125. source: "./media/characters/oven-otter/beans.svg"
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Micro",
  35132. height: math.unit(0.5, "inches")
  35133. },
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(5 + 8/12, "feet"),
  35137. default: true
  35138. },
  35139. {
  35140. name: "Macro",
  35141. height: math.unit(250, "feet")
  35142. },
  35143. {
  35144. name: "Really High",
  35145. height: math.unit(420, "feet")
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(5, "meters"),
  35154. weight: math.unit(292000000000000, "kg"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/devourer/front.svg",
  35158. extra: 1800/1733,
  35159. bottom: 211/2011
  35160. }
  35161. },
  35162. maw: {
  35163. height: math.unit(1.1, "meter"),
  35164. name: "Maw",
  35165. image: {
  35166. source: "./media/characters/devourer/maw.svg"
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Small",
  35173. height: math.unit(3, "meters")
  35174. },
  35175. {
  35176. name: "Large",
  35177. height: math.unit(5, "meters"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35184. {
  35185. front: {
  35186. height: math.unit(6, "feet"),
  35187. weight: math.unit(400, "lb"),
  35188. name: "Front",
  35189. image: {
  35190. source: "./media/characters/ellarby/front.svg",
  35191. extra: 1909/1763,
  35192. bottom: 80/1989
  35193. }
  35194. },
  35195. back: {
  35196. height: math.unit(6, "feet"),
  35197. weight: math.unit(400, "lb"),
  35198. name: "Back",
  35199. image: {
  35200. source: "./media/characters/ellarby/back.svg",
  35201. extra: 1914/1784,
  35202. bottom: 172/2086
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Mischief",
  35209. height: math.unit(18, "inches")
  35210. },
  35211. {
  35212. name: "Trouble",
  35213. height: math.unit(12, "feet")
  35214. },
  35215. {
  35216. name: "Havoc",
  35217. height: math.unit(200, "feet"),
  35218. default: true
  35219. },
  35220. {
  35221. name: "Pandemonium",
  35222. height: math.unit(1, "mile")
  35223. },
  35224. {
  35225. name: "Catastrophe",
  35226. height: math.unit(100, "miles")
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35232. {
  35233. front: {
  35234. height: math.unit(4.7, "meters"),
  35235. weight: math.unit(6500, "kg"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/vex/front.svg",
  35239. extra: 1288/1140,
  35240. bottom: 100/1388
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(4.7, "meters"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35254. {
  35255. normal: {
  35256. height: math.unit(6, "feet"),
  35257. weight: math.unit(350, "lb"),
  35258. name: "Normal",
  35259. image: {
  35260. source: "./media/characters/teshy/normal.svg",
  35261. extra: 1795/1735,
  35262. bottom: 16/1811
  35263. }
  35264. },
  35265. monsterFront: {
  35266. height: math.unit(12, "feet"),
  35267. weight: math.unit(4700, "lb"),
  35268. name: "Monster (Front)",
  35269. image: {
  35270. source: "./media/characters/teshy/monster-front.svg",
  35271. extra: 2042/2034,
  35272. bottom: 128/2170
  35273. }
  35274. },
  35275. monsterSide: {
  35276. height: math.unit(12, "feet"),
  35277. weight: math.unit(4700, "lb"),
  35278. name: "Monster (Side)",
  35279. image: {
  35280. source: "./media/characters/teshy/monster-side.svg",
  35281. extra: 2067/2056,
  35282. bottom: 70/2137
  35283. }
  35284. },
  35285. monsterBack: {
  35286. height: math.unit(12, "feet"),
  35287. weight: math.unit(4700, "lb"),
  35288. name: "Monster (Back)",
  35289. image: {
  35290. source: "./media/characters/teshy/monster-back.svg",
  35291. extra: 1921/1914,
  35292. bottom: 171/2092
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(6, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35306. {
  35307. front: {
  35308. height: math.unit(6, "feet"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/ramey/front.svg",
  35312. extra: 790/787,
  35313. bottom: 27/817
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(6, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(5 + 5/12, "feet"),
  35330. weight: math.unit(120, "lb"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/phirae/front.svg",
  35334. extra: 2491/2436,
  35335. bottom: 38/2529
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(5 + 5/12, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35349. {
  35350. front: {
  35351. height: math.unit(5 + 3/12, "feet"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/stagglas/front.svg",
  35355. extra: 962/882,
  35356. bottom: 53/1015
  35357. }
  35358. },
  35359. feral: {
  35360. height: math.unit(335, "cm"),
  35361. name: "Feral",
  35362. image: {
  35363. source: "./media/characters/stagglas/feral.svg",
  35364. extra: 1732/1090,
  35365. bottom: 48/1780
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(5 + 3/12, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(5 + 4/12, "feet"),
  35382. weight: math.unit(145, "lb"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/starra/front.svg",
  35386. extra: 1790/1691,
  35387. bottom: 91/1881
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(5 + 4/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(2.2, "meters"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35407. extra: 1194/1005,
  35408. bottom: 25/1219
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(2.2, "meters"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35422. {
  35423. side: {
  35424. height: math.unit(8 + 2/12, "feet"),
  35425. weight: math.unit(1240, "lb"),
  35426. name: "Side",
  35427. image: {
  35428. source: "./media/characters/mika-valentine/side.svg",
  35429. extra: 2670/2501,
  35430. bottom: 250/2920
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(8 + 2/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(7 + 2/12, "feet"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/xoltol/front.svg",
  35450. extra: 2212/2124,
  35451. bottom: 84/2296
  35452. }
  35453. },
  35454. side: {
  35455. height: math.unit(7 + 2/12, "feet"),
  35456. name: "Side",
  35457. image: {
  35458. source: "./media/characters/xoltol/side.svg",
  35459. extra: 2273/2197,
  35460. bottom: 26/2299
  35461. }
  35462. },
  35463. hand: {
  35464. height: math.unit(2.5, "feet"),
  35465. name: "Hand",
  35466. image: {
  35467. source: "./media/characters/xoltol/hand.svg"
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Small-ish",
  35474. height: math.unit(5 + 11/12, "feet")
  35475. },
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(7 + 2/12, "feet")
  35479. },
  35480. {
  35481. name: "\"Macro\"",
  35482. height: math.unit(14 + 9/12, "feet"),
  35483. default: true
  35484. },
  35485. {
  35486. name: "Alternate Height",
  35487. height: math.unit(20, "feet")
  35488. },
  35489. {
  35490. name: "Actually Macro",
  35491. height: math.unit(100, "feet")
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(5 + 2/12, "feet"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/kotetsu-redwood/front.svg",
  35503. extra: 1053/942,
  35504. bottom: 60/1113
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(5 + 2/12, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(2.4, "meters"),
  35521. weight: math.unit(125, "kg"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/lilith/front.svg",
  35525. extra: 1590/1513,
  35526. bottom: 203/1793
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Humanoid",
  35533. height: math.unit(2.4, "meters")
  35534. },
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(6, "meters"),
  35538. default: true
  35539. },
  35540. {
  35541. name: "Largest",
  35542. height: math.unit(55, "meters")
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(8 + 4/12, "feet"),
  35551. weight: math.unit(535, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/beh'kah-bolger/front.svg",
  35555. extra: 1660/1603,
  35556. bottom: 37/1697
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(8 + 4/12, "feet"),
  35564. default: true
  35565. },
  35566. {
  35567. name: "Kaiju",
  35568. height: math.unit(250, "feet")
  35569. },
  35570. {
  35571. name: "Still Growing",
  35572. height: math.unit(10, "miles")
  35573. },
  35574. {
  35575. name: "Continental",
  35576. height: math.unit(5000, "miles")
  35577. },
  35578. {
  35579. name: "Final Form",
  35580. height: math.unit(2500000, "miles")
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(7 + 2/12, "feet"),
  35589. weight: math.unit(230, "kg"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/tatyana-milewska/front.svg",
  35593. extra: 1199/1150,
  35594. bottom: 86/1285
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(7 + 2/12, "feet"),
  35602. default: true
  35603. },
  35604. {
  35605. name: "Big",
  35606. height: math.unit(12, "feet")
  35607. },
  35608. {
  35609. name: "Minimacro",
  35610. height: math.unit(20, "feet")
  35611. },
  35612. {
  35613. name: "Macro",
  35614. height: math.unit(120, "feet")
  35615. },
  35616. ]
  35617. ))
  35618. characterMakers.push(() => makeCharacter(
  35619. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35620. {
  35621. front: {
  35622. height: math.unit(7 + 8/12, "feet"),
  35623. weight: math.unit(152, "kg"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/helen-arri/front.svg",
  35627. extra: 440/423,
  35628. bottom: 14/454
  35629. }
  35630. },
  35631. back: {
  35632. height: math.unit(7 + 8/12, "feet"),
  35633. weight: math.unit(152, "kg"),
  35634. name: "Back",
  35635. image: {
  35636. source: "./media/characters/helen-arri/back.svg",
  35637. extra: 443/426,
  35638. bottom: 8/451
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(7 + 8/12, "feet"),
  35646. default: true
  35647. },
  35648. {
  35649. name: "Big",
  35650. height: math.unit(14, "feet")
  35651. },
  35652. {
  35653. name: "Minimacro",
  35654. height: math.unit(24, "feet")
  35655. },
  35656. {
  35657. name: "Macro",
  35658. height: math.unit(140, "feet")
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(6, "meters"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/ehanu-rehu/front.svg",
  35670. extra: 1800/1800,
  35671. bottom: 59/1859
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(6, "meters"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(7 + 3/12, "feet"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/renholder/front.svg",
  35691. extra: 3096/2960,
  35692. bottom: 250/3346
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal Bat",
  35699. height: math.unit(7 + 3/12, "feet"),
  35700. default: true
  35701. },
  35702. {
  35703. name: "Slightly Tall Bat",
  35704. height: math.unit(100, "feet")
  35705. },
  35706. {
  35707. name: "Big Bat",
  35708. height: math.unit(1000, "feet")
  35709. },
  35710. {
  35711. name: "City-Sized Bat",
  35712. height: math.unit(200000, "feet")
  35713. },
  35714. {
  35715. name: "Bigger Bat",
  35716. height: math.unit(10000, "miles")
  35717. },
  35718. {
  35719. name: "Solar Sized Bat",
  35720. height: math.unit(100, "AU")
  35721. },
  35722. {
  35723. name: "Galactic Bat",
  35724. height: math.unit(200000, "lightyears")
  35725. },
  35726. {
  35727. name: "Universally Known Bat",
  35728. height: math.unit(1, "universe")
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(6 + 11/12, "feet"),
  35737. weight: math.unit(250, "lb"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/cookiecat/front.svg",
  35741. extra: 893/827,
  35742. bottom: 14/907
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Micro",
  35749. height: math.unit(3, "inches")
  35750. },
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(6 + 11/12, "feet"),
  35754. default: true
  35755. },
  35756. {
  35757. name: "Macro",
  35758. height: math.unit(100, "feet")
  35759. },
  35760. {
  35761. name: "Macro+",
  35762. height: math.unit(404, "feet")
  35763. },
  35764. {
  35765. name: "Megamacro",
  35766. height: math.unit(165, "miles")
  35767. },
  35768. {
  35769. name: "Planetary",
  35770. height: math.unit(4600, "miles")
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(10 + 3/12, "feet"),
  35779. weight: math.unit(1500, "lb"),
  35780. name: "Front",
  35781. image: {
  35782. source: "./media/characters/tux-kusanagi/front.svg",
  35783. extra: 944/840,
  35784. bottom: 39/983
  35785. }
  35786. },
  35787. back: {
  35788. height: math.unit(10 + 3/12, "feet"),
  35789. weight: math.unit(1500, "lb"),
  35790. name: "Back",
  35791. image: {
  35792. source: "./media/characters/tux-kusanagi/back.svg",
  35793. extra: 941/842,
  35794. bottom: 28/969
  35795. }
  35796. },
  35797. rump: {
  35798. height: math.unit(5.25, "feet"),
  35799. name: "Rump",
  35800. image: {
  35801. source: "./media/characters/tux-kusanagi/rump.svg"
  35802. }
  35803. },
  35804. beak: {
  35805. height: math.unit(1.54, "feet"),
  35806. name: "Beak",
  35807. image: {
  35808. source: "./media/characters/tux-kusanagi/beak.svg"
  35809. }
  35810. },
  35811. },
  35812. [
  35813. {
  35814. name: "Normal",
  35815. height: math.unit(10 + 3/12, "feet"),
  35816. default: true
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(58, "feet"),
  35825. weight: math.unit(200, "tons"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/uzarmazari/front.svg",
  35829. extra: 1575/1455,
  35830. bottom: 152/1727
  35831. }
  35832. },
  35833. back: {
  35834. height: math.unit(58, "feet"),
  35835. weight: math.unit(200, "tons"),
  35836. name: "Back",
  35837. image: {
  35838. source: "./media/characters/uzarmazari/back.svg",
  35839. extra: 1585/1510,
  35840. bottom: 157/1742
  35841. }
  35842. },
  35843. head: {
  35844. height: math.unit(26, "feet"),
  35845. name: "Head",
  35846. image: {
  35847. source: "./media/characters/uzarmazari/head.svg"
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(58, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35861. {
  35862. side: {
  35863. height: math.unit(15, "feet"),
  35864. name: "Side",
  35865. image: {
  35866. source: "./media/characters/akitu/side.svg",
  35867. extra: 1421/1321,
  35868. bottom: 157/1578
  35869. }
  35870. },
  35871. front: {
  35872. height: math.unit(15, "feet"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/akitu/front.svg",
  35876. extra: 1435/1326,
  35877. bottom: 232/1667
  35878. }
  35879. },
  35880. },
  35881. [
  35882. {
  35883. name: "Normal",
  35884. height: math.unit(15, "feet"),
  35885. default: true
  35886. },
  35887. ]
  35888. ))
  35889. characterMakers.push(() => makeCharacter(
  35890. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35891. {
  35892. front: {
  35893. height: math.unit(10 + 8/12, "feet"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/azalie-croixland/front.svg",
  35897. extra: 1972/1856,
  35898. bottom: 31/2003
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Original Height",
  35905. height: math.unit(5 + 4/12, "feet")
  35906. },
  35907. {
  35908. name: "Normal Height",
  35909. height: math.unit(10 + 8/12, "feet"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35916. {
  35917. side: {
  35918. height: math.unit(7 + 1/12, "feet"),
  35919. weight: math.unit(245, "lb"),
  35920. name: "Side",
  35921. image: {
  35922. source: "./media/characters/kavus-kazian/side.svg",
  35923. extra: 349/342,
  35924. bottom: 15/364
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(7 + 1/12, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35938. {
  35939. normalFront: {
  35940. height: math.unit(5 + 11/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/moonlight-rose/normal-front.svg",
  35944. extra: 1980/1825,
  35945. bottom: 18/1998
  35946. },
  35947. form: "normal",
  35948. default: true
  35949. },
  35950. normalBack: {
  35951. height: math.unit(5 + 11/12, "feet"),
  35952. name: "Back",
  35953. image: {
  35954. source: "./media/characters/moonlight-rose/normal-back.svg",
  35955. extra: 2010/1839,
  35956. bottom: 10/2020
  35957. },
  35958. form: "normal"
  35959. },
  35960. demonFront: {
  35961. height: math.unit(1.5, "earths"),
  35962. name: "Front",
  35963. image: {
  35964. source: "./media/characters/moonlight-rose/demon.svg",
  35965. extra: 1400/1294,
  35966. bottom: 45/1445
  35967. },
  35968. form: "demon",
  35969. default: true
  35970. },
  35971. terraFront: {
  35972. height: math.unit(1.5, "earths"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/moonlight-rose/terra.svg"
  35976. },
  35977. form: "terra",
  35978. default: true
  35979. },
  35980. jupiterFront: {
  35981. height: math.unit(69911*2, "km"),
  35982. name: "Front",
  35983. image: {
  35984. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35985. extra: 1367/1286,
  35986. bottom: 55/1422
  35987. },
  35988. form: "jupiter",
  35989. default: true
  35990. },
  35991. neptuneFront: {
  35992. height: math.unit(24622*2, "feet"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35996. extra: 1851/1712,
  35997. bottom: 0/1851
  35998. },
  35999. form: "neptune",
  36000. default: true
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "\"Natural\" Height",
  36006. height: math.unit(5 + 11/12, "feet"),
  36007. form: "normal"
  36008. },
  36009. {
  36010. name: "Smallest comfortable size",
  36011. height: math.unit(40, "meters"),
  36012. form: "normal"
  36013. },
  36014. {
  36015. name: "Common size",
  36016. height: math.unit(50, "km"),
  36017. form: "normal",
  36018. default: true
  36019. },
  36020. {
  36021. name: "Normal",
  36022. height: math.unit(1.5, "earths"),
  36023. form: "demon",
  36024. default: true
  36025. },
  36026. {
  36027. name: "Universal",
  36028. height: math.unit(15, "universes"),
  36029. form: "demon"
  36030. },
  36031. {
  36032. name: "Earth",
  36033. height: math.unit(1.5, "earths"),
  36034. form: "terra",
  36035. default: true
  36036. },
  36037. {
  36038. name: "Super Earth",
  36039. height: math.unit(67.5, "earths"),
  36040. form: "terra"
  36041. },
  36042. {
  36043. name: "Doesn't fit in a solar system...",
  36044. height: math.unit(1, "galaxy"),
  36045. form: "terra"
  36046. },
  36047. {
  36048. name: "Saturn",
  36049. height: math.unit(58232*2, "km"),
  36050. form: "jupiter"
  36051. },
  36052. {
  36053. name: "Jupiter",
  36054. height: math.unit(69911*2, "km"),
  36055. form: "jupiter",
  36056. default: true
  36057. },
  36058. {
  36059. name: "HD 100546 b",
  36060. height: math.unit(482938, "km"),
  36061. form: "jupiter"
  36062. },
  36063. {
  36064. name: "Enceladus",
  36065. height: math.unit(513*2, "km"),
  36066. form: "neptune"
  36067. },
  36068. {
  36069. name: "Europe",
  36070. height: math.unit(1560*2, "km"),
  36071. form: "neptune"
  36072. },
  36073. {
  36074. name: "Neptune",
  36075. height: math.unit(24622*2, "km"),
  36076. form: "neptune",
  36077. default: true
  36078. },
  36079. {
  36080. name: "CoRoT-9b",
  36081. height: math.unit(75067*2, "km"),
  36082. form: "neptune"
  36083. },
  36084. ],
  36085. {
  36086. "normal": {
  36087. name: "Normal",
  36088. default: true
  36089. },
  36090. "demon": {
  36091. name: "Demon"
  36092. },
  36093. "terra": {
  36094. name: "Terra"
  36095. },
  36096. "jupiter": {
  36097. name: "Jupiter"
  36098. },
  36099. "neptune": {
  36100. name: "Neptune"
  36101. }
  36102. }
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36106. {
  36107. front: {
  36108. height: math.unit(16, "feet"),
  36109. weight: math.unit(610, "kg"),
  36110. name: "Front",
  36111. image: {
  36112. source: "./media/characters/huckle/front.svg",
  36113. extra: 1731/1625,
  36114. bottom: 33/1764
  36115. }
  36116. },
  36117. back: {
  36118. height: math.unit(16, "feet"),
  36119. weight: math.unit(610, "kg"),
  36120. name: "Back",
  36121. image: {
  36122. source: "./media/characters/huckle/back.svg",
  36123. extra: 1738/1651,
  36124. bottom: 37/1775
  36125. }
  36126. },
  36127. laughing: {
  36128. height: math.unit(3.75, "feet"),
  36129. name: "Laughing",
  36130. image: {
  36131. source: "./media/characters/huckle/laughing.svg"
  36132. }
  36133. },
  36134. angry: {
  36135. height: math.unit(4.15, "feet"),
  36136. name: "Angry",
  36137. image: {
  36138. source: "./media/characters/huckle/angry.svg"
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(16, "feet"),
  36146. default: true
  36147. },
  36148. {
  36149. name: "Mini Macro",
  36150. height: math.unit(463, "feet")
  36151. },
  36152. {
  36153. name: "Macro",
  36154. height: math.unit(1680, "meters")
  36155. },
  36156. {
  36157. name: "Mega Macro",
  36158. height: math.unit(175, "km")
  36159. },
  36160. {
  36161. name: "Terra Macro",
  36162. height: math.unit(32, "gigameters")
  36163. },
  36164. {
  36165. name: "Multiverse+",
  36166. height: math.unit(2.56e23, "yottameters")
  36167. },
  36168. ]
  36169. ))
  36170. characterMakers.push(() => makeCharacter(
  36171. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36172. {
  36173. front: {
  36174. height: math.unit(6 + 9/12, "feet"),
  36175. weight: math.unit(280, "lb"),
  36176. name: "Front",
  36177. image: {
  36178. source: "./media/characters/candy/front.svg",
  36179. extra: 234/217,
  36180. bottom: 11/245
  36181. }
  36182. },
  36183. },
  36184. [
  36185. {
  36186. name: "Really Small",
  36187. height: math.unit(0.1, "nm")
  36188. },
  36189. {
  36190. name: "Micro",
  36191. height: math.unit(2, "inches")
  36192. },
  36193. {
  36194. name: "Normal",
  36195. height: math.unit(6 + 9/12, "feet"),
  36196. default: true
  36197. },
  36198. {
  36199. name: "Small Macro",
  36200. height: math.unit(69, "feet")
  36201. },
  36202. {
  36203. name: "Macro",
  36204. height: math.unit(160, "feet")
  36205. },
  36206. {
  36207. name: "Megamacro",
  36208. height: math.unit(22000, "miles")
  36209. },
  36210. {
  36211. name: "Gigamacro",
  36212. height: math.unit(50000, "miles")
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(4, "feet"),
  36221. weight: math.unit(90, "lb"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/joey-mcdonald/front.svg",
  36225. extra: 1059/852,
  36226. bottom: 33/1092
  36227. }
  36228. },
  36229. back: {
  36230. height: math.unit(4, "feet"),
  36231. weight: math.unit(90, "lb"),
  36232. name: "Back",
  36233. image: {
  36234. source: "./media/characters/joey-mcdonald/back.svg",
  36235. extra: 1077/879,
  36236. bottom: 5/1082
  36237. }
  36238. },
  36239. frontKobold: {
  36240. height: math.unit(4, "feet"),
  36241. weight: math.unit(100, "lb"),
  36242. name: "Front-kobold",
  36243. image: {
  36244. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36245. extra: 1480/1367,
  36246. bottom: 0/1480
  36247. }
  36248. },
  36249. backKobold: {
  36250. height: math.unit(4, "feet"),
  36251. weight: math.unit(100, "lb"),
  36252. name: "Back-kobold",
  36253. image: {
  36254. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36255. extra: 1449/1361,
  36256. bottom: 0/1449
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(4, "feet"),
  36264. default: true
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36270. {
  36271. front: {
  36272. height: math.unit(12 + 6/12, "feet"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/kass-lockheed/front.svg",
  36276. extra: 354/343,
  36277. bottom: 9/363
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(12 + 6/12, "feet"),
  36282. name: "Back",
  36283. image: {
  36284. source: "./media/characters/kass-lockheed/back.svg",
  36285. extra: 364/352,
  36286. bottom: 3/367
  36287. }
  36288. },
  36289. dick: {
  36290. height: math.unit(3.12, "feet"),
  36291. name: "Dick",
  36292. image: {
  36293. source: "./media/characters/kass-lockheed/dick.svg"
  36294. }
  36295. },
  36296. head: {
  36297. height: math.unit(2.6, "feet"),
  36298. name: "Head",
  36299. image: {
  36300. source: "./media/characters/kass-lockheed/head.svg"
  36301. }
  36302. },
  36303. bleh: {
  36304. height: math.unit(2.85, "feet"),
  36305. name: "Bleh",
  36306. image: {
  36307. source: "./media/characters/kass-lockheed/bleh.svg"
  36308. }
  36309. },
  36310. smug: {
  36311. height: math.unit(2.85, "feet"),
  36312. name: "Smug",
  36313. image: {
  36314. source: "./media/characters/kass-lockheed/smug.svg"
  36315. }
  36316. },
  36317. },
  36318. [
  36319. {
  36320. name: "Normal",
  36321. height: math.unit(12 + 6/12, "feet"),
  36322. default: true
  36323. },
  36324. ]
  36325. ))
  36326. characterMakers.push(() => makeCharacter(
  36327. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36328. {
  36329. front: {
  36330. height: math.unit(6 + 2/12, "feet"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/taylor/front.svg",
  36334. extra: 639/495,
  36335. bottom: 12/651
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(6 + 2/12, "feet"),
  36343. default: true
  36344. },
  36345. {
  36346. name: "Big",
  36347. height: math.unit(15, "feet")
  36348. },
  36349. {
  36350. name: "Lorg",
  36351. height: math.unit(80, "feet")
  36352. },
  36353. {
  36354. name: "Too Lorg",
  36355. height: math.unit(120, "feet")
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(15, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/kaizer/front.svg",
  36367. extra: 1612/1436,
  36368. bottom: 43/1655
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(15, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(2, "feet"),
  36385. weight: math.unit(30, "lb"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/sandy/front.svg",
  36389. extra: 1439/1307,
  36390. bottom: 194/1633
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(2, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(3, "feet"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/mellvi/front.svg",
  36410. extra: 1831/1630,
  36411. bottom: 58/1889
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(3, "feet"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(5 + 11/12, "feet"),
  36428. weight: math.unit(200, "lb"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/shirou/front.svg",
  36432. extra: 2491/2383,
  36433. bottom: 189/2680
  36434. }
  36435. },
  36436. back: {
  36437. height: math.unit(5 + 11/12, "feet"),
  36438. weight: math.unit(200, "lb"),
  36439. name: "Back",
  36440. image: {
  36441. source: "./media/characters/shirou/back.svg",
  36442. extra: 2554/2450,
  36443. bottom: 76/2630
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(5 + 11/12, "feet"),
  36451. default: true
  36452. },
  36453. ]
  36454. ))
  36455. characterMakers.push(() => makeCharacter(
  36456. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36457. {
  36458. front: {
  36459. height: math.unit(6 + 3/12, "feet"),
  36460. weight: math.unit(177, "lb"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/noryu/front.svg",
  36464. extra: 973/885,
  36465. bottom: 10/983
  36466. }
  36467. },
  36468. },
  36469. [
  36470. {
  36471. name: "Normal",
  36472. height: math.unit(6 + 3/12, "feet"),
  36473. default: true
  36474. },
  36475. ]
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36479. {
  36480. front: {
  36481. height: math.unit(5 + 6/12, "feet"),
  36482. weight: math.unit(170, "lb"),
  36483. name: "Front",
  36484. image: {
  36485. source: "./media/characters/mevolas-rubenido/front.svg",
  36486. extra: 2109/1901,
  36487. bottom: 96/2205
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(5 + 6/12, "feet"),
  36495. default: true
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(100, "feet"),
  36504. name: "Front",
  36505. image: {
  36506. source: "./media/characters/dee/front.svg",
  36507. extra: 2153/2036,
  36508. bottom: 59/2212
  36509. }
  36510. },
  36511. back: {
  36512. height: math.unit(100, "feet"),
  36513. name: "Back",
  36514. image: {
  36515. source: "./media/characters/dee/back.svg",
  36516. extra: 2183/2058,
  36517. bottom: 75/2258
  36518. }
  36519. },
  36520. foot: {
  36521. height: math.unit(19.43, "feet"),
  36522. name: "Foot",
  36523. image: {
  36524. source: "./media/characters/dee/foot.svg"
  36525. }
  36526. },
  36527. hoof: {
  36528. height: math.unit(20.6, "feet"),
  36529. name: "Hoof",
  36530. image: {
  36531. source: "./media/characters/dee/hoof.svg"
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Macro",
  36538. height: math.unit(100, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(5 + 6/12, "feet"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/teh/front.svg",
  36551. extra: 1002/847,
  36552. bottom: 62/1064
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(5 + 6/12, "feet"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36566. {
  36567. side: {
  36568. height: math.unit(6 + 1/12, "feet"),
  36569. weight: math.unit(204, "lb"),
  36570. name: "Side",
  36571. image: {
  36572. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36573. extra: 974/775,
  36574. bottom: 169/1143
  36575. }
  36576. },
  36577. sitting: {
  36578. height: math.unit(6 + 2/12, "feet"),
  36579. weight: math.unit(204, "lb"),
  36580. name: "Sitting",
  36581. image: {
  36582. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36583. extra: 1175/964,
  36584. bottom: 378/1553
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(6 + 1/12, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36598. {
  36599. front: {
  36600. height: math.unit(6, "inches"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/tululi/front.svg",
  36604. extra: 1997/1876,
  36605. bottom: 20/2017
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(6, "inches"),
  36613. default: true
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(4 + 1/12, "feet"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/star/front.svg",
  36625. extra: 1493/1189,
  36626. bottom: 48/1541
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(4 + 1/12, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(6 + 3/12, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/comet/front.svg",
  36646. extra: 1681/1462,
  36647. bottom: 26/1707
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(6 + 3/12, "feet"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(950, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/vortex/front.svg",
  36667. extra: 1497/1434,
  36668. bottom: 56/1553
  36669. }
  36670. },
  36671. maw: {
  36672. height: math.unit(285, "feet"),
  36673. name: "Maw",
  36674. image: {
  36675. source: "./media/characters/vortex/maw.svg"
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Macro",
  36682. height: math.unit(950, "feet"),
  36683. default: true
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36689. {
  36690. front: {
  36691. height: math.unit(600, "feet"),
  36692. weight: math.unit(0.02, "grams"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/doodle/front.svg",
  36696. extra: 1578/1413,
  36697. bottom: 37/1615
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Macro",
  36704. height: math.unit(600, "feet"),
  36705. default: true
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36711. {
  36712. front: {
  36713. height: math.unit(6 + 6/12, "feet"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/jai/front.svg",
  36717. extra: 1645/1534,
  36718. bottom: 115/1760
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(6 + 6/12, "feet"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(6 + 8/12, "feet"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/pixel/front.svg",
  36738. extra: 1900/1735,
  36739. bottom: 63/1963
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(6 + 8/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36753. {
  36754. back: {
  36755. height: math.unit(4 + 1/12, "feet"),
  36756. weight: math.unit(75, "lb"),
  36757. name: "Back",
  36758. image: {
  36759. source: "./media/characters/rhett/back.svg",
  36760. extra: 930/878,
  36761. bottom: 25/955
  36762. }
  36763. },
  36764. front: {
  36765. height: math.unit(4 + 1/12, "feet"),
  36766. weight: math.unit(75, "lb"),
  36767. name: "Front",
  36768. image: {
  36769. source: "./media/characters/rhett/front.svg",
  36770. extra: 1682/1586,
  36771. bottom: 92/1774
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Micro",
  36778. height: math.unit(8, "inches")
  36779. },
  36780. {
  36781. name: "Tiny",
  36782. height: math.unit(2, "feet")
  36783. },
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(4 + 1/12, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(3 + 3/12, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/penny/front.svg",
  36799. extra: 1406/1311,
  36800. bottom: 26/1432
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(3 + 3/12, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36814. {
  36815. front: {
  36816. height: math.unit(4 + 11/12, "feet"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/monty/front.svg",
  36820. extra: 1479/1209,
  36821. bottom: 0/1479
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(4 + 11/12, "feet"),
  36829. default: true
  36830. },
  36831. ]
  36832. ))
  36833. characterMakers.push(() => makeCharacter(
  36834. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36835. {
  36836. front: {
  36837. height: math.unit(8 + 4/12, "feet"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/sterling/front.svg",
  36841. extra: 1420/1236,
  36842. bottom: 27/1447
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(8 + 4/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(15, "feet"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/marble/front.svg",
  36862. extra: 973/937,
  36863. bottom: 32/1005
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(15, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36877. {
  36878. front: {
  36879. height: math.unit(3, "inches"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/powder/front.svg",
  36883. extra: 1504/1334,
  36884. bottom: 518/2022
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(3, "inches"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(4 + 5/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/joey-raccoon/front.svg",
  36904. extra: 1273/1197,
  36905. bottom: 0/1273
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(4 + 5/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(8 + 4/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/vick/front.svg",
  36925. extra: 2187/2118,
  36926. bottom: 47/2234
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(8 + 4/12, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36940. {
  36941. front: {
  36942. height: math.unit(5 + 5/12, "feet"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/mitsy/front.svg",
  36946. extra: 1842/1695,
  36947. bottom: 0/1842
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(5 + 5/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(6 + 3/12, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/silvy/front.svg",
  36967. extra: 1995/1836,
  36968. bottom: 225/2220
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(6 + 3/12, "feet"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36982. {
  36983. front: {
  36984. height: math.unit(3 + 8/12, "feet"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/rodney/front.svg",
  36988. extra: 1956/1747,
  36989. bottom: 31/1987
  36990. }
  36991. },
  36992. frontDressed: {
  36993. height: math.unit(2.9, "feet"),
  36994. name: "Front (Dressed)",
  36995. image: {
  36996. source: "./media/characters/rodney/front-dressed.svg",
  36997. extra: 1382/1241,
  36998. bottom: 385/1767
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(3 + 8/12, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(5 + 9/12, "feet"),
  37015. weight: math.unit(194, "lbs"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/zakail-sudekai/front.svg",
  37019. extra: 2696/2533,
  37020. bottom: 248/2944
  37021. }
  37022. },
  37023. maw: {
  37024. height: math.unit(1.35, "feet"),
  37025. name: "Maw",
  37026. image: {
  37027. source: "./media/characters/zakail-sudekai/maw.svg"
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(5 + 9/12, "feet"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(8 + 4/12, "feet"),
  37044. weight: math.unit(1200, "lb"),
  37045. name: "Front",
  37046. image: {
  37047. source: "./media/characters/eleanor/front.svg",
  37048. extra: 1226/1192,
  37049. bottom: 52/1278
  37050. }
  37051. },
  37052. back: {
  37053. height: math.unit(8 + 4/12, "feet"),
  37054. weight: math.unit(1200, "lb"),
  37055. name: "Back",
  37056. image: {
  37057. source: "./media/characters/eleanor/back.svg",
  37058. extra: 1242/1184,
  37059. bottom: 60/1302
  37060. }
  37061. },
  37062. head: {
  37063. height: math.unit(2.62, "feet"),
  37064. name: "Head",
  37065. image: {
  37066. source: "./media/characters/eleanor/head.svg"
  37067. }
  37068. },
  37069. },
  37070. [
  37071. {
  37072. name: "Normal",
  37073. height: math.unit(8 + 4/12, "feet"),
  37074. default: true
  37075. },
  37076. ]
  37077. ))
  37078. characterMakers.push(() => makeCharacter(
  37079. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37080. {
  37081. front: {
  37082. height: math.unit(8 + 4/12, "feet"),
  37083. weight: math.unit(750, "lb"),
  37084. name: "Front",
  37085. image: {
  37086. source: "./media/characters/tanya/front.svg",
  37087. extra: 1749/1615,
  37088. bottom: 33/1782
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(8 + 4/12, "feet"),
  37096. default: true
  37097. },
  37098. ]
  37099. ))
  37100. characterMakers.push(() => makeCharacter(
  37101. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37102. {
  37103. front: {
  37104. height: math.unit(5, "feet"),
  37105. weight: math.unit(225, "lb"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/cindy/front.svg",
  37109. extra: 1320/1250,
  37110. bottom: 42/1362
  37111. }
  37112. },
  37113. frontDressed: {
  37114. height: math.unit(5, "feet"),
  37115. weight: math.unit(225, "lb"),
  37116. name: "Front (Dressed)",
  37117. image: {
  37118. source: "./media/characters/cindy/front-dressed.svg",
  37119. extra: 1320/1250,
  37120. bottom: 42/1362
  37121. }
  37122. },
  37123. back: {
  37124. height: math.unit(5, "feet"),
  37125. weight: math.unit(225, "lb"),
  37126. name: "Back",
  37127. image: {
  37128. source: "./media/characters/cindy/back.svg",
  37129. extra: 1384/1346,
  37130. bottom: 14/1398
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(5, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(6 + 9/12, "feet"),
  37147. weight: math.unit(440, "lb"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/wilbur-owen/front.svg",
  37151. extra: 1575/1448,
  37152. bottom: 72/1647
  37153. }
  37154. },
  37155. back: {
  37156. height: math.unit(6 + 9/12, "feet"),
  37157. weight: math.unit(440, "lb"),
  37158. name: "Back",
  37159. image: {
  37160. source: "./media/characters/wilbur-owen/back.svg",
  37161. extra: 1578/1445,
  37162. bottom: 36/1614
  37163. }
  37164. },
  37165. },
  37166. [
  37167. {
  37168. name: "Normal",
  37169. height: math.unit(6 + 9/12, "feet"),
  37170. default: true
  37171. },
  37172. ]
  37173. ))
  37174. characterMakers.push(() => makeCharacter(
  37175. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37176. {
  37177. front: {
  37178. height: math.unit(6 + 5/12, "feet"),
  37179. weight: math.unit(650, "lb"),
  37180. name: "Front",
  37181. image: {
  37182. source: "./media/characters/keegan/front.svg",
  37183. extra: 2387/2198,
  37184. bottom: 33/2420
  37185. }
  37186. },
  37187. side: {
  37188. height: math.unit(6 + 5/12, "feet"),
  37189. weight: math.unit(650, "lb"),
  37190. name: "Side",
  37191. image: {
  37192. source: "./media/characters/keegan/side.svg",
  37193. extra: 2390/2202,
  37194. bottom: 47/2437
  37195. }
  37196. },
  37197. back: {
  37198. height: math.unit(6 + 5/12, "feet"),
  37199. weight: math.unit(650, "lb"),
  37200. name: "Back",
  37201. image: {
  37202. source: "./media/characters/keegan/back.svg",
  37203. extra: 2418/2268,
  37204. bottom: 15/2433
  37205. }
  37206. },
  37207. frontSfw: {
  37208. height: math.unit(6 + 5/12, "feet"),
  37209. weight: math.unit(650, "lb"),
  37210. name: "Front (SFW)",
  37211. image: {
  37212. source: "./media/characters/keegan/front-sfw.svg",
  37213. extra: 2387/2198,
  37214. bottom: 33/2420
  37215. }
  37216. },
  37217. beans: {
  37218. height: math.unit(1.85, "feet"),
  37219. name: "Beans",
  37220. image: {
  37221. source: "./media/characters/keegan/beans.svg"
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(6 + 5/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(9, "feet"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/colton/front.svg",
  37241. extra: 1589/1326,
  37242. bottom: 139/1728
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(9, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(2 + 9/12, "feet"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/bora/front.svg",
  37262. extra: 1265/1250,
  37263. bottom: 24/1289
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(2 + 9/12, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(8, "feet"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/myu-myu/front.svg",
  37283. extra: 1949/1857,
  37284. bottom: 90/2039
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(8, "feet"),
  37292. default: true
  37293. },
  37294. {
  37295. name: "Big",
  37296. height: math.unit(15, "feet")
  37297. },
  37298. {
  37299. name: "BIG",
  37300. height: math.unit(25, "feet")
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37306. {
  37307. side: {
  37308. height: math.unit(7 + 5/12, "feet"),
  37309. weight: math.unit(2800, "lb"),
  37310. name: "Side",
  37311. image: {
  37312. source: "./media/characters/haloren/side.svg",
  37313. extra: 1793/409,
  37314. bottom: 59/1852
  37315. }
  37316. },
  37317. frontPaw: {
  37318. height: math.unit(2.36, "feet"),
  37319. name: "Front paw",
  37320. image: {
  37321. source: "./media/characters/haloren/front-paw.svg"
  37322. }
  37323. },
  37324. hindPaw: {
  37325. height: math.unit(3.18, "feet"),
  37326. name: "Hind paw",
  37327. image: {
  37328. source: "./media/characters/haloren/hind-paw.svg"
  37329. }
  37330. },
  37331. maw: {
  37332. height: math.unit(5.05, "feet"),
  37333. name: "Maw",
  37334. image: {
  37335. source: "./media/characters/haloren/maw.svg"
  37336. }
  37337. },
  37338. dick: {
  37339. height: math.unit(2.90, "feet"),
  37340. name: "Dick",
  37341. image: {
  37342. source: "./media/characters/haloren/dick.svg"
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(7 + 5/12, "feet"),
  37350. default: true
  37351. },
  37352. {
  37353. name: "Enhanced",
  37354. height: math.unit(14 + 3/12, "feet")
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(171, "cm"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/kimmy/front.svg",
  37366. extra: 1491/1435,
  37367. bottom: 53/1544
  37368. }
  37369. },
  37370. },
  37371. [
  37372. {
  37373. name: "Small",
  37374. height: math.unit(9, "cm")
  37375. },
  37376. {
  37377. name: "Normal",
  37378. height: math.unit(171, "cm"),
  37379. default: true
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(8, "feet"),
  37388. weight: math.unit(300, "lb"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/galeboomer/front.svg",
  37392. extra: 4651/4415,
  37393. bottom: 162/4813
  37394. }
  37395. },
  37396. back: {
  37397. height: math.unit(8, "feet"),
  37398. weight: math.unit(300, "lb"),
  37399. name: "Back",
  37400. image: {
  37401. source: "./media/characters/galeboomer/back.svg",
  37402. extra: 4544/4314,
  37403. bottom: 16/4560
  37404. }
  37405. },
  37406. frontAlt: {
  37407. height: math.unit(8, "feet"),
  37408. weight: math.unit(300, "lb"),
  37409. name: "Front (Alt)",
  37410. image: {
  37411. source: "./media/characters/galeboomer/front-alt.svg",
  37412. extra: 4458/4228,
  37413. bottom: 68/4526
  37414. }
  37415. },
  37416. maw: {
  37417. height: math.unit(1.2, "feet"),
  37418. name: "Maw",
  37419. image: {
  37420. source: "./media/characters/galeboomer/maw.svg"
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(8, "feet"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(5 + 9/12, "feet"),
  37437. weight: math.unit(120, "lb"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/chyr/front.svg",
  37441. extra: 1323/1254,
  37442. bottom: 63/1386
  37443. }
  37444. },
  37445. back: {
  37446. height: math.unit(5 + 9/12, "feet"),
  37447. weight: math.unit(120, "lb"),
  37448. name: "Back",
  37449. image: {
  37450. source: "./media/characters/chyr/back.svg",
  37451. extra: 1323/1252,
  37452. bottom: 48/1371
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(5 + 9/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(7, "feet"),
  37469. weight: math.unit(310, "lb"),
  37470. name: "Front",
  37471. image: {
  37472. source: "./media/characters/solarus/front.svg",
  37473. extra: 2415/2021,
  37474. bottom: 103/2518
  37475. }
  37476. },
  37477. back: {
  37478. height: math.unit(7, "feet"),
  37479. weight: math.unit(310, "lb"),
  37480. name: "Back",
  37481. image: {
  37482. source: "./media/characters/solarus/back.svg",
  37483. extra: 2463/2089,
  37484. bottom: 79/2542
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(7, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(16, "feet"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37504. extra: 1844/1780,
  37505. bottom: 58/1902
  37506. }
  37507. },
  37508. winterCoat: {
  37509. height: math.unit(16, "feet"),
  37510. name: "Winter Coat",
  37511. image: {
  37512. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37513. extra: 1807/1775,
  37514. bottom: 69/1876
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(16, "feet"),
  37522. default: true
  37523. },
  37524. {
  37525. name: "Chicago Size",
  37526. height: math.unit(560, "feet")
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(11 + 6/12, "feet"),
  37535. weight: math.unit(1366, "lb"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/lexor/front.svg",
  37539. extra: 1560/1481,
  37540. bottom: 211/1771
  37541. }
  37542. },
  37543. back: {
  37544. height: math.unit(11 + 6/12, "feet"),
  37545. weight: math.unit(1366, "lb"),
  37546. name: "Back",
  37547. image: {
  37548. source: "./media/characters/lexor/back.svg",
  37549. extra: 1614/1533,
  37550. bottom: 76/1690
  37551. }
  37552. },
  37553. maw: {
  37554. height: math.unit(3, "feet"),
  37555. name: "Maw",
  37556. image: {
  37557. source: "./media/characters/lexor/maw.svg"
  37558. }
  37559. },
  37560. dick: {
  37561. height: math.unit(2.59, "feet"),
  37562. name: "Dick",
  37563. image: {
  37564. source: "./media/characters/lexor/dick.svg"
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(11 + 6/12, "feet"),
  37572. default: true
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(5 + 8/12, "feet"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/magnum/front.svg",
  37584. extra: 942/855,
  37585. bottom: 26/968
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(5 + 8/12, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(18 + 4/12, "feet"),
  37602. weight: math.unit(1500, "kg"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/solas-sharpsman/front.svg",
  37606. extra: 1698/1589,
  37607. bottom: 0/1698
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(18 + 4/12, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37621. {
  37622. front: {
  37623. height: math.unit(5 + 5/12, "feet"),
  37624. weight: math.unit(180, "lb"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/october/front.svg",
  37628. extra: 1800/1650,
  37629. bottom: 0/1800
  37630. }
  37631. },
  37632. frontNsfw: {
  37633. height: math.unit(5 + 5/12, "feet"),
  37634. weight: math.unit(180, "lb"),
  37635. name: "Front (NSFW)",
  37636. image: {
  37637. source: "./media/characters/october/front-nsfw.svg",
  37638. extra: 1392/1307,
  37639. bottom: 42/1434
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(5 + 5/12, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(8 + 6/12, "feet"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/essynkardi/front.svg",
  37659. extra: 1914/1846,
  37660. bottom: 22/1936
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(8 + 6/12, "feet"),
  37668. default: true
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(6 + 6/12, "feet"),
  37677. weight: math.unit(7, "lb"),
  37678. name: "Front",
  37679. image: {
  37680. source: "./media/characters/icky/front.svg",
  37681. extra: 813/782,
  37682. bottom: 66/879
  37683. }
  37684. },
  37685. back: {
  37686. height: math.unit(6 + 6/12, "feet"),
  37687. weight: math.unit(7, "lb"),
  37688. name: "Back",
  37689. image: {
  37690. source: "./media/characters/icky/back.svg",
  37691. extra: 754/735,
  37692. bottom: 56/810
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(6 + 6/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(15, "feet"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/rojas/front.svg",
  37712. extra: 1462/1408,
  37713. bottom: 95/1557
  37714. }
  37715. },
  37716. back: {
  37717. height: math.unit(15, "feet"),
  37718. name: "Back",
  37719. image: {
  37720. source: "./media/characters/rojas/back.svg",
  37721. extra: 1023/954,
  37722. bottom: 28/1051
  37723. }
  37724. },
  37725. },
  37726. [
  37727. {
  37728. name: "Normal",
  37729. height: math.unit(15, "feet"),
  37730. default: true
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37736. {
  37737. frontHuman: {
  37738. height: math.unit(5 + 7/12, "feet"),
  37739. name: "Front (Human)",
  37740. image: {
  37741. source: "./media/characters/alek-dryagan/front-human.svg",
  37742. extra: 1687/1667,
  37743. bottom: 69/1756
  37744. }
  37745. },
  37746. backHuman: {
  37747. height: math.unit(5 + 7/12, "feet"),
  37748. name: "Back (Human)",
  37749. image: {
  37750. source: "./media/characters/alek-dryagan/back-human.svg",
  37751. extra: 1670/1649,
  37752. bottom: 65/1735
  37753. }
  37754. },
  37755. frontDemi: {
  37756. height: math.unit(65, "feet"),
  37757. name: "Front (Demi)",
  37758. image: {
  37759. source: "./media/characters/alek-dryagan/front-demi.svg",
  37760. extra: 1669/1642,
  37761. bottom: 49/1718
  37762. }
  37763. },
  37764. backDemi: {
  37765. height: math.unit(65, "feet"),
  37766. name: "Back (Demi)",
  37767. image: {
  37768. source: "./media/characters/alek-dryagan/back-demi.svg",
  37769. extra: 1658/1637,
  37770. bottom: 40/1698
  37771. }
  37772. },
  37773. mawHuman: {
  37774. height: math.unit(0.3, "feet"),
  37775. name: "Maw (Human)",
  37776. image: {
  37777. source: "./media/characters/alek-dryagan/maw-human.svg"
  37778. }
  37779. },
  37780. mawDemi: {
  37781. height: math.unit(3.8, "feet"),
  37782. name: "Maw (Demi)",
  37783. image: {
  37784. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(5 + 7/12, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37798. {
  37799. frontHuman: {
  37800. height: math.unit(5 + 2/12, "feet"),
  37801. name: "Front (Human)",
  37802. image: {
  37803. source: "./media/characters/gen/front-human.svg",
  37804. extra: 1627/1538,
  37805. bottom: 71/1698
  37806. }
  37807. },
  37808. backHuman: {
  37809. height: math.unit(5 + 2/12, "feet"),
  37810. name: "Back (Human)",
  37811. image: {
  37812. source: "./media/characters/gen/back-human.svg",
  37813. extra: 1638/1548,
  37814. bottom: 69/1707
  37815. }
  37816. },
  37817. frontDemi: {
  37818. height: math.unit(5 + 2/12, "feet"),
  37819. name: "Front (Demi)",
  37820. image: {
  37821. source: "./media/characters/gen/front-demi.svg",
  37822. extra: 1627/1538,
  37823. bottom: 71/1698
  37824. }
  37825. },
  37826. backDemi: {
  37827. height: math.unit(5 + 2/12, "feet"),
  37828. name: "Back (Demi)",
  37829. image: {
  37830. source: "./media/characters/gen/back-demi.svg",
  37831. extra: 1638/1548,
  37832. bottom: 69/1707
  37833. }
  37834. },
  37835. },
  37836. [
  37837. {
  37838. name: "Normal",
  37839. height: math.unit(5 + 2/12, "feet"),
  37840. default: true
  37841. },
  37842. ]
  37843. ))
  37844. characterMakers.push(() => makeCharacter(
  37845. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37846. {
  37847. frontImp: {
  37848. height: math.unit(1 + 11/12, "feet"),
  37849. name: "Front (Imp)",
  37850. image: {
  37851. source: "./media/characters/max-kobold/front-imp.svg",
  37852. extra: 1238/1134,
  37853. bottom: 81/1319
  37854. }
  37855. },
  37856. backImp: {
  37857. height: math.unit(1 + 11/12, "feet"),
  37858. name: "Back (Imp)",
  37859. image: {
  37860. source: "./media/characters/max-kobold/back-imp.svg",
  37861. extra: 1334/1175,
  37862. bottom: 34/1368
  37863. }
  37864. },
  37865. frontDemi: {
  37866. height: math.unit(5 + 9/12, "feet"),
  37867. name: "Front (Demi)",
  37868. image: {
  37869. source: "./media/characters/max-kobold/front-demi.svg",
  37870. extra: 1715/1685,
  37871. bottom: 54/1769
  37872. }
  37873. },
  37874. backDemi: {
  37875. height: math.unit(5 + 9/12, "feet"),
  37876. name: "Back (Demi)",
  37877. image: {
  37878. source: "./media/characters/max-kobold/back-demi.svg",
  37879. extra: 1752/1729,
  37880. bottom: 41/1793
  37881. }
  37882. },
  37883. handImp: {
  37884. height: math.unit(0.45, "feet"),
  37885. name: "Hand (Imp)",
  37886. image: {
  37887. source: "./media/characters/max-kobold/hand.svg"
  37888. }
  37889. },
  37890. pawImp: {
  37891. height: math.unit(0.46, "feet"),
  37892. name: "Paw (Imp)",
  37893. image: {
  37894. source: "./media/characters/max-kobold/paw.svg"
  37895. }
  37896. },
  37897. handDemi: {
  37898. height: math.unit(0.80, "feet"),
  37899. name: "Hand (Demi)",
  37900. image: {
  37901. source: "./media/characters/max-kobold/hand.svg"
  37902. }
  37903. },
  37904. pawDemi: {
  37905. height: math.unit(1.1, "feet"),
  37906. name: "Paw (Demi)",
  37907. image: {
  37908. source: "./media/characters/max-kobold/paw.svg"
  37909. }
  37910. },
  37911. headImp: {
  37912. height: math.unit(1.33, "feet"),
  37913. name: "Head (Imp)",
  37914. image: {
  37915. source: "./media/characters/max-kobold/head-imp.svg"
  37916. }
  37917. },
  37918. mawImp: {
  37919. height: math.unit(0.75, "feet"),
  37920. name: "Maw (Imp)",
  37921. image: {
  37922. source: "./media/characters/max-kobold/maw-imp.svg"
  37923. }
  37924. },
  37925. mawDemi: {
  37926. height: math.unit(0.42, "feet"),
  37927. name: "Maw (Demi)",
  37928. image: {
  37929. source: "./media/characters/max-kobold/maw-demi.svg"
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(1 + 11/12, "feet"),
  37937. default: true
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(7 + 5/12, "feet"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/carbon/front.svg",
  37949. extra: 1754/1689,
  37950. bottom: 65/1819
  37951. }
  37952. },
  37953. back: {
  37954. height: math.unit(7 + 5/12, "feet"),
  37955. name: "Back",
  37956. image: {
  37957. source: "./media/characters/carbon/back.svg",
  37958. extra: 1762/1695,
  37959. bottom: 24/1786
  37960. }
  37961. },
  37962. frontGigantamax: {
  37963. height: math.unit(150, "feet"),
  37964. name: "Front (Gigantamax)",
  37965. image: {
  37966. source: "./media/characters/carbon/front-gigantamax.svg",
  37967. extra: 1826/1669,
  37968. bottom: 59/1885
  37969. }
  37970. },
  37971. backGigantamax: {
  37972. height: math.unit(150, "feet"),
  37973. name: "Back (Gigantamax)",
  37974. image: {
  37975. source: "./media/characters/carbon/back-gigantamax.svg",
  37976. extra: 1796/1653,
  37977. bottom: 53/1849
  37978. }
  37979. },
  37980. maw: {
  37981. height: math.unit(0.48, "feet"),
  37982. name: "Maw",
  37983. image: {
  37984. source: "./media/characters/carbon/maw.svg"
  37985. }
  37986. },
  37987. mawGigantamax: {
  37988. height: math.unit(7.5, "feet"),
  37989. name: "Maw (Gigantamax)",
  37990. image: {
  37991. source: "./media/characters/carbon/maw-gigantamax.svg"
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(7 + 5/12, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(6, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/maverick/front.svg",
  38011. extra: 1672/1661,
  38012. bottom: 85/1757
  38013. }
  38014. },
  38015. back: {
  38016. height: math.unit(6, "feet"),
  38017. name: "Back",
  38018. image: {
  38019. source: "./media/characters/maverick/back.svg",
  38020. extra: 1642/1631,
  38021. bottom: 38/1680
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(6, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(15, "feet"),
  38038. weight: math.unit(615, "lb"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/grockle/front.svg",
  38042. extra: 1535/1427,
  38043. bottom: 56/1591
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(15, "feet"),
  38051. default: true
  38052. },
  38053. {
  38054. name: "Large",
  38055. height: math.unit(150, "feet")
  38056. },
  38057. {
  38058. name: "Macro",
  38059. height: math.unit(1876, "feet")
  38060. },
  38061. {
  38062. name: "Mega Macro",
  38063. height: math.unit(121940, "feet")
  38064. },
  38065. {
  38066. name: "Giga Macro",
  38067. height: math.unit(750, "km")
  38068. },
  38069. {
  38070. name: "Tera Macro",
  38071. height: math.unit(750000, "km")
  38072. },
  38073. {
  38074. name: "Galactic",
  38075. height: math.unit(1.4e5, "km")
  38076. },
  38077. {
  38078. name: "Godlike",
  38079. height: math.unit(9.8e280, "galaxies")
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(11, "meters"),
  38088. weight: math.unit(20, "tonnes"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/alistair/front.svg",
  38092. extra: 1265/1009,
  38093. bottom: 93/1358
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(11, "meters"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(5 + 8/12, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/haruka/front.svg",
  38113. extra: 2012/1952,
  38114. bottom: 0/2012
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(5 + 8/12, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38128. {
  38129. back: {
  38130. height: math.unit(9, "feet"),
  38131. name: "Back",
  38132. image: {
  38133. source: "./media/characters/vivian-sylveon/back.svg",
  38134. extra: 1853/1714,
  38135. bottom: 0/1853
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Normal",
  38142. height: math.unit(9, "feet"),
  38143. default: true
  38144. },
  38145. {
  38146. name: "Macro",
  38147. height: math.unit(500, "feet")
  38148. },
  38149. {
  38150. name: "Megamacro",
  38151. height: math.unit(600, "miles")
  38152. },
  38153. {
  38154. name: "Gigamacro",
  38155. height: math.unit(30000, "miles")
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38161. {
  38162. anthro: {
  38163. height: math.unit(5 + 10/12, "feet"),
  38164. weight: math.unit(100, "lb"),
  38165. name: "Anthro",
  38166. image: {
  38167. source: "./media/characters/daiki/anthro.svg",
  38168. extra: 1115/1027,
  38169. bottom: 69/1184
  38170. }
  38171. },
  38172. feral: {
  38173. height: math.unit(200, "feet"),
  38174. name: "Feral",
  38175. image: {
  38176. source: "./media/characters/daiki/feral.svg",
  38177. extra: 1256/313,
  38178. bottom: 39/1295
  38179. }
  38180. },
  38181. feralHead: {
  38182. height: math.unit(171, "feet"),
  38183. name: "Feral Head",
  38184. image: {
  38185. source: "./media/characters/daiki/feral-head.svg"
  38186. }
  38187. },
  38188. manaDragon: {
  38189. height: math.unit(170, "meters"),
  38190. name: "Mana-dragon",
  38191. image: {
  38192. source: "./media/characters/daiki/mana-dragon.svg",
  38193. extra: 763/420,
  38194. bottom: 97/860
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(5 + 10/12, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38208. {
  38209. fullyEquippedFront: {
  38210. height: math.unit(3 + 1/12, "feet"),
  38211. weight: math.unit(24, "lb"),
  38212. name: "Fully Equipped (Front)",
  38213. image: {
  38214. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38215. extra: 687/605,
  38216. bottom: 18/705
  38217. }
  38218. },
  38219. fullyEquippedBack: {
  38220. height: math.unit(3 + 1/12, "feet"),
  38221. weight: math.unit(24, "lb"),
  38222. name: "Fully Equipped (Back)",
  38223. image: {
  38224. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38225. extra: 689/590,
  38226. bottom: 18/707
  38227. }
  38228. },
  38229. dailyWear: {
  38230. height: math.unit(3 + 1/12, "feet"),
  38231. weight: math.unit(24, "lb"),
  38232. name: "Daily Wear",
  38233. image: {
  38234. source: "./media/characters/tea-spot/daily-wear.svg",
  38235. extra: 701/620,
  38236. bottom: 21/722
  38237. }
  38238. },
  38239. maidWork: {
  38240. height: math.unit(3 + 1/12, "feet"),
  38241. weight: math.unit(24, "lb"),
  38242. name: "Maid Work",
  38243. image: {
  38244. source: "./media/characters/tea-spot/maid-work.svg",
  38245. extra: 693/609,
  38246. bottom: 15/708
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Normal",
  38253. height: math.unit(3 + 1/12, "feet"),
  38254. default: true
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(175, "cm"),
  38263. weight: math.unit(75, "kg"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/chee/front.svg",
  38267. extra: 1796/1740,
  38268. bottom: 40/1836
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Micro-Micro",
  38275. height: math.unit(1, "nm")
  38276. },
  38277. {
  38278. name: "Micro-erst",
  38279. height: math.unit(1, "micrometer")
  38280. },
  38281. {
  38282. name: "Micro-er",
  38283. height: math.unit(1, "cm")
  38284. },
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(175, "cm"),
  38288. default: true
  38289. },
  38290. {
  38291. name: "Macro",
  38292. height: math.unit(100, "m")
  38293. },
  38294. {
  38295. name: "Macro-er",
  38296. height: math.unit(1, "km")
  38297. },
  38298. {
  38299. name: "Macro-erst",
  38300. height: math.unit(10, "km")
  38301. },
  38302. {
  38303. name: "Macro-Macro",
  38304. height: math.unit(100, "km")
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(11 + 9/12, "feet"),
  38313. weight: math.unit(935, "lb"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/kingsley/front.svg",
  38317. extra: 1803/1674,
  38318. bottom: 127/1930
  38319. }
  38320. },
  38321. frontNude: {
  38322. height: math.unit(11 + 9/12, "feet"),
  38323. weight: math.unit(935, "lb"),
  38324. name: "Front (Nude)",
  38325. image: {
  38326. source: "./media/characters/kingsley/front-nude.svg",
  38327. extra: 1803/1674,
  38328. bottom: 127/1930
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(11 + 9/12, "feet"),
  38336. default: true
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38342. {
  38343. side: {
  38344. height: math.unit(9, "feet"),
  38345. name: "Side",
  38346. image: {
  38347. source: "./media/characters/rymel/side.svg",
  38348. extra: 792/469,
  38349. bottom: 121/913
  38350. }
  38351. },
  38352. maw: {
  38353. height: math.unit(2.4, "meters"),
  38354. name: "Maw",
  38355. image: {
  38356. source: "./media/characters/rymel/maw.svg"
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "House Drake",
  38363. height: math.unit(2, "feet")
  38364. },
  38365. {
  38366. name: "Reduced",
  38367. height: math.unit(4.5, "feet")
  38368. },
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(9, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(1.74, "meters"),
  38381. weight: math.unit(55, "kg"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/rubus/front.svg",
  38385. extra: 1894/1742,
  38386. bottom: 44/1938
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(1.74, "meters"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(5 + 2/12, "feet"),
  38403. weight: math.unit(112, "lb"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/cassie-kingston/front.svg",
  38407. extra: 1438/1390,
  38408. bottom: 47/1485
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(5 + 2/12, "feet"),
  38416. default: true
  38417. },
  38418. {
  38419. name: "Macro",
  38420. height: math.unit(128, "feet")
  38421. },
  38422. {
  38423. name: "Megamacro",
  38424. height: math.unit(2.56, "miles")
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(7, "feet"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/fox/front.svg",
  38436. extra: 1798/1703,
  38437. bottom: 55/1853
  38438. }
  38439. },
  38440. back: {
  38441. height: math.unit(7, "feet"),
  38442. name: "Back",
  38443. image: {
  38444. source: "./media/characters/fox/back.svg",
  38445. extra: 1748/1649,
  38446. bottom: 32/1780
  38447. }
  38448. },
  38449. head: {
  38450. height: math.unit(1.95, "feet"),
  38451. name: "Head",
  38452. image: {
  38453. source: "./media/characters/fox/head.svg"
  38454. }
  38455. },
  38456. dick: {
  38457. height: math.unit(1.33, "feet"),
  38458. name: "Dick",
  38459. image: {
  38460. source: "./media/characters/fox/dick.svg"
  38461. }
  38462. },
  38463. foot: {
  38464. height: math.unit(1, "feet"),
  38465. name: "Foot",
  38466. image: {
  38467. source: "./media/characters/fox/foot.svg"
  38468. }
  38469. },
  38470. paw: {
  38471. height: math.unit(0.92, "feet"),
  38472. name: "Paw",
  38473. image: {
  38474. source: "./media/characters/fox/paw.svg"
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Small",
  38481. height: math.unit(3, "inches")
  38482. },
  38483. {
  38484. name: "\"Realistic\"",
  38485. height: math.unit(7, "feet")
  38486. },
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(150, "feet"),
  38490. default: true
  38491. },
  38492. {
  38493. name: "BIG",
  38494. height: math.unit(1200, "feet")
  38495. },
  38496. {
  38497. name: "👀",
  38498. height: math.unit(5, "miles")
  38499. },
  38500. {
  38501. name: "👀👀👀",
  38502. height: math.unit(64, "miles")
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(625, "feet"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/asonja-rossa/front.svg",
  38514. extra: 1833/1686,
  38515. bottom: 24/1857
  38516. }
  38517. },
  38518. back: {
  38519. height: math.unit(625, "feet"),
  38520. name: "Back",
  38521. image: {
  38522. source: "./media/characters/asonja-rossa/back.svg",
  38523. extra: 1852/1753,
  38524. bottom: 26/1878
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Macro",
  38531. height: math.unit(625, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38538. {
  38539. side: {
  38540. height: math.unit(8, "feet"),
  38541. name: "Side",
  38542. image: {
  38543. source: "./media/characters/rezukii/side.svg",
  38544. extra: 979/542,
  38545. bottom: 87/1066
  38546. }
  38547. },
  38548. sitting: {
  38549. height: math.unit(14.6, "feet"),
  38550. name: "Sitting",
  38551. image: {
  38552. source: "./media/characters/rezukii/sitting.svg",
  38553. extra: 1023/813,
  38554. bottom: 45/1068
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Tiny",
  38561. height: math.unit(2, "feet")
  38562. },
  38563. {
  38564. name: "Smol",
  38565. height: math.unit(4, "feet")
  38566. },
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(8, "feet"),
  38570. default: true
  38571. },
  38572. {
  38573. name: "Big",
  38574. height: math.unit(12, "feet")
  38575. },
  38576. {
  38577. name: "Macro",
  38578. height: math.unit(30, "feet")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(14, "feet"),
  38587. weight: math.unit(9.5, "tonnes"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/dawnheart/front.svg",
  38591. extra: 2792/2675,
  38592. bottom: 64/2856
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(14, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38606. {
  38607. front: {
  38608. height: math.unit(1.7, "m"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/gladi/front.svg",
  38612. extra: 1460/1362,
  38613. bottom: 19/1479
  38614. }
  38615. },
  38616. back: {
  38617. height: math.unit(1.7, "m"),
  38618. name: "Back",
  38619. image: {
  38620. source: "./media/characters/gladi/back.svg",
  38621. extra: 1459/1357,
  38622. bottom: 12/1471
  38623. }
  38624. },
  38625. feral: {
  38626. height: math.unit(2.05, "m"),
  38627. name: "Feral",
  38628. image: {
  38629. source: "./media/characters/gladi/feral.svg",
  38630. extra: 821/557,
  38631. bottom: 91/912
  38632. }
  38633. },
  38634. },
  38635. [
  38636. {
  38637. name: "Shortest",
  38638. height: math.unit(70, "cm")
  38639. },
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(1.7, "m")
  38643. },
  38644. {
  38645. name: "Macro",
  38646. height: math.unit(10, "m"),
  38647. default: true
  38648. },
  38649. {
  38650. name: "Tallest",
  38651. height: math.unit(200, "m")
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(5 + 7/12, "feet"),
  38660. weight: math.unit(2, "tons"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/erdno/front.svg",
  38664. extra: 1234/1129,
  38665. bottom: 35/1269
  38666. }
  38667. },
  38668. angled: {
  38669. height: math.unit(5 + 7/12, "feet"),
  38670. weight: math.unit(2, "tons"),
  38671. name: "Angled",
  38672. image: {
  38673. source: "./media/characters/erdno/angled.svg",
  38674. extra: 1185/1139,
  38675. bottom: 36/1221
  38676. }
  38677. },
  38678. side: {
  38679. height: math.unit(5 + 7/12, "feet"),
  38680. weight: math.unit(2, "tons"),
  38681. name: "Side",
  38682. image: {
  38683. source: "./media/characters/erdno/side.svg",
  38684. extra: 1191/1144,
  38685. bottom: 40/1231
  38686. }
  38687. },
  38688. back: {
  38689. height: math.unit(5 + 7/12, "feet"),
  38690. weight: math.unit(2, "tons"),
  38691. name: "Back",
  38692. image: {
  38693. source: "./media/characters/erdno/back.svg",
  38694. extra: 1202/1146,
  38695. bottom: 17/1219
  38696. }
  38697. },
  38698. frontNsfw: {
  38699. height: math.unit(5 + 7/12, "feet"),
  38700. weight: math.unit(2, "tons"),
  38701. name: "Front (NSFW)",
  38702. image: {
  38703. source: "./media/characters/erdno/front-nsfw.svg",
  38704. extra: 1234/1129,
  38705. bottom: 35/1269
  38706. }
  38707. },
  38708. angledNsfw: {
  38709. height: math.unit(5 + 7/12, "feet"),
  38710. weight: math.unit(2, "tons"),
  38711. name: "Angled (NSFW)",
  38712. image: {
  38713. source: "./media/characters/erdno/angled-nsfw.svg",
  38714. extra: 1185/1139,
  38715. bottom: 36/1221
  38716. }
  38717. },
  38718. sideNsfw: {
  38719. height: math.unit(5 + 7/12, "feet"),
  38720. weight: math.unit(2, "tons"),
  38721. name: "Side (NSFW)",
  38722. image: {
  38723. source: "./media/characters/erdno/side-nsfw.svg",
  38724. extra: 1191/1144,
  38725. bottom: 40/1231
  38726. }
  38727. },
  38728. backNsfw: {
  38729. height: math.unit(5 + 7/12, "feet"),
  38730. weight: math.unit(2, "tons"),
  38731. name: "Back (NSFW)",
  38732. image: {
  38733. source: "./media/characters/erdno/back-nsfw.svg",
  38734. extra: 1202/1146,
  38735. bottom: 17/1219
  38736. }
  38737. },
  38738. frontHyper: {
  38739. height: math.unit(5 + 7/12, "feet"),
  38740. weight: math.unit(2, "tons"),
  38741. name: "Front (Hyper)",
  38742. image: {
  38743. source: "./media/characters/erdno/front-hyper.svg",
  38744. extra: 1298/1136,
  38745. bottom: 35/1333
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(5 + 7/12, "feet"),
  38753. default: true
  38754. },
  38755. {
  38756. name: "Big",
  38757. height: math.unit(5.7, "meters")
  38758. },
  38759. {
  38760. name: "Macro",
  38761. height: math.unit(5.7, "kilometers")
  38762. },
  38763. {
  38764. name: "Megamacro",
  38765. height: math.unit(5.7, "earths")
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(5 + 10/12, "feet"),
  38774. weight: math.unit(150, "lb"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/jamie/front.svg",
  38778. extra: 1908/1768,
  38779. bottom: 19/1927
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Minimum",
  38786. height: math.unit(2, "cm")
  38787. },
  38788. {
  38789. name: "Micro",
  38790. height: math.unit(3, "inches")
  38791. },
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(5 + 10/12, "feet"),
  38795. default: true
  38796. },
  38797. {
  38798. name: "Macro",
  38799. height: math.unit(150, "feet")
  38800. },
  38801. {
  38802. name: "Megamacro",
  38803. height: math.unit(10000, "m")
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(2, "meters"),
  38812. weight: math.unit(100, "kg"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/shiron/front.svg",
  38816. extra: 2103/1985,
  38817. bottom: 98/2201
  38818. }
  38819. },
  38820. back: {
  38821. height: math.unit(2, "meters"),
  38822. weight: math.unit(100, "kg"),
  38823. name: "Back",
  38824. image: {
  38825. source: "./media/characters/shiron/back.svg",
  38826. extra: 2110/2015,
  38827. bottom: 89/2199
  38828. }
  38829. },
  38830. hand: {
  38831. height: math.unit(0.96, "feet"),
  38832. name: "Hand",
  38833. image: {
  38834. source: "./media/characters/shiron/hand.svg"
  38835. }
  38836. },
  38837. foot: {
  38838. height: math.unit(1.464, "feet"),
  38839. name: "Foot",
  38840. image: {
  38841. source: "./media/characters/shiron/foot.svg"
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(2, "meters")
  38849. },
  38850. {
  38851. name: "Macro",
  38852. height: math.unit(500, "meters"),
  38853. default: true
  38854. },
  38855. {
  38856. name: "Megamacro",
  38857. height: math.unit(20, "km")
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(6, "feet"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/sam/front.svg",
  38869. extra: 849/826,
  38870. bottom: 19/868
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(6, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(8 + 4/12, "feet"),
  38887. weight: math.unit(122, "kg"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/namori-kurogawa/front.svg",
  38891. extra: 1894/1576,
  38892. bottom: 34/1928
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(8 + 4/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(9, "feet"),
  38909. weight: math.unit(621, "lb"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/unmru/front.svg",
  38913. extra: 1853/1747,
  38914. bottom: 73/1926
  38915. }
  38916. },
  38917. side: {
  38918. height: math.unit(9, "feet"),
  38919. weight: math.unit(621, "lb"),
  38920. name: "Side",
  38921. image: {
  38922. source: "./media/characters/unmru/side.svg",
  38923. extra: 1781/1671,
  38924. bottom: 127/1908
  38925. }
  38926. },
  38927. back: {
  38928. height: math.unit(9, "feet"),
  38929. weight: math.unit(621, "lb"),
  38930. name: "Back",
  38931. image: {
  38932. source: "./media/characters/unmru/back.svg",
  38933. extra: 1894/1765,
  38934. bottom: 75/1969
  38935. }
  38936. },
  38937. dick: {
  38938. height: math.unit(3, "feet"),
  38939. weight: math.unit(35, "lb"),
  38940. name: "Dick",
  38941. image: {
  38942. source: "./media/characters/unmru/dick.svg"
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(9, "feet")
  38950. },
  38951. {
  38952. name: "Natural",
  38953. height: math.unit(27, "feet"),
  38954. default: true
  38955. },
  38956. {
  38957. name: "Giant",
  38958. height: math.unit(90, "feet")
  38959. },
  38960. {
  38961. name: "Kaiju",
  38962. height: math.unit(270, "feet")
  38963. },
  38964. {
  38965. name: "Macro",
  38966. height: math.unit(900, "feet")
  38967. },
  38968. {
  38969. name: "Macro+",
  38970. height: math.unit(2700, "feet")
  38971. },
  38972. {
  38973. name: "Megamacro",
  38974. height: math.unit(9000, "feet")
  38975. },
  38976. {
  38977. name: "City-Crushing",
  38978. height: math.unit(27000, "feet")
  38979. },
  38980. {
  38981. name: "Mountain-Mashing",
  38982. height: math.unit(90000, "feet")
  38983. },
  38984. {
  38985. name: "Earth-Eclipsing",
  38986. height: math.unit(2.7e8, "feet")
  38987. },
  38988. {
  38989. name: "Sol-Swallowing",
  38990. height: math.unit(9e10, "feet")
  38991. },
  38992. {
  38993. name: "Majoris-Munching",
  38994. height: math.unit(2.7e13, "feet")
  38995. },
  38996. ]
  38997. ))
  38998. characterMakers.push(() => makeCharacter(
  38999. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39000. {
  39001. front: {
  39002. height: math.unit(1, "inch"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/squeaks-mouse/front.svg",
  39006. extra: 352/308,
  39007. bottom: 25/377
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Micro",
  39014. height: math.unit(1, "inch"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39021. {
  39022. side: {
  39023. height: math.unit(35, "feet"),
  39024. name: "Side",
  39025. image: {
  39026. source: "./media/characters/sayko/side.svg",
  39027. extra: 1697/1021,
  39028. bottom: 82/1779
  39029. }
  39030. },
  39031. head: {
  39032. height: math.unit(16, "feet"),
  39033. name: "Head",
  39034. image: {
  39035. source: "./media/characters/sayko/head.svg"
  39036. }
  39037. },
  39038. forepaw: {
  39039. height: math.unit(7.85, "feet"),
  39040. name: "Forepaw",
  39041. image: {
  39042. source: "./media/characters/sayko/forepaw.svg"
  39043. }
  39044. },
  39045. hindpaw: {
  39046. height: math.unit(8.8, "feet"),
  39047. name: "Hindpaw",
  39048. image: {
  39049. source: "./media/characters/sayko/hindpaw.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(35, "feet"),
  39057. default: true
  39058. },
  39059. {
  39060. name: "Colossus",
  39061. height: math.unit(100, "meters")
  39062. },
  39063. {
  39064. name: "\"Small\" Deity",
  39065. height: math.unit(1, "km")
  39066. },
  39067. {
  39068. name: "\"Large\" Deity",
  39069. height: math.unit(15, "km")
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(6, "feet"),
  39078. weight: math.unit(250, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/mukiro/front.svg",
  39082. extra: 1368/1310,
  39083. bottom: 34/1402
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(6, "feet"),
  39091. default: true
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(12 + 4/12, "feet"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39103. extra: 1346/1311,
  39104. bottom: 65/1411
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Base",
  39111. height: math.unit(12 + 4/12, "feet"),
  39112. default: true
  39113. },
  39114. {
  39115. name: "Macro",
  39116. height: math.unit(150, "feet")
  39117. },
  39118. {
  39119. name: "Mega",
  39120. height: math.unit(2, "miles")
  39121. },
  39122. {
  39123. name: "Demi God",
  39124. height: math.unit(4, "AU")
  39125. },
  39126. {
  39127. name: "God Size",
  39128. height: math.unit(1, "universe")
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(3 + 3/12, "feet"),
  39137. weight: math.unit(88, "lb"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/trey/front.svg",
  39141. extra: 1815/1509,
  39142. bottom: 60/1875
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(3 + 3/12, "feet"),
  39150. default: true
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39156. {
  39157. front: {
  39158. height: math.unit(4, "meters"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/adelonda/front.svg",
  39162. extra: 1077/982,
  39163. bottom: 39/1116
  39164. }
  39165. },
  39166. back: {
  39167. height: math.unit(4, "meters"),
  39168. name: "Back",
  39169. image: {
  39170. source: "./media/characters/adelonda/back.svg",
  39171. extra: 1105/1003,
  39172. bottom: 25/1130
  39173. }
  39174. },
  39175. feral: {
  39176. height: math.unit(40/1.5, "meters"),
  39177. name: "Feral",
  39178. image: {
  39179. source: "./media/characters/adelonda/feral.svg",
  39180. extra: 597/271,
  39181. bottom: 387/984
  39182. }
  39183. },
  39184. },
  39185. [
  39186. {
  39187. name: "Normal",
  39188. height: math.unit(4, "meters"),
  39189. default: true
  39190. },
  39191. ]
  39192. ))
  39193. characterMakers.push(() => makeCharacter(
  39194. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39195. {
  39196. front: {
  39197. height: math.unit(8 + 4/12, "feet"),
  39198. weight: math.unit(670, "lb"),
  39199. name: "Front",
  39200. image: {
  39201. source: "./media/characters/acadiel/front.svg",
  39202. extra: 1901/1595,
  39203. bottom: 142/2043
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(8 + 4/12, "feet"),
  39211. default: true
  39212. },
  39213. {
  39214. name: "Macro",
  39215. height: math.unit(200, "feet")
  39216. },
  39217. ]
  39218. ))
  39219. characterMakers.push(() => makeCharacter(
  39220. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39221. {
  39222. front: {
  39223. height: math.unit(6 + 2/12, "feet"),
  39224. weight: math.unit(185, "lb"),
  39225. name: "Front",
  39226. image: {
  39227. source: "./media/characters/kayne-ein/front.svg",
  39228. extra: 1780/1560,
  39229. bottom: 81/1861
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(6 + 2/12, "feet"),
  39237. default: true
  39238. },
  39239. {
  39240. name: "Transformation Stage",
  39241. height: math.unit(15, "feet")
  39242. },
  39243. {
  39244. name: "Macro",
  39245. height: math.unit(150, "feet")
  39246. },
  39247. {
  39248. name: "Earth's Shadow",
  39249. height: math.unit(6200, "miles")
  39250. },
  39251. {
  39252. name: "Universal Demon",
  39253. height: math.unit(28e9, "parsecs")
  39254. },
  39255. {
  39256. name: "Multiverse God",
  39257. height: math.unit(3, "multiverses")
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(5 + 5/12, "feet"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/fawn/front.svg",
  39269. extra: 1873/1731,
  39270. bottom: 95/1968
  39271. }
  39272. },
  39273. back: {
  39274. height: math.unit(5 + 5/12, "feet"),
  39275. name: "Back",
  39276. image: {
  39277. source: "./media/characters/fawn/back.svg",
  39278. extra: 1813/1700,
  39279. bottom: 14/1827
  39280. }
  39281. },
  39282. hoof: {
  39283. height: math.unit(1.45, "feet"),
  39284. name: "Hoof",
  39285. image: {
  39286. source: "./media/characters/fawn/hoof.svg"
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(5 + 5/12, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(2 + 5/12, "feet"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/orion/front.svg",
  39306. extra: 1366/1304,
  39307. bottom: 43/1409
  39308. }
  39309. },
  39310. paw: {
  39311. height: math.unit(0.52, "feet"),
  39312. name: "Paw",
  39313. image: {
  39314. source: "./media/characters/orion/paw.svg"
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Normal",
  39321. height: math.unit(2 + 5/12, "feet"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(5 + 10/12, "feet"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/vera/front.svg",
  39334. extra: 1680/1575,
  39335. bottom: 49/1729
  39336. }
  39337. },
  39338. back: {
  39339. height: math.unit(5 + 10/12, "feet"),
  39340. name: "Back",
  39341. image: {
  39342. source: "./media/characters/vera/back.svg",
  39343. extra: 1700/1588,
  39344. bottom: 18/1718
  39345. }
  39346. },
  39347. arcanine: {
  39348. height: math.unit(6 + 8/12, "feet"),
  39349. name: "Arcanine",
  39350. image: {
  39351. source: "./media/characters/vera/arcanine.svg",
  39352. extra: 1590/1511,
  39353. bottom: 71/1661
  39354. }
  39355. },
  39356. maw: {
  39357. height: math.unit(0.82, "feet"),
  39358. name: "Maw",
  39359. image: {
  39360. source: "./media/characters/vera/maw.svg"
  39361. }
  39362. },
  39363. mawArcanine: {
  39364. height: math.unit(0.97, "feet"),
  39365. name: "Maw (Arcanine)",
  39366. image: {
  39367. source: "./media/characters/vera/maw-arcanine.svg"
  39368. }
  39369. },
  39370. paw: {
  39371. height: math.unit(0.75, "feet"),
  39372. name: "Paw",
  39373. image: {
  39374. source: "./media/characters/vera/paw.svg"
  39375. }
  39376. },
  39377. pawprint: {
  39378. height: math.unit(0.52, "feet"),
  39379. name: "Pawprint",
  39380. image: {
  39381. source: "./media/characters/vera/pawprint.svg"
  39382. }
  39383. },
  39384. },
  39385. [
  39386. {
  39387. name: "Normal",
  39388. height: math.unit(5 + 10/12, "feet"),
  39389. default: true
  39390. },
  39391. {
  39392. name: "Macro",
  39393. height: math.unit(75, "feet")
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(4, "feet"),
  39402. weight: math.unit(40, "lb"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/orvan-rabbit/front.svg",
  39406. extra: 1896/1642,
  39407. bottom: 29/1925
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "Normal",
  39414. height: math.unit(4, "feet"),
  39415. default: true
  39416. },
  39417. ]
  39418. ))
  39419. characterMakers.push(() => makeCharacter(
  39420. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39421. {
  39422. front: {
  39423. height: math.unit(6, "feet"),
  39424. weight: math.unit(168, "lb"),
  39425. name: "Front",
  39426. image: {
  39427. source: "./media/characters/lisa/front.svg",
  39428. extra: 2065/1867,
  39429. bottom: 46/2111
  39430. }
  39431. },
  39432. back: {
  39433. height: math.unit(6, "feet"),
  39434. weight: math.unit(168, "lb"),
  39435. name: "Back",
  39436. image: {
  39437. source: "./media/characters/lisa/back.svg",
  39438. extra: 1982/1838,
  39439. bottom: 29/2011
  39440. }
  39441. },
  39442. maw: {
  39443. height: math.unit(0.81, "feet"),
  39444. name: "Maw",
  39445. image: {
  39446. source: "./media/characters/lisa/maw.svg"
  39447. }
  39448. },
  39449. paw: {
  39450. height: math.unit(0.9, "feet"),
  39451. name: "Paw",
  39452. image: {
  39453. source: "./media/characters/lisa/paw.svg"
  39454. }
  39455. },
  39456. caribousune: {
  39457. height: math.unit(7 + 2/12, "feet"),
  39458. weight: math.unit(268, "lb"),
  39459. name: "Caribousune",
  39460. image: {
  39461. source: "./media/characters/lisa/caribousune.svg",
  39462. extra: 1843/1633,
  39463. bottom: 29/1872
  39464. }
  39465. },
  39466. frontCaribousune: {
  39467. height: math.unit(7 + 2/12, "feet"),
  39468. weight: math.unit(268, "lb"),
  39469. name: "Front (Caribousune)",
  39470. image: {
  39471. source: "./media/characters/lisa/front-caribousune.svg",
  39472. extra: 1818/1638,
  39473. bottom: 52/1870
  39474. }
  39475. },
  39476. sideCaribousune: {
  39477. height: math.unit(7 + 2/12, "feet"),
  39478. weight: math.unit(268, "lb"),
  39479. name: "Side (Caribousune)",
  39480. image: {
  39481. source: "./media/characters/lisa/side-caribousune.svg",
  39482. extra: 1851/1635,
  39483. bottom: 16/1867
  39484. }
  39485. },
  39486. backCaribousune: {
  39487. height: math.unit(7 + 2/12, "feet"),
  39488. weight: math.unit(268, "lb"),
  39489. name: "Back (Caribousune)",
  39490. image: {
  39491. source: "./media/characters/lisa/back-caribousune.svg",
  39492. extra: 1801/1604,
  39493. bottom: 44/1845
  39494. }
  39495. },
  39496. caribou: {
  39497. height: math.unit(7 + 2/12, "feet"),
  39498. weight: math.unit(268, "lb"),
  39499. name: "Caribou",
  39500. image: {
  39501. source: "./media/characters/lisa/caribou.svg",
  39502. extra: 1843/1633,
  39503. bottom: 29/1872
  39504. }
  39505. },
  39506. frontCaribou: {
  39507. height: math.unit(7 + 2/12, "feet"),
  39508. weight: math.unit(268, "lb"),
  39509. name: "Front (Caribou)",
  39510. image: {
  39511. source: "./media/characters/lisa/front-caribou.svg",
  39512. extra: 1818/1638,
  39513. bottom: 52/1870
  39514. }
  39515. },
  39516. sideCaribou: {
  39517. height: math.unit(7 + 2/12, "feet"),
  39518. weight: math.unit(268, "lb"),
  39519. name: "Side (Caribou)",
  39520. image: {
  39521. source: "./media/characters/lisa/side-caribou.svg",
  39522. extra: 1851/1635,
  39523. bottom: 16/1867
  39524. }
  39525. },
  39526. backCaribou: {
  39527. height: math.unit(7 + 2/12, "feet"),
  39528. weight: math.unit(268, "lb"),
  39529. name: "Back (Caribou)",
  39530. image: {
  39531. source: "./media/characters/lisa/back-caribou.svg",
  39532. extra: 1801/1604,
  39533. bottom: 44/1845
  39534. }
  39535. },
  39536. mawCaribou: {
  39537. height: math.unit(1.45, "feet"),
  39538. name: "Maw (Caribou)",
  39539. image: {
  39540. source: "./media/characters/lisa/maw-caribou.svg"
  39541. }
  39542. },
  39543. mawCaribousune: {
  39544. height: math.unit(1.45, "feet"),
  39545. name: "Maw (Caribousune)",
  39546. image: {
  39547. source: "./media/characters/lisa/maw-caribousune.svg"
  39548. }
  39549. },
  39550. pawCaribousune: {
  39551. height: math.unit(1.61, "feet"),
  39552. name: "Paw (Caribou)",
  39553. image: {
  39554. source: "./media/characters/lisa/paw-caribousune.svg"
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Normal",
  39561. height: math.unit(6, "feet")
  39562. },
  39563. {
  39564. name: "God Size",
  39565. height: math.unit(72, "feet"),
  39566. default: true
  39567. },
  39568. {
  39569. name: "Towering",
  39570. height: math.unit(288, "feet")
  39571. },
  39572. {
  39573. name: "City Size",
  39574. height: math.unit(48384, "feet")
  39575. },
  39576. {
  39577. name: "Continental",
  39578. height: math.unit(4200, "miles")
  39579. },
  39580. {
  39581. name: "Planet Eater",
  39582. height: math.unit(42, "earths")
  39583. },
  39584. {
  39585. name: "Star Swallower",
  39586. height: math.unit(42, "solarradii")
  39587. },
  39588. {
  39589. name: "System Swallower",
  39590. height: math.unit(84000, "AU")
  39591. },
  39592. {
  39593. name: "Galaxy Gobbler",
  39594. height: math.unit(42, "galaxies")
  39595. },
  39596. {
  39597. name: "Universe Devourer",
  39598. height: math.unit(42, "universes")
  39599. },
  39600. {
  39601. name: "Multiverse Muncher",
  39602. height: math.unit(42, "multiverses")
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(36, "feet"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/shadow-rat/front.svg",
  39614. extra: 1845/1758,
  39615. bottom: 83/1928
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Macro",
  39622. height: math.unit(36, "feet"),
  39623. default: true
  39624. },
  39625. ]
  39626. ))
  39627. characterMakers.push(() => makeCharacter(
  39628. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39629. {
  39630. side: {
  39631. height: math.unit(8, "feet"),
  39632. weight: math.unit(2630, "lb"),
  39633. name: "Side",
  39634. image: {
  39635. source: "./media/characters/torallia/side.svg",
  39636. extra: 2164/2021,
  39637. bottom: 371/2535
  39638. }
  39639. },
  39640. },
  39641. [
  39642. {
  39643. name: "Mortal Interaction",
  39644. height: math.unit(8, "feet")
  39645. },
  39646. {
  39647. name: "Natural",
  39648. height: math.unit(24, "feet"),
  39649. default: true
  39650. },
  39651. {
  39652. name: "Giant",
  39653. height: math.unit(80, "feet")
  39654. },
  39655. {
  39656. name: "Kaiju",
  39657. height: math.unit(240, "feet")
  39658. },
  39659. {
  39660. name: "Macro",
  39661. height: math.unit(800, "feet")
  39662. },
  39663. {
  39664. name: "Macro+",
  39665. height: math.unit(2400, "feet")
  39666. },
  39667. {
  39668. name: "Macro++",
  39669. height: math.unit(8000, "feet")
  39670. },
  39671. {
  39672. name: "City-Crushing",
  39673. height: math.unit(24000, "feet")
  39674. },
  39675. {
  39676. name: "Mountain-Mashing",
  39677. height: math.unit(80000, "feet")
  39678. },
  39679. {
  39680. name: "District Demolisher",
  39681. height: math.unit(240000, "feet")
  39682. },
  39683. {
  39684. name: "Tri-County Terror",
  39685. height: math.unit(800000, "feet")
  39686. },
  39687. {
  39688. name: "State Smasher",
  39689. height: math.unit(2.4e6, "feet")
  39690. },
  39691. {
  39692. name: "Nation Nemesis",
  39693. height: math.unit(8e6, "feet")
  39694. },
  39695. {
  39696. name: "Continent Cracker",
  39697. height: math.unit(2.4e7, "feet")
  39698. },
  39699. {
  39700. name: "Planet-Pillaging",
  39701. height: math.unit(8e7, "feet")
  39702. },
  39703. {
  39704. name: "Earth-Eclipsing",
  39705. height: math.unit(2.4e8, "feet")
  39706. },
  39707. {
  39708. name: "Jovian-Jostling",
  39709. height: math.unit(8e8, "feet")
  39710. },
  39711. {
  39712. name: "Gas Giant Gulper",
  39713. height: math.unit(2.4e9, "feet")
  39714. },
  39715. {
  39716. name: "Astral Annihilator",
  39717. height: math.unit(8e9, "feet")
  39718. },
  39719. {
  39720. name: "Celestial Conqueror",
  39721. height: math.unit(2.4e10, "feet")
  39722. },
  39723. {
  39724. name: "Sol-Swallowing",
  39725. height: math.unit(8e10, "feet")
  39726. },
  39727. {
  39728. name: "Hunter of the Heavens",
  39729. height: math.unit(2.4e13, "feet")
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(6 + 8/12, "feet"),
  39738. weight: math.unit(250, "kilograms"),
  39739. volume: math.unit(28, "liters"),
  39740. name: "Front",
  39741. image: {
  39742. source: "./media/characters/rebecca-pawlson/front.svg",
  39743. extra: 1737/1596,
  39744. bottom: 107/1844
  39745. }
  39746. },
  39747. back: {
  39748. height: math.unit(6 + 8/12, "feet"),
  39749. weight: math.unit(250, "kilograms"),
  39750. volume: math.unit(28, "liters"),
  39751. name: "Back",
  39752. image: {
  39753. source: "./media/characters/rebecca-pawlson/back.svg",
  39754. extra: 1702/1523,
  39755. bottom: 86/1788
  39756. }
  39757. },
  39758. },
  39759. [
  39760. {
  39761. name: "Normal",
  39762. height: math.unit(6 + 8/12, "feet")
  39763. },
  39764. {
  39765. name: "Mini Macro",
  39766. height: math.unit(10, "feet"),
  39767. default: true
  39768. },
  39769. {
  39770. name: "Macro",
  39771. height: math.unit(100, "feet")
  39772. },
  39773. {
  39774. name: "Mega Macro",
  39775. height: math.unit(2500, "feet")
  39776. },
  39777. {
  39778. name: "Giga Macro",
  39779. height: math.unit(50, "miles")
  39780. },
  39781. ]
  39782. ))
  39783. characterMakers.push(() => makeCharacter(
  39784. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39785. {
  39786. front: {
  39787. height: math.unit(7 + 6/12, "feet"),
  39788. weight: math.unit(600, "lb"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/moxie-nova/front.svg",
  39792. extra: 1734/1652,
  39793. bottom: 41/1775
  39794. }
  39795. },
  39796. },
  39797. [
  39798. {
  39799. name: "Normal",
  39800. height: math.unit(7 + 6/12, "feet"),
  39801. default: true
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39807. {
  39808. goat: {
  39809. height: math.unit(4, "feet"),
  39810. weight: math.unit(180, "lb"),
  39811. name: "Goat",
  39812. image: {
  39813. source: "./media/characters/tiffany/goat.svg",
  39814. extra: 1845/1595,
  39815. bottom: 106/1951
  39816. }
  39817. },
  39818. front: {
  39819. height: math.unit(5, "feet"),
  39820. weight: math.unit(150, "lb"),
  39821. name: "Foxcoon",
  39822. image: {
  39823. source: "./media/characters/tiffany/foxcoon.svg",
  39824. extra: 1941/1845,
  39825. bottom: 58/1999
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(5, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(8, "feet"),
  39842. weight: math.unit(300, "lb"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/raxinath/front.svg",
  39846. extra: 1407/1309,
  39847. bottom: 39/1446
  39848. }
  39849. },
  39850. back: {
  39851. height: math.unit(8, "feet"),
  39852. weight: math.unit(300, "lb"),
  39853. name: "Back",
  39854. image: {
  39855. source: "./media/characters/raxinath/back.svg",
  39856. extra: 1405/1315,
  39857. bottom: 9/1414
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Speck",
  39864. height: math.unit(0.5, "nm")
  39865. },
  39866. {
  39867. name: "Micro",
  39868. height: math.unit(3, "inches")
  39869. },
  39870. {
  39871. name: "Kobold",
  39872. height: math.unit(3, "feet")
  39873. },
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(8, "feet"),
  39877. default: true
  39878. },
  39879. {
  39880. name: "Giant",
  39881. height: math.unit(50, "feet")
  39882. },
  39883. {
  39884. name: "Macro",
  39885. height: math.unit(1000, "feet")
  39886. },
  39887. {
  39888. name: "Megamacro",
  39889. height: math.unit(1, "mile")
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(10, "feet"),
  39898. weight: math.unit(1442, "lb"),
  39899. name: "Front",
  39900. image: {
  39901. source: "./media/characters/mal-dragon/front.svg",
  39902. extra: 1515/1444,
  39903. bottom: 113/1628
  39904. }
  39905. },
  39906. back: {
  39907. height: math.unit(10, "feet"),
  39908. weight: math.unit(1442, "lb"),
  39909. name: "Back",
  39910. image: {
  39911. source: "./media/characters/mal-dragon/back.svg",
  39912. extra: 1527/1434,
  39913. bottom: 25/1552
  39914. }
  39915. },
  39916. },
  39917. [
  39918. {
  39919. name: "Mortal Interaction",
  39920. height: math.unit(10, "feet"),
  39921. default: true
  39922. },
  39923. {
  39924. name: "Large",
  39925. height: math.unit(30, "feet")
  39926. },
  39927. {
  39928. name: "Kaiju",
  39929. height: math.unit(300, "feet")
  39930. },
  39931. {
  39932. name: "Megamacro",
  39933. height: math.unit(10000, "feet")
  39934. },
  39935. {
  39936. name: "Continent Cracker",
  39937. height: math.unit(30000000, "feet")
  39938. },
  39939. {
  39940. name: "Sol-Swallowing",
  39941. height: math.unit(1e11, "feet")
  39942. },
  39943. {
  39944. name: "Light Universal",
  39945. height: math.unit(5, "universes")
  39946. },
  39947. {
  39948. name: "Universe Atoms",
  39949. height: math.unit(1.829e9, "universes")
  39950. },
  39951. {
  39952. name: "Light Multiversal",
  39953. height: math.unit(5, "multiverses")
  39954. },
  39955. {
  39956. name: "Multiverse Atoms",
  39957. height: math.unit(1.829e9, "multiverses")
  39958. },
  39959. {
  39960. name: "Fabric of Time",
  39961. height: math.unit(1e262, "multiverses")
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(9, "feet"),
  39970. weight: math.unit(1050, "lb"),
  39971. name: "Front",
  39972. image: {
  39973. source: "./media/characters/tabitha/front.svg",
  39974. extra: 2083/1994,
  39975. bottom: 68/2151
  39976. }
  39977. },
  39978. },
  39979. [
  39980. {
  39981. name: "Baseline",
  39982. height: math.unit(9, "feet"),
  39983. default: true
  39984. },
  39985. {
  39986. name: "Giant",
  39987. height: math.unit(90, "feet")
  39988. },
  39989. {
  39990. name: "Macro",
  39991. height: math.unit(900, "feet")
  39992. },
  39993. {
  39994. name: "Megamacro",
  39995. height: math.unit(9000, "feet")
  39996. },
  39997. {
  39998. name: "City-Crushing",
  39999. height: math.unit(27000, "feet")
  40000. },
  40001. {
  40002. name: "Mountain-Mashing",
  40003. height: math.unit(90000, "feet")
  40004. },
  40005. {
  40006. name: "Nation Nemesis",
  40007. height: math.unit(9e6, "feet")
  40008. },
  40009. {
  40010. name: "Continent Cracker",
  40011. height: math.unit(27e6, "feet")
  40012. },
  40013. {
  40014. name: "Earth-Eclipsing",
  40015. height: math.unit(2.7e8, "feet")
  40016. },
  40017. {
  40018. name: "Gas Giant Gulper",
  40019. height: math.unit(2.7e9, "feet")
  40020. },
  40021. {
  40022. name: "Sol-Swallowing",
  40023. height: math.unit(9e10, "feet")
  40024. },
  40025. {
  40026. name: "Galaxy Gulper",
  40027. height: math.unit(9, "galaxies")
  40028. },
  40029. {
  40030. name: "Cosmos Churner",
  40031. height: math.unit(9, "universes")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(160, "cm"),
  40040. weight: math.unit(55, "kg"),
  40041. name: "Front",
  40042. image: {
  40043. source: "./media/characters/tow/front.svg",
  40044. extra: 1751/1722,
  40045. bottom: 74/1825
  40046. }
  40047. },
  40048. },
  40049. [
  40050. {
  40051. name: "Norm",
  40052. height: math.unit(160, "cm")
  40053. },
  40054. {
  40055. name: "Casual",
  40056. height: math.unit(3200, "m"),
  40057. default: true
  40058. },
  40059. {
  40060. name: "Show-Off",
  40061. height: math.unit(160, "km")
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40067. {
  40068. front: {
  40069. height: math.unit(7 + 11/12, "feet"),
  40070. weight: math.unit(342.8, "lb"),
  40071. name: "Front",
  40072. image: {
  40073. source: "./media/characters/vivian-orca-dragon/front.svg",
  40074. extra: 1890/1865,
  40075. bottom: 28/1918
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Micro",
  40082. height: math.unit(5, "inches")
  40083. },
  40084. {
  40085. name: "Normal",
  40086. height: math.unit(7 + 11/12, "feet"),
  40087. default: true
  40088. },
  40089. {
  40090. name: "Macro",
  40091. height: math.unit(395 + 7/12, "feet")
  40092. },
  40093. ]
  40094. ))
  40095. characterMakers.push(() => makeCharacter(
  40096. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40097. {
  40098. side: {
  40099. height: math.unit(10, "feet"),
  40100. weight: math.unit(1442, "lb"),
  40101. name: "Side",
  40102. image: {
  40103. source: "./media/characters/lotherakon/side.svg",
  40104. extra: 1604/1497,
  40105. bottom: 89/1693
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Mortal Interaction",
  40112. height: math.unit(10, "feet")
  40113. },
  40114. {
  40115. name: "Large",
  40116. height: math.unit(30, "feet"),
  40117. default: true
  40118. },
  40119. {
  40120. name: "Giant",
  40121. height: math.unit(100, "feet")
  40122. },
  40123. {
  40124. name: "Kaiju",
  40125. height: math.unit(300, "feet")
  40126. },
  40127. {
  40128. name: "Macro",
  40129. height: math.unit(1000, "feet")
  40130. },
  40131. {
  40132. name: "Macro+",
  40133. height: math.unit(3000, "feet")
  40134. },
  40135. {
  40136. name: "Megamacro",
  40137. height: math.unit(10000, "feet")
  40138. },
  40139. {
  40140. name: "City-Crushing",
  40141. height: math.unit(30000, "feet")
  40142. },
  40143. {
  40144. name: "Continent Cracker",
  40145. height: math.unit(30e6, "feet")
  40146. },
  40147. {
  40148. name: "Earth Eclipsing",
  40149. height: math.unit(3e8, "feet")
  40150. },
  40151. {
  40152. name: "Gas Giant Gulper",
  40153. height: math.unit(3e9, "feet")
  40154. },
  40155. {
  40156. name: "Sol-Swallowing",
  40157. height: math.unit(1e11, "feet")
  40158. },
  40159. {
  40160. name: "System Swallower",
  40161. height: math.unit(3e14, "feet")
  40162. },
  40163. {
  40164. name: "Galaxy Gulper",
  40165. height: math.unit(10, "galaxies")
  40166. },
  40167. {
  40168. name: "Light Universal",
  40169. height: math.unit(5, "universes")
  40170. },
  40171. {
  40172. name: "Universe Palm",
  40173. height: math.unit(20, "universes")
  40174. },
  40175. {
  40176. name: "Light Multiversal",
  40177. height: math.unit(5, "multiverses")
  40178. },
  40179. {
  40180. name: "Multiverse Palm",
  40181. height: math.unit(20, "multiverses")
  40182. },
  40183. {
  40184. name: "Inferno Incarnate",
  40185. height: math.unit(1e7, "multiverses")
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(8, "feet"),
  40194. weight: math.unit(1200, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/malithee/front.svg",
  40198. extra: 1675/1640,
  40199. bottom: 162/1837
  40200. }
  40201. },
  40202. },
  40203. [
  40204. {
  40205. name: "Mortal Interaction",
  40206. height: math.unit(8, "feet"),
  40207. default: true
  40208. },
  40209. {
  40210. name: "Large",
  40211. height: math.unit(24, "feet")
  40212. },
  40213. {
  40214. name: "Kaiju",
  40215. height: math.unit(240, "feet")
  40216. },
  40217. {
  40218. name: "Megamacro",
  40219. height: math.unit(8000, "feet")
  40220. },
  40221. {
  40222. name: "Continent Cracker",
  40223. height: math.unit(24e6, "feet")
  40224. },
  40225. {
  40226. name: "Earth-Eclipsing",
  40227. height: math.unit(2.4e8, "feet")
  40228. },
  40229. {
  40230. name: "Sol-Swallowing",
  40231. height: math.unit(8e10, "feet")
  40232. },
  40233. {
  40234. name: "Galaxy Gulper",
  40235. height: math.unit(8, "galaxies")
  40236. },
  40237. {
  40238. name: "Light Universal",
  40239. height: math.unit(4, "universes")
  40240. },
  40241. {
  40242. name: "Universe Atoms",
  40243. height: math.unit(1.829e9, "universes")
  40244. },
  40245. {
  40246. name: "Light Multiversal",
  40247. height: math.unit(4, "multiverses")
  40248. },
  40249. {
  40250. name: "Multiverse Atoms",
  40251. height: math.unit(1.829e9, "multiverses")
  40252. },
  40253. {
  40254. name: "Nigh-Omnipresence",
  40255. height: math.unit(8e261, "multiverses")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(10, "feet"),
  40264. weight: math.unit(1500, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/miles-thestia/front.svg",
  40268. extra: 1812/1727,
  40269. bottom: 86/1898
  40270. }
  40271. },
  40272. back: {
  40273. height: math.unit(10, "feet"),
  40274. weight: math.unit(1500, "lb"),
  40275. name: "Back",
  40276. image: {
  40277. source: "./media/characters/miles-thestia/back.svg",
  40278. extra: 1799/1690,
  40279. bottom: 47/1846
  40280. }
  40281. },
  40282. frontNsfw: {
  40283. height: math.unit(10, "feet"),
  40284. weight: math.unit(1500, "lb"),
  40285. name: "Front (NSFW)",
  40286. image: {
  40287. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40288. extra: 1812/1727,
  40289. bottom: 86/1898
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Mini-Macro",
  40296. height: math.unit(10, "feet"),
  40297. default: true
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(25, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/titan-s-wulf/front.svg",
  40309. extra: 1560/1484,
  40310. bottom: 76/1636
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Smallest",
  40317. height: math.unit(25, "feet"),
  40318. default: true
  40319. },
  40320. {
  40321. name: "Normal",
  40322. height: math.unit(200, "feet")
  40323. },
  40324. {
  40325. name: "Macro",
  40326. height: math.unit(200000, "feet")
  40327. },
  40328. {
  40329. name: "Multiversal Original",
  40330. height: math.unit(10000, "multiverses")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(8, "feet"),
  40339. weight: math.unit(553, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/tawendeh/front.svg",
  40343. extra: 2365/2268,
  40344. bottom: 83/2448
  40345. }
  40346. },
  40347. frontClothed: {
  40348. height: math.unit(8, "feet"),
  40349. weight: math.unit(553, "lb"),
  40350. name: "Front (Clothed)",
  40351. image: {
  40352. source: "./media/characters/tawendeh/front-clothed.svg",
  40353. extra: 2365/2268,
  40354. bottom: 83/2448
  40355. }
  40356. },
  40357. back: {
  40358. height: math.unit(8, "feet"),
  40359. weight: math.unit(553, "lb"),
  40360. name: "Back",
  40361. image: {
  40362. source: "./media/characters/tawendeh/back.svg",
  40363. extra: 2397/2294,
  40364. bottom: 42/2439
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Mortal Interaction",
  40371. height: math.unit(8, "feet"),
  40372. default: true
  40373. },
  40374. {
  40375. name: "Giant",
  40376. height: math.unit(80, "feet")
  40377. },
  40378. {
  40379. name: "Macro",
  40380. height: math.unit(800, "feet")
  40381. },
  40382. {
  40383. name: "Megamacro",
  40384. height: math.unit(8000, "feet")
  40385. },
  40386. {
  40387. name: "City-Crushing",
  40388. height: math.unit(24000, "feet")
  40389. },
  40390. {
  40391. name: "Mountain-Mashing",
  40392. height: math.unit(80000, "feet")
  40393. },
  40394. {
  40395. name: "Nation Nemesis",
  40396. height: math.unit(8e6, "feet")
  40397. },
  40398. {
  40399. name: "Continent Cracker",
  40400. height: math.unit(24e6, "feet")
  40401. },
  40402. {
  40403. name: "Earth-Eclipsing",
  40404. height: math.unit(2.4e8, "feet")
  40405. },
  40406. {
  40407. name: "Gas Giant Gulper",
  40408. height: math.unit(2.4e9, "feet")
  40409. },
  40410. {
  40411. name: "Sol-Swallowing",
  40412. height: math.unit(8e10, "feet")
  40413. },
  40414. {
  40415. name: "Galaxy Gulper",
  40416. height: math.unit(8, "galaxies")
  40417. },
  40418. {
  40419. name: "Cosmos Churner",
  40420. height: math.unit(8, "universes")
  40421. },
  40422. {
  40423. name: "Omnipotent Otter",
  40424. height: math.unit(80, "universes")
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40430. {
  40431. front: {
  40432. height: math.unit(2.6, "meters"),
  40433. weight: math.unit(900, "kg"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/neesha/front.svg",
  40437. extra: 1803/1653,
  40438. bottom: 128/1931
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(2.6, "meters"),
  40446. default: true
  40447. },
  40448. {
  40449. name: "Macro",
  40450. height: math.unit(50, "meters")
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(5, "feet"),
  40459. weight: math.unit(185, "lb"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/kyera/front.svg",
  40463. extra: 1875/1790,
  40464. bottom: 96/1971
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(5, "feet"),
  40472. default: true
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40478. {
  40479. front: {
  40480. height: math.unit(7 + 6/12, "feet"),
  40481. weight: math.unit(540, "lb"),
  40482. name: "Front",
  40483. image: {
  40484. source: "./media/characters/yuko/front.svg",
  40485. extra: 1282/1222,
  40486. bottom: 101/1383
  40487. }
  40488. },
  40489. frontClothed: {
  40490. height: math.unit(7 + 6/12, "feet"),
  40491. weight: math.unit(540, "lb"),
  40492. name: "Front (Clothed)",
  40493. image: {
  40494. source: "./media/characters/yuko/front-clothed.svg",
  40495. extra: 1282/1222,
  40496. bottom: 101/1383
  40497. }
  40498. },
  40499. },
  40500. [
  40501. {
  40502. name: "Normal",
  40503. height: math.unit(7 + 6/12, "feet"),
  40504. default: true
  40505. },
  40506. {
  40507. name: "Macro",
  40508. height: math.unit(26 + 9/12, "feet")
  40509. },
  40510. {
  40511. name: "Megamacro",
  40512. height: math.unit(300, "feet")
  40513. },
  40514. {
  40515. name: "Gigamacro",
  40516. height: math.unit(5000, "feet")
  40517. },
  40518. {
  40519. name: "Planetary",
  40520. height: math.unit(10000, "miles")
  40521. },
  40522. ]
  40523. ))
  40524. characterMakers.push(() => makeCharacter(
  40525. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40526. {
  40527. front: {
  40528. height: math.unit(8 + 2/12, "feet"),
  40529. weight: math.unit(600, "lb"),
  40530. name: "Front",
  40531. image: {
  40532. source: "./media/characters/deam-nitrel/front.svg",
  40533. extra: 1308/1234,
  40534. bottom: 125/1433
  40535. }
  40536. },
  40537. },
  40538. [
  40539. {
  40540. name: "Normal",
  40541. height: math.unit(8 + 2/12, "feet"),
  40542. default: true
  40543. },
  40544. ]
  40545. ))
  40546. characterMakers.push(() => makeCharacter(
  40547. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40548. {
  40549. front: {
  40550. height: math.unit(6.1, "feet"),
  40551. weight: math.unit(180, "lb"),
  40552. name: "Front",
  40553. image: {
  40554. source: "./media/characters/skyress/front.svg",
  40555. extra: 1045/915,
  40556. bottom: 28/1073
  40557. }
  40558. },
  40559. maw: {
  40560. height: math.unit(1, "feet"),
  40561. name: "Maw",
  40562. image: {
  40563. source: "./media/characters/skyress/maw.svg"
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Normal",
  40570. height: math.unit(6.1, "feet"),
  40571. default: true
  40572. },
  40573. {
  40574. name: "Macro",
  40575. height: math.unit(200, "feet")
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(4 + 2/12, "feet"),
  40584. weight: math.unit(40, "kg"),
  40585. name: "Front",
  40586. image: {
  40587. source: "./media/characters/amethyst-jones/front.svg",
  40588. extra: 1220/1150,
  40589. bottom: 101/1321
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(4 + 2/12, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(1.7, "m"),
  40606. weight: math.unit(135, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/jade/front.svg",
  40610. extra: 1818/1767,
  40611. bottom: 32/1850
  40612. }
  40613. },
  40614. back: {
  40615. height: math.unit(1.7, "m"),
  40616. weight: math.unit(135, "lb"),
  40617. name: "Back",
  40618. image: {
  40619. source: "./media/characters/jade/back.svg",
  40620. extra: 1869/1809,
  40621. bottom: 35/1904
  40622. }
  40623. },
  40624. hand: {
  40625. height: math.unit(0.24, "m"),
  40626. name: "Hand",
  40627. image: {
  40628. source: "./media/characters/jade/hand.svg"
  40629. }
  40630. },
  40631. foot: {
  40632. height: math.unit(0.263, "m"),
  40633. name: "Foot",
  40634. image: {
  40635. source: "./media/characters/jade/foot.svg"
  40636. }
  40637. },
  40638. dick: {
  40639. height: math.unit(0.47, "m"),
  40640. name: "Dick",
  40641. image: {
  40642. source: "./media/characters/jade/dick.svg"
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Micro",
  40649. height: math.unit(22, "cm")
  40650. },
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(1.7, "m"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(152, "m")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(100, "miles"),
  40667. weight: math.unit(20000, "tons"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/cookie/front.svg",
  40671. extra: 1125/1070,
  40672. bottom: 30/1155
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Big",
  40679. height: math.unit(50, "feet")
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(100, "miles"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Megamacro",
  40688. height: math.unit(90000, "miles")
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40694. {
  40695. front: {
  40696. height: math.unit(6, "feet"),
  40697. weight: math.unit(145, "lb"),
  40698. name: "Front",
  40699. image: {
  40700. source: "./media/characters/farzian/front.svg",
  40701. extra: 1902/1693,
  40702. bottom: 108/2010
  40703. }
  40704. },
  40705. },
  40706. [
  40707. {
  40708. name: "Macro",
  40709. height: math.unit(500, "feet"),
  40710. default: true
  40711. },
  40712. ]
  40713. ))
  40714. characterMakers.push(() => makeCharacter(
  40715. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40716. {
  40717. front: {
  40718. height: math.unit(3 + 6/12, "feet"),
  40719. weight: math.unit(50, "lb"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/kimberly-tilson/front.svg",
  40723. extra: 1400/1322,
  40724. bottom: 36/1436
  40725. }
  40726. },
  40727. back: {
  40728. height: math.unit(3 + 6/12, "feet"),
  40729. weight: math.unit(50, "lb"),
  40730. name: "Back",
  40731. image: {
  40732. source: "./media/characters/kimberly-tilson/back.svg",
  40733. extra: 1370/1307,
  40734. bottom: 20/1390
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(3 + 6/12, "feet"),
  40742. default: true
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40748. {
  40749. front: {
  40750. height: math.unit(1148, "feet"),
  40751. weight: math.unit(34057, "lb"),
  40752. name: "Front",
  40753. image: {
  40754. source: "./media/characters/harthos/front.svg",
  40755. extra: 1391/1339,
  40756. bottom: 13/1404
  40757. }
  40758. },
  40759. },
  40760. [
  40761. {
  40762. name: "Macro",
  40763. height: math.unit(1148, "feet"),
  40764. default: true
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40770. {
  40771. front: {
  40772. height: math.unit(15, "feet"),
  40773. name: "Front",
  40774. image: {
  40775. source: "./media/characters/hypatia/front.svg",
  40776. extra: 1653/1591,
  40777. bottom: 79/1732
  40778. }
  40779. },
  40780. },
  40781. [
  40782. {
  40783. name: "Normal",
  40784. height: math.unit(15, "feet")
  40785. },
  40786. {
  40787. name: "Small",
  40788. height: math.unit(300, "feet")
  40789. },
  40790. {
  40791. name: "Macro",
  40792. height: math.unit(2500, "feet"),
  40793. default: true
  40794. },
  40795. {
  40796. name: "Mega Macro",
  40797. height: math.unit(1500, "miles")
  40798. },
  40799. {
  40800. name: "Giga Macro",
  40801. height: math.unit(1.5e6, "miles")
  40802. },
  40803. ]
  40804. ))
  40805. characterMakers.push(() => makeCharacter(
  40806. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40807. {
  40808. front: {
  40809. height: math.unit(6, "feet"),
  40810. weight: math.unit(200, "lb"),
  40811. name: "Front",
  40812. image: {
  40813. source: "./media/characters/wulver/front.svg",
  40814. extra: 1724/1632,
  40815. bottom: 130/1854
  40816. }
  40817. },
  40818. frontNsfw: {
  40819. height: math.unit(6, "feet"),
  40820. weight: math.unit(200, "lb"),
  40821. name: "Front (NSFW)",
  40822. image: {
  40823. source: "./media/characters/wulver/front-nsfw.svg",
  40824. extra: 1724/1632,
  40825. bottom: 130/1854
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Human-Sized",
  40832. height: math.unit(6, "feet")
  40833. },
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(4, "meters"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Large",
  40841. height: math.unit(6, "m")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(7, "feet"),
  40850. name: "Front",
  40851. image: {
  40852. source: "./media/characters/maru/front.svg",
  40853. extra: 1595/1570,
  40854. bottom: 0/1595
  40855. }
  40856. },
  40857. },
  40858. [
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(7, "feet"),
  40862. default: true
  40863. },
  40864. {
  40865. name: "Macro",
  40866. height: math.unit(700, "feet")
  40867. },
  40868. {
  40869. name: "Mega Macro",
  40870. height: math.unit(25, "miles")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(6, "feet"),
  40879. weight: math.unit(170, "lb"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/xenon/front.svg",
  40883. extra: 1376/1305,
  40884. bottom: 56/1432
  40885. }
  40886. },
  40887. back: {
  40888. height: math.unit(6, "feet"),
  40889. weight: math.unit(170, "lb"),
  40890. name: "Back",
  40891. image: {
  40892. source: "./media/characters/xenon/back.svg",
  40893. extra: 1328/1259,
  40894. bottom: 95/1423
  40895. }
  40896. },
  40897. maw: {
  40898. height: math.unit(0.52, "feet"),
  40899. name: "Maw",
  40900. image: {
  40901. source: "./media/characters/xenon/maw.svg"
  40902. }
  40903. },
  40904. hand: {
  40905. height: math.unit(0.82, "feet"),
  40906. name: "Hand",
  40907. image: {
  40908. source: "./media/characters/xenon/hand.svg"
  40909. }
  40910. },
  40911. foot: {
  40912. height: math.unit(1.13, "feet"),
  40913. name: "Foot",
  40914. image: {
  40915. source: "./media/characters/xenon/foot.svg"
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Micro",
  40922. height: math.unit(0.8, "inches")
  40923. },
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(6, "feet")
  40927. },
  40928. {
  40929. name: "Macro",
  40930. height: math.unit(50, "feet"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Macro+",
  40935. height: math.unit(250, "feet")
  40936. },
  40937. {
  40938. name: "Megamacro",
  40939. height: math.unit(1500, "feet")
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(7 + 5/12, "feet"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/zane/front.svg",
  40951. extra: 1260/1203,
  40952. bottom: 94/1354
  40953. }
  40954. },
  40955. back: {
  40956. height: math.unit(5.05, "feet"),
  40957. name: "Back",
  40958. image: {
  40959. source: "./media/characters/zane/back.svg",
  40960. extra: 893/829,
  40961. bottom: 30/923
  40962. }
  40963. },
  40964. werewolf: {
  40965. height: math.unit(11, "feet"),
  40966. name: "Werewolf",
  40967. image: {
  40968. source: "./media/characters/zane/werewolf.svg",
  40969. extra: 1383/1323,
  40970. bottom: 89/1472
  40971. }
  40972. },
  40973. foot: {
  40974. height: math.unit(1.46, "feet"),
  40975. name: "Foot",
  40976. image: {
  40977. source: "./media/characters/zane/foot.svg"
  40978. }
  40979. },
  40980. footFront: {
  40981. height: math.unit(0.784, "feet"),
  40982. name: "Foot (Front)",
  40983. image: {
  40984. source: "./media/characters/zane/foot-front.svg"
  40985. }
  40986. },
  40987. dick: {
  40988. height: math.unit(1.95, "feet"),
  40989. name: "Dick",
  40990. image: {
  40991. source: "./media/characters/zane/dick.svg"
  40992. }
  40993. },
  40994. dickWerewolf: {
  40995. height: math.unit(3.77, "feet"),
  40996. name: "Dick (Werewolf)",
  40997. image: {
  40998. source: "./media/characters/zane/dick.svg"
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Normal",
  41005. height: math.unit(7 + 5/12, "feet"),
  41006. default: true
  41007. },
  41008. ]
  41009. ))
  41010. characterMakers.push(() => makeCharacter(
  41011. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41012. {
  41013. front: {
  41014. height: math.unit(6 + 2/12, "feet"),
  41015. weight: math.unit(284, "lb"),
  41016. name: "Front",
  41017. image: {
  41018. source: "./media/characters/benni-desparque/front.svg",
  41019. extra: 1353/1126,
  41020. bottom: 69/1422
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Civilian",
  41027. height: math.unit(6 + 2/12, "feet")
  41028. },
  41029. {
  41030. name: "Normal",
  41031. height: math.unit(98, "feet"),
  41032. default: true
  41033. },
  41034. {
  41035. name: "Kaiju Fighter",
  41036. height: math.unit(268, "feet")
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41042. {
  41043. front: {
  41044. height: math.unit(5, "feet"),
  41045. weight: math.unit(105, "lb"),
  41046. name: "Front",
  41047. image: {
  41048. source: "./media/characters/maxine/front.svg",
  41049. extra: 1386/1250,
  41050. bottom: 71/1457
  41051. }
  41052. },
  41053. },
  41054. [
  41055. {
  41056. name: "Normal",
  41057. height: math.unit(5, "feet"),
  41058. default: true
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(11 + 7/12, "feet"),
  41067. weight: math.unit(9576, "lb"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/scaly/front.svg",
  41071. extra: 888/867,
  41072. bottom: 36/924
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(11 + 7/12, "feet"),
  41080. default: true
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41086. {
  41087. front: {
  41088. height: math.unit(6 + 3/12, "feet"),
  41089. name: "Front",
  41090. image: {
  41091. source: "./media/characters/saelria/front.svg",
  41092. extra: 1243/1138,
  41093. bottom: 46/1289
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Micro",
  41100. height: math.unit(6, "inches"),
  41101. },
  41102. {
  41103. name: "Normal",
  41104. height: math.unit(6 + 3/12, "feet"),
  41105. default: true
  41106. },
  41107. {
  41108. name: "Macro",
  41109. height: math.unit(25, "feet")
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(80, "meters"),
  41118. weight: math.unit(7000, "tonnes"),
  41119. name: "Front",
  41120. image: {
  41121. source: "./media/characters/tef/front.svg",
  41122. extra: 2036/1991,
  41123. bottom: 54/2090
  41124. }
  41125. },
  41126. back: {
  41127. height: math.unit(80, "meters"),
  41128. weight: math.unit(7000, "tonnes"),
  41129. name: "Back",
  41130. image: {
  41131. source: "./media/characters/tef/back.svg",
  41132. extra: 2036/1991,
  41133. bottom: 54/2090
  41134. }
  41135. },
  41136. },
  41137. [
  41138. {
  41139. name: "Macro",
  41140. height: math.unit(80, "meters"),
  41141. default: true
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(13, "feet"),
  41150. weight: math.unit(6, "tons"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/rover/front.svg",
  41154. extra: 1233/1156,
  41155. bottom: 50/1283
  41156. }
  41157. },
  41158. back: {
  41159. height: math.unit(13, "feet"),
  41160. weight: math.unit(6, "tons"),
  41161. name: "Back",
  41162. image: {
  41163. source: "./media/characters/rover/back.svg",
  41164. extra: 1327/1258,
  41165. bottom: 39/1366
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Normal",
  41172. height: math.unit(13, "feet"),
  41173. default: true
  41174. },
  41175. {
  41176. name: "Macro",
  41177. height: math.unit(1300, "feet")
  41178. },
  41179. {
  41180. name: "Megamacro",
  41181. height: math.unit(1300, "miles")
  41182. },
  41183. {
  41184. name: "Gigamacro",
  41185. height: math.unit(1300000, "miles")
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(6, "feet"),
  41194. weight: math.unit(150, "lb"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/ariz/front.svg",
  41198. extra: 1401/1346,
  41199. bottom: 5/1406
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Normal",
  41206. height: math.unit(10, "feet"),
  41207. default: true
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(6, "feet"),
  41216. weight: math.unit(140, "lb"),
  41217. name: "Front",
  41218. image: {
  41219. source: "./media/characters/sigrun/front.svg",
  41220. extra: 1418/1359,
  41221. bottom: 27/1445
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Macro",
  41228. height: math.unit(35, "feet"),
  41229. default: true
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(6, "feet"),
  41238. weight: math.unit(150, "lb"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/numin/front.svg",
  41242. extra: 1433/1388,
  41243. bottom: 12/1445
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Macro",
  41250. height: math.unit(21.5, "km"),
  41251. default: true
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(6, "feet"),
  41260. weight: math.unit(463, "lb"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/melwa/front.svg",
  41264. extra: 1307/1248,
  41265. bottom: 93/1400
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Macro",
  41272. height: math.unit(50, "meters"),
  41273. default: true
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(325, "feet"),
  41282. name: "Front",
  41283. image: {
  41284. source: "./media/characters/zorkaiju/front.svg",
  41285. extra: 1955/1814,
  41286. bottom: 40/1995
  41287. }
  41288. },
  41289. frontExtended: {
  41290. height: math.unit(325, "feet"),
  41291. name: "Front (Extended)",
  41292. image: {
  41293. source: "./media/characters/zorkaiju/front-extended.svg",
  41294. extra: 1955/1814,
  41295. bottom: 40/1995
  41296. }
  41297. },
  41298. side: {
  41299. height: math.unit(325, "feet"),
  41300. name: "Side",
  41301. image: {
  41302. source: "./media/characters/zorkaiju/side.svg",
  41303. extra: 1495/1396,
  41304. bottom: 17/1512
  41305. }
  41306. },
  41307. sideExtended: {
  41308. height: math.unit(325, "feet"),
  41309. name: "Side (Extended)",
  41310. image: {
  41311. source: "./media/characters/zorkaiju/side-extended.svg",
  41312. extra: 1495/1396,
  41313. bottom: 17/1512
  41314. }
  41315. },
  41316. back: {
  41317. height: math.unit(325, "feet"),
  41318. name: "Back",
  41319. image: {
  41320. source: "./media/characters/zorkaiju/back.svg",
  41321. extra: 1959/1821,
  41322. bottom: 31/1990
  41323. }
  41324. },
  41325. backExtended: {
  41326. height: math.unit(325, "feet"),
  41327. name: "Back (Extended)",
  41328. image: {
  41329. source: "./media/characters/zorkaiju/back-extended.svg",
  41330. extra: 1959/1821,
  41331. bottom: 31/1990
  41332. }
  41333. },
  41334. hand: {
  41335. height: math.unit(58.4, "feet"),
  41336. name: "Hand",
  41337. image: {
  41338. source: "./media/characters/zorkaiju/hand.svg"
  41339. }
  41340. },
  41341. handExtended: {
  41342. height: math.unit(61.4, "feet"),
  41343. name: "Hand (Extended)",
  41344. image: {
  41345. source: "./media/characters/zorkaiju/hand-extended.svg"
  41346. }
  41347. },
  41348. foot: {
  41349. height: math.unit(95, "feet"),
  41350. name: "Foot",
  41351. image: {
  41352. source: "./media/characters/zorkaiju/foot.svg"
  41353. }
  41354. },
  41355. leftArm: {
  41356. height: math.unit(59, "feet"),
  41357. name: "Left Arm",
  41358. image: {
  41359. source: "./media/characters/zorkaiju/left-arm.svg"
  41360. }
  41361. },
  41362. rightArm: {
  41363. height: math.unit(59, "feet"),
  41364. name: "Right Arm",
  41365. image: {
  41366. source: "./media/characters/zorkaiju/right-arm.svg"
  41367. }
  41368. },
  41369. tail: {
  41370. height: math.unit(104, "feet"),
  41371. name: "Tail",
  41372. image: {
  41373. source: "./media/characters/zorkaiju/tail.svg"
  41374. }
  41375. },
  41376. tailExtended: {
  41377. height: math.unit(104, "feet"),
  41378. name: "Tail (Extended)",
  41379. image: {
  41380. source: "./media/characters/zorkaiju/tail-extended.svg"
  41381. }
  41382. },
  41383. tailBottom: {
  41384. height: math.unit(104, "feet"),
  41385. name: "Tail Bottom",
  41386. image: {
  41387. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41388. }
  41389. },
  41390. crystal: {
  41391. height: math.unit(27.54, "feet"),
  41392. name: "Crystal",
  41393. image: {
  41394. source: "./media/characters/zorkaiju/crystal.svg"
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Kaiju",
  41401. height: math.unit(325, "feet"),
  41402. default: true
  41403. },
  41404. ]
  41405. ))
  41406. characterMakers.push(() => makeCharacter(
  41407. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41408. {
  41409. front: {
  41410. height: math.unit(6 + 1/12, "feet"),
  41411. weight: math.unit(115, "lb"),
  41412. name: "Front",
  41413. image: {
  41414. source: "./media/characters/bailey-belfry/front.svg",
  41415. extra: 1240/1121,
  41416. bottom: 101/1341
  41417. }
  41418. },
  41419. },
  41420. [
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(6 + 1/12, "feet"),
  41424. default: true
  41425. },
  41426. ]
  41427. ))
  41428. characterMakers.push(() => makeCharacter(
  41429. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41430. {
  41431. side: {
  41432. height: math.unit(4, "meters"),
  41433. weight: math.unit(250, "kg"),
  41434. name: "Side",
  41435. image: {
  41436. source: "./media/characters/blacky/side.svg",
  41437. extra: 1027/919,
  41438. bottom: 43/1070
  41439. }
  41440. },
  41441. maw: {
  41442. height: math.unit(1, "meters"),
  41443. name: "Maw",
  41444. image: {
  41445. source: "./media/characters/blacky/maw.svg"
  41446. }
  41447. },
  41448. paw: {
  41449. height: math.unit(1, "meters"),
  41450. name: "Paw",
  41451. image: {
  41452. source: "./media/characters/blacky/paw.svg"
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Normal",
  41459. height: math.unit(4, "meters"),
  41460. default: true
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(170, "cm"),
  41469. weight: math.unit(66, "kg"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/thux-ei/front.svg",
  41473. extra: 1109/1011,
  41474. bottom: 8/1117
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Normal",
  41481. height: math.unit(170, "cm"),
  41482. default: true
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(5, "feet"),
  41491. weight: math.unit(120, "lb"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/roxanne-voltaire/front.svg",
  41495. extra: 1901/1779,
  41496. bottom: 53/1954
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Normal",
  41503. height: math.unit(5, "feet"),
  41504. default: true
  41505. },
  41506. {
  41507. name: "Giant",
  41508. height: math.unit(50, "feet")
  41509. },
  41510. {
  41511. name: "Titan",
  41512. height: math.unit(500, "feet")
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(5000, "feet")
  41517. },
  41518. {
  41519. name: "Megamacro",
  41520. height: math.unit(50000, "feet")
  41521. },
  41522. {
  41523. name: "Gigamacro",
  41524. height: math.unit(500000, "feet")
  41525. },
  41526. {
  41527. name: "Teramacro",
  41528. height: math.unit(5e6, "feet")
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(6 + 2/12, "feet"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/squeaks/front.svg",
  41540. extra: 1823/1768,
  41541. bottom: 138/1961
  41542. }
  41543. },
  41544. },
  41545. [
  41546. {
  41547. name: "Micro",
  41548. height: math.unit(0.5, "inches")
  41549. },
  41550. {
  41551. name: "Normal",
  41552. height: math.unit(6 + 2/12, "feet"),
  41553. default: true
  41554. },
  41555. {
  41556. name: "Macro",
  41557. height: math.unit(600, "feet")
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(1.72, "meters"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/archinger/front.svg",
  41569. extra: 1861/1675,
  41570. bottom: 125/1986
  41571. }
  41572. },
  41573. back: {
  41574. height: math.unit(1.72, "meters"),
  41575. name: "Back",
  41576. image: {
  41577. source: "./media/characters/archinger/back.svg",
  41578. extra: 1844/1701,
  41579. bottom: 104/1948
  41580. }
  41581. },
  41582. cock: {
  41583. height: math.unit(0.59, "feet"),
  41584. name: "Cock",
  41585. image: {
  41586. source: "./media/characters/archinger/cock.svg"
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(1.72, "meters"),
  41594. default: true
  41595. },
  41596. {
  41597. name: "Macro",
  41598. height: math.unit(84, "meters")
  41599. },
  41600. {
  41601. name: "Macro+",
  41602. height: math.unit(112, "meters")
  41603. },
  41604. {
  41605. name: "Macro++",
  41606. height: math.unit(960, "meters")
  41607. },
  41608. {
  41609. name: "Macro+++",
  41610. height: math.unit(4, "km")
  41611. },
  41612. {
  41613. name: "Macro++++",
  41614. height: math.unit(48, "km")
  41615. },
  41616. {
  41617. name: "Macro+++++",
  41618. height: math.unit(4500, "km")
  41619. },
  41620. ]
  41621. ))
  41622. characterMakers.push(() => makeCharacter(
  41623. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41624. {
  41625. front: {
  41626. height: math.unit(5 + 5/12, "feet"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/alsnapz/front.svg",
  41630. extra: 1157/1065,
  41631. bottom: 42/1199
  41632. }
  41633. },
  41634. },
  41635. [
  41636. {
  41637. name: "Normal",
  41638. height: math.unit(5 + 5/12, "feet"),
  41639. default: true
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41645. {
  41646. side: {
  41647. height: math.unit(3.2, "earths"),
  41648. name: "Side",
  41649. image: {
  41650. source: "./media/characters/mag/side.svg",
  41651. extra: 1331/1008,
  41652. bottom: 52/1383
  41653. }
  41654. },
  41655. wing: {
  41656. height: math.unit(1.94, "earths"),
  41657. name: "Wing",
  41658. image: {
  41659. source: "./media/characters/mag/wing.svg"
  41660. }
  41661. },
  41662. dick: {
  41663. height: math.unit(1.8, "earths"),
  41664. name: "Dick",
  41665. image: {
  41666. source: "./media/characters/mag/dick.svg"
  41667. }
  41668. },
  41669. ass: {
  41670. height: math.unit(1.33, "earths"),
  41671. name: "Ass",
  41672. image: {
  41673. source: "./media/characters/mag/ass.svg"
  41674. }
  41675. },
  41676. head: {
  41677. height: math.unit(1.1, "earths"),
  41678. name: "Head",
  41679. image: {
  41680. source: "./media/characters/mag/head.svg"
  41681. }
  41682. },
  41683. maw: {
  41684. height: math.unit(1.62, "earths"),
  41685. name: "Maw",
  41686. image: {
  41687. source: "./media/characters/mag/maw.svg"
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Small",
  41694. height: math.unit(162, "feet")
  41695. },
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(3.2, "earths"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41705. {
  41706. front: {
  41707. height: math.unit(512, "feet"),
  41708. weight: math.unit(63509, "tonnes"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/vorrel-harroc/front.svg",
  41712. extra: 1075/1063,
  41713. bottom: 62/1137
  41714. }
  41715. },
  41716. },
  41717. [
  41718. {
  41719. name: "Normal",
  41720. height: math.unit(10, "feet")
  41721. },
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(512, "feet"),
  41725. default: true
  41726. },
  41727. {
  41728. name: "Megamacro",
  41729. height: math.unit(256, "miles")
  41730. },
  41731. {
  41732. name: "Gigamacro",
  41733. height: math.unit(4096, "miles")
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41739. {
  41740. side: {
  41741. height: math.unit(50, "feet"),
  41742. name: "Side",
  41743. image: {
  41744. source: "./media/characters/froimar/side.svg",
  41745. extra: 855/638,
  41746. bottom: 99/954
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "Macro",
  41753. height: math.unit(50, "feet"),
  41754. default: true
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(210, "miles"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/timothy/front.svg",
  41766. extra: 1007/943,
  41767. bottom: 62/1069
  41768. }
  41769. },
  41770. frontSkirt: {
  41771. height: math.unit(210, "miles"),
  41772. name: "Front (Skirt)",
  41773. image: {
  41774. source: "./media/characters/timothy/front-skirt.svg",
  41775. extra: 1007/943,
  41776. bottom: 62/1069
  41777. }
  41778. },
  41779. frontCoat: {
  41780. height: math.unit(210, "miles"),
  41781. name: "Front (Coat)",
  41782. image: {
  41783. source: "./media/characters/timothy/front-coat.svg",
  41784. extra: 1007/943,
  41785. bottom: 62/1069
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Macro",
  41792. height: math.unit(210, "miles"),
  41793. default: true
  41794. },
  41795. {
  41796. name: "Megamacro",
  41797. height: math.unit(210000, "miles")
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(188, "feet"),
  41806. name: "Front",
  41807. image: {
  41808. source: "./media/characters/pyotr/front.svg",
  41809. extra: 1912/1826,
  41810. bottom: 18/1930
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Macro",
  41817. height: math.unit(188, "feet"),
  41818. default: true
  41819. },
  41820. {
  41821. name: "Megamacro",
  41822. height: math.unit(8, "miles")
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41828. {
  41829. side: {
  41830. height: math.unit(10, "feet"),
  41831. weight: math.unit(4500, "lb"),
  41832. name: "Side",
  41833. image: {
  41834. source: "./media/characters/ackart/side.svg",
  41835. extra: 1776/1668,
  41836. bottom: 116/1892
  41837. }
  41838. },
  41839. },
  41840. [
  41841. {
  41842. name: "Normal",
  41843. height: math.unit(10, "feet"),
  41844. default: true
  41845. },
  41846. ]
  41847. ))
  41848. characterMakers.push(() => makeCharacter(
  41849. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41850. {
  41851. side: {
  41852. height: math.unit(21, "feet"),
  41853. name: "Side",
  41854. image: {
  41855. source: "./media/characters/nolow/side.svg",
  41856. extra: 1484/1434,
  41857. bottom: 85/1569
  41858. }
  41859. },
  41860. sideErect: {
  41861. height: math.unit(21, "feet"),
  41862. name: "Side-erect",
  41863. image: {
  41864. source: "./media/characters/nolow/side-erect.svg",
  41865. extra: 1484/1434,
  41866. bottom: 85/1569
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Regular",
  41873. height: math.unit(12, "feet")
  41874. },
  41875. {
  41876. name: "Big Chee",
  41877. height: math.unit(21, "feet"),
  41878. default: true
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(7, "feet"),
  41887. weight: math.unit(250, "lb"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/nines/front.svg",
  41891. extra: 1741/1607,
  41892. bottom: 41/1782
  41893. }
  41894. },
  41895. side: {
  41896. height: math.unit(7, "feet"),
  41897. weight: math.unit(250, "lb"),
  41898. name: "Side",
  41899. image: {
  41900. source: "./media/characters/nines/side.svg",
  41901. extra: 1854/1735,
  41902. bottom: 93/1947
  41903. }
  41904. },
  41905. back: {
  41906. height: math.unit(7, "feet"),
  41907. weight: math.unit(250, "lb"),
  41908. name: "Back",
  41909. image: {
  41910. source: "./media/characters/nines/back.svg",
  41911. extra: 1748/1615,
  41912. bottom: 20/1768
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Megamacro",
  41919. height: math.unit(99, "km"),
  41920. default: true
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41926. {
  41927. front: {
  41928. height: math.unit(5 + 10/12, "feet"),
  41929. weight: math.unit(210, "lb"),
  41930. name: "Front",
  41931. image: {
  41932. source: "./media/characters/zenith/front.svg",
  41933. extra: 1531/1452,
  41934. bottom: 198/1729
  41935. }
  41936. },
  41937. back: {
  41938. height: math.unit(5 + 10/12, "feet"),
  41939. weight: math.unit(210, "lb"),
  41940. name: "Back",
  41941. image: {
  41942. source: "./media/characters/zenith/back.svg",
  41943. extra: 1571/1487,
  41944. bottom: 75/1646
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Normal",
  41951. height: math.unit(5 + 10/12, "feet"),
  41952. default: true
  41953. }
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(4, "feet"),
  41961. weight: math.unit(60, "lb"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/jasper/front.svg",
  41965. extra: 1450/1379,
  41966. bottom: 19/1469
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Normal",
  41973. height: math.unit(4, "feet"),
  41974. default: true
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(6 + 5/12, "feet"),
  41983. weight: math.unit(290, "lb"),
  41984. name: "Front",
  41985. image: {
  41986. source: "./media/characters/tiberius-thyben/front.svg",
  41987. extra: 757/739,
  41988. bottom: 39/796
  41989. }
  41990. },
  41991. },
  41992. [
  41993. {
  41994. name: "Micro",
  41995. height: math.unit(1.5, "inches")
  41996. },
  41997. {
  41998. name: "Normal",
  41999. height: math.unit(6 + 5/12, "feet"),
  42000. default: true
  42001. },
  42002. {
  42003. name: "Macro",
  42004. height: math.unit(300, "feet")
  42005. },
  42006. ]
  42007. ))
  42008. characterMakers.push(() => makeCharacter(
  42009. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42010. {
  42011. front: {
  42012. height: math.unit(5 + 6/12, "feet"),
  42013. weight: math.unit(60, "kg"),
  42014. name: "Front",
  42015. image: {
  42016. source: "./media/characters/sabre/front.svg",
  42017. extra: 738/671,
  42018. bottom: 27/765
  42019. }
  42020. },
  42021. },
  42022. [
  42023. {
  42024. name: "Teeny",
  42025. height: math.unit(2, "inches")
  42026. },
  42027. {
  42028. name: "Smol",
  42029. height: math.unit(8, "inches")
  42030. },
  42031. {
  42032. name: "Normal",
  42033. height: math.unit(5 + 6/12, "feet"),
  42034. default: true
  42035. },
  42036. {
  42037. name: "Mini-Macro",
  42038. height: math.unit(15, "feet")
  42039. },
  42040. {
  42041. name: "Macro",
  42042. height: math.unit(50, "feet")
  42043. },
  42044. ]
  42045. ))
  42046. characterMakers.push(() => makeCharacter(
  42047. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42048. {
  42049. front: {
  42050. height: math.unit(6 + 4/12, "feet"),
  42051. weight: math.unit(170, "lb"),
  42052. name: "Front",
  42053. image: {
  42054. source: "./media/characters/charlie/front.svg",
  42055. extra: 1348/1228,
  42056. bottom: 15/1363
  42057. }
  42058. },
  42059. },
  42060. [
  42061. {
  42062. name: "Macro",
  42063. height: math.unit(1700, "meters"),
  42064. default: true
  42065. },
  42066. {
  42067. name: "MegaMacro",
  42068. height: math.unit(20400, "meters")
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42074. {
  42075. front: {
  42076. height: math.unit(6 + 3/12, "feet"),
  42077. weight: math.unit(185, "lb"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/susan-grant/front.svg",
  42081. extra: 1351/1327,
  42082. bottom: 26/1377
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Normal",
  42089. height: math.unit(6 + 3/12, "feet"),
  42090. default: true
  42091. },
  42092. {
  42093. name: "Macro",
  42094. height: math.unit(225, "feet")
  42095. },
  42096. {
  42097. name: "Macro+",
  42098. height: math.unit(900, "feet")
  42099. },
  42100. {
  42101. name: "MegaMacro",
  42102. height: math.unit(14400, "feet")
  42103. },
  42104. ]
  42105. ))
  42106. characterMakers.push(() => makeCharacter(
  42107. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42108. {
  42109. front: {
  42110. height: math.unit(5 + 4/12, "feet"),
  42111. weight: math.unit(110, "lb"),
  42112. name: "Front",
  42113. image: {
  42114. source: "./media/characters/axel-isanov/front.svg",
  42115. extra: 1096/1065,
  42116. bottom: 13/1109
  42117. }
  42118. },
  42119. },
  42120. [
  42121. {
  42122. name: "Normal",
  42123. height: math.unit(5 + 4/12, "feet"),
  42124. default: true
  42125. },
  42126. ]
  42127. ))
  42128. characterMakers.push(() => makeCharacter(
  42129. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42130. {
  42131. front: {
  42132. height: math.unit(9, "feet"),
  42133. weight: math.unit(467, "lb"),
  42134. name: "Front",
  42135. image: {
  42136. source: "./media/characters/necahual/front.svg",
  42137. extra: 920/873,
  42138. bottom: 26/946
  42139. }
  42140. },
  42141. back: {
  42142. height: math.unit(9, "feet"),
  42143. weight: math.unit(467, "lb"),
  42144. name: "Back",
  42145. image: {
  42146. source: "./media/characters/necahual/back.svg",
  42147. extra: 930/884,
  42148. bottom: 16/946
  42149. }
  42150. },
  42151. frontUnderwear: {
  42152. height: math.unit(9, "feet"),
  42153. weight: math.unit(467, "lb"),
  42154. name: "Front (Underwear)",
  42155. image: {
  42156. source: "./media/characters/necahual/front-underwear.svg",
  42157. extra: 920/873,
  42158. bottom: 26/946
  42159. }
  42160. },
  42161. frontDressed: {
  42162. height: math.unit(9, "feet"),
  42163. weight: math.unit(467, "lb"),
  42164. name: "Front (Dressed)",
  42165. image: {
  42166. source: "./media/characters/necahual/front-dressed.svg",
  42167. extra: 920/873,
  42168. bottom: 26/946
  42169. }
  42170. },
  42171. },
  42172. [
  42173. {
  42174. name: "Comprsesed",
  42175. height: math.unit(9, "feet")
  42176. },
  42177. {
  42178. name: "Natural",
  42179. height: math.unit(15, "feet"),
  42180. default: true
  42181. },
  42182. {
  42183. name: "Boosted",
  42184. height: math.unit(50, "feet")
  42185. },
  42186. {
  42187. name: "Boosted+",
  42188. height: math.unit(150, "feet")
  42189. },
  42190. {
  42191. name: "Max",
  42192. height: math.unit(500, "feet")
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(22 + 1/12, "feet"),
  42201. weight: math.unit(3200, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/theo-acacia/front.svg",
  42205. extra: 1796/1741,
  42206. bottom: 83/1879
  42207. }
  42208. },
  42209. frontUnderwear: {
  42210. height: math.unit(22 + 1/12, "feet"),
  42211. weight: math.unit(3200, "lb"),
  42212. name: "Front (Underwear)",
  42213. image: {
  42214. source: "./media/characters/theo-acacia/front-underwear.svg",
  42215. extra: 1796/1741,
  42216. bottom: 83/1879
  42217. }
  42218. },
  42219. frontNude: {
  42220. height: math.unit(22 + 1/12, "feet"),
  42221. weight: math.unit(3200, "lb"),
  42222. name: "Front (Nude)",
  42223. image: {
  42224. source: "./media/characters/theo-acacia/front-nude.svg",
  42225. extra: 1796/1741,
  42226. bottom: 83/1879
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "Normal",
  42233. height: math.unit(22 + 1/12, "feet"),
  42234. default: true
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(20, "feet"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/astra/front.svg",
  42246. extra: 1850/1714,
  42247. bottom: 106/1956
  42248. }
  42249. },
  42250. frontUndressed: {
  42251. height: math.unit(20, "feet"),
  42252. name: "Front (Undressed)",
  42253. image: {
  42254. source: "./media/characters/astra/front-undressed.svg",
  42255. extra: 1926/1749,
  42256. bottom: 0/1926
  42257. }
  42258. },
  42259. hand: {
  42260. height: math.unit(1.53, "feet"),
  42261. name: "Hand",
  42262. image: {
  42263. source: "./media/characters/astra/hand.svg"
  42264. }
  42265. },
  42266. paw: {
  42267. height: math.unit(1.53, "feet"),
  42268. name: "Paw",
  42269. image: {
  42270. source: "./media/characters/astra/paw.svg"
  42271. }
  42272. },
  42273. },
  42274. [
  42275. {
  42276. name: "Smallest",
  42277. height: math.unit(20, "feet")
  42278. },
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(1e9, "miles"),
  42282. default: true
  42283. },
  42284. {
  42285. name: "Larger",
  42286. height: math.unit(5, "multiverses")
  42287. },
  42288. {
  42289. name: "Largest",
  42290. height: math.unit(1e9, "multiverses")
  42291. },
  42292. ]
  42293. ))
  42294. characterMakers.push(() => makeCharacter(
  42295. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42296. {
  42297. front: {
  42298. height: math.unit(8, "feet"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/breanna/front.svg",
  42302. extra: 1912/1632,
  42303. bottom: 33/1945
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Smallest",
  42310. height: math.unit(8, "feet")
  42311. },
  42312. {
  42313. name: "Normal",
  42314. height: math.unit(1, "mile"),
  42315. default: true
  42316. },
  42317. {
  42318. name: "Maximum",
  42319. height: math.unit(1500000000000, "lightyears")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(5 + 11/12, "feet"),
  42328. weight: math.unit(155, "lb"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/cai/front.svg",
  42332. extra: 1823/1702,
  42333. bottom: 32/1855
  42334. }
  42335. },
  42336. back: {
  42337. height: math.unit(5 + 11/12, "feet"),
  42338. weight: math.unit(155, "lb"),
  42339. name: "Back",
  42340. image: {
  42341. source: "./media/characters/cai/back.svg",
  42342. extra: 1809/1708,
  42343. bottom: 31/1840
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(5 + 11/12, "feet"),
  42351. default: true
  42352. },
  42353. {
  42354. name: "Big",
  42355. height: math.unit(15, "feet")
  42356. },
  42357. {
  42358. name: "Macro",
  42359. height: math.unit(200, "feet")
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(5 + 6/12, "feet"),
  42368. weight: math.unit(160, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42372. extra: 1227/1174,
  42373. bottom: 37/1264
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Macro",
  42380. height: math.unit(444, "meters"),
  42381. default: true
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(18 + 7/12, "feet"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/rex/front.svg",
  42393. extra: 1941/1807,
  42394. bottom: 66/2007
  42395. }
  42396. },
  42397. back: {
  42398. height: math.unit(18 + 7/12, "feet"),
  42399. name: "Back",
  42400. image: {
  42401. source: "./media/characters/rex/back.svg",
  42402. extra: 1937/1822,
  42403. bottom: 42/1979
  42404. }
  42405. },
  42406. boot: {
  42407. height: math.unit(3.45, "feet"),
  42408. name: "Boot",
  42409. image: {
  42410. source: "./media/characters/rex/boot.svg"
  42411. }
  42412. },
  42413. paw: {
  42414. height: math.unit(4.17, "feet"),
  42415. name: "Paw",
  42416. image: {
  42417. source: "./media/characters/rex/paw.svg"
  42418. }
  42419. },
  42420. head: {
  42421. height: math.unit(6.728, "feet"),
  42422. name: "Head",
  42423. image: {
  42424. source: "./media/characters/rex/head.svg"
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Nano",
  42431. height: math.unit(18 + 7/12, "feet")
  42432. },
  42433. {
  42434. name: "Micro",
  42435. height: math.unit(1.5, "megameters")
  42436. },
  42437. {
  42438. name: "Normal",
  42439. height: math.unit(440, "megameters"),
  42440. default: true
  42441. },
  42442. {
  42443. name: "Macro",
  42444. height: math.unit(2.5, "gigameters")
  42445. },
  42446. {
  42447. name: "Gigamacro",
  42448. height: math.unit(2, "galaxies")
  42449. },
  42450. ]
  42451. ))
  42452. characterMakers.push(() => makeCharacter(
  42453. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42454. {
  42455. side: {
  42456. height: math.unit(32, "feet"),
  42457. weight: math.unit(250000, "lb"),
  42458. name: "Side",
  42459. image: {
  42460. source: "./media/characters/silverwing/side.svg",
  42461. extra: 1100/1019,
  42462. bottom: 204/1304
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(32, "feet"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42476. {
  42477. front: {
  42478. height: math.unit(6 + 6/12, "feet"),
  42479. weight: math.unit(350, "lb"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/tristan-hawthorne/front.svg",
  42483. extra: 1159/1124,
  42484. bottom: 37/1196
  42485. },
  42486. form: "labrador",
  42487. default: true
  42488. },
  42489. skunkFront: {
  42490. height: math.unit(4 + 6/12, "feet"),
  42491. weight: math.unit(120, "lb"),
  42492. name: "Front",
  42493. image: {
  42494. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42495. extra: 1609/1551,
  42496. bottom: 169/1778
  42497. },
  42498. form: "skunk",
  42499. default: true
  42500. },
  42501. },
  42502. [
  42503. {
  42504. name: "Normal",
  42505. height: math.unit(6 + 6/12, "feet"),
  42506. form: "labrador",
  42507. default: true
  42508. },
  42509. {
  42510. name: "Normal",
  42511. height: math.unit(4 + 6/12, "feet"),
  42512. form: "skunk",
  42513. default: true
  42514. },
  42515. ],
  42516. {
  42517. "labrador": {
  42518. name: "Labrador",
  42519. default: true
  42520. },
  42521. "skunk": {
  42522. name: "Skunk"
  42523. }
  42524. }
  42525. ))
  42526. characterMakers.push(() => makeCharacter(
  42527. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42528. {
  42529. front: {
  42530. height: math.unit(5 + 11/12, "feet"),
  42531. weight: math.unit(190, "lb"),
  42532. name: "Front",
  42533. image: {
  42534. source: "./media/characters/mizu/front.svg",
  42535. extra: 1988/1788,
  42536. bottom: 14/2002
  42537. }
  42538. },
  42539. },
  42540. [
  42541. {
  42542. name: "Normal",
  42543. height: math.unit(5 + 11/12, "feet"),
  42544. default: true
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42550. {
  42551. front: {
  42552. height: math.unit(1.7, "feet"),
  42553. weight: math.unit(50, "lb"),
  42554. name: "Front",
  42555. image: {
  42556. source: "./media/characters/dechroma/front.svg",
  42557. extra: 1095/859,
  42558. bottom: 64/1159
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Normal",
  42565. height: math.unit(1.7, "feet"),
  42566. default: true
  42567. },
  42568. ]
  42569. ))
  42570. characterMakers.push(() => makeCharacter(
  42571. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42572. {
  42573. side: {
  42574. height: math.unit(30, "feet"),
  42575. name: "Side",
  42576. image: {
  42577. source: "./media/characters/veluren-thanazel/side.svg",
  42578. extra: 1611/633,
  42579. bottom: 118/1729
  42580. }
  42581. },
  42582. front: {
  42583. height: math.unit(30, "feet"),
  42584. name: "Front",
  42585. image: {
  42586. source: "./media/characters/veluren-thanazel/front.svg",
  42587. extra: 1486/636,
  42588. bottom: 238/1724
  42589. }
  42590. },
  42591. head: {
  42592. height: math.unit(21.4, "feet"),
  42593. name: "Head",
  42594. image: {
  42595. source: "./media/characters/veluren-thanazel/head.svg"
  42596. }
  42597. },
  42598. genitals: {
  42599. height: math.unit(19.4, "feet"),
  42600. name: "Genitals",
  42601. image: {
  42602. source: "./media/characters/veluren-thanazel/genitals.svg"
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Social",
  42609. height: math.unit(6, "feet")
  42610. },
  42611. {
  42612. name: "Play",
  42613. height: math.unit(12, "feet")
  42614. },
  42615. {
  42616. name: "True",
  42617. height: math.unit(30, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(7 + 6/12, "feet"),
  42627. weight: math.unit(500, "kg"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/arcturas/front.svg",
  42631. extra: 1700/1500,
  42632. bottom: 145/1845
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Normal",
  42639. height: math.unit(7 + 6/12, "feet"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42646. {
  42647. side: {
  42648. height: math.unit(6, "feet"),
  42649. weight: math.unit(2, "tons"),
  42650. name: "Side",
  42651. image: {
  42652. source: "./media/characters/vitaen/side.svg",
  42653. extra: 1157/617,
  42654. bottom: 122/1279
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(6, "feet"),
  42662. default: true
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(19, "feet"),
  42671. name: "Front",
  42672. image: {
  42673. source: "./media/characters/fia-dreamweaver/front.svg",
  42674. extra: 1630/1504,
  42675. bottom: 25/1655
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "Normal",
  42682. height: math.unit(19, "feet"),
  42683. default: true
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42689. {
  42690. front: {
  42691. height: math.unit(5 + 4/12, "feet"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/artan/front.svg",
  42695. extra: 1618/1535,
  42696. bottom: 46/1664
  42697. }
  42698. },
  42699. back: {
  42700. height: math.unit(5 + 4/12, "feet"),
  42701. name: "Back",
  42702. image: {
  42703. source: "./media/characters/artan/back.svg",
  42704. extra: 1618/1543,
  42705. bottom: 31/1649
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(5 + 4/12, "feet"),
  42713. default: true
  42714. },
  42715. ]
  42716. ))
  42717. characterMakers.push(() => makeCharacter(
  42718. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42719. {
  42720. side: {
  42721. height: math.unit(182, "cm"),
  42722. weight: math.unit(1000, "lb"),
  42723. name: "Side",
  42724. image: {
  42725. source: "./media/characters/silver-dragon/side.svg",
  42726. extra: 710/287,
  42727. bottom: 88/798
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Normal",
  42734. height: math.unit(182, "cm"),
  42735. default: true
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42741. {
  42742. side: {
  42743. height: math.unit(6 + 6/12, "feet"),
  42744. weight: math.unit(1.5, "tons"),
  42745. name: "Side",
  42746. image: {
  42747. source: "./media/characters/zephyr/side.svg",
  42748. extra: 1433/586,
  42749. bottom: 109/1542
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Normal",
  42756. height: math.unit(6 + 6/12, "feet"),
  42757. default: true
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42763. {
  42764. side: {
  42765. height: math.unit(1, "feet"),
  42766. name: "Side",
  42767. image: {
  42768. source: "./media/characters/vixye/side.svg",
  42769. extra: 632/541,
  42770. bottom: 0/632
  42771. }
  42772. },
  42773. },
  42774. [
  42775. {
  42776. name: "Normal",
  42777. height: math.unit(1, "feet"),
  42778. default: true
  42779. },
  42780. {
  42781. name: "True",
  42782. height: math.unit(1e15, "multiverses")
  42783. },
  42784. ]
  42785. ))
  42786. characterMakers.push(() => makeCharacter(
  42787. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42788. {
  42789. front: {
  42790. height: math.unit(8 + 2/12, "feet"),
  42791. weight: math.unit(650, "lb"),
  42792. name: "Front",
  42793. image: {
  42794. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42795. extra: 1174/1137,
  42796. bottom: 82/1256
  42797. }
  42798. },
  42799. back: {
  42800. height: math.unit(8 + 2/12, "feet"),
  42801. weight: math.unit(650, "lb"),
  42802. name: "Back",
  42803. image: {
  42804. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42805. extra: 1204/1157,
  42806. bottom: 46/1250
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Wildform",
  42813. height: math.unit(8 + 2/12, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42820. {
  42821. front: {
  42822. height: math.unit(18, "feet"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/cyphin/front.svg",
  42826. extra: 970/886,
  42827. bottom: 42/1012
  42828. }
  42829. },
  42830. back: {
  42831. height: math.unit(18, "feet"),
  42832. name: "Back",
  42833. image: {
  42834. source: "./media/characters/cyphin/back.svg",
  42835. extra: 1009/894,
  42836. bottom: 24/1033
  42837. }
  42838. },
  42839. head: {
  42840. height: math.unit(5.05, "feet"),
  42841. name: "Head",
  42842. image: {
  42843. source: "./media/characters/cyphin/head.svg"
  42844. }
  42845. },
  42846. tailbud: {
  42847. height: math.unit(5, "feet"),
  42848. name: "Tailbud",
  42849. image: {
  42850. source: "./media/characters/cyphin/tailbud.svg"
  42851. }
  42852. },
  42853. },
  42854. [
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42859. {
  42860. side: {
  42861. height: math.unit(10, "feet"),
  42862. weight: math.unit(6, "tons"),
  42863. name: "Side",
  42864. image: {
  42865. source: "./media/characters/raijin/side.svg",
  42866. extra: 1529/613,
  42867. bottom: 337/1866
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(10, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42881. {
  42882. side: {
  42883. height: math.unit(9, "feet"),
  42884. name: "Side",
  42885. image: {
  42886. source: "./media/characters/nilghais/side.svg",
  42887. extra: 1047/744,
  42888. bottom: 91/1138
  42889. }
  42890. },
  42891. head: {
  42892. height: math.unit(3.14, "feet"),
  42893. name: "Head",
  42894. image: {
  42895. source: "./media/characters/nilghais/head.svg"
  42896. }
  42897. },
  42898. mouth: {
  42899. height: math.unit(4.6, "feet"),
  42900. name: "Mouth",
  42901. image: {
  42902. source: "./media/characters/nilghais/mouth.svg"
  42903. }
  42904. },
  42905. wings: {
  42906. height: math.unit(24, "feet"),
  42907. name: "Wings",
  42908. image: {
  42909. source: "./media/characters/nilghais/wings.svg"
  42910. }
  42911. },
  42912. ass: {
  42913. height: math.unit(6.12, "feet"),
  42914. name: "Ass",
  42915. image: {
  42916. source: "./media/characters/nilghais/ass.svg"
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(9, "feet"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42930. {
  42931. regular: {
  42932. height: math.unit(16 + 2/12, "feet"),
  42933. weight: math.unit(2300, "lb"),
  42934. name: "Regular",
  42935. image: {
  42936. source: "./media/characters/zolgar/regular.svg",
  42937. extra: 1246/1004,
  42938. bottom: 124/1370
  42939. }
  42940. },
  42941. boxers: {
  42942. height: math.unit(16 + 2/12, "feet"),
  42943. weight: math.unit(2300, "lb"),
  42944. name: "Boxers",
  42945. image: {
  42946. source: "./media/characters/zolgar/boxers.svg",
  42947. extra: 1246/1004,
  42948. bottom: 124/1370
  42949. }
  42950. },
  42951. armored: {
  42952. height: math.unit(16 + 2/12, "feet"),
  42953. weight: math.unit(2300, "lb"),
  42954. name: "Armored",
  42955. image: {
  42956. source: "./media/characters/zolgar/armored.svg",
  42957. extra: 1246/1004,
  42958. bottom: 124/1370
  42959. }
  42960. },
  42961. goth: {
  42962. height: math.unit(16 + 2/12, "feet"),
  42963. weight: math.unit(2300, "lb"),
  42964. name: "Goth",
  42965. image: {
  42966. source: "./media/characters/zolgar/goth.svg",
  42967. extra: 1246/1004,
  42968. bottom: 124/1370
  42969. }
  42970. },
  42971. },
  42972. [
  42973. {
  42974. name: "Shrunken Down",
  42975. height: math.unit(9 + 2/12, "feet")
  42976. },
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(16 + 2/12, "feet"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(6, "feet"),
  42989. weight: math.unit(168, "lb"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/luca/front.svg",
  42993. extra: 841/667,
  42994. bottom: 102/943
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(6, "feet"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43008. {
  43009. side: {
  43010. height: math.unit(7 + 3/12, "feet"),
  43011. weight: math.unit(312, "lb"),
  43012. name: "Side",
  43013. image: {
  43014. source: "./media/characters/zezo/side.svg",
  43015. extra: 1192/1067,
  43016. bottom: 63/1255
  43017. }
  43018. },
  43019. },
  43020. [
  43021. {
  43022. name: "Normal",
  43023. height: math.unit(7 + 3/12, "feet"),
  43024. default: true
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(5 + 5/12, "feet"),
  43033. weight: math.unit(170, "lb"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/mayso/front.svg",
  43037. extra: 1215/1108,
  43038. bottom: 16/1231
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(5 + 5/12, "feet"),
  43046. default: true
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43052. {
  43053. front: {
  43054. height: math.unit(4 + 3/12, "feet"),
  43055. weight: math.unit(80, "lb"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/hess/front.svg",
  43059. extra: 1200/1123,
  43060. bottom: 16/1216
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(4 + 3/12, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43074. {
  43075. front: {
  43076. height: math.unit(1.9, "meters"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/ashgar/front.svg",
  43080. extra: 1177/1146,
  43081. bottom: 99/1276
  43082. }
  43083. },
  43084. back: {
  43085. height: math.unit(1.9, "meters"),
  43086. name: "Back",
  43087. image: {
  43088. source: "./media/characters/ashgar/back.svg",
  43089. extra: 1201/1183,
  43090. bottom: 53/1254
  43091. }
  43092. },
  43093. feral: {
  43094. height: math.unit(1.4, "meters"),
  43095. name: "Feral",
  43096. image: {
  43097. source: "./media/characters/ashgar/feral.svg",
  43098. extra: 370/345,
  43099. bottom: 45/415
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(1.9, "meters"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43113. {
  43114. regular: {
  43115. height: math.unit(6, "feet"),
  43116. weight: math.unit(220, "lb"),
  43117. name: "Regular",
  43118. image: {
  43119. source: "./media/characters/phillip/regular.svg",
  43120. extra: 1373/1277,
  43121. bottom: 75/1448
  43122. }
  43123. },
  43124. dressed: {
  43125. height: math.unit(6, "feet"),
  43126. weight: math.unit(220, "lb"),
  43127. name: "Dressed",
  43128. image: {
  43129. source: "./media/characters/phillip/dressed.svg",
  43130. extra: 1373/1277,
  43131. bottom: 75/1448
  43132. }
  43133. },
  43134. paw: {
  43135. height: math.unit(1.44, "feet"),
  43136. name: "Paw",
  43137. image: {
  43138. source: "./media/characters/phillip/paw.svg"
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Normal",
  43145. height: math.unit(6, "feet"),
  43146. default: true
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43152. {
  43153. side: {
  43154. height: math.unit(42, "feet"),
  43155. name: "Side",
  43156. image: {
  43157. source: "./media/characters/uvula/side.svg",
  43158. extra: 683/586,
  43159. bottom: 60/743
  43160. }
  43161. },
  43162. front: {
  43163. height: math.unit(42, "feet"),
  43164. name: "Front",
  43165. image: {
  43166. source: "./media/characters/uvula/front.svg",
  43167. extra: 705/613,
  43168. bottom: 54/759
  43169. }
  43170. },
  43171. maw: {
  43172. height: math.unit(23.5, "feet"),
  43173. name: "Maw",
  43174. image: {
  43175. source: "./media/characters/uvula/maw.svg"
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Original Size",
  43182. height: math.unit(14, "inches")
  43183. },
  43184. {
  43185. name: "Human Size",
  43186. height: math.unit(6, "feet")
  43187. },
  43188. {
  43189. name: "Big",
  43190. height: math.unit(42, "feet"),
  43191. default: true
  43192. },
  43193. {
  43194. name: "Bigger",
  43195. height: math.unit(100, "feet")
  43196. },
  43197. ]
  43198. ))
  43199. characterMakers.push(() => makeCharacter(
  43200. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43201. {
  43202. front: {
  43203. height: math.unit(5 + 11/12, "feet"),
  43204. name: "Front",
  43205. image: {
  43206. source: "./media/characters/lannah/front.svg",
  43207. extra: 1208/1113,
  43208. bottom: 97/1305
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(5 + 11/12, "feet"),
  43216. default: true
  43217. },
  43218. ]
  43219. ))
  43220. characterMakers.push(() => makeCharacter(
  43221. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43222. {
  43223. front: {
  43224. height: math.unit(6 + 3/12, "feet"),
  43225. weight: math.unit(3.5, "tons"),
  43226. name: "Front",
  43227. image: {
  43228. source: "./media/characters/emberflame/front.svg",
  43229. extra: 1198/672,
  43230. bottom: 82/1280
  43231. }
  43232. },
  43233. side: {
  43234. height: math.unit(6 + 3/12, "feet"),
  43235. weight: math.unit(3.5, "tons"),
  43236. name: "Side",
  43237. image: {
  43238. source: "./media/characters/emberflame/side.svg",
  43239. extra: 938/527,
  43240. bottom: 56/994
  43241. }
  43242. },
  43243. },
  43244. [
  43245. {
  43246. name: "Normal",
  43247. height: math.unit(6 + 3/12, "feet"),
  43248. default: true
  43249. },
  43250. ]
  43251. ))
  43252. characterMakers.push(() => makeCharacter(
  43253. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43254. {
  43255. side: {
  43256. height: math.unit(17.5, "feet"),
  43257. weight: math.unit(35, "tons"),
  43258. name: "Side",
  43259. image: {
  43260. source: "./media/characters/sophie-ambrose/side.svg",
  43261. extra: 1573/1242,
  43262. bottom: 71/1644
  43263. }
  43264. },
  43265. maw: {
  43266. height: math.unit(7.4, "feet"),
  43267. name: "Maw",
  43268. image: {
  43269. source: "./media/characters/sophie-ambrose/maw.svg"
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(17.5, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(280, "feet"),
  43286. weight: math.unit(550, "tons"),
  43287. name: "Front",
  43288. image: {
  43289. source: "./media/characters/king-mugi/front.svg",
  43290. extra: 1102/947,
  43291. bottom: 104/1206
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "King Mugi",
  43298. height: math.unit(280, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43305. {
  43306. front: {
  43307. height: math.unit(64, "meters"),
  43308. name: "Front",
  43309. image: {
  43310. source: "./media/characters/nova-fox/front.svg",
  43311. extra: 1310/1246,
  43312. bottom: 65/1375
  43313. }
  43314. },
  43315. },
  43316. [
  43317. {
  43318. name: "Macro",
  43319. height: math.unit(64, "meters"),
  43320. default: true
  43321. },
  43322. ]
  43323. ))
  43324. characterMakers.push(() => makeCharacter(
  43325. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43326. {
  43327. front: {
  43328. height: math.unit(6 + 3/12, "feet"),
  43329. weight: math.unit(170, "lb"),
  43330. name: "Front",
  43331. image: {
  43332. source: "./media/characters/sam-bat/front.svg",
  43333. extra: 1601/1411,
  43334. bottom: 125/1726
  43335. }
  43336. },
  43337. back: {
  43338. height: math.unit(6 + 3/12, "feet"),
  43339. weight: math.unit(170, "lb"),
  43340. name: "Back",
  43341. image: {
  43342. source: "./media/characters/sam-bat/back.svg",
  43343. extra: 1577/1405,
  43344. bottom: 58/1635
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Normal",
  43351. height: math.unit(6 + 3/12, "feet"),
  43352. default: true
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43358. {
  43359. front: {
  43360. height: math.unit(59, "feet"),
  43361. weight: math.unit(40000, "lb"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/inari/front.svg",
  43365. extra: 1884/1350,
  43366. bottom: 95/1979
  43367. }
  43368. },
  43369. },
  43370. [
  43371. {
  43372. name: "Gigantamax",
  43373. height: math.unit(59, "feet"),
  43374. default: true
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(5 + 8/12, "feet"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/elizabeth/front.svg",
  43386. extra: 1395/1298,
  43387. bottom: 54/1449
  43388. }
  43389. },
  43390. mouth: {
  43391. height: math.unit(1.97, "feet"),
  43392. name: "Mouth",
  43393. image: {
  43394. source: "./media/characters/elizabeth/mouth.svg"
  43395. }
  43396. },
  43397. foot: {
  43398. height: math.unit(1.17, "feet"),
  43399. name: "Foot",
  43400. image: {
  43401. source: "./media/characters/elizabeth/foot.svg"
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Normal",
  43408. height: math.unit(5 + 8/12, "feet"),
  43409. default: true
  43410. },
  43411. {
  43412. name: "Minimacro",
  43413. height: math.unit(18, "feet")
  43414. },
  43415. {
  43416. name: "Macro",
  43417. height: math.unit(180, "feet")
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(5 + 2/12, "feet"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/october-gossamer/front.svg",
  43429. extra: 505/454,
  43430. bottom: 7/512
  43431. }
  43432. },
  43433. back: {
  43434. height: math.unit(5 + 2/12, "feet"),
  43435. name: "Back",
  43436. image: {
  43437. source: "./media/characters/october-gossamer/back.svg",
  43438. extra: 501/454,
  43439. bottom: 11/512
  43440. }
  43441. },
  43442. },
  43443. [
  43444. {
  43445. name: "Normal",
  43446. height: math.unit(5 + 2/12, "feet"),
  43447. default: true
  43448. },
  43449. ]
  43450. ))
  43451. characterMakers.push(() => makeCharacter(
  43452. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43453. {
  43454. front: {
  43455. height: math.unit(5, "feet"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/epiglottis/front.svg",
  43459. extra: 923/849,
  43460. bottom: 17/940
  43461. }
  43462. },
  43463. },
  43464. [
  43465. {
  43466. name: "Original Size",
  43467. height: math.unit(10, "inches")
  43468. },
  43469. {
  43470. name: "Human Size",
  43471. height: math.unit(5, "feet"),
  43472. default: true
  43473. },
  43474. {
  43475. name: "Big",
  43476. height: math.unit(25, "feet")
  43477. },
  43478. {
  43479. name: "Bigger",
  43480. height: math.unit(50, "feet")
  43481. },
  43482. {
  43483. name: "oh lawd",
  43484. height: math.unit(75, "feet")
  43485. },
  43486. ]
  43487. ))
  43488. characterMakers.push(() => makeCharacter(
  43489. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43490. {
  43491. front: {
  43492. height: math.unit(2 + 4/12, "feet"),
  43493. weight: math.unit(60, "lb"),
  43494. name: "Front",
  43495. image: {
  43496. source: "./media/characters/lerm/front.svg",
  43497. extra: 796/790,
  43498. bottom: 79/875
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(2 + 4/12, "feet"),
  43506. default: true
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(5.5, "feet"),
  43515. weight: math.unit(130, "lb"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/xena-nebadon/front.svg",
  43519. extra: 1828/1730,
  43520. bottom: 79/1907
  43521. }
  43522. },
  43523. },
  43524. [
  43525. {
  43526. name: "Tiny Puppy",
  43527. height: math.unit(3, "inches")
  43528. },
  43529. {
  43530. name: "Normal",
  43531. height: math.unit(5.5, "feet"),
  43532. default: true
  43533. },
  43534. {
  43535. name: "Lotta Lady",
  43536. height: math.unit(12, "feet")
  43537. },
  43538. {
  43539. name: "Pretty Big",
  43540. height: math.unit(100, "feet")
  43541. },
  43542. {
  43543. name: "Big",
  43544. height: math.unit(500, "feet")
  43545. },
  43546. {
  43547. name: "Skyscraper Toys",
  43548. height: math.unit(2500, "feet")
  43549. },
  43550. {
  43551. name: "Plane Catcher",
  43552. height: math.unit(8, "miles")
  43553. },
  43554. {
  43555. name: "Planet Toys",
  43556. height: math.unit(15, "earths")
  43557. },
  43558. {
  43559. name: "Stardust",
  43560. height: math.unit(0.25, "galaxies")
  43561. },
  43562. {
  43563. name: "Snacks",
  43564. height: math.unit(70, "universes")
  43565. },
  43566. ]
  43567. ))
  43568. characterMakers.push(() => makeCharacter(
  43569. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43570. {
  43571. front: {
  43572. height: math.unit(1.6, "meters"),
  43573. weight: math.unit(60, "kg"),
  43574. name: "Front",
  43575. image: {
  43576. source: "./media/characters/bounty/front.svg",
  43577. extra: 1426/1308,
  43578. bottom: 15/1441
  43579. }
  43580. },
  43581. back: {
  43582. height: math.unit(1.6, "meters"),
  43583. weight: math.unit(60, "kg"),
  43584. name: "Back",
  43585. image: {
  43586. source: "./media/characters/bounty/back.svg",
  43587. extra: 1417/1307,
  43588. bottom: 8/1425
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(1.6, "meters"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Macro",
  43600. height: math.unit(300, "meters")
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43606. {
  43607. front: {
  43608. height: math.unit(2 + 8/12, "feet"),
  43609. weight: math.unit(15, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/mochi/front.svg",
  43613. extra: 1022/852,
  43614. bottom: 435/1457
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(2 + 8/12, "feet"),
  43619. weight: math.unit(15, "lb"),
  43620. name: "Back",
  43621. image: {
  43622. source: "./media/characters/mochi/back.svg",
  43623. extra: 1335/1119,
  43624. bottom: 39/1374
  43625. }
  43626. },
  43627. bird: {
  43628. height: math.unit(2 + 8/12, "feet"),
  43629. weight: math.unit(15, "lb"),
  43630. name: "Bird",
  43631. image: {
  43632. source: "./media/characters/mochi/bird.svg",
  43633. extra: 1251/1113,
  43634. bottom: 178/1429
  43635. }
  43636. },
  43637. kaiju: {
  43638. height: math.unit(154, "feet"),
  43639. weight: math.unit(1e7, "lb"),
  43640. name: "Kaiju",
  43641. image: {
  43642. source: "./media/characters/mochi/kaiju.svg",
  43643. extra: 460/324,
  43644. bottom: 40/500
  43645. }
  43646. },
  43647. head: {
  43648. height: math.unit(1.21, "feet"),
  43649. name: "Head",
  43650. image: {
  43651. source: "./media/characters/mochi/head.svg"
  43652. }
  43653. },
  43654. alternateTail: {
  43655. height: math.unit(2 + 8/12, "feet"),
  43656. weight: math.unit(45, "lb"),
  43657. name: "Alternate Tail",
  43658. image: {
  43659. source: "./media/characters/mochi/alternate-tail.svg",
  43660. extra: 139/76,
  43661. bottom: 45/184
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Micro",
  43668. height: math.unit(2, "inches")
  43669. },
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(2 + 8/12, "feet"),
  43673. default: true
  43674. },
  43675. {
  43676. name: "Macro",
  43677. height: math.unit(106, "feet")
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(5.67, "feet"),
  43686. weight: math.unit(135, "lb"),
  43687. name: "Front",
  43688. image: {
  43689. source: "./media/characters/sarel/front.svg",
  43690. extra: 865/788,
  43691. bottom: 97/962
  43692. }
  43693. },
  43694. back: {
  43695. height: math.unit(5.67, "feet"),
  43696. weight: math.unit(135, "lb"),
  43697. name: "Back",
  43698. image: {
  43699. source: "./media/characters/sarel/back.svg",
  43700. extra: 857/777,
  43701. bottom: 32/889
  43702. }
  43703. },
  43704. chozoan: {
  43705. height: math.unit(5.67, "feet"),
  43706. weight: math.unit(135, "lb"),
  43707. name: "Chozoan",
  43708. image: {
  43709. source: "./media/characters/sarel/chozoan.svg",
  43710. extra: 865/788,
  43711. bottom: 97/962
  43712. }
  43713. },
  43714. current: {
  43715. height: math.unit(5.67, "feet"),
  43716. weight: math.unit(135, "lb"),
  43717. name: "Current",
  43718. image: {
  43719. source: "./media/characters/sarel/current.svg",
  43720. extra: 865/788,
  43721. bottom: 97/962
  43722. }
  43723. },
  43724. head: {
  43725. height: math.unit(1.77, "feet"),
  43726. name: "Head",
  43727. image: {
  43728. source: "./media/characters/sarel/head.svg"
  43729. }
  43730. },
  43731. claws: {
  43732. height: math.unit(1.8, "feet"),
  43733. name: "Claws",
  43734. image: {
  43735. source: "./media/characters/sarel/claws.svg"
  43736. }
  43737. },
  43738. clawsAlt: {
  43739. height: math.unit(1.8, "feet"),
  43740. name: "Claws-alt",
  43741. image: {
  43742. source: "./media/characters/sarel/claws-alt.svg"
  43743. }
  43744. },
  43745. },
  43746. [
  43747. {
  43748. name: "Normal",
  43749. height: math.unit(5.67, "feet"),
  43750. default: true
  43751. },
  43752. ]
  43753. ))
  43754. characterMakers.push(() => makeCharacter(
  43755. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43756. {
  43757. front: {
  43758. height: math.unit(5500, "feet"),
  43759. name: "Front",
  43760. image: {
  43761. source: "./media/characters/alyonia/front.svg",
  43762. extra: 1200/1135,
  43763. bottom: 29/1229
  43764. }
  43765. },
  43766. back: {
  43767. height: math.unit(5500, "feet"),
  43768. name: "Back",
  43769. image: {
  43770. source: "./media/characters/alyonia/back.svg",
  43771. extra: 1205/1138,
  43772. bottom: 10/1215
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Small",
  43779. height: math.unit(10, "feet")
  43780. },
  43781. {
  43782. name: "Macro",
  43783. height: math.unit(500, "feet")
  43784. },
  43785. {
  43786. name: "Mega Macro",
  43787. height: math.unit(5500, "feet"),
  43788. default: true
  43789. },
  43790. {
  43791. name: "Mega Macro+",
  43792. height: math.unit(500000, "feet")
  43793. },
  43794. {
  43795. name: "Giga Macro",
  43796. height: math.unit(3000, "miles")
  43797. },
  43798. {
  43799. name: "Tera Macro",
  43800. height: math.unit(2.8e6, "miles")
  43801. },
  43802. {
  43803. name: "Galactic",
  43804. height: math.unit(120000, "lightyears")
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43810. {
  43811. werewolf: {
  43812. height: math.unit(8, "feet"),
  43813. weight: math.unit(425, "lb"),
  43814. name: "Werewolf",
  43815. image: {
  43816. source: "./media/characters/autumn/werewolf.svg",
  43817. extra: 2154/2031,
  43818. bottom: 160/2314
  43819. }
  43820. },
  43821. human: {
  43822. height: math.unit(5 + 8/12, "feet"),
  43823. weight: math.unit(150, "lb"),
  43824. name: "Human",
  43825. image: {
  43826. source: "./media/characters/autumn/human.svg",
  43827. extra: 1200/1149,
  43828. bottom: 30/1230
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(8, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(8 + 5/12, "feet"),
  43845. weight: math.unit(825, "lb"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/cobalt-charizard/front.svg",
  43849. extra: 1268/1155,
  43850. bottom: 122/1390
  43851. }
  43852. },
  43853. side: {
  43854. height: math.unit(8 + 5/12, "feet"),
  43855. weight: math.unit(825, "lb"),
  43856. name: "Side",
  43857. image: {
  43858. source: "./media/characters/cobalt-charizard/side.svg",
  43859. extra: 1348/1257,
  43860. bottom: 58/1406
  43861. }
  43862. },
  43863. gMax: {
  43864. height: math.unit(134 + 11/12, "feet"),
  43865. name: "G-Max",
  43866. image: {
  43867. source: "./media/characters/cobalt-charizard/g-max.svg",
  43868. extra: 1835/1541,
  43869. bottom: 151/1986
  43870. }
  43871. },
  43872. },
  43873. [
  43874. {
  43875. name: "Normal",
  43876. height: math.unit(8 + 5/12, "feet"),
  43877. default: true
  43878. },
  43879. ]
  43880. ))
  43881. characterMakers.push(() => makeCharacter(
  43882. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43883. {
  43884. front: {
  43885. height: math.unit(6 + 3/12, "feet"),
  43886. weight: math.unit(210, "lb"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/stella/front.svg",
  43890. extra: 3549/3335,
  43891. bottom: 51/3600
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(6 + 3/12, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(5, "feet"),
  43908. weight: math.unit(90, "lb"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/riley-bishop/front.svg",
  43912. extra: 1450/1428,
  43913. bottom: 152/1602
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(5, "feet"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(8 + 2/12, "feet"),
  43930. weight: math.unit(500, "kg"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/theo-arcanine/side.svg",
  43934. extra: 1342/1074,
  43935. bottom: 111/1453
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(8 + 2/12, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43949. {
  43950. front: {
  43951. height: math.unit(4, "feet"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/kali/front.svg",
  43955. extra: 1921/1357,
  43956. bottom: 70/1991
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Normal",
  43963. height: math.unit(4, "feet"),
  43964. default: true
  43965. },
  43966. {
  43967. name: "Macro",
  43968. height: math.unit(32, "meters")
  43969. },
  43970. {
  43971. name: "Macro+",
  43972. height: math.unit(150, "meters")
  43973. },
  43974. {
  43975. name: "Megamacro",
  43976. height: math.unit(7500, "meters")
  43977. },
  43978. {
  43979. name: "Megamacro+",
  43980. height: math.unit(80, "kilometers")
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43986. {
  43987. side: {
  43988. height: math.unit(5 + 11/12, "feet"),
  43989. weight: math.unit(236, "lb"),
  43990. name: "Side",
  43991. image: {
  43992. source: "./media/characters/gapp/side.svg",
  43993. extra: 775/340,
  43994. bottom: 58/833
  43995. }
  43996. },
  43997. mouth: {
  43998. height: math.unit(2.98, "feet"),
  43999. name: "Mouth",
  44000. image: {
  44001. source: "./media/characters/gapp/mouth.svg"
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Normal",
  44008. height: math.unit(5 + 1/12, "feet"),
  44009. default: true
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44015. {
  44016. front: {
  44017. height: math.unit(6, "feet"),
  44018. name: "Front",
  44019. image: {
  44020. source: "./media/characters/persephone/front.svg",
  44021. extra: 1895/1717,
  44022. bottom: 96/1991
  44023. }
  44024. },
  44025. back: {
  44026. height: math.unit(6, "feet"),
  44027. name: "Back",
  44028. image: {
  44029. source: "./media/characters/persephone/back.svg",
  44030. extra: 1868/1679,
  44031. bottom: 26/1894
  44032. }
  44033. },
  44034. casual: {
  44035. height: math.unit(6, "feet"),
  44036. name: "Casual",
  44037. image: {
  44038. source: "./media/characters/persephone/casual.svg",
  44039. extra: 1713/1541,
  44040. bottom: 76/1789
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Human Size",
  44047. height: math.unit(6, "feet")
  44048. },
  44049. {
  44050. name: "Big Steppy",
  44051. height: math.unit(600, "meters"),
  44052. default: true
  44053. },
  44054. {
  44055. name: "Galaxy Brain",
  44056. height: math.unit(1, "zettameter")
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44062. {
  44063. front: {
  44064. height: math.unit(1.85, "meters"),
  44065. name: "Front",
  44066. image: {
  44067. source: "./media/characters/riley-foxthing/front.svg",
  44068. extra: 1495/1354,
  44069. bottom: 122/1617
  44070. }
  44071. },
  44072. frontAlt: {
  44073. height: math.unit(1.85, "meters"),
  44074. name: "Front (Alt)",
  44075. image: {
  44076. source: "./media/characters/riley-foxthing/front-alt.svg",
  44077. extra: 1572/1389,
  44078. bottom: 116/1688
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal Sized",
  44085. height: math.unit(1.85, "meters"),
  44086. default: true
  44087. },
  44088. {
  44089. name: "Quite Sizable",
  44090. height: math.unit(5, "meters")
  44091. },
  44092. {
  44093. name: "Rather Large",
  44094. height: math.unit(20, "meters")
  44095. },
  44096. {
  44097. name: "Macro",
  44098. height: math.unit(450, "meters")
  44099. },
  44100. {
  44101. name: "Giga",
  44102. height: math.unit(5, "km")
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(6, "feet"),
  44111. weight: math.unit(200, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/blizzard/front.svg",
  44115. extra: 1136/990,
  44116. bottom: 136/1272
  44117. }
  44118. },
  44119. back: {
  44120. height: math.unit(6, "feet"),
  44121. weight: math.unit(200, "lb"),
  44122. name: "Back",
  44123. image: {
  44124. source: "./media/characters/blizzard/back.svg",
  44125. extra: 1175/1034,
  44126. bottom: 97/1272
  44127. }
  44128. },
  44129. sitting: {
  44130. height: math.unit(3.725, "feet"),
  44131. weight: math.unit(200, "lb"),
  44132. name: "Sitting",
  44133. image: {
  44134. source: "./media/characters/blizzard/sitting.svg",
  44135. extra: 581/485,
  44136. bottom: 90/671
  44137. }
  44138. },
  44139. frontWizard: {
  44140. height: math.unit(7.9, "feet"),
  44141. weight: math.unit(200, "lb"),
  44142. name: "Front (Wizard)",
  44143. image: {
  44144. source: "./media/characters/blizzard/front-wizard.svg"
  44145. }
  44146. },
  44147. backWizard: {
  44148. height: math.unit(7.9, "feet"),
  44149. weight: math.unit(200, "lb"),
  44150. name: "Back (Wizard)",
  44151. image: {
  44152. source: "./media/characters/blizzard/back-wizard.svg"
  44153. }
  44154. },
  44155. frontNsfw: {
  44156. height: math.unit(6, "feet"),
  44157. weight: math.unit(200, "lb"),
  44158. name: "Front (NSFW)",
  44159. image: {
  44160. source: "./media/characters/blizzard/front-nsfw.svg",
  44161. extra: 1136/990,
  44162. bottom: 136/1272
  44163. }
  44164. },
  44165. backNsfw: {
  44166. height: math.unit(6, "feet"),
  44167. weight: math.unit(200, "lb"),
  44168. name: "Back (NSFW)",
  44169. image: {
  44170. source: "./media/characters/blizzard/back-nsfw.svg",
  44171. extra: 1175/1034,
  44172. bottom: 97/1272
  44173. }
  44174. },
  44175. sittingNsfw: {
  44176. height: math.unit(3.725, "feet"),
  44177. weight: math.unit(200, "lb"),
  44178. name: "Sitting (NSFW)",
  44179. image: {
  44180. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44181. extra: 581/485,
  44182. bottom: 90/671
  44183. }
  44184. },
  44185. wizardFrontNsfw: {
  44186. height: math.unit(7.9, "feet"),
  44187. weight: math.unit(200, "lb"),
  44188. name: "Wizard (Front, NSFW)",
  44189. image: {
  44190. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(6, "feet"),
  44198. default: true
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44204. {
  44205. front: {
  44206. height: math.unit(5 + 2/12, "feet"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/lumi/front.svg",
  44210. extra: 1328/1268,
  44211. bottom: 103/1431
  44212. }
  44213. },
  44214. back: {
  44215. height: math.unit(5 + 2/12, "feet"),
  44216. name: "Back",
  44217. image: {
  44218. source: "./media/characters/lumi/back.svg",
  44219. extra: 1381/1327,
  44220. bottom: 43/1424
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(5 + 2/12, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44234. {
  44235. front: {
  44236. height: math.unit(5 + 9/12, "feet"),
  44237. name: "Front",
  44238. image: {
  44239. source: "./media/characters/aliya-cotton/front.svg",
  44240. extra: 577/564,
  44241. bottom: 29/606
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Normal",
  44248. height: math.unit(5 + 9/12, "feet"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(2.7, "meters"),
  44258. weight: math.unit(25000, "lb"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/noah-luxray/front.svg",
  44262. extra: 1644/825,
  44263. bottom: 339/1983
  44264. }
  44265. },
  44266. side: {
  44267. height: math.unit(2.97, "meters"),
  44268. weight: math.unit(25000, "lb"),
  44269. name: "Side",
  44270. image: {
  44271. source: "./media/characters/noah-luxray/side.svg",
  44272. extra: 1319/650,
  44273. bottom: 163/1482
  44274. }
  44275. },
  44276. dick: {
  44277. height: math.unit(7.4, "feet"),
  44278. weight: math.unit(2500, "lb"),
  44279. name: "Dick",
  44280. image: {
  44281. source: "./media/characters/noah-luxray/dick.svg"
  44282. }
  44283. },
  44284. dickAlt: {
  44285. height: math.unit(10.83, "feet"),
  44286. weight: math.unit(2500, "lb"),
  44287. name: "Dick-alt",
  44288. image: {
  44289. source: "./media/characters/noah-luxray/dick-alt.svg"
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "BIG",
  44296. height: math.unit(2.7, "meters"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44303. {
  44304. standing: {
  44305. height: math.unit(183, "cm"),
  44306. weight: math.unit(68, "kg"),
  44307. name: "Standing",
  44308. image: {
  44309. source: "./media/characters/arion/standing.svg",
  44310. extra: 1869/1807,
  44311. bottom: 93/1962
  44312. }
  44313. },
  44314. reclining: {
  44315. height: math.unit(70.5, "cm"),
  44316. weight: math.unit(68, "lb"),
  44317. name: "Reclining",
  44318. image: {
  44319. source: "./media/characters/arion/reclining.svg",
  44320. extra: 937/870,
  44321. bottom: 63/1000
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Colossus Size, Low",
  44328. height: math.unit(33, "meters"),
  44329. default: true
  44330. },
  44331. {
  44332. name: "Colossus Size, Mid",
  44333. height: math.unit(52, "meters")
  44334. },
  44335. {
  44336. name: "Colossus Size, High",
  44337. height: math.unit(60, "meters")
  44338. },
  44339. {
  44340. name: "Titan Size, Low",
  44341. height: math.unit(91, "meters"),
  44342. },
  44343. {
  44344. name: "Titan Size, Mid",
  44345. height: math.unit(122, "meters")
  44346. },
  44347. {
  44348. name: "Titan Size, High",
  44349. height: math.unit(162, "meters")
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44355. {
  44356. front: {
  44357. height: math.unit(53, "meters"),
  44358. name: "Front",
  44359. image: {
  44360. source: "./media/characters/stellar-marbey/front.svg",
  44361. extra: 1913/1805,
  44362. bottom: 92/2005
  44363. }
  44364. },
  44365. back: {
  44366. height: math.unit(53, "meters"),
  44367. name: "Back",
  44368. image: {
  44369. source: "./media/characters/stellar-marbey/back.svg",
  44370. extra: 1960/1851,
  44371. bottom: 28/1988
  44372. }
  44373. },
  44374. mouth: {
  44375. height: math.unit(3.5, "meters"),
  44376. name: "Mouth",
  44377. image: {
  44378. source: "./media/characters/stellar-marbey/mouth.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Macro",
  44385. height: math.unit(53, "meters"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44392. {
  44393. front: {
  44394. height: math.unit(8 + 1/12, "feet"),
  44395. weight: math.unit(233, "lb"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/matsu/front.svg",
  44399. extra: 832/772,
  44400. bottom: 40/872
  44401. }
  44402. },
  44403. back: {
  44404. height: math.unit(8 + 1/12, "feet"),
  44405. weight: math.unit(233, "lb"),
  44406. name: "Back",
  44407. image: {
  44408. source: "./media/characters/matsu/back.svg",
  44409. extra: 839/780,
  44410. bottom: 47/886
  44411. }
  44412. },
  44413. },
  44414. [
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(8 + 1/12, "feet"),
  44418. default: true
  44419. },
  44420. ]
  44421. ))
  44422. characterMakers.push(() => makeCharacter(
  44423. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44424. {
  44425. front: {
  44426. height: math.unit(4, "feet"),
  44427. weight: math.unit(148, "lb"),
  44428. name: "Front",
  44429. image: {
  44430. source: "./media/characters/thiz/front.svg",
  44431. extra: 1913/1748,
  44432. bottom: 62/1975
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(4, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(7 + 6/12, "feet"),
  44449. weight: math.unit(267, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/marcel/front.svg",
  44453. extra: 1221/1096,
  44454. bottom: 76/1297
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Normal",
  44461. height: math.unit(7 + 6/12, "feet"),
  44462. default: true
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44468. {
  44469. side: {
  44470. height: math.unit(42, "meters"),
  44471. name: "Side",
  44472. image: {
  44473. source: "./media/characters/flake/side.svg",
  44474. extra: 1525/1306,
  44475. bottom: 209/1734
  44476. }
  44477. },
  44478. },
  44479. [
  44480. {
  44481. name: "Normal",
  44482. height: math.unit(42, "meters"),
  44483. default: true
  44484. },
  44485. ]
  44486. ))
  44487. characterMakers.push(() => makeCharacter(
  44488. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44489. {
  44490. dressed: {
  44491. height: math.unit(6 + 4/12, "feet"),
  44492. weight: math.unit(520, "lb"),
  44493. name: "Dressed",
  44494. image: {
  44495. source: "./media/characters/someonne/dressed.svg",
  44496. extra: 1020/1010,
  44497. bottom: 178/1198
  44498. }
  44499. },
  44500. undressed: {
  44501. height: math.unit(6 + 4/12, "feet"),
  44502. weight: math.unit(520, "lb"),
  44503. name: "Undressed",
  44504. image: {
  44505. source: "./media/characters/someonne/undressed.svg",
  44506. extra: 1019/1014,
  44507. bottom: 169/1188
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(6 + 4/12, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(3, "feet"),
  44524. weight: math.unit(30, "lb"),
  44525. name: "Front",
  44526. image: {
  44527. source: "./media/characters/till/front.svg",
  44528. extra: 892/823,
  44529. bottom: 55/947
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(3, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(9 + 8/12, "feet"),
  44546. weight: math.unit(800, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/sydney-heki/front.svg",
  44550. extra: 1360/1300,
  44551. bottom: 22/1382
  44552. }
  44553. },
  44554. back: {
  44555. height: math.unit(9 + 8/12, "feet"),
  44556. weight: math.unit(800, "lb"),
  44557. name: "Back",
  44558. image: {
  44559. source: "./media/characters/sydney-heki/back.svg",
  44560. extra: 1356/1293,
  44561. bottom: 12/1368
  44562. }
  44563. },
  44564. frontDressed: {
  44565. height: math.unit(9 + 8/12, "feet"),
  44566. weight: math.unit(800, "lb"),
  44567. name: "Front-dressed",
  44568. image: {
  44569. source: "./media/characters/sydney-heki/front-dressed.svg",
  44570. extra: 1360/1300,
  44571. bottom: 22/1382
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Normal",
  44578. height: math.unit(9 + 8/12, "feet"),
  44579. default: true
  44580. },
  44581. {
  44582. name: "Macro",
  44583. height: math.unit(500, "feet")
  44584. },
  44585. {
  44586. name: "Megamacro",
  44587. height: math.unit(3.6, "miles")
  44588. },
  44589. ]
  44590. ))
  44591. characterMakers.push(() => makeCharacter(
  44592. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44593. {
  44594. front: {
  44595. height: math.unit(200, "cm"),
  44596. weight: math.unit(250, "lb"),
  44597. name: "Front",
  44598. image: {
  44599. source: "./media/characters/fowler-karlsson/front.svg",
  44600. extra: 897/845,
  44601. bottom: 123/1020
  44602. }
  44603. },
  44604. back: {
  44605. height: math.unit(200, "cm"),
  44606. weight: math.unit(250, "lb"),
  44607. name: "Back",
  44608. image: {
  44609. source: "./media/characters/fowler-karlsson/back.svg",
  44610. extra: 999/944,
  44611. bottom: 26/1025
  44612. }
  44613. },
  44614. dick: {
  44615. height: math.unit(1.92, "feet"),
  44616. weight: math.unit(150, "lb"),
  44617. name: "Dick",
  44618. image: {
  44619. source: "./media/characters/fowler-karlsson/dick.svg"
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(200, "cm"),
  44627. default: true
  44628. },
  44629. {
  44630. name: "Smaller Macro",
  44631. height: math.unit(90, "m")
  44632. },
  44633. {
  44634. name: "Macro",
  44635. height: math.unit(150, "m")
  44636. },
  44637. {
  44638. name: "Bigger Macro",
  44639. height: math.unit(300, "m")
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44645. {
  44646. side: {
  44647. height: math.unit(8 + 2/12, "feet"),
  44648. weight: math.unit(1, "tonne"),
  44649. name: "Side",
  44650. image: {
  44651. source: "./media/characters/rylide/side.svg",
  44652. extra: 1318/1034,
  44653. bottom: 106/1424
  44654. }
  44655. },
  44656. sitting: {
  44657. height: math.unit(303, "cm"),
  44658. weight: math.unit(1, "tonne"),
  44659. name: "Sitting",
  44660. image: {
  44661. source: "./media/characters/rylide/sitting.svg",
  44662. extra: 1303/1103,
  44663. bottom: 36/1339
  44664. }
  44665. },
  44666. },
  44667. [
  44668. {
  44669. name: "Normal",
  44670. height: math.unit(8 + 2/12, "feet"),
  44671. default: true
  44672. },
  44673. ]
  44674. ))
  44675. characterMakers.push(() => makeCharacter(
  44676. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44677. {
  44678. front: {
  44679. height: math.unit(5 + 10/12, "feet"),
  44680. weight: math.unit(160, "lb"),
  44681. name: "Front",
  44682. image: {
  44683. source: "./media/characters/pudask/front.svg",
  44684. extra: 1616/1590,
  44685. bottom: 161/1777
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Ferret Height",
  44692. height: math.unit(2 + 5/12, "feet")
  44693. },
  44694. {
  44695. name: "Canon Height",
  44696. height: math.unit(5 + 10/12, "feet"),
  44697. default: true
  44698. },
  44699. ]
  44700. ))
  44701. characterMakers.push(() => makeCharacter(
  44702. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44703. {
  44704. front: {
  44705. height: math.unit(3 + 6/12, "feet"),
  44706. weight: math.unit(60, "lb"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/ramita/front.svg",
  44710. extra: 1402/1232,
  44711. bottom: 62/1464
  44712. }
  44713. },
  44714. dressed: {
  44715. height: math.unit(3 + 6/12, "feet"),
  44716. weight: math.unit(60, "lb"),
  44717. name: "Dressed",
  44718. image: {
  44719. source: "./media/characters/ramita/dressed.svg",
  44720. extra: 1534/1249,
  44721. bottom: 50/1584
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(3 + 6/12, "feet"),
  44729. default: true
  44730. },
  44731. ]
  44732. ))
  44733. characterMakers.push(() => makeCharacter(
  44734. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44735. {
  44736. front: {
  44737. height: math.unit(8, "feet"),
  44738. name: "Front",
  44739. image: {
  44740. source: "./media/characters/ark/front.svg",
  44741. extra: 772/693,
  44742. bottom: 45/817
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(8, "feet"),
  44750. default: true
  44751. },
  44752. ]
  44753. ))
  44754. characterMakers.push(() => makeCharacter(
  44755. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44756. {
  44757. front: {
  44758. height: math.unit(6, "feet"),
  44759. weight: math.unit(250, "lb"),
  44760. volume: math.unit(5/8, "gallons"),
  44761. name: "Front",
  44762. image: {
  44763. source: "./media/characters/ludwig-horn/front.svg",
  44764. extra: 1782/1635,
  44765. bottom: 96/1878
  44766. }
  44767. },
  44768. back: {
  44769. height: math.unit(6, "feet"),
  44770. weight: math.unit(250, "lb"),
  44771. volume: math.unit(5/8, "gallons"),
  44772. name: "Back",
  44773. image: {
  44774. source: "./media/characters/ludwig-horn/back.svg",
  44775. extra: 1874/1729,
  44776. bottom: 27/1901
  44777. }
  44778. },
  44779. dick: {
  44780. height: math.unit(1.05, "feet"),
  44781. weight: math.unit(15, "lb"),
  44782. volume: math.unit(5/8, "gallons"),
  44783. name: "Dick",
  44784. image: {
  44785. source: "./media/characters/ludwig-horn/dick.svg"
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Small",
  44792. height: math.unit(6, "feet")
  44793. },
  44794. {
  44795. name: "Typical",
  44796. height: math.unit(12, "feet"),
  44797. default: true
  44798. },
  44799. {
  44800. name: "Building",
  44801. height: math.unit(80, "feet")
  44802. },
  44803. {
  44804. name: "Town",
  44805. height: math.unit(800, "feet")
  44806. },
  44807. {
  44808. name: "Kingdom",
  44809. height: math.unit(80000, "feet")
  44810. },
  44811. {
  44812. name: "Planet",
  44813. height: math.unit(8000000, "feet")
  44814. },
  44815. {
  44816. name: "Universe",
  44817. height: math.unit(8000000000, "feet")
  44818. },
  44819. {
  44820. name: "Transcended",
  44821. height: math.unit(8e27, "feet")
  44822. },
  44823. ]
  44824. ))
  44825. characterMakers.push(() => makeCharacter(
  44826. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44827. {
  44828. front: {
  44829. height: math.unit(5, "feet"),
  44830. weight: math.unit(50, "kg"),
  44831. name: "Front",
  44832. image: {
  44833. source: "./media/characters/biot-avery/front.svg",
  44834. extra: 1295/1232,
  44835. bottom: 86/1381
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(5, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(6, "feet"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/kitsune-kiro/front.svg",
  44855. extra: 1270/1158,
  44856. bottom: 42/1312
  44857. }
  44858. },
  44859. frontAlt: {
  44860. height: math.unit(6, "feet"),
  44861. name: "Front-alt",
  44862. image: {
  44863. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44864. extra: 1130/1081,
  44865. bottom: 36/1166
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Smol",
  44872. height: math.unit(3, "feet")
  44873. },
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(6, "feet"),
  44877. default: true
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(6, "feet"),
  44886. weight: math.unit(125, "lb"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/jack-thatcher/front.svg",
  44890. extra: 1474/1370,
  44891. bottom: 26/1500
  44892. }
  44893. },
  44894. back: {
  44895. height: math.unit(6, "feet"),
  44896. weight: math.unit(125, "lb"),
  44897. name: "Back",
  44898. image: {
  44899. source: "./media/characters/jack-thatcher/back.svg",
  44900. extra: 1489/1384,
  44901. bottom: 18/1507
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(6, "feet"),
  44909. default: true
  44910. },
  44911. {
  44912. name: "Macro",
  44913. height: math.unit(75, "feet")
  44914. },
  44915. {
  44916. name: "Macro-er",
  44917. height: math.unit(250, "feet")
  44918. },
  44919. ]
  44920. ))
  44921. characterMakers.push(() => makeCharacter(
  44922. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44923. {
  44924. front: {
  44925. height: math.unit(7, "feet"),
  44926. weight: math.unit(110, "kg"),
  44927. name: "Front",
  44928. image: {
  44929. source: "./media/characters/max-hyper/front.svg",
  44930. extra: 1969/1881,
  44931. bottom: 49/2018
  44932. }
  44933. },
  44934. },
  44935. [
  44936. {
  44937. name: "Normal",
  44938. height: math.unit(7, "feet"),
  44939. default: true
  44940. },
  44941. ]
  44942. ))
  44943. characterMakers.push(() => makeCharacter(
  44944. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44945. {
  44946. front: {
  44947. height: math.unit(5 + 5/12, "feet"),
  44948. weight: math.unit(160, "lb"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/spook/front.svg",
  44952. extra: 794/791,
  44953. bottom: 54/848
  44954. }
  44955. },
  44956. back: {
  44957. height: math.unit(5 + 5/12, "feet"),
  44958. weight: math.unit(160, "lb"),
  44959. name: "Back",
  44960. image: {
  44961. source: "./media/characters/spook/back.svg",
  44962. extra: 812/798,
  44963. bottom: 32/844
  44964. }
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Normal",
  44970. height: math.unit(5 + 5/12, "feet"),
  44971. default: true
  44972. },
  44973. ]
  44974. ))
  44975. characterMakers.push(() => makeCharacter(
  44976. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44977. {
  44978. front: {
  44979. height: math.unit(18, "feet"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/xeaduulix/front.svg",
  44983. extra: 1380/1166,
  44984. bottom: 110/1490
  44985. }
  44986. },
  44987. back: {
  44988. height: math.unit(18, "feet"),
  44989. name: "Back",
  44990. image: {
  44991. source: "./media/characters/xeaduulix/back.svg",
  44992. extra: 1592/1170,
  44993. bottom: 128/1720
  44994. }
  44995. },
  44996. frontNsfw: {
  44997. height: math.unit(18, "feet"),
  44998. name: "Front (NSFW)",
  44999. image: {
  45000. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45001. extra: 1380/1166,
  45002. bottom: 110/1490
  45003. }
  45004. },
  45005. backNsfw: {
  45006. height: math.unit(18, "feet"),
  45007. name: "Back (NSFW)",
  45008. image: {
  45009. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45010. extra: 1592/1170,
  45011. bottom: 128/1720
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(18, "feet"),
  45019. default: true
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45025. {
  45026. spreadWings: {
  45027. height: math.unit(20, "feet"),
  45028. name: "Spread Wings",
  45029. image: {
  45030. source: "./media/characters/fledge/spread-wings.svg",
  45031. extra: 693/635,
  45032. bottom: 26/719
  45033. }
  45034. },
  45035. front: {
  45036. height: math.unit(20, "feet"),
  45037. name: "Front",
  45038. image: {
  45039. source: "./media/characters/fledge/front.svg",
  45040. extra: 684/637,
  45041. bottom: 18/702
  45042. }
  45043. },
  45044. frontAlt: {
  45045. height: math.unit(20, "feet"),
  45046. name: "Front (Alt)",
  45047. image: {
  45048. source: "./media/characters/fledge/front-alt.svg",
  45049. extra: 708/664,
  45050. bottom: 13/721
  45051. }
  45052. },
  45053. back: {
  45054. height: math.unit(20, "feet"),
  45055. name: "Back",
  45056. image: {
  45057. source: "./media/characters/fledge/back.svg",
  45058. extra: 718/634,
  45059. bottom: 22/740
  45060. }
  45061. },
  45062. head: {
  45063. height: math.unit(5.55, "feet"),
  45064. name: "Head",
  45065. image: {
  45066. source: "./media/characters/fledge/head.svg"
  45067. }
  45068. },
  45069. headAlt: {
  45070. height: math.unit(5.1, "feet"),
  45071. name: "Head (Alt)",
  45072. image: {
  45073. source: "./media/characters/fledge/head-alt.svg"
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Small",
  45080. height: math.unit(6 + 2/12, "feet")
  45081. },
  45082. {
  45083. name: "Big",
  45084. height: math.unit(20, "feet"),
  45085. default: true
  45086. },
  45087. {
  45088. name: "Giant",
  45089. height: math.unit(100, "feet")
  45090. },
  45091. {
  45092. name: "Macro",
  45093. height: math.unit(200, "feet")
  45094. },
  45095. ]
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45099. {
  45100. front: {
  45101. height: math.unit(1, "meter"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/atlas-morenai/front.svg",
  45105. extra: 1275/1043,
  45106. bottom: 19/1294
  45107. }
  45108. },
  45109. back: {
  45110. height: math.unit(1, "meter"),
  45111. name: "Back",
  45112. image: {
  45113. source: "./media/characters/atlas-morenai/back.svg",
  45114. extra: 1141/1001,
  45115. bottom: 25/1166
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(1, "meter"),
  45123. default: true
  45124. },
  45125. {
  45126. name: "Magic-Infused",
  45127. height: math.unit(5, "meters")
  45128. },
  45129. ]
  45130. ))
  45131. characterMakers.push(() => makeCharacter(
  45132. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45133. {
  45134. front: {
  45135. height: math.unit(5, "meters"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/cintia/front.svg",
  45139. extra: 1312/1228,
  45140. bottom: 38/1350
  45141. }
  45142. },
  45143. back: {
  45144. height: math.unit(5, "meters"),
  45145. name: "Back",
  45146. image: {
  45147. source: "./media/characters/cintia/back.svg",
  45148. extra: 1260/1166,
  45149. bottom: 98/1358
  45150. }
  45151. },
  45152. frontDick: {
  45153. height: math.unit(5, "meters"),
  45154. name: "Front (Dick)",
  45155. image: {
  45156. source: "./media/characters/cintia/front-dick.svg",
  45157. extra: 1312/1228,
  45158. bottom: 38/1350
  45159. }
  45160. },
  45161. backDick: {
  45162. height: math.unit(5, "meters"),
  45163. name: "Back (Dick)",
  45164. image: {
  45165. source: "./media/characters/cintia/back-dick.svg",
  45166. extra: 1260/1166,
  45167. bottom: 98/1358
  45168. }
  45169. },
  45170. bust: {
  45171. height: math.unit(1.97, "meters"),
  45172. name: "Bust",
  45173. image: {
  45174. source: "./media/characters/cintia/bust.svg",
  45175. extra: 617/565,
  45176. bottom: 0/617
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Normal",
  45183. height: math.unit(5, "meters"),
  45184. default: true
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45190. {
  45191. side: {
  45192. height: math.unit(100, "feet"),
  45193. name: "Side",
  45194. image: {
  45195. source: "./media/characters/denora/side.svg",
  45196. extra: 875/803,
  45197. bottom: 9/884
  45198. }
  45199. },
  45200. },
  45201. [
  45202. {
  45203. name: "Standard",
  45204. height: math.unit(100, "feet"),
  45205. default: true
  45206. },
  45207. {
  45208. name: "Grand",
  45209. height: math.unit(1000, "feet")
  45210. },
  45211. {
  45212. name: "Conquering",
  45213. height: math.unit(10000, "feet")
  45214. },
  45215. ]
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45219. {
  45220. dressed: {
  45221. height: math.unit(8 + 5/12, "feet"),
  45222. weight: math.unit(700, "lb"),
  45223. name: "Dressed",
  45224. image: {
  45225. source: "./media/characters/kiva/dressed.svg",
  45226. extra: 1102/1055,
  45227. bottom: 60/1162
  45228. }
  45229. },
  45230. nude: {
  45231. height: math.unit(8 + 5/12, "feet"),
  45232. weight: math.unit(700, "lb"),
  45233. name: "Nude",
  45234. image: {
  45235. source: "./media/characters/kiva/nude.svg",
  45236. extra: 1102/1055,
  45237. bottom: 60/1162
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Base Height",
  45244. height: math.unit(8 + 5/12, "feet"),
  45245. default: true
  45246. },
  45247. {
  45248. name: "Macro",
  45249. height: math.unit(100, "feet")
  45250. },
  45251. {
  45252. name: "Max",
  45253. height: math.unit(3280, "feet")
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45259. {
  45260. front: {
  45261. height: math.unit(6 + 8/12, "feet"),
  45262. weight: math.unit(250, "lb"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/ztragon/front.svg",
  45266. extra: 1825/1684,
  45267. bottom: 98/1923
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(6 + 8/12, "feet"),
  45275. default: true
  45276. },
  45277. {
  45278. name: "Macro",
  45279. height: math.unit(80, "feet")
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45285. {
  45286. front: {
  45287. height: math.unit(10.4, "feet"),
  45288. weight: math.unit(2, "tons"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/yesenia/front.svg",
  45292. extra: 1479/1474,
  45293. bottom: 233/1712
  45294. }
  45295. },
  45296. },
  45297. [
  45298. {
  45299. name: "Normal",
  45300. height: math.unit(10.4, "feet"),
  45301. default: true
  45302. },
  45303. ]
  45304. ))
  45305. characterMakers.push(() => makeCharacter(
  45306. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45307. {
  45308. normal: {
  45309. height: math.unit(6 + 1/12, "feet"),
  45310. weight: math.unit(180, "lb"),
  45311. name: "Normal",
  45312. image: {
  45313. source: "./media/characters/leanne-lycheborne/normal.svg",
  45314. extra: 1748/1660,
  45315. bottom: 98/1846
  45316. }
  45317. },
  45318. were: {
  45319. height: math.unit(12, "feet"),
  45320. weight: math.unit(1600, "lb"),
  45321. name: "Were",
  45322. image: {
  45323. source: "./media/characters/leanne-lycheborne/were.svg",
  45324. extra: 1485/1432,
  45325. bottom: 66/1551
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Normal",
  45332. height: math.unit(6 + 1/12, "feet"),
  45333. default: true
  45334. },
  45335. ]
  45336. ))
  45337. characterMakers.push(() => makeCharacter(
  45338. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45339. {
  45340. side: {
  45341. height: math.unit(13, "feet"),
  45342. name: "Side",
  45343. image: {
  45344. source: "./media/characters/kira-tyler/side.svg",
  45345. extra: 693/393,
  45346. bottom: 58/751
  45347. }
  45348. },
  45349. },
  45350. [
  45351. {
  45352. name: "Normal",
  45353. height: math.unit(13, "feet"),
  45354. default: true
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(10.3, "feet"),
  45363. weight: math.unit(150, "lb"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/blaze/front.svg",
  45367. extra: 1378/1286,
  45368. bottom: 172/1550
  45369. }
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "Normal",
  45375. height: math.unit(10.3, "feet"),
  45376. default: true
  45377. },
  45378. ]
  45379. ))
  45380. characterMakers.push(() => makeCharacter(
  45381. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45382. {
  45383. side: {
  45384. height: math.unit(2, "meters"),
  45385. weight: math.unit(400, "kg"),
  45386. name: "Side",
  45387. image: {
  45388. source: "./media/characters/anu/side.svg",
  45389. extra: 506/394,
  45390. bottom: 18/524
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Humanoid",
  45397. height: math.unit(2, "meters")
  45398. },
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(5, "meters"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45408. {
  45409. front: {
  45410. height: math.unit(5 + 5/12, "feet"),
  45411. weight: math.unit(170, "lb"),
  45412. name: "Front",
  45413. image: {
  45414. source: "./media/characters/synx-the-lynx/front.svg",
  45415. extra: 1893/1745,
  45416. bottom: 17/1910
  45417. }
  45418. },
  45419. side: {
  45420. height: math.unit(5 + 5/12, "feet"),
  45421. weight: math.unit(170, "lb"),
  45422. name: "Side",
  45423. image: {
  45424. source: "./media/characters/synx-the-lynx/side.svg",
  45425. extra: 1884/1740,
  45426. bottom: 39/1923
  45427. }
  45428. },
  45429. back: {
  45430. height: math.unit(5 + 5/12, "feet"),
  45431. weight: math.unit(170, "lb"),
  45432. name: "Back",
  45433. image: {
  45434. source: "./media/characters/synx-the-lynx/back.svg",
  45435. extra: 1903/1755,
  45436. bottom: 14/1917
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(5 + 5/12, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45450. {
  45451. back: {
  45452. height: math.unit(15, "feet"),
  45453. name: "Back",
  45454. image: {
  45455. source: "./media/characters/nadezda-fex/back.svg",
  45456. extra: 1695/1481,
  45457. bottom: 25/1720
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(15, "feet"),
  45465. default: true
  45466. },
  45467. {
  45468. name: "Macro",
  45469. height: math.unit(2.5, "miles")
  45470. },
  45471. {
  45472. name: "Goddess",
  45473. height: math.unit(2, "multiverses")
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45479. {
  45480. front: {
  45481. height: math.unit(216, "cm"),
  45482. name: "Front",
  45483. image: {
  45484. source: "./media/characters/lev/front.svg",
  45485. extra: 1728/1670,
  45486. bottom: 82/1810
  45487. }
  45488. },
  45489. back: {
  45490. height: math.unit(216, "cm"),
  45491. name: "Back",
  45492. image: {
  45493. source: "./media/characters/lev/back.svg",
  45494. extra: 1738/1675,
  45495. bottom: 24/1762
  45496. }
  45497. },
  45498. dressed: {
  45499. height: math.unit(216, "cm"),
  45500. name: "Dressed",
  45501. image: {
  45502. source: "./media/characters/lev/dressed.svg",
  45503. extra: 1397/1351,
  45504. bottom: 73/1470
  45505. }
  45506. },
  45507. head: {
  45508. height: math.unit(0.51, "meter"),
  45509. name: "Head",
  45510. image: {
  45511. source: "./media/characters/lev/head.svg"
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(216, "cm"),
  45519. default: true
  45520. },
  45521. {
  45522. name: "Relatively Macro",
  45523. height: math.unit(80, "meters")
  45524. },
  45525. {
  45526. name: "Megamacro",
  45527. height: math.unit(21600, "meters")
  45528. },
  45529. {
  45530. name: "Megamacro+",
  45531. height: math.unit(64800, "meters")
  45532. },
  45533. ]
  45534. ))
  45535. characterMakers.push(() => makeCharacter(
  45536. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45537. {
  45538. front: {
  45539. height: math.unit(2, "meters"),
  45540. weight: math.unit(80, "kg"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/moka/front.svg",
  45544. extra: 1337/1255,
  45545. bottom: 58/1395
  45546. }
  45547. },
  45548. },
  45549. [
  45550. {
  45551. name: "Micro",
  45552. height: math.unit(15, "cm")
  45553. },
  45554. {
  45555. name: "Normal",
  45556. height: math.unit(2, "meters"),
  45557. default: true
  45558. },
  45559. {
  45560. name: "Macro",
  45561. height: math.unit(20, "meters"),
  45562. },
  45563. ]
  45564. ))
  45565. characterMakers.push(() => makeCharacter(
  45566. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45567. {
  45568. front: {
  45569. height: math.unit(9, "feet"),
  45570. weight: math.unit(240, "lb"),
  45571. name: "Front",
  45572. image: {
  45573. source: "./media/characters/kuzco/front.svg",
  45574. extra: 1593/1487,
  45575. bottom: 32/1625
  45576. }
  45577. },
  45578. side: {
  45579. height: math.unit(9, "feet"),
  45580. weight: math.unit(240, "lb"),
  45581. name: "Side",
  45582. image: {
  45583. source: "./media/characters/kuzco/side.svg",
  45584. extra: 1575/1485,
  45585. bottom: 30/1605
  45586. }
  45587. },
  45588. back: {
  45589. height: math.unit(9, "feet"),
  45590. weight: math.unit(240, "lb"),
  45591. name: "Back",
  45592. image: {
  45593. source: "./media/characters/kuzco/back.svg",
  45594. extra: 1603/1514,
  45595. bottom: 14/1617
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Normal",
  45602. height: math.unit(9, "feet"),
  45603. default: true
  45604. },
  45605. ]
  45606. ))
  45607. characterMakers.push(() => makeCharacter(
  45608. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45609. {
  45610. side: {
  45611. height: math.unit(2, "meters"),
  45612. weight: math.unit(300, "kg"),
  45613. name: "Side",
  45614. image: {
  45615. source: "./media/characters/ceruleus/side.svg",
  45616. extra: 1068/974,
  45617. bottom: 126/1194
  45618. }
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Normal",
  45624. height: math.unit(16, "meters"),
  45625. default: true
  45626. },
  45627. ]
  45628. ))
  45629. characterMakers.push(() => makeCharacter(
  45630. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45631. {
  45632. front: {
  45633. height: math.unit(9, "feet"),
  45634. weight: math.unit(500, "kg"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/acouya/front.svg",
  45638. extra: 1660/1473,
  45639. bottom: 28/1688
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal",
  45646. height: math.unit(9, "feet"),
  45647. default: true
  45648. },
  45649. ]
  45650. ))
  45651. characterMakers.push(() => makeCharacter(
  45652. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45653. {
  45654. front: {
  45655. height: math.unit(5 + 6/12, "feet"),
  45656. weight: math.unit(195, "lb"),
  45657. name: "Front",
  45658. image: {
  45659. source: "./media/characters/vant/front.svg",
  45660. extra: 1396/1320,
  45661. bottom: 20/1416
  45662. }
  45663. },
  45664. back: {
  45665. height: math.unit(5 + 6/12, "feet"),
  45666. weight: math.unit(195, "lb"),
  45667. name: "Back",
  45668. image: {
  45669. source: "./media/characters/vant/back.svg",
  45670. extra: 1396/1320,
  45671. bottom: 20/1416
  45672. }
  45673. },
  45674. maw: {
  45675. height: math.unit(0.75, "feet"),
  45676. name: "Maw",
  45677. image: {
  45678. source: "./media/characters/vant/maw.svg"
  45679. }
  45680. },
  45681. paw: {
  45682. height: math.unit(1.07, "feet"),
  45683. name: "Paw",
  45684. image: {
  45685. source: "./media/characters/vant/paw.svg"
  45686. }
  45687. },
  45688. },
  45689. [
  45690. {
  45691. name: "Micro",
  45692. height: math.unit(0.25, "inches")
  45693. },
  45694. {
  45695. name: "Normal",
  45696. height: math.unit(5 + 6/12, "feet"),
  45697. default: true
  45698. },
  45699. {
  45700. name: "Macro",
  45701. height: math.unit(75, "feet")
  45702. },
  45703. ]
  45704. ))
  45705. characterMakers.push(() => makeCharacter(
  45706. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45707. {
  45708. front: {
  45709. height: math.unit(30, "meters"),
  45710. weight: math.unit(363, "tons"),
  45711. name: "Front",
  45712. image: {
  45713. source: "./media/characters/ahra/front.svg",
  45714. extra: 1914/1814,
  45715. bottom: 46/1960
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Macro",
  45722. height: math.unit(30, "meters"),
  45723. default: true
  45724. },
  45725. ]
  45726. ))
  45727. characterMakers.push(() => makeCharacter(
  45728. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45729. {
  45730. undressed: {
  45731. height: math.unit(2, "m"),
  45732. weight: math.unit(250, "kg"),
  45733. name: "Undressed",
  45734. image: {
  45735. source: "./media/characters/coriander/undressed.svg",
  45736. extra: 1757/1606,
  45737. bottom: 107/1864
  45738. }
  45739. },
  45740. dressed: {
  45741. height: math.unit(2, "m"),
  45742. weight: math.unit(250, "kg"),
  45743. name: "Dressed",
  45744. image: {
  45745. source: "./media/characters/coriander/dressed.svg",
  45746. extra: 1757/1606,
  45747. bottom: 107/1864
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Normal",
  45754. height: math.unit(4, "meters"),
  45755. default: true
  45756. },
  45757. {
  45758. name: "XL",
  45759. height: math.unit(6, "meters")
  45760. },
  45761. {
  45762. name: "XXL",
  45763. height: math.unit(8, "meters")
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45769. {
  45770. front: {
  45771. height: math.unit(6, "feet"),
  45772. name: "Front",
  45773. image: {
  45774. source: "./media/characters/syrinx/front.svg",
  45775. extra: 1557/1259,
  45776. bottom: 171/1728
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(6 + 3/12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(11 + 6/12, "feet"),
  45793. weight: math.unit(1.5, "tons"),
  45794. name: "Front",
  45795. image: {
  45796. source: "./media/characters/bor/front.svg",
  45797. extra: 1189/1109,
  45798. bottom: 170/1359
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(11 + 6/12, "feet"),
  45806. default: true
  45807. },
  45808. {
  45809. name: "Macro",
  45810. height: math.unit(32 + 9/12, "feet")
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45816. {
  45817. anthro: {
  45818. height: math.unit(9, "feet"),
  45819. weight: math.unit(2076, "lb"),
  45820. name: "Anthro",
  45821. image: {
  45822. source: "./media/characters/abacus/anthro.svg",
  45823. extra: 1540/1494,
  45824. bottom: 233/1773
  45825. }
  45826. },
  45827. pigeon: {
  45828. height: math.unit(1, "feet"),
  45829. name: "Pigeon",
  45830. image: {
  45831. source: "./media/characters/abacus/pigeon.svg",
  45832. extra: 528/525,
  45833. bottom: 46/574
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(9, "feet"),
  45841. default: true
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45847. {
  45848. side: {
  45849. height: math.unit(6, "feet"),
  45850. name: "Side",
  45851. image: {
  45852. source: "./media/characters/delkhan/side.svg",
  45853. extra: 1884/1786,
  45854. bottom: 308/2192
  45855. }
  45856. },
  45857. head: {
  45858. height: math.unit(3.38, "feet"),
  45859. name: "Head",
  45860. image: {
  45861. source: "./media/characters/delkhan/head.svg"
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(72, "feet"),
  45869. default: true
  45870. },
  45871. {
  45872. name: "Giant",
  45873. height: math.unit(172, "feet")
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45879. {
  45880. standing: {
  45881. height: math.unit(6, "feet"),
  45882. name: "Standing",
  45883. image: {
  45884. source: "./media/characters/euchidat/standing.svg",
  45885. extra: 1612/1553,
  45886. bottom: 116/1728
  45887. }
  45888. },
  45889. leaning: {
  45890. height: math.unit(6, "feet"),
  45891. name: "Leaning",
  45892. image: {
  45893. source: "./media/characters/euchidat/leaning.svg",
  45894. extra: 1719/1674,
  45895. bottom: 27/1746
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(175, "feet"),
  45903. default: true
  45904. },
  45905. {
  45906. name: "Megamacro",
  45907. height: math.unit(190, "miles")
  45908. },
  45909. {
  45910. name: "Gigamacro",
  45911. height: math.unit(190000, "miles")
  45912. },
  45913. ]
  45914. ))
  45915. characterMakers.push(() => makeCharacter(
  45916. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45917. {
  45918. front: {
  45919. height: math.unit(6, "feet"),
  45920. weight: math.unit(150, "lb"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/rebecca-stack/front.svg",
  45924. extra: 1256/1201,
  45925. bottom: 18/1274
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(5 + 8/12, "feet"),
  45933. default: true
  45934. },
  45935. {
  45936. name: "Demolitionist",
  45937. height: math.unit(200, "feet")
  45938. },
  45939. {
  45940. name: "Out of Control",
  45941. height: math.unit(2, "miles")
  45942. },
  45943. {
  45944. name: "Giga",
  45945. height: math.unit(7200, "miles")
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(6, "feet"),
  45954. weight: math.unit(150, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/jenny-cartwright/front.svg",
  45958. extra: 1384/1376,
  45959. bottom: 58/1442
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(6 + 7/12, "feet"),
  45967. default: true
  45968. },
  45969. {
  45970. name: "Librarian",
  45971. height: math.unit(55, "feet")
  45972. },
  45973. {
  45974. name: "Sightseer",
  45975. height: math.unit(50, "miles")
  45976. },
  45977. {
  45978. name: "Giga",
  45979. height: math.unit(30000, "miles")
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45985. {
  45986. nude: {
  45987. height: math.unit(8, "feet"),
  45988. weight: math.unit(225, "lb"),
  45989. name: "Nude",
  45990. image: {
  45991. source: "./media/characters/marvy/nude.svg",
  45992. extra: 1900/1683,
  45993. bottom: 89/1989
  45994. }
  45995. },
  45996. dressed: {
  45997. height: math.unit(8, "feet"),
  45998. weight: math.unit(225, "lb"),
  45999. name: "Dressed",
  46000. image: {
  46001. source: "./media/characters/marvy/dressed.svg",
  46002. extra: 1900/1683,
  46003. bottom: 89/1989
  46004. }
  46005. },
  46006. head: {
  46007. height: math.unit(2.85, "feet"),
  46008. name: "Head",
  46009. image: {
  46010. source: "./media/characters/marvy/head.svg"
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(8, "feet"),
  46018. default: true
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(8, "feet"),
  46027. weight: math.unit(250, "lb"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/leah/front.svg",
  46031. extra: 1257/1149,
  46032. bottom: 109/1366
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "Normal",
  46039. height: math.unit(8, "feet"),
  46040. default: true
  46041. },
  46042. {
  46043. name: "Minimacro",
  46044. height: math.unit(40, "feet")
  46045. },
  46046. {
  46047. name: "Macro",
  46048. height: math.unit(124, "feet")
  46049. },
  46050. {
  46051. name: "Megamacro",
  46052. height: math.unit(850, "feet")
  46053. },
  46054. ]
  46055. ))
  46056. characterMakers.push(() => makeCharacter(
  46057. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46058. {
  46059. side: {
  46060. height: math.unit(13 + 6/12, "feet"),
  46061. weight: math.unit(3200, "lb"),
  46062. name: "Side",
  46063. image: {
  46064. source: "./media/characters/alvir/side.svg",
  46065. extra: 896/589,
  46066. bottom: 26/922
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(13 + 6/12, "feet"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46080. {
  46081. front: {
  46082. height: math.unit(5 + 4/12, "feet"),
  46083. weight: math.unit(236, "lb"),
  46084. name: "Front",
  46085. image: {
  46086. source: "./media/characters/zaina-khalil/front.svg",
  46087. extra: 1533/1485,
  46088. bottom: 94/1627
  46089. }
  46090. },
  46091. side: {
  46092. height: math.unit(5 + 4/12, "feet"),
  46093. weight: math.unit(236, "lb"),
  46094. name: "Side",
  46095. image: {
  46096. source: "./media/characters/zaina-khalil/side.svg",
  46097. extra: 1537/1498,
  46098. bottom: 66/1603
  46099. }
  46100. },
  46101. back: {
  46102. height: math.unit(5 + 4/12, "feet"),
  46103. weight: math.unit(236, "lb"),
  46104. name: "Back",
  46105. image: {
  46106. source: "./media/characters/zaina-khalil/back.svg",
  46107. extra: 1546/1494,
  46108. bottom: 89/1635
  46109. }
  46110. },
  46111. },
  46112. [
  46113. {
  46114. name: "Normal",
  46115. height: math.unit(5 + 4/12, "feet"),
  46116. default: true
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46122. {
  46123. side: {
  46124. height: math.unit(12, "feet"),
  46125. weight: math.unit(4000, "lb"),
  46126. name: "Side",
  46127. image: {
  46128. source: "./media/characters/terry/side.svg",
  46129. extra: 1518/1439,
  46130. bottom: 149/1667
  46131. }
  46132. },
  46133. },
  46134. [
  46135. {
  46136. name: "Normal",
  46137. height: math.unit(12, "feet"),
  46138. default: true
  46139. },
  46140. ]
  46141. ))
  46142. characterMakers.push(() => makeCharacter(
  46143. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46144. {
  46145. front: {
  46146. height: math.unit(12, "feet"),
  46147. weight: math.unit(1500, "lb"),
  46148. name: "Front",
  46149. image: {
  46150. source: "./media/characters/kahea/front.svg",
  46151. extra: 1722/1617,
  46152. bottom: 179/1901
  46153. }
  46154. },
  46155. },
  46156. [
  46157. {
  46158. name: "Normal",
  46159. height: math.unit(12, "feet"),
  46160. default: true
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46166. {
  46167. demonFront: {
  46168. height: math.unit(36, "feet"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/alex-xuria/demon-front.svg",
  46172. extra: 1705/1673,
  46173. bottom: 198/1903
  46174. },
  46175. form: "demon",
  46176. default: true
  46177. },
  46178. demonBack: {
  46179. height: math.unit(36, "feet"),
  46180. name: "Back",
  46181. image: {
  46182. source: "./media/characters/alex-xuria/demon-back.svg",
  46183. extra: 1725/1693,
  46184. bottom: 70/1795
  46185. },
  46186. form: "demon"
  46187. },
  46188. demonHead: {
  46189. height: math.unit(2.14, "meters"),
  46190. name: "Head",
  46191. image: {
  46192. source: "./media/characters/alex-xuria/demon-head.svg"
  46193. },
  46194. form: "demon"
  46195. },
  46196. demonHand: {
  46197. height: math.unit(1.61, "meters"),
  46198. name: "Hand",
  46199. image: {
  46200. source: "./media/characters/alex-xuria/demon-hand.svg"
  46201. },
  46202. form: "demon"
  46203. },
  46204. demonPaw: {
  46205. height: math.unit(1.35, "meters"),
  46206. name: "Paw",
  46207. image: {
  46208. source: "./media/characters/alex-xuria/demon-paw.svg"
  46209. },
  46210. form: "demon"
  46211. },
  46212. demonFoot: {
  46213. height: math.unit(2.2, "meters"),
  46214. name: "Foot",
  46215. image: {
  46216. source: "./media/characters/alex-xuria/demon-foot.svg"
  46217. },
  46218. form: "demon"
  46219. },
  46220. demonCock: {
  46221. height: math.unit(1.74, "meters"),
  46222. name: "Cock",
  46223. image: {
  46224. source: "./media/characters/alex-xuria/demon-cock.svg"
  46225. },
  46226. form: "demon"
  46227. },
  46228. demonTailClosed: {
  46229. height: math.unit(1.47, "meters"),
  46230. name: "Tail (Closed)",
  46231. image: {
  46232. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46233. },
  46234. form: "demon"
  46235. },
  46236. demonTailOpen: {
  46237. height: math.unit(2.85, "meters"),
  46238. name: "Tail (Open)",
  46239. image: {
  46240. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46241. },
  46242. form: "demon"
  46243. },
  46244. incubusFront: {
  46245. height: math.unit(12, "feet"),
  46246. name: "Front",
  46247. image: {
  46248. source: "./media/characters/alex-xuria/incubus-front.svg",
  46249. extra: 1754/1677,
  46250. bottom: 125/1879
  46251. },
  46252. form: "incubus",
  46253. default: true
  46254. },
  46255. incubusBack: {
  46256. height: math.unit(12, "feet"),
  46257. name: "Back",
  46258. image: {
  46259. source: "./media/characters/alex-xuria/incubus-back.svg",
  46260. extra: 1702/1647,
  46261. bottom: 30/1732
  46262. },
  46263. form: "incubus"
  46264. },
  46265. incubusHead: {
  46266. height: math.unit(3.45, "feet"),
  46267. name: "Head",
  46268. image: {
  46269. source: "./media/characters/alex-xuria/incubus-head.svg"
  46270. },
  46271. form: "incubus"
  46272. },
  46273. rabbitFront: {
  46274. height: math.unit(6, "feet"),
  46275. name: "Front",
  46276. image: {
  46277. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46278. extra: 1369/1349,
  46279. bottom: 45/1414
  46280. },
  46281. form: "rabbit",
  46282. default: true
  46283. },
  46284. rabbitSide: {
  46285. height: math.unit(6, "feet"),
  46286. name: "Side",
  46287. image: {
  46288. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46289. extra: 1370/1356,
  46290. bottom: 37/1407
  46291. },
  46292. form: "rabbit"
  46293. },
  46294. rabbitBack: {
  46295. height: math.unit(6, "feet"),
  46296. name: "Back",
  46297. image: {
  46298. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46299. extra: 1375/1358,
  46300. bottom: 43/1418
  46301. },
  46302. form: "rabbit"
  46303. },
  46304. },
  46305. [
  46306. {
  46307. name: "Normal",
  46308. height: math.unit(6, "feet"),
  46309. default: true,
  46310. form: "rabbit"
  46311. },
  46312. {
  46313. name: "Incubus",
  46314. height: math.unit(12, "feet"),
  46315. default: true,
  46316. form: "incubus"
  46317. },
  46318. {
  46319. name: "Demon",
  46320. height: math.unit(36, "feet"),
  46321. default: true,
  46322. form: "demon"
  46323. }
  46324. ],
  46325. {
  46326. "demon": {
  46327. name: "Demon",
  46328. default: true
  46329. },
  46330. "incubus": {
  46331. name: "Incubus",
  46332. },
  46333. "rabbit": {
  46334. name: "Rabbit"
  46335. }
  46336. }
  46337. ))
  46338. characterMakers.push(() => makeCharacter(
  46339. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46340. {
  46341. front: {
  46342. height: math.unit(7 + 5/12, "feet"),
  46343. weight: math.unit(510, "lb"),
  46344. name: "Front",
  46345. image: {
  46346. source: "./media/characters/syrup/front.svg",
  46347. extra: 932/916,
  46348. bottom: 26/958
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(7 + 5/12, "feet"),
  46356. default: true
  46357. },
  46358. {
  46359. name: "Big",
  46360. height: math.unit(50, "feet")
  46361. },
  46362. {
  46363. name: "Macro",
  46364. height: math.unit(300, "feet")
  46365. },
  46366. {
  46367. name: "Megamacro",
  46368. height: math.unit(1, "mile")
  46369. },
  46370. ]
  46371. ))
  46372. characterMakers.push(() => makeCharacter(
  46373. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46374. {
  46375. front: {
  46376. height: math.unit(6 + 9/12, "feet"),
  46377. name: "Front",
  46378. image: {
  46379. source: "./media/characters/zeimne/front.svg",
  46380. extra: 1969/1806,
  46381. bottom: 53/2022
  46382. }
  46383. },
  46384. },
  46385. [
  46386. {
  46387. name: "Normal",
  46388. height: math.unit(6 + 9/12, "feet"),
  46389. default: true
  46390. },
  46391. {
  46392. name: "Giant",
  46393. height: math.unit(550, "feet")
  46394. },
  46395. {
  46396. name: "Mega",
  46397. height: math.unit(3, "miles")
  46398. },
  46399. {
  46400. name: "Giga",
  46401. height: math.unit(250, "miles")
  46402. },
  46403. {
  46404. name: "Tera",
  46405. height: math.unit(1, "AU")
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(5 + 2/12, "feet"),
  46414. name: "Front",
  46415. image: {
  46416. source: "./media/characters/grar/front.svg",
  46417. extra: 1331/1119,
  46418. bottom: 60/1391
  46419. }
  46420. },
  46421. back: {
  46422. height: math.unit(5 + 2/12, "feet"),
  46423. name: "Back",
  46424. image: {
  46425. source: "./media/characters/grar/back.svg",
  46426. extra: 1385/1169,
  46427. bottom: 23/1408
  46428. }
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Normal",
  46434. height: math.unit(5 + 2/12, "feet"),
  46435. default: true
  46436. },
  46437. ]
  46438. ))
  46439. characterMakers.push(() => makeCharacter(
  46440. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46441. {
  46442. front: {
  46443. height: math.unit(13 + 7/12, "feet"),
  46444. weight: math.unit(2200, "lb"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/endraya/front.svg",
  46448. extra: 1289/1215,
  46449. bottom: 50/1339
  46450. }
  46451. },
  46452. nude: {
  46453. height: math.unit(13 + 7/12, "feet"),
  46454. weight: math.unit(2200, "lb"),
  46455. name: "Nude",
  46456. image: {
  46457. source: "./media/characters/endraya/nude.svg",
  46458. extra: 1247/1171,
  46459. bottom: 40/1287
  46460. }
  46461. },
  46462. head: {
  46463. height: math.unit(2.6, "feet"),
  46464. name: "Head",
  46465. image: {
  46466. source: "./media/characters/endraya/head.svg"
  46467. }
  46468. },
  46469. slit: {
  46470. height: math.unit(3.4, "feet"),
  46471. name: "Slit",
  46472. image: {
  46473. source: "./media/characters/endraya/slit.svg"
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Normal",
  46480. height: math.unit(13 + 7/12, "feet"),
  46481. default: true
  46482. },
  46483. {
  46484. name: "Macro",
  46485. height: math.unit(200, "feet")
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46491. {
  46492. front: {
  46493. height: math.unit(1.81, "meters"),
  46494. weight: math.unit(69, "kg"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/rodryana/front.svg",
  46498. extra: 2002/1921,
  46499. bottom: 53/2055
  46500. }
  46501. },
  46502. back: {
  46503. height: math.unit(1.81, "meters"),
  46504. weight: math.unit(69, "kg"),
  46505. name: "Back",
  46506. image: {
  46507. source: "./media/characters/rodryana/back.svg",
  46508. extra: 1993/1926,
  46509. bottom: 48/2041
  46510. }
  46511. },
  46512. maw: {
  46513. height: math.unit(0.19769417475, "meters"),
  46514. name: "Maw",
  46515. image: {
  46516. source: "./media/characters/rodryana/maw.svg"
  46517. }
  46518. },
  46519. slit: {
  46520. height: math.unit(0.31631067961, "meters"),
  46521. name: "Slit",
  46522. image: {
  46523. source: "./media/characters/rodryana/slit.svg"
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(1.81, "meters")
  46531. },
  46532. {
  46533. name: "Mini Macro",
  46534. height: math.unit(181, "meters")
  46535. },
  46536. {
  46537. name: "Macro",
  46538. height: math.unit(452, "meters"),
  46539. default: true
  46540. },
  46541. {
  46542. name: "Mega Macro",
  46543. height: math.unit(1.375, "km")
  46544. },
  46545. {
  46546. name: "Giga Macro",
  46547. height: math.unit(13.575, "km")
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(6, "feet"),
  46556. weight: math.unit(1000, "lb"),
  46557. name: "Front",
  46558. image: {
  46559. source: "./media/characters/asaya/front.svg",
  46560. extra: 1460/1200,
  46561. bottom: 71/1531
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(8, "km"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46575. {
  46576. front: {
  46577. height: math.unit(3.5, "meters"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/sarzu-and-israz/front.svg",
  46581. extra: 1570/1558,
  46582. bottom: 150/1720
  46583. },
  46584. },
  46585. back: {
  46586. height: math.unit(3.5, "meters"),
  46587. name: "Back",
  46588. image: {
  46589. source: "./media/characters/sarzu-and-israz/back.svg",
  46590. extra: 1523/1509,
  46591. bottom: 132/1655
  46592. },
  46593. },
  46594. frontFemale: {
  46595. height: math.unit(3.5, "meters"),
  46596. name: "Front (Female)",
  46597. image: {
  46598. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46599. extra: 1570/1558,
  46600. bottom: 150/1720
  46601. },
  46602. },
  46603. frontHerm: {
  46604. height: math.unit(3.5, "meters"),
  46605. name: "Front (Herm)",
  46606. image: {
  46607. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46608. extra: 1570/1558,
  46609. bottom: 150/1720
  46610. },
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Normal",
  46616. height: math.unit(3.5, "meters"),
  46617. default: true,
  46618. },
  46619. {
  46620. name: "Macro",
  46621. height: math.unit(65.5, "meters"),
  46622. },
  46623. ],
  46624. ))
  46625. characterMakers.push(() => makeCharacter(
  46626. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46627. {
  46628. front: {
  46629. height: math.unit(6, "feet"),
  46630. weight: math.unit(250, "lb"),
  46631. name: "Front",
  46632. image: {
  46633. source: "./media/characters/zenimma/front.svg",
  46634. extra: 1346/1320,
  46635. bottom: 58/1404
  46636. }
  46637. },
  46638. back: {
  46639. height: math.unit(6, "feet"),
  46640. weight: math.unit(250, "lb"),
  46641. name: "Back",
  46642. image: {
  46643. source: "./media/characters/zenimma/back.svg",
  46644. extra: 1324/1308,
  46645. bottom: 44/1368
  46646. }
  46647. },
  46648. dick: {
  46649. height: math.unit(1.44, "feet"),
  46650. name: "Dick",
  46651. image: {
  46652. source: "./media/characters/zenimma/dick.svg"
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Canon Height",
  46659. height: math.unit(66, "miles"),
  46660. default: true
  46661. },
  46662. ]
  46663. ))
  46664. characterMakers.push(() => makeCharacter(
  46665. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46666. {
  46667. nude: {
  46668. height: math.unit(6, "feet"),
  46669. weight: math.unit(150, "lb"),
  46670. name: "Nude",
  46671. image: {
  46672. source: "./media/characters/shavon/nude.svg",
  46673. extra: 1242/1096,
  46674. bottom: 98/1340
  46675. }
  46676. },
  46677. dressed: {
  46678. height: math.unit(6, "feet"),
  46679. weight: math.unit(150, "lb"),
  46680. name: "Dressed",
  46681. image: {
  46682. source: "./media/characters/shavon/dressed.svg",
  46683. extra: 1242/1096,
  46684. bottom: 98/1340
  46685. }
  46686. },
  46687. },
  46688. [
  46689. {
  46690. name: "Macro",
  46691. height: math.unit(255, "feet"),
  46692. default: true
  46693. },
  46694. ]
  46695. ))
  46696. characterMakers.push(() => makeCharacter(
  46697. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46698. {
  46699. front: {
  46700. height: math.unit(6, "feet"),
  46701. name: "Front",
  46702. image: {
  46703. source: "./media/characters/steph/front.svg",
  46704. extra: 1430/1330,
  46705. bottom: 54/1484
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Normal",
  46712. height: math.unit(6, "feet"),
  46713. default: true
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(9, "feet"),
  46722. weight: math.unit(400, "lb"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/kil'aman/front.svg",
  46726. extra: 1210/1159,
  46727. bottom: 109/1319
  46728. }
  46729. },
  46730. head: {
  46731. height: math.unit(2.14, "feet"),
  46732. name: "Head",
  46733. image: {
  46734. source: "./media/characters/kil'aman/head.svg"
  46735. }
  46736. },
  46737. maw: {
  46738. height: math.unit(1.21, "feet"),
  46739. name: "Maw",
  46740. image: {
  46741. source: "./media/characters/kil'aman/maw.svg"
  46742. }
  46743. },
  46744. foot: {
  46745. height: math.unit(1.7, "feet"),
  46746. name: "Foot",
  46747. image: {
  46748. source: "./media/characters/kil'aman/foot.svg"
  46749. }
  46750. },
  46751. dick: {
  46752. height: math.unit(2.1, "feet"),
  46753. name: "Dick",
  46754. image: {
  46755. source: "./media/characters/kil'aman/dick.svg"
  46756. }
  46757. },
  46758. },
  46759. [
  46760. {
  46761. name: "Normal",
  46762. height: math.unit(9, "feet")
  46763. },
  46764. {
  46765. name: "Canon Height",
  46766. height: math.unit(10, "miles"),
  46767. default: true
  46768. },
  46769. {
  46770. name: "Maximum",
  46771. height: math.unit(6e9, "miles")
  46772. },
  46773. ]
  46774. ))
  46775. characterMakers.push(() => makeCharacter(
  46776. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46777. {
  46778. front: {
  46779. height: math.unit(90, "feet"),
  46780. weight: math.unit(675000, "lb"),
  46781. name: "Front",
  46782. image: {
  46783. source: "./media/characters/qadan/front.svg",
  46784. extra: 1012/1004,
  46785. bottom: 78/1090
  46786. }
  46787. },
  46788. back: {
  46789. height: math.unit(90, "feet"),
  46790. weight: math.unit(675000, "lb"),
  46791. name: "Back",
  46792. image: {
  46793. source: "./media/characters/qadan/back.svg",
  46794. extra: 1042/1031,
  46795. bottom: 55/1097
  46796. }
  46797. },
  46798. armored: {
  46799. height: math.unit(90, "feet"),
  46800. weight: math.unit(675000, "lb"),
  46801. name: "Armored",
  46802. image: {
  46803. source: "./media/characters/qadan/armored.svg",
  46804. extra: 1047/1037,
  46805. bottom: 48/1095
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(90, "feet"),
  46813. default: true
  46814. },
  46815. ]
  46816. ))
  46817. characterMakers.push(() => makeCharacter(
  46818. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46819. {
  46820. front: {
  46821. height: math.unit(6, "feet"),
  46822. weight: math.unit(225, "lb"),
  46823. name: "Front",
  46824. image: {
  46825. source: "./media/characters/brooke/front.svg",
  46826. extra: 1050/1010,
  46827. bottom: 66/1116
  46828. }
  46829. },
  46830. back: {
  46831. height: math.unit(6, "feet"),
  46832. weight: math.unit(225, "lb"),
  46833. name: "Back",
  46834. image: {
  46835. source: "./media/characters/brooke/back.svg",
  46836. extra: 1053/1013,
  46837. bottom: 41/1094
  46838. }
  46839. },
  46840. dressed: {
  46841. height: math.unit(6, "feet"),
  46842. weight: math.unit(225, "lb"),
  46843. name: "Dressed",
  46844. image: {
  46845. source: "./media/characters/brooke/dressed.svg",
  46846. extra: 1050/1010,
  46847. bottom: 66/1116
  46848. }
  46849. },
  46850. },
  46851. [
  46852. {
  46853. name: "Canon Height",
  46854. height: math.unit(500, "miles"),
  46855. default: true
  46856. },
  46857. ]
  46858. ))
  46859. characterMakers.push(() => makeCharacter(
  46860. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46861. {
  46862. front: {
  46863. height: math.unit(6 + 2/12, "feet"),
  46864. weight: math.unit(210, "lb"),
  46865. name: "Front",
  46866. image: {
  46867. source: "./media/characters/wubs/front.svg",
  46868. extra: 1345/1325,
  46869. bottom: 70/1415
  46870. }
  46871. },
  46872. back: {
  46873. height: math.unit(6 + 2/12, "feet"),
  46874. weight: math.unit(210, "lb"),
  46875. name: "Back",
  46876. image: {
  46877. source: "./media/characters/wubs/back.svg",
  46878. extra: 1296/1275,
  46879. bottom: 58/1354
  46880. }
  46881. },
  46882. },
  46883. [
  46884. {
  46885. name: "Normal",
  46886. height: math.unit(6 + 2/12, "feet"),
  46887. default: true
  46888. },
  46889. {
  46890. name: "Macro",
  46891. height: math.unit(1000, "feet")
  46892. },
  46893. {
  46894. name: "Megamacro",
  46895. height: math.unit(1, "mile")
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46901. {
  46902. front: {
  46903. height: math.unit(4, "feet"),
  46904. weight: math.unit(120, "lb"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/blue/front.svg",
  46908. extra: 1636/1525,
  46909. bottom: 43/1679
  46910. }
  46911. },
  46912. back: {
  46913. height: math.unit(4, "feet"),
  46914. weight: math.unit(120, "lb"),
  46915. name: "Back",
  46916. image: {
  46917. source: "./media/characters/blue/back.svg",
  46918. extra: 1660/1560,
  46919. bottom: 57/1717
  46920. }
  46921. },
  46922. paws: {
  46923. height: math.unit(0.826, "feet"),
  46924. name: "Paws",
  46925. image: {
  46926. source: "./media/characters/blue/paws.svg"
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Micro",
  46933. height: math.unit(3, "inches")
  46934. },
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(4, "feet"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Femenine Form",
  46942. height: math.unit(14, "feet")
  46943. },
  46944. {
  46945. name: "Werebat Form",
  46946. height: math.unit(18, "feet")
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46952. {
  46953. female: {
  46954. height: math.unit(7 + 4/12, "feet"),
  46955. weight: math.unit(243, "lb"),
  46956. name: "Female",
  46957. image: {
  46958. source: "./media/characters/kaya/female.svg",
  46959. extra: 975/898,
  46960. bottom: 34/1009
  46961. }
  46962. },
  46963. herm: {
  46964. height: math.unit(7 + 4/12, "feet"),
  46965. weight: math.unit(243, "lb"),
  46966. name: "Herm",
  46967. image: {
  46968. source: "./media/characters/kaya/herm.svg",
  46969. extra: 975/898,
  46970. bottom: 34/1009
  46971. }
  46972. },
  46973. },
  46974. [
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(7 + 4/12, "feet"),
  46978. default: true
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46984. {
  46985. female: {
  46986. height: math.unit(9 + 4/12, "feet"),
  46987. weight: math.unit(398, "lb"),
  46988. name: "Female",
  46989. image: {
  46990. source: "./media/characters/kassandra/female.svg",
  46991. extra: 908/839,
  46992. bottom: 61/969
  46993. }
  46994. },
  46995. intersex: {
  46996. height: math.unit(9 + 4/12, "feet"),
  46997. weight: math.unit(398, "lb"),
  46998. name: "Intersex",
  46999. image: {
  47000. source: "./media/characters/kassandra/intersex.svg",
  47001. extra: 908/839,
  47002. bottom: 61/969
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(9 + 4/12, "feet"),
  47010. default: true
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47016. {
  47017. front: {
  47018. height: math.unit(3, "meters"),
  47019. name: "Front",
  47020. image: {
  47021. source: "./media/characters/amy/front.svg",
  47022. extra: 1380/1343,
  47023. bottom: 70/1450
  47024. }
  47025. },
  47026. back: {
  47027. height: math.unit(3, "meters"),
  47028. name: "Back",
  47029. image: {
  47030. source: "./media/characters/amy/back.svg",
  47031. extra: 1380/1347,
  47032. bottom: 66/1446
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(3, "meters"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47046. {
  47047. side: {
  47048. height: math.unit(47, "cm"),
  47049. weight: math.unit(10.8, "kg"),
  47050. name: "Side",
  47051. image: {
  47052. source: "./media/characters/alphaschakal/side.svg",
  47053. extra: 1058/568,
  47054. bottom: 62/1120
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(78, "cm"),
  47059. weight: math.unit(10.8, "kg"),
  47060. name: "Back",
  47061. image: {
  47062. source: "./media/characters/alphaschakal/back.svg",
  47063. extra: 1102/942,
  47064. bottom: 185/1287
  47065. }
  47066. },
  47067. head: {
  47068. height: math.unit(28, "cm"),
  47069. name: "Head",
  47070. image: {
  47071. source: "./media/characters/alphaschakal/head.svg",
  47072. extra: 696/508,
  47073. bottom: 0/696
  47074. }
  47075. },
  47076. paw: {
  47077. height: math.unit(16, "cm"),
  47078. name: "Paw",
  47079. image: {
  47080. source: "./media/characters/alphaschakal/paw.svg"
  47081. }
  47082. },
  47083. },
  47084. [
  47085. {
  47086. name: "Normal",
  47087. height: math.unit(47, "cm"),
  47088. default: true
  47089. },
  47090. {
  47091. name: "Macro",
  47092. height: math.unit(340, "cm")
  47093. },
  47094. ]
  47095. ))
  47096. characterMakers.push(() => makeCharacter(
  47097. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47098. {
  47099. front: {
  47100. height: math.unit(36, "earths"),
  47101. name: "Front",
  47102. image: {
  47103. source: "./media/characters/ecobyss/front.svg",
  47104. extra: 1282/1215,
  47105. bottom: 11/1293
  47106. }
  47107. },
  47108. back: {
  47109. height: math.unit(36, "earths"),
  47110. name: "Back",
  47111. image: {
  47112. source: "./media/characters/ecobyss/back.svg",
  47113. extra: 1291/1222,
  47114. bottom: 8/1299
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(36, "earths"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47128. {
  47129. front: {
  47130. height: math.unit(12, "feet"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/vasuk/front.svg",
  47134. extra: 1326/1207,
  47135. bottom: 64/1390
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Normal",
  47142. height: math.unit(12, "feet"),
  47143. default: true
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47149. {
  47150. side: {
  47151. height: math.unit(100, "feet"),
  47152. name: "Side",
  47153. image: {
  47154. source: "./media/characters/linneaus/side.svg",
  47155. extra: 987/807,
  47156. bottom: 47/1034
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Macro",
  47163. height: math.unit(100, "feet"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(8, "feet"),
  47173. weight: math.unit(1200, "lb"),
  47174. name: "Front",
  47175. image: {
  47176. source: "./media/characters/nyterious-daligdig/front.svg",
  47177. extra: 1284/1094,
  47178. bottom: 84/1368
  47179. }
  47180. },
  47181. back: {
  47182. height: math.unit(8, "feet"),
  47183. weight: math.unit(1200, "lb"),
  47184. name: "Back",
  47185. image: {
  47186. source: "./media/characters/nyterious-daligdig/back.svg",
  47187. extra: 1301/1121,
  47188. bottom: 129/1430
  47189. }
  47190. },
  47191. mouth: {
  47192. height: math.unit(1.464, "feet"),
  47193. name: "Mouth",
  47194. image: {
  47195. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47196. }
  47197. },
  47198. },
  47199. [
  47200. {
  47201. name: "Small",
  47202. height: math.unit(8, "feet"),
  47203. default: true
  47204. },
  47205. {
  47206. name: "Normal",
  47207. height: math.unit(15, "feet")
  47208. },
  47209. {
  47210. name: "Macro",
  47211. height: math.unit(90, "feet")
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(7 + 4/12, "feet"),
  47220. weight: math.unit(252, "lb"),
  47221. name: "Front",
  47222. image: {
  47223. source: "./media/characters/bandel/front.svg",
  47224. extra: 1946/1775,
  47225. bottom: 26/1972
  47226. }
  47227. },
  47228. back: {
  47229. height: math.unit(7 + 4/12, "feet"),
  47230. weight: math.unit(252, "lb"),
  47231. name: "Back",
  47232. image: {
  47233. source: "./media/characters/bandel/back.svg",
  47234. extra: 1940/1770,
  47235. bottom: 25/1965
  47236. }
  47237. },
  47238. maw: {
  47239. height: math.unit(2.15, "feet"),
  47240. name: "Maw",
  47241. image: {
  47242. source: "./media/characters/bandel/maw.svg"
  47243. }
  47244. },
  47245. stomach: {
  47246. height: math.unit(1.95, "feet"),
  47247. name: "Stomach",
  47248. image: {
  47249. source: "./media/characters/bandel/stomach.svg"
  47250. }
  47251. },
  47252. },
  47253. [
  47254. {
  47255. name: "Normal",
  47256. height: math.unit(7 + 4/12, "feet"),
  47257. default: true
  47258. },
  47259. ]
  47260. ))
  47261. characterMakers.push(() => makeCharacter(
  47262. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47263. {
  47264. front: {
  47265. height: math.unit(10 + 5/12, "feet"),
  47266. weight: math.unit(773.5, "kg"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/zed/front.svg",
  47270. extra: 987/941,
  47271. bottom: 52/1039
  47272. }
  47273. },
  47274. },
  47275. [
  47276. {
  47277. name: "Short",
  47278. height: math.unit(5 + 4/12, "feet")
  47279. },
  47280. {
  47281. name: "Average",
  47282. height: math.unit(10 + 5/12, "feet"),
  47283. default: true
  47284. },
  47285. {
  47286. name: "Mini-Macro",
  47287. height: math.unit(24 + 9/12, "feet")
  47288. },
  47289. {
  47290. name: "Macro",
  47291. height: math.unit(249, "feet")
  47292. },
  47293. {
  47294. name: "Mega-Macro",
  47295. height: math.unit(12490, "feet")
  47296. },
  47297. {
  47298. name: "Giga-Macro",
  47299. height: math.unit(24.9, "miles")
  47300. },
  47301. {
  47302. name: "Tera-Macro",
  47303. height: math.unit(24900, "miles")
  47304. },
  47305. {
  47306. name: "Cosmic Scale",
  47307. height: math.unit(38.9, "lightyears")
  47308. },
  47309. {
  47310. name: "Universal Scale",
  47311. height: math.unit(138e12, "lightyears")
  47312. },
  47313. ]
  47314. ))
  47315. characterMakers.push(() => makeCharacter(
  47316. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47317. {
  47318. front: {
  47319. height: math.unit(1561, "inches"),
  47320. name: "Front",
  47321. image: {
  47322. source: "./media/characters/ivan/front.svg",
  47323. extra: 1126/1071,
  47324. bottom: 26/1152
  47325. }
  47326. },
  47327. back: {
  47328. height: math.unit(1561, "inches"),
  47329. name: "Back",
  47330. image: {
  47331. source: "./media/characters/ivan/back.svg",
  47332. extra: 1134/1079,
  47333. bottom: 30/1164
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(1561, "inches"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47347. {
  47348. front: {
  47349. height: math.unit(5 + 7/12, "feet"),
  47350. weight: math.unit(150, "lb"),
  47351. name: "Front",
  47352. image: {
  47353. source: "./media/characters/robin-arctic-hare/front.svg",
  47354. extra: 1148/974,
  47355. bottom: 20/1168
  47356. }
  47357. },
  47358. },
  47359. [
  47360. {
  47361. name: "Normal",
  47362. height: math.unit(5 + 7/12, "feet"),
  47363. default: true
  47364. },
  47365. ]
  47366. ))
  47367. characterMakers.push(() => makeCharacter(
  47368. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47369. {
  47370. side: {
  47371. height: math.unit(5, "feet"),
  47372. name: "Side",
  47373. image: {
  47374. source: "./media/characters/birch/side.svg",
  47375. extra: 985/796,
  47376. bottom: 111/1096
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(5, "feet"),
  47384. default: true
  47385. },
  47386. ]
  47387. ))
  47388. characterMakers.push(() => makeCharacter(
  47389. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47390. {
  47391. front: {
  47392. height: math.unit(4, "feet"),
  47393. name: "Front",
  47394. image: {
  47395. source: "./media/characters/rasp/front.svg",
  47396. extra: 561/478,
  47397. bottom: 74/635
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Normal",
  47404. height: math.unit(4, "feet"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47411. {
  47412. front: {
  47413. height: math.unit(4 + 6/12, "feet"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/agatha/front.svg",
  47417. extra: 947/933,
  47418. bottom: 42/989
  47419. }
  47420. },
  47421. back: {
  47422. height: math.unit(4 + 6/12, "feet"),
  47423. name: "Back",
  47424. image: {
  47425. source: "./media/characters/agatha/back.svg",
  47426. extra: 935/922,
  47427. bottom: 48/983
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(4 + 6 /12, "feet"),
  47435. default: true
  47436. },
  47437. {
  47438. name: "Max Size",
  47439. height: math.unit(500, "feet")
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47445. {
  47446. side: {
  47447. height: math.unit(30, "feet"),
  47448. name: "Side",
  47449. image: {
  47450. source: "./media/characters/roggy/side.svg",
  47451. extra: 909/643,
  47452. bottom: 63/972
  47453. }
  47454. },
  47455. lounging: {
  47456. height: math.unit(20, "feet"),
  47457. name: "Lounging",
  47458. image: {
  47459. source: "./media/characters/roggy/lounging.svg",
  47460. extra: 643/479,
  47461. bottom: 145/788
  47462. }
  47463. },
  47464. handpaw: {
  47465. height: math.unit(13.1, "feet"),
  47466. name: "Handpaw",
  47467. image: {
  47468. source: "./media/characters/roggy/handpaw.svg"
  47469. }
  47470. },
  47471. footpaw: {
  47472. height: math.unit(15.8, "feet"),
  47473. name: "Footpaw",
  47474. image: {
  47475. source: "./media/characters/roggy/footpaw.svg"
  47476. }
  47477. },
  47478. },
  47479. [
  47480. {
  47481. name: "Menacing",
  47482. height: math.unit(30, "feet"),
  47483. default: true
  47484. },
  47485. ]
  47486. ))
  47487. characterMakers.push(() => makeCharacter(
  47488. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47489. {
  47490. front: {
  47491. height: math.unit(5 + 7/12, "feet"),
  47492. weight: math.unit(135, "lb"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/naomi/front.svg",
  47496. extra: 1209/1154,
  47497. bottom: 129/1338
  47498. }
  47499. },
  47500. back: {
  47501. height: math.unit(5 + 7/12, "feet"),
  47502. weight: math.unit(135, "lb"),
  47503. name: "Back",
  47504. image: {
  47505. source: "./media/characters/naomi/back.svg",
  47506. extra: 1252/1190,
  47507. bottom: 23/1275
  47508. }
  47509. },
  47510. },
  47511. [
  47512. {
  47513. name: "Normal",
  47514. height: math.unit(5 + 7 /12, "feet"),
  47515. default: true
  47516. },
  47517. ]
  47518. ))
  47519. characterMakers.push(() => makeCharacter(
  47520. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47521. {
  47522. side: {
  47523. height: math.unit(35, "meters"),
  47524. name: "Side",
  47525. image: {
  47526. source: "./media/characters/kimpi/side.svg",
  47527. extra: 419/382,
  47528. bottom: 63/482
  47529. }
  47530. },
  47531. hand: {
  47532. height: math.unit(8.96, "meters"),
  47533. name: "Hand",
  47534. image: {
  47535. source: "./media/characters/kimpi/hand.svg"
  47536. }
  47537. },
  47538. },
  47539. [
  47540. {
  47541. name: "Normal",
  47542. height: math.unit(35, "meters"),
  47543. default: true
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(4 + 4/12, "feet"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/pepper-purrloin/front.svg",
  47555. extra: 1141/1024,
  47556. bottom: 21/1162
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(4 + 4/12, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(6 + 2/12, "feet"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/raphael/front.svg",
  47576. extra: 1101/962,
  47577. bottom: 59/1160
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(6 + 2/12, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(6, "feet"),
  47594. weight: math.unit(150, "lb"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/victor-williams/front.svg",
  47598. extra: 1894/1825,
  47599. bottom: 67/1961
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Normal",
  47606. height: math.unit(6, "feet"),
  47607. default: true
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(5 + 8/12, "feet"),
  47616. weight: math.unit(150, "lb"),
  47617. name: "Front",
  47618. image: {
  47619. source: "./media/characters/rachel/front.svg",
  47620. extra: 1902/1787,
  47621. bottom: 46/1948
  47622. }
  47623. },
  47624. },
  47625. [
  47626. {
  47627. name: "Base Height",
  47628. height: math.unit(5 + 8/12, "feet"),
  47629. default: true
  47630. },
  47631. {
  47632. name: "Macro",
  47633. height: math.unit(200, "feet")
  47634. },
  47635. {
  47636. name: "Mega Macro",
  47637. height: math.unit(1, "mile")
  47638. },
  47639. {
  47640. name: "Giga Macro",
  47641. height: math.unit(1500, "miles")
  47642. },
  47643. {
  47644. name: "Tera Macro",
  47645. height: math.unit(8000, "miles")
  47646. },
  47647. {
  47648. name: "Tera Macro+",
  47649. height: math.unit(2e5, "miles")
  47650. },
  47651. ]
  47652. ))
  47653. characterMakers.push(() => makeCharacter(
  47654. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47655. {
  47656. front: {
  47657. height: math.unit(6.5, "feet"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47661. extra: 860/819,
  47662. bottom: 307/1167
  47663. }
  47664. },
  47665. back: {
  47666. height: math.unit(6.5, "feet"),
  47667. name: "Back",
  47668. image: {
  47669. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47670. extra: 880/837,
  47671. bottom: 395/1275
  47672. }
  47673. },
  47674. sleeping: {
  47675. height: math.unit(2.79, "feet"),
  47676. name: "Sleeping",
  47677. image: {
  47678. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47679. extra: 465/383,
  47680. bottom: 263/728
  47681. }
  47682. },
  47683. maw: {
  47684. height: math.unit(2.52, "feet"),
  47685. name: "Maw",
  47686. image: {
  47687. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(6.5, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(5, "feet"),
  47704. name: "Front",
  47705. image: {
  47706. source: "./media/characters/nova-nerium/front.svg",
  47707. extra: 1548/1392,
  47708. bottom: 374/1922
  47709. }
  47710. },
  47711. back: {
  47712. height: math.unit(5, "feet"),
  47713. name: "Back",
  47714. image: {
  47715. source: "./media/characters/nova-nerium/back.svg",
  47716. extra: 1658/1468,
  47717. bottom: 257/1915
  47718. }
  47719. },
  47720. },
  47721. [
  47722. {
  47723. name: "Normal",
  47724. height: math.unit(5, "feet"),
  47725. default: true
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47731. {
  47732. front: {
  47733. height: math.unit(5 + 4/12, "feet"),
  47734. name: "Front",
  47735. image: {
  47736. source: "./media/characters/ashe-pyriph/front.svg",
  47737. extra: 1935/1747,
  47738. bottom: 60/1995
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(5 + 4/12, "feet"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47752. {
  47753. front: {
  47754. height: math.unit(8.7, "feet"),
  47755. name: "Front",
  47756. image: {
  47757. source: "./media/characters/flicker-wisp/front.svg",
  47758. extra: 1835/1613,
  47759. bottom: 449/2284
  47760. }
  47761. },
  47762. side: {
  47763. height: math.unit(8.7, "feet"),
  47764. name: "Side",
  47765. image: {
  47766. source: "./media/characters/flicker-wisp/side.svg",
  47767. extra: 1841/1642,
  47768. bottom: 336/2177
  47769. },
  47770. default: true
  47771. },
  47772. maw: {
  47773. height: math.unit(3.35, "feet"),
  47774. name: "Maw",
  47775. image: {
  47776. source: "./media/characters/flicker-wisp/maw.svg",
  47777. extra: 2338/1506,
  47778. bottom: 0/2338
  47779. }
  47780. },
  47781. ovipositor: {
  47782. height: math.unit(4.95, "feet"),
  47783. name: "Ovipositor",
  47784. image: {
  47785. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47786. }
  47787. },
  47788. egg: {
  47789. height: math.unit(0.385, "feet"),
  47790. weight: math.unit(2, "lb"),
  47791. name: "Egg",
  47792. image: {
  47793. source: "./media/characters/flicker-wisp/egg.svg"
  47794. }
  47795. },
  47796. },
  47797. [
  47798. {
  47799. name: "Normal",
  47800. height: math.unit(8.7, "feet"),
  47801. default: true
  47802. },
  47803. ]
  47804. ))
  47805. characterMakers.push(() => makeCharacter(
  47806. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47807. {
  47808. side: {
  47809. height: math.unit(11, "feet"),
  47810. name: "Side",
  47811. image: {
  47812. source: "./media/characters/faefnul/side.svg",
  47813. extra: 1100/1007,
  47814. bottom: 0/1100
  47815. }
  47816. },
  47817. },
  47818. [
  47819. {
  47820. name: "Normal",
  47821. height: math.unit(11, "feet"),
  47822. default: true
  47823. },
  47824. ]
  47825. ))
  47826. characterMakers.push(() => makeCharacter(
  47827. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47828. {
  47829. front: {
  47830. height: math.unit(6 + 2/12, "feet"),
  47831. name: "Front",
  47832. image: {
  47833. source: "./media/characters/shady/front.svg",
  47834. extra: 502/461,
  47835. bottom: 9/511
  47836. }
  47837. },
  47838. kneeling: {
  47839. height: math.unit(4.6, "feet"),
  47840. name: "Kneeling",
  47841. image: {
  47842. source: "./media/characters/shady/kneeling.svg",
  47843. extra: 1328/1219,
  47844. bottom: 117/1445
  47845. }
  47846. },
  47847. maw: {
  47848. height: math.unit(2, "feet"),
  47849. name: "Maw",
  47850. image: {
  47851. source: "./media/characters/shady/maw.svg"
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Nano",
  47858. height: math.unit(1, "mm")
  47859. },
  47860. {
  47861. name: "Micro",
  47862. height: math.unit(12, "mm")
  47863. },
  47864. {
  47865. name: "Tiny",
  47866. height: math.unit(3, "inches")
  47867. },
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(6 + 2/12, "feet"),
  47871. default: true
  47872. },
  47873. {
  47874. name: "Big",
  47875. height: math.unit(15, "feet")
  47876. },
  47877. {
  47878. name: "Macro",
  47879. height: math.unit(150, "feet")
  47880. },
  47881. {
  47882. name: "Titanic",
  47883. height: math.unit(500, "feet")
  47884. },
  47885. ]
  47886. ))
  47887. characterMakers.push(() => makeCharacter(
  47888. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47889. {
  47890. front: {
  47891. height: math.unit(12, "feet"),
  47892. name: "Front",
  47893. image: {
  47894. source: "./media/characters/fenrir/front.svg",
  47895. extra: 968/875,
  47896. bottom: 22/990
  47897. }
  47898. },
  47899. },
  47900. [
  47901. {
  47902. name: "Big",
  47903. height: math.unit(12, "feet"),
  47904. default: true
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47910. {
  47911. front: {
  47912. height: math.unit(5 + 4/12, "feet"),
  47913. name: "Front",
  47914. image: {
  47915. source: "./media/characters/makar/front.svg",
  47916. extra: 1181/1112,
  47917. bottom: 78/1259
  47918. }
  47919. },
  47920. },
  47921. [
  47922. {
  47923. name: "Normal",
  47924. height: math.unit(5 + 4/12, "feet"),
  47925. default: true
  47926. },
  47927. ]
  47928. ))
  47929. characterMakers.push(() => makeCharacter(
  47930. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47931. {
  47932. front: {
  47933. height: math.unit(5 + 7/12, "feet"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/callow/front.svg",
  47937. extra: 1482/1304,
  47938. bottom: 23/1505
  47939. }
  47940. },
  47941. back: {
  47942. height: math.unit(5 + 7/12, "feet"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/callow/back.svg",
  47946. extra: 1484/1296,
  47947. bottom: 25/1509
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Micro",
  47954. height: math.unit(3, "inches"),
  47955. default: true
  47956. },
  47957. {
  47958. name: "Normal",
  47959. height: math.unit(5 + 7/12, "feet")
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(6 + 2/12, "feet"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/natel/front.svg",
  47971. extra: 1833/1692,
  47972. bottom: 166/1999
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(6 + 2/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(1.75, "meters"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/misu/front.svg",
  47992. extra: 1690/1558,
  47993. bottom: 234/1924
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(1.75, "meters"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/misu/back.svg",
  48001. extra: 1762/1618,
  48002. bottom: 146/1908
  48003. }
  48004. },
  48005. frontNude: {
  48006. height: math.unit(1.75, "meters"),
  48007. name: "Front (Nude)",
  48008. image: {
  48009. source: "./media/characters/misu/front-nude.svg",
  48010. extra: 1690/1558,
  48011. bottom: 234/1924
  48012. }
  48013. },
  48014. backNude: {
  48015. height: math.unit(1.75, "meters"),
  48016. name: "Back (Nude)",
  48017. image: {
  48018. source: "./media/characters/misu/back-nude.svg",
  48019. extra: 1762/1618,
  48020. bottom: 146/1908
  48021. }
  48022. },
  48023. frontErect: {
  48024. height: math.unit(1.75, "meters"),
  48025. name: "Front (Erect)",
  48026. image: {
  48027. source: "./media/characters/misu/front-erect.svg",
  48028. extra: 1690/1558,
  48029. bottom: 234/1924
  48030. }
  48031. },
  48032. maw: {
  48033. height: math.unit(0.47, "meters"),
  48034. name: "Maw",
  48035. image: {
  48036. source: "./media/characters/misu/maw.svg"
  48037. }
  48038. },
  48039. head: {
  48040. height: math.unit(0.35, "meters"),
  48041. name: "Head",
  48042. image: {
  48043. source: "./media/characters/misu/head.svg"
  48044. }
  48045. },
  48046. rear: {
  48047. height: math.unit(0.47, "meters"),
  48048. name: "Rear",
  48049. image: {
  48050. source: "./media/characters/misu/rear.svg"
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(1.75, "meters")
  48058. },
  48059. {
  48060. name: "Not good for the people",
  48061. height: math.unit(42, "meters")
  48062. },
  48063. {
  48064. name: "Not good for the neighborhood",
  48065. height: math.unit(135, "meters")
  48066. },
  48067. {
  48068. name: "Bit bigger problem",
  48069. height: math.unit(380, "meters"),
  48070. default: true
  48071. },
  48072. {
  48073. name: "Not good for the city",
  48074. height: math.unit(1.5, "km")
  48075. },
  48076. {
  48077. name: "Not good for the county",
  48078. height: math.unit(5.5, "km")
  48079. },
  48080. {
  48081. name: "Not good for the state",
  48082. height: math.unit(25, "km")
  48083. },
  48084. {
  48085. name: "Not good for the country",
  48086. height: math.unit(125, "km")
  48087. },
  48088. {
  48089. name: "Not good for the continent",
  48090. height: math.unit(2100, "km")
  48091. },
  48092. {
  48093. name: "Not good for the planet",
  48094. height: math.unit(35000, "km")
  48095. },
  48096. {
  48097. name: "Just no",
  48098. height: math.unit(8.5e18, "km")
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(6.5, "feet"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/poppy/front.svg",
  48110. extra: 1878/1812,
  48111. bottom: 43/1921
  48112. }
  48113. },
  48114. feet: {
  48115. height: math.unit(1.06, "feet"),
  48116. name: "Feet",
  48117. image: {
  48118. source: "./media/characters/poppy/feet.svg",
  48119. extra: 1083/1083,
  48120. bottom: 87/1170
  48121. }
  48122. },
  48123. },
  48124. [
  48125. {
  48126. name: "Human",
  48127. height: math.unit(6.5, "feet")
  48128. },
  48129. {
  48130. name: "Default",
  48131. height: math.unit(300, "feet"),
  48132. default: true
  48133. },
  48134. {
  48135. name: "Huge",
  48136. height: math.unit(850, "feet")
  48137. },
  48138. {
  48139. name: "Mega",
  48140. height: math.unit(8000, "feet")
  48141. },
  48142. {
  48143. name: "Giga",
  48144. height: math.unit(300, "miles")
  48145. },
  48146. ]
  48147. ))
  48148. characterMakers.push(() => makeCharacter(
  48149. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48150. {
  48151. bipedal: {
  48152. height: math.unit(7, "feet"),
  48153. name: "Bipedal",
  48154. image: {
  48155. source: "./media/characters/zener/bipedal.svg",
  48156. extra: 874/805,
  48157. bottom: 109/983
  48158. }
  48159. },
  48160. quadrupedal: {
  48161. height: math.unit(4.64, "feet"),
  48162. name: "Quadrupedal",
  48163. image: {
  48164. source: "./media/characters/zener/quadrupedal.svg",
  48165. extra: 638/507,
  48166. bottom: 190/828
  48167. }
  48168. },
  48169. cock: {
  48170. height: math.unit(18, "inches"),
  48171. name: "Cock",
  48172. image: {
  48173. source: "./media/characters/zener/cock.svg"
  48174. }
  48175. },
  48176. },
  48177. [
  48178. {
  48179. name: "Normal",
  48180. height: math.unit(7, "feet"),
  48181. default: true
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48187. {
  48188. nude: {
  48189. height: math.unit(5 + 6/12, "feet"),
  48190. name: "Nude",
  48191. image: {
  48192. source: "./media/characters/charlie-dog/nude.svg",
  48193. extra: 768/734,
  48194. bottom: 26/794
  48195. }
  48196. },
  48197. dressed: {
  48198. height: math.unit(5 + 6/12, "feet"),
  48199. name: "Dressed",
  48200. image: {
  48201. source: "./media/characters/charlie-dog/dressed.svg",
  48202. extra: 768/734,
  48203. bottom: 26/794
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Normal",
  48210. height: math.unit(5 + 6/12, "feet"),
  48211. default: true
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(6 + 4/12, "feet"),
  48220. name: "Front",
  48221. image: {
  48222. source: "./media/characters/ir'istrasz/front.svg",
  48223. extra: 1014/977,
  48224. bottom: 65/1079
  48225. }
  48226. },
  48227. back: {
  48228. height: math.unit(6 + 4/12, "feet"),
  48229. name: "Back",
  48230. image: {
  48231. source: "./media/characters/ir'istrasz/back.svg",
  48232. extra: 1024/992,
  48233. bottom: 34/1058
  48234. }
  48235. },
  48236. },
  48237. [
  48238. {
  48239. name: "Normal",
  48240. height: math.unit(6 + 4/12, "feet"),
  48241. default: true
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48247. {
  48248. front: {
  48249. height: math.unit(5 + 8/12, "feet"),
  48250. name: "Front",
  48251. image: {
  48252. source: "./media/characters/dee-ditto/front.svg",
  48253. extra: 1874/1785,
  48254. bottom: 68/1942
  48255. }
  48256. },
  48257. back: {
  48258. height: math.unit(5 + 8/12, "feet"),
  48259. name: "Back",
  48260. image: {
  48261. source: "./media/characters/dee-ditto/back.svg",
  48262. extra: 1870/1783,
  48263. bottom: 77/1947
  48264. }
  48265. },
  48266. },
  48267. [
  48268. {
  48269. name: "Normal",
  48270. height: math.unit(5 + 8/12, "feet"),
  48271. default: true
  48272. },
  48273. ]
  48274. ))
  48275. characterMakers.push(() => makeCharacter(
  48276. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48277. {
  48278. front: {
  48279. height: math.unit(7 + 6/12, "feet"),
  48280. name: "Front",
  48281. image: {
  48282. source: "./media/characters/fey/front.svg",
  48283. extra: 995/979,
  48284. bottom: 30/1025
  48285. }
  48286. },
  48287. back: {
  48288. height: math.unit(7 + 6/12, "feet"),
  48289. name: "Back",
  48290. image: {
  48291. source: "./media/characters/fey/back.svg",
  48292. extra: 1079/1008,
  48293. bottom: 5/1084
  48294. }
  48295. },
  48296. dressed: {
  48297. height: math.unit(7 + 6/12, "feet"),
  48298. name: "Dressed",
  48299. image: {
  48300. source: "./media/characters/fey/dressed.svg",
  48301. extra: 995/979,
  48302. bottom: 30/1025
  48303. }
  48304. },
  48305. },
  48306. [
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(7 + 6/12, "feet"),
  48310. default: true
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48316. {
  48317. standing: {
  48318. height: math.unit(17, "feet"),
  48319. name: "Standing",
  48320. image: {
  48321. source: "./media/characters/aster/standing.svg",
  48322. extra: 1798/1598,
  48323. bottom: 117/1915
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(17, "feet"),
  48331. default: true
  48332. },
  48333. {
  48334. name: "Homewrecker",
  48335. height: math.unit(95, "feet")
  48336. },
  48337. {
  48338. name: "Planet Devourer",
  48339. height: math.unit(1008000, "miles")
  48340. },
  48341. ]
  48342. ))
  48343. characterMakers.push(() => makeCharacter(
  48344. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48345. {
  48346. front: {
  48347. height: math.unit(6 + 5/12, "feet"),
  48348. weight: math.unit(265, "lb"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/devon-childs/front.svg",
  48352. extra: 1795/1721,
  48353. bottom: 41/1836
  48354. }
  48355. },
  48356. side: {
  48357. height: math.unit(6 + 5/12, "feet"),
  48358. weight: math.unit(265, "lb"),
  48359. name: "Side",
  48360. image: {
  48361. source: "./media/characters/devon-childs/side.svg",
  48362. extra: 1812/1738,
  48363. bottom: 30/1842
  48364. }
  48365. },
  48366. back: {
  48367. height: math.unit(6 + 5/12, "feet"),
  48368. weight: math.unit(265, "lb"),
  48369. name: "Back",
  48370. image: {
  48371. source: "./media/characters/devon-childs/back.svg",
  48372. extra: 1808/1735,
  48373. bottom: 23/1831
  48374. }
  48375. },
  48376. hand: {
  48377. height: math.unit(1.464, "feet"),
  48378. name: "Hand",
  48379. image: {
  48380. source: "./media/characters/devon-childs/hand.svg"
  48381. }
  48382. },
  48383. foot: {
  48384. height: math.unit(1.6, "feet"),
  48385. name: "Foot",
  48386. image: {
  48387. source: "./media/characters/devon-childs/foot.svg"
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Micro",
  48394. height: math.unit(7, "cm")
  48395. },
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(6 + 5/12, "feet"),
  48399. default: true
  48400. },
  48401. {
  48402. name: "Macro",
  48403. height: math.unit(154, "feet")
  48404. },
  48405. ]
  48406. ))
  48407. characterMakers.push(() => makeCharacter(
  48408. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48409. {
  48410. front: {
  48411. height: math.unit(6, "feet"),
  48412. weight: math.unit(180, "lb"),
  48413. name: "Front",
  48414. image: {
  48415. source: "./media/characters/lydemox-vir/front.svg",
  48416. extra: 1632/1435,
  48417. bottom: 58/1690
  48418. }
  48419. },
  48420. frontSFW: {
  48421. height: math.unit(6, "feet"),
  48422. weight: math.unit(180, "lb"),
  48423. name: "Front (SFW)",
  48424. image: {
  48425. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48426. extra: 1632/1435,
  48427. bottom: 58/1690
  48428. }
  48429. },
  48430. back: {
  48431. height: math.unit(6, "feet"),
  48432. weight: math.unit(180, "lb"),
  48433. name: "Back",
  48434. image: {
  48435. source: "./media/characters/lydemox-vir/back.svg",
  48436. extra: 1593/1408,
  48437. bottom: 31/1624
  48438. }
  48439. },
  48440. paw: {
  48441. height: math.unit(1.85, "feet"),
  48442. name: "Paw",
  48443. image: {
  48444. source: "./media/characters/lydemox-vir/paw.svg"
  48445. }
  48446. },
  48447. dick: {
  48448. height: math.unit(1.8, "feet"),
  48449. name: "Dick",
  48450. image: {
  48451. source: "./media/characters/lydemox-vir/dick.svg"
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Macro",
  48458. height: math.unit(100, "feet"),
  48459. default: true
  48460. },
  48461. {
  48462. name: "Teramacro",
  48463. height: math.unit(1, "earth")
  48464. },
  48465. {
  48466. name: "Planetary",
  48467. height: math.unit(20, "earths")
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(15 + 8/12, "feet"),
  48476. weight: math.unit(1237, "kg"),
  48477. name: "Front",
  48478. image: {
  48479. source: "./media/characters/mia/front.svg",
  48480. extra: 1573/1446,
  48481. bottom: 58/1631
  48482. }
  48483. },
  48484. },
  48485. [
  48486. {
  48487. name: "Small",
  48488. height: math.unit(9 + 5/12, "feet")
  48489. },
  48490. {
  48491. name: "Normal",
  48492. height: math.unit(15 + 8/12, "feet"),
  48493. default: true
  48494. },
  48495. ]
  48496. ))
  48497. characterMakers.push(() => makeCharacter(
  48498. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48499. {
  48500. front: {
  48501. height: math.unit(10 + 6/12, "feet"),
  48502. weight: math.unit(1.3, "tons"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/mr-graves/front.svg",
  48506. extra: 1779/1695,
  48507. bottom: 198/1977
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Normal",
  48514. height: math.unit(10 + 6 /12, "feet"),
  48515. default: true
  48516. },
  48517. ]
  48518. ))
  48519. characterMakers.push(() => makeCharacter(
  48520. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48521. {
  48522. dressedFront: {
  48523. height: math.unit(5 + 8/12, "feet"),
  48524. weight: math.unit(125, "lb"),
  48525. name: "Dressed (Front)",
  48526. image: {
  48527. source: "./media/characters/jess/dressed-front.svg",
  48528. extra: 1176/1152,
  48529. bottom: 42/1218
  48530. }
  48531. },
  48532. dressedSide: {
  48533. height: math.unit(5 + 8/12, "feet"),
  48534. weight: math.unit(125, "lb"),
  48535. name: "Dressed (Side)",
  48536. image: {
  48537. source: "./media/characters/jess/dressed-side.svg",
  48538. extra: 1204/1190,
  48539. bottom: 6/1210
  48540. }
  48541. },
  48542. nudeFront: {
  48543. height: math.unit(5 + 8/12, "feet"),
  48544. weight: math.unit(125, "lb"),
  48545. name: "Nude (Front)",
  48546. image: {
  48547. source: "./media/characters/jess/nude-front.svg",
  48548. extra: 1176/1152,
  48549. bottom: 42/1218
  48550. }
  48551. },
  48552. nudeSide: {
  48553. height: math.unit(5 + 8/12, "feet"),
  48554. weight: math.unit(125, "lb"),
  48555. name: "Nude (Side)",
  48556. image: {
  48557. source: "./media/characters/jess/nude-side.svg",
  48558. extra: 1204/1190,
  48559. bottom: 6/1210
  48560. }
  48561. },
  48562. organsFront: {
  48563. height: math.unit(2.83799342105, "feet"),
  48564. name: "Organs (Front)",
  48565. image: {
  48566. source: "./media/characters/jess/organs-front.svg"
  48567. }
  48568. },
  48569. organsSide: {
  48570. height: math.unit(2.64225290474, "feet"),
  48571. name: "Organs (Side)",
  48572. image: {
  48573. source: "./media/characters/jess/organs-side.svg"
  48574. }
  48575. },
  48576. digestiveTractFront: {
  48577. height: math.unit(2.8106580871, "feet"),
  48578. name: "Digestive Tract (Front)",
  48579. image: {
  48580. source: "./media/characters/jess/digestive-tract-front.svg"
  48581. }
  48582. },
  48583. digestiveTractSide: {
  48584. height: math.unit(2.54365045014, "feet"),
  48585. name: "Digestive Tract (Side)",
  48586. image: {
  48587. source: "./media/characters/jess/digestive-tract-side.svg"
  48588. }
  48589. },
  48590. respiratorySystemFront: {
  48591. height: math.unit(1.11196233456, "feet"),
  48592. name: "Respiratory System (Front)",
  48593. image: {
  48594. source: "./media/characters/jess/respiratory-system-front.svg"
  48595. }
  48596. },
  48597. respiratorySystemSide: {
  48598. height: math.unit(0.89327966297, "feet"),
  48599. name: "Respiratory System (Side)",
  48600. image: {
  48601. source: "./media/characters/jess/respiratory-system-side.svg"
  48602. }
  48603. },
  48604. urinaryTractFront: {
  48605. height: math.unit(1.16126356186, "feet"),
  48606. name: "Urinary Tract (Front)",
  48607. image: {
  48608. source: "./media/characters/jess/urinary-tract-front.svg"
  48609. }
  48610. },
  48611. urinaryTractSide: {
  48612. height: math.unit(1.20910039627, "feet"),
  48613. name: "Urinary Tract (Side)",
  48614. image: {
  48615. source: "./media/characters/jess/urinary-tract-side.svg"
  48616. }
  48617. },
  48618. reproductiveOrgansFront: {
  48619. height: math.unit(0.48422591566, "feet"),
  48620. name: "Reproductive Organs (Front)",
  48621. image: {
  48622. source: "./media/characters/jess/reproductive-organs-front.svg"
  48623. }
  48624. },
  48625. reproductiveOrgansSide: {
  48626. height: math.unit(0.61553314481, "feet"),
  48627. name: "Reproductive Organs (Side)",
  48628. image: {
  48629. source: "./media/characters/jess/reproductive-organs-side.svg"
  48630. }
  48631. },
  48632. breastsFront: {
  48633. height: math.unit(0.47690395121, "feet"),
  48634. name: "Breasts (Front)",
  48635. image: {
  48636. source: "./media/characters/jess/breasts-front.svg"
  48637. }
  48638. },
  48639. breastsSide: {
  48640. height: math.unit(0.30556998307, "feet"),
  48641. name: "Breasts (Side)",
  48642. image: {
  48643. source: "./media/characters/jess/breasts-side.svg"
  48644. }
  48645. },
  48646. heartFront: {
  48647. height: math.unit(0.53011022622, "feet"),
  48648. name: "Heart (Front)",
  48649. image: {
  48650. source: "./media/characters/jess/heart-front.svg"
  48651. }
  48652. },
  48653. heartSide: {
  48654. height: math.unit(0.51790695213, "feet"),
  48655. name: "Heart (Side)",
  48656. image: {
  48657. source: "./media/characters/jess/heart-side.svg"
  48658. }
  48659. },
  48660. earsAndNoseFront: {
  48661. height: math.unit(0.29385483995, "feet"),
  48662. name: "Ears and Nose (Front)",
  48663. image: {
  48664. source: "./media/characters/jess/ears-and-nose-front.svg"
  48665. }
  48666. },
  48667. earsAndNoseSide: {
  48668. height: math.unit(0.18109658741, "feet"),
  48669. name: "Ears and Nose (Side)",
  48670. image: {
  48671. source: "./media/characters/jess/ears-and-nose-side.svg"
  48672. }
  48673. },
  48674. },
  48675. [
  48676. {
  48677. name: "Normal",
  48678. height: math.unit(5 + 8/12, "feet"),
  48679. default: true
  48680. },
  48681. ]
  48682. ))
  48683. characterMakers.push(() => makeCharacter(
  48684. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48685. {
  48686. front: {
  48687. height: math.unit(6, "feet"),
  48688. weight: math.unit(6.64467e-7, "grams"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/wimpering/front.svg",
  48692. extra: 597/587,
  48693. bottom: 34/631
  48694. }
  48695. },
  48696. },
  48697. [
  48698. {
  48699. name: "Micro",
  48700. height: math.unit(0.4, "mm"),
  48701. default: true
  48702. },
  48703. ]
  48704. ))
  48705. characterMakers.push(() => makeCharacter(
  48706. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48707. {
  48708. front: {
  48709. height: math.unit(5 + 2/12, "feet"),
  48710. weight: math.unit(110, "lb"),
  48711. name: "Front",
  48712. image: {
  48713. source: "./media/characters/keltre/front.svg",
  48714. extra: 1099/1057,
  48715. bottom: 22/1121
  48716. }
  48717. },
  48718. back: {
  48719. height: math.unit(5 + 2/12, "feet"),
  48720. weight: math.unit(110, "lb"),
  48721. name: "Back",
  48722. image: {
  48723. source: "./media/characters/keltre/back.svg",
  48724. extra: 1095/1053,
  48725. bottom: 17/1112
  48726. }
  48727. },
  48728. dressed: {
  48729. height: math.unit(5 + 2/12, "feet"),
  48730. weight: math.unit(110, "lb"),
  48731. name: "Dressed",
  48732. image: {
  48733. source: "./media/characters/keltre/dressed.svg",
  48734. extra: 1099/1057,
  48735. bottom: 22/1121
  48736. }
  48737. },
  48738. winter: {
  48739. height: math.unit(5 + 2/12, "feet"),
  48740. weight: math.unit(110, "lb"),
  48741. name: "Winter",
  48742. image: {
  48743. source: "./media/characters/keltre/winter.svg",
  48744. extra: 1099/1057,
  48745. bottom: 22/1121
  48746. }
  48747. },
  48748. head: {
  48749. height: math.unit(1.61 * 0.86, "feet"),
  48750. name: "Head",
  48751. image: {
  48752. source: "./media/characters/keltre/head.svg",
  48753. extra: 534/421,
  48754. bottom: 0/534
  48755. }
  48756. },
  48757. hand: {
  48758. height: math.unit(1.3 * 0.86, "feet"),
  48759. name: "Hand",
  48760. image: {
  48761. source: "./media/characters/keltre/hand.svg"
  48762. }
  48763. },
  48764. foot: {
  48765. height: math.unit(1.8 * 0.86, "feet"),
  48766. name: "Foot",
  48767. image: {
  48768. source: "./media/characters/keltre/foot.svg"
  48769. }
  48770. },
  48771. },
  48772. [
  48773. {
  48774. name: "Fine",
  48775. height: math.unit(1, "inch")
  48776. },
  48777. {
  48778. name: "Dimnutive",
  48779. height: math.unit(4, "inches")
  48780. },
  48781. {
  48782. name: "Tiny",
  48783. height: math.unit(1, "foot")
  48784. },
  48785. {
  48786. name: "Small",
  48787. height: math.unit(3, "feet")
  48788. },
  48789. {
  48790. name: "Normal",
  48791. height: math.unit(5 + 2/12, "feet"),
  48792. default: true
  48793. },
  48794. ]
  48795. ))
  48796. characterMakers.push(() => makeCharacter(
  48797. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48798. {
  48799. front: {
  48800. height: math.unit(6 + 2/12, "feet"),
  48801. name: "Front",
  48802. image: {
  48803. source: "./media/characters/nox/front.svg",
  48804. extra: 1917/1830,
  48805. bottom: 74/1991
  48806. }
  48807. },
  48808. back: {
  48809. height: math.unit(6 + 2/12, "feet"),
  48810. name: "Back",
  48811. image: {
  48812. source: "./media/characters/nox/back.svg",
  48813. extra: 1896/1815,
  48814. bottom: 21/1917
  48815. }
  48816. },
  48817. head: {
  48818. height: math.unit(1.1, "feet"),
  48819. name: "Head",
  48820. image: {
  48821. source: "./media/characters/nox/head.svg",
  48822. extra: 874/704,
  48823. bottom: 0/874
  48824. }
  48825. },
  48826. tattoo: {
  48827. height: math.unit(0.729, "feet"),
  48828. name: "Tattoo",
  48829. image: {
  48830. source: "./media/characters/nox/tattoo.svg"
  48831. }
  48832. },
  48833. },
  48834. [
  48835. {
  48836. name: "Normal",
  48837. height: math.unit(6 + 2/12, "feet")
  48838. },
  48839. {
  48840. name: "Gigamacro",
  48841. height: math.unit(2, "earths"),
  48842. default: true
  48843. },
  48844. {
  48845. name: "Cosmic",
  48846. height: math.unit(867, "yottameters")
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(6, "feet"),
  48855. weight: math.unit(150, "lb"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/caspian/front.svg",
  48859. extra: 1443/1359,
  48860. bottom: 0/1443
  48861. }
  48862. },
  48863. back: {
  48864. height: math.unit(6, "feet"),
  48865. weight: math.unit(150, "lb"),
  48866. name: "Back",
  48867. image: {
  48868. source: "./media/characters/caspian/back.svg",
  48869. extra: 1379/1309,
  48870. bottom: 0/1379
  48871. }
  48872. },
  48873. head: {
  48874. height: math.unit(0.9, "feet"),
  48875. name: "Head",
  48876. image: {
  48877. source: "./media/characters/caspian/head.svg",
  48878. extra: 692/492,
  48879. bottom: 0/692
  48880. }
  48881. },
  48882. headAlt: {
  48883. height: math.unit(0.95, "feet"),
  48884. name: "Head (Alt)",
  48885. image: {
  48886. source: "./media/characters/caspian/head-alt.svg",
  48887. extra: 668/508,
  48888. bottom: 0/668
  48889. }
  48890. },
  48891. hand: {
  48892. height: math.unit(0.8, "feet"),
  48893. name: "Hand",
  48894. image: {
  48895. source: "./media/characters/caspian/hand.svg"
  48896. }
  48897. },
  48898. paw: {
  48899. height: math.unit(0.95, "feet"),
  48900. name: "Paw",
  48901. image: {
  48902. source: "./media/characters/caspian/paw.svg"
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Normal",
  48909. height: math.unit(162, "feet"),
  48910. default: true
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(6, "feet"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/myra-aisling/front.svg",
  48922. extra: 1268/1166,
  48923. bottom: 73/1341
  48924. }
  48925. },
  48926. back: {
  48927. height: math.unit(6, "feet"),
  48928. name: "Back",
  48929. image: {
  48930. source: "./media/characters/myra-aisling/back.svg",
  48931. extra: 1249/1149,
  48932. bottom: 79/1328
  48933. }
  48934. },
  48935. dressed: {
  48936. height: math.unit(6, "feet"),
  48937. name: "Dressed",
  48938. image: {
  48939. source: "./media/characters/myra-aisling/dressed.svg",
  48940. extra: 1290/1189,
  48941. bottom: 47/1337
  48942. }
  48943. },
  48944. hand: {
  48945. height: math.unit(1.1, "feet"),
  48946. name: "Hand",
  48947. image: {
  48948. source: "./media/characters/myra-aisling/hand.svg"
  48949. }
  48950. },
  48951. paw: {
  48952. height: math.unit(1.23, "feet"),
  48953. name: "Paw",
  48954. image: {
  48955. source: "./media/characters/myra-aisling/paw.svg"
  48956. }
  48957. },
  48958. },
  48959. [
  48960. {
  48961. name: "Normal",
  48962. height: math.unit(160, "feet"),
  48963. default: true
  48964. },
  48965. ]
  48966. ))
  48967. characterMakers.push(() => makeCharacter(
  48968. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48969. {
  48970. front: {
  48971. height: math.unit(6, "feet"),
  48972. name: "Front",
  48973. image: {
  48974. source: "./media/characters/tenley-sidero/front.svg",
  48975. extra: 1365/1276,
  48976. bottom: 47/1412
  48977. }
  48978. },
  48979. back: {
  48980. height: math.unit(6, "feet"),
  48981. name: "Back",
  48982. image: {
  48983. source: "./media/characters/tenley-sidero/back.svg",
  48984. extra: 1383/1283,
  48985. bottom: 35/1418
  48986. }
  48987. },
  48988. dressed: {
  48989. height: math.unit(6, "feet"),
  48990. name: "Dressed",
  48991. image: {
  48992. source: "./media/characters/tenley-sidero/dressed.svg",
  48993. extra: 1364/1275,
  48994. bottom: 42/1406
  48995. }
  48996. },
  48997. head: {
  48998. height: math.unit(1.47, "feet"),
  48999. name: "Head",
  49000. image: {
  49001. source: "./media/characters/tenley-sidero/head.svg",
  49002. extra: 610/490,
  49003. bottom: 0/610
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(154, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49017. {
  49018. front: {
  49019. height: math.unit(5, "inches"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/mallory/front.svg",
  49023. extra: 1919/1678,
  49024. bottom: 29/1948
  49025. }
  49026. },
  49027. hand: {
  49028. height: math.unit(0.73, "inches"),
  49029. name: "Hand",
  49030. image: {
  49031. source: "./media/characters/mallory/hand.svg"
  49032. }
  49033. },
  49034. paw: {
  49035. height: math.unit(0.68, "inches"),
  49036. name: "Paw",
  49037. image: {
  49038. source: "./media/characters/mallory/paw.svg"
  49039. }
  49040. },
  49041. },
  49042. [
  49043. {
  49044. name: "Small",
  49045. height: math.unit(5, "inches"),
  49046. default: true
  49047. },
  49048. ]
  49049. ))
  49050. characterMakers.push(() => makeCharacter(
  49051. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49052. {
  49053. naked: {
  49054. height: math.unit(6, "feet"),
  49055. name: "Naked",
  49056. image: {
  49057. source: "./media/characters/mab/naked.svg",
  49058. extra: 1855/1757,
  49059. bottom: 208/2063
  49060. }
  49061. },
  49062. outside: {
  49063. height: math.unit(6, "feet"),
  49064. name: "Outside",
  49065. image: {
  49066. source: "./media/characters/mab/outside.svg",
  49067. extra: 1855/1757,
  49068. bottom: 208/2063
  49069. }
  49070. },
  49071. party: {
  49072. height: math.unit(6, "feet"),
  49073. name: "Party",
  49074. image: {
  49075. source: "./media/characters/mab/party.svg",
  49076. extra: 1855/1757,
  49077. bottom: 208/2063
  49078. }
  49079. },
  49080. },
  49081. [
  49082. {
  49083. name: "Normal",
  49084. height: math.unit(165, "feet"),
  49085. default: true
  49086. },
  49087. ]
  49088. ))
  49089. characterMakers.push(() => makeCharacter(
  49090. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49091. {
  49092. front: {
  49093. height: math.unit(12, "feet"),
  49094. weight: math.unit(4000, "lb"),
  49095. name: "Front",
  49096. image: {
  49097. source: "./media/characters/winter/front.svg",
  49098. extra: 1286/943,
  49099. bottom: 112/1398
  49100. }
  49101. },
  49102. frontNsfw: {
  49103. height: math.unit(12, "feet"),
  49104. weight: math.unit(4000, "lb"),
  49105. name: "Front (NSFW)",
  49106. image: {
  49107. source: "./media/characters/winter/front-nsfw.svg",
  49108. extra: 1286/943,
  49109. bottom: 112/1398
  49110. }
  49111. },
  49112. dick: {
  49113. height: math.unit(3.79, "feet"),
  49114. name: "Dick",
  49115. image: {
  49116. source: "./media/characters/winter/dick.svg"
  49117. }
  49118. },
  49119. },
  49120. [
  49121. {
  49122. name: "Big",
  49123. height: math.unit(12, "feet"),
  49124. default: true
  49125. },
  49126. ]
  49127. ))
  49128. characterMakers.push(() => makeCharacter(
  49129. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49130. {
  49131. front: {
  49132. height: math.unit(4.1, "inches"),
  49133. name: "Front",
  49134. image: {
  49135. source: "./media/characters/alto/front.svg",
  49136. extra: 736/627,
  49137. bottom: 90/826
  49138. }
  49139. },
  49140. },
  49141. [
  49142. {
  49143. name: "Normal",
  49144. height: math.unit(4.1, "inches"),
  49145. default: true
  49146. },
  49147. ]
  49148. ))
  49149. characterMakers.push(() => makeCharacter(
  49150. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49151. {
  49152. sitting: {
  49153. height: math.unit(3, "feet"),
  49154. name: "Sitting",
  49155. image: {
  49156. source: "./media/characters/ratstrid-v/sitting.svg",
  49157. extra: 355/310,
  49158. bottom: 136/491
  49159. }
  49160. },
  49161. },
  49162. [
  49163. {
  49164. name: "Normal",
  49165. height: math.unit(3, "feet"),
  49166. default: true
  49167. },
  49168. ]
  49169. ))
  49170. characterMakers.push(() => makeCharacter(
  49171. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49172. {
  49173. back: {
  49174. height: math.unit(6, "feet"),
  49175. weight: math.unit(350, "lb"),
  49176. name: "Back",
  49177. image: {
  49178. source: "./media/characters/siz/back.svg",
  49179. extra: 1449/1274,
  49180. bottom: 13/1462
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Over-Overcompressed",
  49187. height: math.unit(8, "feet")
  49188. },
  49189. {
  49190. name: "Overcompressed",
  49191. height: math.unit(32, "feet")
  49192. },
  49193. {
  49194. name: "Compressed",
  49195. height: math.unit(128, "feet"),
  49196. default: true
  49197. },
  49198. {
  49199. name: "Half-Compressed",
  49200. height: math.unit(512, "feet")
  49201. },
  49202. {
  49203. name: "Quarter-Compressed",
  49204. height: math.unit(2048, "feet")
  49205. },
  49206. {
  49207. name: "Uncompressed?",
  49208. height: math.unit(8192, "feet")
  49209. },
  49210. ]
  49211. ))
  49212. characterMakers.push(() => makeCharacter(
  49213. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49214. {
  49215. front: {
  49216. height: math.unit(5 + 9/12, "feet"),
  49217. weight: math.unit(150, "lb"),
  49218. name: "Front",
  49219. image: {
  49220. source: "./media/characters/ven/front.svg",
  49221. extra: 1372/1320,
  49222. bottom: 73/1445
  49223. }
  49224. },
  49225. side: {
  49226. height: math.unit(5 + 9/12, "feet"),
  49227. weight: math.unit(1150, "lb"),
  49228. name: "Side",
  49229. image: {
  49230. source: "./media/characters/ven/side.svg",
  49231. extra: 1119/1070,
  49232. bottom: 42/1161
  49233. },
  49234. default: true
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Normal",
  49240. height: math.unit(5 + 9/12, "feet"),
  49241. default: true
  49242. },
  49243. ]
  49244. ))
  49245. characterMakers.push(() => makeCharacter(
  49246. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49247. {
  49248. front: {
  49249. height: math.unit(12, "feet"),
  49250. weight: math.unit(1000, "kg"),
  49251. name: "Front",
  49252. image: {
  49253. source: "./media/characters/maple/front.svg",
  49254. extra: 1193/1081,
  49255. bottom: 22/1215
  49256. }
  49257. },
  49258. },
  49259. [
  49260. {
  49261. name: "Compressed",
  49262. height: math.unit(7, "feet")
  49263. },
  49264. {
  49265. name: "Normal",
  49266. height: math.unit(12, "feet"),
  49267. default: true
  49268. },
  49269. ]
  49270. ))
  49271. characterMakers.push(() => makeCharacter(
  49272. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49273. {
  49274. front: {
  49275. height: math.unit(9, "feet"),
  49276. weight: math.unit(1500, "lb"),
  49277. name: "Front",
  49278. image: {
  49279. source: "./media/characters/nora/front.svg",
  49280. extra: 1348/1286,
  49281. bottom: 218/1566
  49282. }
  49283. },
  49284. erect: {
  49285. height: math.unit(9, "feet"),
  49286. weight: math.unit(11500, "lb"),
  49287. name: "Erect",
  49288. image: {
  49289. source: "./media/characters/nora/erect.svg",
  49290. extra: 1488/1433,
  49291. bottom: 133/1621
  49292. }
  49293. },
  49294. },
  49295. [
  49296. {
  49297. name: "Normal",
  49298. height: math.unit(9, "feet"),
  49299. default: true
  49300. },
  49301. ]
  49302. ))
  49303. characterMakers.push(() => makeCharacter(
  49304. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49305. {
  49306. front: {
  49307. height: math.unit(25, "feet"),
  49308. weight: math.unit(27500, "lb"),
  49309. name: "Front",
  49310. image: {
  49311. source: "./media/characters/north-caudin/front.svg",
  49312. extra: 1184/1082,
  49313. bottom: 23/1207
  49314. }
  49315. },
  49316. },
  49317. [
  49318. {
  49319. name: "Compressed",
  49320. height: math.unit(10, "feet")
  49321. },
  49322. {
  49323. name: "Normal",
  49324. height: math.unit(25, "feet"),
  49325. default: true
  49326. },
  49327. ]
  49328. ))
  49329. characterMakers.push(() => makeCharacter(
  49330. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49331. {
  49332. front: {
  49333. height: math.unit(9, "feet"),
  49334. weight: math.unit(1250, "lb"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/merrian/front.svg",
  49338. extra: 2393/2304,
  49339. bottom: 40/2433
  49340. }
  49341. },
  49342. },
  49343. [
  49344. {
  49345. name: "Normal",
  49346. height: math.unit(9, "feet"),
  49347. default: true
  49348. },
  49349. ]
  49350. ))
  49351. characterMakers.push(() => makeCharacter(
  49352. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49353. {
  49354. front: {
  49355. height: math.unit(9, "feet"),
  49356. weight: math.unit(1000, "lb"),
  49357. name: "Front",
  49358. image: {
  49359. source: "./media/characters/hazel/front.svg",
  49360. extra: 2351/2298,
  49361. bottom: 38/2389
  49362. }
  49363. },
  49364. },
  49365. [
  49366. {
  49367. name: "Normal",
  49368. height: math.unit(9, "feet"),
  49369. default: true
  49370. },
  49371. ]
  49372. ))
  49373. characterMakers.push(() => makeCharacter(
  49374. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49375. {
  49376. front: {
  49377. height: math.unit(13, "feet"),
  49378. weight: math.unit(3200, "lb"),
  49379. name: "Front",
  49380. image: {
  49381. source: "./media/characters/emma/front.svg",
  49382. extra: 2263/2029,
  49383. bottom: 68/2331
  49384. }
  49385. },
  49386. },
  49387. [
  49388. {
  49389. name: "Normal",
  49390. height: math.unit(13, "feet"),
  49391. default: true
  49392. },
  49393. ]
  49394. ))
  49395. characterMakers.push(() => makeCharacter(
  49396. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49397. {
  49398. front: {
  49399. height: math.unit(11 + 9/12, "feet"),
  49400. weight: math.unit(2500, "lb"),
  49401. name: "Front",
  49402. image: {
  49403. source: "./media/characters/ilumina/front.svg",
  49404. extra: 2248/2209,
  49405. bottom: 164/2412
  49406. }
  49407. },
  49408. },
  49409. [
  49410. {
  49411. name: "Normal",
  49412. height: math.unit(11 + 9/12, "feet"),
  49413. default: true
  49414. },
  49415. ]
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49419. {
  49420. front: {
  49421. height: math.unit(8 + 10/12, "feet"),
  49422. weight: math.unit(1350, "lb"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/moonshine/front.svg",
  49426. extra: 2395/2288,
  49427. bottom: 40/2435
  49428. }
  49429. },
  49430. },
  49431. [
  49432. {
  49433. name: "Normal",
  49434. height: math.unit(8 + 10/12, "feet"),
  49435. default: true
  49436. },
  49437. ]
  49438. ))
  49439. characterMakers.push(() => makeCharacter(
  49440. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49441. {
  49442. front: {
  49443. height: math.unit(14, "feet"),
  49444. weight: math.unit(3400, "lb"),
  49445. name: "Front",
  49446. image: {
  49447. source: "./media/characters/aletia/front.svg",
  49448. extra: 1185/1052,
  49449. bottom: 21/1206
  49450. }
  49451. },
  49452. },
  49453. [
  49454. {
  49455. name: "Compressed",
  49456. height: math.unit(8, "feet")
  49457. },
  49458. {
  49459. name: "Normal",
  49460. height: math.unit(14, "feet"),
  49461. default: true
  49462. },
  49463. ]
  49464. ))
  49465. characterMakers.push(() => makeCharacter(
  49466. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49467. {
  49468. front: {
  49469. height: math.unit(17, "feet"),
  49470. weight: math.unit(6500, "lb"),
  49471. name: "Front",
  49472. image: {
  49473. source: "./media/characters/deidra/front.svg",
  49474. extra: 1201/1081,
  49475. bottom: 16/1217
  49476. }
  49477. },
  49478. },
  49479. [
  49480. {
  49481. name: "Compressed",
  49482. height: math.unit(9 + 6/12, "feet")
  49483. },
  49484. {
  49485. name: "Normal",
  49486. height: math.unit(17, "feet"),
  49487. default: true
  49488. },
  49489. ]
  49490. ))
  49491. characterMakers.push(() => makeCharacter(
  49492. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49493. {
  49494. front: {
  49495. height: math.unit(7 + 4/12, "feet"),
  49496. weight: math.unit(280, "lb"),
  49497. name: "Front",
  49498. image: {
  49499. source: "./media/characters/freki-yrmori/front.svg",
  49500. extra: 1286/1182,
  49501. bottom: 29/1315
  49502. }
  49503. },
  49504. maw: {
  49505. height: math.unit(0.9, "feet"),
  49506. name: "Maw",
  49507. image: {
  49508. source: "./media/characters/freki-yrmori/maw.svg"
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Normal",
  49515. height: math.unit(7 + 4/12, "feet"),
  49516. default: true
  49517. },
  49518. {
  49519. name: "Macro",
  49520. height: math.unit(38.5, "meters")
  49521. },
  49522. ]
  49523. ))
  49524. characterMakers.push(() => makeCharacter(
  49525. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49526. {
  49527. side: {
  49528. height: math.unit(47.2, "meters"),
  49529. weight: math.unit(10000, "tons"),
  49530. name: "Side",
  49531. image: {
  49532. source: "./media/characters/aetherios/side.svg",
  49533. extra: 2363/642,
  49534. bottom: 221/2584
  49535. }
  49536. },
  49537. top: {
  49538. height: math.unit(240, "meters"),
  49539. weight: math.unit(10000, "tons"),
  49540. name: "Top",
  49541. image: {
  49542. source: "./media/characters/aetherios/top.svg"
  49543. }
  49544. },
  49545. bottom: {
  49546. height: math.unit(240, "meters"),
  49547. weight: math.unit(10000, "tons"),
  49548. name: "Bottom",
  49549. image: {
  49550. source: "./media/characters/aetherios/bottom.svg"
  49551. }
  49552. },
  49553. head: {
  49554. height: math.unit(38.6, "meters"),
  49555. name: "Head",
  49556. image: {
  49557. source: "./media/characters/aetherios/head.svg",
  49558. extra: 1335/1112,
  49559. bottom: 0/1335
  49560. }
  49561. },
  49562. front: {
  49563. height: math.unit(29, "meters"),
  49564. name: "Front",
  49565. image: {
  49566. source: "./media/characters/aetherios/front.svg",
  49567. extra: 1266/953,
  49568. bottom: 158/1424
  49569. }
  49570. },
  49571. maw: {
  49572. height: math.unit(16.37, "meters"),
  49573. name: "Maw",
  49574. image: {
  49575. source: "./media/characters/aetherios/maw.svg",
  49576. extra: 748/637,
  49577. bottom: 0/748
  49578. },
  49579. extraAttributes: {
  49580. preyCapacity: {
  49581. name: "Capacity",
  49582. power: 3,
  49583. type: "volume",
  49584. base: math.unit(1000, "people")
  49585. },
  49586. tongueSize: {
  49587. name: "Tongue Size",
  49588. power: 2,
  49589. type: "area",
  49590. base: math.unit(21, "m^2")
  49591. }
  49592. }
  49593. },
  49594. forepaw: {
  49595. height: math.unit(18, "meters"),
  49596. name: "Forepaw",
  49597. image: {
  49598. source: "./media/characters/aetherios/forepaw.svg"
  49599. }
  49600. },
  49601. hindpaw: {
  49602. height: math.unit(23, "meters"),
  49603. name: "Hindpaw",
  49604. image: {
  49605. source: "./media/characters/aetherios/hindpaw.svg"
  49606. }
  49607. },
  49608. genitals: {
  49609. height: math.unit(42, "meters"),
  49610. name: "Genitals",
  49611. image: {
  49612. source: "./media/characters/aetherios/genitals.svg"
  49613. }
  49614. },
  49615. },
  49616. [
  49617. {
  49618. name: "Normal",
  49619. height: math.unit(47.2, "meters"),
  49620. default: true
  49621. },
  49622. {
  49623. name: "Macro",
  49624. height: math.unit(160, "meters")
  49625. },
  49626. {
  49627. name: "Mega",
  49628. height: math.unit(1.87, "km")
  49629. },
  49630. {
  49631. name: "Giga",
  49632. height: math.unit(40000, "km")
  49633. },
  49634. {
  49635. name: "Stellar",
  49636. height: math.unit(158000000, "km")
  49637. },
  49638. {
  49639. name: "Cosmic",
  49640. height: math.unit(9.46e12, "km")
  49641. },
  49642. ]
  49643. ))
  49644. characterMakers.push(() => makeCharacter(
  49645. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49646. {
  49647. front: {
  49648. height: math.unit(5 + 4/12, "feet"),
  49649. weight: math.unit(80, "lb"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/mizu-gieeg/front.svg",
  49653. extra: 850/709,
  49654. bottom: 52/902
  49655. }
  49656. },
  49657. back: {
  49658. height: math.unit(5 + 4/12, "feet"),
  49659. weight: math.unit(80, "lb"),
  49660. name: "Back",
  49661. image: {
  49662. source: "./media/characters/mizu-gieeg/back.svg",
  49663. extra: 882/745,
  49664. bottom: 25/907
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(5 + 4/12, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Ros", species: ["ringtail"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(6, "feet"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/ros/front.svg",
  49684. extra: 1430/1280,
  49685. bottom: 37/1467
  49686. }
  49687. },
  49688. back: {
  49689. height: math.unit(6, "feet"),
  49690. name: "Back",
  49691. image: {
  49692. source: "./media/characters/ros/back.svg",
  49693. extra: 1491/1296,
  49694. bottom: 23/1514
  49695. }
  49696. },
  49697. ear: {
  49698. height: math.unit(1.26, "feet"),
  49699. name: "Ear",
  49700. image: {
  49701. source: "./media/characters/ros/ear.svg"
  49702. }
  49703. },
  49704. },
  49705. [
  49706. {
  49707. name: "Normal",
  49708. height: math.unit(150, "feet"),
  49709. default: true
  49710. },
  49711. ]
  49712. ))
  49713. //characters
  49714. function makeCharacters() {
  49715. const results = [];
  49716. characterMakers.forEach(character => {
  49717. results.push(character());
  49718. });
  49719. return results;
  49720. }