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

50848 строки
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. }
  1951. //species
  1952. function getSpeciesInfo(speciesList) {
  1953. let result = new Set();
  1954. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1955. result.add(entry)
  1956. });
  1957. return Array.from(result);
  1958. };
  1959. function getSpeciesInfoHelper(species) {
  1960. if (!speciesData[species]) {
  1961. console.warn(species + " doesn't exist");
  1962. return [];
  1963. }
  1964. if (speciesData[species].parents) {
  1965. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1966. } else {
  1967. return [species];
  1968. }
  1969. }
  1970. characterMakers.push(() => makeCharacter(
  1971. {
  1972. name: "Fen",
  1973. species: ["crux"],
  1974. description: {
  1975. title: "Bio",
  1976. text: "Very furry. Sheds on everything."
  1977. },
  1978. tags: [
  1979. "anthro",
  1980. "goo"
  1981. ]
  1982. },
  1983. {
  1984. front: {
  1985. height: math.unit(12, "feet"),
  1986. weight: math.unit(2400, "lb"),
  1987. name: "Front",
  1988. image: {
  1989. source: "./media/characters/fen/front.svg",
  1990. extra: 1804/1562,
  1991. bottom: 205/2009
  1992. }
  1993. },
  1994. diving: {
  1995. height: math.unit(4.9, "meters"),
  1996. weight: math.unit(2400, "lb"),
  1997. name: "Diving",
  1998. image: {
  1999. source: "./media/characters/fen/diving.svg"
  2000. }
  2001. },
  2002. goo: {
  2003. height: math.unit(12, "feet"),
  2004. weight: math.unit(3600, "lb"),
  2005. volume: math.unit(1000, "liters"),
  2006. capacity: math.unit(6, "people"),
  2007. name: "Goo",
  2008. image: {
  2009. source: "./media/characters/fen/goo.svg",
  2010. extra: 1307/1071,
  2011. bottom: 134/1441
  2012. }
  2013. },
  2014. maw: {
  2015. height: math.unit(5.03, "feet"),
  2016. name: "Maw",
  2017. image: {
  2018. source: "./media/characters/fen/maw.svg"
  2019. }
  2020. },
  2021. gooCeiling: {
  2022. height: math.unit(6.6, "feet"),
  2023. weight: math.unit(3000, "lb"),
  2024. volume: math.unit(1000, "liters"),
  2025. capacity: math.unit(6, "people"),
  2026. name: "Goo (Ceiling)",
  2027. image: {
  2028. source: "./media/characters/fen/goo-ceiling.svg"
  2029. }
  2030. },
  2031. back: {
  2032. height: math.unit(12, "feet"),
  2033. weight: math.unit(2400, "lb"),
  2034. name: "Back",
  2035. image: {
  2036. source: "./media/characters/fen/back.svg",
  2037. },
  2038. info: {
  2039. description: {
  2040. mode: "append",
  2041. text: "\n\nHe is not currently looking at you."
  2042. }
  2043. }
  2044. },
  2045. full: {
  2046. height: math.unit(1.85, "meter"),
  2047. weight: math.unit(3200, "lb"),
  2048. name: "Full",
  2049. image: {
  2050. source: "./media/characters/fen/full.svg",
  2051. extra: 1133/859,
  2052. bottom: 145/1278
  2053. },
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nMunch."
  2058. }
  2059. }
  2060. },
  2061. gooLounging: {
  2062. height: math.unit(4.53, "feet"),
  2063. weight: math.unit(3000, "lb"),
  2064. capacity: math.unit(6, "people"),
  2065. name: "Goo (Lounging)",
  2066. image: {
  2067. source: "./media/characters/fen/goo-lounging.svg",
  2068. bottom: 116 / 613
  2069. }
  2070. },
  2071. lounging: {
  2072. height: math.unit(10.52, "feet"),
  2073. weight: math.unit(2400, "lb"),
  2074. name: "Lounging",
  2075. image: {
  2076. source: "./media/characters/fen/lounging.svg"
  2077. }
  2078. },
  2079. },
  2080. [
  2081. {
  2082. name: "Small",
  2083. height: math.unit(2.2428, "meter")
  2084. },
  2085. {
  2086. name: "Normal",
  2087. height: math.unit(12, "feet"),
  2088. default: true,
  2089. },
  2090. {
  2091. name: "Big",
  2092. height: math.unit(20, "feet")
  2093. },
  2094. {
  2095. name: "Minimacro",
  2096. height: math.unit(40, "feet"),
  2097. info: {
  2098. description: {
  2099. mode: "append",
  2100. text: "\n\nTOO DAMN BIG"
  2101. }
  2102. }
  2103. },
  2104. {
  2105. name: "Macro",
  2106. height: math.unit(100, "feet"),
  2107. info: {
  2108. description: {
  2109. mode: "append",
  2110. text: "\n\nTOO DAMN BIG"
  2111. }
  2112. }
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(2, "miles")
  2117. },
  2118. {
  2119. name: "Gigamacro",
  2120. height: math.unit(10, "earths")
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(183, "cm"),
  2129. weight: math.unit(80, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/sofia-fluttertail/front.svg",
  2133. bottom: 0.01,
  2134. extra: 2154 / 2081
  2135. }
  2136. },
  2137. frontAlt: {
  2138. height: math.unit(183, "cm"),
  2139. weight: math.unit(80, "kg"),
  2140. name: "Front (alt)",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(183, "cm"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/sofia-fluttertail/back.svg"
  2151. }
  2152. },
  2153. kneeling: {
  2154. height: math.unit(125, "cm"),
  2155. weight: math.unit(80, "kg"),
  2156. name: "Kneeling",
  2157. image: {
  2158. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2159. extra: 1033 / 977,
  2160. bottom: 23.7 / 1057
  2161. }
  2162. },
  2163. maw: {
  2164. height: math.unit(183 / 5, "cm"),
  2165. name: "Maw",
  2166. image: {
  2167. source: "./media/characters/sofia-fluttertail/maw.svg"
  2168. }
  2169. },
  2170. mawcloseup: {
  2171. height: math.unit(183 / 5 * 0.41, "cm"),
  2172. name: "Maw (Closeup)",
  2173. image: {
  2174. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2175. }
  2176. },
  2177. paws: {
  2178. height: math.unit(1.17, "feet"),
  2179. name: "Paws",
  2180. image: {
  2181. source: "./media/characters/sofia-fluttertail/paws.svg",
  2182. extra: 851 / 851,
  2183. bottom: 17 / 868
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(1.83, "meter")
  2191. },
  2192. {
  2193. name: "Size Thief",
  2194. height: math.unit(18, "feet")
  2195. },
  2196. {
  2197. name: "50 Foot Collie",
  2198. height: math.unit(50, "feet")
  2199. },
  2200. {
  2201. name: "Macro",
  2202. height: math.unit(96, "feet"),
  2203. default: true
  2204. },
  2205. {
  2206. name: "Megamerger",
  2207. height: math.unit(650, "feet")
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(100, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/march/front.svg",
  2220. extra: 1992/1851,
  2221. bottom: 39/2031
  2222. }
  2223. },
  2224. foot: {
  2225. height: math.unit(0.9, "feet"),
  2226. name: "Foot",
  2227. image: {
  2228. source: "./media/characters/march/foot.svg"
  2229. }
  2230. },
  2231. },
  2232. [
  2233. {
  2234. name: "Normal",
  2235. height: math.unit(7.9, "feet")
  2236. },
  2237. {
  2238. name: "Macro",
  2239. height: math.unit(220, "meters")
  2240. },
  2241. {
  2242. name: "Megamacro",
  2243. height: math.unit(2.98, "km"),
  2244. default: true
  2245. },
  2246. {
  2247. name: "Gigamacro",
  2248. height: math.unit(15963, "km")
  2249. },
  2250. {
  2251. name: "Teramacro",
  2252. height: math.unit(2980000000, "km")
  2253. },
  2254. {
  2255. name: "Examacro",
  2256. height: math.unit(250, "parsecs")
  2257. },
  2258. ]
  2259. ))
  2260. characterMakers.push(() => makeCharacter(
  2261. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2262. {
  2263. front: {
  2264. height: math.unit(6, "feet"),
  2265. weight: math.unit(60, "kg"),
  2266. name: "Front",
  2267. image: {
  2268. source: "./media/characters/noir/front.svg",
  2269. extra: 1,
  2270. bottom: 0.032
  2271. }
  2272. },
  2273. },
  2274. [
  2275. {
  2276. name: "Normal",
  2277. height: math.unit(6.6, "feet")
  2278. },
  2279. {
  2280. name: "Macro",
  2281. height: math.unit(500, "feet")
  2282. },
  2283. {
  2284. name: "Megamacro",
  2285. height: math.unit(2.5, "km"),
  2286. default: true
  2287. },
  2288. {
  2289. name: "Gigamacro",
  2290. height: math.unit(22500, "km")
  2291. },
  2292. {
  2293. name: "Teramacro",
  2294. height: math.unit(2500000000, "km")
  2295. },
  2296. {
  2297. name: "Examacro",
  2298. height: math.unit(200, "parsecs")
  2299. },
  2300. ]
  2301. ))
  2302. characterMakers.push(() => makeCharacter(
  2303. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2304. {
  2305. front: {
  2306. height: math.unit(7, "feet"),
  2307. weight: math.unit(100, "kg"),
  2308. name: "Front",
  2309. image: {
  2310. source: "./media/characters/okuri/front.svg",
  2311. extra: 739/665,
  2312. bottom: 39/778
  2313. }
  2314. },
  2315. back: {
  2316. height: math.unit(7, "feet"),
  2317. weight: math.unit(100, "kg"),
  2318. name: "Back",
  2319. image: {
  2320. source: "./media/characters/okuri/back.svg",
  2321. extra: 734/653,
  2322. bottom: 13/747
  2323. }
  2324. },
  2325. sitting: {
  2326. height: math.unit(2.95, "feet"),
  2327. weight: math.unit(100, "kg"),
  2328. name: "Sitting",
  2329. image: {
  2330. source: "./media/characters/okuri/sitting.svg",
  2331. extra: 370/318,
  2332. bottom: 99/469
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Smallest",
  2339. height: math.unit(5 + 2/12, "feet")
  2340. },
  2341. {
  2342. name: "Smaller",
  2343. height: math.unit(300, "feet")
  2344. },
  2345. {
  2346. name: "Small",
  2347. height: math.unit(1000, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(1, "mile")
  2352. },
  2353. {
  2354. name: "Mega Macro (Small)",
  2355. height: math.unit(20, "km")
  2356. },
  2357. {
  2358. name: "Mega Macro (Large)",
  2359. height: math.unit(600, "km")
  2360. },
  2361. {
  2362. name: "Giga Macro",
  2363. height: math.unit(10000, "km")
  2364. },
  2365. {
  2366. name: "Normal",
  2367. height: math.unit(577560, "km"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Large",
  2372. height: math.unit(4, "galaxies")
  2373. },
  2374. {
  2375. name: "Largest",
  2376. height: math.unit(15, "multiverses")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(7, "feet"),
  2385. weight: math.unit(100, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/manny/front.svg",
  2389. extra: 1,
  2390. bottom: 0.06
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/manny/back.svg",
  2399. extra: 1,
  2400. bottom: 0.014
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(7, "feet"),
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(78, "feet"),
  2412. default: true
  2413. },
  2414. {
  2415. name: "Macro+",
  2416. height: math.unit(300, "meters")
  2417. },
  2418. {
  2419. name: "Macro++",
  2420. height: math.unit(2400, "meters")
  2421. },
  2422. {
  2423. name: "Megamacro",
  2424. height: math.unit(5167, "meters")
  2425. },
  2426. {
  2427. name: "Gigamacro",
  2428. height: math.unit(41769, "miles")
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(7, "feet"),
  2437. weight: math.unit(100, "kg"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/adake/front-1.svg"
  2441. }
  2442. },
  2443. frontAlt: {
  2444. height: math.unit(7, "feet"),
  2445. weight: math.unit(100, "kg"),
  2446. name: "Front (Alt)",
  2447. image: {
  2448. source: "./media/characters/adake/front-2.svg",
  2449. extra: 1,
  2450. bottom: 0.01
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(7, "feet"),
  2455. weight: math.unit(100, "kg"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/adake/back.svg",
  2459. }
  2460. },
  2461. kneel: {
  2462. height: math.unit(5.385, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Kneeling",
  2465. image: {
  2466. source: "./media/characters/adake/kneel.svg",
  2467. bottom: 0.052
  2468. }
  2469. },
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(7, "feet"),
  2475. },
  2476. {
  2477. name: "Macro",
  2478. height: math.unit(78, "feet"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Macro+",
  2483. height: math.unit(300, "meters")
  2484. },
  2485. {
  2486. name: "Macro++",
  2487. height: math.unit(2400, "meters")
  2488. },
  2489. {
  2490. name: "Megamacro",
  2491. height: math.unit(5167, "meters")
  2492. },
  2493. {
  2494. name: "Gigamacro",
  2495. height: math.unit(41769, "miles")
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2501. {
  2502. front: {
  2503. height: math.unit(1.65, "meters"),
  2504. weight: math.unit(50, "kg"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/elijah/front.svg",
  2508. extra: 858 / 830,
  2509. bottom: 95.5 / 953.8559
  2510. }
  2511. },
  2512. back: {
  2513. height: math.unit(1.65, "meters"),
  2514. weight: math.unit(50, "kg"),
  2515. name: "Back",
  2516. image: {
  2517. source: "./media/characters/elijah/back.svg",
  2518. extra: 895 / 850,
  2519. bottom: 5.3 / 897.956
  2520. }
  2521. },
  2522. frontNsfw: {
  2523. height: math.unit(1.65, "meters"),
  2524. weight: math.unit(50, "kg"),
  2525. name: "Front (NSFW)",
  2526. image: {
  2527. source: "./media/characters/elijah/front-nsfw.svg",
  2528. extra: 858 / 830,
  2529. bottom: 95.5 / 953.8559
  2530. }
  2531. },
  2532. backNsfw: {
  2533. height: math.unit(1.65, "meters"),
  2534. weight: math.unit(50, "kg"),
  2535. name: "Back (NSFW)",
  2536. image: {
  2537. source: "./media/characters/elijah/back-nsfw.svg",
  2538. extra: 895 / 850,
  2539. bottom: 5.3 / 897.956
  2540. }
  2541. },
  2542. dick: {
  2543. height: math.unit(1, "feet"),
  2544. name: "Dick",
  2545. image: {
  2546. source: "./media/characters/elijah/dick.svg"
  2547. }
  2548. },
  2549. beakOpen: {
  2550. height: math.unit(1.25, "feet"),
  2551. name: "Beak (Open)",
  2552. image: {
  2553. source: "./media/characters/elijah/beak-open.svg"
  2554. }
  2555. },
  2556. beakShut: {
  2557. height: math.unit(1.25, "feet"),
  2558. name: "Beak (Shut)",
  2559. image: {
  2560. source: "./media/characters/elijah/beak-shut.svg"
  2561. }
  2562. },
  2563. footFlexing: {
  2564. height: math.unit(1.61, "feet"),
  2565. name: "Foot (Flexing)",
  2566. image: {
  2567. source: "./media/characters/elijah/foot-flexing.svg"
  2568. }
  2569. },
  2570. footStepping: {
  2571. height: math.unit(1.44, "feet"),
  2572. name: "Foot (Stepping)",
  2573. image: {
  2574. source: "./media/characters/elijah/foot-stepping.svg"
  2575. }
  2576. },
  2577. plantigradeLeg: {
  2578. height: math.unit(2.34, "feet"),
  2579. name: "Plantigrade Leg",
  2580. image: {
  2581. source: "./media/characters/elijah/plantigrade-leg.svg"
  2582. }
  2583. },
  2584. plantigradeFootLeft: {
  2585. height: math.unit(0.9, "feet"),
  2586. name: "Plantigrade Foot (Left)",
  2587. image: {
  2588. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2589. }
  2590. },
  2591. plantigradeFootRight: {
  2592. height: math.unit(0.9, "feet"),
  2593. name: "Plantigrade Foot (Right)",
  2594. image: {
  2595. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2596. }
  2597. },
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(1.65, "meters")
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(55, "meters"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Macro+",
  2611. height: math.unit(105, "meters")
  2612. },
  2613. ]
  2614. ))
  2615. characterMakers.push(() => makeCharacter(
  2616. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2617. {
  2618. front: {
  2619. height: math.unit(7 + 2/12, "feet"),
  2620. weight: math.unit(320, "kg"),
  2621. name: "Front",
  2622. image: {
  2623. source: "./media/characters/rai/front.svg",
  2624. extra: 1802/1696,
  2625. bottom: 68/1870
  2626. }
  2627. },
  2628. frontDressed: {
  2629. height: math.unit(7 + 2/12, "feet"),
  2630. weight: math.unit(320, "kg"),
  2631. name: "Front (Dressed)",
  2632. image: {
  2633. source: "./media/characters/rai/front-dressed.svg",
  2634. extra: 1802/1696,
  2635. bottom: 68/1870
  2636. }
  2637. },
  2638. side: {
  2639. height: math.unit(7 + 2/12, "feet"),
  2640. weight: math.unit(320, "kg"),
  2641. name: "Side",
  2642. image: {
  2643. source: "./media/characters/rai/side.svg",
  2644. extra: 1789/1710,
  2645. bottom: 115/1904
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(7 + 2/12, "feet"),
  2650. weight: math.unit(320, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/rai/back.svg",
  2654. extra: 1770/1707,
  2655. bottom: 28/1798
  2656. }
  2657. },
  2658. feral: {
  2659. height: math.unit(9.5, "feet"),
  2660. weight: math.unit(640, "kg"),
  2661. name: "Feral",
  2662. image: {
  2663. source: "./media/characters/rai/feral.svg",
  2664. extra: 945/553,
  2665. bottom: 176/1121
  2666. }
  2667. },
  2668. dragon: {
  2669. height: math.unit(23, "feet"),
  2670. weight: math.unit(50000, "lb"),
  2671. name: "Dragon",
  2672. image: {
  2673. source: "./media/characters/rai/dragon.svg",
  2674. extra: 2498 / 2030,
  2675. bottom: 85.2 / 2584
  2676. }
  2677. },
  2678. maw: {
  2679. height: math.unit(1.69, "feet"),
  2680. name: "Maw",
  2681. image: {
  2682. source: "./media/characters/rai/maw.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(7 + 2/12, "feet")
  2690. },
  2691. {
  2692. name: "Big",
  2693. height: math.unit(11, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(302, "feet"),
  2698. default: true
  2699. },
  2700. ]
  2701. ))
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2704. {
  2705. frontDressed: {
  2706. height: math.unit(216, "feet"),
  2707. weight: math.unit(7000000, "lb"),
  2708. name: "Front (Dressed)",
  2709. image: {
  2710. source: "./media/characters/jazzy/front-dressed.svg",
  2711. extra: 2738 / 2651,
  2712. bottom: 41.8 / 2786
  2713. }
  2714. },
  2715. backDressed: {
  2716. height: math.unit(216, "feet"),
  2717. weight: math.unit(7000000, "lb"),
  2718. name: "Back (Dressed)",
  2719. image: {
  2720. source: "./media/characters/jazzy/back-dressed.svg",
  2721. extra: 2775 / 2673,
  2722. bottom: 36.8 / 2817
  2723. }
  2724. },
  2725. front: {
  2726. height: math.unit(216, "feet"),
  2727. weight: math.unit(7000000, "lb"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/jazzy/front.svg",
  2731. extra: 2738 / 2651,
  2732. bottom: 41.8 / 2786
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(216, "feet"),
  2737. weight: math.unit(7000000, "lb"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/jazzy/back.svg",
  2741. extra: 2775 / 2673,
  2742. bottom: 36.8 / 2817
  2743. }
  2744. },
  2745. maw: {
  2746. height: math.unit(20, "feet"),
  2747. name: "Maw",
  2748. image: {
  2749. source: "./media/characters/jazzy/maw.svg"
  2750. }
  2751. },
  2752. paws: {
  2753. height: math.unit(27.5, "feet"),
  2754. name: "Paws",
  2755. image: {
  2756. source: "./media/characters/jazzy/paws.svg"
  2757. }
  2758. },
  2759. eye: {
  2760. height: math.unit(4.4, "feet"),
  2761. name: "Eye",
  2762. image: {
  2763. source: "./media/characters/jazzy/eye.svg"
  2764. }
  2765. },
  2766. droneOffense: {
  2767. height: math.unit(9.5, "inches"),
  2768. name: "Drone (Offense)",
  2769. image: {
  2770. source: "./media/characters/jazzy/drone-offense.svg"
  2771. }
  2772. },
  2773. droneRecon: {
  2774. height: math.unit(9.5, "inches"),
  2775. name: "Drone (Recon)",
  2776. image: {
  2777. source: "./media/characters/jazzy/drone-recon.svg"
  2778. }
  2779. },
  2780. droneDefense: {
  2781. height: math.unit(9.5, "inches"),
  2782. name: "Drone (Defense)",
  2783. image: {
  2784. source: "./media/characters/jazzy/drone-defense.svg"
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(216, "feet"),
  2792. default: true
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(9 + 6/12, "feet"),
  2801. weight: math.unit(700, "lb"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/flamm/front.svg",
  2805. extra: 1751/1632,
  2806. bottom: 46/1797
  2807. }
  2808. },
  2809. buff: {
  2810. height: math.unit(9 + 6/12, "feet"),
  2811. weight: math.unit(950, "lb"),
  2812. name: "Buff",
  2813. image: {
  2814. source: "./media/characters/flamm/buff.svg",
  2815. extra: 3018/2874,
  2816. bottom: 221/3239
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(9.5, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(200, "feet"),
  2828. default: true
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(5 + 3/12, "feet"),
  2837. weight: math.unit(60, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/zephiro/front.svg",
  2841. extra: 2309 / 2162,
  2842. bottom: 0.069
  2843. }
  2844. },
  2845. side: {
  2846. height: math.unit(5 + 3/12, "feet"),
  2847. weight: math.unit(60, "kg"),
  2848. name: "Side",
  2849. image: {
  2850. source: "./media/characters/zephiro/side.svg",
  2851. extra: 2403 / 2279,
  2852. bottom: 0.015
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(5 + 3/12, "feet"),
  2857. weight: math.unit(60, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/zephiro/back.svg",
  2861. extra: 2373 / 2244,
  2862. bottom: 0.013
  2863. }
  2864. },
  2865. hand: {
  2866. height: math.unit(0.68, "feet"),
  2867. name: "Hand",
  2868. image: {
  2869. source: "./media/characters/zephiro/hand.svg"
  2870. }
  2871. },
  2872. paw: {
  2873. height: math.unit(1, "feet"),
  2874. name: "Paw",
  2875. image: {
  2876. source: "./media/characters/zephiro/paw.svg"
  2877. }
  2878. },
  2879. beans: {
  2880. height: math.unit(0.93, "feet"),
  2881. name: "Beans",
  2882. image: {
  2883. source: "./media/characters/zephiro/beans.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Micro",
  2890. height: math.unit(3, "inches")
  2891. },
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5 + 3 / 12, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(118, "feet")
  2900. },
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2905. {
  2906. front: {
  2907. height: math.unit(5, "feet"),
  2908. weight: math.unit(90, "kg"),
  2909. name: "Front",
  2910. image: {
  2911. source: "./media/characters/fory/front.svg",
  2912. extra: 2862 / 2674,
  2913. bottom: 180 / 3043.8
  2914. }
  2915. },
  2916. back: {
  2917. height: math.unit(5, "feet"),
  2918. weight: math.unit(90, "kg"),
  2919. name: "Back",
  2920. image: {
  2921. source: "./media/characters/fory/back.svg",
  2922. extra: 2962 / 2791,
  2923. bottom: 106 / 3071.8
  2924. }
  2925. },
  2926. foot: {
  2927. height: math.unit(2.14, "feet"),
  2928. name: "Foot",
  2929. image: {
  2930. source: "./media/characters/fory/foot.svg"
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Normal",
  2937. height: math.unit(5, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(50, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Megamacro",
  2946. height: math.unit(10, "miles")
  2947. },
  2948. {
  2949. name: "Gigamacro",
  2950. height: math.unit(5, "earths")
  2951. },
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(90, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/kurrikage/front.svg",
  2963. extra: 1845/1733,
  2964. bottom: 119/1964
  2965. }
  2966. },
  2967. back: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(90, "kg"),
  2970. name: "Back",
  2971. image: {
  2972. source: "./media/characters/kurrikage/back.svg",
  2973. extra: 1790/1677,
  2974. bottom: 61/1851
  2975. }
  2976. },
  2977. dressed: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(90, "kg"),
  2980. name: "Dressed",
  2981. image: {
  2982. source: "./media/characters/kurrikage/dressed.svg",
  2983. extra: 1845/1733,
  2984. bottom: 119/1964
  2985. }
  2986. },
  2987. foot: {
  2988. height: math.unit(1.5, "feet"),
  2989. name: "Foot",
  2990. image: {
  2991. source: "./media/characters/kurrikage/foot.svg"
  2992. }
  2993. },
  2994. staff: {
  2995. height: math.unit(6.7, "feet"),
  2996. name: "Staff",
  2997. image: {
  2998. source: "./media/characters/kurrikage/staff.svg"
  2999. }
  3000. },
  3001. peek: {
  3002. height: math.unit(1.05, "feet"),
  3003. name: "Peeking",
  3004. image: {
  3005. source: "./media/characters/kurrikage/peek.svg",
  3006. bottom: 0.08
  3007. }
  3008. },
  3009. },
  3010. [
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(12, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Big",
  3018. height: math.unit(20, "feet")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(500, "feet")
  3023. },
  3024. {
  3025. name: "Megamacro",
  3026. height: math.unit(20, "miles")
  3027. },
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(6, "feet"),
  3035. weight: math.unit(75, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/shingo/front.svg",
  3039. extra: 1900/1825,
  3040. bottom: 82/1982
  3041. }
  3042. },
  3043. side: {
  3044. height: math.unit(6, "feet"),
  3045. weight: math.unit(75, "kg"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/shingo/side.svg",
  3049. extra: 1930/1865,
  3050. bottom: 16/1946
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(75, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/shingo/back.svg",
  3059. extra: 1922/1852,
  3060. bottom: 16/1938
  3061. }
  3062. },
  3063. frontDressed: {
  3064. height: math.unit(6, "feet"),
  3065. weight: math.unit(150, "lb"),
  3066. name: "Front-dressed",
  3067. image: {
  3068. source: "./media/characters/shingo/front-dressed.svg",
  3069. extra: 1900/1825,
  3070. bottom: 82/1982
  3071. }
  3072. },
  3073. paw: {
  3074. height: math.unit(1.29, "feet"),
  3075. name: "Paw",
  3076. image: {
  3077. source: "./media/characters/shingo/paw.svg"
  3078. }
  3079. },
  3080. hand: {
  3081. height: math.unit(1.07, "feet"),
  3082. name: "Hand",
  3083. image: {
  3084. source: "./media/characters/shingo/hand.svg"
  3085. }
  3086. },
  3087. frontAlt: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Front (Alt)",
  3091. image: {
  3092. source: "./media/characters/shingo/front-alt.svg",
  3093. extra: 3511 / 3338,
  3094. bottom: 0.005
  3095. }
  3096. },
  3097. frontAlt2: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front (Alt 2)",
  3101. image: {
  3102. source: "./media/characters/shingo/front-alt-2.svg",
  3103. extra: 706/681,
  3104. bottom: 11/717
  3105. }
  3106. },
  3107. pawAlt: {
  3108. height: math.unit(1, "feet"),
  3109. name: "Paw (Alt)",
  3110. image: {
  3111. source: "./media/characters/shingo/paw-alt.svg"
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Micro",
  3118. height: math.unit(4, "inches")
  3119. },
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(6, "feet"),
  3123. default: true
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(108, "feet")
  3128. },
  3129. {
  3130. name: "Macro+",
  3131. height: math.unit(1500, "feet")
  3132. },
  3133. ]
  3134. ))
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3137. {
  3138. side: {
  3139. height: math.unit(6, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Side",
  3142. image: {
  3143. source: "./media/characters/aigey/side.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Macro",
  3150. height: math.unit(200, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Megamacro",
  3155. height: math.unit(100, "miles")
  3156. },
  3157. ]
  3158. )
  3159. )
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3162. {
  3163. front: {
  3164. height: math.unit(5 + 5 / 12, "feet"),
  3165. weight: math.unit(75, "kg"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/natasha/front.svg",
  3169. extra: 859 / 824,
  3170. bottom: 23 / 879.6
  3171. }
  3172. },
  3173. frontNsfw: {
  3174. height: math.unit(5 + 5 / 12, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Front (NSFW)",
  3177. image: {
  3178. source: "./media/characters/natasha/front-nsfw.svg",
  3179. extra: 859 / 824,
  3180. bottom: 23 / 879.6
  3181. }
  3182. },
  3183. frontErect: {
  3184. height: math.unit(5 + 5 / 12, "feet"),
  3185. weight: math.unit(75, "kg"),
  3186. name: "Front (Erect)",
  3187. image: {
  3188. source: "./media/characters/natasha/front-erect.svg",
  3189. extra: 859 / 824,
  3190. bottom: 23 / 879.6
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(5 + 5 / 12, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/natasha/back.svg",
  3199. extra: 887.9 / 852.6,
  3200. bottom: 9.7 / 896.4
  3201. }
  3202. },
  3203. backAlt: {
  3204. height: math.unit(5 + 5 / 12, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Back (Alt)",
  3207. image: {
  3208. source: "./media/characters/natasha/back-alt.svg",
  3209. extra: 1236.7 / 1192,
  3210. bottom: 22.3 / 1258.2
  3211. }
  3212. },
  3213. dick: {
  3214. height: math.unit(1.772, "feet"),
  3215. name: "Dick",
  3216. image: {
  3217. source: "./media/characters/natasha/dick.svg"
  3218. }
  3219. },
  3220. paw: {
  3221. height: math.unit(0.250, "meters"),
  3222. name: "Paw",
  3223. image: {
  3224. source: "./media/characters/natasha/paw.svg"
  3225. }
  3226. },
  3227. },
  3228. [
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(5 + 5 / 12, "feet")
  3232. },
  3233. {
  3234. name: "Large",
  3235. height: math.unit(12, "feet")
  3236. },
  3237. {
  3238. name: "Macro",
  3239. height: math.unit(100, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Macro+",
  3244. height: math.unit(260, "feet")
  3245. },
  3246. {
  3247. name: "Macro++",
  3248. height: math.unit(1, "mile")
  3249. },
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3254. {
  3255. front: {
  3256. height: math.unit(6, "feet"),
  3257. weight: math.unit(75, "kg"),
  3258. name: "Front",
  3259. image: {
  3260. source: "./media/characters/malik/front.svg"
  3261. }
  3262. },
  3263. side: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Side",
  3267. image: {
  3268. source: "./media/characters/malik/side.svg",
  3269. extra: 1.1539
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(75, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/malik/back.svg"
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(156, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(1188, "feet")
  3290. },
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/sefer/front.svg",
  3302. extra: 848 / 659,
  3303. bottom: 28.3 / 876.442
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(6, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/sefer/back.svg",
  3312. extra: 864 / 695,
  3313. bottom: 10 / 871
  3314. }
  3315. },
  3316. frontDressed: {
  3317. height: math.unit(6, "feet"),
  3318. weight: math.unit(75, "kg"),
  3319. name: "Front (Dressed)",
  3320. image: {
  3321. source: "./media/characters/sefer/front-dressed.svg",
  3322. extra: 839 / 653,
  3323. bottom: 37.6 / 878
  3324. }
  3325. },
  3326. },
  3327. [
  3328. {
  3329. name: "Normal",
  3330. height: math.unit(6, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3337. {
  3338. body: {
  3339. height: math.unit(2.2428, "meter"),
  3340. weight: math.unit(124.738, "kg"),
  3341. name: "Body",
  3342. image: {
  3343. extra: 1225 / 1050,
  3344. source: "./media/characters/north/front.svg"
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Micro",
  3351. height: math.unit(4, "inches")
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(63, "meters")
  3356. },
  3357. {
  3358. name: "Megamacro",
  3359. height: math.unit(101, "miles"),
  3360. default: true
  3361. }
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3366. {
  3367. angled: {
  3368. height: math.unit(4, "meter"),
  3369. weight: math.unit(150, "kg"),
  3370. name: "Angled",
  3371. image: {
  3372. source: "./media/characters/talan/angled-sfw.svg",
  3373. bottom: 29 / 3734
  3374. }
  3375. },
  3376. angledNsfw: {
  3377. height: math.unit(4, "meter"),
  3378. weight: math.unit(150, "kg"),
  3379. name: "Angled (NSFW)",
  3380. image: {
  3381. source: "./media/characters/talan/angled-nsfw.svg",
  3382. bottom: 29 / 3734
  3383. }
  3384. },
  3385. frontNsfw: {
  3386. height: math.unit(4, "meter"),
  3387. weight: math.unit(150, "kg"),
  3388. name: "Front (NSFW)",
  3389. image: {
  3390. source: "./media/characters/talan/front-nsfw.svg",
  3391. bottom: 29 / 3734
  3392. }
  3393. },
  3394. sideNsfw: {
  3395. height: math.unit(4, "meter"),
  3396. weight: math.unit(150, "kg"),
  3397. name: "Side (NSFW)",
  3398. image: {
  3399. source: "./media/characters/talan/side-nsfw.svg",
  3400. bottom: 29 / 3734
  3401. }
  3402. },
  3403. back: {
  3404. height: math.unit(4, "meter"),
  3405. weight: math.unit(150, "kg"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/talan/back.svg"
  3409. }
  3410. },
  3411. dickBottom: {
  3412. height: math.unit(0.621, "meter"),
  3413. name: "Dick (Bottom)",
  3414. image: {
  3415. source: "./media/characters/talan/dick-bottom.svg"
  3416. }
  3417. },
  3418. dickTop: {
  3419. height: math.unit(0.621, "meter"),
  3420. name: "Dick (Top)",
  3421. image: {
  3422. source: "./media/characters/talan/dick-top.svg"
  3423. }
  3424. },
  3425. dickSide: {
  3426. height: math.unit(0.305, "meter"),
  3427. name: "Dick (Side)",
  3428. image: {
  3429. source: "./media/characters/talan/dick-side.svg"
  3430. }
  3431. },
  3432. dickFront: {
  3433. height: math.unit(0.305, "meter"),
  3434. name: "Dick (Front)",
  3435. image: {
  3436. source: "./media/characters/talan/dick-front.svg"
  3437. }
  3438. },
  3439. },
  3440. [
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(4, "meters")
  3444. },
  3445. {
  3446. name: "Macro",
  3447. height: math.unit(100, "meters")
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(2, "miles"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Gigamacro",
  3456. height: math.unit(5000, "miles")
  3457. },
  3458. {
  3459. name: "Teramacro",
  3460. height: math.unit(100, "parsecs")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(90, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/gael'rathus/front.svg"
  3473. }
  3474. },
  3475. frontAlt: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(90, "kg"),
  3478. name: "Front (alt)",
  3479. image: {
  3480. source: "./media/characters/gael'rathus/front-alt.svg"
  3481. }
  3482. },
  3483. frontAlt2: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Front (alt 2)",
  3487. image: {
  3488. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(9, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Large",
  3500. height: math.unit(25, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(0.25, "miles")
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(10, "miles")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3514. {
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(140, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/sosha/side.svg",
  3521. bottom: 0.042
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(12, "feet"),
  3529. default: true
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3535. {
  3536. side: {
  3537. height: math.unit(5 + 5 / 12, "feet"),
  3538. weight: math.unit(170, "kg"),
  3539. name: "Side",
  3540. image: {
  3541. source: "./media/characters/runnola/side.svg",
  3542. extra: 741 / 448,
  3543. bottom: 0.05
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Small",
  3550. height: math.unit(3, "feet")
  3551. },
  3552. {
  3553. name: "Normal",
  3554. height: math.unit(5 + 5 / 12, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Big",
  3559. height: math.unit(10, "feet")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(2, "meter"),
  3568. weight: math.unit(50, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/kurribird/front.svg",
  3572. bottom: 0.015
  3573. }
  3574. },
  3575. frontAlt: {
  3576. height: math.unit(1.5, "meter"),
  3577. weight: math.unit(50, "kg"),
  3578. name: "Front (Alt)",
  3579. image: {
  3580. source: "./media/characters/kurribird/front-alt.svg",
  3581. extra: 1.45
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(7, "feet")
  3589. },
  3590. {
  3591. name: "Big",
  3592. height: math.unit(12, "feet"),
  3593. default: true
  3594. },
  3595. {
  3596. name: "Macro",
  3597. height: math.unit(1500, "feet")
  3598. },
  3599. {
  3600. name: "Megamacro",
  3601. height: math.unit(2, "miles")
  3602. }
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3607. {
  3608. front: {
  3609. height: math.unit(2, "meter"),
  3610. weight: math.unit(80, "kg"),
  3611. name: "Front",
  3612. image: {
  3613. source: "./media/characters/elbial/front.svg",
  3614. extra: 1643 / 1556,
  3615. bottom: 60.2 / 1696
  3616. }
  3617. },
  3618. side: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(80, "kg"),
  3621. name: "Side",
  3622. image: {
  3623. source: "./media/characters/elbial/side.svg",
  3624. extra: 1601/1528,
  3625. bottom: 97/1698
  3626. }
  3627. },
  3628. back: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Back",
  3632. image: {
  3633. source: "./media/characters/elbial/back.svg",
  3634. extra: 1653/1569,
  3635. bottom: 20/1673
  3636. }
  3637. },
  3638. frontDressed: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Dressed)",
  3642. image: {
  3643. source: "./media/characters/elbial/front-dressed.svg",
  3644. extra: 1638/1569,
  3645. bottom: 70/1708
  3646. }
  3647. },
  3648. genitals: {
  3649. height: math.unit(2 / 3.367, "meter"),
  3650. name: "Genitals",
  3651. image: {
  3652. source: "./media/characters/elbial/genitals.svg"
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(100, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(500, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(10, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(25000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(8000000, "gigaparsecs")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(60, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/noah/front.svg"
  3689. }
  3690. },
  3691. talons: {
  3692. height: math.unit(0.315, "meter"),
  3693. name: "Talons",
  3694. image: {
  3695. source: "./media/characters/noah/talons.svg"
  3696. }
  3697. }
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(50, "feet")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(750, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Megamacro",
  3711. height: math.unit(50, "miles")
  3712. },
  3713. {
  3714. name: "Gigamacro",
  3715. height: math.unit(100000, "miles")
  3716. },
  3717. {
  3718. name: "Full-Size",
  3719. height: math.unit(3000000000, "miles")
  3720. }
  3721. ]
  3722. ))
  3723. characterMakers.push(() => makeCharacter(
  3724. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3725. {
  3726. front: {
  3727. height: math.unit(2, "meter"),
  3728. weight: math.unit(80, "kg"),
  3729. name: "Front",
  3730. image: {
  3731. source: "./media/characters/natalya/front.svg"
  3732. }
  3733. },
  3734. back: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(80, "kg"),
  3737. name: "Back",
  3738. image: {
  3739. source: "./media/characters/natalya/back.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Normal",
  3746. height: math.unit(150, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(5, "miles")
  3752. },
  3753. {
  3754. name: "Full-Size",
  3755. height: math.unit(600, "kiloparsecs")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/erestrebah/front.svg",
  3768. extra: 1262/1162,
  3769. bottom: 96/1358
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(2, "meter"),
  3774. weight: math.unit(50, "kg"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/erestrebah/back.svg",
  3778. extra: 1257/1139,
  3779. bottom: 13/1270
  3780. }
  3781. },
  3782. wing: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(50, "kg"),
  3785. name: "Wing",
  3786. image: {
  3787. source: "./media/characters/erestrebah/wing.svg",
  3788. extra: 1262/1162,
  3789. bottom: 96/1358
  3790. }
  3791. },
  3792. mouth: {
  3793. height: math.unit(0.39, "feet"),
  3794. name: "Mouth",
  3795. image: {
  3796. source: "./media/characters/erestrebah/mouth.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Normal",
  3803. height: math.unit(10, "feet")
  3804. },
  3805. {
  3806. name: "Large",
  3807. height: math.unit(50, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Macro",
  3812. height: math.unit(300, "feet")
  3813. },
  3814. {
  3815. name: "Macro+",
  3816. height: math.unit(750, "feet")
  3817. },
  3818. {
  3819. name: "Megamacro",
  3820. height: math.unit(3, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/jennifer/front.svg",
  3833. bottom: 0.11,
  3834. extra: 1.16
  3835. }
  3836. },
  3837. frontAlt: {
  3838. height: math.unit(2, "meter"),
  3839. weight: math.unit(80, "kg"),
  3840. name: "Front (Alt)",
  3841. image: {
  3842. source: "./media/characters/jennifer/front-alt.svg"
  3843. }
  3844. }
  3845. },
  3846. [
  3847. {
  3848. name: "Canon Height",
  3849. height: math.unit(120, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro+",
  3854. height: math.unit(300, "feet")
  3855. },
  3856. {
  3857. name: "Megamacro",
  3858. height: math.unit(20000, "feet")
  3859. }
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(50, "kg"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/kalista/front.svg",
  3871. extra: 1314/1145,
  3872. bottom: 101/1415
  3873. }
  3874. },
  3875. back: {
  3876. height: math.unit(2, "meter"),
  3877. weight: math.unit(50, "kg"),
  3878. name: "Back",
  3879. image: {
  3880. source: "./media/characters/kalista/back.svg",
  3881. extra: 1366 / 1156,
  3882. bottom: 33.9 / 1362.78
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Uncomfortably Small",
  3889. height: math.unit(10, "feet")
  3890. },
  3891. {
  3892. name: "Small",
  3893. height: math.unit(30, "feet")
  3894. },
  3895. {
  3896. name: "Macro",
  3897. height: math.unit(100, "feet"),
  3898. default: true
  3899. },
  3900. {
  3901. name: "Macro+",
  3902. height: math.unit(2000, "feet")
  3903. },
  3904. {
  3905. name: "True Form",
  3906. height: math.unit(8924, "miles")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(120, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/ggv/front.svg"
  3919. }
  3920. },
  3921. side: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(120, "kg"),
  3924. name: "Side",
  3925. image: {
  3926. source: "./media/characters/ggv/side.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Extremely Puny",
  3933. height: math.unit(9 + 5 / 12, "feet")
  3934. },
  3935. {
  3936. name: "Horribly Small",
  3937. height: math.unit(47.7, "miles"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Reasonably Sized",
  3942. height: math.unit(25000, "parsecs")
  3943. },
  3944. {
  3945. name: "Slightly Uncompressed",
  3946. height: math.unit(7.77e31, "parsecs")
  3947. },
  3948. {
  3949. name: "Omniversal",
  3950. height: math.unit(1e300, "meters")
  3951. },
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(75, "lb"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/napalm/front.svg"
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(75, "lb"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/napalm/back.svg"
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Standard",
  3977. height: math.unit(55, "feet"),
  3978. default: true
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. weight: math.unit(325, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/asana/front.svg",
  3991. extra: 1133 / 1060,
  3992. bottom: 15.2 / 1148.6
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(7 + 5 / 6, "feet"),
  3997. weight: math.unit(325, "lb"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/asana/back.svg",
  4001. extra: 1114 / 1043,
  4002. bottom: 5 / 1120
  4003. }
  4004. },
  4005. dressedDark: {
  4006. height: math.unit(7 + 5 / 6, "feet"),
  4007. weight: math.unit(325, "lb"),
  4008. name: "Dressed (Dark)",
  4009. image: {
  4010. source: "./media/characters/asana/dressed-dark.svg",
  4011. extra: 1133 / 1060,
  4012. bottom: 15.2 / 1148.6
  4013. }
  4014. },
  4015. dressedLight: {
  4016. height: math.unit(7 + 5 / 6, "feet"),
  4017. weight: math.unit(325, "lb"),
  4018. name: "Dressed (Light)",
  4019. image: {
  4020. source: "./media/characters/asana/dressed-light.svg",
  4021. extra: 1133 / 1060,
  4022. bottom: 15.2 / 1148.6
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Standard",
  4029. height: math.unit(7 + 5 / 6, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(10, "meters")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(2500, "meters")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(5e6, "meters")
  4043. },
  4044. {
  4045. name: "Examacro",
  4046. height: math.unit(5e12, "lightyears")
  4047. },
  4048. {
  4049. name: "Max Size",
  4050. height: math.unit(1e31, "lightyears")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(2, "meter"),
  4059. weight: math.unit(60, "kg"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/ebony/front.svg",
  4063. bottom: 0.03,
  4064. extra: 1045 / 810 + 0.03
  4065. }
  4066. },
  4067. side: {
  4068. height: math.unit(2, "meter"),
  4069. weight: math.unit(60, "kg"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/ebony/side.svg",
  4073. bottom: 0.03,
  4074. extra: 1045 / 810 + 0.03
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(2, "meter"),
  4079. weight: math.unit(60, "kg"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/ebony/back.svg",
  4083. bottom: 0.01,
  4084. extra: 1045 / 810 + 0.01
  4085. }
  4086. },
  4087. },
  4088. [
  4089. // TODO check why I did this lol
  4090. {
  4091. name: "Standard",
  4092. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(200, "feet")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(13000, "km")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(175, "lb"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/mountain/front.svg",
  4114. extra: 972 / 955,
  4115. bottom: 64 / 1036.6
  4116. }
  4117. },
  4118. back: {
  4119. height: math.unit(6, "feet"),
  4120. weight: math.unit(175, "lb"),
  4121. name: "Back",
  4122. image: {
  4123. source: "./media/characters/mountain/back.svg",
  4124. extra: 970 / 950,
  4125. bottom: 28.25 / 999
  4126. }
  4127. },
  4128. },
  4129. [
  4130. {
  4131. name: "Large",
  4132. height: math.unit(20, "meters")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(300, "meters")
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(10000, "km"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Examacro",
  4145. height: math.unit(10e9, "lightyears")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(8, "feet"),
  4154. weight: math.unit(500, "lb"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/rick/front.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Normal",
  4164. height: math.unit(8, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Macro",
  4169. height: math.unit(5, "km")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(8, "feet"),
  4178. weight: math.unit(120, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/ona/front.svg"
  4182. }
  4183. },
  4184. frontAlt: {
  4185. height: math.unit(8, "feet"),
  4186. weight: math.unit(120, "lb"),
  4187. name: "Front (Alt)",
  4188. image: {
  4189. source: "./media/characters/ona/front-alt.svg"
  4190. }
  4191. },
  4192. back: {
  4193. height: math.unit(8, "feet"),
  4194. weight: math.unit(120, "lb"),
  4195. name: "Back",
  4196. image: {
  4197. source: "./media/characters/ona/back.svg"
  4198. }
  4199. },
  4200. foot: {
  4201. height: math.unit(1.1, "feet"),
  4202. name: "Foot",
  4203. image: {
  4204. source: "./media/characters/ona/foot.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(70, "km"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(681818, "miles")
  4217. },
  4218. {
  4219. name: "Examacro",
  4220. height: math.unit(3800000, "lightyears")
  4221. },
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(12, "feet"),
  4229. weight: math.unit(3000, "lb"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/mech/front.svg",
  4233. extra: 2900 / 2770,
  4234. bottom: 110 / 3010
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(12, "feet"),
  4239. weight: math.unit(3000, "lb"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/mech/back.svg",
  4243. extra: 3011 / 2890,
  4244. bottom: 94 / 3105
  4245. }
  4246. },
  4247. maw: {
  4248. height: math.unit(3.07, "feet"),
  4249. name: "Maw",
  4250. image: {
  4251. source: "./media/characters/mech/maw.svg"
  4252. }
  4253. },
  4254. head: {
  4255. height: math.unit(2.82, "feet"),
  4256. name: "Head",
  4257. image: {
  4258. source: "./media/characters/mech/head.svg"
  4259. }
  4260. },
  4261. dick: {
  4262. height: math.unit(1.43, "feet"),
  4263. name: "Dick",
  4264. image: {
  4265. source: "./media/characters/mech/dick.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(300, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(1500, "feet")
  4282. },
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(1.3, "meter"),
  4290. weight: math.unit(30, "kg"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/gregory/front.svg",
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(1.3, "meter"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(20, "meter")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2.8, "meter"),
  4314. weight: math.unit(200, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elory/front.svg",
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(2.8, "meter"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(38, "meter")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(470, "feet"),
  4338. weight: math.unit(924, "tons"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/angelpatamon/front.svg",
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(470, "feet"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Deity Size I",
  4353. height: math.unit(28651.2, "km")
  4354. },
  4355. {
  4356. name: "Deity Size II",
  4357. height: math.unit(171907.2, "km")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4363. {
  4364. side: {
  4365. height: math.unit(7.2, "meter"),
  4366. weight: math.unit(8.2, "tons"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/cryae/side.svg",
  4370. extra: 3500 / 1500
  4371. }
  4372. }
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(7.2, "meter"),
  4378. default: true
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(6, "feet"),
  4387. weight: math.unit(175, "lb"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/xera/front.svg",
  4391. extra: 2377 / 1972,
  4392. bottom: 75.5 / 2452
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(175, "lb"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/xera/side.svg",
  4401. extra: 2345 / 2019,
  4402. bottom: 39.7 / 2384
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/xera/back.svg",
  4411. extra: 2095 / 1984,
  4412. bottom: 67 / 2166
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Small",
  4419. height: math.unit(10, "feet")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(500, "meters"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Macro+",
  4428. height: math.unit(10, "km")
  4429. },
  4430. {
  4431. name: "Gigamacro",
  4432. height: math.unit(25000, "km")
  4433. },
  4434. {
  4435. name: "Teramacro",
  4436. height: math.unit(3e6, "km")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(175, "lb"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/nebula/front.svg",
  4449. extra: 2566 / 2362,
  4450. bottom: 81 / 2644
  4451. }
  4452. }
  4453. },
  4454. [
  4455. {
  4456. name: "Small",
  4457. height: math.unit(4.5, "meters")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(1500, "meters"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(150, "km")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(27000, "km")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(225, "lb"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/abysgar/front.svg"
  4483. }
  4484. }
  4485. },
  4486. [
  4487. {
  4488. name: "Small",
  4489. height: math.unit(4.5, "meters")
  4490. },
  4491. {
  4492. name: "Macro",
  4493. height: math.unit(1250, "meters"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(125, "km")
  4499. },
  4500. {
  4501. name: "Gigamacro",
  4502. height: math.unit(26000, "km")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(6, "feet"),
  4511. weight: math.unit(180, "lb"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/yakuz/front.svg"
  4515. }
  4516. }
  4517. },
  4518. [
  4519. {
  4520. name: "Small",
  4521. height: math.unit(5, "meters")
  4522. },
  4523. {
  4524. name: "Macro",
  4525. height: math.unit(1500, "meters"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(200, "km")
  4531. },
  4532. {
  4533. name: "Gigamacro",
  4534. height: math.unit(100000, "km")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(6, "feet"),
  4543. weight: math.unit(175, "lb"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/mirova/front.svg",
  4547. extra: 3334 / 3071,
  4548. bottom: 42 / 3375.6
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Small",
  4555. height: math.unit(5, "meters")
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(900, "meters"),
  4560. default: true
  4561. },
  4562. {
  4563. name: "Megamacro",
  4564. height: math.unit(135, "km")
  4565. },
  4566. {
  4567. name: "Gigamacro",
  4568. height: math.unit(20000, "km")
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4574. {
  4575. side: {
  4576. height: math.unit(28.35, "feet"),
  4577. weight: math.unit(99.75, "tons"),
  4578. name: "Side",
  4579. image: {
  4580. source: "./media/characters/asana-mech/side.svg",
  4581. extra: 923 / 699,
  4582. bottom: 50 / 975
  4583. }
  4584. },
  4585. chaingun: {
  4586. height: math.unit(7, "feet"),
  4587. weight: math.unit(2400, "lb"),
  4588. name: "Chaingun",
  4589. image: {
  4590. source: "./media/characters/asana-mech/chaingun.svg"
  4591. }
  4592. },
  4593. laser: {
  4594. height: math.unit(7.12, "feet"),
  4595. weight: math.unit(2000, "lb"),
  4596. name: "Laser",
  4597. image: {
  4598. source: "./media/characters/asana-mech/laser.svg"
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(28.35, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(2500, "feet")
  4611. },
  4612. {
  4613. name: "Megamacro",
  4614. height: math.unit(25, "miles")
  4615. },
  4616. {
  4617. name: "Examacro",
  4618. height: math.unit(6e8, "lightyears")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4624. {
  4625. front: {
  4626. height: math.unit(5, "meters"),
  4627. weight: math.unit(1000, "kg"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/asche/front.svg",
  4631. extra: 1258 / 1190,
  4632. bottom: 47 / 1305
  4633. }
  4634. },
  4635. frontUnderwear: {
  4636. height: math.unit(5, "meters"),
  4637. weight: math.unit(1000, "kg"),
  4638. name: "Front (Underwear)",
  4639. image: {
  4640. source: "./media/characters/asche/front-underwear.svg",
  4641. extra: 1258 / 1190,
  4642. bottom: 47 / 1305
  4643. }
  4644. },
  4645. frontDressed: {
  4646. height: math.unit(5, "meters"),
  4647. weight: math.unit(1000, "kg"),
  4648. name: "Front (Dressed)",
  4649. image: {
  4650. source: "./media/characters/asche/front-dressed.svg",
  4651. extra: 1258 / 1190,
  4652. bottom: 47 / 1305
  4653. }
  4654. },
  4655. frontArmor: {
  4656. height: math.unit(5, "meters"),
  4657. weight: math.unit(1000, "kg"),
  4658. name: "Front (Armored)",
  4659. image: {
  4660. source: "./media/characters/asche/front-armored.svg",
  4661. extra: 1374 / 1308,
  4662. bottom: 23 / 1397
  4663. }
  4664. },
  4665. mp724: {
  4666. height: math.unit(0.96, "meters"),
  4667. weight: math.unit(38, "kg"),
  4668. name: "H&K MP724",
  4669. image: {
  4670. source: "./media/characters/asche/h&k-mp724.svg"
  4671. }
  4672. },
  4673. side: {
  4674. height: math.unit(5, "meters"),
  4675. weight: math.unit(1000, "kg"),
  4676. name: "Side",
  4677. image: {
  4678. source: "./media/characters/asche/side.svg",
  4679. extra: 1717 / 1609,
  4680. bottom: 0.005
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(5, "meters"),
  4685. weight: math.unit(1000, "kg"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/asche/back.svg",
  4689. extra: 1570 / 1501
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "DEFCON 5",
  4696. height: math.unit(5, "meters")
  4697. },
  4698. {
  4699. name: "DEFCON 4",
  4700. height: math.unit(500, "meters"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "DEFCON 3",
  4705. height: math.unit(5, "km")
  4706. },
  4707. {
  4708. name: "DEFCON 2",
  4709. height: math.unit(500, "km")
  4710. },
  4711. {
  4712. name: "DEFCON 1",
  4713. height: math.unit(500000, "km")
  4714. },
  4715. {
  4716. name: "DEFCON 0",
  4717. height: math.unit(3, "gigaparsecs")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(2, "meters"),
  4726. weight: math.unit(76, "kg"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/gale/front.svg"
  4730. }
  4731. },
  4732. frontAlt1: {
  4733. height: math.unit(2, "meters"),
  4734. weight: math.unit(76, "kg"),
  4735. name: "Front (Alt 1)",
  4736. image: {
  4737. source: "./media/characters/gale/front-alt-1.svg"
  4738. }
  4739. },
  4740. frontAlt2: {
  4741. height: math.unit(2, "meters"),
  4742. weight: math.unit(76, "kg"),
  4743. name: "Front (Alt 2)",
  4744. image: {
  4745. source: "./media/characters/gale/front-alt-2.svg"
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(7, "feet")
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(150, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Macro+",
  4761. height: math.unit(300, "feet")
  4762. },
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(5 + 10/12, "feet"),
  4770. weight: math.unit(67, "kg"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/draylen/front.svg",
  4774. extra: 832/777,
  4775. bottom: 85/917
  4776. }
  4777. }
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(5 + 10/12, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(150, "feet"),
  4787. default: true
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4793. {
  4794. front: {
  4795. height: math.unit(7 + 9 / 12, "feet"),
  4796. weight: math.unit(379, "lbs"),
  4797. name: "Front",
  4798. image: {
  4799. source: "./media/characters/chez/front.svg"
  4800. }
  4801. },
  4802. side: {
  4803. height: math.unit(7 + 9 / 12, "feet"),
  4804. weight: math.unit(379, "lbs"),
  4805. name: "Side",
  4806. image: {
  4807. source: "./media/characters/chez/side.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(7 + 9 / 12, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "God King",
  4819. height: math.unit(9750000, "meters")
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(6, "feet"),
  4828. weight: math.unit(275, "lbs"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/kaylum/front.svg",
  4832. bottom: 0.01,
  4833. extra: 1166 / 1031
  4834. }
  4835. },
  4836. frontWingless: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(275, "lbs"),
  4839. name: "Front (Wingless)",
  4840. image: {
  4841. source: "./media/characters/kaylum/front-wingless.svg",
  4842. bottom: 0.01,
  4843. extra: 1117 / 1031
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(3.05, "meters")
  4851. },
  4852. {
  4853. name: "Master",
  4854. height: math.unit(5.5, "meters")
  4855. },
  4856. {
  4857. name: "Rampage",
  4858. height: math.unit(19, "meters")
  4859. },
  4860. {
  4861. name: "Macro Lite",
  4862. height: math.unit(37, "meters")
  4863. },
  4864. {
  4865. name: "Hyper Predator",
  4866. height: math.unit(61, "meters")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(138, "meters"),
  4871. default: true
  4872. }
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(5 + 5 / 12, "feet"),
  4880. weight: math.unit(120, "lbs"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/geta/front.svg",
  4884. extra: 1003/933,
  4885. bottom: 21/1024
  4886. }
  4887. },
  4888. paw: {
  4889. height: math.unit(0.35, "feet"),
  4890. name: "Paw",
  4891. image: {
  4892. source: "./media/characters/geta/paw.svg"
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Micro",
  4899. height: math.unit(3, "inches"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(5 + 5 / 12, "feet")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(300, "lbs"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/tyrnn/front.svg"
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Main Height",
  4923. height: math.unit(355, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Fave. Height",
  4928. height: math.unit(2400, "feet")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(300, "lbs"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/appledectomy/front.svg"
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(2500, "feet")
  4948. },
  4949. {
  4950. name: "Megamacro",
  4951. height: math.unit(50, "miles"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Gigamacro",
  4956. height: math.unit(5000, "miles")
  4957. },
  4958. {
  4959. name: "Teramacro",
  4960. height: math.unit(250000, "miles")
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4966. {
  4967. front: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(200, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/vulpes/front.svg",
  4973. extra: 573 / 543,
  4974. bottom: 0.033
  4975. }
  4976. },
  4977. side: {
  4978. height: math.unit(6, "feet"),
  4979. weight: math.unit(200, "lbs"),
  4980. name: "Side",
  4981. image: {
  4982. source: "./media/characters/vulpes/side.svg",
  4983. extra: 577 / 549,
  4984. bottom: 11 / 588
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(200, "lbs"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/vulpes/back.svg",
  4993. extra: 573 / 549,
  4994. bottom: 20 / 593
  4995. }
  4996. },
  4997. feet: {
  4998. height: math.unit(1.276, "feet"),
  4999. name: "Feet",
  5000. image: {
  5001. source: "./media/characters/vulpes/feet.svg"
  5002. }
  5003. },
  5004. maw: {
  5005. height: math.unit(1.18, "feet"),
  5006. name: "Maw",
  5007. image: {
  5008. source: "./media/characters/vulpes/maw.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Micro",
  5015. height: math.unit(2, "inches")
  5016. },
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(6.3, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(850, "feet")
  5024. },
  5025. {
  5026. name: "Megamacro",
  5027. height: math.unit(7500, "feet"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Gigamacro",
  5032. height: math.unit(570000, "miles")
  5033. }
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5038. {
  5039. front: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(210, "lbs"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/rain-fallen/front.svg"
  5045. }
  5046. },
  5047. side: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(210, "lbs"),
  5050. name: "Side",
  5051. image: {
  5052. source: "./media/characters/rain-fallen/side.svg"
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(210, "lbs"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/rain-fallen/back.svg"
  5061. }
  5062. },
  5063. feral: {
  5064. height: math.unit(9, "feet"),
  5065. weight: math.unit(700, "lbs"),
  5066. name: "Feral",
  5067. image: {
  5068. source: "./media/characters/rain-fallen/feral.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Meddling with Mortals",
  5075. height: math.unit(8 + 8/12, "feet")
  5076. },
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(5, "meter")
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(150, "meter"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Megamacro",
  5088. height: math.unit(278e6, "meter")
  5089. },
  5090. {
  5091. name: "Gigamacro",
  5092. height: math.unit(2e9, "meter")
  5093. },
  5094. {
  5095. name: "Teramacro",
  5096. height: math.unit(8e12, "meter")
  5097. },
  5098. {
  5099. name: "Devourer",
  5100. height: math.unit(14, "zettameters")
  5101. },
  5102. {
  5103. name: "Scarlet King",
  5104. height: math.unit(18, "yottameters")
  5105. },
  5106. {
  5107. name: "Void",
  5108. height: math.unit(1e88, "yottameters")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5114. {
  5115. standing: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(180, "lbs"),
  5118. name: "Standing",
  5119. image: {
  5120. source: "./media/characters/zaakira/standing.svg",
  5121. extra: 1599/1504,
  5122. bottom: 39/1638
  5123. }
  5124. },
  5125. laying: {
  5126. height: math.unit(3, "feet"),
  5127. weight: math.unit(180, "lbs"),
  5128. name: "Laying",
  5129. image: {
  5130. source: "./media/characters/zaakira/laying.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(12, "feet")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(279, "feet"),
  5142. default: true
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. femSfw: {
  5150. height: math.unit(8, "feet"),
  5151. weight: math.unit(350, "lb"),
  5152. name: "Fem",
  5153. image: {
  5154. source: "./media/characters/sigvald/fem-sfw.svg",
  5155. extra: 182 / 164,
  5156. bottom: 8.7 / 190.5
  5157. }
  5158. },
  5159. femNsfw: {
  5160. height: math.unit(8, "feet"),
  5161. weight: math.unit(350, "lb"),
  5162. name: "Fem (NSFW)",
  5163. image: {
  5164. source: "./media/characters/sigvald/fem-nsfw.svg",
  5165. extra: 182 / 164,
  5166. bottom: 8.7 / 190.5
  5167. }
  5168. },
  5169. maleNsfw: {
  5170. height: math.unit(8, "feet"),
  5171. weight: math.unit(350, "lb"),
  5172. name: "Male (NSFW)",
  5173. image: {
  5174. source: "./media/characters/sigvald/male-nsfw.svg",
  5175. extra: 182 / 164,
  5176. bottom: 8.7 / 190.5
  5177. }
  5178. },
  5179. hermNsfw: {
  5180. height: math.unit(8, "feet"),
  5181. weight: math.unit(350, "lb"),
  5182. name: "Herm (NSFW)",
  5183. image: {
  5184. source: "./media/characters/sigvald/herm-nsfw.svg",
  5185. extra: 182 / 164,
  5186. bottom: 8.7 / 190.5
  5187. }
  5188. },
  5189. dick: {
  5190. height: math.unit(2.36, "feet"),
  5191. name: "Dick",
  5192. image: {
  5193. source: "./media/characters/sigvald/dick.svg"
  5194. }
  5195. },
  5196. eye: {
  5197. height: math.unit(0.31, "feet"),
  5198. name: "Eye",
  5199. image: {
  5200. source: "./media/characters/sigvald/eye.svg"
  5201. }
  5202. },
  5203. mouth: {
  5204. height: math.unit(0.92, "feet"),
  5205. name: "Mouth",
  5206. image: {
  5207. source: "./media/characters/sigvald/mouth.svg"
  5208. }
  5209. },
  5210. paws: {
  5211. height: math.unit(2.2, "feet"),
  5212. name: "Paws",
  5213. image: {
  5214. source: "./media/characters/sigvald/paws.svg"
  5215. }
  5216. }
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(8, "feet")
  5222. },
  5223. {
  5224. name: "Large",
  5225. height: math.unit(12, "feet")
  5226. },
  5227. {
  5228. name: "Larger",
  5229. height: math.unit(20, "feet")
  5230. },
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(150, "feet")
  5234. },
  5235. {
  5236. name: "Macro+",
  5237. height: math.unit(200, "feet"),
  5238. default: true
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5244. {
  5245. side: {
  5246. height: math.unit(12, "feet"),
  5247. weight: math.unit(2000, "kg"),
  5248. name: "Side",
  5249. image: {
  5250. source: "./media/characters/scott/side.svg",
  5251. extra: 754 / 724,
  5252. bottom: 0.069
  5253. }
  5254. },
  5255. upright: {
  5256. height: math.unit(12, "feet"),
  5257. weight: math.unit(2000, "kg"),
  5258. name: "Upright",
  5259. image: {
  5260. source: "./media/characters/scott/upright.svg",
  5261. extra: 3881 / 3722,
  5262. bottom: 0.05
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(12, "feet"),
  5270. default: true
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5276. {
  5277. side: {
  5278. height: math.unit(8, "meters"),
  5279. weight: math.unit(84755, "lbs"),
  5280. name: "Side",
  5281. image: {
  5282. source: "./media/characters/tobias/side.svg",
  5283. extra: 1474 / 1096,
  5284. bottom: 38.9 / 1513.1235
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(8, "meters"),
  5292. default: true
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5298. {
  5299. front: {
  5300. height: math.unit(5.5, "feet"),
  5301. weight: math.unit(400, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/kieran/front.svg",
  5305. extra: 2694 / 2364,
  5306. bottom: 217 / 2908
  5307. }
  5308. },
  5309. side: {
  5310. height: math.unit(5.5, "feet"),
  5311. weight: math.unit(400, "lbs"),
  5312. name: "Side",
  5313. image: {
  5314. source: "./media/characters/kieran/side.svg",
  5315. extra: 875 / 777,
  5316. bottom: 84.6 / 959
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(5.5, "feet"),
  5324. default: true
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5330. {
  5331. side: {
  5332. height: math.unit(2, "meters"),
  5333. weight: math.unit(70, "kg"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/sanya/side.svg",
  5337. bottom: 0.02,
  5338. extra: 1.02
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Small",
  5345. height: math.unit(2, "meters")
  5346. },
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(3, "meters")
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(16, "meters"),
  5354. default: true
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(2, "meters"),
  5363. weight: math.unit(120, "kg"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/miranda/front.svg",
  5367. extra: 195 / 185,
  5368. bottom: 10.9 / 206.5
  5369. }
  5370. },
  5371. back: {
  5372. height: math.unit(2, "meters"),
  5373. weight: math.unit(120, "kg"),
  5374. name: "Back",
  5375. image: {
  5376. source: "./media/characters/miranda/back.svg",
  5377. extra: 201 / 193,
  5378. bottom: 2.3 / 203.7
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(10, "feet"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "James", species: ["deer"], tags: ["anthro"] },
  5392. {
  5393. side: {
  5394. height: math.unit(2, "meters"),
  5395. weight: math.unit(100, "kg"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/james/front.svg",
  5399. extra: 10 / 8.5
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(8.5, "feet"),
  5407. default: true
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5413. {
  5414. side: {
  5415. height: math.unit(9.5, "feet"),
  5416. weight: math.unit(2500, "lbs"),
  5417. name: "Side",
  5418. image: {
  5419. source: "./media/characters/heather/side.svg"
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(9.5, "feet"),
  5427. default: true
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5433. {
  5434. side: {
  5435. height: math.unit(6.5, "feet"),
  5436. weight: math.unit(400, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/lukas/side.svg",
  5440. extra: 7.25 / 6.5
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(6.5, "feet"),
  5448. default: true
  5449. }
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5454. {
  5455. side: {
  5456. height: math.unit(5, "feet"),
  5457. weight: math.unit(3000, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/louise/side.svg"
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5474. {
  5475. side: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(150, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/ramona/side.svg",
  5481. extra: 871/854,
  5482. bottom: 41/912
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(5.3, "meters"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Macro",
  5494. height: math.unit(20, "stories")
  5495. },
  5496. {
  5497. name: "Macro+",
  5498. height: math.unit(50, "stories")
  5499. },
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5504. {
  5505. standing: {
  5506. height: math.unit(5.75, "feet"),
  5507. weight: math.unit(160, "lbs"),
  5508. name: "Standing",
  5509. image: {
  5510. source: "./media/characters/deerpuff/standing.svg",
  5511. extra: 682 / 624
  5512. }
  5513. },
  5514. sitting: {
  5515. height: math.unit(5.75 / 1.79, "feet"),
  5516. weight: math.unit(160, "lbs"),
  5517. name: "Sitting",
  5518. image: {
  5519. source: "./media/characters/deerpuff/sitting.svg",
  5520. bottom: 44 / 400,
  5521. extra: 1
  5522. }
  5523. },
  5524. taurLaying: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(400, "lbs"),
  5527. name: "Taur (Laying)",
  5528. image: {
  5529. source: "./media/characters/deerpuff/taur-laying.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Puffball",
  5536. height: math.unit(6, "inches")
  5537. },
  5538. {
  5539. name: "Normalpuff",
  5540. height: math.unit(5.75, "feet")
  5541. },
  5542. {
  5543. name: "Macropuff",
  5544. height: math.unit(1500, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Megapuff",
  5549. height: math.unit(500, "miles")
  5550. },
  5551. {
  5552. name: "Gigapuff",
  5553. height: math.unit(250000, "miles")
  5554. },
  5555. {
  5556. name: "Omegapuff",
  5557. height: math.unit(1000, "lightyears")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5563. {
  5564. stomping: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(170, "lbs"),
  5567. name: "Stomping",
  5568. image: {
  5569. source: "./media/characters/vivian/stomping.svg"
  5570. }
  5571. },
  5572. sitting: {
  5573. height: math.unit(6 / 1.75, "feet"),
  5574. weight: math.unit(170, "lbs"),
  5575. name: "Sitting",
  5576. image: {
  5577. source: "./media/characters/vivian/sitting.svg",
  5578. bottom: 1 / 6.4,
  5579. extra: 1,
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(7, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(10, "stories")
  5592. },
  5593. {
  5594. name: "Macro+",
  5595. height: math.unit(30, "stories")
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(10, "miles")
  5600. },
  5601. {
  5602. name: "Megamacro+",
  5603. height: math.unit(2750000, "meters")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(160, "lbs"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/prince/front.svg",
  5616. extra: 3400 / 3000
  5617. }
  5618. },
  5619. jumping: {
  5620. height: math.unit(6, "feet"),
  5621. weight: math.unit(160, "lbs"),
  5622. name: "Jumping",
  5623. image: {
  5624. source: "./media/characters/prince/jump.svg",
  5625. extra: 2555 / 2134
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(7.75, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Not cute",
  5637. height: math.unit(17, "feet")
  5638. },
  5639. {
  5640. name: "I said NOT",
  5641. height: math.unit(91, "feet")
  5642. },
  5643. {
  5644. name: "Please stop",
  5645. height: math.unit(560, "feet")
  5646. },
  5647. {
  5648. name: "What have you done",
  5649. height: math.unit(2200, "feet")
  5650. },
  5651. {
  5652. name: "Deer God",
  5653. height: math.unit(3.6, "miles")
  5654. },
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5659. {
  5660. standing: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(300, "lbs"),
  5663. name: "Standing",
  5664. image: {
  5665. source: "./media/characters/psymon/standing.svg",
  5666. extra: 1888 / 1810,
  5667. bottom: 0.05
  5668. }
  5669. },
  5670. slithering: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(300, "lbs"),
  5673. name: "Slithering",
  5674. image: {
  5675. source: "./media/characters/psymon/slithering.svg",
  5676. extra: 1330 / 1224
  5677. }
  5678. },
  5679. slitheringAlt: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(300, "lbs"),
  5682. name: "Slithering (Alt)",
  5683. image: {
  5684. source: "./media/characters/psymon/slithering-alt.svg",
  5685. extra: 1330 / 1224
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(11.25, "feet"),
  5693. default: true
  5694. },
  5695. {
  5696. name: "Large",
  5697. height: math.unit(27, "feet")
  5698. },
  5699. {
  5700. name: "Giant",
  5701. height: math.unit(87, "feet")
  5702. },
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(365, "feet")
  5706. },
  5707. {
  5708. name: "Megamacro",
  5709. height: math.unit(3, "miles")
  5710. },
  5711. {
  5712. name: "World Serpent",
  5713. height: math.unit(8000, "miles")
  5714. },
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5719. {
  5720. front: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/daimos/front.svg",
  5726. extra: 4160 / 3897,
  5727. bottom: 0.021
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(8, "feet"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Big Dog",
  5739. height: math.unit(22, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(127, "feet")
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(3600, "feet")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5753. {
  5754. side: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(180, "lbs"),
  5757. name: "Side",
  5758. image: {
  5759. source: "./media/characters/blake/side.svg",
  5760. extra: 1212 / 1120,
  5761. bottom: 0.05
  5762. }
  5763. },
  5764. crouched: {
  5765. height: math.unit(6 * 0.57, "feet"),
  5766. weight: math.unit(180, "lbs"),
  5767. name: "Crouched",
  5768. image: {
  5769. source: "./media/characters/blake/crouched.svg",
  5770. extra: 840 / 587,
  5771. bottom: 0.04
  5772. }
  5773. },
  5774. bent: {
  5775. height: math.unit(6 * 0.75, "feet"),
  5776. weight: math.unit(180, "lbs"),
  5777. name: "Bent",
  5778. image: {
  5779. source: "./media/characters/blake/bent.svg",
  5780. extra: 592 / 544,
  5781. bottom: 0.035
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(8 + 1 / 6, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Big Backside",
  5793. height: math.unit(37, "feet")
  5794. },
  5795. {
  5796. name: "Subway Shredder",
  5797. height: math.unit(72, "feet")
  5798. },
  5799. {
  5800. name: "City Carver",
  5801. height: math.unit(1675, "feet")
  5802. },
  5803. {
  5804. name: "Tectonic Tweaker",
  5805. height: math.unit(2300, "miles")
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/guisetto/front.svg",
  5818. extra: 856 / 817,
  5819. bottom: 0.06
  5820. }
  5821. },
  5822. airborne: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(180, "lbs"),
  5825. name: "Airborne",
  5826. image: {
  5827. source: "./media/characters/guisetto/airborne.svg",
  5828. extra: 584 / 525
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(10 + 11 / 12, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Large",
  5840. height: math.unit(35, "feet")
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(475, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(180, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/luxor/front.svg",
  5857. extra: 2940 / 2152
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(180, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/luxor/back.svg",
  5866. extra: 1083 / 960
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(5 + 5 / 6, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Lamp",
  5878. height: math.unit(50, "feet")
  5879. },
  5880. {
  5881. name: "Lämp",
  5882. height: math.unit(300, "feet")
  5883. },
  5884. {
  5885. name: "The sun is a lamp",
  5886. height: math.unit(250000, "miles")
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5892. {
  5893. front: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(50, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/huoyan/front.svg"
  5899. }
  5900. },
  5901. side: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(180, "lbs"),
  5904. name: "Side",
  5905. image: {
  5906. source: "./media/characters/huoyan/side.svg"
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Chef",
  5913. height: math.unit(9, "feet")
  5914. },
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(65, "feet"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(780, "feet")
  5923. },
  5924. {
  5925. name: "Flaming Mountain",
  5926. height: math.unit(4.8, "miles")
  5927. },
  5928. {
  5929. name: "Celestial",
  5930. height: math.unit(765000, "miles")
  5931. },
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(5 + 3 / 4, "feet"),
  5939. weight: math.unit(120, "lbs"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/tails/front.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(5 + 3 / 4, "feet"),
  5950. default: true
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(4, "feet"),
  5959. weight: math.unit(50, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/rainy/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(800, "feet"),
  5970. default: true
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(6, "feet"),
  5979. weight: math.unit(150, "lbs"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/rainier/front.svg"
  5983. }
  5984. }
  5985. },
  5986. [
  5987. {
  5988. name: "Micro",
  5989. height: math.unit(2, "mm"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(8 + 4/12, "feet"),
  5999. weight: math.unit(450, "kilograms"),
  6000. volume: math.unit(5, "cups"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/andy-renard/front.svg",
  6004. extra: 1839/1726,
  6005. bottom: 134/1973
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(8 + 4/12, "feet"),
  6010. weight: math.unit(450, "kilograms"),
  6011. volume: math.unit(5, "cups"),
  6012. name: "Back",
  6013. image: {
  6014. source: "./media/characters/andy-renard/back.svg",
  6015. extra: 1838/1710,
  6016. bottom: 105/1943
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Tall",
  6023. height: math.unit(8 + 4/12, "feet")
  6024. },
  6025. {
  6026. name: "Mini Macro",
  6027. height: math.unit(15, "feet"),
  6028. default: true
  6029. },
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(100, "feet")
  6033. },
  6034. {
  6035. name: "Mega Macro",
  6036. height: math.unit(1000, "feet")
  6037. },
  6038. {
  6039. name: "Giga Macro",
  6040. height: math.unit(10, "miles")
  6041. },
  6042. {
  6043. name: "God Macro",
  6044. height: math.unit(1, "multiverse")
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(210, "lbs"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/cimmaron/front-sfw.svg",
  6057. extra: 701 / 676,
  6058. bottom: 0.046
  6059. }
  6060. },
  6061. back: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(210, "lbs"),
  6064. name: "Back",
  6065. image: {
  6066. source: "./media/characters/cimmaron/back-sfw.svg",
  6067. extra: 701 / 676,
  6068. bottom: 0.046
  6069. }
  6070. },
  6071. frontNsfw: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(210, "lbs"),
  6074. name: "Front (NSFW)",
  6075. image: {
  6076. source: "./media/characters/cimmaron/front-nsfw.svg",
  6077. extra: 701 / 676,
  6078. bottom: 0.046
  6079. }
  6080. },
  6081. backNsfw: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(210, "lbs"),
  6084. name: "Back (NSFW)",
  6085. image: {
  6086. source: "./media/characters/cimmaron/back-nsfw.svg",
  6087. extra: 701 / 676,
  6088. bottom: 0.046
  6089. }
  6090. },
  6091. dick: {
  6092. height: math.unit(1.714, "feet"),
  6093. name: "Dick",
  6094. image: {
  6095. source: "./media/characters/cimmaron/dick.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(6, "feet"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Macro Mayor",
  6107. height: math.unit(350, "meters")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(200, "lbs"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/akari/front.svg",
  6120. extra: 962 / 901,
  6121. bottom: 0.04
  6122. }
  6123. }
  6124. },
  6125. [
  6126. {
  6127. name: "Micro",
  6128. height: math.unit(5, "inches"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(7, "feet")
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(140, "lbs"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/cynosura/front.svg",
  6146. extra: 896 / 847
  6147. }
  6148. },
  6149. back: {
  6150. height: math.unit(6, "feet"),
  6151. weight: math.unit(140, "lbs"),
  6152. name: "Back",
  6153. image: {
  6154. source: "./media/characters/cynosura/back.svg",
  6155. extra: 1365 / 1250
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Micro",
  6162. height: math.unit(4, "inches")
  6163. },
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(5.75, "feet"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Tall",
  6171. height: math.unit(10, "feet")
  6172. },
  6173. {
  6174. name: "Big",
  6175. height: math.unit(20, "feet")
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(50, "feet")
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(13 + 2/12, "feet"),
  6188. weight: math.unit(800, "kg"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/gin/front.svg",
  6192. extra: 1312/1191,
  6193. bottom: 45/1357
  6194. }
  6195. },
  6196. mouth: {
  6197. height: math.unit(2.39 * 1.8, "feet"),
  6198. name: "Mouth",
  6199. image: {
  6200. source: "./media/characters/gin/mouth.svg"
  6201. }
  6202. },
  6203. hand: {
  6204. height: math.unit(1.57 * 2.19, "feet"),
  6205. name: "Hand",
  6206. image: {
  6207. source: "./media/characters/gin/hand.svg"
  6208. }
  6209. },
  6210. foot: {
  6211. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6212. name: "Foot",
  6213. image: {
  6214. source: "./media/characters/gin/foot.svg"
  6215. }
  6216. },
  6217. sole: {
  6218. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6219. name: "Sole",
  6220. image: {
  6221. source: "./media/characters/gin/sole.svg"
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Very Small",
  6228. height: math.unit(13 + 2 / 12, "feet")
  6229. },
  6230. {
  6231. name: "Micro",
  6232. height: math.unit(600, "miles")
  6233. },
  6234. {
  6235. name: "Regular",
  6236. height: math.unit(20, "earths"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(2.2, "solarradii")
  6242. },
  6243. {
  6244. name: "Teramacro",
  6245. height: math.unit(1.2, "galaxies")
  6246. },
  6247. {
  6248. name: "Omegamacro",
  6249. height: math.unit(200, "universes")
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(6 + 1 / 6, "feet"),
  6258. weight: math.unit(178, "lbs"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/guy/front.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(6 + 1 / 6, "feet"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Large",
  6273. height: math.unit(25 + 7 / 12, "feet")
  6274. },
  6275. {
  6276. name: "Macro",
  6277. height: math.unit(60 + 9 / 12, "feet")
  6278. },
  6279. {
  6280. name: "Macro+",
  6281. height: math.unit(246, "feet")
  6282. },
  6283. {
  6284. name: "Macro++",
  6285. height: math.unit(878, "feet")
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(9, "feet"),
  6294. weight: math.unit(800, "lbs"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/tiberius/front.svg",
  6298. extra: 2295 / 2071
  6299. }
  6300. },
  6301. back: {
  6302. height: math.unit(9, "feet"),
  6303. weight: math.unit(800, "lbs"),
  6304. name: "Back",
  6305. image: {
  6306. source: "./media/characters/tiberius/back.svg",
  6307. extra: 2373 / 2160
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(9, "feet"),
  6315. default: true
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6321. {
  6322. front: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(600, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/surgo/front.svg",
  6328. extra: 3591 / 2227
  6329. }
  6330. },
  6331. back: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(600, "lbs"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/surgo/back.svg",
  6337. extra: 3557 / 2228
  6338. }
  6339. },
  6340. laying: {
  6341. height: math.unit(6 * 0.85, "feet"),
  6342. weight: math.unit(600, "lbs"),
  6343. name: "Laying",
  6344. image: {
  6345. source: "./media/characters/surgo/laying.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(6, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6359. {
  6360. side: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(150, "lbs"),
  6363. name: "Side",
  6364. image: {
  6365. source: "./media/characters/cibus/side.svg",
  6366. extra: 800 / 400
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(6, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6380. {
  6381. front: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(240, "lbs"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/nibbles/front.svg"
  6387. }
  6388. },
  6389. side: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(240, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/nibbles/side.svg"
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(9, "feet"),
  6402. default: true
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6408. {
  6409. side: {
  6410. height: math.unit(5 + 1 / 6, "feet"),
  6411. weight: math.unit(130, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/rikky/side.svg",
  6415. extra: 851 / 801
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5 + 1 / 6, "feet")
  6423. },
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(152, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Megamacro",
  6431. height: math.unit(7, "miles")
  6432. }
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6437. {
  6438. side: {
  6439. height: math.unit(370, "cm"),
  6440. weight: math.unit(350, "lbs"),
  6441. name: "Side",
  6442. image: {
  6443. source: "./media/characters/malfressa/side.svg"
  6444. }
  6445. },
  6446. walking: {
  6447. height: math.unit(370, "cm"),
  6448. weight: math.unit(350, "lbs"),
  6449. name: "Walking",
  6450. image: {
  6451. source: "./media/characters/malfressa/walking.svg"
  6452. }
  6453. },
  6454. feral: {
  6455. height: math.unit(2500, "cm"),
  6456. weight: math.unit(100000, "lbs"),
  6457. name: "Feral",
  6458. image: {
  6459. source: "./media/characters/malfressa/feral.svg",
  6460. extra: 2108 / 837,
  6461. bottom: 0.02
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(370, "cm")
  6469. },
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(300, "meters"),
  6473. default: true
  6474. }
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(60, "kg"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/jaro/front.svg",
  6486. extra: 845/817,
  6487. bottom: 45/890
  6488. }
  6489. },
  6490. back: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(60, "kg"),
  6493. name: "Back",
  6494. image: {
  6495. source: "./media/characters/jaro/back.svg",
  6496. extra: 847/817,
  6497. bottom: 34/881
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Micro",
  6504. height: math.unit(7, "inches")
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(5.5, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Minimacro",
  6513. height: math.unit(20, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(200, "meters")
  6518. }
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(195, "lb"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/rogue/front.svg"
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Macro",
  6536. height: math.unit(90, "feet"),
  6537. default: true
  6538. },
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6543. {
  6544. standing: {
  6545. height: math.unit(5 + 8 / 12, "feet"),
  6546. weight: math.unit(140, "lb"),
  6547. name: "Standing",
  6548. image: {
  6549. source: "./media/characters/piper/standing.svg",
  6550. extra: 1440/1284,
  6551. bottom: 66/1506
  6552. }
  6553. },
  6554. running: {
  6555. height: math.unit(5 + 8 / 12, "feet"),
  6556. weight: math.unit(140, "lb"),
  6557. name: "Running",
  6558. image: {
  6559. source: "./media/characters/piper/running.svg",
  6560. extra: 3948/3655,
  6561. bottom: 0/3948
  6562. }
  6563. },
  6564. sole: {
  6565. height: math.unit(0.81, "feet"),
  6566. weight: math.unit(2, "kg"),
  6567. name: "Sole",
  6568. image: {
  6569. source: "./media/characters/piper/sole.svg"
  6570. }
  6571. },
  6572. nipple: {
  6573. height: math.unit(0.25, "feet"),
  6574. weight: math.unit(1.5, "lb"),
  6575. name: "Nipple",
  6576. image: {
  6577. source: "./media/characters/piper/nipple.svg"
  6578. }
  6579. },
  6580. head: {
  6581. height: math.unit(1.1, "feet"),
  6582. name: "Head",
  6583. image: {
  6584. source: "./media/characters/piper/head.svg"
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Micro",
  6591. height: math.unit(2, "inches")
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(5 + 8 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(250, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Megamacro",
  6604. height: math.unit(7, "miles")
  6605. },
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6610. {
  6611. front: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(220, "lb"),
  6614. name: "Front",
  6615. image: {
  6616. source: "./media/characters/gemini/front.svg"
  6617. }
  6618. },
  6619. back: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(220, "lb"),
  6622. name: "Back",
  6623. image: {
  6624. source: "./media/characters/gemini/back.svg"
  6625. }
  6626. },
  6627. kneeling: {
  6628. height: math.unit(6 / 1.5, "feet"),
  6629. weight: math.unit(220, "lb"),
  6630. name: "Kneeling",
  6631. image: {
  6632. source: "./media/characters/gemini/kneeling.svg",
  6633. bottom: 0.02
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(300, "meters"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Megamacro",
  6645. height: math.unit(6900, "meters")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6651. {
  6652. anthro: {
  6653. height: math.unit(2.35, "meters"),
  6654. weight: math.unit(73, "kg"),
  6655. name: "Anthro",
  6656. image: {
  6657. source: "./media/characters/alicia/anthro.svg",
  6658. extra: 2571 / 2385,
  6659. bottom: 75 / 2648
  6660. }
  6661. },
  6662. paw: {
  6663. height: math.unit(1.32, "feet"),
  6664. name: "Paw",
  6665. image: {
  6666. source: "./media/characters/alicia/paw.svg"
  6667. }
  6668. },
  6669. feral: {
  6670. height: math.unit(1.69, "meters"),
  6671. weight: math.unit(73, "kg"),
  6672. name: "Feral",
  6673. image: {
  6674. source: "./media/characters/alicia/feral.svg",
  6675. extra: 2123 / 1715,
  6676. bottom: 222 / 2349
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(2.35, "meters")
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(60, "meters"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Megamacro",
  6692. height: math.unit(10000, "kilometers")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(7, "feet"),
  6701. weight: math.unit(250, "lbs"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/archy/front.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Micro",
  6711. height: math.unit(1, "inch")
  6712. },
  6713. {
  6714. name: "Shorty",
  6715. height: math.unit(5, "feet")
  6716. },
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(7, "feet")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(600, "meters"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Megamacro",
  6728. height: math.unit(1, "mile")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(1.65, "meters"),
  6737. weight: math.unit(74, "kg"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/berri/front.svg",
  6741. extra: 857 / 837,
  6742. bottom: 18 / 877
  6743. }
  6744. },
  6745. bum: {
  6746. height: math.unit(1.46, "feet"),
  6747. name: "Bum",
  6748. image: {
  6749. source: "./media/characters/berri/bum.svg"
  6750. }
  6751. },
  6752. mouth: {
  6753. height: math.unit(0.44, "feet"),
  6754. name: "Mouth",
  6755. image: {
  6756. source: "./media/characters/berri/mouth.svg"
  6757. }
  6758. },
  6759. paw: {
  6760. height: math.unit(0.826, "feet"),
  6761. name: "Paw",
  6762. image: {
  6763. source: "./media/characters/berri/paw.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.65, "meters")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(60, "m"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Megamacro",
  6779. height: math.unit(9.213, "km")
  6780. },
  6781. {
  6782. name: "Planet Eater",
  6783. height: math.unit(489, "megameters")
  6784. },
  6785. {
  6786. name: "Teramacro",
  6787. height: math.unit(2471635000000, "meters")
  6788. },
  6789. {
  6790. name: "Examacro",
  6791. height: math.unit(8.0624e+26, "meters")
  6792. }
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(1.72, "meters"),
  6800. weight: math.unit(68, "kg"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/lexi/front.svg"
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Very Smol",
  6810. height: math.unit(10, "mm")
  6811. },
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(6.8, "cm"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(1.72, "m")
  6820. }
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(1.69, "meters"),
  6828. weight: math.unit(68, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/martin/front.svg",
  6832. extra: 596 / 581
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(6.85, "cm"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.69, "m")
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.69, "meters"),
  6853. weight: math.unit(68, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/juno/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(7, "cm")
  6864. },
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(1.89, "m")
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(353, "meters"),
  6872. default: true
  6873. }
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(1.93, "meters"),
  6881. weight: math.unit(83, "kg"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/samantha/front.svg"
  6885. }
  6886. },
  6887. frontClothed: {
  6888. height: math.unit(1.93, "meters"),
  6889. weight: math.unit(83, "kg"),
  6890. name: "Front (Clothed)",
  6891. image: {
  6892. source: "./media/characters/samantha/front-clothed.svg"
  6893. }
  6894. },
  6895. back: {
  6896. height: math.unit(1.93, "meters"),
  6897. weight: math.unit(83, "kg"),
  6898. name: "Back",
  6899. image: {
  6900. source: "./media/characters/samantha/back.svg"
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(1.93, "m")
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(74, "meters"),
  6912. default: true
  6913. },
  6914. {
  6915. name: "Macro+",
  6916. height: math.unit(223, "meters"),
  6917. },
  6918. {
  6919. name: "Megamacro",
  6920. height: math.unit(8381, "meters"),
  6921. },
  6922. {
  6923. name: "Megamacro+",
  6924. height: math.unit(12000, "kilometers")
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(1.92, "meters"),
  6933. weight: math.unit(80, "kg"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/dr-clay/front.svg"
  6937. }
  6938. },
  6939. frontClothed: {
  6940. height: math.unit(1.92, "meters"),
  6941. weight: math.unit(80, "kg"),
  6942. name: "Front (Clothed)",
  6943. image: {
  6944. source: "./media/characters/dr-clay/front-clothed.svg"
  6945. }
  6946. }
  6947. },
  6948. [
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(1.92, "m")
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(214, "meters"),
  6956. default: true
  6957. },
  6958. {
  6959. name: "Macro+",
  6960. height: math.unit(12.237, "meters"),
  6961. },
  6962. {
  6963. name: "Megamacro",
  6964. height: math.unit(557, "megameters"),
  6965. },
  6966. {
  6967. name: "Unimaginable",
  6968. height: math.unit(120e9, "lightyears")
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6974. {
  6975. front: {
  6976. height: math.unit(2, "meters"),
  6977. weight: math.unit(80, "kg"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6981. }
  6982. }
  6983. },
  6984. [
  6985. {
  6986. name: "Teramacro",
  6987. height: math.unit(500000, "lightyears"),
  6988. default: true
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6994. {
  6995. crux: {
  6996. height: math.unit(2, "meters"),
  6997. weight: math.unit(150, "kg"),
  6998. name: "Crux",
  6999. image: {
  7000. source: "./media/characters/vemus/crux.svg",
  7001. extra: 1074/936,
  7002. bottom: 23/1097
  7003. }
  7004. },
  7005. skunkTanuki: {
  7006. height: math.unit(2, "meters"),
  7007. weight: math.unit(150, "kg"),
  7008. name: "Skunk-Tanuki",
  7009. image: {
  7010. source: "./media/characters/vemus/skunk-tanuki.svg",
  7011. extra: 926/893,
  7012. bottom: 20/946
  7013. }
  7014. },
  7015. },
  7016. [
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(3.75, "meters"),
  7020. default: true
  7021. },
  7022. {
  7023. name: "Big",
  7024. height: math.unit(8, "meters")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(100, "meters")
  7029. },
  7030. {
  7031. name: "Macro+",
  7032. height: math.unit(1500, "meters")
  7033. },
  7034. {
  7035. name: "Stellar",
  7036. height: math.unit(14e8, "meters")
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(2, "meters"),
  7045. weight: math.unit(70, "kg"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/beherit/front.svg",
  7049. extra: 1234/1109,
  7050. bottom: 55/1289
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(6, "feet")
  7058. },
  7059. {
  7060. name: "Lorg",
  7061. height: math.unit(25, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Lorger",
  7066. height: math.unit(75, "feet")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(200, "meters")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(2, "meters"),
  7079. weight: math.unit(150, "kg"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/everett/front.svg",
  7083. extra: 1017/866,
  7084. bottom: 86/1103
  7085. }
  7086. },
  7087. paw: {
  7088. height: math.unit(2 / 3.6, "meters"),
  7089. name: "Paw",
  7090. image: {
  7091. source: "./media/characters/everett/paw.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(15, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Lorg",
  7103. height: math.unit(70, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Lorger",
  7108. height: math.unit(250, "feet")
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(500, "meters")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(2, "meters"),
  7121. weight: math.unit(86, "kg"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/rose/front.svg",
  7125. extra: 1785/1636,
  7126. bottom: 30/1815
  7127. },
  7128. form: "liom",
  7129. default: true
  7130. },
  7131. frontSporty: {
  7132. height: math.unit(2, "meters"),
  7133. weight: math.unit(86, "kg"),
  7134. name: "Front (Sporty)",
  7135. image: {
  7136. source: "./media/characters/rose/front-sporty.svg",
  7137. extra: 350/335,
  7138. bottom: 10/360
  7139. },
  7140. form: "liom"
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(1.6, "meters"),
  7144. weight: math.unit(86, "kg"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/rose/front-alt.svg",
  7148. extra: 299/283,
  7149. bottom: 3/302
  7150. },
  7151. form: "liom"
  7152. },
  7153. plush: {
  7154. height: math.unit(2, "meters"),
  7155. weight: math.unit(86/3, "kg"),
  7156. name: "Plush",
  7157. image: {
  7158. source: "./media/characters/rose/plush.svg",
  7159. extra: 361/337,
  7160. bottom: 11/372
  7161. },
  7162. form: "plush",
  7163. default: true
  7164. },
  7165. faeStanding: {
  7166. height: math.unit(10, "cm"),
  7167. weight: math.unit(10, "grams"),
  7168. name: "Standing",
  7169. image: {
  7170. source: "./media/characters/rose/fae-standing.svg",
  7171. extra: 1189/1060,
  7172. bottom: 27/1216
  7173. },
  7174. form: "fae",
  7175. default: true
  7176. },
  7177. faeSitting: {
  7178. height: math.unit(5, "cm"),
  7179. weight: math.unit(10, "grams"),
  7180. name: "Sitting",
  7181. image: {
  7182. source: "./media/characters/rose/fae-sitting.svg",
  7183. extra: 737/577,
  7184. bottom: 356/1093
  7185. },
  7186. form: "fae"
  7187. },
  7188. faePaw: {
  7189. height: math.unit(1.35, "cm"),
  7190. name: "Paw",
  7191. image: {
  7192. source: "./media/characters/rose/fae-paw.svg"
  7193. },
  7194. form: "fae"
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "True Micro",
  7200. height: math.unit(9, "cm"),
  7201. form: "liom"
  7202. },
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(16, "cm"),
  7206. form: "liom"
  7207. },
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(1.85, "meters"),
  7211. default: true,
  7212. form: "liom"
  7213. },
  7214. {
  7215. name: "Mini-Macro",
  7216. height: math.unit(5, "meters"),
  7217. form: "liom"
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(15, "meters"),
  7222. form: "liom"
  7223. },
  7224. {
  7225. name: "True Macro",
  7226. height: math.unit(40, "meters"),
  7227. form: "liom"
  7228. },
  7229. {
  7230. name: "City Scale",
  7231. height: math.unit(1, "km"),
  7232. form: "liom"
  7233. },
  7234. {
  7235. name: "Plushie",
  7236. height: math.unit(9, "cm"),
  7237. form: "plush",
  7238. default: true
  7239. },
  7240. {
  7241. name: "Fae",
  7242. height: math.unit(10, "cm"),
  7243. form: "fae",
  7244. default: true
  7245. },
  7246. ],
  7247. {
  7248. "liom": {
  7249. name: "Liom"
  7250. },
  7251. "plush": {
  7252. name: "Plush"
  7253. },
  7254. "fae": {
  7255. name: "Fae Fox",
  7256. default: true
  7257. }
  7258. }
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(350, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/regal/front.svg"
  7269. }
  7270. },
  7271. back: {
  7272. height: math.unit(2, "meters"),
  7273. weight: math.unit(350, "lbs"),
  7274. name: "Back",
  7275. image: {
  7276. source: "./media/characters/regal/back.svg"
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(350, "feet"),
  7284. default: true
  7285. }
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(4 + 11 / 12, "feet"),
  7293. weight: math.unit(100, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/opal/front.svg"
  7297. }
  7298. },
  7299. frontAlt: {
  7300. height: math.unit(4 + 11 / 12, "feet"),
  7301. weight: math.unit(100, "lbs"),
  7302. name: "Front (Alt)",
  7303. image: {
  7304. source: "./media/characters/opal/front-alt.svg"
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Small",
  7311. height: math.unit(4 + 11 / 12, "feet")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(20, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(120, "feet")
  7321. },
  7322. {
  7323. name: "Megamacro",
  7324. height: math.unit(80, "miles")
  7325. },
  7326. {
  7327. name: "True Size",
  7328. height: math.unit(100000, "lightyears")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(200, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/vector-wuff/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(2.8, "meters")
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(450, "meters"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Megamacro",
  7356. height: math.unit(15, "kilometers")
  7357. }
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(256, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/dannik/front.svg"
  7369. }
  7370. }
  7371. },
  7372. [
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(69.57, "meters"),
  7376. default: true
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(120, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/azura-saharah/front.svg"
  7389. }
  7390. },
  7391. back: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(120, "lbs"),
  7394. name: "Back",
  7395. image: {
  7396. source: "./media/characters/azura-saharah/back.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(100, "feet"),
  7404. default: true
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7410. {
  7411. side: {
  7412. height: math.unit(5 + 4 / 12, "feet"),
  7413. weight: math.unit(163, "lbs"),
  7414. name: "Side",
  7415. image: {
  7416. source: "./media/characters/kennedy/side.svg"
  7417. }
  7418. }
  7419. },
  7420. [
  7421. {
  7422. name: "Standard Doggo",
  7423. height: math.unit(5 + 4 / 12, "feet")
  7424. },
  7425. {
  7426. name: "Big Doggo",
  7427. height: math.unit(25 + 3 / 12, "feet"),
  7428. default: true
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(5 + 5/12, "feet"),
  7437. weight: math.unit(100, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/odios-de-lunar/front.svg",
  7441. extra: 1468/1323,
  7442. bottom: 22/1490
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(3, "inches")
  7450. },
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(5.5, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(100, "feet")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7464. {
  7465. back: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(220, "lbs"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/mandake/back.svg"
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(7, "feet"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(78, "feet")
  7483. },
  7484. {
  7485. name: "Macro+",
  7486. height: math.unit(300, "meters")
  7487. },
  7488. {
  7489. name: "Macro++",
  7490. height: math.unit(2400, "feet")
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(5167, "meters")
  7495. },
  7496. {
  7497. name: "Gigamacro",
  7498. height: math.unit(41769, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(6, "feet"),
  7507. weight: math.unit(120, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/yozey/front.svg"
  7511. }
  7512. },
  7513. frontAlt: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(120, "lbs"),
  7516. name: "Front (Alt)",
  7517. image: {
  7518. source: "./media/characters/yozey/front-alt.svg"
  7519. }
  7520. },
  7521. side: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(120, "lbs"),
  7524. name: "Side",
  7525. image: {
  7526. source: "./media/characters/yozey/side.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(3, "inches"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(6, "feet")
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(103, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/valeska-voss/front.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Mini-Sized Sub",
  7557. height: math.unit(3.1, "inches")
  7558. },
  7559. {
  7560. name: "Mid-Sized Sub",
  7561. height: math.unit(6.2, "inches")
  7562. },
  7563. {
  7564. name: "Full-Sized Sub",
  7565. height: math.unit(9.3, "inches")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(5 + 2 / 12, "foot"),
  7570. default: true
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(160, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/gene-zeta/front.svg",
  7583. extra: 3006 / 2826,
  7584. bottom: 182 / 3188
  7585. }
  7586. }
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(6, "inches")
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5 + 11 / 12, "foot"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(140, "feet")
  7601. },
  7602. {
  7603. name: "Supercharged",
  7604. height: math.unit(2500, "feet")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(350, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/razinox/front.svg",
  7617. extra: 1686 / 1548,
  7618. bottom: 28.2 / 1868
  7619. }
  7620. },
  7621. back: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(350, "lbs"),
  7624. name: "Back",
  7625. image: {
  7626. source: "./media/characters/razinox/back.svg",
  7627. extra: 1660 / 1590,
  7628. bottom: 15 / 1665
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(10 + 8 / 12, "foot")
  7636. },
  7637. {
  7638. name: "Minimacro",
  7639. height: math.unit(15, "foot")
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(60, "foot"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Megamacro",
  7648. height: math.unit(5, "miles")
  7649. },
  7650. {
  7651. name: "Gigamacro",
  7652. height: math.unit(6000, "miles")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(150, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/cobalt/front.svg"
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(8 + 1 / 12, "foot")
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(111, "foot"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Supracosmic",
  7680. height: math.unit(1e42, "feet")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(5, "inches"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/amanda/front.svg",
  7692. extra: 926/791,
  7693. bottom: 38/964
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(5, "inches"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/amanda/back.svg",
  7701. extra: 909/805,
  7702. bottom: 43/952
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Micro",
  7709. height: math.unit(5, "inches"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(2.75, "meters"),
  7719. weight: math.unit(1200, "lb"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/teal/front.svg",
  7723. extra: 2463 / 2320,
  7724. bottom: 166 / 2629
  7725. }
  7726. },
  7727. back: {
  7728. height: math.unit(2.75, "meters"),
  7729. weight: math.unit(1200, "lb"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/teal/back.svg",
  7733. extra: 2580 / 2489,
  7734. bottom: 151 / 2731
  7735. }
  7736. },
  7737. sitting: {
  7738. height: math.unit(1.9, "meters"),
  7739. weight: math.unit(1200, "lb"),
  7740. name: "Sitting",
  7741. image: {
  7742. source: "./media/characters/teal/sitting.svg",
  7743. extra: 623 / 590,
  7744. bottom: 121 / 744
  7745. }
  7746. },
  7747. standing: {
  7748. height: math.unit(2.75, "meters"),
  7749. weight: math.unit(1200, "lb"),
  7750. name: "Standing",
  7751. image: {
  7752. source: "./media/characters/teal/standing.svg",
  7753. extra: 923 / 893,
  7754. bottom: 60 / 983
  7755. }
  7756. },
  7757. stretching: {
  7758. height: math.unit(3.65, "meters"),
  7759. weight: math.unit(1200, "lb"),
  7760. name: "Stretching",
  7761. image: {
  7762. source: "./media/characters/teal/stretching.svg",
  7763. extra: 1276 / 1244,
  7764. bottom: 0 / 1276
  7765. }
  7766. },
  7767. legged: {
  7768. height: math.unit(1.3, "meters"),
  7769. weight: math.unit(100, "lb"),
  7770. name: "Legged",
  7771. image: {
  7772. source: "./media/characters/teal/legged.svg",
  7773. extra: 462 / 437,
  7774. bottom: 24 / 486
  7775. }
  7776. },
  7777. naga: {
  7778. height: math.unit(5.4, "meters"),
  7779. weight: math.unit(4000, "lb"),
  7780. name: "Naga",
  7781. image: {
  7782. source: "./media/characters/teal/naga.svg",
  7783. extra: 1902 / 1858,
  7784. bottom: 0 / 1902
  7785. }
  7786. },
  7787. hand: {
  7788. height: math.unit(0.52, "meters"),
  7789. name: "Hand",
  7790. image: {
  7791. source: "./media/characters/teal/hand.svg"
  7792. }
  7793. },
  7794. maw: {
  7795. height: math.unit(0.43, "meters"),
  7796. name: "Maw",
  7797. image: {
  7798. source: "./media/characters/teal/maw.svg"
  7799. }
  7800. },
  7801. slit: {
  7802. height: math.unit(0.25, "meters"),
  7803. name: "Slit",
  7804. image: {
  7805. source: "./media/characters/teal/slit.svg"
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(2.75, "meters"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(300, "feet")
  7818. },
  7819. {
  7820. name: "Macro+",
  7821. height: math.unit(2000, "feet")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7827. {
  7828. frontCat: {
  7829. height: math.unit(6, "feet"),
  7830. weight: math.unit(180, "lbs"),
  7831. name: "Front (Cat)",
  7832. image: {
  7833. source: "./media/characters/ravin-amulet/front-cat.svg"
  7834. }
  7835. },
  7836. frontCatAlt: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(180, "lbs"),
  7839. name: "Front (Alt, Cat)",
  7840. image: {
  7841. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7842. }
  7843. },
  7844. frontWerewolf: {
  7845. height: math.unit(6 * 1.2, "feet"),
  7846. weight: math.unit(225, "lbs"),
  7847. name: "Front (Werewolf)",
  7848. image: {
  7849. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7850. }
  7851. },
  7852. backWerewolf: {
  7853. height: math.unit(6 * 1.2, "feet"),
  7854. weight: math.unit(225, "lbs"),
  7855. name: "Back (Werewolf)",
  7856. image: {
  7857. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Nano",
  7864. height: math.unit(1, "micrometer")
  7865. },
  7866. {
  7867. name: "Micro",
  7868. height: math.unit(1, "inch")
  7869. },
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(6, "feet"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(60, "feet")
  7878. }
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(165, "lbs"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/fluoresce/front.svg"
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(6, "cm")
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(5 + 7 / 12, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(56, "feet")
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(1.9, "miles")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(9 + 6 / 12, "feet"),
  7918. weight: math.unit(523, "lbs"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/aurora/side.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(9 + 6 / 12, "feet")
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(96, "feet"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Macro+",
  7937. height: math.unit(243, "feet")
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(194, "cm"),
  7946. weight: math.unit(90, "kg"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/ranek/front.svg",
  7950. extra: 1862/1791,
  7951. bottom: 80/1942
  7952. }
  7953. },
  7954. back: {
  7955. height: math.unit(194, "cm"),
  7956. weight: math.unit(90, "kg"),
  7957. name: "Back",
  7958. image: {
  7959. source: "./media/characters/ranek/back.svg",
  7960. extra: 1853/1787,
  7961. bottom: 74/1927
  7962. }
  7963. },
  7964. feral: {
  7965. height: math.unit(30, "cm"),
  7966. weight: math.unit(1.6, "lbs"),
  7967. name: "Feral",
  7968. image: {
  7969. source: "./media/characters/ranek/feral.svg",
  7970. extra: 990/631,
  7971. bottom: 29/1019
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(194, "cm"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(100, "meters")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(5 + 6 / 12, "feet"),
  7992. weight: math.unit(153, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/andrew-cooper/front.svg"
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Nano",
  8002. height: math.unit(1, "mm")
  8003. },
  8004. {
  8005. name: "Micro",
  8006. height: math.unit(2, "inches")
  8007. },
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(5 + 6 / 12, "feet"),
  8011. default: true
  8012. }
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(6, "feet"),
  8020. weight: math.unit(180, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/akane-sato/front.svg",
  8024. extra: 1219 / 1140
  8025. }
  8026. },
  8027. back: {
  8028. height: math.unit(6, "feet"),
  8029. weight: math.unit(180, "lbs"),
  8030. name: "Back",
  8031. image: {
  8032. source: "./media/characters/akane-sato/back.svg",
  8033. extra: 1219 / 1170
  8034. }
  8035. },
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(2.5, "meters")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(250, "meters"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Megamacro",
  8049. height: math.unit(25, "km")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(65, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/rook/front.svg",
  8062. extra: 960 / 950
  8063. }
  8064. }
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(8.8, "feet")
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(88, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Megamacro",
  8078. height: math.unit(8, "miles")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(12 + 2 / 12, "feet"),
  8087. weight: math.unit(808, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/prodigy/front.svg"
  8091. }
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(12 + 2 / 12, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(143, "feet")
  8103. },
  8104. {
  8105. name: "Macro+",
  8106. height: math.unit(400, "feet")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(225, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/daniel/front.svg"
  8119. }
  8120. },
  8121. leaning: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(225, "lbs"),
  8124. name: "Leaning",
  8125. image: {
  8126. source: "./media/characters/daniel/leaning.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(1000, "feet"),
  8134. default: true
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(88, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/chiros/front.svg",
  8147. extra: 306 / 226
  8148. }
  8149. },
  8150. side: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(88, "lbs"),
  8153. name: "Side",
  8154. image: {
  8155. source: "./media/characters/chiros/side.svg",
  8156. extra: 306 / 226
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(6, "cm"),
  8164. default: true
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8170. {
  8171. front: {
  8172. height: math.unit(6, "feet"),
  8173. weight: math.unit(100, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/selka/front.svg",
  8177. extra: 947 / 887
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(5, "cm"),
  8185. default: true
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(8 + 3 / 12, "feet"),
  8194. weight: math.unit(424, "lbs"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/verin/front.svg",
  8198. extra: 1845 / 1550
  8199. }
  8200. },
  8201. frontArmored: {
  8202. height: math.unit(8 + 3 / 12, "feet"),
  8203. weight: math.unit(424, "lbs"),
  8204. name: "Front (Armored)",
  8205. image: {
  8206. source: "./media/characters/verin/front-armor.svg",
  8207. extra: 1845 / 1550,
  8208. bottom: 0.01
  8209. }
  8210. },
  8211. back: {
  8212. height: math.unit(8 + 3 / 12, "feet"),
  8213. weight: math.unit(424, "lbs"),
  8214. name: "Back",
  8215. image: {
  8216. source: "./media/characters/verin/back.svg",
  8217. bottom: 0.1,
  8218. extra: 1
  8219. }
  8220. },
  8221. foot: {
  8222. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8223. name: "Foot",
  8224. image: {
  8225. source: "./media/characters/verin/foot.svg"
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(8 + 3 / 12, "feet")
  8233. },
  8234. {
  8235. name: "Minimacro",
  8236. height: math.unit(21, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(626, "feet")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(2.718, "meters"),
  8250. weight: math.unit(150, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/sovrim-terraquian/front.svg",
  8254. extra: 1752/1689,
  8255. bottom: 36/1788
  8256. }
  8257. },
  8258. back: {
  8259. height: math.unit(2.718, "meters"),
  8260. weight: math.unit(150, "lbs"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/sovrim-terraquian/back.svg",
  8264. extra: 1698/1657,
  8265. bottom: 58/1756
  8266. }
  8267. },
  8268. tongue: {
  8269. height: math.unit(2.865, "feet"),
  8270. name: "Tongue",
  8271. image: {
  8272. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8273. }
  8274. },
  8275. hand: {
  8276. height: math.unit(1.61, "feet"),
  8277. name: "Hand",
  8278. image: {
  8279. source: "./media/characters/sovrim-terraquian/hand.svg"
  8280. }
  8281. },
  8282. foot: {
  8283. height: math.unit(1.05, "feet"),
  8284. name: "Foot",
  8285. image: {
  8286. source: "./media/characters/sovrim-terraquian/foot.svg"
  8287. }
  8288. },
  8289. footAlt: {
  8290. height: math.unit(0.88, "feet"),
  8291. name: "Foot (Alt)",
  8292. image: {
  8293. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(2, "inches")
  8301. },
  8302. {
  8303. name: "Small",
  8304. height: math.unit(1, "meter")
  8305. },
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(Math.E, "meters"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(20, "meters")
  8314. },
  8315. {
  8316. name: "Macro+",
  8317. height: math.unit(400, "meters")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(7, "feet"),
  8326. weight: math.unit(489, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/reece-silvermane/front.svg",
  8330. bottom: 0.02,
  8331. extra: 1
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(1.5, "miles"),
  8339. default: true
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(78, "kg"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/kane/front.svg",
  8352. extra: 978 / 899
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(2.1, "m"),
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(1, "km"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(200, "kg"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/tegon/front.svg",
  8377. bottom: 0.01,
  8378. extra: 1
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(1, "inch")
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(6 + 3 / 12, "feet"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(300, "feet")
  8395. },
  8396. {
  8397. name: "Megamacro",
  8398. height: math.unit(69, "miles")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8404. {
  8405. side: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(2304, "lbs"),
  8408. name: "Side",
  8409. image: {
  8410. source: "./media/characters/arcturax/side.svg",
  8411. extra: 790 / 376,
  8412. bottom: 0.01
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(2, "inch")
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(6, "feet")
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(39, "feet"),
  8428. default: true
  8429. },
  8430. {
  8431. name: "Megamacro",
  8432. height: math.unit(7, "miles")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(50, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/sentri/front.svg",
  8445. extra: 1750 / 1570,
  8446. bottom: 0.025
  8447. }
  8448. },
  8449. frontAlt: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(50, "lbs"),
  8452. name: "Front (Alt)",
  8453. image: {
  8454. source: "./media/characters/sentri/front-alt.svg",
  8455. extra: 1750 / 1570,
  8456. bottom: 0.025
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(15, "feet"),
  8464. default: true
  8465. },
  8466. {
  8467. name: "Macro",
  8468. height: math.unit(2500, "feet")
  8469. }
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(5 + 8 / 12, "feet"),
  8477. weight: math.unit(130, "lbs"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/corvin/front.svg",
  8481. extra: 1803 / 1629
  8482. }
  8483. },
  8484. frontShirt: {
  8485. height: math.unit(5 + 8 / 12, "feet"),
  8486. weight: math.unit(130, "lbs"),
  8487. name: "Front (Shirt)",
  8488. image: {
  8489. source: "./media/characters/corvin/front-shirt.svg",
  8490. extra: 1803 / 1629
  8491. }
  8492. },
  8493. frontPoncho: {
  8494. height: math.unit(5 + 8 / 12, "feet"),
  8495. weight: math.unit(130, "lbs"),
  8496. name: "Front (Poncho)",
  8497. image: {
  8498. source: "./media/characters/corvin/front-poncho.svg",
  8499. extra: 1803 / 1629
  8500. }
  8501. },
  8502. side: {
  8503. height: math.unit(5 + 8 / 12, "feet"),
  8504. weight: math.unit(130, "lbs"),
  8505. name: "Side",
  8506. image: {
  8507. source: "./media/characters/corvin/side.svg",
  8508. extra: 1012 / 945
  8509. }
  8510. },
  8511. back: {
  8512. height: math.unit(5 + 8 / 12, "feet"),
  8513. weight: math.unit(130, "lbs"),
  8514. name: "Back",
  8515. image: {
  8516. source: "./media/characters/corvin/back.svg",
  8517. extra: 1803 / 1629
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5 + 8 / 12, "feet")
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(300, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Megamacro",
  8537. height: math.unit(500, "miles")
  8538. }
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(135, "lbs"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/q/front.svg",
  8550. extra: 854 / 752,
  8551. bottom: 0.005
  8552. }
  8553. },
  8554. back: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(130, "lbs"),
  8557. name: "Back",
  8558. image: {
  8559. source: "./media/characters/q/back.svg",
  8560. extra: 854 / 752
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(90, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Extra Macro",
  8572. height: math.unit(300, "feet"),
  8573. },
  8574. {
  8575. name: "BIG WALF",
  8576. height: math.unit(750, "feet"),
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lbs"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/carley/front.svg",
  8589. extra: 3927 / 3540,
  8590. bottom: 29.2 / 735
  8591. }
  8592. }
  8593. },
  8594. [
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(6 + 3 / 12, "feet")
  8598. },
  8599. {
  8600. name: "Macro",
  8601. height: math.unit(185, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(8, "miles"),
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(3, "feet"),
  8615. weight: math.unit(28, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/citrine/front.svg"
  8619. }
  8620. }
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(3, "feet"),
  8626. default: true
  8627. }
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8632. {
  8633. front: {
  8634. height: math.unit(14, "feet"),
  8635. weight: math.unit(1450, "kg"),
  8636. capacity: math.unit(15, "people"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/aura-starwind/front.svg",
  8640. extra: 1440/1327,
  8641. bottom: 11/1451
  8642. }
  8643. },
  8644. side: {
  8645. height: math.unit(14, "feet"),
  8646. weight: math.unit(1450, "kg"),
  8647. capacity: math.unit(15, "people"),
  8648. name: "Side",
  8649. image: {
  8650. source: "./media/characters/aura-starwind/side.svg",
  8651. extra: 1654 / 1497
  8652. }
  8653. },
  8654. taur: {
  8655. height: math.unit(18, "feet"),
  8656. weight: math.unit(5500, "kg"),
  8657. capacity: math.unit(50, "people"),
  8658. name: "Taur",
  8659. image: {
  8660. source: "./media/characters/aura-starwind/taur.svg",
  8661. extra: 1760 / 1650
  8662. }
  8663. },
  8664. feral: {
  8665. height: math.unit(46, "feet"),
  8666. weight: math.unit(25000, "kg"),
  8667. capacity: math.unit(120, "people"),
  8668. name: "Feral",
  8669. image: {
  8670. source: "./media/characters/aura-starwind/feral.svg"
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(14, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(50, "meters")
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(5000, "meters")
  8687. },
  8688. {
  8689. name: "Gigamacro",
  8690. height: math.unit(100000, "kilometers")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(2 + 7 / 12, "feet"),
  8699. weight: math.unit(32, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/rivet/front.svg",
  8703. extra: 1716 / 1658,
  8704. bottom: 0.03
  8705. }
  8706. },
  8707. foot: {
  8708. height: math.unit(0.551, "feet"),
  8709. name: "Rivet's Foot",
  8710. image: {
  8711. source: "./media/characters/rivet/foot.svg"
  8712. },
  8713. rename: true
  8714. }
  8715. },
  8716. [
  8717. {
  8718. name: "Micro",
  8719. height: math.unit(1.5, "inches"),
  8720. },
  8721. {
  8722. name: "Normal",
  8723. height: math.unit(2 + 7 / 12, "feet"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(85, "feet")
  8729. },
  8730. {
  8731. name: "Megamacro",
  8732. height: math.unit(2.2, "km")
  8733. }
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(5 + 9 / 12, "feet"),
  8741. weight: math.unit(150, "lbs"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/coffee/front.svg",
  8745. extra: 3666 / 3032,
  8746. bottom: 0.04
  8747. }
  8748. },
  8749. foot: {
  8750. height: math.unit(1.29, "feet"),
  8751. name: "Foot",
  8752. image: {
  8753. source: "./media/characters/coffee/foot.svg"
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Micro",
  8760. height: math.unit(2, "inches"),
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(5 + 9 / 12, "feet"),
  8765. default: true
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(800, "feet")
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(25, "miles")
  8774. }
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(200, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/chari-gal/front.svg",
  8786. extra: 1568 / 1385,
  8787. bottom: 0.047
  8788. }
  8789. },
  8790. gigantamax: {
  8791. height: math.unit(6 * 16, "feet"),
  8792. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8793. name: "Gigantamax",
  8794. image: {
  8795. source: "./media/characters/chari-gal/gigantamax.svg",
  8796. extra: 1124 / 888,
  8797. bottom: 0.03
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(5 + 7 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Macro",
  8808. height: math.unit(200, "feet"),
  8809. default: true
  8810. }
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(150, "lbs"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/nova/front.svg",
  8822. extra: 5000 / 4722,
  8823. bottom: 0.02
  8824. }
  8825. }
  8826. },
  8827. [
  8828. {
  8829. name: "Micro-",
  8830. height: math.unit(0.8, "inches")
  8831. },
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(2, "inches"),
  8835. default: true
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(3 + 1 / 12, "feet"),
  8844. weight: math.unit(21.7, "lbs"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/argent/front.svg",
  8848. extra: 1471 / 1331,
  8849. bottom: 100.8 / 1575.5
  8850. }
  8851. }
  8852. },
  8853. [
  8854. {
  8855. name: "Micro",
  8856. height: math.unit(2, "inches")
  8857. },
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(3 + 1 / 12, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(120, "feet")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8871. {
  8872. lamp: {
  8873. height: math.unit(7 * 1559 / 989, "feet"),
  8874. name: "Magic Lamp",
  8875. image: {
  8876. source: "./media/characters/mira-al-cul/lamp.svg",
  8877. extra: 1617 / 1559
  8878. }
  8879. },
  8880. front: {
  8881. height: math.unit(7, "feet"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/mira-al-cul/front.svg",
  8885. extra: 1044 / 990
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Heavily Restricted",
  8892. height: math.unit(7 * 1559 / 989, "feet")
  8893. },
  8894. {
  8895. name: "Freshly Freed",
  8896. height: math.unit(50 * 1559 / 989, "feet")
  8897. },
  8898. {
  8899. name: "World Encompassing",
  8900. height: math.unit(10000 * 1559 / 989, "miles")
  8901. },
  8902. {
  8903. name: "Galactic",
  8904. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8905. },
  8906. {
  8907. name: "Palmed Universe",
  8908. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Multiversal Matriarch",
  8913. height: math.unit(8.87e10, "yottameters")
  8914. },
  8915. {
  8916. name: "Void Mother",
  8917. height: math.unit(3.14e110, "yottaparsecs")
  8918. },
  8919. {
  8920. name: "Toying with Transcendence",
  8921. height: math.unit(1e307, "meters")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8927. {
  8928. front: {
  8929. height: math.unit(17 + 1 / 12, "feet"),
  8930. weight: math.unit(476.2 * 5, "lbs"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/kuro-shi-uchū/front.svg",
  8934. extra: 2329 / 1835,
  8935. bottom: 0.02
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Micro",
  8942. height: math.unit(2, "inches")
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(12, "meters")
  8947. },
  8948. {
  8949. name: "Planetary",
  8950. height: math.unit(0.00929, "AU"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Universal",
  8955. height: math.unit(20, "gigaparsecs")
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(5 + 2 / 12, "feet"),
  8964. weight: math.unit(120, "lbs"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/katherine/front.svg",
  8968. extra: 2075 / 1969
  8969. }
  8970. },
  8971. dress: {
  8972. height: math.unit(5 + 2 / 12, "feet"),
  8973. weight: math.unit(120, "lbs"),
  8974. name: "Dress",
  8975. image: {
  8976. source: "./media/characters/katherine/dress.svg",
  8977. extra: 2258 / 2064
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Micro",
  8984. height: math.unit(1, "inches"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(5 + 2 / 12, "feet")
  8990. },
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(100, "meters")
  8994. },
  8995. {
  8996. name: "Megamacro",
  8997. height: math.unit(80, "miles")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9003. {
  9004. front: {
  9005. height: math.unit(7 + 8 / 12, "feet"),
  9006. weight: math.unit(250, "lbs"),
  9007. name: "Front",
  9008. image: {
  9009. source: "./media/characters/yevis/front.svg",
  9010. extra: 1938 / 1755
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Mortal",
  9017. height: math.unit(7 + 8 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Battle",
  9021. height: math.unit(25 + 11 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Wrath",
  9025. height: math.unit(1654 + 11 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Planet Destroyer",
  9029. height: math.unit(12000, "miles")
  9030. },
  9031. {
  9032. name: "Galaxy Conqueror",
  9033. height: math.unit(1.45, "zettameters"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Universal War",
  9038. height: math.unit(184, "gigaparsecs")
  9039. },
  9040. {
  9041. name: "Eternity War",
  9042. height: math.unit(1.98e55, "yottaparsecs")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(5 + 8 / 12, "feet"),
  9051. weight: math.unit(63, "kg"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/xavier/front.svg",
  9055. extra: 944 / 883
  9056. }
  9057. },
  9058. frontStretch: {
  9059. height: math.unit(5 + 8 / 12, "feet"),
  9060. weight: math.unit(63, "kg"),
  9061. name: "Stretching",
  9062. image: {
  9063. source: "./media/characters/xavier/front-stretch.svg",
  9064. extra: 962 / 820
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(5 + 8 / 12, "feet")
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(100, "meters"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "McLargeHuge",
  9080. height: math.unit(10, "miles")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 5 / 12, "feet"),
  9089. weight: math.unit(150, "lb"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/joshii/front.svg",
  9093. extra: 765 / 653,
  9094. bottom: 51 / 816
  9095. }
  9096. },
  9097. foot: {
  9098. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9099. name: "Foot",
  9100. image: {
  9101. source: "./media/characters/joshii/foot.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(5 + 5 / 12, "feet")
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(785, "feet")
  9118. },
  9119. {
  9120. name: "Megamacro",
  9121. height: math.unit(24.5, "miles")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(150, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/goddess-elizabeth/front.svg",
  9134. extra: 1800 / 1525,
  9135. bottom: 0.005
  9136. }
  9137. },
  9138. foot: {
  9139. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9140. name: "Foot",
  9141. image: {
  9142. source: "./media/characters/goddess-elizabeth/foot.svg"
  9143. }
  9144. },
  9145. mouth: {
  9146. height: math.unit(6, "feet"),
  9147. name: "Mouth",
  9148. image: {
  9149. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(12, "feet")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(80, "miles"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(15000, "parsecs")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. weight: math.unit(144, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/kara/front.svg"
  9178. }
  9179. },
  9180. feet: {
  9181. height: math.unit(6 / 6.765, "feet"),
  9182. name: "Kara's Feet",
  9183. rename: true,
  9184. image: {
  9185. source: "./media/characters/kara/feet.svg"
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(5 + 9 / 12, "feet")
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(174, "feet"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(18, "feet"),
  9206. weight: math.unit(4050, "lb"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/tyrone/front.svg",
  9210. extra: 2405 / 2270,
  9211. bottom: 182 / 2587
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(18, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(300, "feet")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(15, "km")
  9228. },
  9229. {
  9230. name: "Gigamacro",
  9231. height: math.unit(500, "km")
  9232. },
  9233. {
  9234. name: "Teramacro",
  9235. height: math.unit(0.5, "gigameters")
  9236. },
  9237. {
  9238. name: "Omnimacro",
  9239. height: math.unit(1e252, "yottauniverse")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(7 + 8 / 12, "feet"),
  9248. weight: math.unit(120, "lb"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/danny/front.svg",
  9252. extra: 1490 / 1350
  9253. }
  9254. },
  9255. back: {
  9256. height: math.unit(7 + 8 / 12, "feet"),
  9257. weight: math.unit(120, "lb"),
  9258. name: "Back",
  9259. image: {
  9260. source: "./media/characters/danny/back.svg",
  9261. extra: 1490 / 1350
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(7 + 8 / 12, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(3.5, "inches"),
  9278. weight: math.unit(19, "grams"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/mallow/front.svg",
  9282. extra: 471 / 431
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(3.5, "inches"),
  9287. weight: math.unit(19, "grams"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/mallow/back.svg",
  9291. extra: 471 / 431
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(3.5, "inches"),
  9299. default: true
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(9, "feet"),
  9308. weight: math.unit(230, "kg"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/starry-aqua/front.svg"
  9312. }
  9313. },
  9314. back: {
  9315. height: math.unit(9, "feet"),
  9316. weight: math.unit(230, "kg"),
  9317. name: "Back",
  9318. image: {
  9319. source: "./media/characters/starry-aqua/back.svg"
  9320. }
  9321. },
  9322. hand: {
  9323. height: math.unit(9 * 0.1168, "feet"),
  9324. name: "Hand",
  9325. image: {
  9326. source: "./media/characters/starry-aqua/hand.svg"
  9327. }
  9328. },
  9329. foot: {
  9330. height: math.unit(9 * 0.18, "feet"),
  9331. name: "Foot",
  9332. image: {
  9333. source: "./media/characters/starry-aqua/foot.svg"
  9334. }
  9335. }
  9336. },
  9337. [
  9338. {
  9339. name: "Micro",
  9340. height: math.unit(3, "inches")
  9341. },
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(9, "feet")
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(300, "feet"),
  9349. default: true
  9350. },
  9351. {
  9352. name: "Megamacro",
  9353. height: math.unit(3200, "feet")
  9354. }
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(15, "feet"),
  9362. weight: math.unit(5026, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/luka-towers/front.svg",
  9366. extra: 1269/1133,
  9367. bottom: 51/1320
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(15, "feet"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Minimacro",
  9379. height: math.unit(25, "feet")
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(320, "feet")
  9384. },
  9385. {
  9386. name: "Megamacro",
  9387. height: math.unit(35000, "feet")
  9388. },
  9389. {
  9390. name: "Gigamacro",
  9391. height: math.unit(4000, "miles")
  9392. },
  9393. {
  9394. name: "Teramacro",
  9395. height: math.unit(15000, "miles")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(150, "lb"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/natalie-nightring/front.svg",
  9408. extra: 1,
  9409. bottom: 0.06
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Uh Oh",
  9416. height: math.unit(0.1, "mm")
  9417. },
  9418. {
  9419. name: "Small",
  9420. height: math.unit(3, "inches")
  9421. },
  9422. {
  9423. name: "Human Scale",
  9424. height: math.unit(6, "feet")
  9425. },
  9426. {
  9427. name: "Librarian",
  9428. height: math.unit(50, "feet"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Immense",
  9433. height: math.unit(200, "miles")
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(6, "feet"),
  9442. weight: math.unit(180, "lbs"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/danni-rosie/front.svg",
  9446. extra: 1260 / 1128,
  9447. bottom: 0.022
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(2, "inches"),
  9455. default: true
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(5 + 9 / 12, "feet"),
  9464. weight: math.unit(220, "lb"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/samantha-kruse/front.svg",
  9468. extra: (985 / 935),
  9469. bottom: 0.03
  9470. }
  9471. },
  9472. frontUndressed: {
  9473. height: math.unit(5 + 9 / 12, "feet"),
  9474. weight: math.unit(220, "lb"),
  9475. name: "Front (Undressed)",
  9476. image: {
  9477. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9478. extra: (973 / 923),
  9479. bottom: 0.025
  9480. }
  9481. },
  9482. fat: {
  9483. height: math.unit(5 + 9 / 12, "feet"),
  9484. weight: math.unit(900, "lb"),
  9485. name: "Front (Fat)",
  9486. image: {
  9487. source: "./media/characters/samantha-kruse/fat.svg",
  9488. extra: 2688 / 2561
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(5 + 9 / 12, "feet"),
  9496. default: true
  9497. }
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9502. {
  9503. back: {
  9504. height: math.unit(5 + 4 / 12, "feet"),
  9505. weight: math.unit(4963, "lb"),
  9506. name: "Back",
  9507. image: {
  9508. source: "./media/characters/amelia-rosie/back.svg",
  9509. extra: 1113 / 963,
  9510. bottom: 0.01
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Level 0",
  9517. height: math.unit(5 + 4 / 12, "feet")
  9518. },
  9519. {
  9520. name: "Level 1",
  9521. height: math.unit(164597, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Level 2",
  9526. height: math.unit(956243, "miles")
  9527. },
  9528. {
  9529. name: "Level 3",
  9530. height: math.unit(29421709423, "miles")
  9531. },
  9532. {
  9533. name: "Level 4",
  9534. height: math.unit(154, "lightyears")
  9535. },
  9536. {
  9537. name: "Level 5",
  9538. height: math.unit(4738272, "lightyears")
  9539. },
  9540. {
  9541. name: "Level 6",
  9542. height: math.unit(145787152896, "lightyears")
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(5 + 11 / 12, "feet"),
  9551. weight: math.unit(65, "kg"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/rook-kitara/front.svg",
  9555. extra: 1347 / 1274,
  9556. bottom: 0.005
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Totally Unfair",
  9563. height: math.unit(1.8, "mm")
  9564. },
  9565. {
  9566. name: "Lap Rookie",
  9567. height: math.unit(1.4, "feet")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(5 + 11 / 12, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "How Did This Happen",
  9576. height: math.unit(80, "miles")
  9577. }
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(7, "feet"),
  9585. weight: math.unit(300, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/pisces/front.svg",
  9589. extra: 2255 / 2115,
  9590. bottom: 0.03
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(7, "feet"),
  9595. weight: math.unit(300, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/pisces/back.svg",
  9599. extra: 2146 / 2055,
  9600. bottom: 0.04
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(7, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Swimming Pool",
  9612. height: math.unit(12.2, "meters")
  9613. },
  9614. {
  9615. name: "Olympic Swimming Pool",
  9616. height: math.unit(56.3, "meters")
  9617. },
  9618. {
  9619. name: "Lake Superior",
  9620. height: math.unit(93900, "meters")
  9621. },
  9622. {
  9623. name: "Mediterranean Sea",
  9624. height: math.unit(644457, "meters")
  9625. },
  9626. {
  9627. name: "World's Oceans",
  9628. height: math.unit(4567491, "meters")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(2.3, "meters"),
  9637. weight: math.unit(120, "kg"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/zelas/front.svg"
  9641. }
  9642. },
  9643. side: {
  9644. height: math.unit(2.3, "meters"),
  9645. weight: math.unit(120, "kg"),
  9646. name: "Side",
  9647. image: {
  9648. source: "./media/characters/zelas/side.svg"
  9649. }
  9650. },
  9651. back: {
  9652. height: math.unit(2.3, "meters"),
  9653. weight: math.unit(120, "kg"),
  9654. name: "Back",
  9655. image: {
  9656. source: "./media/characters/zelas/back.svg"
  9657. }
  9658. },
  9659. foot: {
  9660. height: math.unit(1.116, "feet"),
  9661. name: "Foot",
  9662. image: {
  9663. source: "./media/characters/zelas/foot.svg"
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(2.3, "meters")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(30, "meters"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(1, "inch"),
  9684. weight: math.unit(0.21, "grams"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/talbot/front.svg",
  9688. extra: 594 / 544
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(1, "inch"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9702. {
  9703. front: {
  9704. height: math.unit(3 + 3 / 12, "feet"),
  9705. weight: math.unit(51.8, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/fliss/front.svg",
  9709. extra: 840 / 640
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Teeny Tiny",
  9716. height: math.unit(1, "mm")
  9717. },
  9718. {
  9719. name: "Small",
  9720. height: math.unit(1, "inch"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Standard Sylveon",
  9725. height: math.unit(3 + 3 / 12, "feet")
  9726. },
  9727. {
  9728. name: "Large Nuisance",
  9729. height: math.unit(33, "feet")
  9730. },
  9731. {
  9732. name: "City Filler",
  9733. height: math.unit(3000, "feet")
  9734. },
  9735. {
  9736. name: "New Horizon",
  9737. height: math.unit(6000, "miles")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5, "cm"),
  9746. weight: math.unit(1.94, "g"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/fleta/front.svg",
  9750. extra: 835 / 803
  9751. }
  9752. },
  9753. back: {
  9754. height: math.unit(5, "cm"),
  9755. weight: math.unit(1.94, "g"),
  9756. name: "Back",
  9757. image: {
  9758. source: "./media/characters/fleta/back.svg",
  9759. extra: 835 / 803
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(5, "cm"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(225, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/dominic/front.svg",
  9780. extra: 1770 / 1620,
  9781. bottom: 0.025
  9782. }
  9783. },
  9784. back: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(225, "lb"),
  9787. name: "Back",
  9788. image: {
  9789. source: "./media/characters/dominic/back.svg",
  9790. extra: 1745 / 1620,
  9791. bottom: 0.065
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Nano",
  9798. height: math.unit(0.1, "mm")
  9799. },
  9800. {
  9801. name: "Micro-",
  9802. height: math.unit(1, "mm")
  9803. },
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(4, "inches")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(6 + 4 / 12, "feet"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(115, "feet")
  9816. },
  9817. {
  9818. name: "Macro+",
  9819. height: math.unit(955, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(8990, "feet")
  9824. },
  9825. {
  9826. name: "Gigmacro",
  9827. height: math.unit(9310, "miles")
  9828. },
  9829. {
  9830. name: "Teramacro",
  9831. height: math.unit(1567005010, "miles")
  9832. },
  9833. {
  9834. name: "Examacro",
  9835. height: math.unit(1425, "parsecs")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(400, "feet"),
  9844. weight: math.unit(44444444, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/major-colonel/front.svg"
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(400, "feet"),
  9852. weight: math.unit(44444444, "lb"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/major-colonel/back.svg"
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(400, "feet"),
  9863. default: true
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9869. {
  9870. catFront: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(120, "lb"),
  9873. name: "Front (Cat Side)",
  9874. image: {
  9875. source: "./media/characters/axel-lycan/cat-front.svg",
  9876. extra: 430 / 402,
  9877. bottom: 43 / 472.35
  9878. }
  9879. },
  9880. catBack: {
  9881. height: math.unit(6, "feet"),
  9882. weight: math.unit(120, "lb"),
  9883. name: "Back (Cat Side)",
  9884. image: {
  9885. source: "./media/characters/axel-lycan/cat-back.svg",
  9886. extra: 447 / 419,
  9887. bottom: 23.3 / 469
  9888. }
  9889. },
  9890. wolfFront: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(120, "lb"),
  9893. name: "Front (Wolf Side)",
  9894. image: {
  9895. source: "./media/characters/axel-lycan/wolf-front.svg",
  9896. extra: 485 / 456,
  9897. bottom: 19 / 504
  9898. }
  9899. },
  9900. wolfBack: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(120, "lb"),
  9903. name: "Back (Wolf Side)",
  9904. image: {
  9905. source: "./media/characters/axel-lycan/wolf-back.svg",
  9906. extra: 475 / 438,
  9907. bottom: 39.2 / 514
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(1, "km"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(5 + 9 / 12, "feet"),
  9924. weight: math.unit(175, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/vanrel-hyena/front.svg",
  9928. extra: 1086 / 1010,
  9929. bottom: 0.04
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(5 + 9 / 12, "feet"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(103, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/abbott-absol/front.svg",
  9950. extra: 2010 / 1842
  9951. }
  9952. },
  9953. },
  9954. [
  9955. {
  9956. name: "Megamicro",
  9957. height: math.unit(0.1, "mm")
  9958. },
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(1, "inch")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(6, "feet"),
  9966. default: true
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(264, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/hector/front.svg",
  9979. extra: 2280 / 2130,
  9980. bottom: 0.07
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(12.25, "foot"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(160, "feet")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/sal/front.svg",
  10005. extra: 1846 / 1699,
  10006. bottom: 0.04
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(10, "miles"),
  10014. default: true
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10020. {
  10021. front: {
  10022. height: math.unit(3, "meters"),
  10023. weight: math.unit(450, "kg"),
  10024. name: "front",
  10025. image: {
  10026. source: "./media/characters/ranger/front.svg",
  10027. extra: 2401 / 2243,
  10028. bottom: 0.05
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(3, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(14, "feet"),
  10045. weight: math.unit(800, "kg"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/theresa/front.svg",
  10049. extra: 3575 / 3346,
  10050. bottom: 0.03
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(14, "feet"),
  10058. default: true
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10064. {
  10065. front: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(3, "kg"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/ine/front.svg",
  10071. extra: 678 / 539,
  10072. bottom: 0.023
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(2.265, "feet"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(5, "feet"),
  10089. weight: math.unit(30, "kg"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/vial/front.svg",
  10093. extra: 1365 / 1277,
  10094. bottom: 0.04
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(5, "feet"),
  10102. default: true
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10108. {
  10109. side: {
  10110. height: math.unit(3.4, "meters"),
  10111. weight: math.unit(1000, "lb"),
  10112. name: "Side",
  10113. image: {
  10114. source: "./media/characters/rovoska/side.svg",
  10115. extra: 4403 / 1515
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(3.4, "meters"),
  10123. default: true
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10129. {
  10130. front: {
  10131. height: math.unit(8, "feet"),
  10132. weight: math.unit(315, "lb"),
  10133. name: "Front",
  10134. image: {
  10135. source: "./media/characters/gunner-rotthbauer/front.svg"
  10136. }
  10137. },
  10138. back: {
  10139. height: math.unit(8, "feet"),
  10140. weight: math.unit(315, "lb"),
  10141. name: "Back",
  10142. image: {
  10143. source: "./media/characters/gunner-rotthbauer/back.svg"
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(3.5, "inches")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(8, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(250, "feet")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(1, "AU")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(5 + 5 / 12, "feet"),
  10172. weight: math.unit(140, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/allatia/front.svg",
  10176. extra: 1227 / 1180,
  10177. bottom: 0.027
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(5 + 5 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(250, "feet"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Megamacro",
  10193. height: math.unit(8, "miles")
  10194. }
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(120, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/tene/front.svg",
  10206. extra: 814/750,
  10207. bottom: 36/850
  10208. }
  10209. },
  10210. stomping: {
  10211. height: math.unit(2.025, "meters"),
  10212. weight: math.unit(120, "lb"),
  10213. name: "Stomping",
  10214. image: {
  10215. source: "./media/characters/tene/stomping.svg",
  10216. extra: 885/821,
  10217. bottom: 15/900
  10218. }
  10219. },
  10220. sitting: {
  10221. height: math.unit(1, "meter"),
  10222. weight: math.unit(120, "lb"),
  10223. name: "Sitting",
  10224. image: {
  10225. source: "./media/characters/tene/sitting.svg",
  10226. extra: 396/366,
  10227. bottom: 79/475
  10228. }
  10229. },
  10230. smiling: {
  10231. height: math.unit(1.2, "feet"),
  10232. name: "Smiling",
  10233. image: {
  10234. source: "./media/characters/tene/smiling.svg",
  10235. extra: 1364/1071,
  10236. bottom: 0/1364
  10237. }
  10238. },
  10239. smug: {
  10240. height: math.unit(1.3, "feet"),
  10241. name: "Smug",
  10242. image: {
  10243. source: "./media/characters/tene/smug.svg",
  10244. extra: 1323/1082,
  10245. bottom: 0/1323
  10246. }
  10247. },
  10248. feral: {
  10249. height: math.unit(3.9, "feet"),
  10250. weight: math.unit(250, "lb"),
  10251. name: "Feral",
  10252. image: {
  10253. source: "./media/characters/tene/feral.svg",
  10254. extra: 717 / 458,
  10255. bottom: 0.179
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(6, "feet")
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(300, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(5, "miles")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10277. {
  10278. side: {
  10279. height: math.unit(6, "feet"),
  10280. name: "Side",
  10281. image: {
  10282. source: "./media/characters/evander/side.svg",
  10283. extra: 877 / 477
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(0.83, "meters"),
  10291. default: true
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10297. {
  10298. front: {
  10299. height: math.unit(12, "feet"),
  10300. weight: math.unit(1000, "lb"),
  10301. name: "Front",
  10302. image: {
  10303. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10304. extra: 1762 / 1611
  10305. }
  10306. },
  10307. back: {
  10308. height: math.unit(12, "feet"),
  10309. weight: math.unit(1000, "lb"),
  10310. name: "Back",
  10311. image: {
  10312. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10313. extra: 1762 / 1611
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(12, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Kaiju",
  10325. height: math.unit(150, "feet")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/zero-alurus/front.svg"
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(150, "lb"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/zero-alurus/back.svg"
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(5 + 10 / 12, "feet")
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(60, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Macro+",
  10361. height: math.unit(450, "feet")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(200, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/mega-shi/front.svg",
  10374. extra: 1279 / 1250,
  10375. bottom: 0.02
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(200, "lb"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/mega-shi/back.svg",
  10384. extra: 1279 / 1250,
  10385. bottom: 0.02
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Micro",
  10392. height: math.unit(16 + 6 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Third Dimension",
  10396. height: math.unit(40, "meters")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(660, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(10, "miles")
  10406. },
  10407. {
  10408. name: "Planetary Launch",
  10409. height: math.unit(500, "miles")
  10410. },
  10411. {
  10412. name: "Interstellar",
  10413. height: math.unit(1e9, "miles")
  10414. },
  10415. {
  10416. name: "Leaving the Universe",
  10417. height: math.unit(1, "gigaparsec")
  10418. },
  10419. {
  10420. name: "Travelling Universes",
  10421. height: math.unit(30e15, "parsecs")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(5 + 4/12, "feet"),
  10430. weight: math.unit(120, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/odyssey/front.svg",
  10434. extra: 1747/1571,
  10435. bottom: 47/1794
  10436. }
  10437. },
  10438. side: {
  10439. height: math.unit(5.1, "feet"),
  10440. weight: math.unit(120, "lb"),
  10441. name: "Side",
  10442. image: {
  10443. source: "./media/characters/odyssey/side.svg",
  10444. extra: 1847/1619,
  10445. bottom: 47/1894
  10446. }
  10447. },
  10448. lounging: {
  10449. height: math.unit(1.464, "feet"),
  10450. weight: math.unit(120, "lb"),
  10451. name: "Lounging",
  10452. image: {
  10453. source: "./media/characters/odyssey/lounging.svg",
  10454. extra: 1235/837,
  10455. bottom: 551/1786
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(5 + 4 / 12, "feet")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(1, "km")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(3000, "km")
  10471. },
  10472. {
  10473. name: "Gigamacro",
  10474. height: math.unit(1, "AU"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Omniversal",
  10479. height: math.unit(100e14, "lightyears")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(300, "lb"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/mekuto/front.svg",
  10492. extra: 921 / 832,
  10493. bottom: 0.03
  10494. }
  10495. },
  10496. hand: {
  10497. height: math.unit(6 / 10.24, "feet"),
  10498. name: "Hand",
  10499. image: {
  10500. source: "./media/characters/mekuto/hand.svg"
  10501. }
  10502. },
  10503. foot: {
  10504. height: math.unit(6 / 5.05, "feet"),
  10505. name: "Foot",
  10506. image: {
  10507. source: "./media/characters/mekuto/foot.svg"
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Minimicro",
  10514. height: math.unit(0.2, "inches")
  10515. },
  10516. {
  10517. name: "Micro",
  10518. height: math.unit(1.5, "inches")
  10519. },
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(5 + 11 / 12, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Minimacro",
  10527. height: math.unit(17 + 9 / 12, "feet")
  10528. },
  10529. {
  10530. name: "Macro",
  10531. height: math.unit(177.5, "feet")
  10532. },
  10533. {
  10534. name: "Megamacro",
  10535. height: math.unit(152, "miles")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(6.5, "inches"),
  10544. weight: math.unit(13, "oz"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/dafydd-tomos/front.svg",
  10548. extra: 2990 / 2603,
  10549. bottom: 0.03
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Micro",
  10556. height: math.unit(6.5, "inches"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/splinter/front.svg",
  10570. extra: 2990 / 2882,
  10571. bottom: 0.04
  10572. }
  10573. },
  10574. back: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(150, "lb"),
  10577. name: "Back",
  10578. image: {
  10579. source: "./media/characters/splinter/back.svg",
  10580. extra: 2990 / 2882,
  10581. bottom: 0.04
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Normal",
  10588. height: math.unit(6, "feet")
  10589. },
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(230, "meters"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(4 + 10 / 12, "feet"),
  10602. weight: math.unit(480, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/snow-gabumon/front.svg",
  10606. extra: 1140 / 963,
  10607. bottom: 0.058
  10608. }
  10609. },
  10610. back: {
  10611. height: math.unit(4 + 10 / 12, "feet"),
  10612. weight: math.unit(480, "lb"),
  10613. name: "Back",
  10614. image: {
  10615. source: "./media/characters/snow-gabumon/back.svg",
  10616. extra: 1115 / 962,
  10617. bottom: 0.041
  10618. }
  10619. },
  10620. frontUndresed: {
  10621. height: math.unit(4 + 10 / 12, "feet"),
  10622. weight: math.unit(480, "lb"),
  10623. name: "Front (Undressed)",
  10624. image: {
  10625. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10626. extra: 1061 / 960,
  10627. bottom: 0.045
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(1, "inch")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(4 + 10 / 12, "feet"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro",
  10643. height: math.unit(200, "feet")
  10644. },
  10645. {
  10646. name: "Megamacro",
  10647. height: math.unit(120, "miles")
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(9800, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(1.7, "meters"),
  10660. weight: math.unit(140, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/moody/front.svg",
  10664. extra: 3226 / 3007,
  10665. bottom: 0.087
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(1, "mm")
  10673. },
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(1.7, "meters"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(80, "meters")
  10682. },
  10683. {
  10684. name: "Macro+",
  10685. height: math.unit(500, "meters")
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(6, "feet"),
  10694. weight: math.unit(150, "lb"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/zyas/front.svg",
  10698. extra: 1180 / 1120,
  10699. bottom: 0.045
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(10, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(500, "feet")
  10712. },
  10713. {
  10714. name: "Megamacro",
  10715. height: math.unit(5, "miles")
  10716. },
  10717. {
  10718. name: "Teramacro",
  10719. height: math.unit(150000, "miles")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(150, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/cuon/front.svg",
  10732. extra: 1390 / 1320,
  10733. bottom: 0.008
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(3, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(18 + 9 / 12, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(360, "feet")
  10750. },
  10751. {
  10752. name: "Megamacro",
  10753. height: math.unit(360, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(2.4, "meters"),
  10762. weight: math.unit(70, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/nyanuxk/front.svg",
  10766. extra: 1172 / 1084,
  10767. bottom: 0.065
  10768. }
  10769. },
  10770. side: {
  10771. height: math.unit(2.4, "meters"),
  10772. weight: math.unit(70, "kg"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/nyanuxk/side.svg",
  10776. extra: 1190 / 1132,
  10777. bottom: 0.007
  10778. }
  10779. },
  10780. back: {
  10781. height: math.unit(2.4, "meters"),
  10782. weight: math.unit(70, "kg"),
  10783. name: "Back",
  10784. image: {
  10785. source: "./media/characters/nyanuxk/back.svg",
  10786. extra: 1200 / 1141,
  10787. bottom: 0.015
  10788. }
  10789. },
  10790. foot: {
  10791. height: math.unit(0.52, "meters"),
  10792. name: "Foot",
  10793. image: {
  10794. source: "./media/characters/nyanuxk/foot.svg"
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Micro",
  10801. height: math.unit(2, "cm")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(2.4, "meters"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Smaller Macro",
  10810. height: math.unit(120, "meters")
  10811. },
  10812. {
  10813. name: "Bigger Macro",
  10814. height: math.unit(1.2, "km")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(15, "kilometers")
  10819. },
  10820. {
  10821. name: "Gigamacro",
  10822. height: math.unit(2000, "km")
  10823. },
  10824. {
  10825. name: "Teramacro",
  10826. height: math.unit(500000, "km")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10832. {
  10833. side: {
  10834. height: math.unit(6, "feet"),
  10835. name: "Side",
  10836. image: {
  10837. source: "./media/characters/ailbhe/side.svg",
  10838. extra: 757 / 464,
  10839. bottom: 0.041
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(1.07, "meters"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(120, "kg"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/zevulfius/front.svg",
  10860. extra: 965 / 903
  10861. }
  10862. },
  10863. side: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(120, "kg"),
  10866. name: "Side",
  10867. image: {
  10868. source: "./media/characters/zevulfius/side.svg",
  10869. extra: 939 / 900
  10870. }
  10871. },
  10872. back: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(120, "kg"),
  10875. name: "Back",
  10876. image: {
  10877. source: "./media/characters/zevulfius/back.svg",
  10878. extra: 918 / 854,
  10879. bottom: 0.005
  10880. }
  10881. },
  10882. foot: {
  10883. height: math.unit(6 / 3.72, "feet"),
  10884. name: "Foot",
  10885. image: {
  10886. source: "./media/characters/zevulfius/foot.svg"
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Macro",
  10893. height: math.unit(750, "meters")
  10894. },
  10895. {
  10896. name: "Megamacro",
  10897. height: math.unit(20, "km"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Gigamacro",
  10902. height: math.unit(2000, "km")
  10903. },
  10904. {
  10905. name: "Teramacro",
  10906. height: math.unit(250000, "km")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(100, "feet"),
  10915. weight: math.unit(350, "kg"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/rikes/front.svg",
  10919. extra: 1565 / 1483,
  10920. bottom: 0.017
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Macro",
  10927. height: math.unit(100, "feet"),
  10928. default: true
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(8, "feet"),
  10937. weight: math.unit(356, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/adam-silver-mane/front.svg",
  10941. extra: 1036/937,
  10942. bottom: 63/1099
  10943. }
  10944. },
  10945. side: {
  10946. height: math.unit(8, "feet"),
  10947. weight: math.unit(356, "lb"),
  10948. name: "Side",
  10949. image: {
  10950. source: "./media/characters/adam-silver-mane/side.svg",
  10951. extra: 997/901,
  10952. bottom: 59/1056
  10953. }
  10954. },
  10955. frontNsfw: {
  10956. height: math.unit(8, "feet"),
  10957. weight: math.unit(356, "lb"),
  10958. name: "Front (NSFW)",
  10959. image: {
  10960. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10961. extra: 1036/937,
  10962. bottom: 63/1099
  10963. }
  10964. },
  10965. sideNsfw: {
  10966. height: math.unit(8, "feet"),
  10967. weight: math.unit(356, "lb"),
  10968. name: "Side (NSFW)",
  10969. image: {
  10970. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10971. extra: 997/901,
  10972. bottom: 59/1056
  10973. }
  10974. },
  10975. dick: {
  10976. height: math.unit(2.1, "feet"),
  10977. name: "Dick",
  10978. image: {
  10979. source: "./media/characters/adam-silver-mane/dick.svg"
  10980. }
  10981. },
  10982. taur: {
  10983. height: math.unit(16, "feet"),
  10984. weight: math.unit(1500, "kg"),
  10985. name: "Taur",
  10986. image: {
  10987. source: "./media/characters/adam-silver-mane/taur.svg",
  10988. extra: 1713 / 1571,
  10989. bottom: 0.01
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(8, "feet")
  10997. },
  10998. {
  10999. name: "Minimacro",
  11000. height: math.unit(80, "feet")
  11001. },
  11002. {
  11003. name: "MDA",
  11004. height: math.unit(80, "meters")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(800, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(8000, "feet")
  11014. },
  11015. {
  11016. name: "Gigamacro",
  11017. height: math.unit(800, "miles")
  11018. },
  11019. {
  11020. name: "Teramacro",
  11021. height: math.unit(80000, "miles")
  11022. },
  11023. {
  11024. name: "Celestial",
  11025. height: math.unit(8e6, "miles")
  11026. },
  11027. {
  11028. name: "Star Dragon",
  11029. height: math.unit(800000, "parsecs")
  11030. },
  11031. {
  11032. name: "Godly",
  11033. height: math.unit(800, "teraparsecs")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(150, "lb"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/ky'owin/front.svg",
  11046. extra: 3888 / 3068,
  11047. bottom: 0.015
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(6 + 8 / 12, "feet")
  11055. },
  11056. {
  11057. name: "Large",
  11058. height: math.unit(68, "feet")
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(132, "feet")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(340, "feet")
  11067. },
  11068. {
  11069. name: "Macro++",
  11070. height: math.unit(680, "feet"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(1, "mile")
  11076. },
  11077. {
  11078. name: "Megamacro+",
  11079. height: math.unit(10, "miles")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(4, "feet"),
  11088. weight: math.unit(50, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/mal/front.svg",
  11092. extra: 785 / 724,
  11093. bottom: 0.07
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(4, "inches")
  11101. },
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(4, "feet"),
  11105. default: true
  11106. },
  11107. {
  11108. name: "Macro",
  11109. height: math.unit(200, "feet")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(150, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/jordan-deware/front.svg",
  11122. extra: 1191 / 1012
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Nano",
  11129. height: math.unit(0.01, "mm")
  11130. },
  11131. {
  11132. name: "Minimicro",
  11133. height: math.unit(1, "mm")
  11134. },
  11135. {
  11136. name: "Micro",
  11137. height: math.unit(0.5, "inches")
  11138. },
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(4, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Minimacro",
  11146. height: math.unit(40, "meters")
  11147. },
  11148. {
  11149. name: "Small Macro",
  11150. height: math.unit(400, "meters")
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(4, "miles")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(40, "miles")
  11159. },
  11160. {
  11161. name: "Megamacro+",
  11162. height: math.unit(400, "miles")
  11163. },
  11164. {
  11165. name: "Gigamacro",
  11166. height: math.unit(400000, "miles")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11172. {
  11173. side: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Side",
  11177. image: {
  11178. source: "./media/characters/kimiko/side.svg",
  11179. extra: 600 / 358
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(15, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(220, "feet")
  11192. },
  11193. {
  11194. name: "Macro+",
  11195. height: math.unit(1450, "feet")
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(11500, "feet")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(9500, "miles")
  11204. },
  11205. {
  11206. name: "Teramacro",
  11207. height: math.unit(2208005005, "miles")
  11208. },
  11209. {
  11210. name: "Examacro",
  11211. height: math.unit(2750, "parsecs")
  11212. },
  11213. {
  11214. name: "Zettamacro",
  11215. height: math.unit(101500, "parsecs")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(70, "kg"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/andrew-sleepy/front.svg"
  11228. }
  11229. },
  11230. side: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(70, "kg"),
  11233. name: "Side",
  11234. image: {
  11235. source: "./media/characters/andrew-sleepy/side.svg"
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(1, "mm"),
  11243. default: true
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(150, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/judio/front.svg",
  11256. extra: 1258 / 1110
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(5 + 6 / 12, "feet")
  11264. },
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(1000, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(10, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11278. {
  11279. frontDressed: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(68, "kg"),
  11282. name: "Front (Dressed)",
  11283. image: {
  11284. source: "./media/characters/nomaxice/front-dressed.svg",
  11285. extra: 1137/824,
  11286. bottom: 74/1211
  11287. }
  11288. },
  11289. frontShorts: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(68, "kg"),
  11292. name: "Front (Shorts)",
  11293. image: {
  11294. source: "./media/characters/nomaxice/front-shorts.svg",
  11295. extra: 1137/824,
  11296. bottom: 74/1211
  11297. }
  11298. },
  11299. back: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(68, "kg"),
  11302. name: "Back",
  11303. image: {
  11304. source: "./media/characters/nomaxice/back.svg",
  11305. extra: 822/786,
  11306. bottom: 39/861
  11307. }
  11308. },
  11309. hand: {
  11310. height: math.unit(0.565, "feet"),
  11311. name: "Hand",
  11312. image: {
  11313. source: "./media/characters/nomaxice/hand.svg"
  11314. }
  11315. },
  11316. foot: {
  11317. height: math.unit(1, "feet"),
  11318. name: "Foot",
  11319. image: {
  11320. source: "./media/characters/nomaxice/foot.svg"
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(8, "cm")
  11328. },
  11329. {
  11330. name: "Norm",
  11331. height: math.unit(1.82, "m")
  11332. },
  11333. {
  11334. name: "Norm+",
  11335. height: math.unit(8.8, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Big",
  11340. height: math.unit(8, "meters")
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(18, "meters")
  11345. },
  11346. {
  11347. name: "Macro+",
  11348. height: math.unit(88, "meters")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(12, "feet"),
  11357. weight: math.unit(1.5, "tons"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/dydros/front.svg",
  11361. extra: 863 / 800,
  11362. bottom: 0.015
  11363. }
  11364. },
  11365. back: {
  11366. height: math.unit(12, "feet"),
  11367. weight: math.unit(1.5, "tons"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/dydros/back.svg",
  11371. extra: 900 / 843,
  11372. bottom: 0.005
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(12, "feet"),
  11380. default: true
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(100, "kg"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/riggi/front.svg",
  11393. extra: 5787 / 5303
  11394. }
  11395. },
  11396. hyper: {
  11397. height: math.unit(6 * 5 / 3, "feet"),
  11398. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11399. name: "Hyper",
  11400. image: {
  11401. source: "./media/characters/riggi/hyper.svg",
  11402. extra: 3595 / 3485
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Small Macro",
  11409. height: math.unit(50, "feet")
  11410. },
  11411. {
  11412. name: "Default",
  11413. height: math.unit(200, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Loom",
  11418. height: math.unit(10000, "feet")
  11419. },
  11420. {
  11421. name: "Cruising Altitude",
  11422. height: math.unit(30000, "feet")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(100, "miles")
  11427. },
  11428. {
  11429. name: "Continent Sized",
  11430. height: math.unit(2800, "miles")
  11431. },
  11432. {
  11433. name: "Earth Sized",
  11434. height: math.unit(8000, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(6, "feet"),
  11443. weight: math.unit(250, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/alexi/front.svg",
  11447. extra: 3483 / 3291,
  11448. bottom: 0.04
  11449. }
  11450. },
  11451. back: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(250, "lb"),
  11454. name: "Back",
  11455. image: {
  11456. source: "./media/characters/alexi/back.svg",
  11457. extra: 3533 / 3356,
  11458. bottom: 0.021
  11459. }
  11460. },
  11461. frontTransforming: {
  11462. height: math.unit(8.58, "feet"),
  11463. weight: math.unit(1300, "lb"),
  11464. name: "Transforming",
  11465. image: {
  11466. source: "./media/characters/alexi/front-transforming.svg",
  11467. extra: 437 / 409,
  11468. bottom: 19 / 458.66
  11469. }
  11470. },
  11471. frontTransformed: {
  11472. height: math.unit(12.5, "feet"),
  11473. weight: math.unit(4000, "lb"),
  11474. name: "Transformed",
  11475. image: {
  11476. source: "./media/characters/alexi/front-transformed.svg",
  11477. extra: 639 / 614,
  11478. bottom: 30.55 / 671
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(14, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Minimacro",
  11490. height: math.unit(30, "meters")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(500, "meters")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(9000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(384000, "km")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(150, "lb"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/kayroo/front.svg",
  11515. extra: 1153 / 1038,
  11516. bottom: 0.06
  11517. }
  11518. },
  11519. foot: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(150, "lb"),
  11522. name: "Foot",
  11523. image: {
  11524. source: "./media/characters/kayroo/foot.svg"
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(8, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Minimacro",
  11536. height: math.unit(250, "feet")
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(2800, "feet")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(5200, "feet")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(27000, "feet")
  11549. },
  11550. {
  11551. name: "Omega",
  11552. height: math.unit(45000, "feet")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(18, "feet"),
  11561. weight: math.unit(5800, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/rhys/front.svg",
  11565. extra: 3386 / 3090,
  11566. bottom: 0.07
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(18, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Working Size",
  11578. height: math.unit(200, "feet")
  11579. },
  11580. {
  11581. name: "Demolition Size",
  11582. height: math.unit(2000, "feet")
  11583. },
  11584. {
  11585. name: "Maximum Licensed Size",
  11586. height: math.unit(5, "miles")
  11587. },
  11588. {
  11589. name: "Maximum Observed Size",
  11590. height: math.unit(10, "yottameters")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(250, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/toto/front.svg",
  11603. extra: 527 / 479,
  11604. bottom: 0.05
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(3, "feet")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(10, "feet")
  11616. },
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(150, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Megamacro",
  11624. height: math.unit(1200, "feet")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "King", species: ["lion"], tags: ["anthro"] },
  11630. {
  11631. back: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Back",
  11635. image: {
  11636. source: "./media/characters/king/back.svg"
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Micro",
  11643. height: math.unit(2, "inches")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(8, "feet")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(200, "feet"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(50, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(11, "feet"),
  11665. weight: math.unit(1400, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/cordite/front.svg",
  11669. extra: 1919/1827,
  11670. bottom: 40/1959
  11671. }
  11672. },
  11673. side: {
  11674. height: math.unit(11, "feet"),
  11675. weight: math.unit(1400, "lb"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/cordite/side.svg",
  11679. extra: 1908/1793,
  11680. bottom: 38/1946
  11681. }
  11682. },
  11683. back: {
  11684. height: math.unit(11, "feet"),
  11685. weight: math.unit(1400, "lb"),
  11686. name: "Back",
  11687. image: {
  11688. source: "./media/characters/cordite/back.svg",
  11689. extra: 1938/1837,
  11690. bottom: 10/1948
  11691. }
  11692. },
  11693. feral: {
  11694. height: math.unit(2, "feet"),
  11695. weight: math.unit(90, "lb"),
  11696. name: "Feral",
  11697. image: {
  11698. source: "./media/characters/cordite/feral.svg",
  11699. extra: 1260 / 755,
  11700. bottom: 0.05
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(11, "feet"),
  11708. default: true
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/pianostrong/front.svg",
  11721. extra: 6577 / 6254,
  11722. bottom: 0.02
  11723. }
  11724. },
  11725. side: {
  11726. height: math.unit(6, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Side",
  11729. image: {
  11730. source: "./media/characters/pianostrong/side.svg",
  11731. extra: 6106 / 5730
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(6, "feet"),
  11736. weight: math.unit(150, "lb"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/pianostrong/back.svg",
  11740. extra: 6085 / 5733,
  11741. bottom: 0.01
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(100, "feet")
  11749. },
  11750. {
  11751. name: "Macro+",
  11752. height: math.unit(300, "feet"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Macro++",
  11757. height: math.unit(1000, "feet")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(150, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/kona/front.svg",
  11770. extra: 2960 / 2629,
  11771. bottom: 0.005
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(11 + 8 / 12, "feet")
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(850, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro+",
  11787. height: math.unit(1.5, "km"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Megamacro",
  11792. height: math.unit(80, "miles")
  11793. },
  11794. {
  11795. name: "Gigamacro",
  11796. height: math.unit(3500, "miles")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11802. {
  11803. side: {
  11804. height: math.unit(1.9, "meters"),
  11805. weight: math.unit(326, "kg"),
  11806. name: "Side",
  11807. image: {
  11808. source: "./media/characters/levi/side.svg",
  11809. extra: 1704 / 1334,
  11810. bottom: 0.02
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(1.9, "meters"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(20, "meters")
  11823. },
  11824. {
  11825. name: "Macro+",
  11826. height: math.unit(200, "meters")
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(2, "km")
  11831. },
  11832. {
  11833. name: "Megamacro+",
  11834. height: math.unit(20, "km")
  11835. },
  11836. {
  11837. name: "Gigamacro",
  11838. height: math.unit(2500, "km")
  11839. },
  11840. {
  11841. name: "Gigamacro+",
  11842. height: math.unit(120000, "km")
  11843. },
  11844. {
  11845. name: "Teramacro",
  11846. height: math.unit(7.77e6, "km")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6 + 4/12, "feet"),
  11855. weight: math.unit(190, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/bmc/front.svg",
  11859. extra: 1626/1472,
  11860. bottom: 79/1705
  11861. }
  11862. },
  11863. back: {
  11864. height: math.unit(6 + 4/12, "feet"),
  11865. weight: math.unit(190, "lb"),
  11866. name: "Back",
  11867. image: {
  11868. source: "./media/characters/bmc/back.svg",
  11869. extra: 1640/1479,
  11870. bottom: 45/1685
  11871. }
  11872. },
  11873. frontArmor: {
  11874. height: math.unit(6 + 4/12, "feet"),
  11875. weight: math.unit(190, "lb"),
  11876. name: "Front-armor",
  11877. image: {
  11878. source: "./media/characters/bmc/front-armor.svg",
  11879. extra: 1538/1468,
  11880. bottom: 79/1617
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Human-sized",
  11887. height: math.unit(6 + 4 / 12, "feet")
  11888. },
  11889. {
  11890. name: "Interactive Size",
  11891. height: math.unit(25, "feet")
  11892. },
  11893. {
  11894. name: "Small",
  11895. height: math.unit(250, "feet")
  11896. },
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(1250, "feet"),
  11900. default: true
  11901. },
  11902. {
  11903. name: "Good Day",
  11904. height: math.unit(88, "miles")
  11905. },
  11906. {
  11907. name: "Largest Measured Size",
  11908. height: math.unit(105.960, "galaxies")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(20, "feet"),
  11917. weight: math.unit(2016, "kg"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/sven-the-kaiju/front.svg",
  11921. extra: 1277/1250,
  11922. bottom: 35/1312
  11923. }
  11924. },
  11925. mouth: {
  11926. height: math.unit(1.85, "feet"),
  11927. name: "Mouth",
  11928. image: {
  11929. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Fairy",
  11936. height: math.unit(6, "inches")
  11937. },
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(20, "feet"),
  11941. default: true
  11942. },
  11943. {
  11944. name: "Rampage",
  11945. height: math.unit(200, "feet")
  11946. },
  11947. {
  11948. name: "Archfey Forest Guardian",
  11949. height: math.unit(1, "mile")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(4, "meters"),
  11958. weight: math.unit(2, "tons"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/marik/front.svg",
  11962. extra: 1057 / 1003,
  11963. bottom: 0.08
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(4, "meters"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(20, "meters")
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(50, "km")
  11980. },
  11981. {
  11982. name: "Gigamacro",
  11983. height: math.unit(100, "km")
  11984. },
  11985. {
  11986. name: "Alpha Macro",
  11987. height: math.unit(7.88e7, "yottameters")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(110, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/mel/front.svg",
  12000. extra: 736 / 617,
  12001. bottom: 0.017
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Pico",
  12008. height: math.unit(3, "pm")
  12009. },
  12010. {
  12011. name: "Nano",
  12012. height: math.unit(3, "nm")
  12013. },
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(0.3, "mm"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Micro+",
  12021. height: math.unit(3, "mm")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(5 + 10.5 / 12, "feet")
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12031. {
  12032. kaiju: {
  12033. height: math.unit(1.75, "meters"),
  12034. weight: math.unit(55, "kg"),
  12035. name: "Kaiju",
  12036. image: {
  12037. source: "./media/characters/lykonous/kaiju.svg",
  12038. extra: 1055 / 946,
  12039. bottom: 0.135
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(2.5, "meters"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Kaiju Dragon",
  12051. height: math.unit(60, "meters")
  12052. },
  12053. {
  12054. name: "Mega Kaiju",
  12055. height: math.unit(120, "km")
  12056. },
  12057. {
  12058. name: "Giga Kaiju",
  12059. height: math.unit(200, "megameters")
  12060. },
  12061. {
  12062. name: "Terra Kaiju",
  12063. height: math.unit(400, "gigameters")
  12064. },
  12065. {
  12066. name: "Kaiju Dragon God",
  12067. height: math.unit(13000, "exaparsecs")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/blü/front.svg",
  12080. extra: 1883 / 1564,
  12081. bottom: 0.031
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(13, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Big Boi",
  12093. height: math.unit(150, "meters")
  12094. },
  12095. {
  12096. name: "Mini Stomper",
  12097. height: math.unit(300, "meters")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(1000, "meters")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(11000, "meters")
  12106. },
  12107. {
  12108. name: "Gigamacro",
  12109. height: math.unit(11000, "km")
  12110. },
  12111. {
  12112. name: "Teramacro",
  12113. height: math.unit(420000, "km")
  12114. },
  12115. {
  12116. name: "Examacro",
  12117. height: math.unit(120, "parsecs")
  12118. },
  12119. {
  12120. name: "God Tho",
  12121. height: math.unit(98000000000, "parsecs")
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12127. {
  12128. taurFront: {
  12129. height: math.unit(6, "feet"),
  12130. weight: math.unit(200, "lb"),
  12131. name: "Taur (Front)",
  12132. image: {
  12133. source: "./media/characters/scales/taur-front.svg",
  12134. extra: 1,
  12135. bottom: 0.05
  12136. }
  12137. },
  12138. taurBack: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(200, "lb"),
  12141. name: "Taur (Back)",
  12142. image: {
  12143. source: "./media/characters/scales/taur-back.svg",
  12144. extra: 1,
  12145. bottom: 0.08
  12146. }
  12147. },
  12148. anthro: {
  12149. height: math.unit(6 * 7 / 12, "feet"),
  12150. weight: math.unit(100, "lb"),
  12151. name: "Anthro",
  12152. image: {
  12153. source: "./media/characters/scales/anthro.svg",
  12154. extra: 1,
  12155. bottom: 0.06
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(12, "feet"),
  12163. default: true
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/koragos/front.svg",
  12176. extra: 841 / 794,
  12177. bottom: 0.035
  12178. }
  12179. },
  12180. back: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Back",
  12184. image: {
  12185. source: "./media/characters/koragos/back.svg",
  12186. extra: 841 / 810,
  12187. bottom: 0.022
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(6 + 11 / 12, "feet"),
  12195. default: true
  12196. },
  12197. {
  12198. name: "Macro",
  12199. height: math.unit(490, "feet")
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(10, "miles")
  12204. },
  12205. {
  12206. name: "Gigamacro",
  12207. height: math.unit(50, "miles")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(250, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/xylrem/front.svg",
  12220. extra: 3323 / 3050,
  12221. bottom: 0.065
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Micro",
  12228. height: math.unit(4, "feet")
  12229. },
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(16, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(2720, "feet")
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(25000, "miles")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(8, "feet"),
  12250. weight: math.unit(250, "kg"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/ikideru/front.svg",
  12254. extra: 930 / 870,
  12255. bottom: 0.087
  12256. }
  12257. },
  12258. back: {
  12259. height: math.unit(8, "feet"),
  12260. weight: math.unit(250, "kg"),
  12261. name: "Back",
  12262. image: {
  12263. source: "./media/characters/ikideru/back.svg",
  12264. extra: 919 / 852,
  12265. bottom: 0.055
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Rare",
  12272. height: math.unit(8, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Playful Loom",
  12277. height: math.unit(80, "feet")
  12278. },
  12279. {
  12280. name: "City Leaner",
  12281. height: math.unit(230, "feet")
  12282. },
  12283. {
  12284. name: "Megamacro",
  12285. height: math.unit(2500, "feet")
  12286. },
  12287. {
  12288. name: "Gigamacro",
  12289. height: math.unit(26400, "feet")
  12290. },
  12291. {
  12292. name: "Tectonic Shifter",
  12293. height: math.unit(1.7, "megameters")
  12294. },
  12295. {
  12296. name: "Planet Carer",
  12297. height: math.unit(21, "megameters")
  12298. },
  12299. {
  12300. name: "God",
  12301. height: math.unit(11157.22, "parsecs")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(120, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/neo/front.svg"
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Micro",
  12320. height: math.unit(2, "inches"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Human Size",
  12325. height: math.unit(5 + 8 / 12, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(13 + 10 / 12, "feet"),
  12334. weight: math.unit(5320, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/chauncey-chantz/front.svg",
  12338. extra: 1587 / 1435,
  12339. bottom: 0.02
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Normal",
  12346. height: math.unit(13 + 10 / 12, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Macro",
  12351. height: math.unit(45, "feet")
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(250, "miles")
  12356. },
  12357. {
  12358. name: "Planetary",
  12359. height: math.unit(10000, "miles")
  12360. },
  12361. {
  12362. name: "Galactic",
  12363. height: math.unit(40000, "parsecs")
  12364. },
  12365. {
  12366. name: "Universal",
  12367. height: math.unit(1, "yottameter")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/epifox/front.svg",
  12380. extra: 1,
  12381. bottom: 0.075
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Micro",
  12388. height: math.unit(6, "inches")
  12389. },
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(12, "feet"),
  12393. default: true
  12394. },
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(3810, "feet")
  12398. },
  12399. {
  12400. name: "Megamacro",
  12401. height: math.unit(500, "miles")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12407. {
  12408. front: {
  12409. height: math.unit(1.8796, "m"),
  12410. weight: math.unit(230, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/colin-t/front.svg",
  12414. extra: 1272 / 1193,
  12415. bottom: 0.07
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Micro",
  12422. height: math.unit(0.571, "meters")
  12423. },
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(1.8796, "meters"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Tall",
  12431. height: math.unit(4, "meters")
  12432. },
  12433. {
  12434. name: "Macro",
  12435. height: math.unit(67.241, "meters")
  12436. },
  12437. {
  12438. name: "Megamacro",
  12439. height: math.unit(371.856, "meters")
  12440. },
  12441. {
  12442. name: "Planetary",
  12443. height: math.unit(12631.5689, "km")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(1.85, "meters"),
  12452. weight: math.unit(80, "kg"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/matvei/front.svg",
  12456. extra: 614 / 594,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(1.85, "meters"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(5 + 9 / 12, "feet"),
  12474. weight: math.unit(70, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/quincy/front.svg",
  12478. extra: 3041 / 2751
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(5 + 9 / 12, "feet"),
  12483. weight: math.unit(70, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/quincy/back.svg",
  12487. extra: 3041 / 2751
  12488. }
  12489. },
  12490. flying: {
  12491. height: math.unit(5 + 4 / 12, "feet"),
  12492. weight: math.unit(70, "lb"),
  12493. name: "Flying",
  12494. image: {
  12495. source: "./media/characters/quincy/flying.svg",
  12496. extra: 1044 / 930
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(3, "cm")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(5 + 9 / 12, "feet")
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(200, "meters"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(1000, "meters")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(3 + 11/12, "feet"),
  12525. weight: math.unit(50, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/vanrel/front.svg",
  12529. extra: 1104/949,
  12530. bottom: 52/1156
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(3 + 11/12, "feet"),
  12535. weight: math.unit(50, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/vanrel/back.svg",
  12539. extra: 1119/976,
  12540. bottom: 37/1156
  12541. }
  12542. },
  12543. tome: {
  12544. height: math.unit(1.35, "feet"),
  12545. weight: math.unit(10, "lb"),
  12546. name: "Vanrel's Tome",
  12547. rename: true,
  12548. image: {
  12549. source: "./media/characters/vanrel/tome.svg"
  12550. }
  12551. },
  12552. beans: {
  12553. height: math.unit(0.89, "feet"),
  12554. name: "Beans",
  12555. image: {
  12556. source: "./media/characters/vanrel/beans.svg"
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(3 + 11/12, "feet"),
  12564. default: true
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12570. {
  12571. front: {
  12572. height: math.unit(7 + 5 / 12, "feet"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/kuiper-vanrel/front.svg",
  12576. extra: 1219/1169,
  12577. bottom: 69/1288
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(7 + 5 / 12, "feet"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/kuiper-vanrel/back.svg",
  12585. extra: 1236/1193,
  12586. bottom: 27/1263
  12587. }
  12588. },
  12589. foot: {
  12590. height: math.unit(0.55, "meters"),
  12591. name: "Foot",
  12592. image: {
  12593. source: "./media/characters/kuiper-vanrel/foot.svg",
  12594. }
  12595. },
  12596. battle: {
  12597. height: math.unit(6.824, "feet"),
  12598. name: "Battle",
  12599. image: {
  12600. source: "./media/characters/kuiper-vanrel/battle.svg",
  12601. extra: 1466 / 1327,
  12602. bottom: 29 / 1492.5
  12603. }
  12604. },
  12605. meerkui: {
  12606. height: math.unit(18, "inches"),
  12607. name: "Meerkui",
  12608. image: {
  12609. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12610. extra: 1354/1289,
  12611. bottom: 69/1423
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(7 + 5 / 12, "feet"),
  12619. default: true
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(8 + 5 / 12, "feet"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/keset-vanrel/front.svg",
  12631. extra: 1231/1148,
  12632. bottom: 82/1313
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(8 + 5 / 12, "feet"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/keset-vanrel/back.svg",
  12640. extra: 1240/1174,
  12641. bottom: 33/1273
  12642. }
  12643. },
  12644. hand: {
  12645. height: math.unit(0.6, "meters"),
  12646. name: "Hand",
  12647. image: {
  12648. source: "./media/characters/keset-vanrel/hand.svg"
  12649. }
  12650. },
  12651. foot: {
  12652. height: math.unit(0.94978, "meters"),
  12653. name: "Foot",
  12654. image: {
  12655. source: "./media/characters/keset-vanrel/foot.svg"
  12656. }
  12657. },
  12658. battle: {
  12659. height: math.unit(7.408, "feet"),
  12660. name: "Battle",
  12661. image: {
  12662. source: "./media/characters/keset-vanrel/battle.svg",
  12663. extra: 1890 / 1386,
  12664. bottom: 73.28 / 1970
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(8 + 5 / 12, "feet"),
  12672. default: true
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/neos/front.svg",
  12685. extra: 1696 / 992,
  12686. bottom: 0.14
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(54, "cm"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(100, "m")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(10, "km")
  12703. },
  12704. {
  12705. name: "Megamacro+",
  12706. height: math.unit(100, "km")
  12707. },
  12708. {
  12709. name: "Gigamacro",
  12710. height: math.unit(100, "Mm")
  12711. },
  12712. {
  12713. name: "Teramacro",
  12714. height: math.unit(100, "Gm")
  12715. },
  12716. {
  12717. name: "Examacro",
  12718. height: math.unit(100, "Em")
  12719. },
  12720. {
  12721. name: "Godly",
  12722. height: math.unit(10000, "Ym")
  12723. },
  12724. {
  12725. name: "Beyond Godly",
  12726. height: math.unit(25, "multiverses")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12732. {
  12733. feminine: {
  12734. height: math.unit(5, "feet"),
  12735. weight: math.unit(100, "lb"),
  12736. name: "Feminine",
  12737. image: {
  12738. source: "./media/characters/sammy-mouse/feminine.svg",
  12739. extra: 2526 / 2425,
  12740. bottom: 0.123
  12741. }
  12742. },
  12743. masculine: {
  12744. height: math.unit(5, "feet"),
  12745. weight: math.unit(100, "lb"),
  12746. name: "Masculine",
  12747. image: {
  12748. source: "./media/characters/sammy-mouse/masculine.svg",
  12749. extra: 2526 / 2425,
  12750. bottom: 0.123
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Micro",
  12757. height: math.unit(5, "inches")
  12758. },
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(5, "feet"),
  12762. default: true
  12763. },
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(60, "feet")
  12767. },
  12768. ]
  12769. ))
  12770. characterMakers.push(() => makeCharacter(
  12771. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12772. {
  12773. front: {
  12774. height: math.unit(4, "feet"),
  12775. weight: math.unit(50, "lb"),
  12776. name: "Front",
  12777. image: {
  12778. source: "./media/characters/kole/front.svg",
  12779. extra: 1423 / 1303,
  12780. bottom: 0.025
  12781. }
  12782. },
  12783. back: {
  12784. height: math.unit(4, "feet"),
  12785. weight: math.unit(50, "lb"),
  12786. name: "Back",
  12787. image: {
  12788. source: "./media/characters/kole/back.svg",
  12789. extra: 1426 / 1280,
  12790. bottom: 0.02
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(4, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(2.5, "feet"),
  12807. weight: math.unit(32, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/rufran/front.svg",
  12811. extra: 1313/885,
  12812. bottom: 94/1407
  12813. }
  12814. },
  12815. side: {
  12816. height: math.unit(2.5, "feet"),
  12817. weight: math.unit(32, "lb"),
  12818. name: "Side",
  12819. image: {
  12820. source: "./media/characters/rufran/side.svg",
  12821. extra: 1109/852,
  12822. bottom: 118/1227
  12823. }
  12824. },
  12825. back: {
  12826. height: math.unit(2.5, "feet"),
  12827. weight: math.unit(32, "lb"),
  12828. name: "Back",
  12829. image: {
  12830. source: "./media/characters/rufran/back.svg",
  12831. extra: 1280/878,
  12832. bottom: 131/1411
  12833. }
  12834. },
  12835. mouth: {
  12836. height: math.unit(1.13, "feet"),
  12837. name: "Mouth",
  12838. image: {
  12839. source: "./media/characters/rufran/mouth.svg"
  12840. }
  12841. },
  12842. foot: {
  12843. height: math.unit(1.33, "feet"),
  12844. name: "Foot",
  12845. image: {
  12846. source: "./media/characters/rufran/foot.svg"
  12847. }
  12848. },
  12849. koboldFront: {
  12850. height: math.unit(2 + 6 / 12, "feet"),
  12851. weight: math.unit(20, "lb"),
  12852. name: "Front (Kobold)",
  12853. image: {
  12854. source: "./media/characters/rufran/kobold-front.svg",
  12855. extra: 2041 / 1839,
  12856. bottom: 0.055
  12857. }
  12858. },
  12859. koboldBack: {
  12860. height: math.unit(2 + 6 / 12, "feet"),
  12861. weight: math.unit(20, "lb"),
  12862. name: "Back (Kobold)",
  12863. image: {
  12864. source: "./media/characters/rufran/kobold-back.svg",
  12865. extra: 2054 / 1839,
  12866. bottom: 0.01
  12867. }
  12868. },
  12869. koboldHand: {
  12870. height: math.unit(0.2166, "meters"),
  12871. name: "Hand (Kobold)",
  12872. image: {
  12873. source: "./media/characters/rufran/kobold-hand.svg"
  12874. }
  12875. },
  12876. koboldFoot: {
  12877. height: math.unit(0.185, "meters"),
  12878. name: "Foot (Kobold)",
  12879. image: {
  12880. source: "./media/characters/rufran/kobold-foot.svg"
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Micro",
  12887. height: math.unit(1, "inch")
  12888. },
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(2 + 6 / 12, "feet"),
  12892. default: true
  12893. },
  12894. {
  12895. name: "Big",
  12896. height: math.unit(60, "feet")
  12897. },
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(325, "feet")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12906. {
  12907. front: {
  12908. height: math.unit(0.3, "meters"),
  12909. weight: math.unit(3.5, "kg"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/chip/front.svg",
  12913. extra: 748 / 674
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(1, "inch"),
  12921. default: true
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12927. {
  12928. side: {
  12929. height: math.unit(2.3, "meters"),
  12930. weight: math.unit(3500, "lb"),
  12931. name: "Side",
  12932. image: {
  12933. source: "./media/characters/torvid/side.svg",
  12934. extra: 1972 / 722,
  12935. bottom: 0.035
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(2.3, "meters"),
  12943. default: true
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(2, "meters"),
  12952. weight: math.unit(150.5, "kg"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/susan/front.svg",
  12956. extra: 693 / 635,
  12957. bottom: 0.05
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(505, "miles"),
  12965. default: true
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/raindrops/front.svg",
  12978. extra: 2655 / 2461,
  12979. bottom: 49 / 2705
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/raindrops/back.svg",
  12988. extra: 2574 / 2400,
  12989. bottom: 65 / 2634
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Micro",
  12996. height: math.unit(6, "inches")
  12997. },
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(6 + 2 / 12, "feet")
  13001. },
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(131, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Megamacro",
  13009. height: math.unit(15, "miles")
  13010. },
  13011. {
  13012. name: "Gigamacro",
  13013. height: math.unit(4000, "miles")
  13014. },
  13015. {
  13016. name: "Teramacro",
  13017. height: math.unit(315000, "miles")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(2.794, "meters"),
  13026. weight: math.unit(325, "kg"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/tezwa/front.svg",
  13030. extra: 2083 / 1906,
  13031. bottom: 0.031
  13032. }
  13033. },
  13034. foot: {
  13035. height: math.unit(0.687, "meters"),
  13036. name: "Foot",
  13037. image: {
  13038. source: "./media/characters/tezwa/foot.svg"
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(9 + 2 / 12, "feet"),
  13046. default: true
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(58, "feet"),
  13055. weight: math.unit(89000, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/typhus/front.svg",
  13059. extra: 816 / 800,
  13060. bottom: 0.065
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Macro",
  13067. height: math.unit(58, "feet"),
  13068. default: true
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(12, "feet"),
  13077. weight: math.unit(6, "tonnes"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/lyra-von-wulf/front.svg",
  13081. extra: 1,
  13082. bottom: 0.10
  13083. }
  13084. },
  13085. frontMecha: {
  13086. height: math.unit(12, "feet"),
  13087. weight: math.unit(12, "tonnes"),
  13088. name: "Front (Mecha)",
  13089. image: {
  13090. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13091. extra: 1,
  13092. bottom: 0.042
  13093. }
  13094. },
  13095. maw: {
  13096. height: math.unit(2.2, "feet"),
  13097. name: "Maw",
  13098. image: {
  13099. source: "./media/characters/lyra-von-wulf/maw.svg"
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(12, "feet"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Classic",
  13111. height: math.unit(50, "feet")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(500, "feet")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(1, "mile")
  13120. },
  13121. {
  13122. name: "Gigamacro",
  13123. height: math.unit(400, "miles")
  13124. },
  13125. {
  13126. name: "Teramacro",
  13127. height: math.unit(22000, "miles")
  13128. },
  13129. {
  13130. name: "Solarmacro",
  13131. height: math.unit(8600000, "miles")
  13132. },
  13133. {
  13134. name: "Galactic",
  13135. height: math.unit(1057000, "lightyears")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6 + 10 / 12, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/dixon/front.svg",
  13148. extra: 3361 / 3209,
  13149. bottom: 0.01
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(6 + 10 / 12, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Big",
  13161. height: math.unit(12, "meters")
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(500, "meters")
  13166. },
  13167. {
  13168. name: "Megamacro",
  13169. height: math.unit(2, "km")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(185, "cm"),
  13178. weight: math.unit(68, "kg"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/kauko/front.svg",
  13182. extra: 1455 / 1421,
  13183. bottom: 0.03
  13184. }
  13185. },
  13186. back: {
  13187. height: math.unit(185, "cm"),
  13188. weight: math.unit(68, "kg"),
  13189. name: "Back",
  13190. image: {
  13191. source: "./media/characters/kauko/back.svg",
  13192. extra: 1455 / 1421,
  13193. bottom: 0.004
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(185, "cm"),
  13201. default: true
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "kg"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/varg/front.svg",
  13214. extra: 1108 / 1018,
  13215. bottom: 0.0375
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(5, "meters")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(200, "meters")
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(20, "kilometers")
  13231. },
  13232. {
  13233. name: "True Size",
  13234. height: math.unit(211, "km"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(1000, "km")
  13240. },
  13241. {
  13242. name: "Gigamacro+",
  13243. height: math.unit(8000, "km")
  13244. },
  13245. {
  13246. name: "Teramacro",
  13247. height: math.unit(1000000, "km")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(7 + 7 / 12, "feet"),
  13256. weight: math.unit(267, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/dayza/front.svg",
  13260. extra: 1262 / 1200,
  13261. bottom: 0.035
  13262. }
  13263. },
  13264. side: {
  13265. height: math.unit(7 + 7 / 12, "feet"),
  13266. weight: math.unit(267, "lb"),
  13267. name: "Side",
  13268. image: {
  13269. source: "./media/characters/dayza/side.svg",
  13270. extra: 1295 / 1245,
  13271. bottom: 0.05
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(7 + 7 / 12, "feet"),
  13276. weight: math.unit(267, "lb"),
  13277. name: "Back",
  13278. image: {
  13279. source: "./media/characters/dayza/back.svg",
  13280. extra: 1241 / 1170
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(7 + 7 / 12, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(155, "feet")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6 + 5 / 12, "feet"),
  13301. weight: math.unit(160, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/xanthos/front.svg",
  13305. extra: 1,
  13306. bottom: 0.04
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(6 + 5 / 12, "feet"),
  13311. weight: math.unit(160, "lb"),
  13312. name: "Back",
  13313. image: {
  13314. source: "./media/characters/xanthos/back.svg",
  13315. extra: 1,
  13316. bottom: 0.03
  13317. }
  13318. },
  13319. hand: {
  13320. height: math.unit(0.928, "feet"),
  13321. name: "Hand",
  13322. image: {
  13323. source: "./media/characters/xanthos/hand.svg"
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(1.286, "feet"),
  13328. name: "Foot",
  13329. image: {
  13330. source: "./media/characters/xanthos/foot.svg"
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Normal",
  13337. height: math.unit(6 + 5 / 12, "feet"),
  13338. default: true
  13339. },
  13340. {
  13341. name: "Normal+",
  13342. height: math.unit(6, "meters")
  13343. },
  13344. {
  13345. name: "Macro",
  13346. height: math.unit(40, "feet")
  13347. },
  13348. {
  13349. name: "Macro+",
  13350. height: math.unit(200, "meters")
  13351. },
  13352. {
  13353. name: "Megamacro",
  13354. height: math.unit(20, "km")
  13355. },
  13356. {
  13357. name: "Megamacro+",
  13358. height: math.unit(100, "km")
  13359. },
  13360. {
  13361. name: "Gigamacro",
  13362. height: math.unit(200, "megameters")
  13363. },
  13364. {
  13365. name: "Gigamacro+",
  13366. height: math.unit(1.5, "gigameters")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6 + 3 / 12, "feet"),
  13375. weight: math.unit(215, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/grynn/front.svg",
  13379. extra: 4627 / 4209,
  13380. bottom: 0.047
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(6, "inches")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(6 + 3 / 12, "feet"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Big",
  13396. height: math.unit(104, "feet")
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(944, "feet")
  13401. },
  13402. {
  13403. name: "Macro+",
  13404. height: math.unit(9480, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(78752, "feet")
  13409. },
  13410. {
  13411. name: "Megamacro+",
  13412. height: math.unit(630128, "feet")
  13413. },
  13414. {
  13415. name: "Megamacro++",
  13416. height: math.unit(3150695, "feet")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(7 + 5 / 12, "feet"),
  13425. weight: math.unit(450, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/mocha-aura/front.svg",
  13429. extra: 1907 / 1817,
  13430. bottom: 0.04
  13431. }
  13432. },
  13433. back: {
  13434. height: math.unit(7 + 5 / 12, "feet"),
  13435. weight: math.unit(450, "lb"),
  13436. name: "Back",
  13437. image: {
  13438. source: "./media/characters/mocha-aura/back.svg",
  13439. extra: 1900 / 1825,
  13440. bottom: 0.045
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Nano",
  13447. height: math.unit(1, "nm")
  13448. },
  13449. {
  13450. name: "Megamicro",
  13451. height: math.unit(1, "mm")
  13452. },
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(3, "inches")
  13456. },
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(7 + 5 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(30, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(3500, "feet")
  13469. },
  13470. {
  13471. name: "Teramacro",
  13472. height: math.unit(500000, "miles")
  13473. },
  13474. {
  13475. name: "Petamacro",
  13476. height: math.unit(50000000000000000, "parsecs")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13482. {
  13483. front: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/ilisha-devya/front.svg",
  13489. extra: 1053/1049,
  13490. bottom: 270/1323
  13491. }
  13492. },
  13493. back: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Back",
  13497. image: {
  13498. source: "./media/characters/ilisha-devya/back.svg",
  13499. extra: 1131/1128,
  13500. bottom: 39/1170
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Macro",
  13507. height: math.unit(500, "feet"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Megamacro",
  13512. height: math.unit(10, "miles")
  13513. },
  13514. {
  13515. name: "Gigamacro",
  13516. height: math.unit(100000, "miles")
  13517. },
  13518. {
  13519. name: "Examacro",
  13520. height: math.unit(1e9, "lightyears")
  13521. },
  13522. {
  13523. name: "Omniversal",
  13524. height: math.unit(1e33, "lightyears")
  13525. },
  13526. {
  13527. name: "Beyond Infinite",
  13528. height: math.unit(1e100, "lightyears")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13534. {
  13535. Side: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Side",
  13539. image: {
  13540. source: "./media/characters/mira/side.svg",
  13541. extra: 900 / 799,
  13542. bottom: 0.02
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Human Size",
  13549. height: math.unit(6, "feet")
  13550. },
  13551. {
  13552. name: "Macro",
  13553. height: math.unit(100, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(10, "miles")
  13559. },
  13560. {
  13561. name: "Gigamacro",
  13562. height: math.unit(25000, "miles")
  13563. },
  13564. {
  13565. name: "Teramacro",
  13566. height: math.unit(300, "AU")
  13567. },
  13568. {
  13569. name: "Full Size",
  13570. height: math.unit(4.5e10, "lightyears")
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13576. {
  13577. front: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(150, "lb"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/holly/front.svg",
  13583. extra: 639 / 606
  13584. }
  13585. },
  13586. back: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Back",
  13590. image: {
  13591. source: "./media/characters/holly/back.svg",
  13592. extra: 623 / 598
  13593. }
  13594. },
  13595. frontWorking: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(150, "lb"),
  13598. name: "Front (Working)",
  13599. image: {
  13600. source: "./media/characters/holly/front-working.svg",
  13601. extra: 607 / 577,
  13602. bottom: 0.048
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(12 + 3 / 12, "feet"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/porter/front.svg",
  13623. extra: 1,
  13624. bottom: 0.01
  13625. }
  13626. },
  13627. frontRobes: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front (Robes)",
  13631. image: {
  13632. source: "./media/characters/porter/front-robes.svg",
  13633. extra: 1.01,
  13634. bottom: 0.01
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(11 + 9 / 12, "feet"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13648. {
  13649. legendary: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Legendary",
  13653. image: {
  13654. source: "./media/characters/lucy/legendary.svg",
  13655. extra: 1355 / 1100,
  13656. bottom: 0.045
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Legendary",
  13663. height: math.unit(86882 * 2, "miles"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/drusilla/front.svg",
  13677. extra: 678 / 635,
  13678. bottom: 0.03
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/drusilla/back.svg",
  13687. extra: 678 / 635,
  13688. bottom: 0.005
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(100, "feet")
  13696. },
  13697. {
  13698. name: "Canon Height",
  13699. height: math.unit(2000, "feet"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(180, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/renard-thatch/front.svg",
  13713. extra: 2411 / 2275,
  13714. bottom: 0.01
  13715. }
  13716. },
  13717. frontPosing: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(180, "lb"),
  13720. name: "Front (Posing)",
  13721. image: {
  13722. source: "./media/characters/renard-thatch/front-posing.svg",
  13723. extra: 2381 / 2261,
  13724. bottom: 0.01
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(180, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/renard-thatch/back.svg",
  13733. extra: 2428 / 2288
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(3, "inches")
  13741. },
  13742. {
  13743. name: "Default",
  13744. height: math.unit(6, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(75, "feet")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(1450, "feet"),
  13758. weight: math.unit(1.21e6, "tons"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/sekvra/front.svg",
  13762. extra: 1193/1190,
  13763. bottom: 78/1271
  13764. }
  13765. },
  13766. side: {
  13767. height: math.unit(1450, "feet"),
  13768. weight: math.unit(1.21e6, "tons"),
  13769. name: "Side",
  13770. image: {
  13771. source: "./media/characters/sekvra/side.svg",
  13772. extra: 1193/1190,
  13773. bottom: 52/1245
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(1450, "feet"),
  13778. weight: math.unit(1.21e6, "tons"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/sekvra/back.svg",
  13782. extra: 1219/1216,
  13783. bottom: 21/1240
  13784. }
  13785. },
  13786. frontClothed: {
  13787. height: math.unit(1450, "feet"),
  13788. weight: math.unit(1.21e6, "tons"),
  13789. name: "Front (Clothed)",
  13790. image: {
  13791. source: "./media/characters/sekvra/front-clothed.svg",
  13792. extra: 1192/1189,
  13793. bottom: 79/1271
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(1450, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Megamacro",
  13805. height: math.unit(15000, "feet")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(150, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/carmine/front.svg",
  13818. extra: 1,
  13819. bottom: 0.035
  13820. }
  13821. },
  13822. frontArmor: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(150, "lb"),
  13825. name: "Front (Armor)",
  13826. image: {
  13827. source: "./media/characters/carmine/front-armor.svg",
  13828. extra: 1,
  13829. bottom: 0.035
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Large",
  13836. height: math.unit(1, "mile")
  13837. },
  13838. {
  13839. name: "Huge",
  13840. height: math.unit(40, "miles"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Colossal",
  13845. height: math.unit(2500, "miles")
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(150, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/elyssia/front.svg",
  13858. extra: 2201 / 2035,
  13859. bottom: 0.05
  13860. }
  13861. },
  13862. frontClothed: {
  13863. height: math.unit(6, "feet"),
  13864. weight: math.unit(150, "lb"),
  13865. name: "Front (Clothed)",
  13866. image: {
  13867. source: "./media/characters/elyssia/front-clothed.svg",
  13868. extra: 2201 / 2035,
  13869. bottom: 0.05
  13870. }
  13871. },
  13872. back: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Back",
  13876. image: {
  13877. source: "./media/characters/elyssia/back.svg",
  13878. extra: 2201 / 2035,
  13879. bottom: 0.013
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Smaller",
  13886. height: math.unit(150, "feet")
  13887. },
  13888. {
  13889. name: "Standard",
  13890. height: math.unit(1400, "feet"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Distracted",
  13895. height: math.unit(15000, "feet")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 4/12, "feet"),
  13904. weight: math.unit(690, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/geno-maxwell/front.svg",
  13908. extra: 984/856,
  13909. bottom: 87/1071
  13910. }
  13911. },
  13912. back: {
  13913. height: math.unit(7 + 4/12, "feet"),
  13914. weight: math.unit(690, "lb"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/geno-maxwell/back.svg",
  13918. extra: 981/854,
  13919. bottom: 57/1038
  13920. }
  13921. },
  13922. frontCostume: {
  13923. height: math.unit(7 + 4/12, "feet"),
  13924. weight: math.unit(690, "lb"),
  13925. name: "Front (Costume)",
  13926. image: {
  13927. source: "./media/characters/geno-maxwell/front-costume.svg",
  13928. extra: 984/856,
  13929. bottom: 87/1071
  13930. }
  13931. },
  13932. backcostume: {
  13933. height: math.unit(7 + 4/12, "feet"),
  13934. weight: math.unit(690, "lb"),
  13935. name: "Back (Costume)",
  13936. image: {
  13937. source: "./media/characters/geno-maxwell/back-costume.svg",
  13938. extra: 981/854,
  13939. bottom: 57/1038
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Micro",
  13946. height: math.unit(3, "inches")
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(7 + 4 / 12, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(220, "feet")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(11, "miles")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(7 + 4/12, "feet"),
  13968. weight: math.unit(750, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/regena-maxwell/front.svg",
  13972. extra: 984/856,
  13973. bottom: 87/1071
  13974. }
  13975. },
  13976. back: {
  13977. height: math.unit(7 + 4/12, "feet"),
  13978. weight: math.unit(750, "lb"),
  13979. name: "Back",
  13980. image: {
  13981. source: "./media/characters/regena-maxwell/back.svg",
  13982. extra: 981/854,
  13983. bottom: 57/1038
  13984. }
  13985. },
  13986. frontCostume: {
  13987. height: math.unit(7 + 4/12, "feet"),
  13988. weight: math.unit(750, "lb"),
  13989. name: "Front (Costume)",
  13990. image: {
  13991. source: "./media/characters/regena-maxwell/front-costume.svg",
  13992. extra: 984/856,
  13993. bottom: 87/1071
  13994. }
  13995. },
  13996. backcostume: {
  13997. height: math.unit(7 + 4/12, "feet"),
  13998. weight: math.unit(750, "lb"),
  13999. name: "Back (Costume)",
  14000. image: {
  14001. source: "./media/characters/regena-maxwell/back-costume.svg",
  14002. extra: 981/854,
  14003. bottom: 57/1038
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(7 + 4 / 12, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(220, "feet")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(11, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14032. extra: 860 / 690,
  14033. bottom: 0.03
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(1.7, "meters"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(6, "feet"),
  14050. weight: math.unit(150, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/quilly/front.svg",
  14054. extra: 890 / 776
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Gigamacro",
  14061. height: math.unit(404090, "miles"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(7 + 8 / 12, "feet"),
  14071. weight: math.unit(350, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/tempest/front.svg",
  14075. extra: 1175 / 1086,
  14076. bottom: 0.02
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(7 + 8 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14090. {
  14091. side: {
  14092. height: math.unit(4 + 5 / 12, "feet"),
  14093. weight: math.unit(80, "lb"),
  14094. name: "Side",
  14095. image: {
  14096. source: "./media/characters/rodger/side.svg",
  14097. extra: 1235 / 1118
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(1, "inch")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(4 + 5 / 12, "feet"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(120, "feet")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/danyel/front.svg",
  14126. extra: 1185 / 1123,
  14127. bottom: 0.05
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Shrunken",
  14134. height: math.unit(0.5, "mm")
  14135. },
  14136. {
  14137. name: "Micro",
  14138. height: math.unit(1, "mm"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Upsized",
  14143. height: math.unit(5 + 5 / 12, "feet")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(5 + 6 / 12, "feet"),
  14152. weight: math.unit(200, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/vivian-bijoux/front.svg",
  14156. extra: 1217/1209,
  14157. bottom: 76/1293
  14158. }
  14159. },
  14160. back: {
  14161. height: math.unit(5 + 6 / 12, "feet"),
  14162. weight: math.unit(200, "lb"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/vivian-bijoux/back.svg",
  14166. extra: 1214/1208,
  14167. bottom: 51/1265
  14168. }
  14169. },
  14170. dressed: {
  14171. height: math.unit(5 + 6 / 12, "feet"),
  14172. weight: math.unit(200, "lb"),
  14173. name: "Dressed",
  14174. image: {
  14175. source: "./media/characters/vivian-bijoux/dressed.svg",
  14176. extra: 1217/1209,
  14177. bottom: 76/1293
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(5 + 6 / 12, "feet"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Bad Dream",
  14189. height: math.unit(500, "feet")
  14190. },
  14191. {
  14192. name: "Nightmare",
  14193. height: math.unit(500, "miles")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(6 + 1 / 12, "feet"),
  14202. weight: math.unit(260, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/zeta/front.svg",
  14206. extra: 1968 / 1889,
  14207. bottom: 0.06
  14208. }
  14209. },
  14210. back: {
  14211. height: math.unit(6 + 1 / 12, "feet"),
  14212. weight: math.unit(260, "lb"),
  14213. name: "Back",
  14214. image: {
  14215. source: "./media/characters/zeta/back.svg",
  14216. extra: 1944 / 1858,
  14217. bottom: 0.03
  14218. }
  14219. },
  14220. hand: {
  14221. height: math.unit(1.112, "feet"),
  14222. name: "Hand",
  14223. image: {
  14224. source: "./media/characters/zeta/hand.svg"
  14225. }
  14226. },
  14227. foot: {
  14228. height: math.unit(1.48, "feet"),
  14229. name: "Foot",
  14230. image: {
  14231. source: "./media/characters/zeta/foot.svg"
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Micro",
  14238. height: math.unit(6, "inches")
  14239. },
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(6 + 1 / 12, "feet"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(20, "feet")
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(6, "feet"),
  14256. weight: math.unit(150, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/jamie-larsen/front.svg",
  14260. extra: 962 / 933,
  14261. bottom: 0.02
  14262. }
  14263. },
  14264. back: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Back",
  14268. image: {
  14269. source: "./media/characters/jamie-larsen/back.svg",
  14270. extra: 997 / 946
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(28 + 7 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro+",
  14282. height: math.unit(180, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(10, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(200000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(120, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/vance/front.svg",
  14303. extra: 1980 / 1890,
  14304. bottom: 0.09
  14305. }
  14306. },
  14307. back: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(120, "lb"),
  14310. name: "Back",
  14311. image: {
  14312. source: "./media/characters/vance/back.svg",
  14313. extra: 2081 / 1994,
  14314. bottom: 0.014
  14315. }
  14316. },
  14317. hand: {
  14318. height: math.unit(0.88, "feet"),
  14319. name: "Hand",
  14320. image: {
  14321. source: "./media/characters/vance/hand.svg"
  14322. }
  14323. },
  14324. foot: {
  14325. height: math.unit(0.64, "feet"),
  14326. name: "Foot",
  14327. image: {
  14328. source: "./media/characters/vance/foot.svg"
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Small",
  14335. height: math.unit(90, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro",
  14340. height: math.unit(100, "meters")
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(15, "miles")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(180, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/xochitl/front.svg",
  14357. extra: 2297 / 2261,
  14358. bottom: 0.065
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(180, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/xochitl/back.svg",
  14367. extra: 2386 / 2354,
  14368. bottom: 0.01
  14369. }
  14370. },
  14371. foot: {
  14372. height: math.unit(6 / 5 * 1.15, "feet"),
  14373. weight: math.unit(150, "lb"),
  14374. name: "Foot",
  14375. image: {
  14376. source: "./media/characters/xochitl/foot.svg"
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(80, "feet")
  14384. },
  14385. {
  14386. name: "Macro+",
  14387. height: math.unit(400, "feet"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Gigamacro",
  14392. height: math.unit(80000, "miles")
  14393. },
  14394. {
  14395. name: "Gigamacro+",
  14396. height: math.unit(400000, "miles")
  14397. },
  14398. {
  14399. name: "Teramacro",
  14400. height: math.unit(300, "AU")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/vincent/front.svg",
  14413. extra: 1130 / 1080,
  14414. bottom: 0.055
  14415. }
  14416. },
  14417. beak: {
  14418. height: math.unit(6 * 0.1, "feet"),
  14419. name: "Beak",
  14420. image: {
  14421. source: "./media/characters/vincent/beak.svg"
  14422. }
  14423. },
  14424. hand: {
  14425. height: math.unit(6 * 0.85, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Hand",
  14428. image: {
  14429. source: "./media/characters/vincent/hand.svg"
  14430. }
  14431. },
  14432. foot: {
  14433. height: math.unit(6 * 0.19, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Foot",
  14436. image: {
  14437. source: "./media/characters/vincent/foot.svg"
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Base",
  14444. height: math.unit(6 + 5 / 12, "feet"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(300, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(2, "miles")
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(1000, "miles")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(2, "meters"),
  14466. weight: math.unit(500, "kg"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/coatl/front.svg",
  14470. extra: 3948 / 3500,
  14471. bottom: 0.082
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(4, "meters")
  14479. },
  14480. {
  14481. name: "Macro",
  14482. height: math.unit(100, "meters"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Macro+",
  14487. height: math.unit(300, "meters")
  14488. },
  14489. {
  14490. name: "Megamacro",
  14491. height: math.unit(3, "gigameters")
  14492. },
  14493. {
  14494. name: "Megamacro+",
  14495. height: math.unit(300, "terameters")
  14496. },
  14497. {
  14498. name: "Megamacro++",
  14499. height: math.unit(3, "lightyears")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(50, "kg"),
  14509. name: "front",
  14510. image: {
  14511. source: "./media/characters/shiroryu/front.svg",
  14512. extra: 1990 / 1935
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Mortal Mingling",
  14519. height: math.unit(3, "meters")
  14520. },
  14521. {
  14522. name: "Kaiju-ish",
  14523. height: math.unit(250, "meters")
  14524. },
  14525. {
  14526. name: "Somewhat Godly",
  14527. height: math.unit(400, "km"),
  14528. default: true
  14529. },
  14530. {
  14531. name: "Planetary",
  14532. height: math.unit(300, "megameters")
  14533. },
  14534. {
  14535. name: "Galaxy-dwarfing",
  14536. height: math.unit(450, "kiloparsecs")
  14537. },
  14538. {
  14539. name: "Universe Eater",
  14540. height: math.unit(150, "gigaparsecs")
  14541. },
  14542. {
  14543. name: "Almost Immeasurable",
  14544. height: math.unit(1.3e266, "yottaparsecs")
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(150, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/umeko/front.svg",
  14557. extra: 1,
  14558. bottom: 0.019
  14559. }
  14560. },
  14561. frontArmored: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(150, "lb"),
  14564. name: "Front (Armored)",
  14565. image: {
  14566. source: "./media/characters/umeko/front-armored.svg",
  14567. extra: 1,
  14568. bottom: 0.021
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Macro",
  14575. height: math.unit(220, "feet"),
  14576. default: true
  14577. },
  14578. {
  14579. name: "Guardian Dragon",
  14580. height: math.unit(50, "miles")
  14581. },
  14582. {
  14583. name: "Cosmic",
  14584. height: math.unit(800000, "miles")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/cassidy/front.svg",
  14597. extra: 810/808,
  14598. bottom: 41/851
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Canon Height",
  14605. height: math.unit(120, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro+",
  14610. height: math.unit(400, "feet")
  14611. },
  14612. {
  14613. name: "Macro++",
  14614. height: math.unit(4000, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(3, "miles")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/isaac/front.svg",
  14631. extra: 896 / 815,
  14632. bottom: 0.11
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Human Size",
  14639. height: math.unit(8, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(400, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(50, "miles")
  14649. },
  14650. {
  14651. name: "Canon Height",
  14652. height: math.unit(200, "AU")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(72, "kg"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/sleekit/front.svg",
  14665. extra: 4693 / 4487,
  14666. bottom: 0.012
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Minimum Height",
  14673. height: math.unit(10, "meters")
  14674. },
  14675. {
  14676. name: "Smaller",
  14677. height: math.unit(25, "meters")
  14678. },
  14679. {
  14680. name: "Larger",
  14681. height: math.unit(38, "meters"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Maximum height",
  14686. height: math.unit(100, "meters")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(150, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/nillia/front.svg",
  14699. extra: 2195 / 2037,
  14700. bottom: 0.005
  14701. }
  14702. },
  14703. back: {
  14704. height: math.unit(6, "feet"),
  14705. weight: math.unit(150, "lb"),
  14706. name: "Back",
  14707. image: {
  14708. source: "./media/characters/nillia/back.svg",
  14709. extra: 2195 / 2037,
  14710. bottom: 0.005
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Canon Height",
  14717. height: math.unit(489, "feet"),
  14718. default: true
  14719. }
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/mesmyriza/front.svg",
  14731. extra: 2067 / 1784,
  14732. bottom: 0.035
  14733. }
  14734. },
  14735. foot: {
  14736. height: math.unit(6 / (250 / 35), "feet"),
  14737. name: "Foot",
  14738. image: {
  14739. source: "./media/characters/mesmyriza/foot.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(457, "meters"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Megamacro",
  14751. height: math.unit(8, "megameters")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(250, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/saudade/front.svg",
  14764. extra: 1172 / 1139,
  14765. bottom: 0.035
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Micro",
  14772. height: math.unit(3, "inches")
  14773. },
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(6, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(50, "feet")
  14782. },
  14783. {
  14784. name: "Megamacro",
  14785. height: math.unit(2800, "feet")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(5 + 4 / 12, "feet"),
  14794. weight: math.unit(100, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/keireer/front.svg",
  14798. extra: 716 / 666,
  14799. bottom: 0.05
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(5 + 4 / 12, "feet"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(90, "kg"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/mirja/front.svg",
  14820. extra: 1789 / 1683,
  14821. bottom: 0.05
  14822. }
  14823. },
  14824. frontDressed: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(90, "lb"),
  14827. name: "Front (Dressed)",
  14828. image: {
  14829. source: "./media/characters/mirja/front-dressed.svg",
  14830. extra: 1789 / 1683,
  14831. bottom: 0.05
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(6, "feet"),
  14836. weight: math.unit(90, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/mirja/back.svg",
  14840. extra: 953 / 917,
  14841. bottom: 0.017
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "\"Incognito\"",
  14848. height: math.unit(3, "meters")
  14849. },
  14850. {
  14851. name: "Strolling Size",
  14852. height: math.unit(15, "km")
  14853. },
  14854. {
  14855. name: "Larger Strolling Size",
  14856. height: math.unit(400, "km")
  14857. },
  14858. {
  14859. name: "Preferred Size",
  14860. height: math.unit(5000, "km")
  14861. },
  14862. {
  14863. name: "True Size",
  14864. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(15, "feet"),
  14874. weight: math.unit(880, "kg"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/nightraver/front.svg",
  14878. extra: 2444 / 2160,
  14879. bottom: 0.027
  14880. }
  14881. },
  14882. back: {
  14883. height: math.unit(15, "feet"),
  14884. weight: math.unit(880, "kg"),
  14885. name: "Back",
  14886. image: {
  14887. source: "./media/characters/nightraver/back.svg",
  14888. extra: 2309 / 2180,
  14889. bottom: 0.005
  14890. }
  14891. },
  14892. sole: {
  14893. height: math.unit(2.878, "feet"),
  14894. name: "Sole",
  14895. image: {
  14896. source: "./media/characters/nightraver/sole.svg"
  14897. }
  14898. },
  14899. foot: {
  14900. height: math.unit(2.285, "feet"),
  14901. name: "Foot",
  14902. image: {
  14903. source: "./media/characters/nightraver/foot.svg"
  14904. }
  14905. },
  14906. maw: {
  14907. height: math.unit(2.67, "feet"),
  14908. name: "Maw",
  14909. image: {
  14910. source: "./media/characters/nightraver/maw.svg"
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Micro",
  14917. height: math.unit(1, "cm")
  14918. },
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(15, "feet"),
  14922. default: true
  14923. },
  14924. {
  14925. name: "Macro",
  14926. height: math.unit(300, "feet")
  14927. },
  14928. {
  14929. name: "Megamacro",
  14930. height: math.unit(300, "miles")
  14931. },
  14932. {
  14933. name: "Gigamacro",
  14934. height: math.unit(10000, "miles")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14940. {
  14941. side: {
  14942. height: math.unit(2, "inches"),
  14943. weight: math.unit(5, "grams"),
  14944. name: "Side",
  14945. image: {
  14946. source: "./media/characters/arc/side.svg"
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Micro",
  14953. height: math.unit(2, "inches"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(1.1938, "meters"),
  14963. weight: math.unit(54, "kg"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/nebula-shahar/front.svg",
  14967. extra: 1642 / 1436,
  14968. bottom: 0.06
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Megamicro",
  14975. height: math.unit(0.3, "mm")
  14976. },
  14977. {
  14978. name: "Micro",
  14979. height: math.unit(3, "cm")
  14980. },
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(138, "cm"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Macro",
  14988. height: math.unit(30, "m")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5.24, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/shayla/front.svg",
  15001. extra: 1512 / 1414,
  15002. bottom: 0.01
  15003. }
  15004. },
  15005. back: {
  15006. height: math.unit(5.24, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Back",
  15009. image: {
  15010. source: "./media/characters/shayla/back.svg",
  15011. extra: 1512 / 1414
  15012. }
  15013. },
  15014. hand: {
  15015. height: math.unit(0.7781496062992126, "feet"),
  15016. name: "Hand",
  15017. image: {
  15018. source: "./media/characters/shayla/hand.svg"
  15019. }
  15020. },
  15021. foot: {
  15022. height: math.unit(1.4206036745406823, "feet"),
  15023. name: "Foot",
  15024. image: {
  15025. source: "./media/characters/shayla/foot.svg"
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Micro",
  15032. height: math.unit(0.32, "feet")
  15033. },
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5.24, "feet"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Macro",
  15041. height: math.unit(492.12, "feet")
  15042. },
  15043. {
  15044. name: "Megamacro",
  15045. height: math.unit(186.41, "miles")
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(2.2, "m"),
  15054. weight: math.unit(120, "kg"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/pia-jr/front.svg",
  15058. extra: 1000 / 970,
  15059. bottom: 0.035
  15060. }
  15061. },
  15062. hand: {
  15063. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15064. name: "Hand",
  15065. image: {
  15066. source: "./media/characters/pia-jr/hand.svg"
  15067. }
  15068. },
  15069. paw: {
  15070. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15071. name: "Paw",
  15072. image: {
  15073. source: "./media/characters/pia-jr/paw.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Micro",
  15080. height: math.unit(1.2, "cm")
  15081. },
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(2.2, "m"),
  15085. default: true
  15086. },
  15087. {
  15088. name: "Macro",
  15089. height: math.unit(180, "m")
  15090. },
  15091. {
  15092. name: "Megamacro",
  15093. height: math.unit(420, "km")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(2, "m"),
  15102. weight: math.unit(115, "kg"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/pia-sr/front.svg",
  15106. extra: 760 / 730,
  15107. bottom: 0.015
  15108. }
  15109. },
  15110. back: {
  15111. height: math.unit(2, "m"),
  15112. weight: math.unit(115, "kg"),
  15113. name: "Back",
  15114. image: {
  15115. source: "./media/characters/pia-sr/back.svg",
  15116. extra: 760 / 730,
  15117. bottom: 0.01
  15118. }
  15119. },
  15120. hand: {
  15121. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15122. name: "Hand",
  15123. image: {
  15124. source: "./media/characters/pia-sr/hand.svg"
  15125. }
  15126. },
  15127. foot: {
  15128. height: math.unit(1.83, "feet"),
  15129. name: "Foot",
  15130. image: {
  15131. source: "./media/characters/pia-sr/foot.svg"
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Micro",
  15138. height: math.unit(88, "mm")
  15139. },
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(2, "m"),
  15143. default: true
  15144. },
  15145. {
  15146. name: "Macro",
  15147. height: math.unit(200, "m")
  15148. },
  15149. {
  15150. name: "Megamacro",
  15151. height: math.unit(420, "km")
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(8 + 2 / 12, "feet"),
  15160. weight: math.unit(300, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/kibibyte/front.svg",
  15164. extra: 2221 / 2098,
  15165. bottom: 0.04
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(8 + 2 / 12, "feet"),
  15173. default: true
  15174. },
  15175. {
  15176. name: "Socialable Macro",
  15177. height: math.unit(50, "feet")
  15178. },
  15179. {
  15180. name: "Macro",
  15181. height: math.unit(300, "feet")
  15182. },
  15183. {
  15184. name: "Megamacro",
  15185. height: math.unit(500, "miles")
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6, "feet"),
  15194. weight: math.unit(150, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/felix/front.svg",
  15198. extra: 762 / 722,
  15199. bottom: 0.02
  15200. }
  15201. },
  15202. frontClothed: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Front (Clothed)",
  15206. image: {
  15207. source: "./media/characters/felix/front-clothed.svg",
  15208. extra: 762 / 722,
  15209. bottom: 0.02
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 8 / 12, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(2600, "feet")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(450, "miles")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. weight: math.unit(250, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/tobo/front.svg",
  15238. extra: 608 / 586,
  15239. bottom: 0.023
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(6 + 1 / 12, "feet"),
  15244. weight: math.unit(250, "lb"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/tobo/back.svg",
  15248. extra: 608 / 586
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Nano",
  15255. height: math.unit(2, "nm")
  15256. },
  15257. {
  15258. name: "Megamicro",
  15259. height: math.unit(0.1, "mm")
  15260. },
  15261. {
  15262. name: "Micro",
  15263. height: math.unit(1, "inch"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Human-sized",
  15268. height: math.unit(6 + 1 / 12, "feet")
  15269. },
  15270. {
  15271. name: "Macro",
  15272. height: math.unit(250, "feet")
  15273. },
  15274. {
  15275. name: "Megamacro",
  15276. height: math.unit(75, "miles")
  15277. },
  15278. {
  15279. name: "Texas-sized",
  15280. height: math.unit(750, "miles")
  15281. },
  15282. {
  15283. name: "Teramacro",
  15284. height: math.unit(50000, "miles")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(269, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/danny-kapowsky/front.svg",
  15297. extra: 766 / 736,
  15298. bottom: 0.044
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(269, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/danny-kapowsky/back.svg",
  15307. extra: 797 / 760,
  15308. bottom: 0.025
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Macro",
  15315. height: math.unit(150, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Macro+",
  15320. height: math.unit(200, "feet")
  15321. },
  15322. {
  15323. name: "Macro++",
  15324. height: math.unit(300, "feet")
  15325. },
  15326. {
  15327. name: "Macro+++",
  15328. height: math.unit(400, "feet")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15334. {
  15335. side: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(170, "lb"),
  15338. name: "Side",
  15339. image: {
  15340. source: "./media/characters/finn/side.svg",
  15341. extra: 1953 / 1807,
  15342. bottom: 0.057
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(14445, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(5 + 6 / 12, "feet"),
  15359. weight: math.unit(125, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/roy/front.svg",
  15363. extra: 1,
  15364. bottom: 0.11
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(3, "inches"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(5 + 6 / 12, "feet")
  15377. },
  15378. {
  15379. name: "Lesser Macro",
  15380. height: math.unit(60, "feet")
  15381. },
  15382. {
  15383. name: "Greater Macro",
  15384. height: math.unit(120, "feet")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(100, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/aevsivs/front.svg",
  15397. extra: 1,
  15398. bottom: 0.03
  15399. }
  15400. },
  15401. back: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(100, "lb"),
  15404. name: "Back",
  15405. image: {
  15406. source: "./media/characters/aevsivs/back.svg"
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Micro",
  15413. height: math.unit(2, "inches"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(5, "feet")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(5 + 7 / 12, "feet"),
  15427. weight: math.unit(159, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/hildegard/front.svg",
  15431. extra: 289 / 269,
  15432. bottom: 7.63 / 297.8
  15433. }
  15434. },
  15435. back: {
  15436. height: math.unit(5 + 7 / 12, "feet"),
  15437. weight: math.unit(159, "lb"),
  15438. name: "Back",
  15439. image: {
  15440. source: "./media/characters/hildegard/back.svg",
  15441. extra: 280 / 260,
  15442. bottom: 2.3 / 282
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(5 + 7 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15456. {
  15457. bernard: {
  15458. height: math.unit(2 + 7 / 12, "feet"),
  15459. weight: math.unit(66, "lb"),
  15460. name: "Bernard",
  15461. rename: true,
  15462. image: {
  15463. source: "./media/characters/bernard-wilder/bernard.svg",
  15464. extra: 192 / 128,
  15465. bottom: 0.05
  15466. }
  15467. },
  15468. wilder: {
  15469. height: math.unit(5 + 8 / 12, "feet"),
  15470. weight: math.unit(143, "lb"),
  15471. name: "Wilder",
  15472. rename: true,
  15473. image: {
  15474. source: "./media/characters/bernard-wilder/wilder.svg",
  15475. extra: 361 / 312,
  15476. bottom: 0.02
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2 + 7 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(6 + 1 / 12, "feet"),
  15493. weight: math.unit(155, "lb"),
  15494. name: "Anthro",
  15495. image: {
  15496. source: "./media/characters/hearth/anthro.svg",
  15497. extra: 1178/1136,
  15498. bottom: 28/1206
  15499. }
  15500. },
  15501. feral: {
  15502. height: math.unit(3.78, "feet"),
  15503. weight: math.unit(35, "kg"),
  15504. name: "Feral",
  15505. image: {
  15506. source: "./media/characters/hearth/feral.svg",
  15507. extra: 153 / 135,
  15508. bottom: 0.03
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(6 + 1 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(182, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/ingrid/front.svg",
  15529. extra: 294 / 268,
  15530. bottom: 0.027
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(6, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15544. {
  15545. eevee: {
  15546. height: math.unit(2 + 10 / 12, "feet"),
  15547. weight: math.unit(86, "lb"),
  15548. name: "Malgam",
  15549. image: {
  15550. source: "./media/characters/malgam/eevee.svg",
  15551. extra: 952/784,
  15552. bottom: 38/990
  15553. }
  15554. },
  15555. sylveon: {
  15556. height: math.unit(4, "feet"),
  15557. weight: math.unit(101, "lb"),
  15558. name: "Future Malgam",
  15559. rename: true,
  15560. image: {
  15561. source: "./media/characters/malgam/sylveon.svg",
  15562. extra: 371 / 325,
  15563. bottom: 0.015
  15564. }
  15565. },
  15566. gigantamax: {
  15567. height: math.unit(50, "feet"),
  15568. name: "Gigantamax Malgam",
  15569. rename: true,
  15570. image: {
  15571. source: "./media/characters/malgam/gigantamax.svg"
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(2 + 10 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(5 + 11 / 12, "feet"),
  15588. weight: math.unit(188, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/fleur/front.svg",
  15592. extra: 309 / 283,
  15593. bottom: 0.007
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(5 + 11 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(5 + 4 / 12, "feet"),
  15610. weight: math.unit(122, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/jude/front.svg",
  15614. extra: 288 / 273,
  15615. bottom: 0.03
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(5 + 4 / 12, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(5 + 11 / 12, "feet"),
  15632. weight: math.unit(190, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/seara/front.svg",
  15636. extra: 1,
  15637. bottom: 0.05
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5 + 11 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(16 + 5 / 12, "feet"),
  15654. weight: math.unit(524, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/caspian-lugia/front.svg",
  15658. extra: 1,
  15659. bottom: 0.04
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(16 + 5 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(5 + 7 / 12, "feet"),
  15676. weight: math.unit(170, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/mika/front.svg",
  15680. extra: 1,
  15681. bottom: 0.016
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(5 + 7 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. weight: math.unit(268, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/sol/front.svg",
  15702. extra: 247 / 231,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(6 + 2 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15717. {
  15718. buizel: {
  15719. height: math.unit(2 + 5 / 12, "feet"),
  15720. weight: math.unit(87, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/umiko/buizel.svg",
  15724. extra: 172 / 157,
  15725. bottom: 0.01
  15726. },
  15727. form: "buizel",
  15728. default: true
  15729. },
  15730. floatzel: {
  15731. height: math.unit(5 + 9 / 12, "feet"),
  15732. weight: math.unit(250, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/umiko/floatzel.svg",
  15736. extra: 1076/1006,
  15737. bottom: 15/1091
  15738. },
  15739. form: "floatzel",
  15740. default: true
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(2 + 5 / 12, "feet"),
  15747. form: "buizel",
  15748. default: true
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(5 + 9 / 12, "feet"),
  15753. form: "floatzel",
  15754. default: true
  15755. },
  15756. ],
  15757. {
  15758. "buizel": {
  15759. name: "Buizel"
  15760. },
  15761. "floatzel": {
  15762. name: "Floatzel",
  15763. default: true
  15764. }
  15765. }
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(6 + 2 / 12, "feet"),
  15772. weight: math.unit(146, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/iliac/front.svg",
  15776. extra: 389 / 365,
  15777. bottom: 0.035
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(6 + 2 / 12, "feet"),
  15785. default: true
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(170, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/topaz/front.svg",
  15798. extra: 317 / 303,
  15799. bottom: 0.055
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(6, "feet"),
  15807. default: true
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(5 + 11 / 12, "feet"),
  15816. weight: math.unit(144, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/gabriel/front.svg",
  15820. extra: 285 / 262,
  15821. bottom: 0.004
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(5 + 11 / 12, "feet"),
  15829. default: true
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15835. {
  15836. side: {
  15837. height: math.unit(6 + 5 / 12, "feet"),
  15838. weight: math.unit(300, "lb"),
  15839. name: "Side",
  15840. image: {
  15841. source: "./media/characters/tempest-suicune/side.svg",
  15842. extra: 195 / 154,
  15843. bottom: 0.04
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(6 + 5 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(7 + 2 / 12, "feet"),
  15860. weight: math.unit(322, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/vulcan/front.svg",
  15864. extra: 154 / 147,
  15865. bottom: 0.04
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(7 + 2 / 12, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(5 + 10 / 12, "feet"),
  15882. weight: math.unit(264, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/gault/front.svg",
  15886. extra: 161 / 140,
  15887. bottom: 0.028
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(5 + 10 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/shard/front.svg",
  15908. extra: 273 / 238,
  15909. bottom: 0.02
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(3 + 6 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(5 + 11 / 12, "feet"),
  15926. weight: math.unit(146, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/ashe/front.svg",
  15930. extra: 400 / 373,
  15931. bottom: 0.01
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(5 + 11 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 5 / 12, "feet"),
  15948. weight: math.unit(135, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/beatrix/front.svg",
  15952. extra: 392 / 379,
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(6, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(6 + 2/12, "feet"),
  15970. weight: math.unit(135, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/ignatius/front.svg",
  15974. extra: 1380/1259,
  15975. bottom: 27/1407
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(6 + 2/12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 2 / 12, "feet"),
  15992. weight: math.unit(138, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/mei-li/front.svg",
  15996. extra: 237 / 229,
  15997. bottom: 0.03
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(6 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(2 + 4 / 12, "feet"),
  16014. weight: math.unit(62, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/puru/front.svg",
  16018. extra: 206 / 149,
  16019. bottom: 0.06
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(2 + 4 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16033. {
  16034. anthro: {
  16035. height: math.unit(5 + 8/12, "feet"),
  16036. weight: math.unit(200, "lb"),
  16037. energyNeed: math.unit(2000, "kcal"),
  16038. name: "Anthro",
  16039. image: {
  16040. source: "./media/characters/kee/anthro.svg",
  16041. extra: 3251/3184,
  16042. bottom: 250/3501
  16043. }
  16044. },
  16045. taur: {
  16046. height: math.unit(11, "feet"),
  16047. weight: math.unit(500, "lb"),
  16048. energyNeed: math.unit(5000, "kcal"),
  16049. name: "Taur",
  16050. image: {
  16051. source: "./media/characters/kee/taur.svg",
  16052. extra: 1362/1320,
  16053. bottom: 83/1445
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(5 + 8/12, "feet"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Macro",
  16065. height: math.unit(35, "feet")
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16071. {
  16072. anthro: {
  16073. height: math.unit(7, "feet"),
  16074. weight: math.unit(190, "lb"),
  16075. name: "Anthro",
  16076. image: {
  16077. source: "./media/characters/cobalt-dracha/anthro.svg",
  16078. extra: 231 / 225,
  16079. bottom: 0.04
  16080. }
  16081. },
  16082. feral: {
  16083. height: math.unit(9 + 7 / 12, "feet"),
  16084. weight: math.unit(294, "lb"),
  16085. name: "Feral",
  16086. image: {
  16087. source: "./media/characters/cobalt-dracha/feral.svg",
  16088. extra: 692 / 633,
  16089. bottom: 0.05
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Normal",
  16096. height: math.unit(7, "feet"),
  16097. default: true
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16103. {
  16104. fallen: {
  16105. height: math.unit(11 + 8 / 12, "feet"),
  16106. weight: math.unit(485, "lb"),
  16107. name: "Java (Fallen)",
  16108. rename: true,
  16109. image: {
  16110. source: "./media/characters/java/fallen.svg",
  16111. extra: 226 / 208,
  16112. bottom: 0.005
  16113. }
  16114. },
  16115. godkin: {
  16116. height: math.unit(10 + 6 / 12, "feet"),
  16117. weight: math.unit(328, "lb"),
  16118. name: "Java (Godkin)",
  16119. rename: true,
  16120. image: {
  16121. source: "./media/characters/java/godkin.svg",
  16122. extra: 1104/1068,
  16123. bottom: 36/1140
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(11 + 8 / 12, "feet"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. weight: math.unit(170, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/purna/front.svg",
  16144. extra: 239 / 229,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 9 / 12, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(5 + 9 / 12, "feet"),
  16162. weight: math.unit(142, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/kuva/front.svg",
  16166. extra: 281 / 271,
  16167. bottom: 0.006
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(5 + 9 / 12, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16181. {
  16182. anthro: {
  16183. height: math.unit(9 + 2 / 12, "feet"),
  16184. weight: math.unit(270, "lb"),
  16185. name: "Anthro",
  16186. image: {
  16187. source: "./media/characters/embra/anthro.svg",
  16188. extra: 200 / 187,
  16189. bottom: 0.02
  16190. }
  16191. },
  16192. feral: {
  16193. height: math.unit(18 + 8 / 12, "feet"),
  16194. weight: math.unit(576, "lb"),
  16195. name: "Feral",
  16196. image: {
  16197. source: "./media/characters/embra/feral.svg",
  16198. extra: 152 / 137,
  16199. bottom: 0.037
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(9 + 2 / 12, "feet"),
  16207. default: true
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16213. {
  16214. anthro: {
  16215. height: math.unit(10 + 9 / 12, "feet"),
  16216. weight: math.unit(224, "lb"),
  16217. name: "Anthro",
  16218. image: {
  16219. source: "./media/characters/grottos/anthro.svg",
  16220. extra: 350 / 332,
  16221. bottom: 0.045
  16222. }
  16223. },
  16224. feral: {
  16225. height: math.unit(20 + 7 / 12, "feet"),
  16226. weight: math.unit(629, "lb"),
  16227. name: "Feral",
  16228. image: {
  16229. source: "./media/characters/grottos/feral.svg",
  16230. extra: 207 / 190,
  16231. bottom: 0.05
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(10 + 9 / 12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16245. {
  16246. anthro: {
  16247. height: math.unit(9 + 6 / 12, "feet"),
  16248. weight: math.unit(298, "lb"),
  16249. name: "Anthro",
  16250. image: {
  16251. source: "./media/characters/frifna/anthro.svg",
  16252. extra: 282 / 269,
  16253. bottom: 0.015
  16254. }
  16255. },
  16256. feral: {
  16257. height: math.unit(16 + 2 / 12, "feet"),
  16258. weight: math.unit(624, "lb"),
  16259. name: "Feral",
  16260. image: {
  16261. source: "./media/characters/frifna/feral.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(9 + 6 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(6 + 2 / 12, "feet"),
  16278. weight: math.unit(168, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/elise/front.svg",
  16282. extra: 276 / 271
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(6 + 2 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(5 + 10 / 12, "feet"),
  16299. weight: math.unit(210, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/glade/front.svg",
  16303. extra: 258 / 247,
  16304. bottom: 0.008
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(5 + 10 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(5 + 10 / 12, "feet"),
  16321. weight: math.unit(129, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/rina/front.svg",
  16325. extra: 266 / 255,
  16326. bottom: 0.005
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(5 + 10 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6 + 1 / 12, "feet"),
  16343. weight: math.unit(192, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/veronica/front.svg",
  16347. extra: 319 / 309,
  16348. bottom: 0.005
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(6 + 1 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(9 + 3 / 12, "feet"),
  16365. weight: math.unit(1100, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/braxton/front.svg",
  16369. extra: 1057 / 984,
  16370. bottom: 0.05
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(9 + 3 / 12, "feet")
  16378. },
  16379. {
  16380. name: "Giant",
  16381. height: math.unit(300, "feet"),
  16382. default: true
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(700, "feet")
  16387. },
  16388. {
  16389. name: "Megamacro",
  16390. height: math.unit(6000, "feet")
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6 + 7 / 12, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/blue-feyonics/front.svg",
  16403. extra: 1403 / 1306,
  16404. bottom: 0.047
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6 + 7 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(1.8, "meters"),
  16421. weight: math.unit(60, "kg"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/maxwell/front.svg",
  16425. extra: 2060 / 1873
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Micro",
  16432. height: math.unit(1, "mm")
  16433. },
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(1.8, "meter"),
  16437. default: true
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(30, "meters")
  16442. },
  16443. {
  16444. name: "Megamacro",
  16445. height: math.unit(10, "km")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/jack/front.svg",
  16458. extra: 1754 / 1640,
  16459. bottom: 0.01
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(80000, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Max size",
  16471. height: math.unit(10, "lightyears")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16477. {
  16478. urban: {
  16479. height: math.unit(5, "feet"),
  16480. weight: math.unit(240, "lb"),
  16481. name: "Urban",
  16482. image: {
  16483. source: "./media/characters/cafat/urban.svg",
  16484. extra: 1223/1126,
  16485. bottom: 205/1428
  16486. }
  16487. },
  16488. summer: {
  16489. height: math.unit(5, "feet"),
  16490. weight: math.unit(240, "lb"),
  16491. name: "Summer",
  16492. image: {
  16493. source: "./media/characters/cafat/summer.svg",
  16494. extra: 1223/1126,
  16495. bottom: 205/1428
  16496. }
  16497. },
  16498. winter: {
  16499. height: math.unit(5, "feet"),
  16500. weight: math.unit(240, "lb"),
  16501. name: "Winter",
  16502. image: {
  16503. source: "./media/characters/cafat/winter.svg",
  16504. extra: 1223/1126,
  16505. bottom: 205/1428
  16506. }
  16507. },
  16508. lingerie: {
  16509. height: math.unit(5, "feet"),
  16510. weight: math.unit(240, "lb"),
  16511. name: "Lingerie",
  16512. image: {
  16513. source: "./media/characters/cafat/lingerie.svg",
  16514. extra: 1223/1126,
  16515. bottom: 205/1428
  16516. }
  16517. },
  16518. upright: {
  16519. height: math.unit(6.3, "feet"),
  16520. weight: math.unit(240, "lb"),
  16521. name: "Upright",
  16522. image: {
  16523. source: "./media/characters/cafat/upright.svg",
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. uprightFull: {
  16528. height: math.unit(6.3, "feet"),
  16529. weight: math.unit(240, "lb"),
  16530. name: "Upright (Full)",
  16531. image: {
  16532. source: "./media/characters/cafat/upright-full.svg",
  16533. bottom: 0.01
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Small",
  16540. height: math.unit(5, "feet"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Large",
  16545. height: math.unit(13, "feet")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(150, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/verin-raharra/front.svg",
  16558. extra: 5019 / 4835,
  16559. bottom: 0.023
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(7 + 5 / 12, "feet"),
  16567. default: true
  16568. },
  16569. {
  16570. name: "Upsized",
  16571. height: math.unit(20, "feet")
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(7, "feet"),
  16580. weight: math.unit(230, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/nakata/front.svg",
  16584. extra: 1.005,
  16585. bottom: 0.01
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(7, "feet"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Big",
  16597. height: math.unit(14, "feet")
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(400, "feet")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(4.91, "feet"),
  16610. weight: math.unit(100, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/lily/front.svg",
  16614. extra: 1585 / 1415,
  16615. bottom: 0.02
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(4.91, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16629. {
  16630. laying: {
  16631. height: math.unit(4 + 4 / 12, "feet"),
  16632. weight: math.unit(600, "lb"),
  16633. name: "Laying",
  16634. image: {
  16635. source: "./media/characters/sheila/laying.svg",
  16636. extra: 1333 / 1265,
  16637. bottom: 0.16
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(4 + 4 / 12, "feet"),
  16645. default: true
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(6, "feet"),
  16654. weight: math.unit(190, "lb"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/sax/front.svg",
  16658. extra: 1187 / 973,
  16659. bottom: 0.042
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(4, "inches"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/pandora/front.svg",
  16680. extra: 2720 / 2556,
  16681. bottom: 0.015
  16682. }
  16683. },
  16684. back: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Back",
  16688. image: {
  16689. source: "./media/characters/pandora/back.svg",
  16690. extra: 2720 / 2556,
  16691. bottom: 0.01
  16692. }
  16693. },
  16694. beans: {
  16695. height: math.unit(6 / 8, "feet"),
  16696. name: "Beans",
  16697. image: {
  16698. source: "./media/characters/pandora/beans.svg"
  16699. }
  16700. },
  16701. collar: {
  16702. height: math.unit(0.31, "feet"),
  16703. name: "Collar",
  16704. image: {
  16705. source: "./media/characters/pandora/collar.svg"
  16706. }
  16707. },
  16708. skirt: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(150, "lb"),
  16711. name: "Skirt",
  16712. image: {
  16713. source: "./media/characters/pandora/skirt.svg",
  16714. extra: 1622 / 1525,
  16715. bottom: 0.015
  16716. }
  16717. },
  16718. hoodie: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(150, "lb"),
  16721. name: "Hoodie",
  16722. image: {
  16723. source: "./media/characters/pandora/hoodie.svg",
  16724. extra: 1622 / 1525,
  16725. bottom: 0.015
  16726. }
  16727. },
  16728. casual: {
  16729. height: math.unit(6, "feet"),
  16730. weight: math.unit(150, "lb"),
  16731. name: "Casual",
  16732. image: {
  16733. source: "./media/characters/pandora/casual.svg",
  16734. extra: 1622 / 1525,
  16735. bottom: 0.015
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6, "feet")
  16743. },
  16744. {
  16745. name: "Big Steppy",
  16746. height: math.unit(1, "km"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Galactic Steppy",
  16751. height: math.unit(2, "gigameters")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16757. {
  16758. side: {
  16759. height: math.unit(10, "feet"),
  16760. weight: math.unit(800, "kg"),
  16761. name: "Side",
  16762. image: {
  16763. source: "./media/characters/venio-darcony/side.svg",
  16764. extra: 1373 / 1003,
  16765. bottom: 0.037
  16766. }
  16767. },
  16768. front: {
  16769. height: math.unit(19, "feet"),
  16770. weight: math.unit(800, "kg"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/venio-darcony/front.svg"
  16774. }
  16775. },
  16776. back: {
  16777. height: math.unit(19, "feet"),
  16778. weight: math.unit(800, "kg"),
  16779. name: "Back",
  16780. image: {
  16781. source: "./media/characters/venio-darcony/back.svg"
  16782. }
  16783. },
  16784. sideNsfw: {
  16785. height: math.unit(10, "feet"),
  16786. weight: math.unit(800, "kg"),
  16787. name: "Side (NSFW)",
  16788. image: {
  16789. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16790. extra: 1373 / 1003,
  16791. bottom: 0.037
  16792. }
  16793. },
  16794. frontNsfw: {
  16795. height: math.unit(19, "feet"),
  16796. weight: math.unit(800, "kg"),
  16797. name: "Front (NSFW)",
  16798. image: {
  16799. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16800. }
  16801. },
  16802. backNsfw: {
  16803. height: math.unit(19, "feet"),
  16804. weight: math.unit(800, "kg"),
  16805. name: "Back (NSFW)",
  16806. image: {
  16807. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16808. }
  16809. },
  16810. sideArmored: {
  16811. height: math.unit(10, "feet"),
  16812. weight: math.unit(800, "kg"),
  16813. name: "Side (Armored)",
  16814. image: {
  16815. source: "./media/characters/venio-darcony/side-armored.svg",
  16816. extra: 1373 / 1003,
  16817. bottom: 0.037
  16818. }
  16819. },
  16820. frontArmored: {
  16821. height: math.unit(19, "feet"),
  16822. weight: math.unit(900, "kg"),
  16823. name: "Front (Armored)",
  16824. image: {
  16825. source: "./media/characters/venio-darcony/front-armored.svg"
  16826. }
  16827. },
  16828. backArmored: {
  16829. height: math.unit(19, "feet"),
  16830. weight: math.unit(900, "kg"),
  16831. name: "Back (Armored)",
  16832. image: {
  16833. source: "./media/characters/venio-darcony/back-armored.svg"
  16834. }
  16835. },
  16836. sword: {
  16837. height: math.unit(10, "feet"),
  16838. weight: math.unit(50, "lb"),
  16839. name: "Sword",
  16840. image: {
  16841. source: "./media/characters/venio-darcony/sword.svg"
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(10, "feet")
  16849. },
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(130, "feet"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro+",
  16857. height: math.unit(240, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/veski/front.svg",
  16870. extra: 1299 / 1225,
  16871. bottom: 0.04
  16872. }
  16873. },
  16874. back: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Back",
  16878. image: {
  16879. source: "./media/characters/veski/back.svg",
  16880. extra: 1299 / 1225,
  16881. bottom: 0.008
  16882. }
  16883. },
  16884. maw: {
  16885. height: math.unit(1.5 * 1.21, "feet"),
  16886. name: "Maw",
  16887. image: {
  16888. source: "./media/characters/veski/maw.svg"
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Macro",
  16895. height: math.unit(2, "km"),
  16896. default: true
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(5 + 7 / 12, "feet"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/isabelle/front.svg",
  16908. extra: 2130 / 1976,
  16909. bottom: 0.05
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Supermicro",
  16916. height: math.unit(10, "micrometers")
  16917. },
  16918. {
  16919. name: "Micro",
  16920. height: math.unit(1, "inch")
  16921. },
  16922. {
  16923. name: "Tiny",
  16924. height: math.unit(5, "inches")
  16925. },
  16926. {
  16927. name: "Standard",
  16928. height: math.unit(5 + 7 / 12, "inches")
  16929. },
  16930. {
  16931. name: "Macro",
  16932. height: math.unit(80, "meters"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Megamacro",
  16937. height: math.unit(250, "meters")
  16938. },
  16939. {
  16940. name: "Gigamacro",
  16941. height: math.unit(5, "km")
  16942. },
  16943. {
  16944. name: "Cosmic",
  16945. height: math.unit(2.5e6, "miles")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(150, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/hanzo/front.svg",
  16958. extra: 374 / 344,
  16959. bottom: 0.02
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(8, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(7, "feet"),
  16976. weight: math.unit(130, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/anna/front.svg",
  16980. extra: 169 / 145,
  16981. bottom: 0.06
  16982. }
  16983. },
  16984. full: {
  16985. height: math.unit(4.96, "feet"),
  16986. weight: math.unit(220, "lb"),
  16987. name: "Full",
  16988. image: {
  16989. source: "./media/characters/anna/full.svg",
  16990. extra: 138 / 114,
  16991. bottom: 0.15
  16992. }
  16993. },
  16994. tongue: {
  16995. height: math.unit(2.53, "feet"),
  16996. name: "Tongue",
  16997. image: {
  16998. source: "./media/characters/anna/tongue.svg"
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(7, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(7, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/ian-corvid/front.svg",
  17019. extra: 150 / 142,
  17020. bottom: 0.02
  17021. }
  17022. },
  17023. back: {
  17024. height: math.unit(7, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Back",
  17027. image: {
  17028. source: "./media/characters/ian-corvid/back.svg",
  17029. extra: 150 / 143,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. stomping: {
  17034. height: math.unit(7, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Stomping",
  17037. image: {
  17038. source: "./media/characters/ian-corvid/stomping.svg",
  17039. extra: 76 / 72
  17040. }
  17041. },
  17042. sitting: {
  17043. height: math.unit(7 / 1.8, "feet"),
  17044. weight: math.unit(150, "lb"),
  17045. name: "Sitting",
  17046. image: {
  17047. source: "./media/characters/ian-corvid/sitting.svg",
  17048. extra: 1400 / 1269,
  17049. bottom: 0.15
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Tiny Microw",
  17056. height: math.unit(1, "inch")
  17057. },
  17058. {
  17059. name: "Microw",
  17060. height: math.unit(6, "inches")
  17061. },
  17062. {
  17063. name: "Crow",
  17064. height: math.unit(7 + 1 / 12, "feet"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Macrow",
  17069. height: math.unit(176, "feet")
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(5 + 7 / 12, "feet"),
  17078. weight: math.unit(147, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/natalie-kellon/front.svg",
  17082. extra: 1214 / 1141,
  17083. bottom: 0.02
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Micro",
  17090. height: math.unit(1 / 16, "inch")
  17091. },
  17092. {
  17093. name: "Tiny",
  17094. height: math.unit(4, "inches")
  17095. },
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(5 + 7 / 12, "feet"),
  17099. default: true
  17100. },
  17101. {
  17102. name: "Amazon",
  17103. height: math.unit(12, "feet")
  17104. },
  17105. {
  17106. name: "Giantess",
  17107. height: math.unit(160, "meters")
  17108. },
  17109. {
  17110. name: "Titaness",
  17111. height: math.unit(800, "meters")
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(150, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/alluria/front.svg",
  17124. extra: 806 / 738,
  17125. bottom: 0.01
  17126. }
  17127. },
  17128. side: {
  17129. height: math.unit(6, "feet"),
  17130. weight: math.unit(150, "lb"),
  17131. name: "Side",
  17132. image: {
  17133. source: "./media/characters/alluria/side.svg",
  17134. extra: 800 / 750,
  17135. }
  17136. },
  17137. back: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Back",
  17141. image: {
  17142. source: "./media/characters/alluria/back.svg",
  17143. extra: 806 / 738,
  17144. }
  17145. },
  17146. frontMaid: {
  17147. height: math.unit(6, "feet"),
  17148. weight: math.unit(150, "lb"),
  17149. name: "Front (Maid)",
  17150. image: {
  17151. source: "./media/characters/alluria/front-maid.svg",
  17152. extra: 806 / 738,
  17153. bottom: 0.01
  17154. }
  17155. },
  17156. sideMaid: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(150, "lb"),
  17159. name: "Side (Maid)",
  17160. image: {
  17161. source: "./media/characters/alluria/side-maid.svg",
  17162. extra: 800 / 750,
  17163. bottom: 0.005
  17164. }
  17165. },
  17166. backMaid: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Back (Maid)",
  17170. image: {
  17171. source: "./media/characters/alluria/back-maid.svg",
  17172. extra: 806 / 738,
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(6, "inches"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6, "feet"),
  17189. weight: math.unit(150, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/kyle/front.svg",
  17193. extra: 1069 / 962,
  17194. bottom: 77.228 / 1727.45
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Macro",
  17201. height: math.unit(150, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(300, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/duncan/front.svg",
  17215. extra: 1650 / 1482,
  17216. bottom: 0.05
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Macro",
  17223. height: math.unit(100, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(5 + 4 / 12, "feet"),
  17233. weight: math.unit(220, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/memory/front.svg",
  17237. extra: 3641 / 3545,
  17238. bottom: 0.03
  17239. }
  17240. },
  17241. back: {
  17242. height: math.unit(5 + 4 / 12, "feet"),
  17243. weight: math.unit(220, "lb"),
  17244. name: "Back",
  17245. image: {
  17246. source: "./media/characters/memory/back.svg",
  17247. extra: 3641 / 3545,
  17248. bottom: 0.025
  17249. }
  17250. },
  17251. frontSkirt: {
  17252. height: math.unit(5 + 4 / 12, "feet"),
  17253. weight: math.unit(220, "lb"),
  17254. name: "Front (Skirt)",
  17255. image: {
  17256. source: "./media/characters/memory/front-skirt.svg",
  17257. extra: 3641 / 3545,
  17258. bottom: 0.03
  17259. }
  17260. },
  17261. frontDress: {
  17262. height: math.unit(5 + 4 / 12, "feet"),
  17263. weight: math.unit(220, "lb"),
  17264. name: "Front (Dress)",
  17265. image: {
  17266. source: "./media/characters/memory/front-dress.svg",
  17267. extra: 3641 / 3545,
  17268. bottom: 0.03
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Micro",
  17275. height: math.unit(6, "inches"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(5 + 4 / 12, "feet")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(4 + 11 / 12, "feet"),
  17289. weight: math.unit(100, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/luno/front.svg",
  17293. extra: 1535 / 1487,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Micro",
  17301. height: math.unit(3, "inches")
  17302. },
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(4 + 11 / 12, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(300, "feet")
  17311. },
  17312. {
  17313. name: "Megamacro",
  17314. height: math.unit(700, "miles")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(6 + 2 / 12, "feet"),
  17323. weight: math.unit(170, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/jamesy/front.svg",
  17327. extra: 440 / 382,
  17328. bottom: 0.005
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Micro",
  17335. height: math.unit(3, "inches")
  17336. },
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(6 + 2 / 12, "feet"),
  17340. default: true
  17341. },
  17342. {
  17343. name: "Macro",
  17344. height: math.unit(300, "feet")
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(700, "miles")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(160, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/mark/front.svg",
  17361. extra: 3300 / 3100,
  17362. bottom: 136.42 / 3440.47
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(120, "meters")
  17370. },
  17371. {
  17372. name: "Bigger Macro",
  17373. height: math.unit(350, "meters")
  17374. },
  17375. {
  17376. name: "Megamacro",
  17377. height: math.unit(8, "km"),
  17378. default: true
  17379. },
  17380. {
  17381. name: "Continental",
  17382. height: math.unit(4550, "km")
  17383. },
  17384. {
  17385. name: "Planetary",
  17386. height: math.unit(65000, "km")
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(6, "feet"),
  17395. weight: math.unit(400, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/mac/front.svg",
  17399. extra: 1048 / 987.7,
  17400. bottom: 60 / 1107.6,
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(500, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(5 + 2 / 12, "feet"),
  17417. weight: math.unit(190, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/bari/front.svg",
  17421. extra: 3156 / 2880,
  17422. bottom: 0.03
  17423. }
  17424. },
  17425. back: {
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. weight: math.unit(190, "lb"),
  17428. name: "Back",
  17429. image: {
  17430. source: "./media/characters/bari/back.svg",
  17431. extra: 3260 / 2834,
  17432. bottom: 0.025
  17433. }
  17434. },
  17435. frontPlush: {
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. weight: math.unit(190, "lb"),
  17438. name: "Front (Plush)",
  17439. image: {
  17440. source: "./media/characters/bari/front-plush.svg",
  17441. extra: 1112 / 1061,
  17442. bottom: 0.002
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Micro",
  17449. height: math.unit(3, "inches")
  17450. },
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 2 / 12, "feet"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(20, "feet")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6 + 1 / 12, "feet"),
  17467. weight: math.unit(275, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/hunter-misha-raven/front.svg"
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Mortal",
  17477. height: math.unit(6 + 1 / 12, "feet")
  17478. },
  17479. {
  17480. name: "Divine",
  17481. height: math.unit(1.12134e34, "parsecs"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(6 + 3 / 12, "feet"),
  17491. weight: math.unit(220, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/max-calore/front.svg",
  17495. extra: 1700 / 1648,
  17496. bottom: 0.01
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(6 + 3 / 12, "feet"),
  17501. weight: math.unit(220, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/max-calore/back.svg",
  17505. extra: 1700 / 1648,
  17506. bottom: 0.01
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(6 + 3 / 12, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17520. {
  17521. side: {
  17522. height: math.unit(2 + 8 / 12, "feet"),
  17523. weight: math.unit(99, "lb"),
  17524. name: "Side",
  17525. image: {
  17526. source: "./media/characters/aspen/side.svg",
  17527. extra: 152 / 138,
  17528. bottom: 0.032
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(2 + 8 / 12, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17542. {
  17543. side: {
  17544. height: math.unit(3 + 2 / 12, "feet"),
  17545. weight: math.unit(224, "lb"),
  17546. name: "Side",
  17547. image: {
  17548. source: "./media/characters/sheila-feral-wolf/side.svg",
  17549. extra: 179 / 166,
  17550. bottom: 0.03
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(3 + 2 / 12, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17564. {
  17565. side: {
  17566. height: math.unit(1 + 9 / 12, "feet"),
  17567. weight: math.unit(38, "lb"),
  17568. name: "Side",
  17569. image: {
  17570. source: "./media/characters/michelle/side.svg",
  17571. extra: 147 / 136.7,
  17572. bottom: 0.03
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(1 + 9 / 12, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(1.54, "feet"),
  17589. weight: math.unit(50, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/nino/front.svg"
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(1.54, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(1.49, "feet"),
  17609. weight: math.unit(45, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/viola/front.svg"
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(1.49, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(6 + 5 / 12, "feet"),
  17629. weight: math.unit(580, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/atlas/front.svg",
  17633. extra: 298.5 / 290,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(6 + 5 / 12, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17648. {
  17649. side: {
  17650. height: math.unit(15.6, "inches"),
  17651. weight: math.unit(10, "lb"),
  17652. name: "Side",
  17653. image: {
  17654. source: "./media/characters/davy/side.svg",
  17655. extra: 200 / 170,
  17656. bottom: 0.01
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(15.6, "inches"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17670. {
  17671. side: {
  17672. height: math.unit(4 + 8 / 12, "feet"),
  17673. weight: math.unit(166, "lb"),
  17674. name: "Side",
  17675. image: {
  17676. source: "./media/characters/fiona/side.svg",
  17677. extra: 232 / 220,
  17678. bottom: 0.03
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(4 + 8 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17692. {
  17693. front: {
  17694. height: math.unit(26, "inches"),
  17695. weight: math.unit(35, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/lyla/front.svg",
  17699. bottom: 0.1
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(3, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17713. {
  17714. side: {
  17715. height: math.unit(1.8, "feet"),
  17716. weight: math.unit(44, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/perseus/side.svg",
  17720. bottom: 0.21
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(1.8, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17734. {
  17735. side: {
  17736. height: math.unit(4 + 2 / 12, "feet"),
  17737. weight: math.unit(20, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/remus/side.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(4 + 2 / 12, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17754. {
  17755. front: {
  17756. height: math.unit(4 + 11 / 12, "feet"),
  17757. weight: math.unit(114, "lb"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/raf/front.svg",
  17761. extra: 1504/1339,
  17762. bottom: 26/1530
  17763. }
  17764. },
  17765. side: {
  17766. height: math.unit(4 + 11 / 12, "feet"),
  17767. weight: math.unit(114, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/raf/side.svg",
  17771. extra: 1466/1316,
  17772. bottom: 29/1495
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Micro",
  17779. height: math.unit(2, "inches")
  17780. },
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(4 + 11 / 12, "feet"),
  17784. default: true
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(70, "feet")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(1.5, "meters"),
  17797. weight: math.unit(68, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/liam-einarr/front.svg",
  17801. extra: 2822 / 2666
  17802. }
  17803. },
  17804. back: {
  17805. height: math.unit(1.5, "meters"),
  17806. weight: math.unit(68, "kg"),
  17807. name: "Back",
  17808. image: {
  17809. source: "./media/characters/liam-einarr/back.svg",
  17810. extra: 2822 / 2666,
  17811. bottom: 0.015
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(1.5, "meters"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(150, "meters")
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(35, "km")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(6, "feet"),
  17836. weight: math.unit(75, "kg"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/linda/front.svg",
  17840. extra: 930 / 874,
  17841. bottom: 0.004
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(6, "feet"),
  17849. default: true
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(6 + 8 / 12, "feet"),
  17858. weight: math.unit(220, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/caylex/front.svg",
  17862. extra: 821 / 772,
  17863. bottom: 0.07
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(6 + 8 / 12, "feet"),
  17868. weight: math.unit(220, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/caylex/back.svg",
  17872. extra: 821 / 772,
  17873. bottom: 0.022
  17874. }
  17875. },
  17876. hand: {
  17877. height: math.unit(1.25, "feet"),
  17878. name: "Hand",
  17879. image: {
  17880. source: "./media/characters/caylex/hand.svg"
  17881. }
  17882. },
  17883. foot: {
  17884. height: math.unit(1.6, "feet"),
  17885. name: "Foot",
  17886. image: {
  17887. source: "./media/characters/caylex/foot.svg"
  17888. }
  17889. },
  17890. armored: {
  17891. height: math.unit(6 + 8 / 12, "feet"),
  17892. weight: math.unit(250, "lb"),
  17893. name: "Armored",
  17894. image: {
  17895. source: "./media/characters/caylex/armored.svg",
  17896. extra: 1420 / 1310,
  17897. bottom: 0.045
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(6 + 8 / 12, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Normal+",
  17909. height: math.unit(12, "feet")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(7 + 6 / 12, "feet"),
  17918. weight: math.unit(288, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/alana/front.svg",
  17922. extra: 679 / 653,
  17923. bottom: 22.5 / 701
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(7 + 6 / 12, "feet")
  17931. },
  17932. {
  17933. name: "Large",
  17934. height: math.unit(50, "feet")
  17935. },
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(100, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macro+",
  17943. height: math.unit(200, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(6 + 1 / 12, "feet"),
  17952. weight: math.unit(210, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/hasani/front.svg",
  17956. extra: 244 / 232,
  17957. bottom: 0.01
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(6 + 1 / 12, "feet"),
  17962. weight: math.unit(210, "lb"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/hasani/back.svg",
  17966. extra: 244 / 232,
  17967. bottom: 0.01
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(6 + 1 / 12, "feet")
  17975. },
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(175, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(1.82, "meters"),
  17988. weight: math.unit(140, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/nita/front.svg",
  17992. extra: 2473 / 2363,
  17993. bottom: 0.01
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(1.82, "m")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(300, "m")
  18005. },
  18006. {
  18007. name: "Mistake Canon",
  18008. height: math.unit(0.5, "miles"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Big Mistake",
  18013. height: math.unit(13, "miles")
  18014. },
  18015. {
  18016. name: "Playing God",
  18017. height: math.unit(2450, "miles")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(4, "feet"),
  18026. weight: math.unit(120, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/shiriko/front.svg",
  18030. extra: 970/934,
  18031. bottom: 5/975
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(4, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6, "feet"),
  18048. name: "front",
  18049. image: {
  18050. source: "./media/characters/deja/front.svg",
  18051. extra: 926 / 840,
  18052. bottom: 0.07
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Planck Length",
  18059. height: math.unit(1.6e-35, "meters")
  18060. },
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(30.48, "meters"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Universal",
  18068. height: math.unit(8.8e26, "meters")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18074. {
  18075. side: {
  18076. height: math.unit(8, "feet"),
  18077. weight: math.unit(6300, "lb"),
  18078. name: "Side",
  18079. image: {
  18080. source: "./media/characters/anima/side.svg",
  18081. bottom: 0.035
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(8, "feet"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(8, "feet"),
  18098. weight: math.unit(350, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/bianca/front.svg",
  18102. extra: 234 / 225,
  18103. bottom: 0.03
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(8, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/adinia/front.svg",
  18124. extra: 1845 / 1672,
  18125. bottom: 0.02
  18126. }
  18127. },
  18128. back: {
  18129. height: math.unit(6, "feet"),
  18130. weight: math.unit(150, "lb"),
  18131. name: "Back",
  18132. image: {
  18133. source: "./media/characters/adinia/back.svg",
  18134. extra: 1845 / 1672,
  18135. bottom: 0.002
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(11 + 5 / 12, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(3, "meters"),
  18152. weight: math.unit(200, "kg"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/lykasa/front.svg",
  18156. extra: 1076 / 976,
  18157. bottom: 0.06
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(3, "meters")
  18165. },
  18166. {
  18167. name: "Kaiju",
  18168. height: math.unit(120, "meters"),
  18169. default: true
  18170. },
  18171. {
  18172. name: "Mega Kaiju",
  18173. height: math.unit(240, "km")
  18174. },
  18175. {
  18176. name: "Giga Kaiju",
  18177. height: math.unit(400, "megameters")
  18178. },
  18179. {
  18180. name: "Tera Kaiju",
  18181. height: math.unit(800, "gigameters")
  18182. },
  18183. {
  18184. name: "Kaiju Dragon Goddess",
  18185. height: math.unit(26, "zettaparsecs")
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18191. {
  18192. side: {
  18193. height: math.unit(283 / 124 * 6, "feet"),
  18194. weight: math.unit(35000, "lb"),
  18195. name: "Side",
  18196. image: {
  18197. source: "./media/characters/malfaren/side.svg",
  18198. extra: 1310/529,
  18199. bottom: 24/1334
  18200. }
  18201. },
  18202. front: {
  18203. height: math.unit(22.36, "feet"),
  18204. weight: math.unit(35000, "lb"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/malfaren/front.svg",
  18208. extra: 1237/1115,
  18209. bottom: 32/1269
  18210. }
  18211. },
  18212. maw: {
  18213. height: math.unit(6.9, "feet"),
  18214. name: "Maw",
  18215. image: {
  18216. source: "./media/characters/malfaren/maw.svg"
  18217. }
  18218. },
  18219. dick: {
  18220. height: math.unit(6.19, "feet"),
  18221. name: "Dick",
  18222. image: {
  18223. source: "./media/characters/malfaren/dick.svg"
  18224. }
  18225. },
  18226. eye: {
  18227. height: math.unit(0.69, "feet"),
  18228. name: "Eye",
  18229. image: {
  18230. source: "./media/characters/malfaren/eye.svg"
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Big",
  18237. height: math.unit(283 / 162 * 6, "feet"),
  18238. },
  18239. {
  18240. name: "Bigger",
  18241. height: math.unit(283 / 124 * 6, "feet")
  18242. },
  18243. {
  18244. name: "Massive",
  18245. height: math.unit(283 / 92 * 6, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "👀💦",
  18250. height: math.unit(283 / 73 * 6, "feet"),
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(1.7, "m"),
  18259. weight: math.unit(70, "kg"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/kernel/front.svg",
  18263. extra: 222 / 210,
  18264. bottom: 0.007
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Nano",
  18271. height: math.unit(17, "micrometers")
  18272. },
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(1.7, "mm")
  18276. },
  18277. {
  18278. name: "Small",
  18279. height: math.unit(1.7, "cm")
  18280. },
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(1.7, "m"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(1.75, "meters"),
  18293. weight: math.unit(65, "kg"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/jayne-folest/front.svg",
  18297. extra: 2115 / 2007,
  18298. bottom: 0.02
  18299. }
  18300. },
  18301. back: {
  18302. height: math.unit(1.75, "meters"),
  18303. weight: math.unit(65, "kg"),
  18304. name: "Back",
  18305. image: {
  18306. source: "./media/characters/jayne-folest/back.svg",
  18307. extra: 2115 / 2007,
  18308. bottom: 0.005
  18309. }
  18310. },
  18311. frontClothed: {
  18312. height: math.unit(1.75, "meters"),
  18313. weight: math.unit(65, "kg"),
  18314. name: "Front (Clothed)",
  18315. image: {
  18316. source: "./media/characters/jayne-folest/front-clothed.svg",
  18317. extra: 2115 / 2007,
  18318. bottom: 0.035
  18319. }
  18320. },
  18321. hand: {
  18322. height: math.unit(1 / 1.260, "feet"),
  18323. name: "Hand",
  18324. image: {
  18325. source: "./media/characters/jayne-folest/hand.svg"
  18326. }
  18327. },
  18328. foot: {
  18329. height: math.unit(1 / 0.918, "feet"),
  18330. name: "Foot",
  18331. image: {
  18332. source: "./media/characters/jayne-folest/foot.svg"
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(4, "cm")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(1.75, "meters")
  18344. },
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(47.5, "meters"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(180, "cm"),
  18357. weight: math.unit(70, "kg"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/algier/front.svg",
  18361. extra: 596 / 572,
  18362. bottom: 0.04
  18363. }
  18364. },
  18365. back: {
  18366. height: math.unit(180, "cm"),
  18367. weight: math.unit(70, "kg"),
  18368. name: "Back",
  18369. image: {
  18370. source: "./media/characters/algier/back.svg",
  18371. extra: 596 / 572,
  18372. bottom: 0.025
  18373. }
  18374. },
  18375. frontdressed: {
  18376. height: math.unit(180, "cm"),
  18377. weight: math.unit(150, "kg"),
  18378. name: "Front-dressed",
  18379. image: {
  18380. source: "./media/characters/algier/front-dressed.svg",
  18381. extra: 596 / 572,
  18382. bottom: 0.038
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(5, "cm")
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(180, "cm"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(64, "m")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18404. {
  18405. upright: {
  18406. height: math.unit(7, "feet"),
  18407. weight: math.unit(300, "lb"),
  18408. name: "Upright",
  18409. image: {
  18410. source: "./media/characters/pretzel/upright.svg",
  18411. extra: 534 / 522,
  18412. bottom: 0.065
  18413. }
  18414. },
  18415. sprawling: {
  18416. height: math.unit(3.75, "feet"),
  18417. weight: math.unit(300, "lb"),
  18418. name: "Sprawling",
  18419. image: {
  18420. source: "./media/characters/pretzel/sprawling.svg",
  18421. extra: 314 / 281,
  18422. bottom: 0.1
  18423. }
  18424. },
  18425. tongue: {
  18426. height: math.unit(2, "feet"),
  18427. name: "Tongue",
  18428. image: {
  18429. source: "./media/characters/pretzel/tongue.svg"
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(7, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Oversized",
  18441. height: math.unit(15, "feet")
  18442. },
  18443. {
  18444. name: "Huge",
  18445. height: math.unit(30, "feet")
  18446. },
  18447. {
  18448. name: "Macro",
  18449. height: math.unit(250, "feet")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18455. {
  18456. sideFront: {
  18457. height: math.unit(5 + 2 / 12, "feet"),
  18458. weight: math.unit(120, "lb"),
  18459. name: "Front Side",
  18460. image: {
  18461. source: "./media/characters/roxi/side-front.svg",
  18462. extra: 2924 / 2717,
  18463. bottom: 0.08
  18464. }
  18465. },
  18466. sideBack: {
  18467. height: math.unit(5 + 2 / 12, "feet"),
  18468. weight: math.unit(120, "lb"),
  18469. name: "Back Side",
  18470. image: {
  18471. source: "./media/characters/roxi/side-back.svg",
  18472. extra: 2904 / 2693,
  18473. bottom: 0.06
  18474. }
  18475. },
  18476. front: {
  18477. height: math.unit(5 + 2 / 12, "feet"),
  18478. weight: math.unit(120, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/roxi/front.svg",
  18482. extra: 2028 / 1907,
  18483. bottom: 0.01
  18484. }
  18485. },
  18486. frontAlt: {
  18487. height: math.unit(5 + 2 / 12, "feet"),
  18488. weight: math.unit(120, "lb"),
  18489. name: "Front (Alt)",
  18490. image: {
  18491. source: "./media/characters/roxi/front-alt.svg",
  18492. extra: 1828 / 1798,
  18493. bottom: 0.01
  18494. }
  18495. },
  18496. sitting: {
  18497. height: math.unit(2.8, "feet"),
  18498. weight: math.unit(120, "lb"),
  18499. name: "Sitting",
  18500. image: {
  18501. source: "./media/characters/roxi/sitting.svg",
  18502. extra: 2660 / 2462,
  18503. bottom: 0.1
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(5 + 2 / 12, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18517. {
  18518. side: {
  18519. height: math.unit(55, "feet"),
  18520. weight: math.unit(153, "tons"),
  18521. name: "Side",
  18522. image: {
  18523. source: "./media/characters/shadow/side.svg",
  18524. extra: 701 / 628,
  18525. bottom: 0.02
  18526. }
  18527. },
  18528. flying: {
  18529. height: math.unit(145, "feet"),
  18530. weight: math.unit(153, "tons"),
  18531. name: "Flying",
  18532. image: {
  18533. source: "./media/characters/shadow/flying.svg"
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(55, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(6, "feet"),
  18550. weight: math.unit(200, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/marcie/front.svg",
  18554. extra: 960 / 876,
  18555. bottom: 58 / 1017.87
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(1, "mile"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(7, "feet"),
  18572. weight: math.unit(200, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/kachina/front.svg",
  18576. extra: 1290.68 / 1119,
  18577. bottom: 36.5 / 1327.18
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(7, "feet"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18591. {
  18592. looking: {
  18593. height: math.unit(2, "meters"),
  18594. weight: math.unit(300, "kg"),
  18595. name: "Looking",
  18596. image: {
  18597. source: "./media/characters/kash/looking.svg",
  18598. extra: 474 / 344,
  18599. bottom: 0.03
  18600. }
  18601. },
  18602. side: {
  18603. height: math.unit(2, "meters"),
  18604. weight: math.unit(300, "kg"),
  18605. name: "Side",
  18606. image: {
  18607. source: "./media/characters/kash/side.svg",
  18608. extra: 302 / 251,
  18609. bottom: 0.03
  18610. }
  18611. },
  18612. front: {
  18613. height: math.unit(2, "meters"),
  18614. weight: math.unit(300, "kg"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/kash/front.svg",
  18618. extra: 495 / 360,
  18619. bottom: 0.015
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(2, "meters"),
  18627. default: true
  18628. },
  18629. {
  18630. name: "Big",
  18631. height: math.unit(3, "meters")
  18632. },
  18633. {
  18634. name: "Large",
  18635. height: math.unit(5, "meters")
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18641. {
  18642. feeding: {
  18643. height: math.unit(6.7, "feet"),
  18644. weight: math.unit(350, "lb"),
  18645. name: "Feeding",
  18646. image: {
  18647. source: "./media/characters/lalim/feeding.svg",
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6.7, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(9.5, "feet"),
  18664. weight: math.unit(600, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/de'vout/front.svg",
  18668. extra: 1443 / 1328,
  18669. bottom: 0.025
  18670. }
  18671. },
  18672. back: {
  18673. height: math.unit(9.5, "feet"),
  18674. weight: math.unit(600, "lb"),
  18675. name: "Back",
  18676. image: {
  18677. source: "./media/characters/de'vout/back.svg",
  18678. extra: 1443 / 1328
  18679. }
  18680. },
  18681. frontDressed: {
  18682. height: math.unit(9.5, "feet"),
  18683. weight: math.unit(600, "lb"),
  18684. name: "Front (Dressed",
  18685. image: {
  18686. source: "./media/characters/de'vout/front-dressed.svg",
  18687. extra: 1443 / 1328,
  18688. bottom: 0.025
  18689. }
  18690. },
  18691. backDressed: {
  18692. height: math.unit(9.5, "feet"),
  18693. weight: math.unit(600, "lb"),
  18694. name: "Back (Dressed",
  18695. image: {
  18696. source: "./media/characters/de'vout/back-dressed.svg",
  18697. extra: 1443 / 1328
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(9.5, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(8, "feet"),
  18714. weight: math.unit(225, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/talana/front.svg",
  18718. extra: 1410 / 1300,
  18719. bottom: 0.015
  18720. }
  18721. },
  18722. frontDressed: {
  18723. height: math.unit(8, "feet"),
  18724. weight: math.unit(225, "lb"),
  18725. name: "Front (Dressed",
  18726. image: {
  18727. source: "./media/characters/talana/front-dressed.svg",
  18728. extra: 1410 / 1300,
  18729. bottom: 0.015
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(8, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18743. {
  18744. side: {
  18745. height: math.unit(7.2, "feet"),
  18746. weight: math.unit(150, "lb"),
  18747. name: "Side",
  18748. image: {
  18749. source: "./media/characters/xeauvok/side.svg",
  18750. extra: 1975 / 1523,
  18751. bottom: 0.07
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(7.2, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18765. {
  18766. side: {
  18767. height: math.unit(10, "feet"),
  18768. weight: math.unit(900, "kg"),
  18769. name: "Side",
  18770. image: {
  18771. source: "./media/characters/zara/side.svg",
  18772. extra: 504 / 498
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(10, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18786. {
  18787. side: {
  18788. height: math.unit(6, "feet"),
  18789. weight: math.unit(150, "lb"),
  18790. name: "Side",
  18791. image: {
  18792. source: "./media/characters/richard-dragon/side.svg",
  18793. extra: 845 / 340,
  18794. bottom: 0.017
  18795. }
  18796. },
  18797. maw: {
  18798. height: math.unit(2.97, "feet"),
  18799. name: "Maw",
  18800. image: {
  18801. source: "./media/characters/richard-dragon/maw.svg"
  18802. }
  18803. },
  18804. },
  18805. [
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(4, "feet"),
  18813. weight: math.unit(100, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/richard-smeargle/front.svg",
  18817. extra: 2952 / 2820,
  18818. bottom: 0.028
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(4, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Dynamax",
  18830. height: math.unit(20, "meters")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6, "feet"),
  18839. weight: math.unit(110, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/klay/front.svg",
  18843. extra: 962 / 883,
  18844. bottom: 0.04
  18845. }
  18846. },
  18847. back: {
  18848. height: math.unit(6, "feet"),
  18849. weight: math.unit(110, "lb"),
  18850. name: "Back",
  18851. image: {
  18852. source: "./media/characters/klay/back.svg",
  18853. extra: 962 / 883
  18854. }
  18855. },
  18856. beans: {
  18857. height: math.unit(1.15, "feet"),
  18858. name: "Beans",
  18859. image: {
  18860. source: "./media/characters/klay/beans.svg"
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(6, "inches")
  18868. },
  18869. {
  18870. name: "Mini",
  18871. height: math.unit(3, "feet")
  18872. },
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(6, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Big",
  18880. height: math.unit(25, "feet")
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(100, "feet")
  18885. },
  18886. {
  18887. name: "Megamacro",
  18888. height: math.unit(400, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(6, "feet"),
  18897. weight: math.unit(160, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/marcus/front.svg",
  18901. extra: 734 / 676,
  18902. bottom: 0.03
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Little",
  18909. height: math.unit(6, "feet")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(110, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(250, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1000, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(7, "feet"),
  18931. weight: math.unit(275, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/claude-delroute/front.svg",
  18935. extra: 902/827,
  18936. bottom: 26/928
  18937. }
  18938. },
  18939. side: {
  18940. height: math.unit(7, "feet"),
  18941. weight: math.unit(275, "lb"),
  18942. name: "Side",
  18943. image: {
  18944. source: "./media/characters/claude-delroute/side.svg",
  18945. extra: 908/853,
  18946. bottom: 16/924
  18947. }
  18948. },
  18949. back: {
  18950. height: math.unit(7, "feet"),
  18951. weight: math.unit(275, "lb"),
  18952. name: "Back",
  18953. image: {
  18954. source: "./media/characters/claude-delroute/back.svg",
  18955. extra: 911/829,
  18956. bottom: 18/929
  18957. }
  18958. },
  18959. maw: {
  18960. height: math.unit(0.6407, "meters"),
  18961. name: "Maw",
  18962. image: {
  18963. source: "./media/characters/claude-delroute/maw.svg"
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(7, "feet"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Lorge",
  18975. height: math.unit(20, "feet")
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(8 + 4 / 12, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/dragonien/front.svg",
  18988. extra: 100 / 94,
  18989. bottom: 3.3 / 103.3445
  18990. }
  18991. },
  18992. back: {
  18993. height: math.unit(8 + 4 / 12, "feet"),
  18994. weight: math.unit(600, "lb"),
  18995. name: "Back",
  18996. image: {
  18997. source: "./media/characters/dragonien/back.svg",
  18998. extra: 776 / 746,
  18999. bottom: 6.4 / 782.0616
  19000. }
  19001. },
  19002. foot: {
  19003. height: math.unit(1.54, "feet"),
  19004. name: "Foot",
  19005. image: {
  19006. source: "./media/characters/dragonien/foot.svg",
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(8 + 4 / 12, "feet"),
  19014. default: true
  19015. },
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(200, "feet")
  19019. },
  19020. {
  19021. name: "Megamacro",
  19022. height: math.unit(1, "mile")
  19023. },
  19024. {
  19025. name: "Gigamacro",
  19026. height: math.unit(1000, "miles")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(5 + 2 / 12, "feet"),
  19035. weight: math.unit(110, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/desta/front.svg",
  19039. extra: 767 / 726,
  19040. bottom: 11.7 / 779
  19041. }
  19042. },
  19043. back: {
  19044. height: math.unit(5 + 2 / 12, "feet"),
  19045. weight: math.unit(110, "lb"),
  19046. name: "Back",
  19047. image: {
  19048. source: "./media/characters/desta/back.svg",
  19049. extra: 777 / 728,
  19050. bottom: 6 / 784
  19051. }
  19052. },
  19053. frontAlt: {
  19054. height: math.unit(5 + 2 / 12, "feet"),
  19055. weight: math.unit(110, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/desta/front-alt.svg",
  19059. extra: 1482 / 1417
  19060. }
  19061. },
  19062. side: {
  19063. height: math.unit(5 + 2 / 12, "feet"),
  19064. weight: math.unit(110, "lb"),
  19065. name: "Side",
  19066. image: {
  19067. source: "./media/characters/desta/side.svg",
  19068. extra: 2579 / 2491,
  19069. bottom: 0.053
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Micro",
  19076. height: math.unit(6, "inches")
  19077. },
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(5 + 2 / 12, "feet"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Macro",
  19085. height: math.unit(62, "feet")
  19086. },
  19087. {
  19088. name: "Megamacro",
  19089. height: math.unit(1800, "feet")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(10, "feet"),
  19098. weight: math.unit(700, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/storm-alystar/front.svg",
  19102. extra: 2112 / 1898,
  19103. bottom: 0.034
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Micro",
  19110. height: math.unit(3.5, "inches")
  19111. },
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(10, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(400, "feet")
  19120. },
  19121. {
  19122. name: "Deific",
  19123. height: math.unit(60, "miles")
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(2.35, "meters"),
  19132. weight: math.unit(119, "kg"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/ilia/front.svg",
  19136. extra: 1285 / 1255,
  19137. bottom: 0.06
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(2.35, "meters")
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(140, "meters"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Megamacro",
  19153. height: math.unit(100, "miles")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(6 + 5 / 12, "feet"),
  19162. weight: math.unit(190, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/kingdead/front.svg",
  19166. extra: 1228 / 1177
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Micro",
  19173. height: math.unit(7, "inches")
  19174. },
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6 + 5 / 12, "feet")
  19178. },
  19179. {
  19180. name: "Macro",
  19181. height: math.unit(150, "feet"),
  19182. default: true
  19183. },
  19184. {
  19185. name: "Megamacro",
  19186. height: math.unit(200, "miles")
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(8, "feet"),
  19195. weight: math.unit(600, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/kyrehx/front.svg",
  19199. extra: 1195 / 1095,
  19200. bottom: 0.034
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Micro",
  19207. height: math.unit(2, "inches")
  19208. },
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(8, "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(255, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19225. weight: math.unit(184, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/xang/front.svg",
  19229. extra: 845 / 755
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19237. default: true
  19238. },
  19239. {
  19240. name: "Macro",
  19241. height: math.unit(0.935 * 146, "feet")
  19242. },
  19243. {
  19244. name: "Megamacro",
  19245. height: math.unit(0.935 * 3, "miles")
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19251. {
  19252. frontDressed: {
  19253. height: math.unit(5 + 7 / 12, "feet"),
  19254. weight: math.unit(140, "lb"),
  19255. name: "Front (Dressed)",
  19256. image: {
  19257. source: "./media/characters/doc-weardno/front-dressed.svg",
  19258. extra: 263 / 234
  19259. }
  19260. },
  19261. backDressed: {
  19262. height: math.unit(5 + 7 / 12, "feet"),
  19263. weight: math.unit(140, "lb"),
  19264. name: "Back (Dressed)",
  19265. image: {
  19266. source: "./media/characters/doc-weardno/back-dressed.svg",
  19267. extra: 266 / 238
  19268. }
  19269. },
  19270. front: {
  19271. height: math.unit(5 + 7 / 12, "feet"),
  19272. weight: math.unit(140, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/doc-weardno/front.svg",
  19276. extra: 254 / 233
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Micro",
  19283. height: math.unit(3, "inches")
  19284. },
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 7 / 12, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(25, "feet")
  19293. },
  19294. {
  19295. name: "Megamacro",
  19296. height: math.unit(2, "miles")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 2 / 12, "feet"),
  19305. weight: math.unit(153, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/seth-whilst/front.svg",
  19309. bottom: 0.07
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Micro",
  19316. height: math.unit(5, "inches")
  19317. },
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(6 + 2 / 12, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(3, "inches"),
  19330. weight: math.unit(8, "grams"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/pocket-jabari/front.svg",
  19334. extra: 1024 / 974,
  19335. bottom: 0.039
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Minimicro",
  19342. height: math.unit(8, "mm")
  19343. },
  19344. {
  19345. name: "Micro",
  19346. height: math.unit(3, "inches"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(3, "feet")
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19357. {
  19358. frontDressed: {
  19359. height: math.unit(15, "feet"),
  19360. weight: math.unit(3280, "lb"),
  19361. name: "Front (Dressed)",
  19362. image: {
  19363. source: "./media/characters/sapphy/front-dressed.svg",
  19364. extra: 1951/1654,
  19365. bottom: 194/2145
  19366. },
  19367. form: "anthro",
  19368. default: true
  19369. },
  19370. backDressed: {
  19371. height: math.unit(15, "feet"),
  19372. weight: math.unit(3280, "lb"),
  19373. name: "Back (Dressed)",
  19374. image: {
  19375. source: "./media/characters/sapphy/back-dressed.svg",
  19376. extra: 2058/1918,
  19377. bottom: 125/2183
  19378. },
  19379. form: "anthro"
  19380. },
  19381. frontNude: {
  19382. height: math.unit(15, "feet"),
  19383. weight: math.unit(3280, "lb"),
  19384. name: "Front (Nude)",
  19385. image: {
  19386. source: "./media/characters/sapphy/front-nude.svg",
  19387. extra: 1951/1654,
  19388. bottom: 194/2145
  19389. },
  19390. form: "anthro"
  19391. },
  19392. backNude: {
  19393. height: math.unit(15, "feet"),
  19394. weight: math.unit(3280, "lb"),
  19395. name: "Back (Nude)",
  19396. image: {
  19397. source: "./media/characters/sapphy/back-nude.svg",
  19398. extra: 2058/1918,
  19399. bottom: 125/2183
  19400. },
  19401. form: "anthro"
  19402. },
  19403. full: {
  19404. height: math.unit(15, "feet"),
  19405. weight: math.unit(3280, "lb"),
  19406. name: "Full",
  19407. image: {
  19408. source: "./media/characters/sapphy/full.svg",
  19409. extra: 1396/1317,
  19410. bottom: 44/1440
  19411. },
  19412. form: "anthro"
  19413. },
  19414. dick: {
  19415. height: math.unit(3.8, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/sapphy/dick.svg"
  19419. },
  19420. form: "anthro"
  19421. },
  19422. feral: {
  19423. height: math.unit(35, "feet"),
  19424. weight: math.unit(160, "tons"),
  19425. name: "Feral",
  19426. image: {
  19427. source: "./media/characters/sapphy/feral.svg",
  19428. extra: 1050/573,
  19429. bottom: 60/1110
  19430. },
  19431. form: "feral",
  19432. default: true
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(15, "feet"),
  19439. form: "anthro"
  19440. },
  19441. {
  19442. name: "Casual Macro",
  19443. height: math.unit(120, "feet"),
  19444. form: "anthro"
  19445. },
  19446. {
  19447. name: "Macro",
  19448. height: math.unit(2150, "feet"),
  19449. default: true,
  19450. form: "anthro"
  19451. },
  19452. {
  19453. name: "Megamacro",
  19454. height: math.unit(8, "miles"),
  19455. form: "anthro"
  19456. },
  19457. {
  19458. name: "Galaxy Mom",
  19459. height: math.unit(6, "megalightyears"),
  19460. form: "anthro"
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(35, "feet"),
  19465. form: "feral",
  19466. default: true
  19467. },
  19468. {
  19469. name: "Macro",
  19470. height: math.unit(300, "feet"),
  19471. form: "feral"
  19472. },
  19473. {
  19474. name: "Galaxy Mom",
  19475. height: math.unit(10, "megalightyears"),
  19476. form: "feral"
  19477. },
  19478. ],
  19479. {
  19480. "anthro": {
  19481. name: "Anthro",
  19482. default: true
  19483. },
  19484. "feral": {
  19485. name: "Feral"
  19486. }
  19487. }
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(6, "feet"),
  19494. weight: math.unit(170, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/kiro/front.svg",
  19498. extra: 1064 / 1012,
  19499. bottom: 0.052
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(6, "inches")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(6, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Macro",
  19515. height: math.unit(72, "feet")
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 9 / 12, "feet"),
  19524. weight: math.unit(175, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/irishfox/front.svg",
  19528. extra: 1912 / 1680,
  19529. bottom: 0.02
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Nano",
  19536. height: math.unit(1, "mm")
  19537. },
  19538. {
  19539. name: "Micro",
  19540. height: math.unit(2, "inches")
  19541. },
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(5 + 9 / 12, "feet"),
  19545. default: true
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(45, "feet")
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(6 + 1 / 12, "feet"),
  19558. weight: math.unit(75, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/aronai-sieyes/front.svg",
  19562. extra: 1532/1450,
  19563. bottom: 42/1574
  19564. }
  19565. },
  19566. side: {
  19567. height: math.unit(6 + 1 / 12, "feet"),
  19568. weight: math.unit(75, "lb"),
  19569. name: "Side",
  19570. image: {
  19571. source: "./media/characters/aronai-sieyes/side.svg",
  19572. extra: 1422/1365,
  19573. bottom: 148/1570
  19574. }
  19575. },
  19576. back: {
  19577. height: math.unit(6 + 1 / 12, "feet"),
  19578. weight: math.unit(75, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/aronai-sieyes/back.svg",
  19582. extra: 1526/1464,
  19583. bottom: 51/1577
  19584. }
  19585. },
  19586. dressed: {
  19587. height: math.unit(6 + 1 / 12, "feet"),
  19588. weight: math.unit(75, "lb"),
  19589. name: "Dressed",
  19590. image: {
  19591. source: "./media/characters/aronai-sieyes/dressed.svg",
  19592. extra: 1559/1483,
  19593. bottom: 39/1598
  19594. }
  19595. },
  19596. slit: {
  19597. height: math.unit(1.3, "feet"),
  19598. name: "Slit",
  19599. image: {
  19600. source: "./media/characters/aronai-sieyes/slit.svg"
  19601. }
  19602. },
  19603. slitSpread: {
  19604. height: math.unit(0.9, "feet"),
  19605. name: "Slit (Spread)",
  19606. image: {
  19607. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19608. }
  19609. },
  19610. rump: {
  19611. height: math.unit(1.3, "feet"),
  19612. name: "Rump",
  19613. image: {
  19614. source: "./media/characters/aronai-sieyes/rump.svg"
  19615. }
  19616. },
  19617. maw: {
  19618. height: math.unit(1.25, "feet"),
  19619. name: "Maw",
  19620. image: {
  19621. source: "./media/characters/aronai-sieyes/maw.svg"
  19622. }
  19623. },
  19624. feral: {
  19625. height: math.unit(18, "feet"),
  19626. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19627. name: "Feral",
  19628. image: {
  19629. source: "./media/characters/aronai-sieyes/feral.svg",
  19630. extra: 1530 / 1240,
  19631. bottom: 0.035
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Micro",
  19638. height: math.unit(2, "inches")
  19639. },
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(6 + 1 / 12, "feet"),
  19643. default: true
  19644. }
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(12, "feet"),
  19652. weight: math.unit(410, "kg"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/xuna/front.svg",
  19656. extra: 2184 / 1980
  19657. }
  19658. },
  19659. side: {
  19660. height: math.unit(12, "feet"),
  19661. weight: math.unit(410, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/xuna/side.svg",
  19665. extra: 2184 / 1980
  19666. }
  19667. },
  19668. back: {
  19669. height: math.unit(12, "feet"),
  19670. weight: math.unit(410, "kg"),
  19671. name: "Back",
  19672. image: {
  19673. source: "./media/characters/xuna/back.svg",
  19674. extra: 2184 / 1980
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Nano glow",
  19681. height: math.unit(10, "nm")
  19682. },
  19683. {
  19684. name: "Micro floof",
  19685. height: math.unit(0.3, "m")
  19686. },
  19687. {
  19688. name: "Huggable softy boi",
  19689. height: math.unit(3.6576, "m"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Admirable floof",
  19694. height: math.unit(80, "meters")
  19695. },
  19696. {
  19697. name: "Gentle macro",
  19698. height: math.unit(300, "meters")
  19699. },
  19700. {
  19701. name: "Very careful floof",
  19702. height: math.unit(3200, "meters")
  19703. },
  19704. {
  19705. name: "The mega floof",
  19706. height: math.unit(36000, "meters")
  19707. },
  19708. {
  19709. name: "Giga-fur-Wicker",
  19710. height: math.unit(4800000, "meters")
  19711. },
  19712. {
  19713. name: "Licky world",
  19714. height: math.unit(20000000, "meters")
  19715. },
  19716. {
  19717. name: "Floofy cyan sun",
  19718. height: math.unit(1500000000, "meters")
  19719. },
  19720. {
  19721. name: "Milky Wicker",
  19722. height: math.unit(1000000000000000000000, "meters")
  19723. },
  19724. {
  19725. name: "The observing Wicker",
  19726. height: math.unit(999999999999999999999999999, "meters")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(5 + 9 / 12, "feet"),
  19735. weight: math.unit(150, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/arokha-sieyes/front.svg",
  19739. extra: 1425 / 1284,
  19740. bottom: 0.05
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(5 + 9 / 12, "feet")
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(30, "meters"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(180, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/arokh-sieyes/front.svg",
  19765. extra: 1830 / 1769,
  19766. bottom: 0.01
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6, "feet")
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(30, "meters"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19784. {
  19785. side: {
  19786. height: math.unit(13 + 1 / 12, "feet"),
  19787. weight: math.unit(8.5, "tonnes"),
  19788. name: "Side",
  19789. image: {
  19790. source: "./media/characters/goldeneye/side.svg",
  19791. extra: 1182 / 778,
  19792. bottom: 0.067
  19793. }
  19794. },
  19795. paw: {
  19796. height: math.unit(3.4, "feet"),
  19797. name: "Paw",
  19798. image: {
  19799. source: "./media/characters/goldeneye/paw.svg"
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(13 + 1 / 12, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19813. {
  19814. front: {
  19815. height: math.unit(6 + 1 / 12, "feet"),
  19816. weight: math.unit(210, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/leonardo-lycheborne/front.svg",
  19820. extra: 776/723,
  19821. bottom: 34/810
  19822. }
  19823. },
  19824. side: {
  19825. height: math.unit(6 + 1 / 12, "feet"),
  19826. weight: math.unit(210, "lb"),
  19827. name: "Side",
  19828. image: {
  19829. source: "./media/characters/leonardo-lycheborne/side.svg",
  19830. extra: 780/728,
  19831. bottom: 12/792
  19832. }
  19833. },
  19834. back: {
  19835. height: math.unit(6 + 1 / 12, "feet"),
  19836. weight: math.unit(210, "lb"),
  19837. name: "Back",
  19838. image: {
  19839. source: "./media/characters/leonardo-lycheborne/back.svg",
  19840. extra: 775/721,
  19841. bottom: 17/792
  19842. }
  19843. },
  19844. hand: {
  19845. height: math.unit(1.08, "feet"),
  19846. name: "Hand",
  19847. image: {
  19848. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19849. }
  19850. },
  19851. foot: {
  19852. height: math.unit(1.32, "feet"),
  19853. name: "Foot",
  19854. image: {
  19855. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19856. }
  19857. },
  19858. maw: {
  19859. height: math.unit(1, "feet"),
  19860. name: "Maw",
  19861. image: {
  19862. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19863. }
  19864. },
  19865. were: {
  19866. height: math.unit(20, "feet"),
  19867. weight: math.unit(7800, "lb"),
  19868. name: "Were",
  19869. image: {
  19870. source: "./media/characters/leonardo-lycheborne/were.svg",
  19871. extra: 1224/1165,
  19872. bottom: 72/1296
  19873. }
  19874. },
  19875. feral: {
  19876. height: math.unit(7.5, "feet"),
  19877. weight: math.unit(600, "lb"),
  19878. name: "Feral",
  19879. image: {
  19880. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19881. extra: 797/702,
  19882. bottom: 139/936
  19883. }
  19884. },
  19885. taur: {
  19886. height: math.unit(11, "feet"),
  19887. weight: math.unit(3300, "lb"),
  19888. name: "Taur",
  19889. image: {
  19890. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19891. extra: 1271/1197,
  19892. bottom: 47/1318
  19893. }
  19894. },
  19895. barghest: {
  19896. height: math.unit(11, "feet"),
  19897. weight: math.unit(1300, "lb"),
  19898. name: "Barghest",
  19899. image: {
  19900. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19901. extra: 1291/1204,
  19902. bottom: 37/1328
  19903. }
  19904. },
  19905. dick: {
  19906. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19907. name: "Dick",
  19908. image: {
  19909. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19910. }
  19911. },
  19912. dickWere: {
  19913. height: math.unit((20) / 3.8, "feet"),
  19914. name: "Dick (Were)",
  19915. image: {
  19916. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19917. }
  19918. },
  19919. },
  19920. [
  19921. {
  19922. name: "Normal",
  19923. height: math.unit(6 + 1 / 12, "feet"),
  19924. default: true
  19925. },
  19926. ]
  19927. ))
  19928. characterMakers.push(() => makeCharacter(
  19929. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19930. {
  19931. front: {
  19932. height: math.unit(10, "feet"),
  19933. weight: math.unit(350, "lb"),
  19934. name: "Front",
  19935. image: {
  19936. source: "./media/characters/jet/front.svg",
  19937. extra: 2050 / 1980,
  19938. bottom: 0.013
  19939. }
  19940. },
  19941. back: {
  19942. height: math.unit(10, "feet"),
  19943. weight: math.unit(350, "lb"),
  19944. name: "Back",
  19945. image: {
  19946. source: "./media/characters/jet/back.svg",
  19947. extra: 2050 / 1980,
  19948. bottom: 0.013
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Micro",
  19955. height: math.unit(6, "inches")
  19956. },
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(10, "feet"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Macro",
  19964. height: math.unit(100, "feet")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(15, "feet"),
  19973. weight: math.unit(2800, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/tanarath/front.svg",
  19977. extra: 2392 / 2220,
  19978. bottom: 0.03
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(15, "feet"),
  19983. weight: math.unit(2800, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/tanarath/back.svg",
  19987. extra: 2392 / 2220,
  19988. bottom: 0.03
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(15, "feet"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(7 + 1 / 12, "feet"),
  20005. weight: math.unit(175, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/patty-cattybatty/front.svg",
  20009. extra: 908 / 874,
  20010. bottom: 0.025
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Micro",
  20017. height: math.unit(1, "inch")
  20018. },
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(7 + 1 / 12, "feet")
  20022. },
  20023. {
  20024. name: "Mini Macro",
  20025. height: math.unit(155, "feet")
  20026. },
  20027. {
  20028. name: "Macro",
  20029. height: math.unit(1077, "feet")
  20030. },
  20031. {
  20032. name: "Mega Macro",
  20033. height: math.unit(47650, "feet"),
  20034. default: true
  20035. },
  20036. {
  20037. name: "Giga Macro",
  20038. height: math.unit(440, "miles")
  20039. },
  20040. {
  20041. name: "Tera Macro",
  20042. height: math.unit(8700, "miles")
  20043. },
  20044. {
  20045. name: "Planetary Macro",
  20046. height: math.unit(32700, "miles")
  20047. },
  20048. {
  20049. name: "Solar Macro",
  20050. height: math.unit(550000, "miles")
  20051. },
  20052. {
  20053. name: "Celestial Macro",
  20054. height: math.unit(2.5, "AU")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(4 + 5 / 12, "feet"),
  20063. weight: math.unit(90, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/cappu/front.svg",
  20067. extra: 1247 / 1152,
  20068. bottom: 0.012
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(4 + 5 / 12, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20082. {
  20083. frontDressed: {
  20084. height: math.unit(70, "cm"),
  20085. weight: math.unit(6, "kg"),
  20086. name: "Front (Dressed)",
  20087. image: {
  20088. source: "./media/characters/sebi/front-dressed.svg",
  20089. extra: 713.5 / 686.5,
  20090. bottom: 0.003
  20091. }
  20092. },
  20093. front: {
  20094. height: math.unit(70, "cm"),
  20095. weight: math.unit(5, "kg"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/sebi/front.svg",
  20099. extra: 713.5 / 686.5,
  20100. bottom: 0.003
  20101. }
  20102. }
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(70, "cm"),
  20108. default: true
  20109. },
  20110. {
  20111. name: "Macro",
  20112. height: math.unit(8, "meters")
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(6, "feet"),
  20121. weight: math.unit(150, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/typhek/front.svg",
  20125. extra: 1948 / 1929,
  20126. bottom: 0.025
  20127. }
  20128. },
  20129. side: {
  20130. height: math.unit(6, "feet"),
  20131. weight: math.unit(150, "lb"),
  20132. name: "Side",
  20133. image: {
  20134. source: "./media/characters/typhek/side.svg",
  20135. extra: 2034 / 2010,
  20136. bottom: 0.003
  20137. }
  20138. },
  20139. back: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(150, "lb"),
  20142. name: "Back",
  20143. image: {
  20144. source: "./media/characters/typhek/back.svg",
  20145. extra: 2005 / 1978,
  20146. bottom: 0.004
  20147. }
  20148. },
  20149. palm: {
  20150. height: math.unit(1.2, "feet"),
  20151. name: "Palm",
  20152. image: {
  20153. source: "./media/characters/typhek/palm.svg"
  20154. }
  20155. },
  20156. fist: {
  20157. height: math.unit(1.1, "feet"),
  20158. name: "Fist",
  20159. image: {
  20160. source: "./media/characters/typhek/fist.svg"
  20161. }
  20162. },
  20163. foot: {
  20164. height: math.unit(1.57, "feet"),
  20165. name: "Foot",
  20166. image: {
  20167. source: "./media/characters/typhek/foot.svg"
  20168. }
  20169. },
  20170. sole: {
  20171. height: math.unit(2.05, "feet"),
  20172. name: "Sole",
  20173. image: {
  20174. source: "./media/characters/typhek/sole.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(40, "stories"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Megamacro",
  20186. height: math.unit(1, "mile")
  20187. },
  20188. {
  20189. name: "Gigamacro",
  20190. height: math.unit(4000, "solarradii")
  20191. },
  20192. {
  20193. name: "Universal",
  20194. height: math.unit(1.1, "universes")
  20195. }
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20200. {
  20201. side: {
  20202. height: math.unit(5 + 7 / 12, "feet"),
  20203. weight: math.unit(150, "lb"),
  20204. name: "Side",
  20205. image: {
  20206. source: "./media/characters/kassy/side.svg",
  20207. extra: 1280 / 1225,
  20208. bottom: 0.002
  20209. }
  20210. },
  20211. front: {
  20212. height: math.unit(5 + 7 / 12, "feet"),
  20213. weight: math.unit(150, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/kassy/front.svg",
  20217. extra: 1280 / 1225,
  20218. bottom: 0.025
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(5 + 7 / 12, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/kassy/back.svg",
  20227. extra: 1280 / 1225,
  20228. bottom: 0.002
  20229. }
  20230. },
  20231. foot: {
  20232. height: math.unit(1.266, "feet"),
  20233. name: "Foot",
  20234. image: {
  20235. source: "./media/characters/kassy/foot.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(5 + 7 / 12, "feet")
  20243. },
  20244. {
  20245. name: "Macro",
  20246. height: math.unit(137, "feet"),
  20247. default: true
  20248. },
  20249. {
  20250. name: "Megamacro",
  20251. height: math.unit(1, "mile")
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(6 + 1 / 12, "feet"),
  20260. weight: math.unit(200, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/neil/front.svg",
  20264. extra: 1326 / 1250,
  20265. bottom: 0.023
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(6 + 1 / 12, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(200, "feet")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(5 + 9 / 12, "feet"),
  20286. weight: math.unit(190, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/atticus/front.svg",
  20290. extra: 2934 / 2785,
  20291. bottom: 0.025
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(5 + 9 / 12, "feet"),
  20299. default: true
  20300. },
  20301. {
  20302. name: "Macro",
  20303. height: math.unit(180, "feet")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20309. {
  20310. side: {
  20311. height: math.unit(9, "feet"),
  20312. weight: math.unit(650, "lb"),
  20313. name: "Side",
  20314. image: {
  20315. source: "./media/characters/milo/side.svg",
  20316. extra: 2644 / 2310,
  20317. bottom: 0.032
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(9, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(300, "feet")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20335. {
  20336. side: {
  20337. height: math.unit(8, "meters"),
  20338. weight: math.unit(90000, "kg"),
  20339. name: "Side",
  20340. image: {
  20341. source: "./media/characters/ijzer/side.svg",
  20342. extra: 2756 / 1600,
  20343. bottom: 0.01
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Small",
  20350. height: math.unit(3, "meters")
  20351. },
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(8, "meters"),
  20355. default: true
  20356. },
  20357. {
  20358. name: "Normal+",
  20359. height: math.unit(10, "meters")
  20360. },
  20361. {
  20362. name: "Bigger",
  20363. height: math.unit(24, "meters")
  20364. },
  20365. {
  20366. name: "Huge",
  20367. height: math.unit(80, "meters")
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(6 + 2 / 12, "feet"),
  20376. weight: math.unit(153, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/luca-cervicum/front.svg",
  20380. extra: 370 / 327,
  20381. bottom: 0.015
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(6 + 2 / 12, "feet"),
  20386. weight: math.unit(153, "lb"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/luca-cervicum/back.svg",
  20390. extra: 367 / 333,
  20391. bottom: 0.005
  20392. }
  20393. },
  20394. frontGear: {
  20395. height: math.unit(6 + 2 / 12, "feet"),
  20396. weight: math.unit(173, "lb"),
  20397. name: "Front (Gear)",
  20398. image: {
  20399. source: "./media/characters/luca-cervicum/front-gear.svg",
  20400. extra: 377 / 333,
  20401. bottom: 0.006
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(6 + 2 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(6 + 1 / 12, "feet"),
  20418. weight: math.unit(304, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/oliver/front.svg",
  20422. extra: 157 / 143,
  20423. bottom: 0.08
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(6 + 1 / 12, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. weight: math.unit(140, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/shane/front.svg",
  20444. extra: 304 / 289,
  20445. bottom: 0.005
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(5 + 7 / 12, "feet"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20459. {
  20460. front: {
  20461. height: math.unit(5 + 9 / 12, "feet"),
  20462. weight: math.unit(178, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/shin/front.svg",
  20466. extra: 159 / 151,
  20467. bottom: 0.015
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 9 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(5 + 10 / 12, "feet"),
  20484. weight: math.unit(168, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/xerxes/front.svg",
  20488. extra: 282 / 260,
  20489. bottom: 0.045
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(5 + 10 / 12, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(6 + 7 / 12, "feet"),
  20506. weight: math.unit(208, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/chaska/front.svg",
  20510. extra: 332 / 319,
  20511. bottom: 0.015
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(6 + 7 / 12, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(5 + 8 / 12, "feet"),
  20528. weight: math.unit(208, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/enuk/front.svg",
  20532. extra: 437 / 406,
  20533. bottom: 0.02
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(5 + 8 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(5 + 10 / 12, "feet"),
  20550. weight: math.unit(252, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/bruun/front.svg",
  20554. extra: 197 / 187,
  20555. bottom: 0.012
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(5 + 10 / 12, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6 + 10 / 12, "feet"),
  20572. weight: math.unit(255, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/alexeev/front.svg",
  20576. extra: 213 / 200,
  20577. bottom: 0.05
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(6 + 10 / 12, "feet"),
  20585. default: true
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(2 + 8 / 12, "feet"),
  20594. weight: math.unit(22, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/evelyn/front.svg",
  20598. extra: 208 / 180
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(2 + 8 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(5 + 9 / 12, "feet"),
  20615. weight: math.unit(139, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/inca/front.svg",
  20619. extra: 294 / 291,
  20620. bottom: 0.03
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 9 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(6 + 3 / 12, "feet"),
  20637. weight: math.unit(185, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/mera/front.svg",
  20641. extra: 291 / 277,
  20642. bottom: 0.03
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(6 + 3 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(6 + 7 / 12, "feet"),
  20659. weight: math.unit(160, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/ceres/front.svg",
  20663. extra: 1023 / 950,
  20664. bottom: 0.027
  20665. }
  20666. },
  20667. back: {
  20668. height: math.unit(6 + 7 / 12, "feet"),
  20669. weight: math.unit(160, "lb"),
  20670. name: "Back",
  20671. image: {
  20672. source: "./media/characters/ceres/back.svg",
  20673. extra: 1023 / 950
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(6 + 7 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(5 + 10 / 12, "feet"),
  20690. weight: math.unit(150, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/kris/front.svg",
  20694. extra: 885 / 803,
  20695. bottom: 0.03
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(5 + 10 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(7, "feet"),
  20712. weight: math.unit(120, "kg"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/taluthus/front.svg",
  20716. extra: 903 / 833,
  20717. bottom: 0.015
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(7, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(300, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(5 + 9 / 12, "feet"),
  20738. weight: math.unit(145, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/dawn/front.svg",
  20742. extra: 2094 / 2016,
  20743. bottom: 0.025
  20744. }
  20745. },
  20746. back: {
  20747. height: math.unit(5 + 9 / 12, "feet"),
  20748. weight: math.unit(160, "lb"),
  20749. name: "Back",
  20750. image: {
  20751. source: "./media/characters/dawn/back.svg",
  20752. extra: 2112 / 2080,
  20753. bottom: 0.005
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(6 + 7 / 12, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20767. {
  20768. anthro: {
  20769. height: math.unit(8 + 3 / 12, "feet"),
  20770. weight: math.unit(450, "lb"),
  20771. name: "Anthro",
  20772. image: {
  20773. source: "./media/characters/arador/anthro.svg",
  20774. extra: 1835 / 1718,
  20775. bottom: 0.025
  20776. }
  20777. },
  20778. feral: {
  20779. height: math.unit(4, "feet"),
  20780. weight: math.unit(200, "lb"),
  20781. name: "Feral",
  20782. image: {
  20783. source: "./media/characters/arador/feral.svg",
  20784. extra: 1683 / 1514,
  20785. bottom: 0.07
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(8 + 3 / 12, "feet")
  20793. },
  20794. {
  20795. name: "Macro",
  20796. height: math.unit(82.5, "feet"),
  20797. default: true
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(5 + 10 / 12, "feet"),
  20806. weight: math.unit(125, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/dharsi/front.svg",
  20810. extra: 716 / 630,
  20811. bottom: 0.035
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Nano",
  20818. height: math.unit(100, "nm")
  20819. },
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(2, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 10 / 12, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(1000, "feet")
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(10, "miles")
  20836. },
  20837. {
  20838. name: "Gigamacro",
  20839. height: math.unit(3000, "miles")
  20840. },
  20841. {
  20842. name: "Teramacro",
  20843. height: math.unit(500000, "miles")
  20844. },
  20845. {
  20846. name: "Teramacro+",
  20847. height: math.unit(30, "galaxies")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(6, "feet"),
  20856. weight: math.unit(150, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/deathy/front.svg",
  20860. extra: 1552 / 1463,
  20861. bottom: 0.025
  20862. }
  20863. },
  20864. side: {
  20865. height: math.unit(6, "feet"),
  20866. weight: math.unit(150, "lb"),
  20867. name: "Side",
  20868. image: {
  20869. source: "./media/characters/deathy/side.svg",
  20870. extra: 1604 / 1455,
  20871. bottom: 0.025
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(6, "feet"),
  20876. weight: math.unit(150, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/deathy/back.svg",
  20880. extra: 1580 / 1463,
  20881. bottom: 0.005
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Micro",
  20888. height: math.unit(5, "millimeters")
  20889. },
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(6 + 5 / 12, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20899. {
  20900. front: {
  20901. height: math.unit(16, "feet"),
  20902. weight: math.unit(4000, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/juniper/front.svg",
  20906. bottom: 0.04
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(16, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20920. {
  20921. front: {
  20922. height: math.unit(6, "feet"),
  20923. weight: math.unit(150, "lb"),
  20924. name: "Front",
  20925. image: {
  20926. source: "./media/characters/hipster/front.svg",
  20927. extra: 1312 / 1209,
  20928. bottom: 0.025
  20929. }
  20930. },
  20931. back: {
  20932. height: math.unit(6, "feet"),
  20933. weight: math.unit(150, "lb"),
  20934. name: "Back",
  20935. image: {
  20936. source: "./media/characters/hipster/back.svg",
  20937. extra: 1281 / 1196,
  20938. bottom: 0.01
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Micro",
  20945. height: math.unit(1, "mm")
  20946. },
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(4, "inches"),
  20950. default: true
  20951. },
  20952. {
  20953. name: "Macro",
  20954. height: math.unit(500, "feet")
  20955. },
  20956. {
  20957. name: "Megamacro",
  20958. height: math.unit(1000, "miles")
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(6, "feet"),
  20967. weight: math.unit(150, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/tendirmuldr/front.svg",
  20971. extra: 1878 / 1772,
  20972. bottom: 0.015
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Megamacro",
  20979. height: math.unit(1500, "miles"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20986. {
  20987. front: {
  20988. height: math.unit(14, "feet"),
  20989. weight: math.unit(12000, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/mort/front.svg",
  20993. extra: 365 / 318,
  20994. bottom: 0.01
  20995. }
  20996. },
  20997. side: {
  20998. height: math.unit(14, "feet"),
  20999. weight: math.unit(12000, "lb"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/mort/side.svg",
  21003. extra: 365 / 318,
  21004. bottom: 0.052
  21005. },
  21006. default: true
  21007. },
  21008. back: {
  21009. height: math.unit(14, "feet"),
  21010. weight: math.unit(12000, "lb"),
  21011. name: "Back",
  21012. image: {
  21013. source: "./media/characters/mort/back.svg",
  21014. extra: 371 / 332,
  21015. bottom: 0.18
  21016. }
  21017. },
  21018. },
  21019. [
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(14, "feet"),
  21023. default: true
  21024. },
  21025. ]
  21026. ))
  21027. characterMakers.push(() => makeCharacter(
  21028. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21029. {
  21030. front: {
  21031. height: math.unit(8, "feet"),
  21032. weight: math.unit(1, "ton"),
  21033. name: "Front",
  21034. image: {
  21035. source: "./media/characters/lycoa/front.svg",
  21036. extra: 1836/1728,
  21037. bottom: 81/1917
  21038. }
  21039. },
  21040. back: {
  21041. height: math.unit(8, "feet"),
  21042. weight: math.unit(1, "ton"),
  21043. name: "Back",
  21044. image: {
  21045. source: "./media/characters/lycoa/back.svg",
  21046. extra: 1785/1720,
  21047. bottom: 91/1876
  21048. }
  21049. },
  21050. head: {
  21051. height: math.unit(1.6243, "feet"),
  21052. name: "Head",
  21053. image: {
  21054. source: "./media/characters/lycoa/head.svg",
  21055. extra: 1011/782,
  21056. bottom: 0/1011
  21057. }
  21058. },
  21059. tailmaw: {
  21060. height: math.unit(1.9, "feet"),
  21061. name: "Tailmaw",
  21062. image: {
  21063. source: "./media/characters/lycoa/tailmaw.svg"
  21064. }
  21065. },
  21066. tentacles: {
  21067. height: math.unit(2.1, "feet"),
  21068. name: "Tentacles",
  21069. image: {
  21070. source: "./media/characters/lycoa/tentacles.svg"
  21071. }
  21072. },
  21073. dick: {
  21074. height: math.unit(1.73, "feet"),
  21075. name: "Dick",
  21076. image: {
  21077. source: "./media/characters/lycoa/dick.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(8, "feet"),
  21085. default: true
  21086. },
  21087. {
  21088. name: "Macro",
  21089. height: math.unit(30, "feet")
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21095. {
  21096. front: {
  21097. height: math.unit(4 + 2 / 12, "feet"),
  21098. weight: math.unit(70, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/naldara/front.svg",
  21102. extra: 1664/1387,
  21103. bottom: 81/1745
  21104. },
  21105. form: "anthro",
  21106. default: true
  21107. },
  21108. naga: {
  21109. height: math.unit(20, "feet"),
  21110. weight: math.unit(15000, "kg"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/naldara/naga.svg",
  21114. extra: 1590/1396,
  21115. bottom: 285/1875
  21116. },
  21117. form: "naga",
  21118. default: true
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(4 + 2 / 12, "feet"),
  21125. form: "anthro",
  21126. default: true
  21127. },
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(20, "feet"),
  21131. form: "naga",
  21132. default: true
  21133. },
  21134. ],
  21135. {
  21136. "anthro": {
  21137. name: "Anthro",
  21138. default: true
  21139. },
  21140. "naga": {
  21141. name: "Naga"
  21142. }
  21143. }
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(13 + 7 / 12, "feet"),
  21150. weight: math.unit(1500, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/briar/front.svg",
  21154. extra: 1223/1157,
  21155. bottom: 123/1346
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Normal",
  21162. height: math.unit(13 + 7 / 12, "feet"),
  21163. default: true
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21169. {
  21170. side: {
  21171. height: math.unit(16, "feet"),
  21172. weight: math.unit(500, "lb"),
  21173. name: "Side",
  21174. image: {
  21175. source: "./media/characters/vanguard/side.svg",
  21176. extra: 1022/914,
  21177. bottom: 30/1052
  21178. }
  21179. },
  21180. sideAlt: {
  21181. height: math.unit(10, "feet"),
  21182. weight: math.unit(500, "lb"),
  21183. name: "Side (Alt)",
  21184. image: {
  21185. source: "./media/characters/vanguard/side-alt.svg",
  21186. extra: 502 / 425,
  21187. bottom: 0.087
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(17.71, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(7.5, "feet"),
  21204. weight: math.unit(2, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/artemis/work-safe-front.svg",
  21208. extra: 1192 / 1075,
  21209. bottom: 0.07
  21210. },
  21211. form: "work-safe",
  21212. default: true
  21213. },
  21214. frontNsfw: {
  21215. height: math.unit(7.5, "feet"),
  21216. weight: math.unit(2, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/artemis/calibrating-front.svg",
  21220. extra: 1192 / 1075,
  21221. bottom: 0.07
  21222. },
  21223. form: "calibrating",
  21224. default: true
  21225. },
  21226. frontNsfwer: {
  21227. height: math.unit(7.5, "feet"),
  21228. weight: math.unit(2, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/artemis/oversize-load-front.svg",
  21232. extra: 1192 / 1075,
  21233. bottom: 0.07
  21234. },
  21235. form: "oversize-load",
  21236. default: true
  21237. },
  21238. side: {
  21239. height: math.unit(7.5, "feet"),
  21240. weight: math.unit(2, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/artemis/work-safe-side.svg",
  21244. extra: 1192 / 1075,
  21245. bottom: 0.07
  21246. },
  21247. form: "work-safe"
  21248. },
  21249. sideNsfw: {
  21250. height: math.unit(7.5, "feet"),
  21251. weight: math.unit(2, "lb"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/artemis/calibrating-side.svg",
  21255. extra: 1192 / 1075,
  21256. bottom: 0.07
  21257. },
  21258. form: "calibrating"
  21259. },
  21260. sideNsfwer: {
  21261. height: math.unit(7.5, "feet"),
  21262. weight: math.unit(2, "lb"),
  21263. name: "Side",
  21264. image: {
  21265. source: "./media/characters/artemis/oversize-load-side.svg",
  21266. extra: 1192 / 1075,
  21267. bottom: 0.07
  21268. },
  21269. form: "oversize-load"
  21270. },
  21271. maw: {
  21272. height: math.unit(1.1, "feet"),
  21273. name: "Maw",
  21274. image: {
  21275. source: "./media/characters/artemis/maw.svg"
  21276. },
  21277. form: "work-safe"
  21278. },
  21279. stomach: {
  21280. height: math.unit(0.95, "feet"),
  21281. name: "Stomach",
  21282. image: {
  21283. source: "./media/characters/artemis/stomach.svg"
  21284. },
  21285. form: "work-safe"
  21286. },
  21287. dickCanine: {
  21288. height: math.unit(1, "feet"),
  21289. name: "Dick (Canine)",
  21290. image: {
  21291. source: "./media/characters/artemis/dick-canine.svg"
  21292. },
  21293. form: "calibrating"
  21294. },
  21295. dickEquine: {
  21296. height: math.unit(0.85, "feet"),
  21297. name: "Dick (Equine)",
  21298. image: {
  21299. source: "./media/characters/artemis/dick-equine.svg"
  21300. },
  21301. form: "calibrating"
  21302. },
  21303. dickExotic: {
  21304. height: math.unit(0.85, "feet"),
  21305. name: "Dick (Exotic)",
  21306. image: {
  21307. source: "./media/characters/artemis/dick-exotic.svg"
  21308. },
  21309. form: "calibrating"
  21310. },
  21311. dickCanineBigger: {
  21312. height: math.unit(1 * 1.33, "feet"),
  21313. name: "Dick (Canine)",
  21314. image: {
  21315. source: "./media/characters/artemis/dick-canine.svg"
  21316. },
  21317. form: "oversize-load"
  21318. },
  21319. dickEquineBigger: {
  21320. height: math.unit(0.85 * 1.33, "feet"),
  21321. name: "Dick (Equine)",
  21322. image: {
  21323. source: "./media/characters/artemis/dick-equine.svg"
  21324. },
  21325. form: "oversize-load"
  21326. },
  21327. dickExoticBigger: {
  21328. height: math.unit(0.85 * 1.33, "feet"),
  21329. name: "Dick (Exotic)",
  21330. image: {
  21331. source: "./media/characters/artemis/dick-exotic.svg"
  21332. },
  21333. form: "oversize-load"
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(7.5, "feet"),
  21340. form: "work-safe",
  21341. default: true
  21342. },
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(7.5, "feet"),
  21346. form: "calibrating",
  21347. default: true
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(7.5, "feet"),
  21352. form: "oversize-load",
  21353. default: true
  21354. },
  21355. {
  21356. name: "Enlarged",
  21357. height: math.unit(12, "feet"),
  21358. form: "work-safe",
  21359. },
  21360. {
  21361. name: "Enlarged",
  21362. height: math.unit(12, "feet"),
  21363. form: "calibrating",
  21364. },
  21365. {
  21366. name: "Enlarged",
  21367. height: math.unit(12, "feet"),
  21368. form: "oversize-load",
  21369. },
  21370. ],
  21371. {
  21372. "work-safe": {
  21373. name: "Work-Safe",
  21374. default: true
  21375. },
  21376. "calibrating": {
  21377. name: "Calibrating"
  21378. },
  21379. "oversize-load": {
  21380. name: "Oversize Load"
  21381. }
  21382. }
  21383. ))
  21384. characterMakers.push(() => makeCharacter(
  21385. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21386. {
  21387. front: {
  21388. height: math.unit(5 + 3 / 12, "feet"),
  21389. weight: math.unit(160, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/kira/front.svg",
  21393. extra: 906 / 786,
  21394. bottom: 0.01
  21395. }
  21396. },
  21397. back: {
  21398. height: math.unit(5 + 3 / 12, "feet"),
  21399. weight: math.unit(160, "lb"),
  21400. name: "Back",
  21401. image: {
  21402. source: "./media/characters/kira/back.svg",
  21403. extra: 882 / 757,
  21404. bottom: 0.005
  21405. }
  21406. },
  21407. frontDressed: {
  21408. height: math.unit(5 + 3 / 12, "feet"),
  21409. weight: math.unit(160, "lb"),
  21410. name: "Front (Dressed)",
  21411. image: {
  21412. source: "./media/characters/kira/front-dressed.svg",
  21413. extra: 906 / 786,
  21414. bottom: 0.01
  21415. }
  21416. },
  21417. beans: {
  21418. height: math.unit(0.92, "feet"),
  21419. name: "Beans",
  21420. image: {
  21421. source: "./media/characters/kira/beans.svg"
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(5 + 3 / 12, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(5 + 4 / 12, "feet"),
  21438. weight: math.unit(145, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/scramble/front.svg",
  21442. extra: 763 / 727,
  21443. bottom: 0.05
  21444. }
  21445. },
  21446. back: {
  21447. height: math.unit(5 + 4 / 12, "feet"),
  21448. weight: math.unit(145, "lb"),
  21449. name: "Back",
  21450. image: {
  21451. source: "./media/characters/scramble/back.svg",
  21452. extra: 826 / 737,
  21453. bottom: 0.002
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5 + 4 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21467. {
  21468. side: {
  21469. height: math.unit(6 + 2 / 12, "feet"),
  21470. weight: math.unit(190, "lb"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/biscuit/side.svg",
  21474. extra: 858 / 791,
  21475. bottom: 0.044
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(6 + 2 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 2 / 12, "feet"),
  21492. weight: math.unit(120, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/poffin/front.svg",
  21496. extra: 786 / 680,
  21497. bottom: 0.005
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 2 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6 + 3 / 12, "feet"),
  21514. weight: math.unit(519, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/dhari/front.svg",
  21518. extra: 1048 / 946,
  21519. bottom: 0.015
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(6 + 3 / 12, "feet"),
  21524. weight: math.unit(519, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/dhari/back.svg",
  21528. extra: 1048 / 931,
  21529. bottom: 0.005
  21530. }
  21531. },
  21532. frontDressed: {
  21533. height: math.unit(6 + 3 / 12, "feet"),
  21534. weight: math.unit(519, "lb"),
  21535. name: "Front (Dressed)",
  21536. image: {
  21537. source: "./media/characters/dhari/front-dressed.svg",
  21538. extra: 1713 / 1546,
  21539. bottom: 0.02
  21540. }
  21541. },
  21542. backDressed: {
  21543. height: math.unit(6 + 3 / 12, "feet"),
  21544. weight: math.unit(519, "lb"),
  21545. name: "Back (Dressed)",
  21546. image: {
  21547. source: "./media/characters/dhari/back-dressed.svg",
  21548. extra: 1699 / 1537,
  21549. bottom: 0.01
  21550. }
  21551. },
  21552. maw: {
  21553. height: math.unit(0.95, "feet"),
  21554. name: "Maw",
  21555. image: {
  21556. source: "./media/characters/dhari/maw.svg"
  21557. }
  21558. },
  21559. wereFront: {
  21560. height: math.unit(12 + 8 / 12, "feet"),
  21561. weight: math.unit(4000, "lb"),
  21562. name: "Front (Were)",
  21563. image: {
  21564. source: "./media/characters/dhari/were-front.svg",
  21565. extra: 1065 / 969,
  21566. bottom: 0.015
  21567. }
  21568. },
  21569. wereBack: {
  21570. height: math.unit(12 + 8 / 12, "feet"),
  21571. weight: math.unit(4000, "lb"),
  21572. name: "Back (Were)",
  21573. image: {
  21574. source: "./media/characters/dhari/were-back.svg",
  21575. extra: 1065 / 969,
  21576. bottom: 0.012
  21577. }
  21578. },
  21579. wereMaw: {
  21580. height: math.unit(0.625, "meters"),
  21581. name: "Maw (Were)",
  21582. image: {
  21583. source: "./media/characters/dhari/were-maw.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(6 + 3 / 12, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21597. {
  21598. anthro: {
  21599. height: math.unit(5 + 7 / 12, "feet"),
  21600. weight: math.unit(175, "lb"),
  21601. name: "Anthro",
  21602. image: {
  21603. source: "./media/characters/rena-dyne/anthro.svg",
  21604. extra: 1849 / 1785,
  21605. bottom: 0.005
  21606. }
  21607. },
  21608. taur: {
  21609. height: math.unit(15 + 6 / 12, "feet"),
  21610. weight: math.unit(8000, "lb"),
  21611. name: "Taur",
  21612. image: {
  21613. source: "./media/characters/rena-dyne/taur.svg",
  21614. extra: 2315 / 2234,
  21615. bottom: 0.033
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(5 + 7 / 12, "feet"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(8, "feet"),
  21632. weight: math.unit(600, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/weremeep/front.svg",
  21636. extra: 967 / 862,
  21637. bottom: 0.01
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(8, "feet"),
  21645. default: true
  21646. },
  21647. {
  21648. name: "Lorg",
  21649. height: math.unit(12, "feet")
  21650. },
  21651. {
  21652. name: "Oh Lawd She Comin'",
  21653. height: math.unit(20, "feet")
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21659. {
  21660. front: {
  21661. height: math.unit(4, "feet"),
  21662. weight: math.unit(90, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/reza/front.svg",
  21666. extra: 1183 / 1111,
  21667. bottom: 0.017
  21668. }
  21669. },
  21670. back: {
  21671. height: math.unit(4, "feet"),
  21672. weight: math.unit(90, "lb"),
  21673. name: "Back",
  21674. image: {
  21675. source: "./media/characters/reza/back.svg",
  21676. extra: 1183 / 1111,
  21677. bottom: 0.01
  21678. }
  21679. },
  21680. drake: {
  21681. height: math.unit(30, "feet"),
  21682. weight: math.unit(246960, "lb"),
  21683. name: "Drake",
  21684. image: {
  21685. source: "./media/characters/reza/drake.svg",
  21686. extra: 2350 / 2024,
  21687. bottom: 60.7 / 2403
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(4, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21701. {
  21702. side: {
  21703. height: math.unit(15, "feet"),
  21704. weight: math.unit(14, "tons"),
  21705. name: "Side",
  21706. image: {
  21707. source: "./media/characters/athea/side.svg",
  21708. extra: 960 / 540,
  21709. bottom: 0.003
  21710. }
  21711. },
  21712. sitting: {
  21713. height: math.unit(6 * 2.85, "feet"),
  21714. weight: math.unit(14, "tons"),
  21715. name: "Sitting",
  21716. image: {
  21717. source: "./media/characters/athea/sitting.svg",
  21718. extra: 621 / 581,
  21719. bottom: 0.075
  21720. }
  21721. },
  21722. maw: {
  21723. height: math.unit(7.59498031496063, "feet"),
  21724. name: "Maw",
  21725. image: {
  21726. source: "./media/characters/athea/maw.svg"
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Lap Cat",
  21733. height: math.unit(2.5, "feet")
  21734. },
  21735. {
  21736. name: "Minimacro",
  21737. height: math.unit(15, "feet"),
  21738. default: true
  21739. },
  21740. {
  21741. name: "Macro",
  21742. height: math.unit(120, "feet")
  21743. },
  21744. {
  21745. name: "Macro+",
  21746. height: math.unit(640, "feet")
  21747. },
  21748. {
  21749. name: "Colossus",
  21750. height: math.unit(2.2, "miles")
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21756. {
  21757. front: {
  21758. height: math.unit(8 + 8 / 12, "feet"),
  21759. weight: math.unit(130, "kg"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/seroko/front.svg",
  21763. extra: 1385 / 1280,
  21764. bottom: 0.025
  21765. }
  21766. },
  21767. back: {
  21768. height: math.unit(8 + 8 / 12, "feet"),
  21769. weight: math.unit(130, "kg"),
  21770. name: "Back",
  21771. image: {
  21772. source: "./media/characters/seroko/back.svg",
  21773. extra: 1369 / 1238,
  21774. bottom: 0.018
  21775. }
  21776. },
  21777. frontDressed: {
  21778. height: math.unit(8 + 8 / 12, "feet"),
  21779. weight: math.unit(130, "kg"),
  21780. name: "Front (Dressed)",
  21781. image: {
  21782. source: "./media/characters/seroko/front-dressed.svg",
  21783. extra: 1366 / 1275,
  21784. bottom: 0.03
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(8 + 8 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(5.5, "feet"),
  21801. weight: math.unit(160, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/quatzi/front.svg",
  21805. extra: 2346 / 2242,
  21806. bottom: 0.015
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(5.5, "feet"),
  21814. default: true
  21815. },
  21816. {
  21817. name: "Big",
  21818. height: math.unit(7.7, "feet")
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 11 / 12, "feet"),
  21827. weight: math.unit(180, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/sen/front.svg",
  21831. extra: 1321 / 1254,
  21832. bottom: 0.015
  21833. }
  21834. },
  21835. side: {
  21836. height: math.unit(5 + 11 / 12, "feet"),
  21837. weight: math.unit(180, "lb"),
  21838. name: "Side",
  21839. image: {
  21840. source: "./media/characters/sen/side.svg",
  21841. extra: 1321 / 1254,
  21842. bottom: 0.007
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(5 + 11 / 12, "feet"),
  21847. weight: math.unit(180, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/sen/back.svg",
  21851. extra: 1321 / 1254
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(5 + 11 / 12, "feet"),
  21859. default: true
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21865. {
  21866. front: {
  21867. height: math.unit(166.6, "cm"),
  21868. weight: math.unit(66.6, "kg"),
  21869. name: "Front",
  21870. image: {
  21871. source: "./media/characters/fruity/front.svg",
  21872. extra: 1510 / 1386,
  21873. bottom: 0.04
  21874. }
  21875. },
  21876. back: {
  21877. height: math.unit(166.6, "cm"),
  21878. weight: math.unit(66.6, "lb"),
  21879. name: "Back",
  21880. image: {
  21881. source: "./media/characters/fruity/back.svg",
  21882. extra: 1563 / 1435,
  21883. bottom: 0.005
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Normal",
  21890. height: math.unit(166.6, "cm"),
  21891. default: true
  21892. },
  21893. {
  21894. name: "Demonic",
  21895. height: math.unit(166.6, "feet")
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21901. {
  21902. side: {
  21903. height: math.unit(10, "feet"),
  21904. weight: math.unit(500, "lb"),
  21905. name: "Side",
  21906. image: {
  21907. source: "./media/characters/zost/side.svg",
  21908. extra: 2870/2533,
  21909. bottom: 252/3122
  21910. }
  21911. },
  21912. mawFront: {
  21913. height: math.unit(1.08, "meters"),
  21914. name: "Maw (Front)",
  21915. image: {
  21916. source: "./media/characters/zost/maw-front.svg"
  21917. }
  21918. },
  21919. mawSide: {
  21920. height: math.unit(2.66, "feet"),
  21921. name: "Maw (Side)",
  21922. image: {
  21923. source: "./media/characters/zost/maw-side.svg"
  21924. }
  21925. },
  21926. wingspan: {
  21927. height: math.unit(7.4, "feet"),
  21928. name: "Wingspan",
  21929. image: {
  21930. source: "./media/characters/zost/wingspan.svg"
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(10, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(5 + 4 / 12, "feet"),
  21947. weight: math.unit(120, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/luci/front.svg",
  21951. extra: 1985 / 1884,
  21952. bottom: 0.04
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(5 + 4 / 12, "feet"),
  21957. weight: math.unit(120, "lb"),
  21958. name: "Back",
  21959. image: {
  21960. source: "./media/characters/luci/back.svg",
  21961. extra: 1892 / 1791,
  21962. bottom: 0.002
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(5 + 4 / 12, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(1500, "feet"),
  21979. weight: math.unit(3.8e6, "tons"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/2th/front.svg",
  21983. extra: 3489 / 3350,
  21984. bottom: 0.1
  21985. }
  21986. },
  21987. foot: {
  21988. height: math.unit(461, "feet"),
  21989. name: "Foot",
  21990. image: {
  21991. source: "./media/characters/2th/foot.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "\"Micro\"",
  21998. height: math.unit(15 + 7 / 12, "feet")
  21999. },
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(1500, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(5000, "feet")
  22008. },
  22009. {
  22010. name: "Megamacro",
  22011. height: math.unit(15, "miles")
  22012. },
  22013. {
  22014. name: "Gigamacro",
  22015. height: math.unit(4000, "miles")
  22016. },
  22017. {
  22018. name: "Galactic",
  22019. height: math.unit(50, "AU")
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(5 + 6 / 12, "feet"),
  22028. weight: math.unit(220, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/amethyst/front.svg",
  22032. extra: 2078 / 2040,
  22033. bottom: 0.045
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(5 + 6 / 12, "feet"),
  22038. weight: math.unit(220, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/amethyst/back.svg",
  22042. extra: 2021 / 1989,
  22043. bottom: 0.02
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(5 + 6 / 12, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22057. {
  22058. front: {
  22059. height: math.unit(4 + 11 / 12, "feet"),
  22060. weight: math.unit(120, "lb"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/yumi-akiyama/front.svg",
  22064. extra: 1327 / 1235,
  22065. bottom: 0.02
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(4 + 11 / 12, "feet"),
  22070. weight: math.unit(120, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/yumi-akiyama/back.svg",
  22074. extra: 1287 / 1245,
  22075. bottom: 0.002
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Galactic",
  22082. height: math.unit(50, "galaxies"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Universal",
  22087. height: math.unit(100, "universes")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(8, "feet"),
  22096. weight: math.unit(500, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/rifter-yrmori/front.svg",
  22100. extra: 1180 / 1125,
  22101. bottom: 0.02
  22102. }
  22103. },
  22104. back: {
  22105. height: math.unit(8, "feet"),
  22106. weight: math.unit(500, "lb"),
  22107. name: "Back",
  22108. image: {
  22109. source: "./media/characters/rifter-yrmori/back.svg",
  22110. extra: 1190 / 1145,
  22111. bottom: 0.001
  22112. }
  22113. },
  22114. wings: {
  22115. height: math.unit(7.75, "feet"),
  22116. weight: math.unit(500, "lb"),
  22117. name: "Wings",
  22118. image: {
  22119. source: "./media/characters/rifter-yrmori/wings.svg",
  22120. extra: 1357 / 1285
  22121. }
  22122. },
  22123. maw: {
  22124. height: math.unit(0.8, "feet"),
  22125. name: "Maw",
  22126. image: {
  22127. source: "./media/characters/rifter-yrmori/maw.svg"
  22128. }
  22129. },
  22130. mawfront: {
  22131. height: math.unit(1.45, "feet"),
  22132. name: "Maw (Front)",
  22133. image: {
  22134. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(8, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Macro",
  22146. height: math.unit(42, "meters")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22152. {
  22153. were: {
  22154. height: math.unit(25 + 6 / 12, "feet"),
  22155. weight: math.unit(10000, "lb"),
  22156. name: "Were",
  22157. image: {
  22158. source: "./media/characters/tahajin/were.svg",
  22159. extra: 801 / 770,
  22160. bottom: 0.042
  22161. }
  22162. },
  22163. aquatic: {
  22164. height: math.unit(6 + 4 / 12, "feet"),
  22165. weight: math.unit(160, "lb"),
  22166. name: "Aquatic",
  22167. image: {
  22168. source: "./media/characters/tahajin/aquatic.svg",
  22169. extra: 572 / 542,
  22170. bottom: 0.04
  22171. }
  22172. },
  22173. chow: {
  22174. height: math.unit(8 + 11 / 12, "feet"),
  22175. weight: math.unit(450, "lb"),
  22176. name: "Chow",
  22177. image: {
  22178. source: "./media/characters/tahajin/chow.svg",
  22179. extra: 660 / 640,
  22180. bottom: 0.015
  22181. }
  22182. },
  22183. demiNaga: {
  22184. height: math.unit(6 + 8 / 12, "feet"),
  22185. weight: math.unit(300, "lb"),
  22186. name: "Demi Naga",
  22187. image: {
  22188. source: "./media/characters/tahajin/demi-naga.svg",
  22189. extra: 643 / 615,
  22190. bottom: 0.1
  22191. }
  22192. },
  22193. data: {
  22194. height: math.unit(5, "inches"),
  22195. weight: math.unit(0.1, "lb"),
  22196. name: "Data",
  22197. image: {
  22198. source: "./media/characters/tahajin/data.svg"
  22199. }
  22200. },
  22201. fluu: {
  22202. height: math.unit(5 + 7 / 12, "feet"),
  22203. weight: math.unit(140, "lb"),
  22204. name: "Fluu",
  22205. image: {
  22206. source: "./media/characters/tahajin/fluu.svg",
  22207. extra: 628 / 592,
  22208. bottom: 0.02
  22209. }
  22210. },
  22211. starWarrior: {
  22212. height: math.unit(4 + 5 / 12, "feet"),
  22213. weight: math.unit(50, "lb"),
  22214. name: "Star Warrior",
  22215. image: {
  22216. source: "./media/characters/tahajin/star-warrior.svg"
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(25 + 6 / 12, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(8, "feet"),
  22233. weight: math.unit(350, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/gabira/front.svg",
  22237. extra: 608 / 580,
  22238. bottom: 0.03
  22239. }
  22240. },
  22241. back: {
  22242. height: math.unit(8, "feet"),
  22243. weight: math.unit(350, "lb"),
  22244. name: "Back",
  22245. image: {
  22246. source: "./media/characters/gabira/back.svg",
  22247. extra: 608 / 580,
  22248. bottom: 0.03
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(8, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(5 + 3 / 12, "feet"),
  22265. weight: math.unit(137, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/sasha-katraine/front.svg",
  22269. extra: 1745/1694,
  22270. bottom: 37/1782
  22271. }
  22272. },
  22273. back: {
  22274. height: math.unit(5 + 3 / 12, "feet"),
  22275. weight: math.unit(137, "lb"),
  22276. name: "Back",
  22277. image: {
  22278. source: "./media/characters/sasha-katraine/back.svg",
  22279. extra: 1776/1699,
  22280. bottom: 26/1802
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Micro",
  22287. height: math.unit(5, "inches")
  22288. },
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(5 + 3 / 12, "feet"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22298. {
  22299. side: {
  22300. height: math.unit(4, "inches"),
  22301. weight: math.unit(200, "grams"),
  22302. name: "Side",
  22303. image: {
  22304. source: "./media/characters/der/side.svg",
  22305. extra: 719 / 400,
  22306. bottom: 30.6 / 749.9187
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Micro",
  22313. height: math.unit(4, "inches"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22320. {
  22321. side: {
  22322. height: math.unit(30, "meters"),
  22323. weight: math.unit(700, "tonnes"),
  22324. name: "Side",
  22325. image: {
  22326. source: "./media/characters/fixerdragon/side.svg",
  22327. extra: (1293.0514 - 116.03) / 1106.86,
  22328. bottom: 116.03 / 1293.0514
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Planck",
  22335. height: math.unit(1.6e-35, "meters")
  22336. },
  22337. {
  22338. name: "Micro",
  22339. height: math.unit(0.4, "meters")
  22340. },
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(30, "meters"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Megamacro",
  22348. height: math.unit(1.2, "megameters")
  22349. },
  22350. {
  22351. name: "Teramacro",
  22352. height: math.unit(130, "terameters")
  22353. },
  22354. {
  22355. name: "Yottamacro",
  22356. height: math.unit(6200, "yottameters")
  22357. },
  22358. ]
  22359. ));
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(8, "feet"),
  22365. weight: math.unit(250, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/kite/front.svg",
  22369. extra: 2796 / 2659,
  22370. bottom: 0.002
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(8, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(360, "feet")
  22383. },
  22384. {
  22385. name: "Megamacro",
  22386. height: math.unit(1500, "feet")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(5 + 11/12, "feet"),
  22395. weight: math.unit(170, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/poojawa-vynar/front.svg",
  22399. extra: 1735/1585,
  22400. bottom: 96/1831
  22401. }
  22402. },
  22403. back: {
  22404. height: math.unit(5 + 11/12, "feet"),
  22405. weight: math.unit(170, "lb"),
  22406. name: "Back",
  22407. image: {
  22408. source: "./media/characters/poojawa-vynar/back.svg",
  22409. extra: 1749/1607,
  22410. bottom: 28/1777
  22411. }
  22412. },
  22413. male: {
  22414. height: math.unit(5 + 11/12, "feet"),
  22415. weight: math.unit(170, "lb"),
  22416. name: "Male",
  22417. image: {
  22418. source: "./media/characters/poojawa-vynar/male.svg",
  22419. extra: 1855/1713,
  22420. bottom: 63/1918
  22421. }
  22422. },
  22423. taur: {
  22424. height: math.unit(5 + 11/12, "feet"),
  22425. weight: math.unit(170, "lb"),
  22426. name: "Taur",
  22427. image: {
  22428. source: "./media/characters/poojawa-vynar/taur.svg",
  22429. extra: 1151/1059,
  22430. bottom: 356/1507
  22431. }
  22432. },
  22433. frontDressed: {
  22434. height: math.unit(5 + 11/12, "feet"),
  22435. weight: math.unit(170, "lb"),
  22436. name: "Front (Dressed)",
  22437. image: {
  22438. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22439. extra: 1735/1585,
  22440. bottom: 96/1831
  22441. }
  22442. },
  22443. backDressed: {
  22444. height: math.unit(5 + 11/12, "feet"),
  22445. weight: math.unit(170, "lb"),
  22446. name: "Back (Dressed)",
  22447. image: {
  22448. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22449. extra: 1749/1607,
  22450. bottom: 28/1777
  22451. }
  22452. },
  22453. maleDressed: {
  22454. height: math.unit(5 + 11/12, "feet"),
  22455. weight: math.unit(170, "lb"),
  22456. name: "Male (Dressed)",
  22457. image: {
  22458. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22459. extra: 1855/1713,
  22460. bottom: 63/1918
  22461. }
  22462. },
  22463. taurDressed: {
  22464. height: math.unit(5 + 11/12, "feet"),
  22465. weight: math.unit(170, "lb"),
  22466. name: "Taur (Dressed)",
  22467. image: {
  22468. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22469. extra: 1151/1059,
  22470. bottom: 356/1507
  22471. }
  22472. },
  22473. maw: {
  22474. height: math.unit(1.46, "feet"),
  22475. name: "Maw",
  22476. image: {
  22477. source: "./media/characters/poojawa-vynar/maw.svg"
  22478. }
  22479. },
  22480. head: {
  22481. height: math.unit(2.34, "feet"),
  22482. name: "Head",
  22483. image: {
  22484. source: "./media/characters/poojawa-vynar/head.svg"
  22485. }
  22486. },
  22487. paw: {
  22488. height: math.unit(1.61, "feet"),
  22489. name: "Paw",
  22490. image: {
  22491. source: "./media/characters/poojawa-vynar/paw.svg"
  22492. }
  22493. },
  22494. pawToering: {
  22495. height: math.unit(1.72, "feet"),
  22496. name: "Paw (Toering)",
  22497. image: {
  22498. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22499. }
  22500. },
  22501. toering: {
  22502. height: math.unit(2.9, "inches"),
  22503. name: "Toering",
  22504. image: {
  22505. source: "./media/characters/poojawa-vynar/toering.svg"
  22506. }
  22507. },
  22508. shaft: {
  22509. height: math.unit(0.625, "feet"),
  22510. name: "Shaft",
  22511. image: {
  22512. source: "./media/characters/poojawa-vynar/shaft.svg"
  22513. }
  22514. },
  22515. spade: {
  22516. height: math.unit(0.42, "feet"),
  22517. name: "Spade",
  22518. image: {
  22519. source: "./media/characters/poojawa-vynar/spade.svg"
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Shortstack",
  22526. height: math.unit(4, "feet")
  22527. },
  22528. {
  22529. name: "Normal",
  22530. height: math.unit(5 + 11 / 12, "feet"),
  22531. default: true
  22532. },
  22533. {
  22534. name: "Tauric",
  22535. height: math.unit(4, "meters")
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(293, "meters"),
  22544. weight: math.unit(70400, "tons"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/violette/front.svg",
  22548. extra: 1227 / 1180,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(293, "meters"),
  22554. weight: math.unit(70400, "tons"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/violette/back.svg",
  22558. extra: 1227 / 1180,
  22559. bottom: 0.005
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(293, "meters"),
  22567. default: true
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(1050, "feet"),
  22576. weight: math.unit(200000, "tons"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/alessandra/front.svg",
  22580. extra: 960 / 912,
  22581. bottom: 0.06
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(1050, "feet")
  22589. },
  22590. {
  22591. name: "Macro+",
  22592. height: math.unit(900, "meters"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(5, "feet"),
  22602. weight: math.unit(187, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/person/front.svg",
  22606. extra: 3087 / 2945,
  22607. bottom: 91 / 3181
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Micro",
  22614. height: math.unit(3, "inches")
  22615. },
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(90, "feet")
  22624. },
  22625. {
  22626. name: "Max Size",
  22627. height: math.unit(280, "feet")
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22633. {
  22634. front: {
  22635. height: math.unit(4.5, "meters"),
  22636. weight: math.unit(3200, "lb"),
  22637. name: "Front",
  22638. image: {
  22639. source: "./media/characters/ty/front.svg",
  22640. extra: 1038 / 960,
  22641. bottom: 31.156 / 1068
  22642. }
  22643. },
  22644. back: {
  22645. height: math.unit(4.5, "meters"),
  22646. weight: math.unit(3200, "lb"),
  22647. name: "Back",
  22648. image: {
  22649. source: "./media/characters/ty/back.svg",
  22650. extra: 1044 / 966,
  22651. bottom: 7.48 / 1049
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(4.5, "meters"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(5 + 4 / 12, "feet"),
  22668. weight: math.unit(115, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/rocky/front.svg",
  22672. extra: 1012 / 975,
  22673. bottom: 54 / 1066
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(5 + 4 / 12, "feet"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22687. {
  22688. upright: {
  22689. height: math.unit(6, "meters"),
  22690. weight: math.unit(4000, "kg"),
  22691. name: "Upright",
  22692. image: {
  22693. source: "./media/characters/ruin/upright.svg",
  22694. extra: 668 / 661,
  22695. bottom: 42 / 799.8396
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(6, "meters"),
  22703. default: true
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(5, "feet"),
  22712. weight: math.unit(106, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/robin/front.svg",
  22716. extra: 862 / 799,
  22717. bottom: 42.4 / 914.8856
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(5, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22731. {
  22732. side: {
  22733. height: math.unit(3, "feet"),
  22734. weight: math.unit(225, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/saian/side.svg",
  22738. extra: 566 / 356,
  22739. bottom: 79.7 / 643
  22740. }
  22741. },
  22742. maw: {
  22743. height: math.unit(2.85, "feet"),
  22744. name: "Maw",
  22745. image: {
  22746. source: "./media/characters/saian/maw.svg"
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(3, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22760. {
  22761. side: {
  22762. height: math.unit(8, "feet"),
  22763. weight: math.unit(300, "lb"),
  22764. name: "Side",
  22765. image: {
  22766. source: "./media/characters/equus-silvermane/side.svg",
  22767. extra: 2176 / 2050,
  22768. bottom: 65.7 / 2245
  22769. }
  22770. },
  22771. front: {
  22772. height: math.unit(8, "feet"),
  22773. weight: math.unit(300, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/equus-silvermane/front.svg",
  22777. extra: 4633 / 4400,
  22778. bottom: 71.3 / 4706.915
  22779. }
  22780. },
  22781. sideStepping: {
  22782. height: math.unit(8, "feet"),
  22783. weight: math.unit(300, "lb"),
  22784. name: "Side (Stepping)",
  22785. image: {
  22786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22787. extra: 1968 / 1860,
  22788. bottom: 16.4 / 1989
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(8, "feet")
  22796. },
  22797. {
  22798. name: "Minimacro",
  22799. height: math.unit(75, "feet"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(150, "feet")
  22805. },
  22806. {
  22807. name: "Macro+",
  22808. height: math.unit(1000, "feet")
  22809. },
  22810. {
  22811. name: "Megamacro",
  22812. height: math.unit(1, "mile")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22818. {
  22819. side: {
  22820. height: math.unit(20, "feet"),
  22821. weight: math.unit(30000, "kg"),
  22822. name: "Side",
  22823. image: {
  22824. source: "./media/characters/windar/side.svg",
  22825. extra: 1491 / 1248,
  22826. bottom: 82.56 / 1568
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(20, "feet"),
  22834. default: true
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22840. {
  22841. side: {
  22842. height: math.unit(15.66, "feet"),
  22843. weight: math.unit(150, "lb"),
  22844. name: "Side",
  22845. image: {
  22846. source: "./media/characters/melody/side.svg",
  22847. extra: 1097 / 944,
  22848. bottom: 11.8 / 1109
  22849. }
  22850. },
  22851. sideOutfit: {
  22852. height: math.unit(15.66, "feet"),
  22853. weight: math.unit(150, "lb"),
  22854. name: "Side (Outfit)",
  22855. image: {
  22856. source: "./media/characters/melody/side-outfit.svg",
  22857. extra: 1097 / 944,
  22858. bottom: 11.8 / 1109
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(15.66, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(8, "feet"),
  22875. weight: math.unit(325, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/windera/front.svg",
  22879. extra: 3180 / 2845,
  22880. bottom: 178 / 3365
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(8, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22894. {
  22895. front: {
  22896. height: math.unit(28.75, "feet"),
  22897. weight: math.unit(2000, "kg"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/sonear/front.svg",
  22901. extra: 1041.1 / 964.9,
  22902. bottom: 53.7 / 1096.6
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(28.75, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22916. {
  22917. side: {
  22918. height: math.unit(25.5, "feet"),
  22919. weight: math.unit(23000, "kg"),
  22920. name: "Side",
  22921. image: {
  22922. source: "./media/characters/kanara/side.svg"
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(25.5, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22936. {
  22937. side: {
  22938. height: math.unit(10, "feet"),
  22939. weight: math.unit(1000, "kg"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/ereus/side.svg",
  22943. extra: 1157 / 959,
  22944. bottom: 153 / 1312.5
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Normal",
  22951. height: math.unit(10, "feet"),
  22952. default: true
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22958. {
  22959. side: {
  22960. height: math.unit(4.5, "feet"),
  22961. weight: math.unit(500, "lb"),
  22962. name: "Side",
  22963. image: {
  22964. source: "./media/characters/e-ter/side.svg",
  22965. extra: 1550 / 1248,
  22966. bottom: 146 / 1694
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Normal",
  22973. height: math.unit(4.5, "feet"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22980. {
  22981. side: {
  22982. height: math.unit(9.7, "feet"),
  22983. weight: math.unit(4000, "kg"),
  22984. name: "Side",
  22985. image: {
  22986. source: "./media/characters/yamie/side.svg"
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(9.7, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(50, "feet"),
  23003. weight: math.unit(50000, "kg"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/anders/front.svg",
  23007. extra: 570 / 539,
  23008. bottom: 14.7 / 586.7
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Large",
  23015. height: math.unit(50, "feet")
  23016. },
  23017. {
  23018. name: "Macro",
  23019. height: math.unit(2000, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Megamacro",
  23024. height: math.unit(12, "miles")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(7 + 2 / 12, "feet"),
  23033. weight: math.unit(300, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/reban/front.svg",
  23037. extra: 1287/1212,
  23038. bottom: 148/1435
  23039. }
  23040. },
  23041. head: {
  23042. height: math.unit(1.95, "feet"),
  23043. name: "Head",
  23044. image: {
  23045. source: "./media/characters/reban/head.svg"
  23046. }
  23047. },
  23048. maw: {
  23049. height: math.unit(0.95, "feet"),
  23050. name: "Maw",
  23051. image: {
  23052. source: "./media/characters/reban/maw.svg"
  23053. }
  23054. },
  23055. foot: {
  23056. height: math.unit(1.65, "feet"),
  23057. name: "Foot",
  23058. image: {
  23059. source: "./media/characters/reban/foot.svg"
  23060. }
  23061. },
  23062. dick: {
  23063. height: math.unit(7 / 5, "feet"),
  23064. name: "Dick",
  23065. image: {
  23066. source: "./media/characters/reban/dick.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Natural Height",
  23073. height: math.unit(7 + 2 / 12, "feet")
  23074. },
  23075. {
  23076. name: "Macro",
  23077. height: math.unit(500, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Canon Height",
  23082. height: math.unit(50, "AU")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(6, "feet"),
  23091. weight: math.unit(150, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/terrance-keayes/front.svg",
  23095. extra: 1.005,
  23096. bottom: 151 / 1615
  23097. }
  23098. },
  23099. side: {
  23100. height: math.unit(6, "feet"),
  23101. weight: math.unit(150, "lb"),
  23102. name: "Side",
  23103. image: {
  23104. source: "./media/characters/terrance-keayes/side.svg",
  23105. extra: 1.005,
  23106. bottom: 129.4 / 1544
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/terrance-keayes/back.svg",
  23115. extra: 1.005,
  23116. bottom: 58.4 / 1557.3
  23117. }
  23118. },
  23119. dick: {
  23120. height: math.unit(6 * 0.208, "feet"),
  23121. name: "Dick",
  23122. image: {
  23123. source: "./media/characters/terrance-keayes/dick.svg"
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Canon Height",
  23130. height: math.unit(35, "miles"),
  23131. default: true
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23137. {
  23138. front: {
  23139. height: math.unit(6, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Front",
  23142. image: {
  23143. source: "./media/characters/ofelia/front.svg",
  23144. extra: 1130/1117,
  23145. bottom: 91/1221
  23146. }
  23147. },
  23148. back: {
  23149. height: math.unit(6, "feet"),
  23150. weight: math.unit(150, "lb"),
  23151. name: "Back",
  23152. image: {
  23153. source: "./media/characters/ofelia/back.svg",
  23154. extra: 1172/1159,
  23155. bottom: 28/1200
  23156. }
  23157. },
  23158. maw: {
  23159. height: math.unit(1, "feet"),
  23160. name: "Maw",
  23161. image: {
  23162. source: "./media/characters/ofelia/maw.svg"
  23163. }
  23164. },
  23165. foot: {
  23166. height: math.unit(1.949, "feet"),
  23167. name: "Foot",
  23168. image: {
  23169. source: "./media/characters/ofelia/foot.svg"
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Canon Height",
  23176. height: math.unit(2000, "miles"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/samuel/front.svg",
  23190. extra: 265 / 258,
  23191. bottom: 2 / 266.1566
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(100, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Full Size",
  23203. height: math.unit(1000, "miles")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(6, "feet"),
  23212. weight: math.unit(300, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/beishir-kiel/front.svg",
  23216. extra: 569 / 547,
  23217. bottom: 41.9 / 609
  23218. }
  23219. },
  23220. maw: {
  23221. height: math.unit(6 * 0.202, "feet"),
  23222. name: "Maw",
  23223. image: {
  23224. source: "./media/characters/beishir-kiel/maw.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(300, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(5 + 7/12, "feet"),
  23241. weight: math.unit(120, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/logan-grey/front.svg",
  23245. extra: 1836/1738,
  23246. bottom: 108/1944
  23247. }
  23248. },
  23249. back: {
  23250. height: math.unit(5 + 7/12, "feet"),
  23251. weight: math.unit(120, "lb"),
  23252. name: "Back",
  23253. image: {
  23254. source: "./media/characters/logan-grey/back.svg",
  23255. extra: 1880/1794,
  23256. bottom: 24/1904
  23257. }
  23258. },
  23259. frontSfw: {
  23260. height: math.unit(5 + 7/12, "feet"),
  23261. weight: math.unit(120, "lb"),
  23262. name: "Front (SFW)",
  23263. image: {
  23264. source: "./media/characters/logan-grey/front-sfw.svg",
  23265. extra: 1836/1738,
  23266. bottom: 108/1944
  23267. }
  23268. },
  23269. backSfw: {
  23270. height: math.unit(5 + 7/12, "feet"),
  23271. weight: math.unit(120, "lb"),
  23272. name: "Back (SFW)",
  23273. image: {
  23274. source: "./media/characters/logan-grey/back-sfw.svg",
  23275. extra: 1880/1794,
  23276. bottom: 24/1904
  23277. }
  23278. },
  23279. hands: {
  23280. height: math.unit(0.84, "feet"),
  23281. name: "Hands",
  23282. image: {
  23283. source: "./media/characters/logan-grey/hands.svg"
  23284. }
  23285. },
  23286. paws: {
  23287. height: math.unit(0.72, "feet"),
  23288. name: "Paws",
  23289. image: {
  23290. source: "./media/characters/logan-grey/paws.svg"
  23291. }
  23292. },
  23293. cock: {
  23294. height: math.unit(1.45, "feet"),
  23295. name: "Cock",
  23296. image: {
  23297. source: "./media/characters/logan-grey/cock.svg"
  23298. }
  23299. },
  23300. cockAlt: {
  23301. height: math.unit(1.437, "feet"),
  23302. name: "Cock (alt)",
  23303. image: {
  23304. source: "./media/characters/logan-grey/cock-alt.svg"
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Normal",
  23311. height: math.unit(5 + 8 / 12, "feet")
  23312. },
  23313. {
  23314. name: "The 500 Foot Femboy",
  23315. height: math.unit(500, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Megmacro",
  23320. height: math.unit(20, "miles")
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(8 + 2 / 12, "feet"),
  23329. weight: math.unit(275, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/draganta/front.svg",
  23333. extra: 1177 / 1135,
  23334. bottom: 33.46 / 1212.1
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(8 + 6 / 12, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(150, "feet")
  23347. },
  23348. {
  23349. name: "Megamacro",
  23350. height: math.unit(1000, "miles")
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(1.72, "m"),
  23359. weight: math.unit(80, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/voski/front.svg",
  23363. extra: 2076.22 / 2022.4,
  23364. bottom: 102.7 / 2177.3866
  23365. }
  23366. },
  23367. frontFlaccid: {
  23368. height: math.unit(1.72, "m"),
  23369. weight: math.unit(80, "lb"),
  23370. name: "Front (Flaccid)",
  23371. image: {
  23372. source: "./media/characters/voski/front-flaccid.svg",
  23373. extra: 2076.22 / 2022.4,
  23374. bottom: 102.7 / 2177.3866
  23375. }
  23376. },
  23377. frontErect: {
  23378. height: math.unit(1.72, "m"),
  23379. weight: math.unit(80, "lb"),
  23380. name: "Front (Erect)",
  23381. image: {
  23382. source: "./media/characters/voski/front-erect.svg",
  23383. extra: 2076.22 / 2022.4,
  23384. bottom: 102.7 / 2177.3866
  23385. }
  23386. },
  23387. back: {
  23388. height: math.unit(1.72, "m"),
  23389. weight: math.unit(80, "lb"),
  23390. name: "Back",
  23391. image: {
  23392. source: "./media/characters/voski/back.svg",
  23393. extra: 2104 / 2051,
  23394. bottom: 10.45 / 2113.63
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(1.72, "m")
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(55, "m"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Macro+",
  23410. height: math.unit(300, "m")
  23411. },
  23412. {
  23413. name: "Macro++",
  23414. height: math.unit(700, "m")
  23415. },
  23416. {
  23417. name: "Macro+++",
  23418. height: math.unit(4500, "m")
  23419. },
  23420. {
  23421. name: "Macro++++",
  23422. height: math.unit(45, "km")
  23423. },
  23424. {
  23425. name: "Macro+++++",
  23426. height: math.unit(1220, "km")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(2.3, "m"),
  23435. weight: math.unit(304, "kg"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/icowom-lee/front.svg",
  23439. extra: 985 / 955,
  23440. bottom: 25.4 / 1012
  23441. }
  23442. },
  23443. fronttentacles: {
  23444. height: math.unit(2.3, "m"),
  23445. weight: math.unit(304, "kg"),
  23446. name: "Front-tentacles",
  23447. image: {
  23448. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23449. extra: 985 / 955,
  23450. bottom: 25.4 / 1012
  23451. }
  23452. },
  23453. back: {
  23454. height: math.unit(2.3, "m"),
  23455. weight: math.unit(304, "kg"),
  23456. name: "Back",
  23457. image: {
  23458. source: "./media/characters/icowom-lee/back.svg",
  23459. extra: 975 / 954,
  23460. bottom: 9.5 / 985
  23461. }
  23462. },
  23463. backtentacles: {
  23464. height: math.unit(2.3, "m"),
  23465. weight: math.unit(304, "kg"),
  23466. name: "Back-tentacles",
  23467. image: {
  23468. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23469. extra: 975 / 954,
  23470. bottom: 9.5 / 985
  23471. }
  23472. },
  23473. frontDressed: {
  23474. height: math.unit(2.3, "m"),
  23475. weight: math.unit(304, "kg"),
  23476. name: "Front (Dressed)",
  23477. image: {
  23478. source: "./media/characters/icowom-lee/front-dressed.svg",
  23479. extra: 3076 / 2933,
  23480. bottom: 51.4 / 3125.1889
  23481. }
  23482. },
  23483. rump: {
  23484. height: math.unit(0.776, "meters"),
  23485. name: "Rump",
  23486. image: {
  23487. source: "./media/characters/icowom-lee/rump.svg"
  23488. }
  23489. },
  23490. genitals: {
  23491. height: math.unit(0.78, "meters"),
  23492. name: "Genitals",
  23493. image: {
  23494. source: "./media/characters/icowom-lee/genitals.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(2.3, "meters"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(94, "meters"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(22, "meters"),
  23516. weight: math.unit(21000, "kg"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/shock-diamond/front.svg",
  23520. extra: 2204 / 2053,
  23521. bottom: 65 / 2239.47
  23522. }
  23523. },
  23524. frontNude: {
  23525. height: math.unit(22, "meters"),
  23526. weight: math.unit(21000, "kg"),
  23527. name: "Front (Nude)",
  23528. image: {
  23529. source: "./media/characters/shock-diamond/front-nude.svg",
  23530. extra: 2514 / 2285,
  23531. bottom: 13 / 2527.56
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(3, "meters")
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(22, "meters"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(5 + 4 / 12, "feet"),
  23552. weight: math.unit(120, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/rory/front.svg",
  23556. extra: 1318/1241,
  23557. bottom: 42/1360
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(5 + 4 / 12, "feet"),
  23562. weight: math.unit(120, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/rory/back.svg",
  23566. extra: 1318/1241,
  23567. bottom: 42/1360
  23568. }
  23569. },
  23570. butt: {
  23571. height: math.unit(1.74, "feet"),
  23572. name: "Butt",
  23573. image: {
  23574. source: "./media/characters/rory/butt.svg"
  23575. }
  23576. },
  23577. dick: {
  23578. height: math.unit(1.02, "feet"),
  23579. name: "Dick",
  23580. image: {
  23581. source: "./media/characters/rory/dick.svg"
  23582. }
  23583. },
  23584. paws: {
  23585. height: math.unit(1, "feet"),
  23586. name: "Paws",
  23587. image: {
  23588. source: "./media/characters/rory/paws.svg"
  23589. }
  23590. },
  23591. frontAlt: {
  23592. height: math.unit(5 + 4 / 12, "feet"),
  23593. weight: math.unit(120, "lb"),
  23594. name: "Front (Alt)",
  23595. image: {
  23596. source: "./media/characters/rory/front-alt.svg",
  23597. extra: 589 / 556,
  23598. bottom: 45.7 / 635.76
  23599. }
  23600. },
  23601. frontAltNude: {
  23602. height: math.unit(5 + 4 / 12, "feet"),
  23603. weight: math.unit(120, "lb"),
  23604. name: "Front (Alt, Nude)",
  23605. image: {
  23606. source: "./media/characters/rory/front-alt-nude.svg",
  23607. extra: 589 / 556,
  23608. bottom: 45.7 / 635.76
  23609. }
  23610. },
  23611. side: {
  23612. height: math.unit(5 + 4 / 12, "feet"),
  23613. weight: math.unit(120, "lb"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/rory/side.svg",
  23617. extra: 597 / 564,
  23618. bottom: 55 / 653
  23619. }
  23620. },
  23621. backAlt: {
  23622. height: math.unit(5 + 4 / 12, "feet"),
  23623. weight: math.unit(120, "lb"),
  23624. name: "Back (Alt)",
  23625. image: {
  23626. source: "./media/characters/rory/back-alt.svg",
  23627. extra: 620 / 585,
  23628. bottom: 8.86 / 630.43
  23629. }
  23630. },
  23631. dickAlt: {
  23632. height: math.unit(0.86, "feet"),
  23633. name: "Dick (Alt)",
  23634. image: {
  23635. source: "./media/characters/rory/dick-alt.svg"
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 4 / 12, "feet"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(100, "feet")
  23648. },
  23649. {
  23650. name: "Macro+",
  23651. height: math.unit(140, "feet")
  23652. },
  23653. {
  23654. name: "Macro++",
  23655. height: math.unit(300, "feet")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(5 + 9 / 12, "feet"),
  23664. weight: math.unit(190, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/sprisk/front.svg",
  23668. extra: 1225 / 1180,
  23669. bottom: 42.7 / 1266.4
  23670. }
  23671. },
  23672. frontNsfw: {
  23673. height: math.unit(5 + 9 / 12, "feet"),
  23674. weight: math.unit(190, "lb"),
  23675. name: "Front (NSFW)",
  23676. image: {
  23677. source: "./media/characters/sprisk/front-nsfw.svg",
  23678. extra: 1225 / 1180,
  23679. bottom: 42.7 / 1266.4
  23680. }
  23681. },
  23682. back: {
  23683. height: math.unit(5 + 9 / 12, "feet"),
  23684. weight: math.unit(190, "lb"),
  23685. name: "Back",
  23686. image: {
  23687. source: "./media/characters/sprisk/back.svg",
  23688. extra: 1247 / 1200,
  23689. bottom: 5.6 / 1253.04
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Tiny",
  23696. height: math.unit(2, "inches")
  23697. },
  23698. {
  23699. name: "Normal",
  23700. height: math.unit(5 + 9 / 12, "feet"),
  23701. default: true
  23702. },
  23703. {
  23704. name: "Mini Macro",
  23705. height: math.unit(18, "feet")
  23706. },
  23707. {
  23708. name: "Macro",
  23709. height: math.unit(100, "feet")
  23710. },
  23711. {
  23712. name: "MACRO",
  23713. height: math.unit(50, "miles")
  23714. },
  23715. {
  23716. name: "M A C R O",
  23717. height: math.unit(300, "miles")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23723. {
  23724. side: {
  23725. height: math.unit(15.6, "meters"),
  23726. weight: math.unit(700000, "kg"),
  23727. name: "Side",
  23728. image: {
  23729. source: "./media/characters/bunsen/side.svg",
  23730. extra: 1644 / 358
  23731. }
  23732. },
  23733. foot: {
  23734. height: math.unit(1.611 * 1644 / 358, "meter"),
  23735. name: "Foot",
  23736. image: {
  23737. source: "./media/characters/bunsen/foot.svg"
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Small",
  23744. height: math.unit(10, "feet")
  23745. },
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(15.6, "meters"),
  23749. default: true
  23750. },
  23751. ]
  23752. ))
  23753. characterMakers.push(() => makeCharacter(
  23754. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23755. {
  23756. front: {
  23757. height: math.unit(4 + 11 / 12, "feet"),
  23758. weight: math.unit(140, "lb"),
  23759. name: "Front",
  23760. image: {
  23761. source: "./media/characters/sesh/front.svg",
  23762. extra: 3420 / 3231,
  23763. bottom: 72 / 3949.5
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(4 + 11 / 12, "feet")
  23771. },
  23772. {
  23773. name: "Grown",
  23774. height: math.unit(15, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(1500, "feet")
  23780. },
  23781. {
  23782. name: "Megamacro",
  23783. height: math.unit(30, "miles")
  23784. },
  23785. {
  23786. name: "Continental",
  23787. height: math.unit(3000, "miles")
  23788. },
  23789. {
  23790. name: "Gravity Mass",
  23791. height: math.unit(300000, "miles")
  23792. },
  23793. {
  23794. name: "Planet Buster",
  23795. height: math.unit(30000000, "miles")
  23796. },
  23797. {
  23798. name: "Big",
  23799. height: math.unit(3000000000, "miles")
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(9, "feet"),
  23808. weight: math.unit(350, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/pepper/front.svg",
  23812. extra: 1448 / 1312,
  23813. bottom: 9.4 / 1457.88
  23814. }
  23815. },
  23816. back: {
  23817. height: math.unit(9, "feet"),
  23818. weight: math.unit(350, "lb"),
  23819. name: "Back",
  23820. image: {
  23821. source: "./media/characters/pepper/back.svg",
  23822. extra: 1423 / 1300,
  23823. bottom: 4.6 / 1429
  23824. }
  23825. },
  23826. maw: {
  23827. height: math.unit(0.932, "feet"),
  23828. name: "Maw",
  23829. image: {
  23830. source: "./media/characters/pepper/maw.svg"
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(9, "feet"),
  23838. default: true
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(6, "feet"),
  23847. weight: math.unit(150, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/maelstrom/front.svg",
  23851. extra: 2100 / 1883,
  23852. bottom: 94 / 2196.7
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Less Kaiju",
  23859. height: math.unit(200, "feet")
  23860. },
  23861. {
  23862. name: "Kaiju",
  23863. height: math.unit(400, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Kaiju-er",
  23868. height: math.unit(600, "feet")
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(6 + 5 / 12, "feet"),
  23877. weight: math.unit(180, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/lexir/front.svg",
  23881. extra: 180 / 172,
  23882. bottom: 12 / 192
  23883. }
  23884. },
  23885. back: {
  23886. height: math.unit(6 + 5 / 12, "feet"),
  23887. weight: math.unit(180, "lb"),
  23888. name: "Back",
  23889. image: {
  23890. source: "./media/characters/lexir/back.svg",
  23891. extra: 1273/1201,
  23892. bottom: 39/1312
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Very Smal",
  23899. height: math.unit(1, "nm")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(6 + 5 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(1, "mile")
  23909. },
  23910. {
  23911. name: "Megamacro",
  23912. height: math.unit(50, "miles")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(1.5, "meters"),
  23921. weight: math.unit(100, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/maksio/front.svg",
  23925. extra: 1549 / 1531,
  23926. bottom: 123.7 / 1674.5429
  23927. }
  23928. },
  23929. back: {
  23930. height: math.unit(1.5, "meters"),
  23931. weight: math.unit(100, "lb"),
  23932. name: "Back",
  23933. image: {
  23934. source: "./media/characters/maksio/back.svg",
  23935. extra: 1541 / 1509,
  23936. bottom: 97 / 1639
  23937. }
  23938. },
  23939. hand: {
  23940. height: math.unit(0.621, "feet"),
  23941. name: "Hand",
  23942. image: {
  23943. source: "./media/characters/maksio/hand.svg"
  23944. }
  23945. },
  23946. foot: {
  23947. height: math.unit(1.611, "feet"),
  23948. name: "Foot",
  23949. image: {
  23950. source: "./media/characters/maksio/foot.svg"
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Shrunken",
  23957. height: math.unit(10, "cm")
  23958. },
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(150, "cm"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(100, "feet"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/erza-bear/front.svg",
  23974. extra: 2449 / 2390,
  23975. bottom: 46 / 2494
  23976. }
  23977. },
  23978. back: {
  23979. height: math.unit(100, "feet"),
  23980. name: "Back",
  23981. image: {
  23982. source: "./media/characters/erza-bear/back.svg",
  23983. extra: 2489 / 2430,
  23984. bottom: 85.4 / 2480
  23985. }
  23986. },
  23987. tail: {
  23988. height: math.unit(42, "feet"),
  23989. name: "Tail",
  23990. image: {
  23991. source: "./media/characters/erza-bear/tail.svg"
  23992. }
  23993. },
  23994. tongue: {
  23995. height: math.unit(8, "feet"),
  23996. name: "Tongue",
  23997. image: {
  23998. source: "./media/characters/erza-bear/tongue.svg"
  23999. }
  24000. },
  24001. dick: {
  24002. height: math.unit(10.5, "feet"),
  24003. name: "Dick",
  24004. image: {
  24005. source: "./media/characters/erza-bear/dick.svg"
  24006. }
  24007. },
  24008. dickVertical: {
  24009. height: math.unit(16.9, "feet"),
  24010. name: "Dick (Vertical)",
  24011. image: {
  24012. source: "./media/characters/erza-bear/dick-vertical.svg"
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Macro",
  24019. height: math.unit(100, "feet"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(172, "cm"),
  24029. weight: math.unit(73, "kg"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/violet-flor/front.svg",
  24033. extra: 1530 / 1442,
  24034. bottom: 61.9 / 1588.8
  24035. }
  24036. },
  24037. back: {
  24038. height: math.unit(180, "cm"),
  24039. weight: math.unit(73, "kg"),
  24040. name: "Back",
  24041. image: {
  24042. source: "./media/characters/violet-flor/back.svg",
  24043. extra: 1692 / 1630,
  24044. bottom: 20 / 1712
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(172, "cm"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(6, "feet"),
  24061. weight: math.unit(220, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/lynn-rhea/front.svg",
  24065. extra: 310 / 273
  24066. }
  24067. },
  24068. back: {
  24069. height: math.unit(6, "feet"),
  24070. weight: math.unit(220, "lb"),
  24071. name: "Back",
  24072. image: {
  24073. source: "./media/characters/lynn-rhea/back.svg",
  24074. extra: 310 / 273
  24075. }
  24076. },
  24077. dicks: {
  24078. height: math.unit(0.9, "feet"),
  24079. name: "Dicks",
  24080. image: {
  24081. source: "./media/characters/lynn-rhea/dicks.svg"
  24082. }
  24083. },
  24084. slit: {
  24085. height: math.unit(0.4, "feet"),
  24086. name: "Slit",
  24087. image: {
  24088. source: "./media/characters/lynn-rhea/slit.svg"
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Micro",
  24095. height: math.unit(1, "inch")
  24096. },
  24097. {
  24098. name: "Macro",
  24099. height: math.unit(60, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Megamacro",
  24104. height: math.unit(2, "miles")
  24105. },
  24106. {
  24107. name: "Gigamacro",
  24108. height: math.unit(3, "earths")
  24109. },
  24110. {
  24111. name: "Galactic",
  24112. height: math.unit(0.8, "galaxies")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24118. {
  24119. front: {
  24120. height: math.unit(1600, "feet"),
  24121. weight: math.unit(85758785169, "kg"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/valathos/front.svg",
  24125. extra: 1451 / 1339
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(1600, "feet"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(7 + 5 / 12, "feet"),
  24142. weight: math.unit(300, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/azula/front.svg",
  24146. extra: 3208 / 2880,
  24147. bottom: 80.2 / 3277
  24148. }
  24149. },
  24150. back: {
  24151. height: math.unit(7 + 5 / 12, "feet"),
  24152. weight: math.unit(300, "lb"),
  24153. name: "Back",
  24154. image: {
  24155. source: "./media/characters/azula/back.svg",
  24156. extra: 3169 / 2822,
  24157. bottom: 150.6 / 3321
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(7 + 5 / 12, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Big",
  24169. height: math.unit(20, "feet")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(5 + 1 / 12, "feet"),
  24178. weight: math.unit(110, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/rupert/front.svg",
  24182. extra: 1549 / 1495,
  24183. bottom: 54.2 / 1604.4
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(5 + 1 / 12, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24197. {
  24198. front: {
  24199. height: math.unit(8 + 4 / 12, "feet"),
  24200. weight: math.unit(350, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/sheera-castellar/front.svg",
  24204. extra: 1957 / 1894,
  24205. bottom: 26.97 / 1975.017
  24206. }
  24207. },
  24208. side: {
  24209. height: math.unit(8 + 4 / 12, "feet"),
  24210. weight: math.unit(350, "lb"),
  24211. name: "Side",
  24212. image: {
  24213. source: "./media/characters/sheera-castellar/side.svg",
  24214. extra: 1957 / 1894
  24215. }
  24216. },
  24217. back: {
  24218. height: math.unit(8 + 4 / 12, "feet"),
  24219. weight: math.unit(350, "lb"),
  24220. name: "Back",
  24221. image: {
  24222. source: "./media/characters/sheera-castellar/back.svg",
  24223. extra: 1957 / 1894
  24224. }
  24225. },
  24226. angled: {
  24227. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24228. weight: math.unit(350, "lb"),
  24229. name: "Angled",
  24230. image: {
  24231. source: "./media/characters/sheera-castellar/angled.svg",
  24232. extra: 1807 / 1707,
  24233. bottom: 68 / 1875
  24234. }
  24235. },
  24236. genitals: {
  24237. height: math.unit(2.2, "feet"),
  24238. name: "Genitals",
  24239. image: {
  24240. source: "./media/characters/sheera-castellar/genitals.svg"
  24241. }
  24242. },
  24243. taur: {
  24244. height: math.unit(10 + 6/12, "feet"),
  24245. name: "Taur",
  24246. image: {
  24247. source: "./media/characters/sheera-castellar/taur.svg",
  24248. extra: 2017/1909,
  24249. bottom: 185/2202
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(8 + 4 / 12, "feet")
  24257. },
  24258. {
  24259. name: "Macro",
  24260. height: math.unit(150, "feet"),
  24261. default: true
  24262. },
  24263. {
  24264. name: "Macro+",
  24265. height: math.unit(800, "feet")
  24266. },
  24267. ]
  24268. ))
  24269. characterMakers.push(() => makeCharacter(
  24270. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24271. {
  24272. front: {
  24273. height: math.unit(6, "feet"),
  24274. weight: math.unit(150, "lb"),
  24275. name: "Front",
  24276. image: {
  24277. source: "./media/characters/jaipur/front.svg",
  24278. extra: 3860 / 3731,
  24279. bottom: 287 / 4140
  24280. }
  24281. },
  24282. back: {
  24283. height: math.unit(6, "feet"),
  24284. weight: math.unit(150, "lb"),
  24285. name: "Back",
  24286. image: {
  24287. source: "./media/characters/jaipur/back.svg",
  24288. extra: 1637/1561,
  24289. bottom: 154/1791
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(1.85, "meters"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Macro",
  24301. height: math.unit(150, "meters")
  24302. },
  24303. {
  24304. name: "Macro+",
  24305. height: math.unit(0.5, "miles")
  24306. },
  24307. {
  24308. name: "Macro++",
  24309. height: math.unit(2.5, "miles")
  24310. },
  24311. {
  24312. name: "Macro+++",
  24313. height: math.unit(12, "miles")
  24314. },
  24315. {
  24316. name: "Macro++++",
  24317. height: math.unit(120, "miles")
  24318. },
  24319. {
  24320. name: "Macro+++++",
  24321. height: math.unit(1200, "miles")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(6, "feet"),
  24330. weight: math.unit(150, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/sheila-wolf/front.svg",
  24334. extra: 1931 / 1808,
  24335. bottom: 29.5 / 1960
  24336. }
  24337. },
  24338. dick: {
  24339. height: math.unit(1.464, "feet"),
  24340. name: "Dick",
  24341. image: {
  24342. source: "./media/characters/sheila-wolf/dick.svg"
  24343. }
  24344. },
  24345. muzzle: {
  24346. height: math.unit(0.513, "feet"),
  24347. name: "Muzzle",
  24348. image: {
  24349. source: "./media/characters/sheila-wolf/muzzle.svg"
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Macro",
  24356. height: math.unit(70, "feet"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(32, "meters"),
  24366. weight: math.unit(300000, "kg"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/almor/front.svg",
  24370. extra: 1408 / 1322,
  24371. bottom: 94.6 / 1506.5
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(32, "meters"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(7, "feet"),
  24388. weight: math.unit(200, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/silver/front.svg",
  24392. extra: 472.1 / 450.5,
  24393. bottom: 26.5 / 499.424
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(7, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(800, "feet")
  24406. },
  24407. {
  24408. name: "Megamacro",
  24409. height: math.unit(250, "miles")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(6, "feet"),
  24418. weight: math.unit(150, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/pliskin/front.svg",
  24422. extra: 1469 / 1359,
  24423. bottom: 70 / 1540
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Micro",
  24430. height: math.unit(3, "inches")
  24431. },
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(5 + 11 / 12, "feet"),
  24435. default: true
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(120, "feet")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(6, "feet"),
  24448. weight: math.unit(150, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/sammy/front.svg",
  24452. extra: 1193 / 1089,
  24453. bottom: 30.5 / 1226
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(1700, "feet"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Examacro",
  24465. height: math.unit(2.5e9, "lightyears")
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(21, "meters"),
  24474. weight: math.unit(12, "tonnes"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/kuru/front.svg",
  24478. extra: 4301 / 3785,
  24479. bottom: 371.3 / 4691
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Macro",
  24486. height: math.unit(21, "meters"),
  24487. default: true
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24493. {
  24494. front: {
  24495. height: math.unit(23, "meters"),
  24496. weight: math.unit(12.2, "tonnes"),
  24497. name: "Front",
  24498. image: {
  24499. source: "./media/characters/rakka/front.svg",
  24500. extra: 4670 / 4169,
  24501. bottom: 301 / 4968.7
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(23, "meters"),
  24509. default: true
  24510. },
  24511. ]
  24512. ))
  24513. characterMakers.push(() => makeCharacter(
  24514. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24515. {
  24516. front: {
  24517. height: math.unit(6, "feet"),
  24518. weight: math.unit(150, "lb"),
  24519. name: "Front",
  24520. image: {
  24521. source: "./media/characters/rhys-feline/front.svg",
  24522. extra: 2488 / 2308,
  24523. bottom: 35.67 / 2519.19
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Really Small",
  24530. height: math.unit(1, "nm")
  24531. },
  24532. {
  24533. name: "Micro",
  24534. height: math.unit(4, "inches")
  24535. },
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(4 + 10 / 12, "feet"),
  24539. default: true
  24540. },
  24541. {
  24542. name: "Macro",
  24543. height: math.unit(100, "feet")
  24544. },
  24545. {
  24546. name: "Megamacto",
  24547. height: math.unit(50, "miles")
  24548. },
  24549. ]
  24550. ))
  24551. characterMakers.push(() => makeCharacter(
  24552. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24553. {
  24554. side: {
  24555. height: math.unit(30, "feet"),
  24556. weight: math.unit(35000, "kg"),
  24557. name: "Side",
  24558. image: {
  24559. source: "./media/characters/alydar/side.svg",
  24560. extra: 234 / 222,
  24561. bottom: 6.5 / 241
  24562. }
  24563. },
  24564. front: {
  24565. height: math.unit(30, "feet"),
  24566. weight: math.unit(35000, "kg"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/alydar/front.svg",
  24570. extra: 223.37 / 210.2,
  24571. bottom: 22.3 / 246.76
  24572. }
  24573. },
  24574. top: {
  24575. height: math.unit(64.54, "feet"),
  24576. weight: math.unit(35000, "kg"),
  24577. name: "Top",
  24578. image: {
  24579. source: "./media/characters/alydar/top.svg"
  24580. }
  24581. },
  24582. anthro: {
  24583. height: math.unit(30, "feet"),
  24584. weight: math.unit(9000, "kg"),
  24585. name: "Anthro",
  24586. image: {
  24587. source: "./media/characters/alydar/anthro.svg",
  24588. extra: 432 / 421,
  24589. bottom: 7.18 / 440
  24590. }
  24591. },
  24592. maw: {
  24593. height: math.unit(11.693, "feet"),
  24594. name: "Maw",
  24595. image: {
  24596. source: "./media/characters/alydar/maw.svg"
  24597. }
  24598. },
  24599. head: {
  24600. height: math.unit(11.693, "feet"),
  24601. name: "Head",
  24602. image: {
  24603. source: "./media/characters/alydar/head.svg"
  24604. }
  24605. },
  24606. headAlt: {
  24607. height: math.unit(12.861, "feet"),
  24608. name: "Head (Alt)",
  24609. image: {
  24610. source: "./media/characters/alydar/head-alt.svg"
  24611. }
  24612. },
  24613. wing: {
  24614. height: math.unit(20.712, "feet"),
  24615. name: "Wing",
  24616. image: {
  24617. source: "./media/characters/alydar/wing.svg"
  24618. }
  24619. },
  24620. wingFeather: {
  24621. height: math.unit(9.662, "feet"),
  24622. name: "Wing Feather",
  24623. image: {
  24624. source: "./media/characters/alydar/wing-feather.svg"
  24625. }
  24626. },
  24627. countourFeather: {
  24628. height: math.unit(4.154, "feet"),
  24629. name: "Contour Feather",
  24630. image: {
  24631. source: "./media/characters/alydar/contour-feather.svg"
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Diplomatic",
  24638. height: math.unit(13, "feet"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Small",
  24643. height: math.unit(30, "feet")
  24644. },
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(95, "feet"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Large",
  24652. height: math.unit(285, "feet")
  24653. },
  24654. {
  24655. name: "Incomprehensible",
  24656. height: math.unit(450, "megameters")
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24662. {
  24663. side: {
  24664. height: math.unit(11, "feet"),
  24665. weight: math.unit(1750, "kg"),
  24666. name: "Side",
  24667. image: {
  24668. source: "./media/characters/selicia/side.svg",
  24669. extra: 440 / 396,
  24670. bottom: 24.8 / 465.979
  24671. }
  24672. },
  24673. maw: {
  24674. height: math.unit(4.665, "feet"),
  24675. name: "Maw",
  24676. image: {
  24677. source: "./media/characters/selicia/maw.svg"
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(11, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24691. {
  24692. side: {
  24693. height: math.unit(2 + 6 / 12, "feet"),
  24694. weight: math.unit(30, "lb"),
  24695. name: "Side",
  24696. image: {
  24697. source: "./media/characters/layla/side.svg",
  24698. extra: 244 / 188,
  24699. bottom: 18.2 / 262.1
  24700. }
  24701. },
  24702. back: {
  24703. height: math.unit(2 + 6 / 12, "feet"),
  24704. weight: math.unit(30, "lb"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/layla/back.svg",
  24708. extra: 308 / 241.5,
  24709. bottom: 8.9 / 316.8
  24710. }
  24711. },
  24712. cumming: {
  24713. height: math.unit(2 + 6 / 12, "feet"),
  24714. weight: math.unit(30, "lb"),
  24715. name: "Cumming",
  24716. image: {
  24717. source: "./media/characters/layla/cumming.svg",
  24718. extra: 342 / 279,
  24719. bottom: 595 / 938
  24720. }
  24721. },
  24722. dickFlaccid: {
  24723. height: math.unit(2.595, "feet"),
  24724. name: "Flaccid Genitals",
  24725. image: {
  24726. source: "./media/characters/layla/dick-flaccid.svg"
  24727. }
  24728. },
  24729. dickErect: {
  24730. height: math.unit(2.359, "feet"),
  24731. name: "Erect Genitals",
  24732. image: {
  24733. source: "./media/characters/layla/dick-erect.svg"
  24734. }
  24735. },
  24736. dragon: {
  24737. height: math.unit(40, "feet"),
  24738. name: "Dragon",
  24739. image: {
  24740. source: "./media/characters/layla/dragon.svg",
  24741. extra: 610/535,
  24742. bottom: 367/977
  24743. }
  24744. },
  24745. taur: {
  24746. height: math.unit(30, "feet"),
  24747. name: "Taur",
  24748. image: {
  24749. source: "./media/characters/layla/taur.svg",
  24750. extra: 1268/1199,
  24751. bottom: 112/1380
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Micro",
  24758. height: math.unit(1, "inch")
  24759. },
  24760. {
  24761. name: "Small",
  24762. height: math.unit(1, "foot")
  24763. },
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(2 + 6 / 12, "feet"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Macro",
  24771. height: math.unit(200, "feet")
  24772. },
  24773. {
  24774. name: "Megamacro",
  24775. height: math.unit(1000, "miles")
  24776. },
  24777. {
  24778. name: "Planetary",
  24779. height: math.unit(8000, "miles")
  24780. },
  24781. {
  24782. name: "True Layla",
  24783. height: math.unit(200000 * 7, "multiverses")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24789. {
  24790. back: {
  24791. height: math.unit(10.5, "feet"),
  24792. weight: math.unit(800, "lb"),
  24793. name: "Back",
  24794. image: {
  24795. source: "./media/characters/knox/back.svg",
  24796. extra: 1486 / 1089,
  24797. bottom: 107 / 1601.4
  24798. }
  24799. },
  24800. side: {
  24801. height: math.unit(10.5, "feet"),
  24802. weight: math.unit(800, "lb"),
  24803. name: "Side",
  24804. image: {
  24805. source: "./media/characters/knox/side.svg",
  24806. extra: 244 / 218,
  24807. bottom: 14 / 260
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Compact",
  24814. height: math.unit(10.5, "feet"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Dynamax",
  24819. height: math.unit(210, "feet")
  24820. },
  24821. {
  24822. name: "Full Macro",
  24823. height: math.unit(850, "feet")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(28, "feet"),
  24832. weight: math.unit(10500, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/kayda/front.svg",
  24836. extra: 1536 / 1428,
  24837. bottom: 68.7 / 1603
  24838. }
  24839. },
  24840. back: {
  24841. height: math.unit(28, "feet"),
  24842. weight: math.unit(10500, "lb"),
  24843. name: "Back",
  24844. image: {
  24845. source: "./media/characters/kayda/back.svg",
  24846. extra: 1557 / 1464,
  24847. bottom: 39.5 / 1597.49
  24848. }
  24849. },
  24850. dick: {
  24851. height: math.unit(3.858, "feet"),
  24852. name: "Dick",
  24853. image: {
  24854. source: "./media/characters/kayda/dick.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(28, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(10 + 11 / 12, "feet"),
  24871. weight: math.unit(1400, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/brian/front.svg",
  24875. extra: 737 / 692,
  24876. bottom: 55.4 / 785
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(10 + 11 / 12, "feet"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(5 + 8 / 12, "feet"),
  24893. weight: math.unit(140, "lb"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/khemri/front.svg",
  24897. extra: 4780 / 4059,
  24898. bottom: 80.1 / 4859.25
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Micro",
  24905. height: math.unit(6, "inches")
  24906. },
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(5 + 8 / 12, "feet"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24916. {
  24917. front: {
  24918. height: math.unit(13, "feet"),
  24919. weight: math.unit(1700, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/felix-braveheart/front.svg",
  24923. extra: 1222 / 1157,
  24924. bottom: 53.2 / 1280
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(13, "feet"),
  24929. weight: math.unit(1700, "lb"),
  24930. name: "Back",
  24931. image: {
  24932. source: "./media/characters/felix-braveheart/back.svg",
  24933. extra: 1277 / 1203,
  24934. bottom: 50.2 / 1327
  24935. }
  24936. },
  24937. feral: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(400, "lb"),
  24940. name: "Feral",
  24941. image: {
  24942. source: "./media/characters/felix-braveheart/feral.svg",
  24943. extra: 682 / 625,
  24944. bottom: 6.9 / 688
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(13, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24958. {
  24959. side: {
  24960. height: math.unit(5 + 11 / 12, "feet"),
  24961. weight: math.unit(1400, "lb"),
  24962. name: "Side",
  24963. image: {
  24964. source: "./media/characters/shadow-blade/side.svg",
  24965. extra: 1726 / 1267,
  24966. bottom: 58.4 / 1785
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(5 + 11 / 12, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(1 + 6 / 12, "feet"),
  24983. weight: math.unit(25, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/karla-halldor/front.svg",
  24987. extra: 1459 / 1383,
  24988. bottom: 12 / 1472
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(1 + 6 / 12, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6 + 2 / 12, "feet"),
  25005. weight: math.unit(160, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/ariam/front.svg",
  25009. extra: 1073/976,
  25010. bottom: 52/1125
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(6 + 2/12, "feet"),
  25015. weight: math.unit(160, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/ariam/back.svg",
  25019. extra: 1103/1023,
  25020. bottom: 9/1112
  25021. }
  25022. },
  25023. dressed: {
  25024. height: math.unit(6 + 2/12, "feet"),
  25025. weight: math.unit(160, "lb"),
  25026. name: "Dressed",
  25027. image: {
  25028. source: "./media/characters/ariam/dressed.svg",
  25029. extra: 1099/1009,
  25030. bottom: 25/1124
  25031. }
  25032. },
  25033. squatting: {
  25034. height: math.unit(4.1, "feet"),
  25035. weight: math.unit(160, "lb"),
  25036. name: "Squatting",
  25037. image: {
  25038. source: "./media/characters/ariam/squatting.svg",
  25039. extra: 2617 / 2112,
  25040. bottom: 61.2 / 2681,
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(6 + 2 / 12, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Normal+",
  25052. height: math.unit(4, "meters")
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(50, "meters")
  25057. },
  25058. {
  25059. name: "Macro+",
  25060. height: math.unit(100, "meters")
  25061. },
  25062. {
  25063. name: "Megamacro",
  25064. height: math.unit(20, "km")
  25065. },
  25066. {
  25067. name: "Caretaker",
  25068. height: math.unit(444, "megameters")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(1.67, "meters"),
  25077. weight: math.unit(140, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25081. extra: 438 / 410,
  25082. bottom: 0.75 / 439
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Shrunken",
  25089. height: math.unit(7.6, "cm")
  25090. },
  25091. {
  25092. name: "Human Scale",
  25093. height: math.unit(1.67, "meters")
  25094. },
  25095. {
  25096. name: "Wolxi Scale",
  25097. height: math.unit(36.7, "meters"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(1.73, "meters"),
  25107. weight: math.unit(240, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/izue-two-mothers/front.svg",
  25111. extra: 469 / 437,
  25112. bottom: 1.24 / 470.6
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Shrunken",
  25119. height: math.unit(7.86, "cm")
  25120. },
  25121. {
  25122. name: "Human Scale",
  25123. height: math.unit(1.73, "meters")
  25124. },
  25125. {
  25126. name: "Wolxi Scale",
  25127. height: math.unit(38, "meters"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(1.55, "meters"),
  25137. weight: math.unit(120, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/teeku-love-shack/front.svg",
  25141. extra: 387 / 362,
  25142. bottom: 1.51 / 388
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Shrunken",
  25149. height: math.unit(7, "cm")
  25150. },
  25151. {
  25152. name: "Human Scale",
  25153. height: math.unit(1.55, "meters")
  25154. },
  25155. {
  25156. name: "Wolxi Scale",
  25157. height: math.unit(34.1, "meters"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(1.83, "meters"),
  25167. weight: math.unit(135, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/dejma-the-red/front.svg",
  25171. extra: 480 / 458,
  25172. bottom: 1.8 / 482
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Shrunken",
  25179. height: math.unit(8.3, "cm")
  25180. },
  25181. {
  25182. name: "Human Scale",
  25183. height: math.unit(1.83, "meters")
  25184. },
  25185. {
  25186. name: "Wolxi Scale",
  25187. height: math.unit(40, "meters"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(1.78, "meters"),
  25197. weight: math.unit(65, "kg"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/aki/front.svg",
  25201. extra: 452 / 415
  25202. }
  25203. },
  25204. frontNsfw: {
  25205. height: math.unit(1.78, "meters"),
  25206. weight: math.unit(65, "kg"),
  25207. name: "Front (NSFW)",
  25208. image: {
  25209. source: "./media/characters/aki/front-nsfw.svg",
  25210. extra: 452 / 415
  25211. }
  25212. },
  25213. back: {
  25214. height: math.unit(1.78, "meters"),
  25215. weight: math.unit(65, "kg"),
  25216. name: "Back",
  25217. image: {
  25218. source: "./media/characters/aki/back.svg",
  25219. extra: 452 / 415
  25220. }
  25221. },
  25222. rump: {
  25223. height: math.unit(2.05, "feet"),
  25224. name: "Rump",
  25225. image: {
  25226. source: "./media/characters/aki/rump.svg"
  25227. }
  25228. },
  25229. dick: {
  25230. height: math.unit(0.95, "feet"),
  25231. name: "Dick",
  25232. image: {
  25233. source: "./media/characters/aki/dick.svg"
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Micro",
  25240. height: math.unit(15, "cm")
  25241. },
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(178, "cm"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(214, "m")
  25250. },
  25251. {
  25252. name: "Macro+",
  25253. height: math.unit(534, "m")
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(5 + 5 / 12, "feet"),
  25262. weight: math.unit(120, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/ari/front.svg",
  25266. extra: 1550/1471,
  25267. bottom: 39/1589
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 5 / 12, "feet")
  25275. },
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(100, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Megamacro",
  25283. height: math.unit(100, "miles")
  25284. },
  25285. {
  25286. name: "Gigamacro",
  25287. height: math.unit(80000, "miles")
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25293. {
  25294. side: {
  25295. height: math.unit(9, "feet"),
  25296. weight: math.unit(400, "kg"),
  25297. name: "Side",
  25298. image: {
  25299. source: "./media/characters/bolt/side.svg",
  25300. extra: 1126 / 896,
  25301. bottom: 60 / 1187.3,
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Micro",
  25308. height: math.unit(5, "inches")
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(9, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Macro",
  25317. height: math.unit(700, "feet")
  25318. },
  25319. {
  25320. name: "Max Size",
  25321. height: math.unit(1.52e22, "yottameters")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(4.3, "meters"),
  25330. weight: math.unit(3, "tons"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/draekon-sylviar/front.svg",
  25334. extra: 2072/1512,
  25335. bottom: 74/2146
  25336. }
  25337. },
  25338. back: {
  25339. height: math.unit(4.3, "meters"),
  25340. weight: math.unit(3, "tons"),
  25341. name: "Back",
  25342. image: {
  25343. source: "./media/characters/draekon-sylviar/back.svg",
  25344. extra: 1639/1483,
  25345. bottom: 41/1680
  25346. }
  25347. },
  25348. feral: {
  25349. height: math.unit(1.15, "meters"),
  25350. weight: math.unit(3, "tons"),
  25351. name: "Feral",
  25352. image: {
  25353. source: "./media/characters/draekon-sylviar/feral.svg",
  25354. extra: 1033/395,
  25355. bottom: 130/1163
  25356. }
  25357. },
  25358. maw: {
  25359. height: math.unit(1.3, "meters"),
  25360. name: "Maw",
  25361. image: {
  25362. source: "./media/characters/draekon-sylviar/maw.svg"
  25363. }
  25364. },
  25365. mawSeparated: {
  25366. height: math.unit(1.53, "meters"),
  25367. name: "Separated Maw",
  25368. image: {
  25369. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25370. }
  25371. },
  25372. tail: {
  25373. height: math.unit(1.15, "meters"),
  25374. name: "Tail",
  25375. image: {
  25376. source: "./media/characters/draekon-sylviar/tail.svg"
  25377. }
  25378. },
  25379. tailDick: {
  25380. height: math.unit(1.15, "meters"),
  25381. name: "Tail (Dick)",
  25382. image: {
  25383. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25384. }
  25385. },
  25386. tailDickSeparated: {
  25387. height: math.unit(1.19, "meters"),
  25388. name: "Tail (Separated Dick)",
  25389. image: {
  25390. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25391. }
  25392. },
  25393. slit: {
  25394. height: math.unit(1, "meters"),
  25395. name: "Slit",
  25396. image: {
  25397. source: "./media/characters/draekon-sylviar/slit.svg"
  25398. }
  25399. },
  25400. dick: {
  25401. height: math.unit(1.15, "meters"),
  25402. name: "Dick",
  25403. image: {
  25404. source: "./media/characters/draekon-sylviar/dick.svg"
  25405. }
  25406. },
  25407. dickSeparated: {
  25408. height: math.unit(1.1, "meters"),
  25409. name: "Separated Dick",
  25410. image: {
  25411. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25412. }
  25413. },
  25414. sheath: {
  25415. height: math.unit(1.15, "meters"),
  25416. name: "Sheath",
  25417. image: {
  25418. source: "./media/characters/draekon-sylviar/sheath.svg"
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Small",
  25425. height: math.unit(4.53 / 2, "meters"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(4.53, "meters"),
  25431. default: true
  25432. },
  25433. {
  25434. name: "Large",
  25435. height: math.unit(4.53 * 2, "meters"),
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(6 + 2 / 12, "feet"),
  25444. weight: math.unit(180, "lb"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/brawler/front.svg",
  25448. extra: 3301 / 3027,
  25449. bottom: 138 / 3439
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(6 + 2 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(11, "feet"),
  25466. weight: math.unit(1000, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/alex/front.svg",
  25470. bottom: 44.5 / 620
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Micro",
  25477. height: math.unit(5, "inches")
  25478. },
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(11, "feet"),
  25482. default: true
  25483. },
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(9.5e9, "feet")
  25487. },
  25488. {
  25489. name: "Max Size",
  25490. height: math.unit(1.4e283, "yottameters")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25496. {
  25497. female: {
  25498. height: math.unit(29.9, "m"),
  25499. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25500. name: "Female",
  25501. image: {
  25502. source: "./media/characters/zenari/female.svg",
  25503. extra: 3281.6 / 3217,
  25504. bottom: 72.2 / 3353
  25505. }
  25506. },
  25507. male: {
  25508. height: math.unit(27.7, "m"),
  25509. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25510. name: "Male",
  25511. image: {
  25512. source: "./media/characters/zenari/male.svg",
  25513. extra: 3008 / 2991,
  25514. bottom: 54.6 / 3069
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(29.7, "meters"),
  25522. default: true
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25528. {
  25529. female: {
  25530. height: math.unit(23.8, "m"),
  25531. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25532. name: "Female",
  25533. image: {
  25534. source: "./media/characters/mactarian/female.svg",
  25535. extra: 2662 / 2569,
  25536. bottom: 73 / 2736
  25537. }
  25538. },
  25539. male: {
  25540. height: math.unit(23.8, "m"),
  25541. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25542. name: "Male",
  25543. image: {
  25544. source: "./media/characters/mactarian/male.svg",
  25545. extra: 2673 / 2600,
  25546. bottom: 76 / 2750
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(23.8, "meters"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25560. {
  25561. female: {
  25562. height: math.unit(19.3, "m"),
  25563. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25564. name: "Female",
  25565. image: {
  25566. source: "./media/characters/umok/female.svg",
  25567. extra: 2186 / 2078,
  25568. bottom: 87 / 2277
  25569. }
  25570. },
  25571. male: {
  25572. height: math.unit(19.5, "m"),
  25573. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25574. name: "Male",
  25575. image: {
  25576. source: "./media/characters/umok/male.svg",
  25577. extra: 2233 / 2140,
  25578. bottom: 24.4 / 2258
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Macro",
  25585. height: math.unit(19.3, "meters"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25592. {
  25593. female: {
  25594. height: math.unit(26.15, "m"),
  25595. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25596. name: "Female",
  25597. image: {
  25598. source: "./media/characters/joraxian/female.svg",
  25599. extra: 2912 / 2824,
  25600. bottom: 36 / 2956
  25601. }
  25602. },
  25603. male: {
  25604. height: math.unit(25.4, "m"),
  25605. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25606. name: "Male",
  25607. image: {
  25608. source: "./media/characters/joraxian/male.svg",
  25609. extra: 2877 / 2721,
  25610. bottom: 82 / 2967
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(26.15, "meters"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25624. {
  25625. female: {
  25626. height: math.unit(21.6, "m"),
  25627. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25628. name: "Female",
  25629. image: {
  25630. source: "./media/characters/sthara/female.svg",
  25631. extra: 2516 / 2347,
  25632. bottom: 21.5 / 2537
  25633. }
  25634. },
  25635. male: {
  25636. height: math.unit(24, "m"),
  25637. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25638. name: "Male",
  25639. image: {
  25640. source: "./media/characters/sthara/male.svg",
  25641. extra: 2732 / 2607,
  25642. bottom: 23 / 2732
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Macro",
  25649. height: math.unit(21.6, "meters"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(6 + 4 / 12, "feet"),
  25659. weight: math.unit(175, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/luka-bryzant/front.svg",
  25663. extra: 311 / 289,
  25664. bottom: 4 / 315
  25665. }
  25666. },
  25667. back: {
  25668. height: math.unit(6 + 4 / 12, "feet"),
  25669. weight: math.unit(175, "lb"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/luka-bryzant/back.svg",
  25673. extra: 311 / 289,
  25674. bottom: 3.8 / 313.7
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Micro",
  25681. height: math.unit(10, "inches")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(6 + 4 / 12, "feet"),
  25686. default: true
  25687. },
  25688. {
  25689. name: "Large",
  25690. height: math.unit(12, "feet")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(5 + 7 / 12, "feet"),
  25699. weight: math.unit(185, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/aman-aquila/front.svg",
  25703. extra: 1013 / 976,
  25704. bottom: 45.6 / 1057
  25705. }
  25706. },
  25707. side: {
  25708. height: math.unit(5 + 7 / 12, "feet"),
  25709. weight: math.unit(185, "lb"),
  25710. name: "Side",
  25711. image: {
  25712. source: "./media/characters/aman-aquila/side.svg",
  25713. extra: 1054 / 1011,
  25714. bottom: 15 / 1070
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(5 + 7 / 12, "feet"),
  25719. weight: math.unit(185, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/aman-aquila/back.svg",
  25723. extra: 1026 / 970,
  25724. bottom: 12 / 1039
  25725. }
  25726. },
  25727. head: {
  25728. height: math.unit(1.211, "feet"),
  25729. name: "Head",
  25730. image: {
  25731. source: "./media/characters/aman-aquila/head.svg",
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Minimicro",
  25738. height: math.unit(0.057, "inches")
  25739. },
  25740. {
  25741. name: "Micro",
  25742. height: math.unit(7, "inches")
  25743. },
  25744. {
  25745. name: "Mini",
  25746. height: math.unit(3 + 7 / 12, "feet")
  25747. },
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(5 + 7 / 12, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Macro",
  25755. height: math.unit(157 + 7 / 12, "feet")
  25756. },
  25757. {
  25758. name: "Megamacro",
  25759. height: math.unit(1557 + 7 / 12, "feet")
  25760. },
  25761. {
  25762. name: "Gigamacro",
  25763. height: math.unit(15557 + 7 / 12, "feet")
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(3 + 2 / 12, "inches"),
  25772. weight: math.unit(0.3, "ounces"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/hiphae/front.svg",
  25776. extra: 1931 / 1683,
  25777. bottom: 24 / 1955
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(3 + 1 / 2, "inches"),
  25785. default: true
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(5 + 10 / 12, "feet"),
  25794. weight: math.unit(165, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/nicky/front.svg",
  25798. extra: 3144 / 2886,
  25799. bottom: 45.6 / 3192
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(5 + 10 / 12, "feet"),
  25804. weight: math.unit(165, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/nicky/back.svg",
  25808. extra: 3055 / 2804,
  25809. bottom: 28.4 / 3087
  25810. }
  25811. },
  25812. frontclothed: {
  25813. height: math.unit(5 + 10 / 12, "feet"),
  25814. weight: math.unit(165, "lb"),
  25815. name: "Front-clothed",
  25816. image: {
  25817. source: "./media/characters/nicky/front-clothed.svg",
  25818. extra: 3184.9 / 2926.9,
  25819. bottom: 86.5 / 3239.9
  25820. }
  25821. },
  25822. foot: {
  25823. height: math.unit(1.16, "feet"),
  25824. name: "Foot",
  25825. image: {
  25826. source: "./media/characters/nicky/foot.svg"
  25827. }
  25828. },
  25829. feet: {
  25830. height: math.unit(1.34, "feet"),
  25831. name: "Feet",
  25832. image: {
  25833. source: "./media/characters/nicky/feet.svg"
  25834. }
  25835. },
  25836. maw: {
  25837. height: math.unit(0.9, "feet"),
  25838. name: "Maw",
  25839. image: {
  25840. source: "./media/characters/nicky/maw.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(5 + 10 / 12, "feet"),
  25848. default: true
  25849. },
  25850. {
  25851. name: "Macro",
  25852. height: math.unit(60, "feet")
  25853. },
  25854. {
  25855. name: "Megamacro",
  25856. height: math.unit(1, "mile")
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25862. {
  25863. side: {
  25864. height: math.unit(10, "feet"),
  25865. weight: math.unit(600, "lb"),
  25866. name: "Side",
  25867. image: {
  25868. source: "./media/characters/blair/side.svg",
  25869. bottom: 16.6 / 475,
  25870. extra: 458 / 431
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Micro",
  25877. height: math.unit(8, "inches")
  25878. },
  25879. {
  25880. name: "Normal",
  25881. height: math.unit(10, "feet"),
  25882. default: true
  25883. },
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(180, "feet")
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(5 + 4 / 12, "feet"),
  25895. weight: math.unit(125, "lb"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/fisher/front.svg",
  25899. extra: 444 / 390,
  25900. bottom: 2 / 444.8
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Micro",
  25907. height: math.unit(4, "inches")
  25908. },
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(5 + 4 / 12, "feet"),
  25912. default: true
  25913. },
  25914. {
  25915. name: "Macro",
  25916. height: math.unit(100, "feet")
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(6.71, "feet"),
  25925. weight: math.unit(200, "lb"),
  25926. capacity: math.unit(1000000, "people"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/gliss/front.svg",
  25930. extra: 2347 / 2231,
  25931. bottom: 113 / 2462
  25932. }
  25933. },
  25934. hammerspaceSize: {
  25935. height: math.unit(6.71 * 717, "feet"),
  25936. weight: math.unit(200, "lb"),
  25937. capacity: math.unit(1000000, "people"),
  25938. name: "Hammerspace Size",
  25939. image: {
  25940. source: "./media/characters/gliss/front.svg",
  25941. extra: 2347 / 2231,
  25942. bottom: 113 / 2462
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(6.71, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25956. {
  25957. side: {
  25958. height: math.unit(1.44, "m"),
  25959. weight: math.unit(80, "kg"),
  25960. name: "Side",
  25961. image: {
  25962. source: "./media/characters/dune-anderson/side.svg",
  25963. bottom: 49 / 1426
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Wolf-sized",
  25970. height: math.unit(1.44, "meters")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(5.05, "meters"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Big",
  25979. height: math.unit(14.4, "meters")
  25980. },
  25981. {
  25982. name: "Huge",
  25983. height: math.unit(144, "meters")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(7, "feet"),
  25992. weight: math.unit(425, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/hind/front.svg",
  25996. extra: 2091 / 1860,
  25997. bottom: 129 / 2220
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(7, "feet"),
  26002. weight: math.unit(425, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/hind/back.svg",
  26006. extra: 2091 / 1860,
  26007. bottom: 24.6 / 2309
  26008. }
  26009. },
  26010. tail: {
  26011. height: math.unit(2.8, "feet"),
  26012. name: "Tail",
  26013. image: {
  26014. source: "./media/characters/hind/tail.svg"
  26015. }
  26016. },
  26017. head: {
  26018. height: math.unit(2.55, "feet"),
  26019. name: "Head",
  26020. image: {
  26021. source: "./media/characters/hind/head.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "XS",
  26028. height: math.unit(0.7, "feet")
  26029. },
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(7, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "XL",
  26037. height: math.unit(70, "feet")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(2.1, "meters"),
  26046. weight: math.unit(150, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/tharquench-sizestealer/front.svg",
  26050. extra: 1605/1470,
  26051. bottom: 36/1641
  26052. }
  26053. },
  26054. frontAlt: {
  26055. height: math.unit(2.1, "meters"),
  26056. weight: math.unit(150, "lb"),
  26057. name: "Front (Alt)",
  26058. image: {
  26059. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26060. extra: 2318 / 2063,
  26061. bottom: 93.4 / 2410
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Nano",
  26068. height: math.unit(1, "mm")
  26069. },
  26070. {
  26071. name: "Micro",
  26072. height: math.unit(1, "cm")
  26073. },
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(2.1, "meters"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(7 + 5 / 12, "feet"),
  26086. weight: math.unit(357, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/solex-draconov/front.svg",
  26090. extra: 1993 / 1865,
  26091. bottom: 117 / 2111
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Natural Height",
  26098. height: math.unit(7 + 5 / 12, "feet"),
  26099. default: true
  26100. },
  26101. {
  26102. name: "Macro",
  26103. height: math.unit(350, "feet")
  26104. },
  26105. {
  26106. name: "Macro+",
  26107. height: math.unit(1000, "feet")
  26108. },
  26109. {
  26110. name: "Megamacro",
  26111. height: math.unit(20, "km")
  26112. },
  26113. {
  26114. name: "Megamacro+",
  26115. height: math.unit(1000, "km")
  26116. },
  26117. {
  26118. name: "Gigamacro",
  26119. height: math.unit(2.5, "Gm")
  26120. },
  26121. {
  26122. name: "Teramacro",
  26123. height: math.unit(15, "Tm")
  26124. },
  26125. {
  26126. name: "Galactic",
  26127. height: math.unit(30, "Zm")
  26128. },
  26129. {
  26130. name: "Universal",
  26131. height: math.unit(21000, "Ym")
  26132. },
  26133. {
  26134. name: "Omniversal",
  26135. height: math.unit(9.861e50, "Ym")
  26136. },
  26137. {
  26138. name: "Existential",
  26139. height: math.unit(1e300, "meters")
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26145. {
  26146. side: {
  26147. height: math.unit(25, "feet"),
  26148. weight: math.unit(90000, "lb"),
  26149. name: "Side",
  26150. image: {
  26151. source: "./media/characters/mandarax/side.svg",
  26152. extra: 614 / 332,
  26153. bottom: 55 / 630
  26154. }
  26155. },
  26156. lounging: {
  26157. height: math.unit(15.4, "feet"),
  26158. weight: math.unit(90000, "lb"),
  26159. name: "Lounging",
  26160. image: {
  26161. source: "./media/characters/mandarax/lounging.svg",
  26162. extra: 817/609,
  26163. bottom: 685/1502
  26164. }
  26165. },
  26166. head: {
  26167. height: math.unit(11.4, "feet"),
  26168. name: "Head",
  26169. image: {
  26170. source: "./media/characters/mandarax/head.svg"
  26171. }
  26172. },
  26173. belly: {
  26174. height: math.unit(33, "feet"),
  26175. name: "Belly",
  26176. capacity: math.unit(500, "people"),
  26177. image: {
  26178. source: "./media/characters/mandarax/belly.svg"
  26179. }
  26180. },
  26181. dick: {
  26182. height: math.unit(8.46, "feet"),
  26183. name: "Dick",
  26184. image: {
  26185. source: "./media/characters/mandarax/dick.svg"
  26186. }
  26187. },
  26188. top: {
  26189. height: math.unit(28, "meters"),
  26190. name: "Top",
  26191. image: {
  26192. source: "./media/characters/mandarax/top.svg"
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(25, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(5, "feet"),
  26209. weight: math.unit(90, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/pixil/front.svg",
  26213. extra: 2000 / 1618,
  26214. bottom: 12.3 / 2011
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(5, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Megamacro",
  26226. height: math.unit(10, "miles"),
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(7 + 2 / 12, "feet"),
  26235. weight: math.unit(200, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/angel/front.svg",
  26239. extra: 1830 / 1737,
  26240. bottom: 22.6 / 1854,
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(7 + 2 / 12, "feet"),
  26248. default: true
  26249. },
  26250. {
  26251. name: "Macro",
  26252. height: math.unit(1000, "feet")
  26253. },
  26254. {
  26255. name: "Megamacro",
  26256. height: math.unit(2, "miles")
  26257. },
  26258. {
  26259. name: "Gigamacro",
  26260. height: math.unit(20, "earths")
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(5, "feet"),
  26269. weight: math.unit(180, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/mekana/front.svg",
  26273. extra: 1671 / 1605,
  26274. bottom: 3.5 / 1691
  26275. }
  26276. },
  26277. side: {
  26278. height: math.unit(5, "feet"),
  26279. weight: math.unit(180, "lb"),
  26280. name: "Side",
  26281. image: {
  26282. source: "./media/characters/mekana/side.svg",
  26283. extra: 1671 / 1605,
  26284. bottom: 3.5 / 1691
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(5, "feet"),
  26289. weight: math.unit(180, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/mekana/back.svg",
  26293. extra: 1671 / 1605,
  26294. bottom: 3.5 / 1691
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(5, "feet"),
  26302. default: true
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(4 + 6 / 12, "feet"),
  26311. weight: math.unit(80, "lb"),
  26312. name: "Front",
  26313. image: {
  26314. source: "./media/characters/pixie/front.svg",
  26315. extra: 1924 / 1825,
  26316. bottom: 22.4 / 1946
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(4 + 6 / 12, "feet"),
  26324. default: true
  26325. },
  26326. {
  26327. name: "Macro",
  26328. height: math.unit(40, "feet")
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(2.1, "meters"),
  26337. weight: math.unit(200, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/the-lascivious/front.svg",
  26341. extra: 1 / 0.893,
  26342. bottom: 3.5 / 573.7
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Human Scale",
  26349. height: math.unit(2.1, "meters")
  26350. },
  26351. {
  26352. name: "Wolxi Scale",
  26353. height: math.unit(46.2, "m"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "Boinker of Buildings",
  26358. height: math.unit(10, "km")
  26359. },
  26360. {
  26361. name: "Shagger of Skyscrapers",
  26362. height: math.unit(40, "km")
  26363. },
  26364. {
  26365. name: "Banger of Boroughs",
  26366. height: math.unit(4000, "km")
  26367. },
  26368. {
  26369. name: "Screwer of States",
  26370. height: math.unit(100000, "km")
  26371. },
  26372. {
  26373. name: "Pounder of Planets",
  26374. height: math.unit(2000000, "km")
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(6, "feet"),
  26383. weight: math.unit(150, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/aj/front.svg",
  26387. extra: 2039 / 1562,
  26388. bottom: 40 / 2079
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(11 + 6 / 12, "feet"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Megamacro",
  26400. height: math.unit(60, "megameters")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26406. {
  26407. side: {
  26408. height: math.unit(31 + 8 / 12, "feet"),
  26409. weight: math.unit(75000, "kg"),
  26410. name: "Side",
  26411. image: {
  26412. source: "./media/characters/koros/side.svg",
  26413. extra: 1442 / 1297,
  26414. bottom: 122.7 / 1562
  26415. }
  26416. },
  26417. dicksKingsCrown: {
  26418. height: math.unit(6, "feet"),
  26419. name: "Dicks (King's Crown)",
  26420. image: {
  26421. source: "./media/characters/koros/dicks-kings-crown.svg"
  26422. }
  26423. },
  26424. dicksTailSet: {
  26425. height: math.unit(3, "feet"),
  26426. name: "Dicks (Tail Set)",
  26427. image: {
  26428. source: "./media/characters/koros/dicks-tail-set.svg"
  26429. }
  26430. },
  26431. dickCumming: {
  26432. height: math.unit(7.98, "feet"),
  26433. name: "Dick (Cumming)",
  26434. image: {
  26435. source: "./media/characters/koros/dick-cumming.svg"
  26436. }
  26437. },
  26438. dicksBack: {
  26439. height: math.unit(5.9, "feet"),
  26440. name: "Dicks (Back)",
  26441. image: {
  26442. source: "./media/characters/koros/dicks-back.svg"
  26443. }
  26444. },
  26445. dicksFront: {
  26446. height: math.unit(3.72, "feet"),
  26447. name: "Dicks (Front)",
  26448. image: {
  26449. source: "./media/characters/koros/dicks-front.svg"
  26450. }
  26451. },
  26452. dicksPeeking: {
  26453. height: math.unit(3.0, "feet"),
  26454. name: "Dicks (Peeking)",
  26455. image: {
  26456. source: "./media/characters/koros/dicks-peeking.svg"
  26457. }
  26458. },
  26459. eye: {
  26460. height: math.unit(1.7, "feet"),
  26461. name: "Eye",
  26462. image: {
  26463. source: "./media/characters/koros/eye.svg"
  26464. }
  26465. },
  26466. headFront: {
  26467. height: math.unit(11.69, "feet"),
  26468. name: "Head (Front)",
  26469. image: {
  26470. source: "./media/characters/koros/head-front.svg"
  26471. }
  26472. },
  26473. headSide: {
  26474. height: math.unit(14, "feet"),
  26475. name: "Head (Side)",
  26476. image: {
  26477. source: "./media/characters/koros/head-side.svg"
  26478. }
  26479. },
  26480. leg: {
  26481. height: math.unit(17, "feet"),
  26482. name: "Leg",
  26483. image: {
  26484. source: "./media/characters/koros/leg.svg"
  26485. }
  26486. },
  26487. mawSide: {
  26488. height: math.unit(12.8, "feet"),
  26489. name: "Maw (Side)",
  26490. image: {
  26491. source: "./media/characters/koros/maw-side.svg"
  26492. }
  26493. },
  26494. mawSpitting: {
  26495. height: math.unit(17, "feet"),
  26496. name: "Maw (Spitting)",
  26497. image: {
  26498. source: "./media/characters/koros/maw-spitting.svg"
  26499. }
  26500. },
  26501. slit: {
  26502. height: math.unit(2.8, "feet"),
  26503. name: "Slit",
  26504. image: {
  26505. source: "./media/characters/koros/slit.svg"
  26506. }
  26507. },
  26508. stomach: {
  26509. height: math.unit(6.8, "feet"),
  26510. capacity: math.unit(20, "people"),
  26511. name: "Stomach",
  26512. image: {
  26513. source: "./media/characters/koros/stomach.svg"
  26514. }
  26515. },
  26516. wingspanBottom: {
  26517. height: math.unit(114, "feet"),
  26518. name: "Wingspan (Bottom)",
  26519. image: {
  26520. source: "./media/characters/koros/wingspan-bottom.svg"
  26521. }
  26522. },
  26523. wingspanTop: {
  26524. height: math.unit(104, "feet"),
  26525. name: "Wingspan (Top)",
  26526. image: {
  26527. source: "./media/characters/koros/wingspan-top.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(31 + 8 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(18 + 5 / 12, "feet"),
  26544. weight: math.unit(3750, "kg"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/vexx/front.svg",
  26548. extra: 426 / 396,
  26549. bottom: 31.5 / 458
  26550. }
  26551. },
  26552. maw: {
  26553. height: math.unit(6, "feet"),
  26554. name: "Maw",
  26555. image: {
  26556. source: "./media/characters/vexx/maw.svg"
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(18 + 5 / 12, "feet"),
  26564. default: true
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26570. {
  26571. front: {
  26572. height: math.unit(17 + 6 / 12, "feet"),
  26573. weight: math.unit(150, "lb"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/baadra/front.svg",
  26577. extra: 1694/1553,
  26578. bottom: 179/1873
  26579. }
  26580. },
  26581. frontAlt: {
  26582. height: math.unit(17 + 6 / 12, "feet"),
  26583. weight: math.unit(150, "lb"),
  26584. name: "Front (Alt)",
  26585. image: {
  26586. source: "./media/characters/baadra/front-alt.svg",
  26587. extra: 3137 / 2890,
  26588. bottom: 168.4 / 3305
  26589. }
  26590. },
  26591. back: {
  26592. height: math.unit(17 + 6 / 12, "feet"),
  26593. weight: math.unit(150, "lb"),
  26594. name: "Back",
  26595. image: {
  26596. source: "./media/characters/baadra/back.svg",
  26597. extra: 3142 / 2890,
  26598. bottom: 220 / 3371
  26599. }
  26600. },
  26601. head: {
  26602. height: math.unit(5.45, "feet"),
  26603. name: "Head",
  26604. image: {
  26605. source: "./media/characters/baadra/head.svg"
  26606. }
  26607. },
  26608. headAngry: {
  26609. height: math.unit(4.95, "feet"),
  26610. name: "Head (Angry)",
  26611. image: {
  26612. source: "./media/characters/baadra/head-angry.svg"
  26613. }
  26614. },
  26615. headOpen: {
  26616. height: math.unit(6, "feet"),
  26617. name: "Head (Open)",
  26618. image: {
  26619. source: "./media/characters/baadra/head-open.svg"
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(17 + 6 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(7 + 3 / 12, "feet"),
  26636. weight: math.unit(180, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/juri/front.svg",
  26640. extra: 1401 / 1237,
  26641. bottom: 18.5 / 1418
  26642. }
  26643. },
  26644. side: {
  26645. height: math.unit(7 + 3 / 12, "feet"),
  26646. weight: math.unit(180, "lb"),
  26647. name: "Side",
  26648. image: {
  26649. source: "./media/characters/juri/side.svg",
  26650. extra: 1424 / 1242,
  26651. bottom: 18.5 / 1447
  26652. }
  26653. },
  26654. sitting: {
  26655. height: math.unit(6, "feet"),
  26656. weight: math.unit(180, "lb"),
  26657. name: "Sitting",
  26658. image: {
  26659. source: "./media/characters/juri/sitting.svg",
  26660. extra: 1270 / 1143,
  26661. bottom: 100 / 1343
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(7 + 3 / 12, "feet"),
  26666. weight: math.unit(180, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/juri/back.svg",
  26670. extra: 1377 / 1240,
  26671. bottom: 23.7 / 1405
  26672. }
  26673. },
  26674. maw: {
  26675. height: math.unit(2.8, "feet"),
  26676. name: "Maw",
  26677. image: {
  26678. source: "./media/characters/juri/maw.svg"
  26679. }
  26680. },
  26681. stomach: {
  26682. height: math.unit(0.89, "feet"),
  26683. capacity: math.unit(4, "liters"),
  26684. name: "Stomach",
  26685. image: {
  26686. source: "./media/characters/juri/stomach.svg"
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(7 + 3 / 12, "feet"),
  26694. default: true
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26700. {
  26701. fox: {
  26702. height: math.unit(5 + 6 / 12, "feet"),
  26703. weight: math.unit(140, "lb"),
  26704. name: "Fox",
  26705. image: {
  26706. source: "./media/characters/maxene-sita/fox.svg",
  26707. extra: 146 / 138,
  26708. bottom: 2.1 / 148.19
  26709. }
  26710. },
  26711. foxLaying: {
  26712. height: math.unit(1.70, "feet"),
  26713. weight: math.unit(140, "lb"),
  26714. name: "Fox (Laying)",
  26715. image: {
  26716. source: "./media/characters/maxene-sita/fox-laying.svg",
  26717. extra: 910 / 572,
  26718. bottom: 71 / 981
  26719. }
  26720. },
  26721. kitsune: {
  26722. height: math.unit(10, "feet"),
  26723. weight: math.unit(800, "lb"),
  26724. name: "Kitsune",
  26725. image: {
  26726. source: "./media/characters/maxene-sita/kitsune.svg",
  26727. extra: 185 / 176,
  26728. bottom: 4.7 / 189.9
  26729. }
  26730. },
  26731. hellhound: {
  26732. height: math.unit(10, "feet"),
  26733. weight: math.unit(700, "lb"),
  26734. name: "Hellhound",
  26735. image: {
  26736. source: "./media/characters/maxene-sita/hellhound.svg",
  26737. extra: 1600 / 1545,
  26738. bottom: 81 / 1681
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Normal",
  26745. height: math.unit(5 + 6 / 12, "feet"),
  26746. default: true
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26752. {
  26753. front: {
  26754. height: math.unit(3 + 4 / 12, "feet"),
  26755. weight: math.unit(70, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/maia/front.svg",
  26759. extra: 227 / 219.5,
  26760. bottom: 40 / 267
  26761. }
  26762. },
  26763. back: {
  26764. height: math.unit(3 + 4 / 12, "feet"),
  26765. weight: math.unit(70, "lb"),
  26766. name: "Back",
  26767. image: {
  26768. source: "./media/characters/maia/back.svg",
  26769. extra: 237 / 225
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(3 + 4 / 12, "feet"),
  26777. default: true
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(5 + 10 / 12, "feet"),
  26786. weight: math.unit(197, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/jabaro/front.svg",
  26790. extra: 225 / 216,
  26791. bottom: 5.06 / 230
  26792. }
  26793. },
  26794. back: {
  26795. height: math.unit(5 + 10 / 12, "feet"),
  26796. weight: math.unit(197, "lb"),
  26797. name: "Back",
  26798. image: {
  26799. source: "./media/characters/jabaro/back.svg",
  26800. extra: 225 / 219,
  26801. bottom: 1.9 / 227
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(5 + 10 / 12, "feet"),
  26809. default: true
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(5 + 8 / 12, "feet"),
  26818. weight: math.unit(139, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/risa/front.svg",
  26822. extra: 270 / 260,
  26823. bottom: 11.2 / 282
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(5 + 8 / 12, "feet"),
  26828. weight: math.unit(139, "lb"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/risa/back.svg",
  26832. extra: 264 / 255,
  26833. bottom: 4 / 268
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Normal",
  26840. height: math.unit(5 + 8 / 12, "feet"),
  26841. default: true
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(2 + 11 / 12, "feet"),
  26850. weight: math.unit(30, "lb"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/weatley/front.svg",
  26854. bottom: 10.7 / 414,
  26855. extra: 403.5 / 362
  26856. }
  26857. },
  26858. back: {
  26859. height: math.unit(2 + 11 / 12, "feet"),
  26860. weight: math.unit(30, "lb"),
  26861. name: "Back",
  26862. image: {
  26863. source: "./media/characters/weatley/back.svg",
  26864. bottom: 10.7 / 414,
  26865. extra: 403.5 / 362
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(2 + 11 / 12, "feet"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(5 + 2 / 12, "feet"),
  26882. weight: math.unit(50, "kg"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/mercury-crescent/front.svg",
  26886. extra: 1088 / 1033,
  26887. bottom: 18.9 / 1109
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(5 + 2 / 12, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(2, "feet"),
  26904. weight: math.unit(15, "kg"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/diamond-jones/front.svg",
  26908. extra: 727/723,
  26909. bottom: 46/773
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(2, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(3, "feet"),
  26926. weight: math.unit(30, "kg"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/sweet-bit/front.svg",
  26930. extra: 675 / 567,
  26931. bottom: 27.7 / 703
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(3, "feet"),
  26939. default: true
  26940. },
  26941. ]
  26942. ))
  26943. characterMakers.push(() => makeCharacter(
  26944. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26945. {
  26946. side: {
  26947. height: math.unit(9.178, "feet"),
  26948. weight: math.unit(500, "lb"),
  26949. name: "Side",
  26950. image: {
  26951. source: "./media/characters/umbrazen/side.svg",
  26952. extra: 1730 / 1473,
  26953. bottom: 34.6 / 1765
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(9.178, "feet"),
  26961. default: true
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(10, "feet"),
  26970. weight: math.unit(750, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/arlist/front.svg",
  26974. extra: 961 / 778,
  26975. bottom: 6.2 / 986
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Normal",
  26982. height: math.unit(10, "feet"),
  26983. default: true
  26984. },
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26989. {
  26990. front: {
  26991. height: math.unit(5 + 1 / 12, "feet"),
  26992. weight: math.unit(110, "lb"),
  26993. name: "Front",
  26994. image: {
  26995. source: "./media/characters/aradel/front.svg",
  26996. extra: 324 / 303,
  26997. bottom: 3.6 / 329.4
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(5 + 1 / 12, "feet"),
  27005. default: true
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27011. {
  27012. dressed: {
  27013. height: math.unit(3 + 8 / 12, "feet"),
  27014. weight: math.unit(50, "lb"),
  27015. name: "Dressed",
  27016. image: {
  27017. source: "./media/characters/serryn/dressed.svg",
  27018. extra: 1792 / 1656,
  27019. bottom: 43.5 / 1840
  27020. }
  27021. },
  27022. nude: {
  27023. height: math.unit(3 + 8 / 12, "feet"),
  27024. weight: math.unit(50, "lb"),
  27025. name: "Nude",
  27026. image: {
  27027. source: "./media/characters/serryn/nude.svg",
  27028. extra: 1792 / 1656,
  27029. bottom: 43.5 / 1840
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(3 + 8 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(7 + 10 / 12, "feet"),
  27046. weight: math.unit(255, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/xavier-thyme/front.svg",
  27050. extra: 3733 / 3642,
  27051. bottom: 131 / 3869
  27052. }
  27053. },
  27054. frontRaven: {
  27055. height: math.unit(7 + 10 / 12, "feet"),
  27056. weight: math.unit(255, "lb"),
  27057. name: "Front (Raven)",
  27058. image: {
  27059. source: "./media/characters/xavier-thyme/front-raven.svg",
  27060. extra: 4385 / 3642,
  27061. bottom: 131 / 4517
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7 + 10 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(1.6, "m"),
  27078. weight: math.unit(50, "kg"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/kiki/front.svg",
  27082. extra: 4682 / 3610,
  27083. bottom: 115 / 4777
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(1.6, "meters"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(50, "m"),
  27100. weight: math.unit(500, "tonnes"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/ryoko/front.svg",
  27104. extra: 4632 / 3926,
  27105. bottom: 193 / 4823
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(50, "meters"),
  27113. default: true
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(30, "m"),
  27122. weight: math.unit(22, "tonnes"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/elio/front.svg",
  27126. extra: 4582 / 3720,
  27127. bottom: 236 / 4828
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(30, "meters"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(6 + 3 / 12, "feet"),
  27144. weight: math.unit(120, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/azura/front.svg",
  27148. extra: 1149 / 1135,
  27149. bottom: 45 / 1194
  27150. }
  27151. },
  27152. frontClothed: {
  27153. height: math.unit(6 + 3 / 12, "feet"),
  27154. weight: math.unit(120, "lb"),
  27155. name: "Front (Clothed)",
  27156. image: {
  27157. source: "./media/characters/azura/front-clothed.svg",
  27158. extra: 1149 / 1135,
  27159. bottom: 45 / 1194
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(6 + 3 / 12, "feet"),
  27167. default: true
  27168. },
  27169. {
  27170. name: "Macro",
  27171. height: math.unit(20 + 6 / 12, "feet")
  27172. },
  27173. {
  27174. name: "Megamacro",
  27175. height: math.unit(12, "miles")
  27176. },
  27177. {
  27178. name: "Gigamacro",
  27179. height: math.unit(10000, "miles")
  27180. },
  27181. {
  27182. name: "Teramacro",
  27183. height: math.unit(900000, "miles")
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(12, "feet"),
  27192. weight: math.unit(1, "ton"),
  27193. capacity: math.unit(660000, "gallons"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/zeus/front.svg",
  27197. extra: 5005 / 4717,
  27198. bottom: 363 / 5388
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(12, "feet")
  27206. },
  27207. {
  27208. name: "Preferred Size",
  27209. height: math.unit(0.5, "miles"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Giga Horse",
  27214. height: math.unit(300, "miles")
  27215. },
  27216. {
  27217. name: "Riding Planets",
  27218. height: math.unit(30, "megameters")
  27219. },
  27220. {
  27221. name: "Cosmic Giant",
  27222. height: math.unit(3, "zettameters")
  27223. },
  27224. {
  27225. name: "Breeding God",
  27226. height: math.unit(9.92e22, "yottameters")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27232. {
  27233. side: {
  27234. height: math.unit(9, "feet"),
  27235. weight: math.unit(1500, "kg"),
  27236. name: "Side",
  27237. image: {
  27238. source: "./media/characters/fang/side.svg",
  27239. extra: 924 / 866,
  27240. bottom: 47.5 / 972.3
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(9, "feet"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Macro",
  27252. height: math.unit(75 + 6 / 12, "feet")
  27253. },
  27254. {
  27255. name: "Teramacro",
  27256. height: math.unit(50000, "miles")
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(10, "feet"),
  27265. weight: math.unit(2, "tons"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/rekhit/front.svg",
  27269. extra: 2796 / 2590,
  27270. bottom: 225 / 3022
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(10, "feet"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(500, "feet")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(7 + 6.451 / 12, "feet"),
  27291. weight: math.unit(310, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/dahlia-verrick/front.svg",
  27295. extra: 1488 / 1365,
  27296. bottom: 6.2 / 1495
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(7 + 6.451 / 12, "feet"),
  27301. weight: math.unit(310, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/dahlia-verrick/back.svg",
  27305. extra: 1472 / 1351,
  27306. bottom: 5.28 / 1477
  27307. }
  27308. },
  27309. frontBusiness: {
  27310. height: math.unit(7 + 6.451 / 12, "feet"),
  27311. weight: math.unit(200, "lb"),
  27312. name: "Front (Business)",
  27313. image: {
  27314. source: "./media/characters/dahlia-verrick/front-business.svg",
  27315. extra: 1478 / 1381,
  27316. bottom: 5.5 / 1484
  27317. }
  27318. },
  27319. frontCasual: {
  27320. height: math.unit(7 + 6.451 / 12, "feet"),
  27321. weight: math.unit(200, "lb"),
  27322. name: "Front (Casual)",
  27323. image: {
  27324. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27325. extra: 1478 / 1381,
  27326. bottom: 5.5 / 1484
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Travel-Sized",
  27333. height: math.unit(7.45, "inches")
  27334. },
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(7 + 6.451 / 12, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Hitting the Town",
  27342. height: math.unit(37 + 8 / 12, "feet")
  27343. },
  27344. {
  27345. name: "Stomp in the Suburbs",
  27346. height: math.unit(964 + 9.728 / 12, "feet")
  27347. },
  27348. {
  27349. name: "Sit on the City",
  27350. height: math.unit(61747 + 10.592 / 12, "feet")
  27351. },
  27352. {
  27353. name: "Glomp the Globe",
  27354. height: math.unit(252919327 + 4.832 / 12, "feet")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(6 + 4 / 12, "feet"),
  27363. weight: math.unit(320, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/balina-mahigan/front.svg",
  27367. extra: 447 / 428,
  27368. bottom: 18 / 466
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(6 + 4 / 12, "feet"),
  27373. weight: math.unit(320, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/balina-mahigan/back.svg",
  27377. extra: 445 / 428,
  27378. bottom: 4.07 / 448
  27379. }
  27380. },
  27381. arm: {
  27382. height: math.unit(1.88, "feet"),
  27383. name: "Arm",
  27384. image: {
  27385. source: "./media/characters/balina-mahigan/arm.svg"
  27386. }
  27387. },
  27388. backPort: {
  27389. height: math.unit(0.685, "feet"),
  27390. name: "Back Port",
  27391. image: {
  27392. source: "./media/characters/balina-mahigan/back-port.svg"
  27393. }
  27394. },
  27395. hoofpaw: {
  27396. height: math.unit(1.41, "feet"),
  27397. name: "Hoofpaw",
  27398. image: {
  27399. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27400. }
  27401. },
  27402. leftHandBack: {
  27403. height: math.unit(0.938, "feet"),
  27404. name: "Left Hand (Back)",
  27405. image: {
  27406. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27407. }
  27408. },
  27409. leftHandFront: {
  27410. height: math.unit(0.938, "feet"),
  27411. name: "Left Hand (Front)",
  27412. image: {
  27413. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27414. }
  27415. },
  27416. rightHandBack: {
  27417. height: math.unit(0.95, "feet"),
  27418. name: "Right Hand (Back)",
  27419. image: {
  27420. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27421. }
  27422. },
  27423. rightHandFront: {
  27424. height: math.unit(0.95, "feet"),
  27425. name: "Right Hand (Front)",
  27426. image: {
  27427. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(6 + 4 / 12, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(6, "feet"),
  27444. weight: math.unit(320, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/balina-mejeri/front.svg",
  27448. extra: 517 / 488,
  27449. bottom: 44.2 / 561
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(6 + 4 / 12, "feet")
  27457. },
  27458. {
  27459. name: "Business",
  27460. height: math.unit(155, "feet"),
  27461. default: true
  27462. },
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27467. {
  27468. kneeling: {
  27469. height: math.unit(6 + 4 / 12, "feet"),
  27470. weight: math.unit(300 * 20, "lb"),
  27471. name: "Kneeling",
  27472. image: {
  27473. source: "./media/characters/balbarian/kneeling.svg",
  27474. extra: 922 / 862,
  27475. bottom: 42.4 / 965
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Normal",
  27482. height: math.unit(6 + 4 / 12, "feet")
  27483. },
  27484. {
  27485. name: "Treasured",
  27486. height: math.unit(18 + 9 / 12, "feet"),
  27487. default: true
  27488. },
  27489. {
  27490. name: "Macro",
  27491. height: math.unit(900, "feet")
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27497. {
  27498. front: {
  27499. height: math.unit(6 + 4 / 12, "feet"),
  27500. weight: math.unit(325, "lb"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/balina-amarini/front.svg",
  27504. extra: 415 / 403,
  27505. bottom: 19 / 433.4
  27506. }
  27507. },
  27508. back: {
  27509. height: math.unit(6 + 4 / 12, "feet"),
  27510. weight: math.unit(325, "lb"),
  27511. name: "Back",
  27512. image: {
  27513. source: "./media/characters/balina-amarini/back.svg",
  27514. extra: 415 / 403,
  27515. bottom: 13.5 / 432
  27516. }
  27517. },
  27518. overdrive: {
  27519. height: math.unit(6 + 4 / 12, "feet"),
  27520. weight: math.unit(400, "lb"),
  27521. name: "Overdrive",
  27522. image: {
  27523. source: "./media/characters/balina-amarini/overdrive.svg",
  27524. extra: 269 / 259,
  27525. bottom: 12 / 282
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Boom",
  27532. height: math.unit(9 + 10 / 12, "feet"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(280, "feet")
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27543. {
  27544. goddess: {
  27545. height: math.unit(600, "feet"),
  27546. weight: math.unit(2000000, "tons"),
  27547. name: "Goddess",
  27548. image: {
  27549. source: "./media/characters/lady-kubwa/goddess.svg",
  27550. extra: 1240.5 / 1223,
  27551. bottom: 22 / 1263
  27552. }
  27553. },
  27554. goddesser: {
  27555. height: math.unit(900, "feet"),
  27556. weight: math.unit(20000000, "lb"),
  27557. name: "Goddess-er",
  27558. image: {
  27559. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27560. extra: 899 / 888,
  27561. bottom: 12.6 / 912
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Macro",
  27568. height: math.unit(600, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Megamacro",
  27573. height: math.unit(250, "miles")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(7 + 7 / 12, "feet"),
  27582. weight: math.unit(250, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/tala-grovehorn/front.svg",
  27586. extra: 2636 / 2525,
  27587. bottom: 147 / 2781
  27588. }
  27589. },
  27590. back: {
  27591. height: math.unit(7 + 7 / 12, "feet"),
  27592. weight: math.unit(250, "lb"),
  27593. name: "Back",
  27594. image: {
  27595. source: "./media/characters/tala-grovehorn/back.svg",
  27596. extra: 2635 / 2539,
  27597. bottom: 100 / 2732.8
  27598. }
  27599. },
  27600. mouth: {
  27601. height: math.unit(1.15, "feet"),
  27602. name: "Mouth",
  27603. image: {
  27604. source: "./media/characters/tala-grovehorn/mouth.svg"
  27605. }
  27606. },
  27607. dick: {
  27608. height: math.unit(2.36, "feet"),
  27609. name: "Dick",
  27610. image: {
  27611. source: "./media/characters/tala-grovehorn/dick.svg"
  27612. }
  27613. },
  27614. slit: {
  27615. height: math.unit(0.61, "feet"),
  27616. name: "Slit",
  27617. image: {
  27618. source: "./media/characters/tala-grovehorn/slit.svg"
  27619. }
  27620. },
  27621. },
  27622. [
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(7 + 7 / 12, "feet"),
  27630. weight: math.unit(225, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/epona/front.svg",
  27634. extra: 2445 / 2290,
  27635. bottom: 251 / 2696
  27636. }
  27637. },
  27638. back: {
  27639. height: math.unit(7 + 7 / 12, "feet"),
  27640. weight: math.unit(225, "lb"),
  27641. name: "Back",
  27642. image: {
  27643. source: "./media/characters/epona/back.svg",
  27644. extra: 2546 / 2408,
  27645. bottom: 44 / 2589
  27646. }
  27647. },
  27648. genitals: {
  27649. height: math.unit(1.5, "feet"),
  27650. name: "Genitals",
  27651. image: {
  27652. source: "./media/characters/epona/genitals.svg"
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(7 + 7 / 12, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(7, "feet"),
  27669. weight: math.unit(518, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/avia-bloodbourn/front.svg",
  27673. extra: 1466 / 1350,
  27674. bottom: 65 / 1527
  27675. }
  27676. },
  27677. },
  27678. [
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(9.35, "feet"),
  27686. weight: math.unit(600, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/amera/front.svg",
  27690. extra: 891 / 818,
  27691. bottom: 30 / 922.7
  27692. }
  27693. },
  27694. back: {
  27695. height: math.unit(9.35, "feet"),
  27696. weight: math.unit(600, "lb"),
  27697. name: "Back",
  27698. image: {
  27699. source: "./media/characters/amera/back.svg",
  27700. extra: 876 / 824,
  27701. bottom: 6.8 / 884
  27702. }
  27703. },
  27704. dick: {
  27705. height: math.unit(2.14, "feet"),
  27706. name: "Dick",
  27707. image: {
  27708. source: "./media/characters/amera/dick.svg"
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(9.35, "feet"),
  27716. default: true
  27717. },
  27718. ]
  27719. ))
  27720. characterMakers.push(() => makeCharacter(
  27721. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27722. {
  27723. kneeling: {
  27724. height: math.unit(3 + 4 / 12, "feet"),
  27725. weight: math.unit(90, "lb"),
  27726. name: "Kneeling",
  27727. image: {
  27728. source: "./media/characters/rosewen/kneeling.svg",
  27729. extra: 1835 / 1571,
  27730. bottom: 27.7 / 1862
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(3 + 4 / 12, "feet"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(5 + 10 / 12, "feet"),
  27747. weight: math.unit(200, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/sabah/front.svg",
  27751. extra: 849 / 763,
  27752. bottom: 33.9 / 881
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(5 + 10 / 12, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27766. {
  27767. front: {
  27768. height: math.unit(3 + 5 / 12, "feet"),
  27769. weight: math.unit(40, "kg"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/purple-flame/front.svg",
  27773. extra: 1577 / 1412,
  27774. bottom: 97 / 1694
  27775. }
  27776. },
  27777. frontDressed: {
  27778. height: math.unit(3 + 5 / 12, "feet"),
  27779. weight: math.unit(40, "kg"),
  27780. name: "Front (Dressed)",
  27781. image: {
  27782. source: "./media/characters/purple-flame/front-dressed.svg",
  27783. extra: 1577 / 1412,
  27784. bottom: 97 / 1694
  27785. }
  27786. },
  27787. headphones: {
  27788. height: math.unit(0.85, "feet"),
  27789. name: "Headphones",
  27790. image: {
  27791. source: "./media/characters/purple-flame/headphones.svg"
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Really Small",
  27798. height: math.unit(5, "cm")
  27799. },
  27800. {
  27801. name: "Micro",
  27802. height: math.unit(1 + 5 / 12, "feet")
  27803. },
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(3 + 5 / 12, "feet"),
  27807. default: true
  27808. },
  27809. {
  27810. name: "Minimacro",
  27811. height: math.unit(125, "feet")
  27812. },
  27813. {
  27814. name: "Macro",
  27815. height: math.unit(0.5, "miles")
  27816. },
  27817. {
  27818. name: "Megamacro",
  27819. height: math.unit(50, "miles")
  27820. },
  27821. {
  27822. name: "Gigantic",
  27823. height: math.unit(750, "miles")
  27824. },
  27825. {
  27826. name: "Planetary",
  27827. height: math.unit(15000, "miles")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(14, "feet"),
  27836. weight: math.unit(959, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/arsenal/front.svg",
  27840. extra: 2357 / 2157,
  27841. bottom: 93 / 2458
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(14, "feet"),
  27849. default: true
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6, "feet"),
  27858. weight: math.unit(150, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/adira/front.svg",
  27862. extra: 1078 / 1029,
  27863. bottom: 87 / 1166
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Micro",
  27870. height: math.unit(4, "inches"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Macro",
  27875. height: math.unit(50, "feet")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(16, "feet"),
  27884. weight: math.unit(1000, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/grim/front.svg",
  27888. extra: 622 / 614,
  27889. bottom: 18.1 / 642
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(16, "feet"),
  27894. weight: math.unit(1000, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/grim/back.svg",
  27898. extra: 610.6 / 602,
  27899. bottom: 40.8 / 652
  27900. }
  27901. },
  27902. hunched: {
  27903. height: math.unit(9.75, "feet"),
  27904. weight: math.unit(1000, "lb"),
  27905. name: "Hunched",
  27906. image: {
  27907. source: "./media/characters/grim/hunched.svg",
  27908. extra: 304 / 297,
  27909. bottom: 35.4 / 394
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Normal",
  27916. height: math.unit(16, "feet"),
  27917. default: true
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27923. {
  27924. front: {
  27925. height: math.unit(2.3, "meters"),
  27926. weight: math.unit(300, "lb"),
  27927. name: "Front",
  27928. image: {
  27929. source: "./media/characters/sinja/front-sfw.svg",
  27930. extra: 1393 / 1294,
  27931. bottom: 70 / 1463
  27932. }
  27933. },
  27934. frontNsfw: {
  27935. height: math.unit(2.3, "meters"),
  27936. weight: math.unit(300, "lb"),
  27937. name: "Front (NSFW)",
  27938. image: {
  27939. source: "./media/characters/sinja/front-nsfw.svg",
  27940. extra: 1393 / 1294,
  27941. bottom: 70 / 1463
  27942. }
  27943. },
  27944. back: {
  27945. height: math.unit(2.3, "meters"),
  27946. weight: math.unit(300, "lb"),
  27947. name: "Back",
  27948. image: {
  27949. source: "./media/characters/sinja/back.svg",
  27950. extra: 1393 / 1294,
  27951. bottom: 70 / 1463
  27952. }
  27953. },
  27954. head: {
  27955. height: math.unit(1.771, "feet"),
  27956. name: "Head",
  27957. image: {
  27958. source: "./media/characters/sinja/head.svg"
  27959. }
  27960. },
  27961. slit: {
  27962. height: math.unit(0.8, "feet"),
  27963. name: "Slit",
  27964. image: {
  27965. source: "./media/characters/sinja/slit.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(2.3, "meters")
  27973. },
  27974. {
  27975. name: "Macro",
  27976. height: math.unit(91, "meters"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Megamacro",
  27981. height: math.unit(91440, "meters")
  27982. },
  27983. {
  27984. name: "Gigamacro",
  27985. height: math.unit(60960000, "meters")
  27986. },
  27987. {
  27988. name: "Teramacro",
  27989. height: math.unit(9144000000, "meters")
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(1.7, "meters"),
  27998. weight: math.unit(130, "lb"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/kyu/front.svg",
  28002. extra: 415 / 395,
  28003. bottom: 5 / 420
  28004. }
  28005. },
  28006. head: {
  28007. height: math.unit(1.75, "feet"),
  28008. name: "Head",
  28009. image: {
  28010. source: "./media/characters/kyu/head.svg"
  28011. }
  28012. },
  28013. foot: {
  28014. height: math.unit(0.81, "feet"),
  28015. name: "Foot",
  28016. image: {
  28017. source: "./media/characters/kyu/foot.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(1.7, "meters")
  28025. },
  28026. {
  28027. name: "Macro",
  28028. height: math.unit(131, "feet"),
  28029. default: true
  28030. },
  28031. {
  28032. name: "Megamacro",
  28033. height: math.unit(91440, "meters")
  28034. },
  28035. {
  28036. name: "Gigamacro",
  28037. height: math.unit(60960000, "meters")
  28038. },
  28039. {
  28040. name: "Teramacro",
  28041. height: math.unit(9144000000, "meters")
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(7 + 1 / 12, "feet"),
  28050. weight: math.unit(250, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/joey/front.svg",
  28054. extra: 1791 / 1537,
  28055. bottom: 28 / 1816
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Micro",
  28062. height: math.unit(3, "inches")
  28063. },
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(7 + 1 / 12, "feet"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(165, "cm"),
  28076. weight: math.unit(140, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/sam-evans/front.svg",
  28080. extra: 3417 / 3230,
  28081. bottom: 41.3 / 3417
  28082. }
  28083. },
  28084. frontSixTails: {
  28085. height: math.unit(165, "cm"),
  28086. weight: math.unit(140, "lb"),
  28087. name: "Front-six-tails",
  28088. image: {
  28089. source: "./media/characters/sam-evans/front-six-tails.svg",
  28090. extra: 3417 / 3230,
  28091. bottom: 41.3 / 3417
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(165, "cm"),
  28096. weight: math.unit(140, "lb"),
  28097. name: "Back",
  28098. image: {
  28099. source: "./media/characters/sam-evans/back.svg",
  28100. extra: 3227 / 3032,
  28101. bottom: 6.8 / 3234
  28102. }
  28103. },
  28104. face: {
  28105. height: math.unit(0.68, "feet"),
  28106. name: "Face",
  28107. image: {
  28108. source: "./media/characters/sam-evans/face.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(165, "cm"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(100, "meters")
  28121. },
  28122. {
  28123. name: "Macro+",
  28124. height: math.unit(800, "meters")
  28125. },
  28126. {
  28127. name: "Macro++",
  28128. height: math.unit(3, "km")
  28129. },
  28130. {
  28131. name: "Macro+++",
  28132. height: math.unit(30, "km")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(10, "feet"),
  28141. weight: math.unit(750, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/juliet-a/front.svg",
  28145. extra: 1766 / 1720,
  28146. bottom: 43 / 1809
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(10, "feet"),
  28151. weight: math.unit(750, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/juliet-a/back.svg",
  28155. extra: 1781 / 1734,
  28156. bottom: 35 / 1810,
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(10, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Dragon Form",
  28168. height: math.unit(250, "feet")
  28169. },
  28170. {
  28171. name: "Macro",
  28172. height: math.unit(1000, "feet")
  28173. },
  28174. {
  28175. name: "Megamacro",
  28176. height: math.unit(10000, "feet")
  28177. }
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28182. {
  28183. regular: {
  28184. height: math.unit(7 + 3 / 12, "feet"),
  28185. weight: math.unit(260, "lb"),
  28186. name: "Regular",
  28187. image: {
  28188. source: "./media/characters/wild/regular.svg",
  28189. extra: 97.45 / 92,
  28190. bottom: 6.8 / 104.3
  28191. }
  28192. },
  28193. biggums: {
  28194. height: math.unit(8 + 6 / 12, "feet"),
  28195. weight: math.unit(425, "lb"),
  28196. name: "Biggums",
  28197. image: {
  28198. source: "./media/characters/wild/biggums.svg",
  28199. extra: 97.45 / 92,
  28200. bottom: 7.5 / 132.34
  28201. }
  28202. },
  28203. mawRegular: {
  28204. height: math.unit(1.24, "feet"),
  28205. name: "Maw (Regular)",
  28206. image: {
  28207. source: "./media/characters/wild/maw.svg"
  28208. }
  28209. },
  28210. mawBiggums: {
  28211. height: math.unit(1.47, "feet"),
  28212. name: "Maw (Biggums)",
  28213. image: {
  28214. source: "./media/characters/wild/maw.svg"
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(7 + 3 / 12, "feet"),
  28222. default: true
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28228. {
  28229. front: {
  28230. height: math.unit(2.5, "meters"),
  28231. weight: math.unit(200, "kg"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/vidar/front.svg",
  28235. extra: 2994 / 2795,
  28236. bottom: 56 / 3061
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(2.5, "meters"),
  28241. weight: math.unit(200, "kg"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/vidar/back.svg",
  28245. extra: 3131 / 2928,
  28246. bottom: 13.5 / 3141.5
  28247. }
  28248. },
  28249. feral: {
  28250. height: math.unit(2.5, "meters"),
  28251. weight: math.unit(2000, "kg"),
  28252. name: "Feral",
  28253. image: {
  28254. source: "./media/characters/vidar/feral.svg",
  28255. extra: 2790 / 1765,
  28256. bottom: 6 / 2796
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(2.5, "meters"),
  28264. default: true
  28265. },
  28266. {
  28267. name: "Macro",
  28268. height: math.unit(100, "meters")
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(5 + 9 / 12, "feet"),
  28277. weight: math.unit(120, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/ash/front.svg",
  28281. extra: 2189 / 1961,
  28282. bottom: 5.2 / 2194
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(5 + 9 / 12, "feet"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(9, "feet"),
  28299. weight: math.unit(10000, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/gygabite/front.svg",
  28303. bottom: 31.7 / 537.8,
  28304. extra: 505 / 370
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(9, "feet"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(12, "feet"),
  28321. weight: math.unit(35000, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/p0tat0/front.svg",
  28325. extra: 1065 / 921,
  28326. bottom: 55.7 / 1121.25
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(12, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28340. {
  28341. side: {
  28342. height: math.unit(6.5, "feet"),
  28343. weight: math.unit(800, "lb"),
  28344. name: "Side",
  28345. image: {
  28346. source: "./media/characters/dusk/side.svg",
  28347. extra: 615 / 373,
  28348. bottom: 53 / 664
  28349. }
  28350. },
  28351. sitting: {
  28352. height: math.unit(7, "feet"),
  28353. weight: math.unit(800, "lb"),
  28354. name: "Sitting",
  28355. image: {
  28356. source: "./media/characters/dusk/sitting.svg",
  28357. extra: 753 / 425,
  28358. bottom: 33 / 774
  28359. }
  28360. },
  28361. head: {
  28362. height: math.unit(6.1, "feet"),
  28363. name: "Head",
  28364. image: {
  28365. source: "./media/characters/dusk/head.svg"
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(7, "feet"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28379. {
  28380. front: {
  28381. height: math.unit(15, "feet"),
  28382. weight: math.unit(7000, "lb"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/jay-direwolf/front.svg",
  28386. extra: 1810 / 1732,
  28387. bottom: 66 / 1892
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(15, "feet"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(4 + 9 / 12, "feet"),
  28404. weight: math.unit(130, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/anchovie/front.svg",
  28408. extra: 382 / 350,
  28409. bottom: 25 / 409
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(4 + 9 / 12, "feet"),
  28414. weight: math.unit(130, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/anchovie/back.svg",
  28418. extra: 385 / 352,
  28419. bottom: 16.6 / 402
  28420. }
  28421. },
  28422. frontDressed: {
  28423. height: math.unit(4 + 9 / 12, "feet"),
  28424. weight: math.unit(130, "lb"),
  28425. name: "Front (Dressed)",
  28426. image: {
  28427. source: "./media/characters/anchovie/front-dressed.svg",
  28428. extra: 382 / 350,
  28429. bottom: 25 / 409
  28430. }
  28431. },
  28432. backDressed: {
  28433. height: math.unit(4 + 9 / 12, "feet"),
  28434. weight: math.unit(130, "lb"),
  28435. name: "Back (Dressed)",
  28436. image: {
  28437. source: "./media/characters/anchovie/back-dressed.svg",
  28438. extra: 385 / 352,
  28439. bottom: 16.6 / 402
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Micro",
  28446. height: math.unit(6.4, "inches")
  28447. },
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(4 + 9 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(2, "meters"),
  28460. weight: math.unit(180, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/acidrenamon/front.svg",
  28464. extra: 987 / 890,
  28465. bottom: 22.8 / 1009
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(2, "meters"),
  28470. weight: math.unit(180, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/acidrenamon/back.svg",
  28474. extra: 983 / 891,
  28475. bottom: 8.4 / 992
  28476. }
  28477. },
  28478. head: {
  28479. height: math.unit(1.92, "feet"),
  28480. name: "Head",
  28481. image: {
  28482. source: "./media/characters/acidrenamon/head.svg"
  28483. }
  28484. },
  28485. rump: {
  28486. height: math.unit(1.72, "feet"),
  28487. name: "Rump",
  28488. image: {
  28489. source: "./media/characters/acidrenamon/rump.svg"
  28490. }
  28491. },
  28492. tail: {
  28493. height: math.unit(4.2, "feet"),
  28494. name: "Tail",
  28495. image: {
  28496. source: "./media/characters/acidrenamon/tail.svg"
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(2, "meters"),
  28504. default: true
  28505. },
  28506. {
  28507. name: "Minimacro",
  28508. height: math.unit(7, "meters")
  28509. },
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(200, "meters")
  28513. },
  28514. {
  28515. name: "Gigamacro",
  28516. height: math.unit(0.2, "earths")
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28522. {
  28523. front: {
  28524. height: math.unit(152, "feet"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/kenzie-lee/front.svg",
  28528. extra: 1869/1774,
  28529. bottom: 128/1997
  28530. }
  28531. },
  28532. side: {
  28533. height: math.unit(86, "feet"),
  28534. name: "Side",
  28535. image: {
  28536. source: "./media/characters/kenzie-lee/side.svg",
  28537. extra: 930/815,
  28538. bottom: 177/1107
  28539. }
  28540. },
  28541. paw: {
  28542. height: math.unit(15, "feet"),
  28543. name: "Paw",
  28544. image: {
  28545. source: "./media/characters/kenzie-lee/paw.svg"
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Kenzie Flea",
  28552. height: math.unit(2, "mm"),
  28553. default: true
  28554. },
  28555. {
  28556. name: "Micro",
  28557. height: math.unit(2, "inches")
  28558. },
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(152, "feet")
  28562. },
  28563. {
  28564. name: "Megamacro",
  28565. height: math.unit(7, "miles")
  28566. },
  28567. {
  28568. name: "Gigamacro",
  28569. height: math.unit(8000, "miles")
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(6, "feet"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/withers/front.svg",
  28581. extra: 1935/1760,
  28582. bottom: 72/2007
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(6, "feet"),
  28587. name: "Back",
  28588. image: {
  28589. source: "./media/characters/withers/back.svg",
  28590. extra: 1944/1792,
  28591. bottom: 12/1956
  28592. }
  28593. },
  28594. dressed: {
  28595. height: math.unit(6, "feet"),
  28596. name: "Dressed",
  28597. image: {
  28598. source: "./media/characters/withers/dressed.svg",
  28599. extra: 1937/1765,
  28600. bottom: 73/2010
  28601. }
  28602. },
  28603. phase1: {
  28604. height: math.unit(1.1, "feet"),
  28605. name: "Phase 1",
  28606. image: {
  28607. source: "./media/characters/withers/phase-1.svg",
  28608. extra: 1885/1232,
  28609. bottom: 0/1885
  28610. }
  28611. },
  28612. phase2: {
  28613. height: math.unit(1.05, "feet"),
  28614. name: "Phase 2",
  28615. image: {
  28616. source: "./media/characters/withers/phase-2.svg",
  28617. extra: 1792/1090,
  28618. bottom: 0/1792
  28619. }
  28620. },
  28621. partyWipe: {
  28622. height: math.unit(1.1, "feet"),
  28623. name: "Party Wipe",
  28624. image: {
  28625. source: "./media/characters/withers/party-wipe.svg",
  28626. extra: 1864/1207,
  28627. bottom: 0/1864
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Macro",
  28634. height: math.unit(167, "feet"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Megamacro",
  28639. height: math.unit(15, "miles")
  28640. }
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(6 + 7 / 12, "feet"),
  28648. weight: math.unit(250, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/nemoskii/front.svg",
  28652. extra: 2270 / 1734,
  28653. bottom: 86 / 2354
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(6 + 7 / 12, "feet"),
  28658. weight: math.unit(250, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/nemoskii/back.svg",
  28662. extra: 1845 / 1788,
  28663. bottom: 10.5 / 1852
  28664. }
  28665. },
  28666. head: {
  28667. height: math.unit(1.31, "feet"),
  28668. name: "Head",
  28669. image: {
  28670. source: "./media/characters/nemoskii/head.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Micro",
  28677. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28678. },
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(6 + 7 / 12, "feet"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Macro",
  28686. height: math.unit((6 + 7 / 12) * 150, "feet")
  28687. },
  28688. {
  28689. name: "Macro+",
  28690. height: math.unit((6 + 7 / 12) * 500, "feet")
  28691. },
  28692. {
  28693. name: "Megamacro",
  28694. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(1, "mile"),
  28703. weight: math.unit(265261.9, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/shui/front.svg",
  28707. extra: 1633 / 1564,
  28708. bottom: 91.5 / 1726
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Macro",
  28715. height: math.unit(1, "mile"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(12 + 6 / 12, "feet"),
  28725. weight: math.unit(1342, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/arokh-takakura/front.svg",
  28729. extra: 1089 / 1043,
  28730. bottom: 77.4 / 1176.7
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(12 + 6 / 12, "feet"),
  28735. weight: math.unit(1342, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/arokh-takakura/back.svg",
  28739. extra: 1046 / 1019,
  28740. bottom: 102 / 1150
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Big",
  28747. height: math.unit(12 + 6 / 12, "feet"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(5 + 6 / 12, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/theo/front.svg",
  28761. extra: 1184 / 1131,
  28762. bottom: 7.4 / 1191
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Micro",
  28769. height: math.unit(5, "inches")
  28770. },
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(5 + 6 / 12, "feet"),
  28774. default: true
  28775. },
  28776. ]
  28777. ))
  28778. characterMakers.push(() => makeCharacter(
  28779. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28780. {
  28781. front: {
  28782. height: math.unit(5 + 9 / 12, "feet"),
  28783. weight: math.unit(130, "lb"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/cecelia-swift/front.svg",
  28787. extra: 502 / 484,
  28788. bottom: 23 / 523
  28789. }
  28790. },
  28791. back: {
  28792. height: math.unit(5 + 9 / 12, "feet"),
  28793. weight: math.unit(130, "lb"),
  28794. name: "Back",
  28795. image: {
  28796. source: "./media/characters/cecelia-swift/back.svg",
  28797. extra: 499 / 485,
  28798. bottom: 12 / 511
  28799. }
  28800. },
  28801. head: {
  28802. height: math.unit(0.90, "feet"),
  28803. name: "Head",
  28804. image: {
  28805. source: "./media/characters/cecelia-swift/head.svg"
  28806. }
  28807. },
  28808. rump: {
  28809. height: math.unit(1.75, "feet"),
  28810. name: "Rump",
  28811. image: {
  28812. source: "./media/characters/cecelia-swift/rump.svg"
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Normal",
  28819. height: math.unit(5 + 9 / 12, "feet"),
  28820. default: true
  28821. },
  28822. {
  28823. name: "Big",
  28824. height: math.unit(50, "feet")
  28825. },
  28826. {
  28827. name: "Macro",
  28828. height: math.unit(100, "feet")
  28829. },
  28830. {
  28831. name: "Macro+",
  28832. height: math.unit(500, "feet")
  28833. },
  28834. {
  28835. name: "Macro++",
  28836. height: math.unit(1000, "feet")
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/kaunan/front.svg",
  28849. extra: 2890 / 2523,
  28850. bottom: 49 / 2939
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Macro",
  28857. height: math.unit(150, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(175, "cm"),
  28867. weight: math.unit(60, "kg"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/fei/front.svg",
  28871. extra: 1873/1723,
  28872. bottom: 53/1926
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Mortal",
  28879. height: math.unit(175, "cm")
  28880. },
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(3500, "m"),
  28884. default: true
  28885. },
  28886. {
  28887. name: "Stroll",
  28888. height: math.unit(17.5, "km")
  28889. },
  28890. {
  28891. name: "Showoff",
  28892. height: math.unit(175, "km")
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(7, "feet"),
  28901. weight: math.unit(1000, "kg"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/edrax/front.svg",
  28905. extra: 2838 / 2550,
  28906. bottom: 130 / 2968
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Small",
  28913. height: math.unit(7, "feet")
  28914. },
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(1500, "meters")
  28918. },
  28919. {
  28920. name: "Mega",
  28921. height: math.unit(12000000, "km"),
  28922. default: true
  28923. },
  28924. {
  28925. name: "Megamacro",
  28926. height: math.unit(10600000, "lightyears")
  28927. },
  28928. {
  28929. name: "Hypermacro",
  28930. height: math.unit(256, "yottameters")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(10, "feet"),
  28939. weight: math.unit(750, "lb"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/clove/front.svg",
  28943. extra: 1918/1751,
  28944. bottom: 52/1970
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(10, "feet"),
  28949. weight: math.unit(750, "lb"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/clove/back.svg",
  28953. extra: 1912/1747,
  28954. bottom: 50/1962
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(10, "feet"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(4, "feet"),
  28971. weight: math.unit(50, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/alex-rabbit/front.svg",
  28975. extra: 507 / 458,
  28976. bottom: 18.5 / 527
  28977. }
  28978. },
  28979. back: {
  28980. height: math.unit(4, "feet"),
  28981. weight: math.unit(50, "lb"),
  28982. name: "Back",
  28983. image: {
  28984. source: "./media/characters/alex-rabbit/back.svg",
  28985. extra: 502 / 460,
  28986. bottom: 18.9 / 521
  28987. }
  28988. },
  28989. },
  28990. [
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(4, "feet"),
  28994. default: true
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29000. {
  29001. front: {
  29002. height: math.unit(1 + 3 / 12, "feet"),
  29003. weight: math.unit(80, "lb"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/zander-rose/front.svg",
  29007. extra: 916 / 797,
  29008. bottom: 17 / 933
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(1 + 3 / 12, "feet"),
  29013. weight: math.unit(80, "lb"),
  29014. name: "Back",
  29015. image: {
  29016. source: "./media/characters/zander-rose/back.svg",
  29017. extra: 903 / 779,
  29018. bottom: 31 / 934
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(1 + 3 / 12, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29032. {
  29033. anthro: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Anthro",
  29037. image: {
  29038. source: "./media/characters/razz/anthro.svg",
  29039. extra: 1437 / 1343,
  29040. bottom: 48 / 1485
  29041. }
  29042. },
  29043. feral: {
  29044. height: math.unit(6, "feet"),
  29045. weight: math.unit(150, "lb"),
  29046. name: "Feral",
  29047. image: {
  29048. source: "./media/characters/razz/feral.svg",
  29049. extra: 2569 / 1385,
  29050. bottom: 95 / 2664
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(6, "feet"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29064. {
  29065. front: {
  29066. height: math.unit(9 + 4 / 12, "feet"),
  29067. weight: math.unit(500, "lb"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/morrigan/front.svg",
  29071. extra: 2707 / 2579,
  29072. bottom: 156 / 2863
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(9 + 4 / 12, "feet"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(5, "stories"),
  29089. weight: math.unit(4000, "lb"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/jenene/front.svg",
  29093. extra: 1780 / 1710,
  29094. bottom: 57 / 1837
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(5, "stories"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29108. {
  29109. taurSfw: {
  29110. height: math.unit(10, "meters"),
  29111. weight: math.unit(17500, "kg"),
  29112. name: "Taur",
  29113. image: {
  29114. source: "./media/characters/faey/taur-sfw.svg",
  29115. extra: 1200 / 968,
  29116. bottom: 41 / 1241
  29117. }
  29118. },
  29119. chestmaw: {
  29120. height: math.unit(2.01, "meters"),
  29121. name: "Chestmaw",
  29122. image: {
  29123. source: "./media/characters/faey/chestmaw.svg"
  29124. }
  29125. },
  29126. foot: {
  29127. height: math.unit(2.43, "meters"),
  29128. name: "Foot",
  29129. image: {
  29130. source: "./media/characters/faey/foot.svg"
  29131. }
  29132. },
  29133. jaws: {
  29134. height: math.unit(1.66, "meters"),
  29135. name: "Jaws",
  29136. image: {
  29137. source: "./media/characters/faey/jaws.svg"
  29138. }
  29139. },
  29140. tongues: {
  29141. height: math.unit(2.01, "meters"),
  29142. name: "Tongues",
  29143. image: {
  29144. source: "./media/characters/faey/tongues.svg"
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Small",
  29151. height: math.unit(10, "meters"),
  29152. default: true
  29153. },
  29154. {
  29155. name: "Big",
  29156. height: math.unit(500000, "km")
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(7, "feet"),
  29165. weight: math.unit(275, "lb"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/roku/front.svg",
  29169. extra: 903 / 878,
  29170. bottom: 37 / 940
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(7, "feet"),
  29178. default: true
  29179. },
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(500, "feet")
  29183. },
  29184. {
  29185. name: "Megamacro",
  29186. height: math.unit(200, "miles")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(6 + 2 / 12, "feet"),
  29195. weight: math.unit(150, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/lira/front.svg",
  29199. extra: 1727 / 1605,
  29200. bottom: 26 / 1753
  29201. }
  29202. },
  29203. back: {
  29204. height: math.unit(6 + 2 / 12, "feet"),
  29205. weight: math.unit(150, "lb"),
  29206. name: "Back",
  29207. image: {
  29208. source: "./media/characters/lira/back.svg",
  29209. extra: 1713/1621,
  29210. bottom: 20/1733
  29211. }
  29212. },
  29213. hand: {
  29214. height: math.unit(0.75, "feet"),
  29215. name: "Hand",
  29216. image: {
  29217. source: "./media/characters/lira/hand.svg"
  29218. }
  29219. },
  29220. maw: {
  29221. height: math.unit(0.65, "feet"),
  29222. name: "Maw",
  29223. image: {
  29224. source: "./media/characters/lira/maw.svg"
  29225. }
  29226. },
  29227. pawDigi: {
  29228. height: math.unit(1.6, "feet"),
  29229. name: "Paw Digi",
  29230. image: {
  29231. source: "./media/characters/lira/paw-digi.svg"
  29232. }
  29233. },
  29234. pawPlanti: {
  29235. height: math.unit(1.4, "feet"),
  29236. name: "Paw Planti",
  29237. image: {
  29238. source: "./media/characters/lira/paw-planti.svg"
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(6 + 2 / 12, "feet"),
  29246. default: true
  29247. },
  29248. {
  29249. name: "Macro",
  29250. height: math.unit(100, "feet")
  29251. },
  29252. {
  29253. name: "Macro²",
  29254. height: math.unit(1600, "feet")
  29255. },
  29256. {
  29257. name: "Planetary",
  29258. height: math.unit(20, "earths")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(6, "feet"),
  29267. weight: math.unit(150, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/hadjet/front.svg",
  29271. extra: 1480 / 1346,
  29272. bottom: 26 / 1506
  29273. }
  29274. },
  29275. frontNsfw: {
  29276. height: math.unit(6, "feet"),
  29277. weight: math.unit(150, "lb"),
  29278. name: "Front (NSFW)",
  29279. image: {
  29280. source: "./media/characters/hadjet/front-nsfw.svg",
  29281. extra: 1440 / 1358,
  29282. bottom: 52 / 1492
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(10, "stories"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Megamacro",
  29294. height: math.unit(1.5, "miles")
  29295. },
  29296. {
  29297. name: "Megamacro+",
  29298. height: math.unit(5, "miles")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29304. {
  29305. side: {
  29306. height: math.unit(106, "feet"),
  29307. weight: math.unit(500, "tonnes"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/kodran/side.svg",
  29311. extra: 553 / 480,
  29312. bottom: 33 / 586
  29313. }
  29314. },
  29315. front: {
  29316. height: math.unit(132, "feet"),
  29317. weight: math.unit(500, "tonnes"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/kodran/front.svg",
  29321. extra: 667 / 643,
  29322. bottom: 42 / 709
  29323. }
  29324. },
  29325. flying: {
  29326. height: math.unit(350, "feet"),
  29327. weight: math.unit(500, "tonnes"),
  29328. name: "Flying",
  29329. image: {
  29330. source: "./media/characters/kodran/flying.svg"
  29331. }
  29332. },
  29333. foot: {
  29334. height: math.unit(33, "feet"),
  29335. name: "Foot",
  29336. image: {
  29337. source: "./media/characters/kodran/foot.svg"
  29338. }
  29339. },
  29340. footFront: {
  29341. height: math.unit(19, "feet"),
  29342. name: "Foot (Front)",
  29343. image: {
  29344. source: "./media/characters/kodran/foot-front.svg",
  29345. extra: 261 / 261,
  29346. bottom: 91 / 352
  29347. }
  29348. },
  29349. headFront: {
  29350. height: math.unit(53, "feet"),
  29351. name: "Head (Front)",
  29352. image: {
  29353. source: "./media/characters/kodran/head-front.svg"
  29354. }
  29355. },
  29356. headSide: {
  29357. height: math.unit(65, "feet"),
  29358. name: "Head (Side)",
  29359. image: {
  29360. source: "./media/characters/kodran/head-side.svg"
  29361. }
  29362. },
  29363. throat: {
  29364. height: math.unit(79, "feet"),
  29365. name: "Throat",
  29366. image: {
  29367. source: "./media/characters/kodran/throat.svg"
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Large",
  29374. height: math.unit(106, "feet"),
  29375. default: true
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29381. {
  29382. side: {
  29383. height: math.unit(11, "feet"),
  29384. weight: math.unit(150, "lb"),
  29385. name: "Side",
  29386. image: {
  29387. source: "./media/characters/pyxaron/side.svg",
  29388. extra: 305 / 195,
  29389. bottom: 17 / 322
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(11, "feet"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(6, "feet"),
  29406. weight: math.unit(150, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/meep/front.svg",
  29410. extra: 88 / 80,
  29411. bottom: 6 / 94
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Fun Sized",
  29418. height: math.unit(2, "inches"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Friend Sized",
  29423. height: math.unit(8, "inches")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(15, "feet"),
  29432. weight: math.unit(2500, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/holly-rabbit/front.svg",
  29436. extra: 1433 / 1233,
  29437. bottom: 125 / 1558
  29438. }
  29439. },
  29440. dick: {
  29441. height: math.unit(4.6, "feet"),
  29442. name: "Dick",
  29443. image: {
  29444. source: "./media/characters/holly-rabbit/dick.svg"
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(15, "feet"),
  29452. default: true
  29453. },
  29454. {
  29455. name: "Macro",
  29456. height: math.unit(250, "feet")
  29457. },
  29458. {
  29459. name: "Macro+",
  29460. height: math.unit(2500, "feet")
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(3.02, "meters"),
  29469. weight: math.unit(500, "kg"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/drena/front.svg",
  29473. extra: 282 / 243,
  29474. bottom: 8 / 290
  29475. }
  29476. },
  29477. side: {
  29478. height: math.unit(3.02, "meters"),
  29479. weight: math.unit(500, "kg"),
  29480. name: "Side",
  29481. image: {
  29482. source: "./media/characters/drena/side.svg",
  29483. extra: 280 / 245,
  29484. bottom: 10 / 290
  29485. }
  29486. },
  29487. back: {
  29488. height: math.unit(3.02, "meters"),
  29489. weight: math.unit(500, "kg"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/drena/back.svg",
  29493. extra: 278 / 243,
  29494. bottom: 2 / 280
  29495. }
  29496. },
  29497. foot: {
  29498. height: math.unit(0.75, "meters"),
  29499. name: "Foot",
  29500. image: {
  29501. source: "./media/characters/drena/foot.svg"
  29502. }
  29503. },
  29504. maw: {
  29505. height: math.unit(0.82, "meters"),
  29506. name: "Maw",
  29507. image: {
  29508. source: "./media/characters/drena/maw.svg"
  29509. }
  29510. },
  29511. eating: {
  29512. height: math.unit(0.75, "meters"),
  29513. name: "Eating",
  29514. image: {
  29515. source: "./media/characters/drena/eating.svg"
  29516. }
  29517. },
  29518. rump: {
  29519. height: math.unit(0.93, "meters"),
  29520. name: "Rump",
  29521. image: {
  29522. source: "./media/characters/drena/rump.svg"
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(3.02, "meters"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(6 + 4 / 12, "feet"),
  29539. weight: math.unit(250, "lb"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/remmyzilla/front.svg",
  29543. extra: 4033 / 3588,
  29544. bottom: 123 / 4156
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6 + 4 / 12, "feet"),
  29549. weight: math.unit(250, "lb"),
  29550. name: "Back",
  29551. image: {
  29552. source: "./media/characters/remmyzilla/back.svg",
  29553. extra: 2687 / 2555,
  29554. bottom: 48 / 2735
  29555. }
  29556. },
  29557. paw: {
  29558. height: math.unit(1.73, "feet"),
  29559. name: "Paw",
  29560. image: {
  29561. source: "./media/characters/remmyzilla/paw.svg"
  29562. }
  29563. },
  29564. maw: {
  29565. height: math.unit(1.73, "feet"),
  29566. name: "Maw",
  29567. image: {
  29568. source: "./media/characters/remmyzilla/maw.svg"
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(6 + 4 / 12, "feet")
  29576. },
  29577. {
  29578. name: "Minimacro",
  29579. height: math.unit(12 + 8 / 12, "feet")
  29580. },
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(640, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Megamacro",
  29588. height: math.unit(6400, "feet")
  29589. },
  29590. {
  29591. name: "Gigamacro",
  29592. height: math.unit(64000, "miles")
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(2.5, "meters"),
  29601. weight: math.unit(300, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/lawrence/front.svg",
  29605. extra: 357 / 335,
  29606. bottom: 30 / 387
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(2.5, "meters"),
  29611. weight: math.unit(300, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/lawrence/back.svg",
  29615. extra: 357 / 338,
  29616. bottom: 16 / 373
  29617. }
  29618. },
  29619. head: {
  29620. height: math.unit(0.9, "meter"),
  29621. name: "Head",
  29622. image: {
  29623. source: "./media/characters/lawrence/head.svg"
  29624. }
  29625. },
  29626. maw: {
  29627. height: math.unit(0.7, "meter"),
  29628. name: "Maw",
  29629. image: {
  29630. source: "./media/characters/lawrence/maw.svg"
  29631. }
  29632. },
  29633. footBottom: {
  29634. height: math.unit(0.5, "meter"),
  29635. name: "Foot (Bottom)",
  29636. image: {
  29637. source: "./media/characters/lawrence/foot-bottom.svg"
  29638. }
  29639. },
  29640. footTop: {
  29641. height: math.unit(0.5, "meter"),
  29642. name: "Foot (Top)",
  29643. image: {
  29644. source: "./media/characters/lawrence/foot-top.svg"
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(2.5, "meters"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(95, "meters")
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(150, "km")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29666. {
  29667. front: {
  29668. height: math.unit(4.2, "meters"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/sydney/front.svg",
  29672. extra: 1323 / 1277,
  29673. bottom: 111 / 1434
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(4.2, "meters"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29687. {
  29688. back: {
  29689. height: math.unit(201, "feet"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/jessica/back.svg",
  29693. extra: 273 / 259,
  29694. bottom: 7 / 280
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(201, "feet"),
  29702. default: true
  29703. },
  29704. {
  29705. name: "Megamacro",
  29706. height: math.unit(8, "miles")
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29712. {
  29713. side: {
  29714. height: math.unit(5.6, "m"),
  29715. weight: math.unit(8000, "kg"),
  29716. name: "Side",
  29717. image: {
  29718. source: "./media/characters/victoria/side.svg",
  29719. extra: 1542/1229,
  29720. bottom: 124/1666
  29721. }
  29722. },
  29723. maw: {
  29724. height: math.unit(7.14, "feet"),
  29725. name: "Maw",
  29726. image: {
  29727. source: "./media/characters/victoria/maw.svg"
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(5.6, "m"),
  29735. default: true
  29736. },
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29741. {
  29742. front: {
  29743. height: math.unit(5 + 6 / 12, "feet"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/cat/front.svg",
  29747. extra: 1449/1295,
  29748. bottom: 34/1483
  29749. },
  29750. form: "cat",
  29751. default: true
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 6 / 12, "feet"),
  29755. name: "Back",
  29756. image: {
  29757. source: "./media/characters/cat/back.svg",
  29758. extra: 1466/1301,
  29759. bottom: 19/1485
  29760. },
  29761. form: "cat"
  29762. },
  29763. taur: {
  29764. height: math.unit(7, "feet"),
  29765. name: "Taur",
  29766. image: {
  29767. source: "./media/characters/cat/taur.svg",
  29768. extra: 1389/1233,
  29769. bottom: 83/1472
  29770. },
  29771. form: "taur",
  29772. default: true
  29773. },
  29774. lucarioFront: {
  29775. height: math.unit(4, "feet"),
  29776. name: "Lucario (Front)",
  29777. image: {
  29778. source: "./media/characters/cat/lucario-front.svg",
  29779. extra: 1149/1019,
  29780. bottom: 84/1233
  29781. },
  29782. form: "lucario",
  29783. default: true
  29784. },
  29785. lucarioBack: {
  29786. height: math.unit(4, "feet"),
  29787. name: "Lucario (Back)",
  29788. image: {
  29789. source: "./media/characters/cat/lucario-back.svg",
  29790. extra: 1190/1059,
  29791. bottom: 33/1223
  29792. },
  29793. form: "lucario"
  29794. },
  29795. megaLucario: {
  29796. height: math.unit(4, "feet"),
  29797. name: "Mega Lucario",
  29798. image: {
  29799. source: "./media/characters/cat/mega-lucario.svg",
  29800. extra: 1515 / 1319,
  29801. bottom: 63 / 1578
  29802. },
  29803. form: "lucario"
  29804. },
  29805. nickit: {
  29806. height: math.unit(2, "feet"),
  29807. name: "Nickit",
  29808. image: {
  29809. source: "./media/characters/cat/nickit.svg",
  29810. extra: 1980 / 1585,
  29811. bottom: 102 / 2082
  29812. },
  29813. form: "nickit",
  29814. default: true
  29815. },
  29816. lopunnyFront: {
  29817. height: math.unit(5, "feet"),
  29818. name: "Lopunny (Front)",
  29819. image: {
  29820. source: "./media/characters/cat/lopunny-front.svg",
  29821. extra: 1782 / 1469,
  29822. bottom: 38 / 1820
  29823. },
  29824. form: "lopunny",
  29825. default: true
  29826. },
  29827. lopunnyBack: {
  29828. height: math.unit(5, "feet"),
  29829. name: "Lopunny (Back)",
  29830. image: {
  29831. source: "./media/characters/cat/lopunny-back.svg",
  29832. extra: 1660 / 1490,
  29833. bottom: 25 / 1685
  29834. },
  29835. form: "lopunny"
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Really small",
  29841. height: math.unit(1, "nm")
  29842. },
  29843. {
  29844. name: "Micro",
  29845. height: math.unit(5, "inches")
  29846. },
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(5 + 6 / 12, "feet"),
  29850. default: true
  29851. },
  29852. {
  29853. name: "Macro",
  29854. height: math.unit(50, "feet")
  29855. },
  29856. {
  29857. name: "Macro+",
  29858. height: math.unit(150, "feet")
  29859. },
  29860. {
  29861. name: "Megamacro",
  29862. height: math.unit(100, "miles")
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(63.4, "meters"),
  29871. weight: math.unit(3.28349e+6, "kilograms"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/kirina-violet/front.svg",
  29875. extra: 2812 / 2725,
  29876. bottom: 0 / 2812
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(63.4, "meters"),
  29881. weight: math.unit(3.28349e+6, "kilograms"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/kirina-violet/back.svg",
  29885. extra: 2812 / 2725,
  29886. bottom: 0 / 2812
  29887. }
  29888. },
  29889. mouth: {
  29890. height: math.unit(4.35, "meters"),
  29891. name: "Mouth",
  29892. image: {
  29893. source: "./media/characters/kirina-violet/mouth.svg"
  29894. }
  29895. },
  29896. paw: {
  29897. height: math.unit(5.6, "meters"),
  29898. name: "Paw",
  29899. image: {
  29900. source: "./media/characters/kirina-violet/paw.svg"
  29901. }
  29902. },
  29903. tail: {
  29904. height: math.unit(18, "meters"),
  29905. name: "Tail",
  29906. image: {
  29907. source: "./media/characters/kirina-violet/tail.svg"
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Macro",
  29914. height: math.unit(63.4, "meters"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(75, "feet"),
  29924. name: "Front",
  29925. image: {
  29926. source: "./media/characters/cat-gigachu/front.svg",
  29927. extra: 1239/1027,
  29928. bottom: 32/1271
  29929. }
  29930. },
  29931. back: {
  29932. height: math.unit(75, "feet"),
  29933. name: "Back",
  29934. image: {
  29935. source: "./media/characters/cat-gigachu/back.svg",
  29936. extra: 1229/1030,
  29937. bottom: 9/1238
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Dynamax",
  29944. height: math.unit(75, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(6, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/sfaiyan/front.svg",
  29958. extra: 999 / 978,
  29959. bottom: 5 / 1004
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(1.82, "meters")
  29967. },
  29968. {
  29969. name: "Giant",
  29970. height: math.unit(2.27, "km"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(179, "cm"),
  29980. weight: math.unit(100, "kg"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/raunehkeli/front.svg",
  29984. extra: 1934 / 1926,
  29985. bottom: 0 / 1934
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(179, "cm")
  29993. },
  29994. {
  29995. name: "Maximum",
  29996. height: math.unit(575, "meters"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(6, "feet"),
  30006. weight: math.unit(150, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30010. extra: 2625 / 2518,
  30011. bottom: 60 / 2685
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Normal",
  30018. height: math.unit(6 + 2 / 12, "feet")
  30019. },
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(1180, "feet"),
  30023. default: true
  30024. },
  30025. ]
  30026. ))
  30027. characterMakers.push(() => makeCharacter(
  30028. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30029. {
  30030. front: {
  30031. height: math.unit(5 + 6 / 12, "feet"),
  30032. weight: math.unit(108, "lb"),
  30033. name: "Front",
  30034. image: {
  30035. source: "./media/characters/lilith-zott/front.svg",
  30036. extra: 2510 / 2238,
  30037. bottom: 100 / 2610
  30038. }
  30039. },
  30040. frontDressed: {
  30041. height: math.unit(5 + 6 / 12, "feet"),
  30042. weight: math.unit(108, "lb"),
  30043. name: "Front (Dressed)",
  30044. image: {
  30045. source: "./media/characters/lilith-zott/front-dressed.svg",
  30046. extra: 2510 / 2238,
  30047. bottom: 100 / 2610
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Normal",
  30054. height: math.unit(5 + 6 / 12, "feet")
  30055. },
  30056. {
  30057. name: "Macro",
  30058. height: math.unit(1030, "feet"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(6, "feet"),
  30068. weight: math.unit(150, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30072. extra: 2567 / 2435,
  30073. bottom: 39 / 2606
  30074. }
  30075. },
  30076. frontSuper: {
  30077. height: math.unit(6, "feet"),
  30078. name: "Front (Super)",
  30079. image: {
  30080. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30081. extra: 2567 / 2435,
  30082. bottom: 39 / 2606
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(5 + 10 / 12, "feet")
  30090. },
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(1100, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(100, "miles"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/sona/front.svg",
  30106. extra: 2433 / 2201,
  30107. bottom: 53 / 2486
  30108. }
  30109. },
  30110. foot: {
  30111. height: math.unit(16.1, "miles"),
  30112. name: "Foot",
  30113. image: {
  30114. source: "./media/characters/sona/foot.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(100, "miles"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/bailey/front.svg",
  30135. extra: 1778 / 1724,
  30136. bottom: 30 / 1808
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Micro",
  30143. height: math.unit(4, "inches")
  30144. },
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(5 + 5 / 12, "feet"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Macro",
  30152. height: math.unit(250, "feet")
  30153. },
  30154. {
  30155. name: "Megamacro",
  30156. height: math.unit(100, "miles")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(5 + 2 / 12, "feet"),
  30165. weight: math.unit(120, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/snaps/front.svg",
  30169. extra: 2370 / 2177,
  30170. bottom: 48 / 2418
  30171. }
  30172. },
  30173. back: {
  30174. height: math.unit(5 + 2 / 12, "feet"),
  30175. weight: math.unit(120, "lb"),
  30176. name: "Back",
  30177. image: {
  30178. source: "./media/characters/snaps/back.svg",
  30179. extra: 2408 / 2258,
  30180. bottom: 15 / 2423
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Micro",
  30187. height: math.unit(9, "inches")
  30188. },
  30189. {
  30190. name: "Normal",
  30191. height: math.unit(5 + 2 / 12, "feet"),
  30192. default: true
  30193. },
  30194. {
  30195. name: "Mini Macro",
  30196. height: math.unit(10, "feet")
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(1.8, "meters"),
  30205. weight: math.unit(85, "kg"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/azteck/front.svg",
  30209. extra: 2815 / 2625,
  30210. bottom: 89 / 2904
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(1.8, "meters"),
  30215. weight: math.unit(85, "kg"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/azteck/back.svg",
  30219. extra: 2856 / 2648,
  30220. bottom: 85 / 2941
  30221. }
  30222. },
  30223. frontDressed: {
  30224. height: math.unit(1.8, "meters"),
  30225. weight: math.unit(85, "kg"),
  30226. name: "Front (Dressed)",
  30227. image: {
  30228. source: "./media/characters/azteck/front-dressed.svg",
  30229. extra: 2147 / 2003,
  30230. bottom: 68 / 2215
  30231. }
  30232. },
  30233. head: {
  30234. height: math.unit(0.47, "meters"),
  30235. weight: math.unit(85, "kg"),
  30236. name: "Head",
  30237. image: {
  30238. source: "./media/characters/azteck/head.svg"
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Bite sized",
  30245. height: math.unit(16, "cm")
  30246. },
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(1.8, "meters"),
  30250. default: true
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(6, "feet"),
  30259. weight: math.unit(150, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/pidge/front.svg",
  30263. extra: 1936/1820,
  30264. bottom: 0/1936
  30265. }
  30266. },
  30267. back: {
  30268. height: math.unit(6, "feet"),
  30269. weight: math.unit(150, "lb"),
  30270. name: "Back",
  30271. image: {
  30272. source: "./media/characters/pidge/back.svg",
  30273. extra: 1938/1843,
  30274. bottom: 0/1938
  30275. }
  30276. },
  30277. casual: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Casual",
  30281. image: {
  30282. source: "./media/characters/pidge/casual.svg",
  30283. extra: 1936/1820,
  30284. bottom: 0/1936
  30285. }
  30286. },
  30287. tech: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Tech",
  30291. image: {
  30292. source: "./media/characters/pidge/tech.svg",
  30293. extra: 1802/1682,
  30294. bottom: 0/1802
  30295. }
  30296. },
  30297. head: {
  30298. height: math.unit(1.61, "feet"),
  30299. name: "Head",
  30300. image: {
  30301. source: "./media/characters/pidge/head.svg"
  30302. }
  30303. },
  30304. collar: {
  30305. height: math.unit(0.82, "feet"),
  30306. name: "Collar",
  30307. image: {
  30308. source: "./media/characters/pidge/collar.svg"
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Macro",
  30315. height: math.unit(2, "mile"),
  30316. default: true
  30317. },
  30318. {
  30319. name: "PUPPY",
  30320. height: math.unit(20, "miles")
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30326. {
  30327. front: {
  30328. height: math.unit(6, "feet"),
  30329. weight: math.unit(150, "lb"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/en/front.svg",
  30333. extra: 1697 / 1563,
  30334. bottom: 103 / 1800
  30335. }
  30336. },
  30337. back: {
  30338. height: math.unit(6, "feet"),
  30339. weight: math.unit(150, "lb"),
  30340. name: "Back",
  30341. image: {
  30342. source: "./media/characters/en/back.svg",
  30343. extra: 1700 / 1570,
  30344. bottom: 51 / 1751
  30345. }
  30346. },
  30347. frontDressed: {
  30348. height: math.unit(6, "feet"),
  30349. weight: math.unit(150, "lb"),
  30350. name: "Front (Dressed)",
  30351. image: {
  30352. source: "./media/characters/en/front-dressed.svg",
  30353. extra: 1697 / 1563,
  30354. bottom: 103 / 1800
  30355. }
  30356. },
  30357. backDressed: {
  30358. height: math.unit(6, "feet"),
  30359. weight: math.unit(150, "lb"),
  30360. name: "Back (Dressed)",
  30361. image: {
  30362. source: "./media/characters/en/back-dressed.svg",
  30363. extra: 1700 / 1570,
  30364. bottom: 51 / 1751
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Macro",
  30371. height: math.unit(210, "feet"),
  30372. default: true
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(6, "feet"),
  30381. weight: math.unit(150, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/haze-orris/front.svg",
  30385. extra: 3975 / 3525,
  30386. bottom: 137 / 4112
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Micro",
  30393. height: math.unit(150, "mm"),
  30394. default: true
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(6, "feet"),
  30403. weight: math.unit(150, "lb"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/casselene-yaro/front.svg",
  30407. extra: 4721 / 4541,
  30408. bottom: 82 / 4803
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(6, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/casselene-yaro/back.svg",
  30417. extra: 4569 / 4377,
  30418. bottom: 69 / 4638
  30419. }
  30420. },
  30421. dressed: {
  30422. height: math.unit(6, "feet"),
  30423. weight: math.unit(150, "lb"),
  30424. name: "Dressed",
  30425. image: {
  30426. source: "./media/characters/casselene-yaro/dressed.svg",
  30427. extra: 4721 / 4541,
  30428. bottom: 82 / 4803
  30429. }
  30430. },
  30431. maw: {
  30432. height: math.unit(1, "feet"),
  30433. name: "Maw",
  30434. image: {
  30435. source: "./media/characters/casselene-yaro/maw.svg"
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Macro",
  30442. height: math.unit(190, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(10, "feet"),
  30452. weight: math.unit(15015, "lb"),
  30453. name: "Front",
  30454. image: {
  30455. source: "./media/characters/platine/front.svg",
  30456. extra: 1428/1353,
  30457. bottom: 31/1459
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(10, "feet"),
  30465. default: true
  30466. },
  30467. {
  30468. name: "Macro",
  30469. height: math.unit(100, "feet")
  30470. },
  30471. {
  30472. name: "Megamacro",
  30473. height: math.unit(1000, "feet")
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30479. {
  30480. front: {
  30481. height: math.unit(15 + 5 / 12, "feet"),
  30482. weight: math.unit(4600, "lb"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/neapolitan-ananassa/front.svg",
  30486. extra: 2903 / 2736,
  30487. bottom: 0 / 2903
  30488. }
  30489. },
  30490. side: {
  30491. height: math.unit(15 + 5 / 12, "feet"),
  30492. weight: math.unit(4600, "lb"),
  30493. name: "Side",
  30494. image: {
  30495. source: "./media/characters/neapolitan-ananassa/side.svg",
  30496. extra: 2925 / 2719,
  30497. bottom: 0 / 2925
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(15 + 5 / 12, "feet"),
  30502. weight: math.unit(4600, "lb"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/neapolitan-ananassa/back.svg",
  30506. extra: 2903 / 2736,
  30507. bottom: 0 / 2903
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Normal",
  30514. height: math.unit(15 + 5 / 12, "feet"),
  30515. default: true
  30516. },
  30517. {
  30518. name: "Post-Millenium",
  30519. height: math.unit(35 + 5 / 12, "feet")
  30520. },
  30521. {
  30522. name: "Post-Era",
  30523. height: math.unit(450 + 5 / 12, "feet")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(300, "meters"),
  30532. weight: math.unit(125000, "tonnes"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/pazuzu/front.svg",
  30536. extra: 877 / 794,
  30537. bottom: 47 / 924
  30538. }
  30539. },
  30540. },
  30541. [
  30542. {
  30543. name: "Macro",
  30544. height: math.unit(300, "meters"),
  30545. default: true
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30551. {
  30552. side: {
  30553. height: math.unit(10 + 7 / 12, "feet"),
  30554. weight: math.unit(2.5, "tons"),
  30555. name: "Side",
  30556. image: {
  30557. source: "./media/characters/aasha/side.svg",
  30558. extra: 1345 / 1245,
  30559. bottom: 111 / 1456
  30560. }
  30561. },
  30562. back: {
  30563. height: math.unit(10 + 7 / 12, "feet"),
  30564. weight: math.unit(2.5, "tons"),
  30565. name: "Back",
  30566. image: {
  30567. source: "./media/characters/aasha/back.svg",
  30568. extra: 1133 / 1057,
  30569. bottom: 257 / 1390
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(10 + 7 / 12, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(6 + 3 / 12, "feet"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/nevan/front.svg",
  30589. extra: 704 / 704,
  30590. bottom: 28 / 732
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(6 + 3 / 12, "feet"),
  30595. name: "Back",
  30596. image: {
  30597. source: "./media/characters/nevan/back.svg",
  30598. extra: 714 / 714,
  30599. bottom: 21 / 735
  30600. }
  30601. },
  30602. frontFlaccid: {
  30603. height: math.unit(6 + 3 / 12, "feet"),
  30604. name: "Front (Flaccid)",
  30605. image: {
  30606. source: "./media/characters/nevan/front-flaccid.svg",
  30607. extra: 704 / 704,
  30608. bottom: 28 / 732
  30609. }
  30610. },
  30611. frontErect: {
  30612. height: math.unit(6 + 3 / 12, "feet"),
  30613. name: "Front (Erect)",
  30614. image: {
  30615. source: "./media/characters/nevan/front-erect.svg",
  30616. extra: 704 / 704,
  30617. bottom: 28 / 732
  30618. }
  30619. },
  30620. backFlaccid: {
  30621. height: math.unit(6 + 3 / 12, "feet"),
  30622. name: "Back (Flaccid)",
  30623. image: {
  30624. source: "./media/characters/nevan/back-flaccid.svg",
  30625. extra: 714 / 714,
  30626. bottom: 21 / 735
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(6 + 3 / 12, "feet"),
  30634. default: true
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(4, "feet"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/arhan/front.svg",
  30646. extra: 3368 / 3133,
  30647. bottom: 0 / 3368
  30648. }
  30649. },
  30650. side: {
  30651. height: math.unit(4, "feet"),
  30652. name: "Side",
  30653. image: {
  30654. source: "./media/characters/arhan/side.svg",
  30655. extra: 3347 / 3105,
  30656. bottom: 0 / 3347
  30657. }
  30658. },
  30659. tongue: {
  30660. height: math.unit(1.42, "feet"),
  30661. name: "Tongue",
  30662. image: {
  30663. source: "./media/characters/arhan/tongue.svg"
  30664. }
  30665. },
  30666. head: {
  30667. height: math.unit(0.85, "feet"),
  30668. name: "Head",
  30669. image: {
  30670. source: "./media/characters/arhan/head.svg"
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(4, "feet"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(5 + 7.5 / 12, "feet"),
  30687. weight: math.unit(120, "lb"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/digi-duncan/front.svg",
  30691. extra: 330 / 326,
  30692. bottom: 16 / 346
  30693. }
  30694. },
  30695. side: {
  30696. height: math.unit(5 + 7.5 / 12, "feet"),
  30697. weight: math.unit(120, "lb"),
  30698. name: "Side",
  30699. image: {
  30700. source: "./media/characters/digi-duncan/side.svg",
  30701. extra: 341 / 337,
  30702. bottom: 1 / 342
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(5 + 7.5 / 12, "feet"),
  30707. weight: math.unit(120, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/digi-duncan/back.svg",
  30711. extra: 330 / 326,
  30712. bottom: 12 / 342
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Speck",
  30719. height: math.unit(0.25, "mm")
  30720. },
  30721. {
  30722. name: "Micro",
  30723. height: math.unit(5, "mm")
  30724. },
  30725. {
  30726. name: "Tiny",
  30727. height: math.unit(0.5, "inches"),
  30728. default: true
  30729. },
  30730. {
  30731. name: "Human",
  30732. height: math.unit(5 + 7.5 / 12, "feet")
  30733. },
  30734. {
  30735. name: "Minigiant",
  30736. height: math.unit(8 + 5.25, "feet")
  30737. },
  30738. {
  30739. name: "Giant",
  30740. height: math.unit(2000, "feet")
  30741. },
  30742. {
  30743. name: "Mega",
  30744. height: math.unit(371.1, "miles")
  30745. },
  30746. ]
  30747. ))
  30748. characterMakers.push(() => makeCharacter(
  30749. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30750. {
  30751. front: {
  30752. height: math.unit(2, "meters"),
  30753. weight: math.unit(350, "kg"),
  30754. name: "Front",
  30755. image: {
  30756. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30757. extra: 898 / 838,
  30758. bottom: 9 / 907
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Micro",
  30765. height: math.unit(8, "meters")
  30766. },
  30767. {
  30768. name: "Normal",
  30769. height: math.unit(50, "meters"),
  30770. default: true
  30771. },
  30772. {
  30773. name: "Macro",
  30774. height: math.unit(500, "meters")
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(6 + 6 / 12, "feet"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/khardesh/front.svg",
  30786. extra: 1788/1596,
  30787. bottom: 66/1854
  30788. }
  30789. },
  30790. back: {
  30791. height: math.unit(6 + 6 / 12, "feet"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/khardesh/back.svg",
  30795. extra: 1781/1584,
  30796. bottom: 68/1849
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(6 + 6 / 12, "feet"),
  30804. default: true
  30805. },
  30806. {
  30807. name: "Normal+",
  30808. height: math.unit(4, "meters")
  30809. },
  30810. {
  30811. name: "Macro",
  30812. height: math.unit(50, "meters")
  30813. },
  30814. {
  30815. name: "Macro+",
  30816. height: math.unit(100, "meters")
  30817. },
  30818. {
  30819. name: "Megamacro",
  30820. height: math.unit(20, "km")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(6, "feet"),
  30829. weight: math.unit(150, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/kosho/front.svg",
  30833. extra: 1847 / 1847,
  30834. bottom: 86 / 1933
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Second-stage micro",
  30841. height: math.unit(0.5, "inches")
  30842. },
  30843. {
  30844. name: "First-stage micro",
  30845. height: math.unit(6, "inches")
  30846. },
  30847. {
  30848. name: "Normal",
  30849. height: math.unit(6, "feet"),
  30850. default: true
  30851. },
  30852. {
  30853. name: "First-stage macro",
  30854. height: math.unit(72, "feet")
  30855. },
  30856. {
  30857. name: "Second-stage macro",
  30858. height: math.unit(864, "feet")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30864. {
  30865. normal: {
  30866. height: math.unit(4 + 6 / 12, "feet"),
  30867. name: "Normal",
  30868. image: {
  30869. source: "./media/characters/hydra/normal.svg",
  30870. extra: 2833 / 2634,
  30871. bottom: 68 / 2901
  30872. }
  30873. },
  30874. smol: {
  30875. height: math.unit(0.705, "inches"),
  30876. name: "Smol",
  30877. image: {
  30878. source: "./media/characters/hydra/smol.svg",
  30879. extra: 2715 / 2540,
  30880. bottom: 0 / 2715
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(4 + 6 / 12, "feet"),
  30888. default: true
  30889. }
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(0.6, "cm"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/daz/front.svg",
  30900. extra: 1682 / 1164,
  30901. bottom: 42 / 1724
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(0.6, "cm"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(6, "feet"),
  30918. weight: math.unit(235, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/theo-pangolin/front.svg",
  30922. extra: 1996 / 1969,
  30923. bottom: 115 / 2111
  30924. }
  30925. },
  30926. back: {
  30927. height: math.unit(6, "feet"),
  30928. weight: math.unit(235, "lb"),
  30929. name: "Back",
  30930. image: {
  30931. source: "./media/characters/theo-pangolin/back.svg",
  30932. extra: 1979 / 1979,
  30933. bottom: 40 / 2019
  30934. }
  30935. },
  30936. feral: {
  30937. height: math.unit(2, "feet"),
  30938. weight: math.unit(30, "lb"),
  30939. name: "Feral",
  30940. image: {
  30941. source: "./media/characters/theo-pangolin/feral.svg",
  30942. extra: 803 / 791,
  30943. bottom: 181 / 984
  30944. }
  30945. },
  30946. footFive: {
  30947. height: math.unit(1.43, "feet"),
  30948. name: "Foot (Five Toes)",
  30949. image: {
  30950. source: "./media/characters/theo-pangolin/foot-five.svg"
  30951. }
  30952. },
  30953. footFour: {
  30954. height: math.unit(1.43, "feet"),
  30955. name: "Foot (Four Toes)",
  30956. image: {
  30957. source: "./media/characters/theo-pangolin/foot-four.svg"
  30958. }
  30959. },
  30960. handFour: {
  30961. height: math.unit(0.81, "feet"),
  30962. name: "Hand (Four Fingers)",
  30963. image: {
  30964. source: "./media/characters/theo-pangolin/hand-four.svg"
  30965. }
  30966. },
  30967. handThree: {
  30968. height: math.unit(0.81, "feet"),
  30969. name: "Hand (Three Fingers)",
  30970. image: {
  30971. source: "./media/characters/theo-pangolin/hand-three.svg"
  30972. }
  30973. },
  30974. headFront: {
  30975. height: math.unit(1.37, "feet"),
  30976. name: "Head (Front)",
  30977. image: {
  30978. source: "./media/characters/theo-pangolin/head-front.svg"
  30979. }
  30980. },
  30981. headSide: {
  30982. height: math.unit(1.43, "feet"),
  30983. name: "Head (Side)",
  30984. image: {
  30985. source: "./media/characters/theo-pangolin/head-side.svg"
  30986. }
  30987. },
  30988. tongue: {
  30989. height: math.unit(2.29, "feet"),
  30990. name: "Tongue",
  30991. image: {
  30992. source: "./media/characters/theo-pangolin/tongue.svg"
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(6, "feet")
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(400, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(6, "inches"),
  31013. weight: math.unit(0.036, "kg"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/renée/front.svg",
  31017. extra: 900 / 886,
  31018. bottom: 8 / 908
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Nano",
  31025. height: math.unit(1, "nm")
  31026. },
  31027. {
  31028. name: "Micro",
  31029. height: math.unit(1, "mm")
  31030. },
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6, "inches")
  31034. },
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(2000, "feet"),
  31038. default: true
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(2, "km")
  31043. },
  31044. {
  31045. name: "Gigamacro",
  31046. height: math.unit(2000, "km")
  31047. },
  31048. {
  31049. name: "Teramacro",
  31050. height: math.unit(250000, "km")
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31056. {
  31057. front: {
  31058. height: math.unit(4, "meters"),
  31059. weight: math.unit(150, "kg"),
  31060. name: "Front",
  31061. image: {
  31062. source: "./media/characters/caledvwlch/front.svg",
  31063. extra: 1760 / 1551,
  31064. bottom: 28 / 1788
  31065. }
  31066. },
  31067. side: {
  31068. height: math.unit(4, "meters"),
  31069. weight: math.unit(150, "kg"),
  31070. name: "Side",
  31071. image: {
  31072. source: "./media/characters/caledvwlch/side.svg",
  31073. extra: 1605 / 1536,
  31074. bottom: 31 / 1636
  31075. }
  31076. },
  31077. back: {
  31078. height: math.unit(4, "meters"),
  31079. weight: math.unit(150, "kg"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/caledvwlch/back.svg",
  31083. extra: 1635 / 1565,
  31084. bottom: 27 / 1662
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "\"Incognito\"",
  31091. height: math.unit(4, "meters")
  31092. },
  31093. {
  31094. name: "Small rampage",
  31095. height: math.unit(600, "meters")
  31096. },
  31097. {
  31098. name: "Mega",
  31099. height: math.unit(30, "km")
  31100. },
  31101. {
  31102. name: "Home-size",
  31103. height: math.unit(50, "km"),
  31104. default: true
  31105. },
  31106. {
  31107. name: "Giga",
  31108. height: math.unit(300, "km")
  31109. },
  31110. {
  31111. name: "Lounging",
  31112. height: math.unit(11000, "km")
  31113. },
  31114. {
  31115. name: "Planet snacking",
  31116. height: math.unit(2000000, "km")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(215, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/sapphire-svell/front.svg",
  31129. extra: 495 / 455,
  31130. bottom: 20 / 515
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(216, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/sapphire-svell/back.svg",
  31139. extra: 497 / 477,
  31140. bottom: 7 / 504
  31141. }
  31142. },
  31143. maw: {
  31144. height: math.unit(1.57, "feet"),
  31145. name: "Maw",
  31146. image: {
  31147. source: "./media/characters/sapphire-svell/maw.svg"
  31148. }
  31149. },
  31150. foot: {
  31151. height: math.unit(1.07, "feet"),
  31152. name: "Foot",
  31153. image: {
  31154. source: "./media/characters/sapphire-svell/foot.svg"
  31155. }
  31156. },
  31157. toering: {
  31158. height: math.unit(1.7, "inch"),
  31159. name: "Toering",
  31160. image: {
  31161. source: "./media/characters/sapphire-svell/toering.svg"
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(300, "feet"),
  31169. default: true
  31170. },
  31171. {
  31172. name: "Augmented",
  31173. height: math.unit(1250, "feet")
  31174. },
  31175. {
  31176. name: "Unleashed",
  31177. height: math.unit(3000, "feet")
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31183. {
  31184. side: {
  31185. height: math.unit(2 + 3 / 12, "feet"),
  31186. weight: math.unit(110, "lb"),
  31187. name: "Side",
  31188. image: {
  31189. source: "./media/characters/glitch-flux/side.svg",
  31190. extra: 997 / 805,
  31191. bottom: 20 / 1017
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(2 + 3 / 12, "feet"),
  31199. default: true
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(4, "meters"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/mid/front.svg",
  31211. extra: 507 / 476,
  31212. bottom: 17 / 524
  31213. }
  31214. },
  31215. back: {
  31216. height: math.unit(4, "meters"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/mid/back.svg",
  31220. extra: 519 / 487,
  31221. bottom: 7 / 526
  31222. }
  31223. },
  31224. stuck: {
  31225. height: math.unit(2.2, "meters"),
  31226. name: "Stuck",
  31227. image: {
  31228. source: "./media/characters/mid/stuck.svg",
  31229. extra: 1951 / 1869,
  31230. bottom: 88 / 2039
  31231. }
  31232. }
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(4, "meters"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Big",
  31242. height: math.unit(10, "meters")
  31243. },
  31244. {
  31245. name: "Macro",
  31246. height: math.unit(800, "meters")
  31247. },
  31248. {
  31249. name: "Megamacro",
  31250. height: math.unit(100, "km")
  31251. },
  31252. {
  31253. name: "Overgrown",
  31254. height: math.unit(1, "parsec")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(2.5, "meters"),
  31263. weight: math.unit(225, "kg"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/iris/front.svg",
  31267. extra: 3348 / 3251,
  31268. bottom: 205 / 3553
  31269. }
  31270. },
  31271. maw: {
  31272. height: math.unit(0.56, "meter"),
  31273. name: "Maw",
  31274. image: {
  31275. source: "./media/characters/iris/maw.svg"
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Mewter cat",
  31282. height: math.unit(1.2, "meters")
  31283. },
  31284. {
  31285. name: "Minimacro",
  31286. height: math.unit(2.5, "meters"),
  31287. default: true
  31288. },
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(180, "meters")
  31292. },
  31293. {
  31294. name: "Megamacro",
  31295. height: math.unit(2746, "meters")
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(6, "feet"),
  31304. weight: math.unit(135, "lb"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/axel/front.svg",
  31308. extra: 908 / 908,
  31309. bottom: 58 / 966
  31310. }
  31311. },
  31312. side: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(135, "lb"),
  31315. name: "Side",
  31316. image: {
  31317. source: "./media/characters/axel/side.svg",
  31318. extra: 958 / 958,
  31319. bottom: 11 / 969
  31320. }
  31321. },
  31322. back: {
  31323. height: math.unit(6, "feet"),
  31324. weight: math.unit(135, "lb"),
  31325. name: "Back",
  31326. image: {
  31327. source: "./media/characters/axel/back.svg",
  31328. extra: 887 / 887,
  31329. bottom: 34 / 921
  31330. }
  31331. },
  31332. head: {
  31333. height: math.unit(1.07, "feet"),
  31334. name: "Head",
  31335. image: {
  31336. source: "./media/characters/axel/head.svg"
  31337. }
  31338. },
  31339. beak: {
  31340. height: math.unit(1.4, "feet"),
  31341. name: "Beak",
  31342. image: {
  31343. source: "./media/characters/axel/beak.svg"
  31344. }
  31345. },
  31346. beakSide: {
  31347. height: math.unit(1.4, "feet"),
  31348. name: "Beak Side",
  31349. image: {
  31350. source: "./media/characters/axel/beak-side.svg"
  31351. }
  31352. },
  31353. sheath: {
  31354. height: math.unit(0.5, "feet"),
  31355. name: "Sheath",
  31356. image: {
  31357. source: "./media/characters/axel/sheath.svg"
  31358. }
  31359. },
  31360. dick: {
  31361. height: math.unit(0.98, "feet"),
  31362. name: "Dick",
  31363. image: {
  31364. source: "./media/characters/axel/dick.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(68, "meters"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(3.5, "meters"),
  31381. weight: math.unit(1200, "kg"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/joanna/front.svg",
  31385. extra: 1596 / 1488,
  31386. bottom: 29 / 1625
  31387. }
  31388. },
  31389. back: {
  31390. height: math.unit(3.5, "meters"),
  31391. weight: math.unit(1200, "kg"),
  31392. name: "Back",
  31393. image: {
  31394. source: "./media/characters/joanna/back.svg",
  31395. extra: 1594 / 1495,
  31396. bottom: 26 / 1620
  31397. }
  31398. },
  31399. frontShorts: {
  31400. height: math.unit(3.5, "meters"),
  31401. weight: math.unit(1200, "kg"),
  31402. name: "Front (Shorts)",
  31403. image: {
  31404. source: "./media/characters/joanna/front-shorts.svg",
  31405. extra: 1596 / 1488,
  31406. bottom: 29 / 1625
  31407. }
  31408. },
  31409. frontBiker: {
  31410. height: math.unit(3.5, "meters"),
  31411. weight: math.unit(1200, "kg"),
  31412. name: "Front (Biker)",
  31413. image: {
  31414. source: "./media/characters/joanna/front-biker.svg",
  31415. extra: 1596 / 1488,
  31416. bottom: 29 / 1625
  31417. }
  31418. },
  31419. backBiker: {
  31420. height: math.unit(3.5, "meters"),
  31421. weight: math.unit(1200, "kg"),
  31422. name: "Back (Biker)",
  31423. image: {
  31424. source: "./media/characters/joanna/back-biker.svg",
  31425. extra: 1594 / 1495,
  31426. bottom: 88 / 1682
  31427. }
  31428. },
  31429. bikeLeft: {
  31430. height: math.unit(2.4, "meters"),
  31431. weight: math.unit(1600, "kg"),
  31432. name: "Bike (Left)",
  31433. image: {
  31434. source: "./media/characters/joanna/bike-left.svg",
  31435. extra: 720 / 720,
  31436. bottom: 8 / 728
  31437. }
  31438. },
  31439. bikeRight: {
  31440. height: math.unit(2.4, "meters"),
  31441. weight: math.unit(1600, "kg"),
  31442. name: "Bike (Right)",
  31443. image: {
  31444. source: "./media/characters/joanna/bike-right.svg",
  31445. extra: 720 / 720,
  31446. bottom: 8 / 728
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Incognito",
  31453. height: math.unit(3.5, "meters")
  31454. },
  31455. {
  31456. name: "Casual Big",
  31457. height: math.unit(200, "meters")
  31458. },
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(600, "meters")
  31462. },
  31463. {
  31464. name: "Original",
  31465. height: math.unit(20, "km"),
  31466. default: true
  31467. },
  31468. {
  31469. name: "Giga",
  31470. height: math.unit(400, "km")
  31471. },
  31472. {
  31473. name: "Lounging",
  31474. height: math.unit(1500, "km")
  31475. },
  31476. {
  31477. name: "Planetary",
  31478. height: math.unit(200000, "km")
  31479. },
  31480. ]
  31481. ))
  31482. characterMakers.push(() => makeCharacter(
  31483. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31484. {
  31485. front: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(150, "lb"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/hugo-sigil/front.svg",
  31491. extra: 522 / 500,
  31492. bottom: 2 / 524
  31493. }
  31494. },
  31495. back: {
  31496. height: math.unit(6, "feet"),
  31497. weight: math.unit(150, "lb"),
  31498. name: "Back",
  31499. image: {
  31500. source: "./media/characters/hugo-sigil/back.svg",
  31501. extra: 519 / 495,
  31502. bottom: 5 / 524
  31503. }
  31504. },
  31505. maw: {
  31506. height: math.unit(1.4, "feet"),
  31507. weight: math.unit(150, "lb"),
  31508. name: "Maw",
  31509. image: {
  31510. source: "./media/characters/hugo-sigil/maw.svg"
  31511. }
  31512. },
  31513. feet: {
  31514. height: math.unit(1.56, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Feet",
  31517. image: {
  31518. source: "./media/characters/hugo-sigil/feet.svg",
  31519. extra: 177 / 177,
  31520. bottom: 12 / 189
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Normal",
  31527. height: math.unit(6, "feet")
  31528. },
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(200, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(6, "feet"),
  31541. weight: math.unit(150, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/peri/front.svg",
  31545. extra: 2354 / 2233,
  31546. bottom: 49 / 2403
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Really Small",
  31553. height: math.unit(1, "nm")
  31554. },
  31555. {
  31556. name: "Micro",
  31557. height: math.unit(4, "inches")
  31558. },
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(7, "inches"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(400, "feet")
  31567. },
  31568. {
  31569. name: "Megamacro",
  31570. height: math.unit(100, "miles")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31576. {
  31577. frontSlim: {
  31578. height: math.unit(7, "feet"),
  31579. name: "Front (Slim)",
  31580. image: {
  31581. source: "./media/characters/issilora/front-slim.svg",
  31582. extra: 529 / 449,
  31583. bottom: 53 / 582
  31584. }
  31585. },
  31586. sideSlim: {
  31587. height: math.unit(7, "feet"),
  31588. name: "Side (Slim)",
  31589. image: {
  31590. source: "./media/characters/issilora/side-slim.svg",
  31591. extra: 570 / 480,
  31592. bottom: 30 / 600
  31593. }
  31594. },
  31595. backSlim: {
  31596. height: math.unit(7, "feet"),
  31597. name: "Back (Slim)",
  31598. image: {
  31599. source: "./media/characters/issilora/back-slim.svg",
  31600. extra: 537 / 455,
  31601. bottom: 46 / 583
  31602. }
  31603. },
  31604. frontBuff: {
  31605. height: math.unit(7, "feet"),
  31606. name: "Front (Buff)",
  31607. image: {
  31608. source: "./media/characters/issilora/front-buff.svg",
  31609. extra: 2310 / 2035,
  31610. bottom: 335 / 2645
  31611. }
  31612. },
  31613. head: {
  31614. height: math.unit(1.94, "feet"),
  31615. name: "Head",
  31616. image: {
  31617. source: "./media/characters/issilora/head.svg"
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Minimum",
  31624. height: math.unit(7, "feet")
  31625. },
  31626. {
  31627. name: "Comfortable",
  31628. height: math.unit(17, "feet")
  31629. },
  31630. {
  31631. name: "Fun Size",
  31632. height: math.unit(47, "feet")
  31633. },
  31634. {
  31635. name: "Natural Macro",
  31636. height: math.unit(137, "feet"),
  31637. default: true
  31638. },
  31639. {
  31640. name: "Maximum Kaiju",
  31641. height: math.unit(397, "feet")
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31647. {
  31648. front: {
  31649. height: math.unit(50 + 9/12, "feet"),
  31650. weight: math.unit(32.8, "tons"),
  31651. name: "Front",
  31652. image: {
  31653. source: "./media/characters/irb'iiritaahn/front.svg",
  31654. extra: 1878/1826,
  31655. bottom: 326/2204
  31656. }
  31657. },
  31658. back: {
  31659. height: math.unit(50 + 9/12, "feet"),
  31660. weight: math.unit(32.8, "tons"),
  31661. name: "Back",
  31662. image: {
  31663. source: "./media/characters/irb'iiritaahn/back.svg",
  31664. extra: 2052/2018,
  31665. bottom: 152/2204
  31666. }
  31667. },
  31668. head: {
  31669. height: math.unit(12.86, "feet"),
  31670. name: "Head",
  31671. image: {
  31672. source: "./media/characters/irb'iiritaahn/head.svg"
  31673. }
  31674. },
  31675. maw: {
  31676. height: math.unit(9.66, "feet"),
  31677. name: "Maw",
  31678. image: {
  31679. source: "./media/characters/irb'iiritaahn/maw.svg"
  31680. }
  31681. },
  31682. frontDick: {
  31683. height: math.unit(8.78461, "feet"),
  31684. name: "Front Dick",
  31685. image: {
  31686. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31687. }
  31688. },
  31689. rearDick: {
  31690. height: math.unit(8.78461, "feet"),
  31691. name: "Rear Dick",
  31692. image: {
  31693. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31694. }
  31695. },
  31696. rearDickUnfolded: {
  31697. height: math.unit(8.78, "feet"),
  31698. name: "Rear Dick (Unfolded)",
  31699. image: {
  31700. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31701. }
  31702. },
  31703. wings: {
  31704. height: math.unit(43, "feet"),
  31705. name: "Wings",
  31706. image: {
  31707. source: "./media/characters/irb'iiritaahn/wings.svg"
  31708. }
  31709. },
  31710. },
  31711. [
  31712. {
  31713. name: "Macro",
  31714. height: math.unit(50 + 9/12, "feet"),
  31715. default: true
  31716. },
  31717. ]
  31718. ))
  31719. characterMakers.push(() => makeCharacter(
  31720. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31721. {
  31722. front: {
  31723. height: math.unit(205, "cm"),
  31724. weight: math.unit(102, "kg"),
  31725. name: "Front",
  31726. image: {
  31727. source: "./media/characters/irbisgreif/front.svg",
  31728. extra: 785/706,
  31729. bottom: 13/798
  31730. }
  31731. },
  31732. back: {
  31733. height: math.unit(205, "cm"),
  31734. weight: math.unit(102, "kg"),
  31735. name: "Back",
  31736. image: {
  31737. source: "./media/characters/irbisgreif/back.svg",
  31738. extra: 713/701,
  31739. bottom: 26/739
  31740. }
  31741. },
  31742. frontDressed: {
  31743. height: math.unit(216, "cm"),
  31744. weight: math.unit(102, "kg"),
  31745. name: "Front-dressed",
  31746. image: {
  31747. source: "./media/characters/irbisgreif/front-dressed.svg",
  31748. extra: 902/776,
  31749. bottom: 14/916
  31750. }
  31751. },
  31752. sideDressed: {
  31753. height: math.unit(195, "cm"),
  31754. weight: math.unit(102, "kg"),
  31755. name: "Side-dressed",
  31756. image: {
  31757. source: "./media/characters/irbisgreif/side-dressed.svg",
  31758. extra: 788/688,
  31759. bottom: 21/809
  31760. }
  31761. },
  31762. backDressed: {
  31763. height: math.unit(216, "cm"),
  31764. weight: math.unit(102, "kg"),
  31765. name: "Back-dressed",
  31766. image: {
  31767. source: "./media/characters/irbisgreif/back-dressed.svg",
  31768. extra: 901/783,
  31769. bottom: 10/911
  31770. }
  31771. },
  31772. dick: {
  31773. height: math.unit(0.49, "feet"),
  31774. name: "Dick",
  31775. image: {
  31776. source: "./media/characters/irbisgreif/dick.svg"
  31777. }
  31778. },
  31779. wingTop: {
  31780. height: math.unit(1.93 , "feet"),
  31781. name: "Wing-top",
  31782. image: {
  31783. source: "./media/characters/irbisgreif/wing-top.svg"
  31784. }
  31785. },
  31786. wingBottom: {
  31787. height: math.unit(1.93 , "feet"),
  31788. name: "Wing-bottom",
  31789. image: {
  31790. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Normal",
  31797. height: math.unit(216, "cm"),
  31798. default: true
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31804. {
  31805. front: {
  31806. height: math.unit(6, "feet"),
  31807. weight: math.unit(150, "lb"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/pride/front.svg",
  31811. extra: 1299/1230,
  31812. bottom: 18/1317
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(7, "feet")
  31820. },
  31821. {
  31822. name: "Mini-macro",
  31823. height: math.unit(11, "feet")
  31824. },
  31825. {
  31826. name: "Macro",
  31827. height: math.unit(15, "meters"),
  31828. default: true
  31829. },
  31830. {
  31831. name: "Macro+",
  31832. height: math.unit(40, "meters")
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31838. {
  31839. front: {
  31840. height: math.unit(4 + 2 / 12, "feet"),
  31841. weight: math.unit(95, "lb"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/vaelophis-nyx/front.svg",
  31845. extra: 2532/2330,
  31846. bottom: 0/2532
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(4 + 2 / 12, "feet"),
  31851. weight: math.unit(95, "lb"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/vaelophis-nyx/back.svg",
  31855. extra: 2484/2361,
  31856. bottom: 0/2484
  31857. }
  31858. },
  31859. feralSide: {
  31860. height: math.unit(2 + 1/12, "feet"),
  31861. weight: math.unit(20, "lb"),
  31862. name: "Feral (Side)",
  31863. image: {
  31864. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31865. extra: 1721/1581,
  31866. bottom: 70/1791
  31867. }
  31868. },
  31869. feralLazing: {
  31870. height: math.unit(1.08, "feet"),
  31871. weight: math.unit(20, "lb"),
  31872. name: "Feral (Lazing)",
  31873. image: {
  31874. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31875. extra: 822/822,
  31876. bottom: 248/1070
  31877. }
  31878. },
  31879. ear: {
  31880. height: math.unit(0.416, "feet"),
  31881. name: "Ear",
  31882. image: {
  31883. source: "./media/characters/vaelophis-nyx/ear.svg"
  31884. }
  31885. },
  31886. eye: {
  31887. height: math.unit(0.0748, "feet"),
  31888. name: "Eye",
  31889. image: {
  31890. source: "./media/characters/vaelophis-nyx/eye.svg"
  31891. }
  31892. },
  31893. mouth: {
  31894. height: math.unit(0.378, "feet"),
  31895. name: "Mouth",
  31896. image: {
  31897. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31898. }
  31899. },
  31900. spade: {
  31901. height: math.unit(0.55, "feet"),
  31902. name: "Spade",
  31903. image: {
  31904. source: "./media/characters/vaelophis-nyx/spade.svg"
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(4 + 2/12, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31918. {
  31919. front: {
  31920. height: math.unit(7, "feet"),
  31921. weight: math.unit(231, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/flux/front.svg",
  31925. extra: 919/871,
  31926. bottom: 0/919
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(7, "feet"),
  31931. weight: math.unit(231, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/flux/back.svg",
  31935. extra: 1040/992,
  31936. bottom: 0/1040
  31937. }
  31938. },
  31939. frontDressed: {
  31940. height: math.unit(7, "feet"),
  31941. weight: math.unit(231, "lb"),
  31942. name: "Front (Dressed)",
  31943. image: {
  31944. source: "./media/characters/flux/front-dressed.svg",
  31945. extra: 919/871,
  31946. bottom: 0/919
  31947. }
  31948. },
  31949. feralSide: {
  31950. height: math.unit(5, "feet"),
  31951. weight: math.unit(150, "lb"),
  31952. name: "Feral (Side)",
  31953. image: {
  31954. source: "./media/characters/flux/feral-side.svg",
  31955. extra: 598/528,
  31956. bottom: 28/626
  31957. }
  31958. },
  31959. head: {
  31960. height: math.unit(1.585, "feet"),
  31961. name: "Head",
  31962. image: {
  31963. source: "./media/characters/flux/head.svg"
  31964. }
  31965. },
  31966. headSide: {
  31967. height: math.unit(1.74, "feet"),
  31968. name: "Head (Side)",
  31969. image: {
  31970. source: "./media/characters/flux/head-side.svg"
  31971. }
  31972. },
  31973. headSideFire: {
  31974. height: math.unit(1.76, "feet"),
  31975. name: "Head (Side, Fire)",
  31976. image: {
  31977. source: "./media/characters/flux/head-side-fire.svg"
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Normal",
  31984. height: math.unit(7, "feet"),
  31985. default: true
  31986. },
  31987. ]
  31988. ))
  31989. characterMakers.push(() => makeCharacter(
  31990. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31991. {
  31992. front: {
  31993. height: math.unit(9, "feet"),
  31994. weight: math.unit(1012, "lb"),
  31995. name: "Front",
  31996. image: {
  31997. source: "./media/characters/ulfra-lupae/front.svg",
  31998. extra: 1083/1011,
  31999. bottom: 67/1150
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Micro",
  32006. height: math.unit(6, "inches")
  32007. },
  32008. {
  32009. name: "Socializing",
  32010. height: math.unit(6 + 5/12, "feet")
  32011. },
  32012. {
  32013. name: "Normal",
  32014. height: math.unit(9, "feet"),
  32015. default: true
  32016. },
  32017. {
  32018. name: "Macro",
  32019. height: math.unit(150, "feet")
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32025. {
  32026. front: {
  32027. height: math.unit(5 + 2/12, "feet"),
  32028. weight: math.unit(120, "lb"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/timber/front.svg",
  32032. extra: 2814/2705,
  32033. bottom: 181/2995
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(5 + 2/12, "feet"),
  32041. default: true
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32047. {
  32048. front: {
  32049. height: math.unit(9, "feet"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/nicki/front.svg",
  32053. extra: 1240/990,
  32054. bottom: 45/1285
  32055. },
  32056. form: "anthro",
  32057. default: true
  32058. },
  32059. side: {
  32060. height: math.unit(9, "feet"),
  32061. name: "Side",
  32062. image: {
  32063. source: "./media/characters/nicki/side.svg",
  32064. extra: 1047/973,
  32065. bottom: 61/1108
  32066. },
  32067. form: "anthro"
  32068. },
  32069. back: {
  32070. height: math.unit(9, "feet"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/nicki/back.svg",
  32074. extra: 1006/965,
  32075. bottom: 39/1045
  32076. },
  32077. form: "anthro"
  32078. },
  32079. taur: {
  32080. height: math.unit(15, "feet"),
  32081. name: "Taur",
  32082. image: {
  32083. source: "./media/characters/nicki/taur.svg",
  32084. extra: 1592/1347,
  32085. bottom: 0/1592
  32086. },
  32087. form: "taur",
  32088. default: true
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Normal",
  32094. height: math.unit(9, "feet"),
  32095. form: "anthro",
  32096. default: true
  32097. },
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(15, "feet"),
  32101. form: "taur",
  32102. default: true
  32103. }
  32104. ],
  32105. {
  32106. "anthro": {
  32107. name: "Anthro",
  32108. default: true
  32109. },
  32110. "taur": {
  32111. name: "Taur"
  32112. }
  32113. }
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(7 + 10/12, "feet"),
  32120. weight: math.unit(3.5, "tons"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/lee/front.svg",
  32124. extra: 1773/1615,
  32125. bottom: 86/1859
  32126. }
  32127. },
  32128. hand: {
  32129. height: math.unit(1.78, "feet"),
  32130. name: "Hand",
  32131. image: {
  32132. source: "./media/characters/lee/hand.svg"
  32133. }
  32134. },
  32135. maw: {
  32136. height: math.unit(1.18, "feet"),
  32137. name: "Maw",
  32138. image: {
  32139. source: "./media/characters/lee/maw.svg"
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(7 + 10/12, "feet"),
  32147. default: true
  32148. },
  32149. ]
  32150. ))
  32151. characterMakers.push(() => makeCharacter(
  32152. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32153. {
  32154. front: {
  32155. height: math.unit(9, "feet"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/guti/front.svg",
  32159. extra: 4551/4355,
  32160. bottom: 123/4674
  32161. }
  32162. },
  32163. tongue: {
  32164. height: math.unit(1, "feet"),
  32165. name: "Tongue",
  32166. image: {
  32167. source: "./media/characters/guti/tongue.svg"
  32168. }
  32169. },
  32170. paw: {
  32171. height: math.unit(1.18, "feet"),
  32172. name: "Paw",
  32173. image: {
  32174. source: "./media/characters/guti/paw.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(9, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32188. {
  32189. side: {
  32190. height: math.unit(5, "meters"),
  32191. name: "Side",
  32192. image: {
  32193. source: "./media/characters/vesper/side.svg",
  32194. extra: 1605/1518,
  32195. bottom: 0/1605
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Small",
  32202. height: math.unit(5, "meters")
  32203. },
  32204. {
  32205. name: "Sage",
  32206. height: math.unit(100, "meters"),
  32207. default: true
  32208. },
  32209. {
  32210. name: "Fun Size",
  32211. height: math.unit(600, "meters")
  32212. },
  32213. {
  32214. name: "Goddess",
  32215. height: math.unit(20000, "km")
  32216. },
  32217. {
  32218. name: "Maximum",
  32219. height: math.unit(5, "galaxies")
  32220. },
  32221. ]
  32222. ))
  32223. characterMakers.push(() => makeCharacter(
  32224. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32225. {
  32226. front: {
  32227. height: math.unit(6 + 3/12, "feet"),
  32228. weight: math.unit(190, "lb"),
  32229. name: "Front",
  32230. image: {
  32231. source: "./media/characters/gawain/front.svg",
  32232. extra: 2222/2139,
  32233. bottom: 90/2312
  32234. }
  32235. },
  32236. back: {
  32237. height: math.unit(6 + 3/12, "feet"),
  32238. weight: math.unit(190, "lb"),
  32239. name: "Back",
  32240. image: {
  32241. source: "./media/characters/gawain/back.svg",
  32242. extra: 2199/2111,
  32243. bottom: 73/2272
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(6 + 3/12, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32257. {
  32258. side: {
  32259. height: math.unit(3.5, "meters"),
  32260. weight: math.unit(16000, "lb"),
  32261. name: "Side",
  32262. image: {
  32263. source: "./media/characters/dascalti/side.svg",
  32264. extra: 392/273,
  32265. bottom: 47/439
  32266. }
  32267. },
  32268. breath: {
  32269. height: math.unit(7.4, "feet"),
  32270. name: "Breath",
  32271. image: {
  32272. source: "./media/characters/dascalti/breath.svg"
  32273. }
  32274. },
  32275. fed: {
  32276. height: math.unit(3.6, "meters"),
  32277. weight: math.unit(16000, "lb"),
  32278. name: "Fed",
  32279. image: {
  32280. source: "./media/characters/dascalti/fed.svg",
  32281. extra: 1419/820,
  32282. bottom: 95/1514
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(3.5, "meters"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(3 + 5/12, "feet"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/mauve/front.svg",
  32302. extra: 1126/1033,
  32303. bottom: 65/1191
  32304. }
  32305. },
  32306. side: {
  32307. height: math.unit(3 + 5/12, "feet"),
  32308. name: "Side",
  32309. image: {
  32310. source: "./media/characters/mauve/side.svg",
  32311. extra: 1089/1001,
  32312. bottom: 29/1118
  32313. }
  32314. },
  32315. back: {
  32316. height: math.unit(3 + 5/12, "feet"),
  32317. name: "Back",
  32318. image: {
  32319. source: "./media/characters/mauve/back.svg",
  32320. extra: 1173/1053,
  32321. bottom: 109/1282
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(3 + 5/12, "feet"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(6 + 3/12, "feet"),
  32338. weight: math.unit(430, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/carlos/front.svg",
  32342. extra: 1964/1913,
  32343. bottom: 70/2034
  32344. }
  32345. },
  32346. },
  32347. [
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(6 + 3/12, "feet"),
  32351. default: true
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32357. {
  32358. back: {
  32359. height: math.unit(5 + 10/12, "feet"),
  32360. weight: math.unit(200, "lb"),
  32361. name: "Back",
  32362. image: {
  32363. source: "./media/characters/jax/back.svg",
  32364. extra: 764/739,
  32365. bottom: 25/789
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(5 + 10/12, "feet"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(8, "feet"),
  32382. weight: math.unit(250, "lb"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/eikthynir/front.svg",
  32386. extra: 1332/1166,
  32387. bottom: 82/1414
  32388. }
  32389. },
  32390. back: {
  32391. height: math.unit(8, "feet"),
  32392. weight: math.unit(250, "lb"),
  32393. name: "Back",
  32394. image: {
  32395. source: "./media/characters/eikthynir/back.svg",
  32396. extra: 1342/1190,
  32397. bottom: 19/1361
  32398. }
  32399. },
  32400. dick: {
  32401. height: math.unit(2.35, "feet"),
  32402. name: "Dick",
  32403. image: {
  32404. source: "./media/characters/eikthynir/dick.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Normal",
  32411. height: math.unit(8, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32418. {
  32419. front: {
  32420. height: math.unit(99, "meters"),
  32421. weight: math.unit(13000, "tons"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/zlmos/front.svg",
  32425. extra: 2202/1992,
  32426. bottom: 315/2517
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(99, "meters"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32440. {
  32441. front: {
  32442. height: math.unit(6 + 5/12, "feet"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/purri/front.svg",
  32446. extra: 1698/1610,
  32447. bottom: 32/1730
  32448. }
  32449. },
  32450. frontAlt: {
  32451. height: math.unit(6 + 5/12, "feet"),
  32452. name: "Front (Alt)",
  32453. image: {
  32454. source: "./media/characters/purri/front-alt.svg",
  32455. extra: 450/420,
  32456. bottom: 26/476
  32457. }
  32458. },
  32459. boots: {
  32460. height: math.unit(5.5, "feet"),
  32461. name: "Boots",
  32462. image: {
  32463. source: "./media/characters/purri/boots.svg",
  32464. extra: 905/853,
  32465. bottom: 18/923
  32466. }
  32467. },
  32468. lying: {
  32469. height: math.unit(2, "feet"),
  32470. name: "Lying",
  32471. image: {
  32472. source: "./media/characters/purri/lying.svg",
  32473. extra: 940/843,
  32474. bottom: 146/1086
  32475. }
  32476. },
  32477. devious: {
  32478. height: math.unit(1.77, "feet"),
  32479. name: "Devious",
  32480. image: {
  32481. source: "./media/characters/purri/devious.svg",
  32482. extra: 1440/1155,
  32483. bottom: 147/1587
  32484. }
  32485. },
  32486. bean: {
  32487. height: math.unit(1.94, "feet"),
  32488. name: "Bean",
  32489. image: {
  32490. source: "./media/characters/purri/bean.svg"
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Micro",
  32497. height: math.unit(1, "mm")
  32498. },
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(6 + 5/12, "feet"),
  32502. default: true
  32503. },
  32504. {
  32505. name: "Macro :3c",
  32506. height: math.unit(2, "miles")
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(6 + 2/12, "feet"),
  32515. weight: math.unit(250, "lb"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/moonlight/front.svg",
  32519. extra: 1044/908,
  32520. bottom: 56/1100
  32521. }
  32522. },
  32523. feral: {
  32524. height: math.unit(3 + 1/12, "feet"),
  32525. weight: math.unit(50, "kg"),
  32526. name: "Feral",
  32527. image: {
  32528. source: "./media/characters/moonlight/feral.svg",
  32529. extra: 3705/2791,
  32530. bottom: 145/3850
  32531. }
  32532. },
  32533. paw: {
  32534. height: math.unit(1, "feet"),
  32535. name: "Paw",
  32536. image: {
  32537. source: "./media/characters/moonlight/paw.svg"
  32538. }
  32539. },
  32540. paws: {
  32541. height: math.unit(0.98, "feet"),
  32542. name: "Paws",
  32543. image: {
  32544. source: "./media/characters/moonlight/paws.svg",
  32545. extra: 939/939,
  32546. bottom: 50/989
  32547. }
  32548. },
  32549. mouth: {
  32550. height: math.unit(0.48, "feet"),
  32551. name: "Mouth",
  32552. image: {
  32553. source: "./media/characters/moonlight/mouth.svg"
  32554. }
  32555. },
  32556. dick: {
  32557. height: math.unit(1.46, "feet"),
  32558. name: "Dick",
  32559. image: {
  32560. source: "./media/characters/moonlight/dick.svg"
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(6 + 2/12, "feet"),
  32568. default: true
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(300, "feet")
  32573. },
  32574. {
  32575. name: "Macro+",
  32576. height: math.unit(1, "mile")
  32577. },
  32578. {
  32579. name: "Mt. Moon",
  32580. height: math.unit(5, "miles")
  32581. },
  32582. {
  32583. name: "Megamacro",
  32584. height: math.unit(15, "miles")
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32590. {
  32591. back: {
  32592. height: math.unit(6, "feet"),
  32593. weight: math.unit(150, "lb"),
  32594. name: "Back",
  32595. image: {
  32596. source: "./media/characters/sylen/back.svg",
  32597. extra: 1335/1273,
  32598. bottom: 107/1442
  32599. }
  32600. },
  32601. },
  32602. [
  32603. {
  32604. name: "Normal",
  32605. height: math.unit(5 + 5/12, "feet")
  32606. },
  32607. {
  32608. name: "Megamacro",
  32609. height: math.unit(3, "miles"),
  32610. default: true
  32611. },
  32612. ]
  32613. ))
  32614. characterMakers.push(() => makeCharacter(
  32615. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32616. {
  32617. front: {
  32618. height: math.unit(6, "feet"),
  32619. weight: math.unit(190, "lb"),
  32620. name: "Front",
  32621. image: {
  32622. source: "./media/characters/huttser/front.svg",
  32623. extra: 1152/1058,
  32624. bottom: 23/1175
  32625. }
  32626. },
  32627. side: {
  32628. height: math.unit(6, "feet"),
  32629. weight: math.unit(190, "lb"),
  32630. name: "Side",
  32631. image: {
  32632. source: "./media/characters/huttser/side.svg",
  32633. extra: 1174/1065,
  32634. bottom: 18/1192
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6, "feet"),
  32639. weight: math.unit(190, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/huttser/back.svg",
  32643. extra: 1158/1056,
  32644. bottom: 12/1170
  32645. }
  32646. },
  32647. },
  32648. [
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32653. {
  32654. side: {
  32655. height: math.unit(12 + 9/12, "feet"),
  32656. weight: math.unit(15000, "lb"),
  32657. name: "Side",
  32658. image: {
  32659. source: "./media/characters/faan/side.svg",
  32660. extra: 2747/2697,
  32661. bottom: 0/2747
  32662. }
  32663. },
  32664. front: {
  32665. height: math.unit(12 + 9/12, "feet"),
  32666. weight: math.unit(15000, "lb"),
  32667. name: "Front",
  32668. image: {
  32669. source: "./media/characters/faan/front.svg",
  32670. extra: 607/571,
  32671. bottom: 24/631
  32672. }
  32673. },
  32674. head: {
  32675. height: math.unit(2.85, "feet"),
  32676. name: "Head",
  32677. image: {
  32678. source: "./media/characters/faan/head.svg"
  32679. }
  32680. },
  32681. headAlt: {
  32682. height: math.unit(3.13, "feet"),
  32683. name: "Head-alt",
  32684. image: {
  32685. source: "./media/characters/faan/head-alt.svg"
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(12 + 9/12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(6, "feet"),
  32702. weight: math.unit(300, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/tanio/front.svg",
  32706. extra: 711/673,
  32707. bottom: 25/736
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(6, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(3, "inches"),
  32724. name: "Front",
  32725. image: {
  32726. source: "./media/characters/noboru/front.svg",
  32727. extra: 1039/932,
  32728. bottom: 18/1057
  32729. }
  32730. },
  32731. },
  32732. [
  32733. {
  32734. name: "Micro",
  32735. height: math.unit(3, "inches"),
  32736. default: true
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32742. {
  32743. front: {
  32744. height: math.unit(1.85, "meters"),
  32745. weight: math.unit(80, "kg"),
  32746. name: "Front",
  32747. image: {
  32748. source: "./media/characters/daniel-barrett/front.svg",
  32749. extra: 355/337,
  32750. bottom: 9/364
  32751. }
  32752. },
  32753. },
  32754. [
  32755. {
  32756. name: "Pico",
  32757. height: math.unit(0.0433, "mm")
  32758. },
  32759. {
  32760. name: "Nano",
  32761. height: math.unit(1.5, "mm")
  32762. },
  32763. {
  32764. name: "Micro",
  32765. height: math.unit(5.3, "cm"),
  32766. default: true
  32767. },
  32768. {
  32769. name: "Normal",
  32770. height: math.unit(1.85, "meters")
  32771. },
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(64.7, "meters")
  32775. },
  32776. {
  32777. name: "Megamacro",
  32778. height: math.unit(2.26, "km")
  32779. },
  32780. {
  32781. name: "Gigamacro",
  32782. height: math.unit(79, "km")
  32783. },
  32784. {
  32785. name: "Teramacro",
  32786. height: math.unit(2765, "km")
  32787. },
  32788. {
  32789. name: "Petamacro",
  32790. height: math.unit(96678, "km")
  32791. },
  32792. ]
  32793. ))
  32794. characterMakers.push(() => makeCharacter(
  32795. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32796. {
  32797. front: {
  32798. height: math.unit(30, "meters"),
  32799. weight: math.unit(400, "tons"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/zeel/front.svg",
  32803. extra: 2599/2599,
  32804. bottom: 226/2825
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Macro",
  32811. height: math.unit(30, "meters"),
  32812. default: true
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(6 + 7/12, "feet"),
  32821. weight: math.unit(210, "lb"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/tarn/front.svg",
  32825. extra: 3517/3220,
  32826. bottom: 91/3608
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(6 + 7/12, "feet"),
  32831. weight: math.unit(210, "lb"),
  32832. name: "Back",
  32833. image: {
  32834. source: "./media/characters/tarn/back.svg",
  32835. extra: 3566/3241,
  32836. bottom: 34/3600
  32837. }
  32838. },
  32839. dick: {
  32840. height: math.unit(1.65, "feet"),
  32841. name: "Dick",
  32842. image: {
  32843. source: "./media/characters/tarn/dick.svg"
  32844. }
  32845. },
  32846. paw: {
  32847. height: math.unit(1.80, "feet"),
  32848. name: "Paw",
  32849. image: {
  32850. source: "./media/characters/tarn/paw.svg"
  32851. }
  32852. },
  32853. tongue: {
  32854. height: math.unit(0.97, "feet"),
  32855. name: "Tongue",
  32856. image: {
  32857. source: "./media/characters/tarn/tongue.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Micro",
  32864. height: math.unit(4, "inches")
  32865. },
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(6 + 7/12, "feet"),
  32869. default: true
  32870. },
  32871. {
  32872. name: "Macro",
  32873. height: math.unit(300, "feet")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32879. {
  32880. front: {
  32881. height: math.unit(5 + 7/12, "feet"),
  32882. weight: math.unit(80, "kg"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32886. extra: 3023/2865,
  32887. bottom: 33/3056
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(5 + 7/12, "feet"),
  32892. weight: math.unit(80, "kg"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32896. extra: 3020/2886,
  32897. bottom: 30/3050
  32898. }
  32899. },
  32900. dick: {
  32901. height: math.unit(0.98, "feet"),
  32902. name: "Dick",
  32903. image: {
  32904. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32905. }
  32906. },
  32907. anatomy: {
  32908. height: math.unit(2.86, "feet"),
  32909. name: "Anatomy",
  32910. image: {
  32911. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Really Small",
  32918. height: math.unit(2, "inches")
  32919. },
  32920. {
  32921. name: "Micro",
  32922. height: math.unit(5.583, "inches")
  32923. },
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(5 + 7/12, "feet"),
  32927. default: true
  32928. },
  32929. {
  32930. name: "Macro",
  32931. height: math.unit(67, "feet")
  32932. },
  32933. {
  32934. name: "Megamacro",
  32935. height: math.unit(134, "feet")
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(9, "feet"),
  32944. weight: math.unit(120, "lb"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/sally/front.svg",
  32948. extra: 1506/1349,
  32949. bottom: 66/1572
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(9, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(8, "feet"),
  32966. weight: math.unit(900, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/owen/front.svg",
  32970. extra: 1761/1657,
  32971. bottom: 74/1835
  32972. }
  32973. },
  32974. side: {
  32975. height: math.unit(8, "feet"),
  32976. weight: math.unit(900, "lb"),
  32977. name: "Side",
  32978. image: {
  32979. source: "./media/characters/owen/side.svg",
  32980. extra: 1797/1734,
  32981. bottom: 30/1827
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(8, "feet"),
  32986. weight: math.unit(900, "lb"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/owen/back.svg",
  32990. extra: 1796/1706,
  32991. bottom: 59/1855
  32992. }
  32993. },
  32994. maw: {
  32995. height: math.unit(1.76, "feet"),
  32996. name: "Maw",
  32997. image: {
  32998. source: "./media/characters/owen/maw.svg"
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(8, "feet"),
  33006. default: true
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33012. {
  33013. front: {
  33014. height: math.unit(4, "feet"),
  33015. weight: math.unit(400, "lb"),
  33016. name: "Front",
  33017. image: {
  33018. source: "./media/characters/ryth/front.svg",
  33019. extra: 1920/1748,
  33020. bottom: 42/1962
  33021. }
  33022. },
  33023. back: {
  33024. height: math.unit(4, "feet"),
  33025. weight: math.unit(400, "lb"),
  33026. name: "Back",
  33027. image: {
  33028. source: "./media/characters/ryth/back.svg",
  33029. extra: 1897/1690,
  33030. bottom: 89/1986
  33031. }
  33032. },
  33033. mouth: {
  33034. height: math.unit(1.39, "feet"),
  33035. name: "Mouth",
  33036. image: {
  33037. source: "./media/characters/ryth/mouth.svg"
  33038. }
  33039. },
  33040. tailmaw: {
  33041. height: math.unit(1.23, "feet"),
  33042. name: "Tailmaw",
  33043. image: {
  33044. source: "./media/characters/ryth/tailmaw.svg"
  33045. }
  33046. },
  33047. goia: {
  33048. height: math.unit(4, "meters"),
  33049. weight: math.unit(10800, "lb"),
  33050. name: "Goia",
  33051. image: {
  33052. source: "./media/characters/ryth/goia.svg",
  33053. extra: 745/640,
  33054. bottom: 107/852
  33055. }
  33056. },
  33057. goiaFront: {
  33058. height: math.unit(4, "meters"),
  33059. weight: math.unit(10800, "lb"),
  33060. name: "Goia (Front)",
  33061. image: {
  33062. source: "./media/characters/ryth/goia-front.svg",
  33063. extra: 750/586,
  33064. bottom: 114/864
  33065. }
  33066. },
  33067. goiaMaw: {
  33068. height: math.unit(5.55, "feet"),
  33069. name: "Goia Maw",
  33070. image: {
  33071. source: "./media/characters/ryth/goia-maw.svg"
  33072. }
  33073. },
  33074. goiaForepaw: {
  33075. height: math.unit(3.5, "feet"),
  33076. name: "Goia Forepaw",
  33077. image: {
  33078. source: "./media/characters/ryth/goia-forepaw.svg"
  33079. }
  33080. },
  33081. goiaHindpaw: {
  33082. height: math.unit(5.55, "feet"),
  33083. name: "Goia Hindpaw",
  33084. image: {
  33085. source: "./media/characters/ryth/goia-hindpaw.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(4, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(7, "feet"),
  33102. weight: math.unit(180, "lb"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/necrolance/front.svg",
  33106. extra: 1062/947,
  33107. bottom: 41/1103
  33108. }
  33109. },
  33110. back: {
  33111. height: math.unit(7, "feet"),
  33112. weight: math.unit(180, "lb"),
  33113. name: "Back",
  33114. image: {
  33115. source: "./media/characters/necrolance/back.svg",
  33116. extra: 1045/984,
  33117. bottom: 14/1059
  33118. }
  33119. },
  33120. wing: {
  33121. height: math.unit(2.67, "feet"),
  33122. name: "Wing",
  33123. image: {
  33124. source: "./media/characters/necrolance/wing.svg"
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(7, "feet"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33138. {
  33139. front: {
  33140. height: math.unit(76, "meters"),
  33141. weight: math.unit(30000, "tons"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/tyler/front.svg",
  33145. extra: 1640/1640,
  33146. bottom: 114/1754
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Macro",
  33153. height: math.unit(76, "meters"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(4 + 11/12, "feet"),
  33163. weight: math.unit(132, "lb"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/icey/front.svg",
  33167. extra: 2750/2550,
  33168. bottom: 33/2783
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(4 + 11/12, "feet"),
  33173. weight: math.unit(132, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/icey/back.svg",
  33177. extra: 2624/2481,
  33178. bottom: 35/2659
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(4 + 11/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(100, "feet"),
  33195. weight: math.unit(0, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/smile/front.svg",
  33199. extra: 2983/2912,
  33200. bottom: 162/3145
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(100, "feet"),
  33205. weight: math.unit(0, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/smile/back.svg",
  33209. extra: 3143/3031,
  33210. bottom: 91/3234
  33211. }
  33212. },
  33213. head: {
  33214. height: math.unit(26.3, "feet"),
  33215. weight: math.unit(0, "lb"),
  33216. name: "Head",
  33217. image: {
  33218. source: "./media/characters/smile/head.svg"
  33219. }
  33220. },
  33221. collar: {
  33222. height: math.unit(5.3, "feet"),
  33223. weight: math.unit(0, "lb"),
  33224. name: "Collar",
  33225. image: {
  33226. source: "./media/characters/smile/collar.svg"
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(100, "feet"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33240. {
  33241. dragon: {
  33242. height: math.unit(26, "feet"),
  33243. weight: math.unit(36, "tons"),
  33244. name: "Dragon",
  33245. image: {
  33246. source: "./media/characters/arimphae/dragon.svg",
  33247. extra: 1574/983,
  33248. bottom: 357/1931
  33249. }
  33250. },
  33251. drake: {
  33252. height: math.unit(9, "feet"),
  33253. weight: math.unit(1.5, "tons"),
  33254. name: "Drake",
  33255. image: {
  33256. source: "./media/characters/arimphae/drake.svg",
  33257. extra: 1120/925,
  33258. bottom: 435/1555
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Small",
  33265. height: math.unit(26*5/9, "feet")
  33266. },
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(26, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(8 + 9/12, "feet"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/xander/front.svg",
  33282. extra: 1237/974,
  33283. bottom: 94/1331
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(8 + 9/12, "feet"),
  33291. default: true
  33292. },
  33293. {
  33294. name: "Gaze Grabber",
  33295. height: math.unit(13 + 8/12, "feet")
  33296. },
  33297. {
  33298. name: "Jaw Dropper",
  33299. height: math.unit(27, "feet")
  33300. },
  33301. {
  33302. name: "Show Stopper",
  33303. height: math.unit(136, "feet")
  33304. },
  33305. {
  33306. name: "Superstar",
  33307. height: math.unit(1.9e6, "miles")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33313. {
  33314. side: {
  33315. height: math.unit(2100, "feet"),
  33316. name: "Side",
  33317. image: {
  33318. source: "./media/characters/osiris/side.svg",
  33319. extra: 1105/939,
  33320. bottom: 167/1272
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Macro",
  33327. height: math.unit(2100, "feet"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33334. {
  33335. front: {
  33336. height: math.unit(6 + 8/12, "feet"),
  33337. weight: math.unit(225, "lb"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/rhys-londe/front.svg",
  33341. extra: 2258/2141,
  33342. bottom: 188/2446
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(6 + 8/12, "feet"),
  33347. weight: math.unit(225, "lb"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/rhys-londe/back.svg",
  33351. extra: 2237/2137,
  33352. bottom: 63/2300
  33353. }
  33354. },
  33355. frontNsfw: {
  33356. height: math.unit(6 + 8/12, "feet"),
  33357. weight: math.unit(225, "lb"),
  33358. name: "Front (NSFW)",
  33359. image: {
  33360. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33361. extra: 2258/2141,
  33362. bottom: 188/2446
  33363. }
  33364. },
  33365. backNsfw: {
  33366. height: math.unit(6 + 8/12, "feet"),
  33367. weight: math.unit(225, "lb"),
  33368. name: "Back (NSFW)",
  33369. image: {
  33370. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33371. extra: 2237/2137,
  33372. bottom: 63/2300
  33373. }
  33374. },
  33375. dick: {
  33376. height: math.unit(30, "inches"),
  33377. name: "Dick",
  33378. image: {
  33379. source: "./media/characters/rhys-londe/dick.svg"
  33380. }
  33381. },
  33382. maw: {
  33383. height: math.unit(1.6, "feet"),
  33384. name: "Maw",
  33385. image: {
  33386. source: "./media/characters/rhys-londe/maw.svg"
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(6 + 8/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33400. {
  33401. front: {
  33402. height: math.unit(3 + 10/12, "feet"),
  33403. weight: math.unit(90, "lb"),
  33404. name: "Front",
  33405. image: {
  33406. source: "./media/characters/taivas-ensim/front.svg",
  33407. extra: 1327/1216,
  33408. bottom: 96/1423
  33409. }
  33410. },
  33411. back: {
  33412. height: math.unit(3 + 10/12, "feet"),
  33413. weight: math.unit(90, "lb"),
  33414. name: "Back",
  33415. image: {
  33416. source: "./media/characters/taivas-ensim/back.svg",
  33417. extra: 1355/1247,
  33418. bottom: 11/1366
  33419. }
  33420. },
  33421. frontNsfw: {
  33422. height: math.unit(3 + 10/12, "feet"),
  33423. weight: math.unit(90, "lb"),
  33424. name: "Front (NSFW)",
  33425. image: {
  33426. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33427. extra: 1327/1216,
  33428. bottom: 96/1423
  33429. }
  33430. },
  33431. backNsfw: {
  33432. height: math.unit(3 + 10/12, "feet"),
  33433. weight: math.unit(90, "lb"),
  33434. name: "Back (NSFW)",
  33435. image: {
  33436. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33437. extra: 1355/1247,
  33438. bottom: 11/1366
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(3 + 10/12, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(9 + 6/12, "feet"),
  33455. weight: math.unit(940, "lb"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/byliss/front.svg",
  33459. extra: 1327/1290,
  33460. bottom: 82/1409
  33461. }
  33462. },
  33463. back: {
  33464. height: math.unit(9 + 6/12, "feet"),
  33465. weight: math.unit(940, "lb"),
  33466. name: "Back",
  33467. image: {
  33468. source: "./media/characters/byliss/back.svg",
  33469. extra: 1376/1349,
  33470. bottom: 9/1385
  33471. }
  33472. },
  33473. frontNsfw: {
  33474. height: math.unit(9 + 6/12, "feet"),
  33475. weight: math.unit(940, "lb"),
  33476. name: "Front (NSFW)",
  33477. image: {
  33478. source: "./media/characters/byliss/front-nsfw.svg",
  33479. extra: 1327/1290,
  33480. bottom: 82/1409
  33481. }
  33482. },
  33483. backNsfw: {
  33484. height: math.unit(9 + 6/12, "feet"),
  33485. weight: math.unit(940, "lb"),
  33486. name: "Back (NSFW)",
  33487. image: {
  33488. source: "./media/characters/byliss/back-nsfw.svg",
  33489. extra: 1376/1349,
  33490. bottom: 9/1385
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(9 + 6/12, "feet"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(5 + 2/12, "feet"),
  33507. weight: math.unit(200, "lb"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/noraly/front.svg",
  33511. extra: 4985/4773,
  33512. bottom: 150/5135
  33513. }
  33514. },
  33515. full: {
  33516. height: math.unit(5 + 2/12, "feet"),
  33517. weight: math.unit(164, "lb"),
  33518. name: "Full",
  33519. image: {
  33520. source: "./media/characters/noraly/full.svg",
  33521. extra: 1114/1059,
  33522. bottom: 35/1149
  33523. }
  33524. },
  33525. fuller: {
  33526. height: math.unit(5 + 2/12, "feet"),
  33527. weight: math.unit(230, "lb"),
  33528. name: "Fuller",
  33529. image: {
  33530. source: "./media/characters/noraly/fuller.svg",
  33531. extra: 1114/1059,
  33532. bottom: 35/1149
  33533. }
  33534. },
  33535. fullest: {
  33536. height: math.unit(5 + 2/12, "feet"),
  33537. weight: math.unit(300, "lb"),
  33538. name: "Fullest",
  33539. image: {
  33540. source: "./media/characters/noraly/fullest.svg",
  33541. extra: 1114/1059,
  33542. bottom: 35/1149
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(5 + 2/12, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33556. {
  33557. front: {
  33558. height: math.unit(5 + 2/12, "feet"),
  33559. weight: math.unit(210, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/pera/front.svg",
  33563. extra: 1560/1531,
  33564. bottom: 165/1725
  33565. }
  33566. },
  33567. back: {
  33568. height: math.unit(5 + 2/12, "feet"),
  33569. weight: math.unit(210, "lb"),
  33570. name: "Back",
  33571. image: {
  33572. source: "./media/characters/pera/back.svg",
  33573. extra: 1523/1493,
  33574. bottom: 152/1675
  33575. }
  33576. },
  33577. dick: {
  33578. height: math.unit(2.4, "feet"),
  33579. name: "Dick",
  33580. image: {
  33581. source: "./media/characters/pera/dick.svg"
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Normal",
  33588. height: math.unit(5 + 2/12, "feet"),
  33589. default: true
  33590. },
  33591. ]
  33592. ))
  33593. characterMakers.push(() => makeCharacter(
  33594. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33595. {
  33596. front: {
  33597. height: math.unit(12, "feet"),
  33598. weight: math.unit(3200, "lb"),
  33599. name: "Front",
  33600. image: {
  33601. source: "./media/characters/julian/front.svg",
  33602. extra: 2962/2701,
  33603. bottom: 184/3146
  33604. }
  33605. },
  33606. maw: {
  33607. height: math.unit(5.35, "feet"),
  33608. name: "Maw",
  33609. image: {
  33610. source: "./media/characters/julian/maw.svg"
  33611. }
  33612. },
  33613. paw: {
  33614. height: math.unit(3.07, "feet"),
  33615. name: "Paw",
  33616. image: {
  33617. source: "./media/characters/julian/paw.svg"
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Default",
  33624. height: math.unit(12, "feet"),
  33625. default: true
  33626. },
  33627. {
  33628. name: "Big",
  33629. height: math.unit(50, "feet")
  33630. },
  33631. {
  33632. name: "Really Big",
  33633. height: math.unit(1, "mile")
  33634. },
  33635. {
  33636. name: "Extremely Big",
  33637. height: math.unit(100, "miles")
  33638. },
  33639. {
  33640. name: "Planet Hugger",
  33641. height: math.unit(200, "megameters")
  33642. },
  33643. {
  33644. name: "Unreasonably Big",
  33645. height: math.unit(1e300, "meters")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33651. {
  33652. solgooleo: {
  33653. height: math.unit(4, "meters"),
  33654. weight: math.unit(6000*1.5, "kg"),
  33655. volume: math.unit(6000, "liters"),
  33656. name: "Solgooleo",
  33657. image: {
  33658. source: "./media/characters/pi/solgooleo.svg",
  33659. extra: 388/331,
  33660. bottom: 29/417
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(4, "meters"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(8, "feet"),
  33677. weight: math.unit(4, "tons"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/shaun/front.svg",
  33681. extra: 503/495,
  33682. bottom: 20/523
  33683. }
  33684. },
  33685. back: {
  33686. height: math.unit(8, "feet"),
  33687. weight: math.unit(4, "tons"),
  33688. name: "Back",
  33689. image: {
  33690. source: "./media/characters/shaun/back.svg",
  33691. extra: 487/480,
  33692. bottom: 20/507
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Lorg",
  33699. height: math.unit(8, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33706. {
  33707. frontAnthro: {
  33708. height: math.unit(7, "feet"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/sini/front-anthro.svg",
  33712. extra: 726/678,
  33713. bottom: 35/761
  33714. },
  33715. form: "anthro",
  33716. default: true
  33717. },
  33718. backAnthro: {
  33719. height: math.unit(7, "feet"),
  33720. name: "Back",
  33721. image: {
  33722. source: "./media/characters/sini/back-anthro.svg",
  33723. extra: 743/701,
  33724. bottom: 12/755
  33725. },
  33726. form: "anthro",
  33727. },
  33728. frontAnthroNsfw: {
  33729. height: math.unit(7, "feet"),
  33730. name: "Front (NSFW)",
  33731. image: {
  33732. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33733. extra: 726/678,
  33734. bottom: 35/761
  33735. },
  33736. form: "anthro"
  33737. },
  33738. backAnthroNsfw: {
  33739. height: math.unit(7, "feet"),
  33740. name: "Back (NSFW)",
  33741. image: {
  33742. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33743. extra: 743/701,
  33744. bottom: 12/755
  33745. },
  33746. form: "anthro",
  33747. },
  33748. mawAnthro: {
  33749. height: math.unit(2.14, "feet"),
  33750. name: "Maw",
  33751. image: {
  33752. source: "./media/characters/sini/maw-anthro.svg"
  33753. },
  33754. form: "anthro"
  33755. },
  33756. dick: {
  33757. height: math.unit(1.45, "feet"),
  33758. name: "Dick",
  33759. image: {
  33760. source: "./media/characters/sini/dick-anthro.svg"
  33761. },
  33762. form: "anthro"
  33763. },
  33764. feral: {
  33765. height: math.unit(16, "feet"),
  33766. name: "Feral",
  33767. image: {
  33768. source: "./media/characters/sini/feral.svg",
  33769. extra: 814/605,
  33770. bottom: 11/825
  33771. },
  33772. form: "feral",
  33773. default: true
  33774. },
  33775. feralNsfw: {
  33776. height: math.unit(16, "feet"),
  33777. name: "Feral (NSFW)",
  33778. image: {
  33779. source: "./media/characters/sini/feral-nsfw.svg",
  33780. extra: 814/605,
  33781. bottom: 11/825
  33782. },
  33783. form: "feral"
  33784. },
  33785. mawFeral: {
  33786. height: math.unit(5.66, "feet"),
  33787. name: "Maw",
  33788. image: {
  33789. source: "./media/characters/sini/maw-feral.svg"
  33790. },
  33791. form: "feral",
  33792. },
  33793. pawFeral: {
  33794. height: math.unit(5.17, "feet"),
  33795. name: "Paw",
  33796. image: {
  33797. source: "./media/characters/sini/paw-feral.svg"
  33798. },
  33799. form: "feral",
  33800. },
  33801. rumpFeral: {
  33802. height: math.unit(13.11, "feet"),
  33803. name: "Rump",
  33804. image: {
  33805. source: "./media/characters/sini/rump-feral.svg"
  33806. },
  33807. form: "feral",
  33808. },
  33809. dickFeral: {
  33810. height: math.unit(1, "feet"),
  33811. name: "Dick",
  33812. image: {
  33813. source: "./media/characters/sini/dick-feral.svg"
  33814. },
  33815. form: "feral",
  33816. },
  33817. eyeFeral: {
  33818. height: math.unit(1.23, "feet"),
  33819. name: "Eye",
  33820. image: {
  33821. source: "./media/characters/sini/eye-feral.svg"
  33822. },
  33823. form: "feral",
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(7, "feet"),
  33830. default: true,
  33831. form: "anthro"
  33832. },
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(16, "feet"),
  33836. default: true,
  33837. form: "feral"
  33838. },
  33839. ],
  33840. {
  33841. "anthro": {
  33842. name: "Anthro",
  33843. default: true
  33844. },
  33845. "feral": {
  33846. name: "Feral",
  33847. }
  33848. }
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33852. {
  33853. side: {
  33854. height: math.unit(47.2, "meters"),
  33855. weight: math.unit(10000, "tons"),
  33856. name: "Side",
  33857. image: {
  33858. source: "./media/characters/raylldo/side.svg",
  33859. extra: 2363/642,
  33860. bottom: 221/2584
  33861. }
  33862. },
  33863. top: {
  33864. height: math.unit(240, "meters"),
  33865. weight: math.unit(10000, "tons"),
  33866. name: "Top",
  33867. image: {
  33868. source: "./media/characters/raylldo/top.svg"
  33869. }
  33870. },
  33871. bottom: {
  33872. height: math.unit(240, "meters"),
  33873. weight: math.unit(10000, "tons"),
  33874. name: "Bottom",
  33875. image: {
  33876. source: "./media/characters/raylldo/bottom.svg"
  33877. }
  33878. },
  33879. head: {
  33880. height: math.unit(38.6, "meters"),
  33881. name: "Head",
  33882. image: {
  33883. source: "./media/characters/raylldo/head.svg",
  33884. extra: 1335/1112,
  33885. bottom: 0/1335
  33886. }
  33887. },
  33888. maw: {
  33889. height: math.unit(16.37, "meters"),
  33890. name: "Maw",
  33891. image: {
  33892. source: "./media/characters/raylldo/maw.svg",
  33893. extra: 883/660,
  33894. bottom: 0/883
  33895. },
  33896. extraAttributes: {
  33897. preyCapacity: {
  33898. name: "Capacity",
  33899. power: 3,
  33900. type: "volume",
  33901. base: math.unit(1000, "people")
  33902. }
  33903. }
  33904. },
  33905. forepaw: {
  33906. height: math.unit(18, "meters"),
  33907. name: "Forepaw",
  33908. image: {
  33909. source: "./media/characters/raylldo/forepaw.svg"
  33910. }
  33911. },
  33912. hindpaw: {
  33913. height: math.unit(23, "meters"),
  33914. name: "Hindpaw",
  33915. image: {
  33916. source: "./media/characters/raylldo/hindpaw.svg"
  33917. }
  33918. },
  33919. genitals: {
  33920. height: math.unit(42, "meters"),
  33921. name: "Genitals",
  33922. image: {
  33923. source: "./media/characters/raylldo/genitals.svg"
  33924. }
  33925. },
  33926. },
  33927. [
  33928. {
  33929. name: "Normal",
  33930. height: math.unit(47.2, "meters"),
  33931. default: true
  33932. },
  33933. ]
  33934. ))
  33935. characterMakers.push(() => makeCharacter(
  33936. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33937. {
  33938. anthroFront: {
  33939. height: math.unit(9, "feet"),
  33940. weight: math.unit(600, "lb"),
  33941. name: "Anthro (Front)",
  33942. image: {
  33943. source: "./media/characters/glint/anthro-front.svg",
  33944. extra: 1097/1018,
  33945. bottom: 28/1125
  33946. }
  33947. },
  33948. anthroBack: {
  33949. height: math.unit(9, "feet"),
  33950. weight: math.unit(600, "lb"),
  33951. name: "Anthro (Back)",
  33952. image: {
  33953. source: "./media/characters/glint/anthro-back.svg",
  33954. extra: 1154/997,
  33955. bottom: 36/1190
  33956. }
  33957. },
  33958. feral: {
  33959. height: math.unit(11, "feet"),
  33960. weight: math.unit(50000, "lb"),
  33961. name: "Feral",
  33962. image: {
  33963. source: "./media/characters/glint/feral.svg",
  33964. extra: 3035/1585,
  33965. bottom: 1169/4204
  33966. }
  33967. },
  33968. dickAnthro: {
  33969. height: math.unit(0.7, "meters"),
  33970. name: "Dick (Anthro)",
  33971. image: {
  33972. source: "./media/characters/glint/dick-anthro.svg"
  33973. }
  33974. },
  33975. dickFeral: {
  33976. height: math.unit(2.65, "meters"),
  33977. name: "Dick (Feral)",
  33978. image: {
  33979. source: "./media/characters/glint/dick-feral.svg"
  33980. }
  33981. },
  33982. slitHidden: {
  33983. height: math.unit(5.85, "meters"),
  33984. name: "Slit (Hidden)",
  33985. image: {
  33986. source: "./media/characters/glint/slit-hidden.svg"
  33987. }
  33988. },
  33989. slitErect: {
  33990. height: math.unit(5.85, "meters"),
  33991. name: "Slit (Erect)",
  33992. image: {
  33993. source: "./media/characters/glint/slit-erect.svg"
  33994. }
  33995. },
  33996. mawAnthro: {
  33997. height: math.unit(0.63, "meters"),
  33998. name: "Maw (Anthro)",
  33999. image: {
  34000. source: "./media/characters/glint/maw.svg"
  34001. }
  34002. },
  34003. mawFeral: {
  34004. height: math.unit(2.89, "meters"),
  34005. name: "Maw (Feral)",
  34006. image: {
  34007. source: "./media/characters/glint/maw.svg"
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Normal",
  34014. height: math.unit(9, "feet"),
  34015. default: true
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34021. {
  34022. side: {
  34023. height: math.unit(15, "feet"),
  34024. weight: math.unit(5000, "kg"),
  34025. name: "Side",
  34026. image: {
  34027. source: "./media/characters/kairne/side.svg",
  34028. extra: 979/811,
  34029. bottom: 13/992
  34030. }
  34031. },
  34032. front: {
  34033. height: math.unit(15, "feet"),
  34034. weight: math.unit(5000, "kg"),
  34035. name: "Front",
  34036. image: {
  34037. source: "./media/characters/kairne/front.svg",
  34038. extra: 908/814,
  34039. bottom: 26/934
  34040. }
  34041. },
  34042. sideNsfw: {
  34043. height: math.unit(15, "feet"),
  34044. weight: math.unit(5000, "kg"),
  34045. name: "Side (NSFW)",
  34046. image: {
  34047. source: "./media/characters/kairne/side-nsfw.svg",
  34048. extra: 979/811,
  34049. bottom: 13/992
  34050. }
  34051. },
  34052. frontNsfw: {
  34053. height: math.unit(15, "feet"),
  34054. weight: math.unit(5000, "kg"),
  34055. name: "Front (NSFW)",
  34056. image: {
  34057. source: "./media/characters/kairne/front-nsfw.svg",
  34058. extra: 908/814,
  34059. bottom: 26/934
  34060. }
  34061. },
  34062. dickCaged: {
  34063. height: math.unit(0.65, "meters"),
  34064. name: "Dick-caged",
  34065. image: {
  34066. source: "./media/characters/kairne/dick-caged.svg"
  34067. }
  34068. },
  34069. dick: {
  34070. height: math.unit(0.79, "meters"),
  34071. name: "Dick",
  34072. image: {
  34073. source: "./media/characters/kairne/dick.svg"
  34074. }
  34075. },
  34076. genitals: {
  34077. height: math.unit(1.29, "meters"),
  34078. name: "Genitals",
  34079. image: {
  34080. source: "./media/characters/kairne/genitals.svg"
  34081. }
  34082. },
  34083. maw: {
  34084. height: math.unit(1.73, "meters"),
  34085. name: "Maw",
  34086. image: {
  34087. source: "./media/characters/kairne/maw.svg"
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(15, "feet"),
  34095. default: true
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(5 + 8/12, "feet"),
  34104. weight: math.unit(139, "lb"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/biscuit-jackal/front.svg",
  34108. extra: 2106/1961,
  34109. bottom: 58/2164
  34110. }
  34111. },
  34112. back: {
  34113. height: math.unit(5 + 8/12, "feet"),
  34114. weight: math.unit(139, "lb"),
  34115. name: "Back",
  34116. image: {
  34117. source: "./media/characters/biscuit-jackal/back.svg",
  34118. extra: 2132/1976,
  34119. bottom: 57/2189
  34120. }
  34121. },
  34122. werejackal: {
  34123. height: math.unit(6 + 3/12, "feet"),
  34124. weight: math.unit(188, "lb"),
  34125. name: "Werejackal",
  34126. image: {
  34127. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34128. extra: 2373/2178,
  34129. bottom: 53/2426
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(5 + 8/12, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(140, "cm"),
  34146. weight: math.unit(45, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/tayra-white/front.svg",
  34150. extra: 2229/2192,
  34151. bottom: 75/2304
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(140, "cm"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34165. {
  34166. front: {
  34167. height: math.unit(4 + 5/12, "feet"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/scoop/front.svg",
  34171. extra: 1257/1136,
  34172. bottom: 69/1326
  34173. }
  34174. },
  34175. back: {
  34176. height: math.unit(4 + 5/12, "feet"),
  34177. name: "Back",
  34178. image: {
  34179. source: "./media/characters/scoop/back.svg",
  34180. extra: 1321/1152,
  34181. bottom: 32/1353
  34182. }
  34183. },
  34184. maw: {
  34185. height: math.unit(0.68, "feet"),
  34186. name: "Maw",
  34187. image: {
  34188. source: "./media/characters/scoop/maw.svg"
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Really Small",
  34195. height: math.unit(1, "mm")
  34196. },
  34197. {
  34198. name: "Micro",
  34199. height: math.unit(1, "inch")
  34200. },
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(4 + 5/12, "feet"),
  34204. default: true
  34205. },
  34206. {
  34207. name: "Macro",
  34208. height: math.unit(200, "feet")
  34209. },
  34210. {
  34211. name: "Megamacro",
  34212. height: math.unit(3240, "feet")
  34213. },
  34214. {
  34215. name: "Teramacro",
  34216. height: math.unit(2500, "miles")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(15 + 7/12, "feet"),
  34225. weight: math.unit(1150, "tons"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/saphinara/front.svg",
  34229. extra: 1837/1643,
  34230. bottom: 84/1921
  34231. },
  34232. form: "normal",
  34233. default: true
  34234. },
  34235. side: {
  34236. height: math.unit(15 + 7/12, "feet"),
  34237. weight: math.unit(1150, "tons"),
  34238. name: "Side",
  34239. image: {
  34240. source: "./media/characters/saphinara/side.svg",
  34241. extra: 605/547,
  34242. bottom: 6/611
  34243. },
  34244. form: "normal"
  34245. },
  34246. back: {
  34247. height: math.unit(15 + 7/12, "feet"),
  34248. weight: math.unit(1150, "tons"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/saphinara/back.svg",
  34252. extra: 591/531,
  34253. bottom: 13/604
  34254. },
  34255. form: "normal"
  34256. },
  34257. frontTail: {
  34258. height: math.unit(15 + 7/12, "feet"),
  34259. weight: math.unit(1150, "tons"),
  34260. name: "Front (Full Tail)",
  34261. image: {
  34262. source: "./media/characters/saphinara/front-tail.svg",
  34263. extra: 2256/1630,
  34264. bottom: 261/2517
  34265. },
  34266. form: "normal"
  34267. },
  34268. insides: {
  34269. height: math.unit(11.92, "feet"),
  34270. name: "Insides",
  34271. image: {
  34272. source: "./media/characters/saphinara/insides.svg"
  34273. },
  34274. form: "normal"
  34275. },
  34276. head: {
  34277. height: math.unit(4.17, "feet"),
  34278. name: "Head",
  34279. image: {
  34280. source: "./media/characters/saphinara/head.svg"
  34281. },
  34282. form: "normal"
  34283. },
  34284. tongue: {
  34285. height: math.unit(4.60, "feet"),
  34286. name: "Tongue",
  34287. image: {
  34288. source: "./media/characters/saphinara/tongue.svg"
  34289. },
  34290. form: "normal"
  34291. },
  34292. headEnraged: {
  34293. height: math.unit(5.55, "feet"),
  34294. name: "Head (Enraged)",
  34295. image: {
  34296. source: "./media/characters/saphinara/head-enraged.svg"
  34297. },
  34298. form: "normal"
  34299. },
  34300. wings: {
  34301. height: math.unit(11.95, "feet"),
  34302. name: "Wings",
  34303. image: {
  34304. source: "./media/characters/saphinara/wings.svg"
  34305. },
  34306. form: "normal"
  34307. },
  34308. feathers: {
  34309. height: math.unit(8.92, "feet"),
  34310. name: "Feathers",
  34311. image: {
  34312. source: "./media/characters/saphinara/feathers.svg"
  34313. },
  34314. form: "normal"
  34315. },
  34316. shackles: {
  34317. height: math.unit(2, "feet"),
  34318. name: "Shackles",
  34319. image: {
  34320. source: "./media/characters/saphinara/shackles.svg"
  34321. },
  34322. form: "normal"
  34323. },
  34324. eyes: {
  34325. height: math.unit(1.331, "feet"),
  34326. name: "Eyes",
  34327. image: {
  34328. source: "./media/characters/saphinara/eyes.svg"
  34329. },
  34330. form: "normal"
  34331. },
  34332. eyesEnraged: {
  34333. height: math.unit(1.331, "feet"),
  34334. name: "Eyes (Enraged)",
  34335. image: {
  34336. source: "./media/characters/saphinara/eyes-enraged.svg"
  34337. },
  34338. form: "normal"
  34339. },
  34340. trueFormSide: {
  34341. height: math.unit(200, "feet"),
  34342. weight: math.unit(1e7, "tons"),
  34343. name: "Side",
  34344. image: {
  34345. source: "./media/characters/saphinara/true-form-side.svg",
  34346. extra: 1399/770,
  34347. bottom: 97/1496
  34348. },
  34349. form: "true-form",
  34350. default: true
  34351. },
  34352. trueFormMaw: {
  34353. height: math.unit(71.5, "feet"),
  34354. name: "Maw",
  34355. image: {
  34356. source: "./media/characters/saphinara/true-form-maw.svg",
  34357. extra: 2302/1453,
  34358. bottom: 0/2302
  34359. },
  34360. form: "true-form"
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(15 + 7/12, "feet"),
  34367. default: true,
  34368. form: "normal"
  34369. },
  34370. {
  34371. name: "Angry",
  34372. height: math.unit(30 + 6/12, "feet"),
  34373. form: "normal"
  34374. },
  34375. {
  34376. name: "Enraged",
  34377. height: math.unit(102 + 1/12, "feet"),
  34378. form: "normal"
  34379. },
  34380. {
  34381. name: "True",
  34382. height: math.unit(200, "feet"),
  34383. default: true,
  34384. form: "true-form"
  34385. }
  34386. ],
  34387. {
  34388. "normal": {
  34389. name: "Normal",
  34390. default: true
  34391. },
  34392. "true-form": {
  34393. name: "True Form"
  34394. }
  34395. }
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(6 + 8/12, "feet"),
  34402. weight: math.unit(300, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/jrain/front.svg",
  34406. extra: 3039/2865,
  34407. bottom: 399/3438
  34408. }
  34409. },
  34410. back: {
  34411. height: math.unit(6 + 8/12, "feet"),
  34412. weight: math.unit(300, "lb"),
  34413. name: "Back",
  34414. image: {
  34415. source: "./media/characters/jrain/back.svg",
  34416. extra: 3089/2938,
  34417. bottom: 172/3261
  34418. }
  34419. },
  34420. head: {
  34421. height: math.unit(2.14, "feet"),
  34422. name: "Head",
  34423. image: {
  34424. source: "./media/characters/jrain/head.svg"
  34425. }
  34426. },
  34427. maw: {
  34428. height: math.unit(1.77, "feet"),
  34429. name: "Maw",
  34430. image: {
  34431. source: "./media/characters/jrain/maw.svg"
  34432. }
  34433. },
  34434. leftHand: {
  34435. height: math.unit(1.1, "feet"),
  34436. name: "Left Hand",
  34437. image: {
  34438. source: "./media/characters/jrain/left-hand.svg"
  34439. }
  34440. },
  34441. rightHand: {
  34442. height: math.unit(1.1, "feet"),
  34443. name: "Right Hand",
  34444. image: {
  34445. source: "./media/characters/jrain/right-hand.svg"
  34446. }
  34447. },
  34448. eye: {
  34449. height: math.unit(0.35, "feet"),
  34450. name: "Eye",
  34451. image: {
  34452. source: "./media/characters/jrain/eye.svg"
  34453. }
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(6 + 8/12, "feet"),
  34460. default: true
  34461. },
  34462. {
  34463. name: "Casually Large",
  34464. height: math.unit(25, "feet")
  34465. },
  34466. {
  34467. name: "Giant",
  34468. height: math.unit(100, "feet")
  34469. },
  34470. {
  34471. name: "Kaiju",
  34472. height: math.unit(300, "feet")
  34473. },
  34474. ]
  34475. ))
  34476. characterMakers.push(() => makeCharacter(
  34477. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34478. {
  34479. dragon: {
  34480. height: math.unit(5, "meters"),
  34481. name: "Dragon",
  34482. image: {
  34483. source: "./media/characters/sabrina/dragon.svg",
  34484. extra: 3670 / 2365,
  34485. bottom: 333 / 4003
  34486. }
  34487. },
  34488. gryphon: {
  34489. height: math.unit(3, "meters"),
  34490. name: "Gryphon",
  34491. image: {
  34492. source: "./media/characters/sabrina/gryphon.svg",
  34493. extra: 1576 / 945,
  34494. bottom: 71 / 1647
  34495. }
  34496. },
  34497. snake: {
  34498. height: math.unit(12, "meters"),
  34499. name: "Snake",
  34500. image: {
  34501. source: "./media/characters/sabrina/snake.svg",
  34502. extra: 1758 / 1320,
  34503. bottom: 186 / 1944
  34504. }
  34505. },
  34506. collar: {
  34507. height: math.unit(1.86, "meters"),
  34508. name: "Collar",
  34509. image: {
  34510. source: "./media/characters/sabrina/collar.svg"
  34511. }
  34512. },
  34513. eye: {
  34514. height: math.unit(0.53, "meters"),
  34515. name: "Eye",
  34516. image: {
  34517. source: "./media/characters/sabrina/eye.svg"
  34518. }
  34519. },
  34520. foot: {
  34521. height: math.unit(1.86, "meters"),
  34522. name: "Foot",
  34523. image: {
  34524. source: "./media/characters/sabrina/foot.svg"
  34525. }
  34526. },
  34527. hand: {
  34528. height: math.unit(1.32, "meters"),
  34529. name: "Hand",
  34530. image: {
  34531. source: "./media/characters/sabrina/hand.svg"
  34532. }
  34533. },
  34534. head: {
  34535. height: math.unit(2.44, "meters"),
  34536. name: "Head",
  34537. image: {
  34538. source: "./media/characters/sabrina/head.svg"
  34539. }
  34540. },
  34541. headAngry: {
  34542. height: math.unit(2.44, "meters"),
  34543. name: "Head (Angry))",
  34544. image: {
  34545. source: "./media/characters/sabrina/head-angry.svg"
  34546. }
  34547. },
  34548. maw: {
  34549. height: math.unit(1.65, "meters"),
  34550. name: "Maw",
  34551. image: {
  34552. source: "./media/characters/sabrina/maw.svg"
  34553. }
  34554. },
  34555. spikes: {
  34556. height: math.unit(1.69, "meters"),
  34557. name: "Spikes",
  34558. image: {
  34559. source: "./media/characters/sabrina/spikes.svg"
  34560. }
  34561. },
  34562. stomach: {
  34563. height: math.unit(1.15, "meters"),
  34564. name: "Stomach",
  34565. image: {
  34566. source: "./media/characters/sabrina/stomach.svg"
  34567. }
  34568. },
  34569. tongue: {
  34570. height: math.unit(1.27, "meters"),
  34571. name: "Tongue",
  34572. image: {
  34573. source: "./media/characters/sabrina/tongue.svg"
  34574. }
  34575. },
  34576. wingDorsal: {
  34577. height: math.unit(4.85, "meters"),
  34578. name: "Wing (Dorsal)",
  34579. image: {
  34580. source: "./media/characters/sabrina/wing-dorsal.svg"
  34581. }
  34582. },
  34583. wingVentral: {
  34584. height: math.unit(4.85, "meters"),
  34585. name: "Wing (Ventral)",
  34586. image: {
  34587. source: "./media/characters/sabrina/wing-ventral.svg"
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(5, "meters"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34601. {
  34602. frontMaid: {
  34603. height: math.unit(5 + 5/12, "feet"),
  34604. weight: math.unit(130, "lb"),
  34605. name: "Front (Maid)",
  34606. image: {
  34607. source: "./media/characters/midnight-tales/front-maid.svg",
  34608. extra: 489/454,
  34609. bottom: 61/550
  34610. }
  34611. },
  34612. frontFormal: {
  34613. height: math.unit(5 + 5/12, "feet"),
  34614. weight: math.unit(130, "lb"),
  34615. name: "Front (Formal)",
  34616. image: {
  34617. source: "./media/characters/midnight-tales/front-formal.svg",
  34618. extra: 489/454,
  34619. bottom: 61/550
  34620. }
  34621. },
  34622. back: {
  34623. height: math.unit(5 + 5/12, "feet"),
  34624. weight: math.unit(130, "lb"),
  34625. name: "Back",
  34626. image: {
  34627. source: "./media/characters/midnight-tales/back.svg",
  34628. extra: 498/456,
  34629. bottom: 33/531
  34630. }
  34631. },
  34632. frontBeast: {
  34633. height: math.unit(40, "feet"),
  34634. weight: math.unit(64000, "lb"),
  34635. name: "Front (Beast)",
  34636. image: {
  34637. source: "./media/characters/midnight-tales/front-beast.svg",
  34638. extra: 927/860,
  34639. bottom: 53/980
  34640. }
  34641. },
  34642. backBeast: {
  34643. height: math.unit(40, "feet"),
  34644. weight: math.unit(64000, "lb"),
  34645. name: "Back (Beast)",
  34646. image: {
  34647. source: "./media/characters/midnight-tales/back-beast.svg",
  34648. extra: 929/855,
  34649. bottom: 16/945
  34650. }
  34651. },
  34652. footBeast: {
  34653. height: math.unit(6.7, "feet"),
  34654. name: "Foot (Beast)",
  34655. image: {
  34656. source: "./media/characters/midnight-tales/foot-beast.svg"
  34657. }
  34658. },
  34659. headBeast: {
  34660. height: math.unit(8, "feet"),
  34661. name: "Head (Beast)",
  34662. image: {
  34663. source: "./media/characters/midnight-tales/head-beast.svg"
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(5 + 5 / 12, "feet"),
  34671. default: true
  34672. },
  34673. {
  34674. name: "Macro",
  34675. height: math.unit(25, "feet")
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(5 + 10/12, "feet"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/argon/front.svg",
  34687. extra: 2009/1935,
  34688. bottom: 118/2127
  34689. }
  34690. },
  34691. back: {
  34692. height: math.unit(5 + 10/12, "feet"),
  34693. name: "Back",
  34694. image: {
  34695. source: "./media/characters/argon/back.svg",
  34696. extra: 2047/1992,
  34697. bottom: 20/2067
  34698. }
  34699. },
  34700. frontDressed: {
  34701. height: math.unit(5 + 10/12, "feet"),
  34702. name: "Front (Dressed)",
  34703. image: {
  34704. source: "./media/characters/argon/front-dressed.svg",
  34705. extra: 2009/1935,
  34706. bottom: 118/2127
  34707. }
  34708. },
  34709. },
  34710. [
  34711. {
  34712. name: "Normal",
  34713. height: math.unit(5 + 10/12, "feet"),
  34714. default: true
  34715. },
  34716. ]
  34717. ))
  34718. characterMakers.push(() => makeCharacter(
  34719. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34720. {
  34721. front: {
  34722. height: math.unit(8 + 6/12, "feet"),
  34723. weight: math.unit(1150, "lb"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/kichi/front.svg",
  34727. extra: 1267/1164,
  34728. bottom: 61/1328
  34729. }
  34730. },
  34731. back: {
  34732. height: math.unit(8 + 6/12, "feet"),
  34733. weight: math.unit(1150, "lb"),
  34734. name: "Back",
  34735. image: {
  34736. source: "./media/characters/kichi/back.svg",
  34737. extra: 1273/1166,
  34738. bottom: 33/1306
  34739. }
  34740. },
  34741. },
  34742. [
  34743. {
  34744. name: "Normal",
  34745. height: math.unit(8 + 6/12, "feet"),
  34746. default: true
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34752. {
  34753. front: {
  34754. height: math.unit(6, "feet"),
  34755. weight: math.unit(210, "lb"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/manetel-greyscale/front.svg",
  34759. extra: 350/312,
  34760. bottom: 8/358
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Micro",
  34767. height: math.unit(2, "inches")
  34768. },
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(6, "feet"),
  34772. default: true
  34773. },
  34774. {
  34775. name: "Minimacro",
  34776. height: math.unit(17, "feet")
  34777. },
  34778. {
  34779. name: "Macro",
  34780. height: math.unit(117, "feet")
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34786. {
  34787. side: {
  34788. height: math.unit(5 + 1/12, "feet"),
  34789. weight: math.unit(418, "lb"),
  34790. name: "Side",
  34791. image: {
  34792. source: "./media/characters/softpurr/side.svg",
  34793. extra: 1993/1945,
  34794. bottom: 134/2127
  34795. }
  34796. },
  34797. front: {
  34798. height: math.unit(5 + 1/12, "feet"),
  34799. weight: math.unit(418, "lb"),
  34800. name: "Front",
  34801. image: {
  34802. source: "./media/characters/softpurr/front.svg",
  34803. extra: 1950/1856,
  34804. bottom: 174/2124
  34805. }
  34806. },
  34807. paw: {
  34808. height: math.unit(1, "feet"),
  34809. name: "Paw",
  34810. image: {
  34811. source: "./media/characters/softpurr/paw.svg"
  34812. }
  34813. },
  34814. },
  34815. [
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(5 + 1/12, "feet"),
  34819. default: true
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(260, "meters"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/anahita/front.svg",
  34831. extra: 665/635,
  34832. bottom: 89/754
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Macro",
  34839. height: math.unit(260, "meters"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34846. {
  34847. front: {
  34848. height: math.unit(4 + 10/12, "feet"),
  34849. weight: math.unit(160, "lb"),
  34850. name: "Front",
  34851. image: {
  34852. source: "./media/characters/chip-mouse/front.svg",
  34853. extra: 3528/3408,
  34854. bottom: 0/3528
  34855. }
  34856. },
  34857. frontNsfw: {
  34858. height: math.unit(4 + 10/12, "feet"),
  34859. weight: math.unit(160, "lb"),
  34860. name: "Front (NSFW)",
  34861. image: {
  34862. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34863. extra: 3528/3408,
  34864. bottom: 0/3528
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Normal",
  34871. height: math.unit(4 + 10/12, "feet"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34878. {
  34879. side: {
  34880. height: math.unit(10, "feet"),
  34881. weight: math.unit(14000, "lb"),
  34882. name: "Side",
  34883. image: {
  34884. source: "./media/characters/kremm/side.svg",
  34885. extra: 1390/1053,
  34886. bottom: 90/1480
  34887. }
  34888. },
  34889. gut: {
  34890. height: math.unit(5.8, "feet"),
  34891. name: "Gut",
  34892. image: {
  34893. source: "./media/characters/kremm/gut.svg"
  34894. }
  34895. },
  34896. ass: {
  34897. height: math.unit(6.1, "feet"),
  34898. name: "Ass",
  34899. image: {
  34900. source: "./media/characters/kremm/ass.svg"
  34901. }
  34902. },
  34903. jaws: {
  34904. height: math.unit(2.2, "feet"),
  34905. name: "Jaws",
  34906. image: {
  34907. source: "./media/characters/kremm/jaws.svg"
  34908. }
  34909. },
  34910. dick: {
  34911. height: math.unit(4.26, "feet"),
  34912. name: "Dick",
  34913. image: {
  34914. source: "./media/characters/kremm/dick.svg"
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(10, "feet"),
  34922. default: true
  34923. },
  34924. ]
  34925. ))
  34926. characterMakers.push(() => makeCharacter(
  34927. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34928. {
  34929. front: {
  34930. height: math.unit(30, "stories"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/kai/front.svg",
  34934. extra: 1892/1718,
  34935. bottom: 162/2054
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Macro",
  34942. height: math.unit(30, "stories"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(6 + 4/12, "feet"),
  34952. weight: math.unit(145, "lb"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/sykes/front.svg",
  34956. extra: 1321 / 1187,
  34957. bottom: 66 / 1387
  34958. }
  34959. },
  34960. back: {
  34961. height: math.unit(6 + 4/12, "feet"),
  34962. weight: math.unit(145, "lb"),
  34963. name: "Back",
  34964. image: {
  34965. source: "./media/characters/sykes/back.svg",
  34966. extra: 1326/1181,
  34967. bottom: 31/1357
  34968. }
  34969. },
  34970. traditionalOutfit: {
  34971. height: math.unit(6 + 4/12, "feet"),
  34972. weight: math.unit(145, "lb"),
  34973. name: "Traditional Outfit",
  34974. image: {
  34975. source: "./media/characters/sykes/traditional-outfit.svg",
  34976. extra: 1321 / 1187,
  34977. bottom: 66 / 1387
  34978. }
  34979. },
  34980. adventureOutfit: {
  34981. height: math.unit(6 + 4/12, "feet"),
  34982. weight: math.unit(145, "lb"),
  34983. name: "Adventure Outfit",
  34984. image: {
  34985. source: "./media/characters/sykes/adventure-outfit.svg",
  34986. extra: 1321 / 1187,
  34987. bottom: 66 / 1387
  34988. }
  34989. },
  34990. handLeft: {
  34991. height: math.unit(0.9, "feet"),
  34992. name: "Hand (Left)",
  34993. image: {
  34994. source: "./media/characters/sykes/hand-left.svg"
  34995. }
  34996. },
  34997. handRight: {
  34998. height: math.unit(0.839, "feet"),
  34999. name: "Hand (Right)",
  35000. image: {
  35001. source: "./media/characters/sykes/hand-right.svg"
  35002. }
  35003. },
  35004. leftFoot: {
  35005. height: math.unit(1.2, "feet"),
  35006. name: "Foot (Left)",
  35007. image: {
  35008. source: "./media/characters/sykes/foot-left.svg"
  35009. }
  35010. },
  35011. rightFoot: {
  35012. height: math.unit(1.2, "feet"),
  35013. name: "Foot (Right)",
  35014. image: {
  35015. source: "./media/characters/sykes/foot-right.svg"
  35016. }
  35017. },
  35018. maw: {
  35019. height: math.unit(1.93, "feet"),
  35020. name: "Maw",
  35021. image: {
  35022. source: "./media/characters/sykes/maw.svg"
  35023. }
  35024. },
  35025. teeth: {
  35026. height: math.unit(0.51, "feet"),
  35027. name: "Teeth",
  35028. image: {
  35029. source: "./media/characters/sykes/teeth.svg"
  35030. }
  35031. },
  35032. tongue: {
  35033. height: math.unit(2.13, "feet"),
  35034. name: "Tongue",
  35035. image: {
  35036. source: "./media/characters/sykes/tongue.svg"
  35037. }
  35038. },
  35039. uvula: {
  35040. height: math.unit(0.16, "feet"),
  35041. name: "Uvula",
  35042. image: {
  35043. source: "./media/characters/sykes/uvula.svg"
  35044. }
  35045. },
  35046. collar: {
  35047. height: math.unit(0.287, "feet"),
  35048. name: "Collar",
  35049. image: {
  35050. source: "./media/characters/sykes/collar.svg"
  35051. }
  35052. },
  35053. tail: {
  35054. height: math.unit(3.8, "feet"),
  35055. name: "Tail",
  35056. image: {
  35057. source: "./media/characters/sykes/tail.svg"
  35058. }
  35059. },
  35060. },
  35061. [
  35062. {
  35063. name: "Shrunken",
  35064. height: math.unit(5, "inches")
  35065. },
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(6 + 4 / 12, "feet"),
  35069. default: true
  35070. },
  35071. {
  35072. name: "Big",
  35073. height: math.unit(15, "feet")
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(5 + 8/12, "feet"),
  35082. weight: math.unit(190, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/oven-otter/front.svg",
  35086. extra: 1809/1740,
  35087. bottom: 181/1990
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(5 + 8/12, "feet"),
  35092. weight: math.unit(190, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/oven-otter/back.svg",
  35096. extra: 1709/1635,
  35097. bottom: 118/1827
  35098. }
  35099. },
  35100. hand: {
  35101. height: math.unit(1.07, "feet"),
  35102. name: "Hand",
  35103. image: {
  35104. source: "./media/characters/oven-otter/hand.svg"
  35105. }
  35106. },
  35107. beans: {
  35108. height: math.unit(1.74, "feet"),
  35109. name: "Beans",
  35110. image: {
  35111. source: "./media/characters/oven-otter/beans.svg"
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Micro",
  35118. height: math.unit(0.5, "inches")
  35119. },
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(5 + 8/12, "feet"),
  35123. default: true
  35124. },
  35125. {
  35126. name: "Macro",
  35127. height: math.unit(250, "feet")
  35128. },
  35129. {
  35130. name: "Really High",
  35131. height: math.unit(420, "feet")
  35132. },
  35133. ]
  35134. ))
  35135. characterMakers.push(() => makeCharacter(
  35136. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35137. {
  35138. front: {
  35139. height: math.unit(5, "meters"),
  35140. weight: math.unit(292000000000000, "kg"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/devourer/front.svg",
  35144. extra: 1800/1733,
  35145. bottom: 211/2011
  35146. }
  35147. },
  35148. maw: {
  35149. height: math.unit(1.1, "meter"),
  35150. name: "Maw",
  35151. image: {
  35152. source: "./media/characters/devourer/maw.svg"
  35153. }
  35154. },
  35155. },
  35156. [
  35157. {
  35158. name: "Small",
  35159. height: math.unit(3, "meters")
  35160. },
  35161. {
  35162. name: "Large",
  35163. height: math.unit(5, "meters"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35170. {
  35171. front: {
  35172. height: math.unit(6, "feet"),
  35173. weight: math.unit(400, "lb"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/ellarby/front.svg",
  35177. extra: 1909/1763,
  35178. bottom: 80/1989
  35179. }
  35180. },
  35181. back: {
  35182. height: math.unit(6, "feet"),
  35183. weight: math.unit(400, "lb"),
  35184. name: "Back",
  35185. image: {
  35186. source: "./media/characters/ellarby/back.svg",
  35187. extra: 1914/1784,
  35188. bottom: 172/2086
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Mischief",
  35195. height: math.unit(18, "inches")
  35196. },
  35197. {
  35198. name: "Trouble",
  35199. height: math.unit(12, "feet")
  35200. },
  35201. {
  35202. name: "Havoc",
  35203. height: math.unit(200, "feet"),
  35204. default: true
  35205. },
  35206. {
  35207. name: "Pandemonium",
  35208. height: math.unit(1, "mile")
  35209. },
  35210. {
  35211. name: "Catastrophe",
  35212. height: math.unit(100, "miles")
  35213. },
  35214. ]
  35215. ))
  35216. characterMakers.push(() => makeCharacter(
  35217. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35218. {
  35219. front: {
  35220. height: math.unit(4.7, "meters"),
  35221. weight: math.unit(6500, "kg"),
  35222. name: "Front",
  35223. image: {
  35224. source: "./media/characters/vex/front.svg",
  35225. extra: 1288/1140,
  35226. bottom: 100/1388
  35227. }
  35228. },
  35229. },
  35230. [
  35231. {
  35232. name: "Normal",
  35233. height: math.unit(4.7, "meters"),
  35234. default: true
  35235. },
  35236. ]
  35237. ))
  35238. characterMakers.push(() => makeCharacter(
  35239. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35240. {
  35241. normal: {
  35242. height: math.unit(6, "feet"),
  35243. weight: math.unit(350, "lb"),
  35244. name: "Normal",
  35245. image: {
  35246. source: "./media/characters/teshy/normal.svg",
  35247. extra: 1795/1735,
  35248. bottom: 16/1811
  35249. }
  35250. },
  35251. monsterFront: {
  35252. height: math.unit(12, "feet"),
  35253. weight: math.unit(4700, "lb"),
  35254. name: "Monster (Front)",
  35255. image: {
  35256. source: "./media/characters/teshy/monster-front.svg",
  35257. extra: 2042/2034,
  35258. bottom: 128/2170
  35259. }
  35260. },
  35261. monsterSide: {
  35262. height: math.unit(12, "feet"),
  35263. weight: math.unit(4700, "lb"),
  35264. name: "Monster (Side)",
  35265. image: {
  35266. source: "./media/characters/teshy/monster-side.svg",
  35267. extra: 2067/2056,
  35268. bottom: 70/2137
  35269. }
  35270. },
  35271. monsterBack: {
  35272. height: math.unit(12, "feet"),
  35273. weight: math.unit(4700, "lb"),
  35274. name: "Monster (Back)",
  35275. image: {
  35276. source: "./media/characters/teshy/monster-back.svg",
  35277. extra: 1921/1914,
  35278. bottom: 171/2092
  35279. }
  35280. },
  35281. },
  35282. [
  35283. {
  35284. name: "Normal",
  35285. height: math.unit(6, "feet"),
  35286. default: true
  35287. },
  35288. ]
  35289. ))
  35290. characterMakers.push(() => makeCharacter(
  35291. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35292. {
  35293. front: {
  35294. height: math.unit(6, "feet"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/ramey/front.svg",
  35298. extra: 790/787,
  35299. bottom: 27/817
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(6, "feet"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(5 + 5/12, "feet"),
  35316. weight: math.unit(120, "lb"),
  35317. name: "Front",
  35318. image: {
  35319. source: "./media/characters/phirae/front.svg",
  35320. extra: 2491/2436,
  35321. bottom: 38/2529
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Normal",
  35328. height: math.unit(5 + 5/12, "feet"),
  35329. default: true
  35330. },
  35331. ]
  35332. ))
  35333. characterMakers.push(() => makeCharacter(
  35334. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35335. {
  35336. front: {
  35337. height: math.unit(5 + 3/12, "feet"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/stagglas/front.svg",
  35341. extra: 962/882,
  35342. bottom: 53/1015
  35343. }
  35344. },
  35345. feral: {
  35346. height: math.unit(335, "cm"),
  35347. name: "Feral",
  35348. image: {
  35349. source: "./media/characters/stagglas/feral.svg",
  35350. extra: 1732/1090,
  35351. bottom: 48/1780
  35352. }
  35353. },
  35354. },
  35355. [
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(5 + 3/12, "feet"),
  35359. default: true
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(5 + 4/12, "feet"),
  35368. weight: math.unit(145, "lb"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/starra/front.svg",
  35372. extra: 1790/1691,
  35373. bottom: 91/1881
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(5 + 4/12, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(2.2, "meters"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35393. extra: 1194/1005,
  35394. bottom: 25/1219
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Normal",
  35401. height: math.unit(2.2, "meters"),
  35402. default: true
  35403. },
  35404. ]
  35405. ))
  35406. characterMakers.push(() => makeCharacter(
  35407. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35408. {
  35409. side: {
  35410. height: math.unit(8 + 2/12, "feet"),
  35411. weight: math.unit(1240, "lb"),
  35412. name: "Side",
  35413. image: {
  35414. source: "./media/characters/mika-valentine/side.svg",
  35415. extra: 2670/2501,
  35416. bottom: 250/2920
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(8 + 2/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(7 + 2/12, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/xoltol/front.svg",
  35436. extra: 2212/2124,
  35437. bottom: 84/2296
  35438. }
  35439. },
  35440. side: {
  35441. height: math.unit(7 + 2/12, "feet"),
  35442. name: "Side",
  35443. image: {
  35444. source: "./media/characters/xoltol/side.svg",
  35445. extra: 2273/2197,
  35446. bottom: 26/2299
  35447. }
  35448. },
  35449. hand: {
  35450. height: math.unit(2.5, "feet"),
  35451. name: "Hand",
  35452. image: {
  35453. source: "./media/characters/xoltol/hand.svg"
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Small-ish",
  35460. height: math.unit(5 + 11/12, "feet")
  35461. },
  35462. {
  35463. name: "Normal",
  35464. height: math.unit(7 + 2/12, "feet")
  35465. },
  35466. {
  35467. name: "\"Macro\"",
  35468. height: math.unit(14 + 9/12, "feet"),
  35469. default: true
  35470. },
  35471. {
  35472. name: "Alternate Height",
  35473. height: math.unit(20, "feet")
  35474. },
  35475. {
  35476. name: "Actually Macro",
  35477. height: math.unit(100, "feet")
  35478. },
  35479. ]
  35480. ))
  35481. characterMakers.push(() => makeCharacter(
  35482. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35483. {
  35484. front: {
  35485. height: math.unit(5 + 2/12, "feet"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/kotetsu-redwood/front.svg",
  35489. extra: 1053/942,
  35490. bottom: 60/1113
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(5 + 2/12, "feet"),
  35498. default: true
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(2.4, "meters"),
  35507. weight: math.unit(125, "kg"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/lilith/front.svg",
  35511. extra: 1590/1513,
  35512. bottom: 203/1793
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Humanoid",
  35519. height: math.unit(2.4, "meters")
  35520. },
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(6, "meters"),
  35524. default: true
  35525. },
  35526. {
  35527. name: "Largest",
  35528. height: math.unit(55, "meters")
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(8 + 4/12, "feet"),
  35537. weight: math.unit(535, "lb"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/beh'kah-bolger/front.svg",
  35541. extra: 1660/1603,
  35542. bottom: 37/1697
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(8 + 4/12, "feet"),
  35550. default: true
  35551. },
  35552. {
  35553. name: "Kaiju",
  35554. height: math.unit(250, "feet")
  35555. },
  35556. {
  35557. name: "Still Growing",
  35558. height: math.unit(10, "miles")
  35559. },
  35560. {
  35561. name: "Continental",
  35562. height: math.unit(5000, "miles")
  35563. },
  35564. {
  35565. name: "Final Form",
  35566. height: math.unit(2500000, "miles")
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(7 + 2/12, "feet"),
  35575. weight: math.unit(230, "kg"),
  35576. name: "Front",
  35577. image: {
  35578. source: "./media/characters/tatyana-milewska/front.svg",
  35579. extra: 1199/1150,
  35580. bottom: 86/1285
  35581. }
  35582. },
  35583. },
  35584. [
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(7 + 2/12, "feet"),
  35588. default: true
  35589. },
  35590. {
  35591. name: "Big",
  35592. height: math.unit(12, "feet")
  35593. },
  35594. {
  35595. name: "Minimacro",
  35596. height: math.unit(20, "feet")
  35597. },
  35598. {
  35599. name: "Macro",
  35600. height: math.unit(120, "feet")
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35606. {
  35607. front: {
  35608. height: math.unit(7 + 8/12, "feet"),
  35609. weight: math.unit(152, "kg"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/helen-arri/front.svg",
  35613. extra: 440/423,
  35614. bottom: 14/454
  35615. }
  35616. },
  35617. back: {
  35618. height: math.unit(7 + 8/12, "feet"),
  35619. weight: math.unit(152, "kg"),
  35620. name: "Back",
  35621. image: {
  35622. source: "./media/characters/helen-arri/back.svg",
  35623. extra: 443/426,
  35624. bottom: 8/451
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(7 + 8/12, "feet"),
  35632. default: true
  35633. },
  35634. {
  35635. name: "Big",
  35636. height: math.unit(14, "feet")
  35637. },
  35638. {
  35639. name: "Minimacro",
  35640. height: math.unit(24, "feet")
  35641. },
  35642. {
  35643. name: "Macro",
  35644. height: math.unit(140, "feet")
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(6, "meters"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/ehanu-rehu/front.svg",
  35656. extra: 1800/1800,
  35657. bottom: 59/1859
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(6, "meters"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(7 + 3/12, "feet"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/renholder/front.svg",
  35677. extra: 3096/2960,
  35678. bottom: 250/3346
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal Bat",
  35685. height: math.unit(7 + 3/12, "feet"),
  35686. default: true
  35687. },
  35688. {
  35689. name: "Slightly Tall Bat",
  35690. height: math.unit(100, "feet")
  35691. },
  35692. {
  35693. name: "Big Bat",
  35694. height: math.unit(1000, "feet")
  35695. },
  35696. {
  35697. name: "City-Sized Bat",
  35698. height: math.unit(200000, "feet")
  35699. },
  35700. {
  35701. name: "Bigger Bat",
  35702. height: math.unit(10000, "miles")
  35703. },
  35704. {
  35705. name: "Solar Sized Bat",
  35706. height: math.unit(100, "AU")
  35707. },
  35708. {
  35709. name: "Galactic Bat",
  35710. height: math.unit(200000, "lightyears")
  35711. },
  35712. {
  35713. name: "Universally Known Bat",
  35714. height: math.unit(1, "universe")
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(6 + 11/12, "feet"),
  35723. weight: math.unit(250, "lb"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/cookiecat/front.svg",
  35727. extra: 893/827,
  35728. bottom: 14/907
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Micro",
  35735. height: math.unit(3, "inches")
  35736. },
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(6 + 11/12, "feet"),
  35740. default: true
  35741. },
  35742. {
  35743. name: "Macro",
  35744. height: math.unit(100, "feet")
  35745. },
  35746. {
  35747. name: "Macro+",
  35748. height: math.unit(404, "feet")
  35749. },
  35750. {
  35751. name: "Megamacro",
  35752. height: math.unit(165, "miles")
  35753. },
  35754. {
  35755. name: "Planetary",
  35756. height: math.unit(4600, "miles")
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(10 + 3/12, "feet"),
  35765. weight: math.unit(1500, "lb"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/tux-kusanagi/front.svg",
  35769. extra: 944/840,
  35770. bottom: 39/983
  35771. }
  35772. },
  35773. back: {
  35774. height: math.unit(10 + 3/12, "feet"),
  35775. weight: math.unit(1500, "lb"),
  35776. name: "Back",
  35777. image: {
  35778. source: "./media/characters/tux-kusanagi/back.svg",
  35779. extra: 941/842,
  35780. bottom: 28/969
  35781. }
  35782. },
  35783. rump: {
  35784. height: math.unit(5.25, "feet"),
  35785. name: "Rump",
  35786. image: {
  35787. source: "./media/characters/tux-kusanagi/rump.svg"
  35788. }
  35789. },
  35790. beak: {
  35791. height: math.unit(1.54, "feet"),
  35792. name: "Beak",
  35793. image: {
  35794. source: "./media/characters/tux-kusanagi/beak.svg"
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(10 + 3/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(58, "feet"),
  35811. weight: math.unit(200, "tons"),
  35812. name: "Front",
  35813. image: {
  35814. source: "./media/characters/uzarmazari/front.svg",
  35815. extra: 1575/1455,
  35816. bottom: 152/1727
  35817. }
  35818. },
  35819. back: {
  35820. height: math.unit(58, "feet"),
  35821. weight: math.unit(200, "tons"),
  35822. name: "Back",
  35823. image: {
  35824. source: "./media/characters/uzarmazari/back.svg",
  35825. extra: 1585/1510,
  35826. bottom: 157/1742
  35827. }
  35828. },
  35829. head: {
  35830. height: math.unit(26, "feet"),
  35831. name: "Head",
  35832. image: {
  35833. source: "./media/characters/uzarmazari/head.svg"
  35834. }
  35835. },
  35836. },
  35837. [
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(58, "feet"),
  35841. default: true
  35842. },
  35843. ]
  35844. ))
  35845. characterMakers.push(() => makeCharacter(
  35846. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35847. {
  35848. side: {
  35849. height: math.unit(15, "feet"),
  35850. name: "Side",
  35851. image: {
  35852. source: "./media/characters/akitu/side.svg",
  35853. extra: 1421/1321,
  35854. bottom: 157/1578
  35855. }
  35856. },
  35857. front: {
  35858. height: math.unit(15, "feet"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/akitu/front.svg",
  35862. extra: 1435/1326,
  35863. bottom: 232/1667
  35864. }
  35865. },
  35866. },
  35867. [
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(15, "feet"),
  35871. default: true
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(10 + 8/12, "feet"),
  35880. name: "Front",
  35881. image: {
  35882. source: "./media/characters/azalie-croixland/front.svg",
  35883. extra: 1972/1856,
  35884. bottom: 31/2003
  35885. }
  35886. },
  35887. },
  35888. [
  35889. {
  35890. name: "Original Height",
  35891. height: math.unit(5 + 4/12, "feet")
  35892. },
  35893. {
  35894. name: "Normal Height",
  35895. height: math.unit(10 + 8/12, "feet"),
  35896. default: true
  35897. },
  35898. ]
  35899. ))
  35900. characterMakers.push(() => makeCharacter(
  35901. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35902. {
  35903. side: {
  35904. height: math.unit(7 + 1/12, "feet"),
  35905. weight: math.unit(245, "lb"),
  35906. name: "Side",
  35907. image: {
  35908. source: "./media/characters/kavus-kazian/side.svg",
  35909. extra: 349/342,
  35910. bottom: 15/364
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(7 + 1/12, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35924. {
  35925. normalFront: {
  35926. height: math.unit(5 + 11/12, "feet"),
  35927. name: "Front",
  35928. image: {
  35929. source: "./media/characters/moonlight-rose/normal-front.svg",
  35930. extra: 1980/1825,
  35931. bottom: 18/1998
  35932. },
  35933. form: "normal",
  35934. default: true
  35935. },
  35936. normalBack: {
  35937. height: math.unit(5 + 11/12, "feet"),
  35938. name: "Back",
  35939. image: {
  35940. source: "./media/characters/moonlight-rose/normal-back.svg",
  35941. extra: 2010/1839,
  35942. bottom: 10/2020
  35943. },
  35944. form: "normal"
  35945. },
  35946. demonFront: {
  35947. height: math.unit(1.5, "earths"),
  35948. name: "Front",
  35949. image: {
  35950. source: "./media/characters/moonlight-rose/demon.svg",
  35951. extra: 1400/1294,
  35952. bottom: 45/1445
  35953. },
  35954. form: "demon",
  35955. default: true
  35956. },
  35957. terraFront: {
  35958. height: math.unit(1.5, "earths"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/moonlight-rose/terra.svg"
  35962. },
  35963. form: "terra",
  35964. default: true
  35965. },
  35966. jupiterFront: {
  35967. height: math.unit(69911*2, "km"),
  35968. name: "Front",
  35969. image: {
  35970. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35971. extra: 1367/1286,
  35972. bottom: 55/1422
  35973. },
  35974. form: "jupiter",
  35975. default: true
  35976. },
  35977. neptuneFront: {
  35978. height: math.unit(24622*2, "feet"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35982. extra: 1851/1712,
  35983. bottom: 0/1851
  35984. },
  35985. form: "neptune",
  35986. default: true
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "\"Natural\" Height",
  35992. height: math.unit(5 + 11/12, "feet"),
  35993. form: "normal"
  35994. },
  35995. {
  35996. name: "Smallest comfortable size",
  35997. height: math.unit(40, "meters"),
  35998. form: "normal"
  35999. },
  36000. {
  36001. name: "Common size",
  36002. height: math.unit(50, "km"),
  36003. form: "normal",
  36004. default: true
  36005. },
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(1.5, "earths"),
  36009. form: "demon",
  36010. default: true
  36011. },
  36012. {
  36013. name: "Universal",
  36014. height: math.unit(15, "universes"),
  36015. form: "demon"
  36016. },
  36017. {
  36018. name: "Earth",
  36019. height: math.unit(1.5, "earths"),
  36020. form: "terra",
  36021. default: true
  36022. },
  36023. {
  36024. name: "Super Earth",
  36025. height: math.unit(67.5, "earths"),
  36026. form: "terra"
  36027. },
  36028. {
  36029. name: "Doesn't fit in a solar system...",
  36030. height: math.unit(1, "galaxy"),
  36031. form: "terra"
  36032. },
  36033. {
  36034. name: "Saturn",
  36035. height: math.unit(58232*2, "km"),
  36036. form: "jupiter"
  36037. },
  36038. {
  36039. name: "Jupiter",
  36040. height: math.unit(69911*2, "km"),
  36041. form: "jupiter",
  36042. default: true
  36043. },
  36044. {
  36045. name: "HD 100546 b",
  36046. height: math.unit(482938, "km"),
  36047. form: "jupiter"
  36048. },
  36049. {
  36050. name: "Enceladus",
  36051. height: math.unit(513*2, "km"),
  36052. form: "neptune"
  36053. },
  36054. {
  36055. name: "Europe",
  36056. height: math.unit(1560*2, "km"),
  36057. form: "neptune"
  36058. },
  36059. {
  36060. name: "Neptune",
  36061. height: math.unit(24622*2, "km"),
  36062. form: "neptune",
  36063. default: true
  36064. },
  36065. {
  36066. name: "CoRoT-9b",
  36067. height: math.unit(75067*2, "km"),
  36068. form: "neptune"
  36069. },
  36070. ],
  36071. {
  36072. "normal": {
  36073. name: "Normal",
  36074. default: true
  36075. },
  36076. "demon": {
  36077. name: "Demon"
  36078. },
  36079. "terra": {
  36080. name: "Terra"
  36081. },
  36082. "jupiter": {
  36083. name: "Jupiter"
  36084. },
  36085. "neptune": {
  36086. name: "Neptune"
  36087. }
  36088. }
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36092. {
  36093. front: {
  36094. height: math.unit(16, "feet"),
  36095. weight: math.unit(610, "kg"),
  36096. name: "Front",
  36097. image: {
  36098. source: "./media/characters/huckle/front.svg",
  36099. extra: 1731/1625,
  36100. bottom: 33/1764
  36101. }
  36102. },
  36103. back: {
  36104. height: math.unit(16, "feet"),
  36105. weight: math.unit(610, "kg"),
  36106. name: "Back",
  36107. image: {
  36108. source: "./media/characters/huckle/back.svg",
  36109. extra: 1738/1651,
  36110. bottom: 37/1775
  36111. }
  36112. },
  36113. laughing: {
  36114. height: math.unit(3.75, "feet"),
  36115. name: "Laughing",
  36116. image: {
  36117. source: "./media/characters/huckle/laughing.svg"
  36118. }
  36119. },
  36120. angry: {
  36121. height: math.unit(4.15, "feet"),
  36122. name: "Angry",
  36123. image: {
  36124. source: "./media/characters/huckle/angry.svg"
  36125. }
  36126. },
  36127. },
  36128. [
  36129. {
  36130. name: "Normal",
  36131. height: math.unit(16, "feet"),
  36132. default: true
  36133. },
  36134. {
  36135. name: "Mini Macro",
  36136. height: math.unit(463, "feet")
  36137. },
  36138. {
  36139. name: "Macro",
  36140. height: math.unit(1680, "meters")
  36141. },
  36142. {
  36143. name: "Mega Macro",
  36144. height: math.unit(175, "km")
  36145. },
  36146. {
  36147. name: "Terra Macro",
  36148. height: math.unit(32, "gigameters")
  36149. },
  36150. {
  36151. name: "Multiverse+",
  36152. height: math.unit(2.56e23, "yottameters")
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(6 + 9/12, "feet"),
  36161. weight: math.unit(280, "lb"),
  36162. name: "Front",
  36163. image: {
  36164. source: "./media/characters/candy/front.svg",
  36165. extra: 234/217,
  36166. bottom: 11/245
  36167. }
  36168. },
  36169. },
  36170. [
  36171. {
  36172. name: "Really Small",
  36173. height: math.unit(0.1, "nm")
  36174. },
  36175. {
  36176. name: "Micro",
  36177. height: math.unit(2, "inches")
  36178. },
  36179. {
  36180. name: "Normal",
  36181. height: math.unit(6 + 9/12, "feet"),
  36182. default: true
  36183. },
  36184. {
  36185. name: "Small Macro",
  36186. height: math.unit(69, "feet")
  36187. },
  36188. {
  36189. name: "Macro",
  36190. height: math.unit(160, "feet")
  36191. },
  36192. {
  36193. name: "Megamacro",
  36194. height: math.unit(22000, "miles")
  36195. },
  36196. {
  36197. name: "Gigamacro",
  36198. height: math.unit(50000, "miles")
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36204. {
  36205. front: {
  36206. height: math.unit(4, "feet"),
  36207. weight: math.unit(90, "lb"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/joey-mcdonald/front.svg",
  36211. extra: 1059/852,
  36212. bottom: 33/1092
  36213. }
  36214. },
  36215. back: {
  36216. height: math.unit(4, "feet"),
  36217. weight: math.unit(90, "lb"),
  36218. name: "Back",
  36219. image: {
  36220. source: "./media/characters/joey-mcdonald/back.svg",
  36221. extra: 1077/879,
  36222. bottom: 5/1082
  36223. }
  36224. },
  36225. frontKobold: {
  36226. height: math.unit(4, "feet"),
  36227. weight: math.unit(100, "lb"),
  36228. name: "Front-kobold",
  36229. image: {
  36230. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36231. extra: 1480/1367,
  36232. bottom: 0/1480
  36233. }
  36234. },
  36235. backKobold: {
  36236. height: math.unit(4, "feet"),
  36237. weight: math.unit(100, "lb"),
  36238. name: "Back-kobold",
  36239. image: {
  36240. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36241. extra: 1449/1361,
  36242. bottom: 0/1449
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(4, "feet"),
  36250. default: true
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36256. {
  36257. front: {
  36258. height: math.unit(12 + 6/12, "feet"),
  36259. name: "Front",
  36260. image: {
  36261. source: "./media/characters/kass-lockheed/front.svg",
  36262. extra: 354/343,
  36263. bottom: 9/363
  36264. }
  36265. },
  36266. back: {
  36267. height: math.unit(12 + 6/12, "feet"),
  36268. name: "Back",
  36269. image: {
  36270. source: "./media/characters/kass-lockheed/back.svg",
  36271. extra: 364/352,
  36272. bottom: 3/367
  36273. }
  36274. },
  36275. dick: {
  36276. height: math.unit(3.12, "feet"),
  36277. name: "Dick",
  36278. image: {
  36279. source: "./media/characters/kass-lockheed/dick.svg"
  36280. }
  36281. },
  36282. head: {
  36283. height: math.unit(2.6, "feet"),
  36284. name: "Head",
  36285. image: {
  36286. source: "./media/characters/kass-lockheed/head.svg"
  36287. }
  36288. },
  36289. bleh: {
  36290. height: math.unit(2.85, "feet"),
  36291. name: "Bleh",
  36292. image: {
  36293. source: "./media/characters/kass-lockheed/bleh.svg"
  36294. }
  36295. },
  36296. smug: {
  36297. height: math.unit(2.85, "feet"),
  36298. name: "Smug",
  36299. image: {
  36300. source: "./media/characters/kass-lockheed/smug.svg"
  36301. }
  36302. },
  36303. },
  36304. [
  36305. {
  36306. name: "Normal",
  36307. height: math.unit(12 + 6/12, "feet"),
  36308. default: true
  36309. },
  36310. ]
  36311. ))
  36312. characterMakers.push(() => makeCharacter(
  36313. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36314. {
  36315. front: {
  36316. height: math.unit(6 + 2/12, "feet"),
  36317. name: "Front",
  36318. image: {
  36319. source: "./media/characters/taylor/front.svg",
  36320. extra: 639/495,
  36321. bottom: 12/651
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(6 + 2/12, "feet"),
  36329. default: true
  36330. },
  36331. {
  36332. name: "Big",
  36333. height: math.unit(15, "feet")
  36334. },
  36335. {
  36336. name: "Lorg",
  36337. height: math.unit(80, "feet")
  36338. },
  36339. {
  36340. name: "Too Lorg",
  36341. height: math.unit(120, "feet")
  36342. },
  36343. ]
  36344. ))
  36345. characterMakers.push(() => makeCharacter(
  36346. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36347. {
  36348. front: {
  36349. height: math.unit(15, "feet"),
  36350. name: "Front",
  36351. image: {
  36352. source: "./media/characters/kaizer/front.svg",
  36353. extra: 1612/1436,
  36354. bottom: 43/1655
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(15, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36368. {
  36369. front: {
  36370. height: math.unit(2, "feet"),
  36371. weight: math.unit(30, "lb"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/sandy/front.svg",
  36375. extra: 1439/1307,
  36376. bottom: 194/1633
  36377. }
  36378. },
  36379. },
  36380. [
  36381. {
  36382. name: "Normal",
  36383. height: math.unit(2, "feet"),
  36384. default: true
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36390. {
  36391. front: {
  36392. height: math.unit(3, "feet"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/mellvi/front.svg",
  36396. extra: 1831/1630,
  36397. bottom: 58/1889
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(3, "feet"),
  36405. default: true
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(5 + 11/12, "feet"),
  36414. weight: math.unit(200, "lb"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/shirou/front.svg",
  36418. extra: 2491/2383,
  36419. bottom: 189/2680
  36420. }
  36421. },
  36422. back: {
  36423. height: math.unit(5 + 11/12, "feet"),
  36424. weight: math.unit(200, "lb"),
  36425. name: "Back",
  36426. image: {
  36427. source: "./media/characters/shirou/back.svg",
  36428. extra: 2554/2450,
  36429. bottom: 76/2630
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(5 + 11/12, "feet"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36443. {
  36444. front: {
  36445. height: math.unit(6 + 3/12, "feet"),
  36446. weight: math.unit(177, "lb"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/noryu/front.svg",
  36450. extra: 973/885,
  36451. bottom: 10/983
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Normal",
  36458. height: math.unit(6 + 3/12, "feet"),
  36459. default: true
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36465. {
  36466. front: {
  36467. height: math.unit(5 + 6/12, "feet"),
  36468. weight: math.unit(170, "lb"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/mevolas-rubenido/front.svg",
  36472. extra: 2109/1901,
  36473. bottom: 96/2205
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(5 + 6/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(100, "feet"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/dee/front.svg",
  36493. extra: 2153/2036,
  36494. bottom: 59/2212
  36495. }
  36496. },
  36497. back: {
  36498. height: math.unit(100, "feet"),
  36499. name: "Back",
  36500. image: {
  36501. source: "./media/characters/dee/back.svg",
  36502. extra: 2183/2058,
  36503. bottom: 75/2258
  36504. }
  36505. },
  36506. foot: {
  36507. height: math.unit(19.43, "feet"),
  36508. name: "Foot",
  36509. image: {
  36510. source: "./media/characters/dee/foot.svg"
  36511. }
  36512. },
  36513. hoof: {
  36514. height: math.unit(20.6, "feet"),
  36515. name: "Hoof",
  36516. image: {
  36517. source: "./media/characters/dee/hoof.svg"
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Macro",
  36524. height: math.unit(100, "feet"),
  36525. default: true
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(5 + 6/12, "feet"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/teh/front.svg",
  36537. extra: 1002/847,
  36538. bottom: 62/1064
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(5 + 6/12, "feet"),
  36546. default: true
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36552. {
  36553. side: {
  36554. height: math.unit(6 + 1/12, "feet"),
  36555. weight: math.unit(204, "lb"),
  36556. name: "Side",
  36557. image: {
  36558. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36559. extra: 974/775,
  36560. bottom: 169/1143
  36561. }
  36562. },
  36563. sitting: {
  36564. height: math.unit(6 + 2/12, "feet"),
  36565. weight: math.unit(204, "lb"),
  36566. name: "Sitting",
  36567. image: {
  36568. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36569. extra: 1175/964,
  36570. bottom: 378/1553
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6 + 1/12, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(6, "inches"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/tululi/front.svg",
  36590. extra: 1997/1876,
  36591. bottom: 20/2017
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(6, "inches"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(4 + 1/12, "feet"),
  36608. name: "Front",
  36609. image: {
  36610. source: "./media/characters/star/front.svg",
  36611. extra: 1493/1189,
  36612. bottom: 48/1541
  36613. }
  36614. },
  36615. },
  36616. [
  36617. {
  36618. name: "Normal",
  36619. height: math.unit(4 + 1/12, "feet"),
  36620. default: true
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36626. {
  36627. front: {
  36628. height: math.unit(6 + 3/12, "feet"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/comet/front.svg",
  36632. extra: 1681/1462,
  36633. bottom: 26/1707
  36634. }
  36635. },
  36636. },
  36637. [
  36638. {
  36639. name: "Normal",
  36640. height: math.unit(6 + 3/12, "feet"),
  36641. default: true
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(950, "feet"),
  36650. name: "Front",
  36651. image: {
  36652. source: "./media/characters/vortex/front.svg",
  36653. extra: 1497/1434,
  36654. bottom: 56/1553
  36655. }
  36656. },
  36657. maw: {
  36658. height: math.unit(285, "feet"),
  36659. name: "Maw",
  36660. image: {
  36661. source: "./media/characters/vortex/maw.svg"
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Macro",
  36668. height: math.unit(950, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(600, "feet"),
  36678. weight: math.unit(0.02, "grams"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/doodle/front.svg",
  36682. extra: 1578/1413,
  36683. bottom: 37/1615
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(600, "feet"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(6 + 6/12, "feet"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/jai/front.svg",
  36703. extra: 1645/1534,
  36704. bottom: 115/1760
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(6 + 6/12, "feet"),
  36712. default: true
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(6 + 8/12, "feet"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/pixel/front.svg",
  36724. extra: 1900/1735,
  36725. bottom: 63/1963
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(6 + 8/12, "feet"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36739. {
  36740. back: {
  36741. height: math.unit(4 + 1/12, "feet"),
  36742. weight: math.unit(75, "lb"),
  36743. name: "Back",
  36744. image: {
  36745. source: "./media/characters/rhett/back.svg",
  36746. extra: 930/878,
  36747. bottom: 25/955
  36748. }
  36749. },
  36750. front: {
  36751. height: math.unit(4 + 1/12, "feet"),
  36752. weight: math.unit(75, "lb"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/rhett/front.svg",
  36756. extra: 1682/1586,
  36757. bottom: 92/1774
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Micro",
  36764. height: math.unit(8, "inches")
  36765. },
  36766. {
  36767. name: "Tiny",
  36768. height: math.unit(2, "feet")
  36769. },
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(4 + 1/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(3 + 3/12, "feet"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/penny/front.svg",
  36785. extra: 1406/1311,
  36786. bottom: 26/1432
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(3 + 3/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(4 + 11/12, "feet"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/monty/front.svg",
  36806. extra: 1479/1209,
  36807. bottom: 0/1479
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(4 + 11/12, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(8 + 4/12, "feet"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/sterling/front.svg",
  36827. extra: 1420/1236,
  36828. bottom: 27/1447
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(8 + 4/12, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(15, "feet"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/marble/front.svg",
  36848. extra: 973/937,
  36849. bottom: 32/1005
  36850. }
  36851. },
  36852. },
  36853. [
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(15, "feet"),
  36857. default: true
  36858. },
  36859. ]
  36860. ))
  36861. characterMakers.push(() => makeCharacter(
  36862. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36863. {
  36864. front: {
  36865. height: math.unit(3, "inches"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/powder/front.svg",
  36869. extra: 1504/1334,
  36870. bottom: 518/2022
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(3, "inches"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36884. {
  36885. front: {
  36886. height: math.unit(4 + 5/12, "feet"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/joey-raccoon/front.svg",
  36890. extra: 1273/1197,
  36891. bottom: 0/1273
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(4 + 5/12, "feet"),
  36899. default: true
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36905. {
  36906. front: {
  36907. height: math.unit(8 + 4/12, "feet"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/vick/front.svg",
  36911. extra: 2187/2118,
  36912. bottom: 47/2234
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(8 + 4/12, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(5 + 5/12, "feet"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/mitsy/front.svg",
  36932. extra: 1842/1695,
  36933. bottom: 0/1842
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(5 + 5/12, "feet"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36947. {
  36948. front: {
  36949. height: math.unit(6 + 3/12, "feet"),
  36950. name: "Front",
  36951. image: {
  36952. source: "./media/characters/silvy/front.svg",
  36953. extra: 1995/1836,
  36954. bottom: 225/2220
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(6 + 3/12, "feet"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(3 + 8/12, "feet"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/rodney/front.svg",
  36974. extra: 1956/1747,
  36975. bottom: 31/1987
  36976. }
  36977. },
  36978. frontDressed: {
  36979. height: math.unit(2.9, "feet"),
  36980. name: "Front (Dressed)",
  36981. image: {
  36982. source: "./media/characters/rodney/front-dressed.svg",
  36983. extra: 1382/1241,
  36984. bottom: 385/1767
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(3 + 8/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(5 + 9/12, "feet"),
  37001. weight: math.unit(194, "lbs"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/zakail-sudekai/front.svg",
  37005. extra: 2696/2533,
  37006. bottom: 248/2944
  37007. }
  37008. },
  37009. maw: {
  37010. height: math.unit(1.35, "feet"),
  37011. name: "Maw",
  37012. image: {
  37013. source: "./media/characters/zakail-sudekai/maw.svg"
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(5 + 9/12, "feet"),
  37021. default: true
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(8 + 4/12, "feet"),
  37030. weight: math.unit(1200, "lb"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/eleanor/front.svg",
  37034. extra: 1226/1192,
  37035. bottom: 52/1278
  37036. }
  37037. },
  37038. back: {
  37039. height: math.unit(8 + 4/12, "feet"),
  37040. weight: math.unit(1200, "lb"),
  37041. name: "Back",
  37042. image: {
  37043. source: "./media/characters/eleanor/back.svg",
  37044. extra: 1242/1184,
  37045. bottom: 60/1302
  37046. }
  37047. },
  37048. head: {
  37049. height: math.unit(2.62, "feet"),
  37050. name: "Head",
  37051. image: {
  37052. source: "./media/characters/eleanor/head.svg"
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(8 + 4/12, "feet"),
  37060. default: true
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(8 + 4/12, "feet"),
  37069. weight: math.unit(750, "lb"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/tanya/front.svg",
  37073. extra: 1749/1615,
  37074. bottom: 33/1782
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(8 + 4/12, "feet"),
  37082. default: true
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37088. {
  37089. front: {
  37090. height: math.unit(5, "feet"),
  37091. weight: math.unit(225, "lb"),
  37092. name: "Front",
  37093. image: {
  37094. source: "./media/characters/cindy/front.svg",
  37095. extra: 1320/1250,
  37096. bottom: 42/1362
  37097. }
  37098. },
  37099. frontDressed: {
  37100. height: math.unit(5, "feet"),
  37101. weight: math.unit(225, "lb"),
  37102. name: "Front (Dressed)",
  37103. image: {
  37104. source: "./media/characters/cindy/front-dressed.svg",
  37105. extra: 1320/1250,
  37106. bottom: 42/1362
  37107. }
  37108. },
  37109. back: {
  37110. height: math.unit(5, "feet"),
  37111. weight: math.unit(225, "lb"),
  37112. name: "Back",
  37113. image: {
  37114. source: "./media/characters/cindy/back.svg",
  37115. extra: 1384/1346,
  37116. bottom: 14/1398
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(5, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37130. {
  37131. front: {
  37132. height: math.unit(6 + 9/12, "feet"),
  37133. weight: math.unit(440, "lb"),
  37134. name: "Front",
  37135. image: {
  37136. source: "./media/characters/wilbur-owen/front.svg",
  37137. extra: 1575/1448,
  37138. bottom: 72/1647
  37139. }
  37140. },
  37141. back: {
  37142. height: math.unit(6 + 9/12, "feet"),
  37143. weight: math.unit(440, "lb"),
  37144. name: "Back",
  37145. image: {
  37146. source: "./media/characters/wilbur-owen/back.svg",
  37147. extra: 1578/1445,
  37148. bottom: 36/1614
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(6 + 9/12, "feet"),
  37156. default: true
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37162. {
  37163. front: {
  37164. height: math.unit(6 + 5/12, "feet"),
  37165. weight: math.unit(650, "lb"),
  37166. name: "Front",
  37167. image: {
  37168. source: "./media/characters/keegan/front.svg",
  37169. extra: 2387/2198,
  37170. bottom: 33/2420
  37171. }
  37172. },
  37173. side: {
  37174. height: math.unit(6 + 5/12, "feet"),
  37175. weight: math.unit(650, "lb"),
  37176. name: "Side",
  37177. image: {
  37178. source: "./media/characters/keegan/side.svg",
  37179. extra: 2390/2202,
  37180. bottom: 47/2437
  37181. }
  37182. },
  37183. back: {
  37184. height: math.unit(6 + 5/12, "feet"),
  37185. weight: math.unit(650, "lb"),
  37186. name: "Back",
  37187. image: {
  37188. source: "./media/characters/keegan/back.svg",
  37189. extra: 2418/2268,
  37190. bottom: 15/2433
  37191. }
  37192. },
  37193. frontSfw: {
  37194. height: math.unit(6 + 5/12, "feet"),
  37195. weight: math.unit(650, "lb"),
  37196. name: "Front (SFW)",
  37197. image: {
  37198. source: "./media/characters/keegan/front-sfw.svg",
  37199. extra: 2387/2198,
  37200. bottom: 33/2420
  37201. }
  37202. },
  37203. beans: {
  37204. height: math.unit(1.85, "feet"),
  37205. name: "Beans",
  37206. image: {
  37207. source: "./media/characters/keegan/beans.svg"
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(6 + 5/12, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(9, "feet"),
  37224. name: "Front",
  37225. image: {
  37226. source: "./media/characters/colton/front.svg",
  37227. extra: 1589/1326,
  37228. bottom: 139/1728
  37229. }
  37230. },
  37231. },
  37232. [
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(9, "feet"),
  37236. default: true
  37237. },
  37238. ]
  37239. ))
  37240. characterMakers.push(() => makeCharacter(
  37241. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37242. {
  37243. front: {
  37244. height: math.unit(2 + 9/12, "feet"),
  37245. name: "Front",
  37246. image: {
  37247. source: "./media/characters/bora/front.svg",
  37248. extra: 1265/1250,
  37249. bottom: 24/1289
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(2 + 9/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(8, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/myu-myu/front.svg",
  37269. extra: 1949/1857,
  37270. bottom: 90/2039
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Normal",
  37277. height: math.unit(8, "feet"),
  37278. default: true
  37279. },
  37280. {
  37281. name: "Big",
  37282. height: math.unit(15, "feet")
  37283. },
  37284. {
  37285. name: "BIG",
  37286. height: math.unit(25, "feet")
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37292. {
  37293. side: {
  37294. height: math.unit(7 + 5/12, "feet"),
  37295. weight: math.unit(2800, "lb"),
  37296. name: "Side",
  37297. image: {
  37298. source: "./media/characters/haloren/side.svg",
  37299. extra: 1793/409,
  37300. bottom: 59/1852
  37301. }
  37302. },
  37303. frontPaw: {
  37304. height: math.unit(2.36, "feet"),
  37305. name: "Front paw",
  37306. image: {
  37307. source: "./media/characters/haloren/front-paw.svg"
  37308. }
  37309. },
  37310. hindPaw: {
  37311. height: math.unit(3.18, "feet"),
  37312. name: "Hind paw",
  37313. image: {
  37314. source: "./media/characters/haloren/hind-paw.svg"
  37315. }
  37316. },
  37317. maw: {
  37318. height: math.unit(5.05, "feet"),
  37319. name: "Maw",
  37320. image: {
  37321. source: "./media/characters/haloren/maw.svg"
  37322. }
  37323. },
  37324. dick: {
  37325. height: math.unit(2.90, "feet"),
  37326. name: "Dick",
  37327. image: {
  37328. source: "./media/characters/haloren/dick.svg"
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(7 + 5/12, "feet"),
  37336. default: true
  37337. },
  37338. {
  37339. name: "Enhanced",
  37340. height: math.unit(14 + 3/12, "feet")
  37341. },
  37342. ]
  37343. ))
  37344. characterMakers.push(() => makeCharacter(
  37345. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37346. {
  37347. front: {
  37348. height: math.unit(171, "cm"),
  37349. name: "Front",
  37350. image: {
  37351. source: "./media/characters/kimmy/front.svg",
  37352. extra: 1491/1435,
  37353. bottom: 53/1544
  37354. }
  37355. },
  37356. },
  37357. [
  37358. {
  37359. name: "Small",
  37360. height: math.unit(9, "cm")
  37361. },
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(171, "cm"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(8, "feet"),
  37374. weight: math.unit(300, "lb"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/galeboomer/front.svg",
  37378. extra: 4651/4415,
  37379. bottom: 162/4813
  37380. }
  37381. },
  37382. back: {
  37383. height: math.unit(8, "feet"),
  37384. weight: math.unit(300, "lb"),
  37385. name: "Back",
  37386. image: {
  37387. source: "./media/characters/galeboomer/back.svg",
  37388. extra: 4544/4314,
  37389. bottom: 16/4560
  37390. }
  37391. },
  37392. frontAlt: {
  37393. height: math.unit(8, "feet"),
  37394. weight: math.unit(300, "lb"),
  37395. name: "Front (Alt)",
  37396. image: {
  37397. source: "./media/characters/galeboomer/front-alt.svg",
  37398. extra: 4458/4228,
  37399. bottom: 68/4526
  37400. }
  37401. },
  37402. maw: {
  37403. height: math.unit(1.2, "feet"),
  37404. name: "Maw",
  37405. image: {
  37406. source: "./media/characters/galeboomer/maw.svg"
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(8, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(5 + 9/12, "feet"),
  37423. weight: math.unit(120, "lb"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/chyr/front.svg",
  37427. extra: 1323/1254,
  37428. bottom: 63/1386
  37429. }
  37430. },
  37431. back: {
  37432. height: math.unit(5 + 9/12, "feet"),
  37433. weight: math.unit(120, "lb"),
  37434. name: "Back",
  37435. image: {
  37436. source: "./media/characters/chyr/back.svg",
  37437. extra: 1323/1252,
  37438. bottom: 48/1371
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(5 + 9/12, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(7, "feet"),
  37455. weight: math.unit(310, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/solarus/front.svg",
  37459. extra: 2415/2021,
  37460. bottom: 103/2518
  37461. }
  37462. },
  37463. back: {
  37464. height: math.unit(7, "feet"),
  37465. weight: math.unit(310, "lb"),
  37466. name: "Back",
  37467. image: {
  37468. source: "./media/characters/solarus/back.svg",
  37469. extra: 2463/2089,
  37470. bottom: 79/2542
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(7, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(16, "feet"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37490. extra: 1844/1780,
  37491. bottom: 58/1902
  37492. }
  37493. },
  37494. winterCoat: {
  37495. height: math.unit(16, "feet"),
  37496. name: "Winter Coat",
  37497. image: {
  37498. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37499. extra: 1807/1775,
  37500. bottom: 69/1876
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Normal",
  37507. height: math.unit(16, "feet"),
  37508. default: true
  37509. },
  37510. {
  37511. name: "Chicago Size",
  37512. height: math.unit(560, "feet")
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(11 + 6/12, "feet"),
  37521. weight: math.unit(1366, "lb"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/lexor/front.svg",
  37525. extra: 1560/1481,
  37526. bottom: 211/1771
  37527. }
  37528. },
  37529. back: {
  37530. height: math.unit(11 + 6/12, "feet"),
  37531. weight: math.unit(1366, "lb"),
  37532. name: "Back",
  37533. image: {
  37534. source: "./media/characters/lexor/back.svg",
  37535. extra: 1614/1533,
  37536. bottom: 76/1690
  37537. }
  37538. },
  37539. maw: {
  37540. height: math.unit(3, "feet"),
  37541. name: "Maw",
  37542. image: {
  37543. source: "./media/characters/lexor/maw.svg"
  37544. }
  37545. },
  37546. dick: {
  37547. height: math.unit(2.59, "feet"),
  37548. name: "Dick",
  37549. image: {
  37550. source: "./media/characters/lexor/dick.svg"
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(11 + 6/12, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(5 + 8/12, "feet"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/magnum/front.svg",
  37570. extra: 942/855,
  37571. bottom: 26/968
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(5 + 8/12, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(18 + 4/12, "feet"),
  37588. weight: math.unit(1500, "kg"),
  37589. name: "Front",
  37590. image: {
  37591. source: "./media/characters/solas-sharpsman/front.svg",
  37592. extra: 1698/1589,
  37593. bottom: 0/1698
  37594. }
  37595. },
  37596. },
  37597. [
  37598. {
  37599. name: "Normal",
  37600. height: math.unit(18 + 4/12, "feet"),
  37601. default: true
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37607. {
  37608. front: {
  37609. height: math.unit(5 + 5/12, "feet"),
  37610. weight: math.unit(180, "lb"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/october/front.svg",
  37614. extra: 1800/1650,
  37615. bottom: 0/1800
  37616. }
  37617. },
  37618. frontNsfw: {
  37619. height: math.unit(5 + 5/12, "feet"),
  37620. weight: math.unit(180, "lb"),
  37621. name: "Front (NSFW)",
  37622. image: {
  37623. source: "./media/characters/october/front-nsfw.svg",
  37624. extra: 1392/1307,
  37625. bottom: 42/1434
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(5 + 5/12, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(8 + 6/12, "feet"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/essynkardi/front.svg",
  37645. extra: 1914/1846,
  37646. bottom: 22/1936
  37647. }
  37648. },
  37649. },
  37650. [
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(8 + 6/12, "feet"),
  37654. default: true
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37660. {
  37661. front: {
  37662. height: math.unit(6 + 6/12, "feet"),
  37663. weight: math.unit(7, "lb"),
  37664. name: "Front",
  37665. image: {
  37666. source: "./media/characters/icky/front.svg",
  37667. extra: 813/782,
  37668. bottom: 66/879
  37669. }
  37670. },
  37671. back: {
  37672. height: math.unit(6 + 6/12, "feet"),
  37673. weight: math.unit(7, "lb"),
  37674. name: "Back",
  37675. image: {
  37676. source: "./media/characters/icky/back.svg",
  37677. extra: 754/735,
  37678. bottom: 56/810
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(6 + 6/12, "feet"),
  37686. default: true
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(15, "feet"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/rojas/front.svg",
  37698. extra: 1462/1408,
  37699. bottom: 95/1557
  37700. }
  37701. },
  37702. back: {
  37703. height: math.unit(15, "feet"),
  37704. name: "Back",
  37705. image: {
  37706. source: "./media/characters/rojas/back.svg",
  37707. extra: 1023/954,
  37708. bottom: 28/1051
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(15, "feet"),
  37716. default: true
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37722. {
  37723. frontHuman: {
  37724. height: math.unit(5 + 7/12, "feet"),
  37725. name: "Front (Human)",
  37726. image: {
  37727. source: "./media/characters/alek-dryagan/front-human.svg",
  37728. extra: 1687/1667,
  37729. bottom: 69/1756
  37730. }
  37731. },
  37732. backHuman: {
  37733. height: math.unit(5 + 7/12, "feet"),
  37734. name: "Back (Human)",
  37735. image: {
  37736. source: "./media/characters/alek-dryagan/back-human.svg",
  37737. extra: 1670/1649,
  37738. bottom: 65/1735
  37739. }
  37740. },
  37741. frontDemi: {
  37742. height: math.unit(65, "feet"),
  37743. name: "Front (Demi)",
  37744. image: {
  37745. source: "./media/characters/alek-dryagan/front-demi.svg",
  37746. extra: 1669/1642,
  37747. bottom: 49/1718
  37748. }
  37749. },
  37750. backDemi: {
  37751. height: math.unit(65, "feet"),
  37752. name: "Back (Demi)",
  37753. image: {
  37754. source: "./media/characters/alek-dryagan/back-demi.svg",
  37755. extra: 1658/1637,
  37756. bottom: 40/1698
  37757. }
  37758. },
  37759. mawHuman: {
  37760. height: math.unit(0.3, "feet"),
  37761. name: "Maw (Human)",
  37762. image: {
  37763. source: "./media/characters/alek-dryagan/maw-human.svg"
  37764. }
  37765. },
  37766. mawDemi: {
  37767. height: math.unit(3.8, "feet"),
  37768. name: "Maw (Demi)",
  37769. image: {
  37770. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(5 + 7/12, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37784. {
  37785. frontHuman: {
  37786. height: math.unit(5 + 2/12, "feet"),
  37787. name: "Front (Human)",
  37788. image: {
  37789. source: "./media/characters/gen/front-human.svg",
  37790. extra: 1627/1538,
  37791. bottom: 71/1698
  37792. }
  37793. },
  37794. backHuman: {
  37795. height: math.unit(5 + 2/12, "feet"),
  37796. name: "Back (Human)",
  37797. image: {
  37798. source: "./media/characters/gen/back-human.svg",
  37799. extra: 1638/1548,
  37800. bottom: 69/1707
  37801. }
  37802. },
  37803. frontDemi: {
  37804. height: math.unit(5 + 2/12, "feet"),
  37805. name: "Front (Demi)",
  37806. image: {
  37807. source: "./media/characters/gen/front-demi.svg",
  37808. extra: 1627/1538,
  37809. bottom: 71/1698
  37810. }
  37811. },
  37812. backDemi: {
  37813. height: math.unit(5 + 2/12, "feet"),
  37814. name: "Back (Demi)",
  37815. image: {
  37816. source: "./media/characters/gen/back-demi.svg",
  37817. extra: 1638/1548,
  37818. bottom: 69/1707
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(5 + 2/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37832. {
  37833. frontImp: {
  37834. height: math.unit(1 + 11/12, "feet"),
  37835. name: "Front (Imp)",
  37836. image: {
  37837. source: "./media/characters/max-kobold/front-imp.svg",
  37838. extra: 1238/1134,
  37839. bottom: 81/1319
  37840. }
  37841. },
  37842. backImp: {
  37843. height: math.unit(1 + 11/12, "feet"),
  37844. name: "Back (Imp)",
  37845. image: {
  37846. source: "./media/characters/max-kobold/back-imp.svg",
  37847. extra: 1334/1175,
  37848. bottom: 34/1368
  37849. }
  37850. },
  37851. frontDemi: {
  37852. height: math.unit(5 + 9/12, "feet"),
  37853. name: "Front (Demi)",
  37854. image: {
  37855. source: "./media/characters/max-kobold/front-demi.svg",
  37856. extra: 1715/1685,
  37857. bottom: 54/1769
  37858. }
  37859. },
  37860. backDemi: {
  37861. height: math.unit(5 + 9/12, "feet"),
  37862. name: "Back (Demi)",
  37863. image: {
  37864. source: "./media/characters/max-kobold/back-demi.svg",
  37865. extra: 1752/1729,
  37866. bottom: 41/1793
  37867. }
  37868. },
  37869. handImp: {
  37870. height: math.unit(0.45, "feet"),
  37871. name: "Hand (Imp)",
  37872. image: {
  37873. source: "./media/characters/max-kobold/hand.svg"
  37874. }
  37875. },
  37876. pawImp: {
  37877. height: math.unit(0.46, "feet"),
  37878. name: "Paw (Imp)",
  37879. image: {
  37880. source: "./media/characters/max-kobold/paw.svg"
  37881. }
  37882. },
  37883. handDemi: {
  37884. height: math.unit(0.80, "feet"),
  37885. name: "Hand (Demi)",
  37886. image: {
  37887. source: "./media/characters/max-kobold/hand.svg"
  37888. }
  37889. },
  37890. pawDemi: {
  37891. height: math.unit(1.1, "feet"),
  37892. name: "Paw (Demi)",
  37893. image: {
  37894. source: "./media/characters/max-kobold/paw.svg"
  37895. }
  37896. },
  37897. headImp: {
  37898. height: math.unit(1.33, "feet"),
  37899. name: "Head (Imp)",
  37900. image: {
  37901. source: "./media/characters/max-kobold/head-imp.svg"
  37902. }
  37903. },
  37904. mawImp: {
  37905. height: math.unit(0.75, "feet"),
  37906. name: "Maw (Imp)",
  37907. image: {
  37908. source: "./media/characters/max-kobold/maw-imp.svg"
  37909. }
  37910. },
  37911. mawDemi: {
  37912. height: math.unit(0.42, "feet"),
  37913. name: "Maw (Demi)",
  37914. image: {
  37915. source: "./media/characters/max-kobold/maw-demi.svg"
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(1 + 11/12, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(7 + 5/12, "feet"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/carbon/front.svg",
  37935. extra: 1754/1689,
  37936. bottom: 65/1819
  37937. }
  37938. },
  37939. back: {
  37940. height: math.unit(7 + 5/12, "feet"),
  37941. name: "Back",
  37942. image: {
  37943. source: "./media/characters/carbon/back.svg",
  37944. extra: 1762/1695,
  37945. bottom: 24/1786
  37946. }
  37947. },
  37948. frontGigantamax: {
  37949. height: math.unit(150, "feet"),
  37950. name: "Front (Gigantamax)",
  37951. image: {
  37952. source: "./media/characters/carbon/front-gigantamax.svg",
  37953. extra: 1826/1669,
  37954. bottom: 59/1885
  37955. }
  37956. },
  37957. backGigantamax: {
  37958. height: math.unit(150, "feet"),
  37959. name: "Back (Gigantamax)",
  37960. image: {
  37961. source: "./media/characters/carbon/back-gigantamax.svg",
  37962. extra: 1796/1653,
  37963. bottom: 53/1849
  37964. }
  37965. },
  37966. maw: {
  37967. height: math.unit(0.48, "feet"),
  37968. name: "Maw",
  37969. image: {
  37970. source: "./media/characters/carbon/maw.svg"
  37971. }
  37972. },
  37973. mawGigantamax: {
  37974. height: math.unit(7.5, "feet"),
  37975. name: "Maw (Gigantamax)",
  37976. image: {
  37977. source: "./media/characters/carbon/maw-gigantamax.svg"
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Normal",
  37984. height: math.unit(7 + 5/12, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(6, "feet"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/maverick/front.svg",
  37997. extra: 1672/1661,
  37998. bottom: 85/1757
  37999. }
  38000. },
  38001. back: {
  38002. height: math.unit(6, "feet"),
  38003. name: "Back",
  38004. image: {
  38005. source: "./media/characters/maverick/back.svg",
  38006. extra: 1642/1631,
  38007. bottom: 38/1680
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(6, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(15, "feet"),
  38024. weight: math.unit(615, "lb"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/grockle/front.svg",
  38028. extra: 1535/1427,
  38029. bottom: 56/1591
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(15, "feet"),
  38037. default: true
  38038. },
  38039. {
  38040. name: "Large",
  38041. height: math.unit(150, "feet")
  38042. },
  38043. {
  38044. name: "Macro",
  38045. height: math.unit(1876, "feet")
  38046. },
  38047. {
  38048. name: "Mega Macro",
  38049. height: math.unit(121940, "feet")
  38050. },
  38051. {
  38052. name: "Giga Macro",
  38053. height: math.unit(750, "km")
  38054. },
  38055. {
  38056. name: "Tera Macro",
  38057. height: math.unit(750000, "km")
  38058. },
  38059. {
  38060. name: "Galactic",
  38061. height: math.unit(1.4e5, "km")
  38062. },
  38063. {
  38064. name: "Godlike",
  38065. height: math.unit(9.8e280, "galaxies")
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(11, "meters"),
  38074. weight: math.unit(20, "tonnes"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/alistair/front.svg",
  38078. extra: 1265/1009,
  38079. bottom: 93/1358
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(11, "meters"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(5 + 8/12, "feet"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/haruka/front.svg",
  38099. extra: 2012/1952,
  38100. bottom: 0/2012
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(5 + 8/12, "feet"),
  38108. default: true
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38114. {
  38115. back: {
  38116. height: math.unit(9, "feet"),
  38117. name: "Back",
  38118. image: {
  38119. source: "./media/characters/vivian-sylveon/back.svg",
  38120. extra: 1853/1714,
  38121. bottom: 0/1853
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Normal",
  38128. height: math.unit(9, "feet"),
  38129. default: true
  38130. },
  38131. {
  38132. name: "Macro",
  38133. height: math.unit(500, "feet")
  38134. },
  38135. {
  38136. name: "Megamacro",
  38137. height: math.unit(600, "miles")
  38138. },
  38139. {
  38140. name: "Gigamacro",
  38141. height: math.unit(30000, "miles")
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38147. {
  38148. anthro: {
  38149. height: math.unit(5 + 10/12, "feet"),
  38150. weight: math.unit(100, "lb"),
  38151. name: "Anthro",
  38152. image: {
  38153. source: "./media/characters/daiki/anthro.svg",
  38154. extra: 1115/1027,
  38155. bottom: 69/1184
  38156. }
  38157. },
  38158. feral: {
  38159. height: math.unit(200, "feet"),
  38160. name: "Feral",
  38161. image: {
  38162. source: "./media/characters/daiki/feral.svg",
  38163. extra: 1256/313,
  38164. bottom: 39/1295
  38165. }
  38166. },
  38167. feralHead: {
  38168. height: math.unit(171, "feet"),
  38169. name: "Feral Head",
  38170. image: {
  38171. source: "./media/characters/daiki/feral-head.svg"
  38172. }
  38173. },
  38174. manaDragon: {
  38175. height: math.unit(170, "meters"),
  38176. name: "Mana-dragon",
  38177. image: {
  38178. source: "./media/characters/daiki/mana-dragon.svg",
  38179. extra: 763/420,
  38180. bottom: 97/860
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(5 + 10/12, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38194. {
  38195. fullyEquippedFront: {
  38196. height: math.unit(3 + 1/12, "feet"),
  38197. weight: math.unit(24, "lb"),
  38198. name: "Fully Equipped (Front)",
  38199. image: {
  38200. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38201. extra: 687/605,
  38202. bottom: 18/705
  38203. }
  38204. },
  38205. fullyEquippedBack: {
  38206. height: math.unit(3 + 1/12, "feet"),
  38207. weight: math.unit(24, "lb"),
  38208. name: "Fully Equipped (Back)",
  38209. image: {
  38210. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38211. extra: 689/590,
  38212. bottom: 18/707
  38213. }
  38214. },
  38215. dailyWear: {
  38216. height: math.unit(3 + 1/12, "feet"),
  38217. weight: math.unit(24, "lb"),
  38218. name: "Daily Wear",
  38219. image: {
  38220. source: "./media/characters/tea-spot/daily-wear.svg",
  38221. extra: 701/620,
  38222. bottom: 21/722
  38223. }
  38224. },
  38225. maidWork: {
  38226. height: math.unit(3 + 1/12, "feet"),
  38227. weight: math.unit(24, "lb"),
  38228. name: "Maid Work",
  38229. image: {
  38230. source: "./media/characters/tea-spot/maid-work.svg",
  38231. extra: 693/609,
  38232. bottom: 15/708
  38233. }
  38234. },
  38235. },
  38236. [
  38237. {
  38238. name: "Normal",
  38239. height: math.unit(3 + 1/12, "feet"),
  38240. default: true
  38241. },
  38242. ]
  38243. ))
  38244. characterMakers.push(() => makeCharacter(
  38245. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38246. {
  38247. front: {
  38248. height: math.unit(175, "cm"),
  38249. weight: math.unit(75, "kg"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/chee/front.svg",
  38253. extra: 1796/1740,
  38254. bottom: 40/1836
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Micro-Micro",
  38261. height: math.unit(1, "nm")
  38262. },
  38263. {
  38264. name: "Micro-erst",
  38265. height: math.unit(1, "micrometer")
  38266. },
  38267. {
  38268. name: "Micro-er",
  38269. height: math.unit(1, "cm")
  38270. },
  38271. {
  38272. name: "Normal",
  38273. height: math.unit(175, "cm"),
  38274. default: true
  38275. },
  38276. {
  38277. name: "Macro",
  38278. height: math.unit(100, "m")
  38279. },
  38280. {
  38281. name: "Macro-er",
  38282. height: math.unit(1, "km")
  38283. },
  38284. {
  38285. name: "Macro-erst",
  38286. height: math.unit(10, "km")
  38287. },
  38288. {
  38289. name: "Macro-Macro",
  38290. height: math.unit(100, "km")
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(11 + 9/12, "feet"),
  38299. weight: math.unit(935, "lb"),
  38300. name: "Front",
  38301. image: {
  38302. source: "./media/characters/kingsley/front.svg",
  38303. extra: 1803/1674,
  38304. bottom: 127/1930
  38305. }
  38306. },
  38307. frontNude: {
  38308. height: math.unit(11 + 9/12, "feet"),
  38309. weight: math.unit(935, "lb"),
  38310. name: "Front (Nude)",
  38311. image: {
  38312. source: "./media/characters/kingsley/front-nude.svg",
  38313. extra: 1803/1674,
  38314. bottom: 127/1930
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(11 + 9/12, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38328. {
  38329. side: {
  38330. height: math.unit(9, "feet"),
  38331. name: "Side",
  38332. image: {
  38333. source: "./media/characters/rymel/side.svg",
  38334. extra: 792/469,
  38335. bottom: 121/913
  38336. }
  38337. },
  38338. maw: {
  38339. height: math.unit(2.4, "meters"),
  38340. name: "Maw",
  38341. image: {
  38342. source: "./media/characters/rymel/maw.svg"
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "House Drake",
  38349. height: math.unit(2, "feet")
  38350. },
  38351. {
  38352. name: "Reduced",
  38353. height: math.unit(4.5, "feet")
  38354. },
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(9, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(1.74, "meters"),
  38367. weight: math.unit(55, "kg"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/rubus/front.svg",
  38371. extra: 1894/1742,
  38372. bottom: 44/1938
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(1.74, "meters"),
  38380. default: true
  38381. },
  38382. ]
  38383. ))
  38384. characterMakers.push(() => makeCharacter(
  38385. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38386. {
  38387. front: {
  38388. height: math.unit(5 + 2/12, "feet"),
  38389. weight: math.unit(112, "lb"),
  38390. name: "Front",
  38391. image: {
  38392. source: "./media/characters/cassie-kingston/front.svg",
  38393. extra: 1438/1390,
  38394. bottom: 47/1485
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Normal",
  38401. height: math.unit(5 + 2/12, "feet"),
  38402. default: true
  38403. },
  38404. {
  38405. name: "Macro",
  38406. height: math.unit(128, "feet")
  38407. },
  38408. {
  38409. name: "Megamacro",
  38410. height: math.unit(2.56, "miles")
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(7, "feet"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/fox/front.svg",
  38422. extra: 1798/1703,
  38423. bottom: 55/1853
  38424. }
  38425. },
  38426. back: {
  38427. height: math.unit(7, "feet"),
  38428. name: "Back",
  38429. image: {
  38430. source: "./media/characters/fox/back.svg",
  38431. extra: 1748/1649,
  38432. bottom: 32/1780
  38433. }
  38434. },
  38435. head: {
  38436. height: math.unit(1.95, "feet"),
  38437. name: "Head",
  38438. image: {
  38439. source: "./media/characters/fox/head.svg"
  38440. }
  38441. },
  38442. dick: {
  38443. height: math.unit(1.33, "feet"),
  38444. name: "Dick",
  38445. image: {
  38446. source: "./media/characters/fox/dick.svg"
  38447. }
  38448. },
  38449. foot: {
  38450. height: math.unit(1, "feet"),
  38451. name: "Foot",
  38452. image: {
  38453. source: "./media/characters/fox/foot.svg"
  38454. }
  38455. },
  38456. paw: {
  38457. height: math.unit(0.92, "feet"),
  38458. name: "Paw",
  38459. image: {
  38460. source: "./media/characters/fox/paw.svg"
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Small",
  38467. height: math.unit(3, "inches")
  38468. },
  38469. {
  38470. name: "\"Realistic\"",
  38471. height: math.unit(7, "feet")
  38472. },
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(150, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "BIG",
  38480. height: math.unit(1200, "feet")
  38481. },
  38482. {
  38483. name: "👀",
  38484. height: math.unit(5, "miles")
  38485. },
  38486. {
  38487. name: "👀👀👀",
  38488. height: math.unit(64, "miles")
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(625, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/asonja-rossa/front.svg",
  38500. extra: 1833/1686,
  38501. bottom: 24/1857
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(625, "feet"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/asonja-rossa/back.svg",
  38509. extra: 1852/1753,
  38510. bottom: 26/1878
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Macro",
  38517. height: math.unit(625, "feet"),
  38518. default: true
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38524. {
  38525. side: {
  38526. height: math.unit(8, "feet"),
  38527. name: "Side",
  38528. image: {
  38529. source: "./media/characters/rezukii/side.svg",
  38530. extra: 979/542,
  38531. bottom: 87/1066
  38532. }
  38533. },
  38534. sitting: {
  38535. height: math.unit(14.6, "feet"),
  38536. name: "Sitting",
  38537. image: {
  38538. source: "./media/characters/rezukii/sitting.svg",
  38539. extra: 1023/813,
  38540. bottom: 45/1068
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Tiny",
  38547. height: math.unit(2, "feet")
  38548. },
  38549. {
  38550. name: "Smol",
  38551. height: math.unit(4, "feet")
  38552. },
  38553. {
  38554. name: "Normal",
  38555. height: math.unit(8, "feet"),
  38556. default: true
  38557. },
  38558. {
  38559. name: "Big",
  38560. height: math.unit(12, "feet")
  38561. },
  38562. {
  38563. name: "Macro",
  38564. height: math.unit(30, "feet")
  38565. },
  38566. ]
  38567. ))
  38568. characterMakers.push(() => makeCharacter(
  38569. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38570. {
  38571. front: {
  38572. height: math.unit(14, "feet"),
  38573. weight: math.unit(9.5, "tonnes"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/dawnheart/front.svg",
  38577. extra: 2792/2675,
  38578. bottom: 64/2856
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(14, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38592. {
  38593. front: {
  38594. height: math.unit(1.7, "m"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/gladi/front.svg",
  38598. extra: 1460/1362,
  38599. bottom: 19/1479
  38600. }
  38601. },
  38602. back: {
  38603. height: math.unit(1.7, "m"),
  38604. name: "Back",
  38605. image: {
  38606. source: "./media/characters/gladi/back.svg",
  38607. extra: 1459/1357,
  38608. bottom: 12/1471
  38609. }
  38610. },
  38611. feral: {
  38612. height: math.unit(2.05, "m"),
  38613. name: "Feral",
  38614. image: {
  38615. source: "./media/characters/gladi/feral.svg",
  38616. extra: 821/557,
  38617. bottom: 91/912
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Shortest",
  38624. height: math.unit(70, "cm")
  38625. },
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(1.7, "m")
  38629. },
  38630. {
  38631. name: "Macro",
  38632. height: math.unit(10, "m"),
  38633. default: true
  38634. },
  38635. {
  38636. name: "Tallest",
  38637. height: math.unit(200, "m")
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(5 + 7/12, "feet"),
  38646. weight: math.unit(2, "tons"),
  38647. name: "Front",
  38648. image: {
  38649. source: "./media/characters/erdno/front.svg",
  38650. extra: 1234/1129,
  38651. bottom: 35/1269
  38652. }
  38653. },
  38654. angled: {
  38655. height: math.unit(5 + 7/12, "feet"),
  38656. weight: math.unit(2, "tons"),
  38657. name: "Angled",
  38658. image: {
  38659. source: "./media/characters/erdno/angled.svg",
  38660. extra: 1185/1139,
  38661. bottom: 36/1221
  38662. }
  38663. },
  38664. side: {
  38665. height: math.unit(5 + 7/12, "feet"),
  38666. weight: math.unit(2, "tons"),
  38667. name: "Side",
  38668. image: {
  38669. source: "./media/characters/erdno/side.svg",
  38670. extra: 1191/1144,
  38671. bottom: 40/1231
  38672. }
  38673. },
  38674. back: {
  38675. height: math.unit(5 + 7/12, "feet"),
  38676. weight: math.unit(2, "tons"),
  38677. name: "Back",
  38678. image: {
  38679. source: "./media/characters/erdno/back.svg",
  38680. extra: 1202/1146,
  38681. bottom: 17/1219
  38682. }
  38683. },
  38684. frontNsfw: {
  38685. height: math.unit(5 + 7/12, "feet"),
  38686. weight: math.unit(2, "tons"),
  38687. name: "Front (NSFW)",
  38688. image: {
  38689. source: "./media/characters/erdno/front-nsfw.svg",
  38690. extra: 1234/1129,
  38691. bottom: 35/1269
  38692. }
  38693. },
  38694. angledNsfw: {
  38695. height: math.unit(5 + 7/12, "feet"),
  38696. weight: math.unit(2, "tons"),
  38697. name: "Angled (NSFW)",
  38698. image: {
  38699. source: "./media/characters/erdno/angled-nsfw.svg",
  38700. extra: 1185/1139,
  38701. bottom: 36/1221
  38702. }
  38703. },
  38704. sideNsfw: {
  38705. height: math.unit(5 + 7/12, "feet"),
  38706. weight: math.unit(2, "tons"),
  38707. name: "Side (NSFW)",
  38708. image: {
  38709. source: "./media/characters/erdno/side-nsfw.svg",
  38710. extra: 1191/1144,
  38711. bottom: 40/1231
  38712. }
  38713. },
  38714. backNsfw: {
  38715. height: math.unit(5 + 7/12, "feet"),
  38716. weight: math.unit(2, "tons"),
  38717. name: "Back (NSFW)",
  38718. image: {
  38719. source: "./media/characters/erdno/back-nsfw.svg",
  38720. extra: 1202/1146,
  38721. bottom: 17/1219
  38722. }
  38723. },
  38724. frontHyper: {
  38725. height: math.unit(5 + 7/12, "feet"),
  38726. weight: math.unit(2, "tons"),
  38727. name: "Front (Hyper)",
  38728. image: {
  38729. source: "./media/characters/erdno/front-hyper.svg",
  38730. extra: 1298/1136,
  38731. bottom: 35/1333
  38732. }
  38733. },
  38734. },
  38735. [
  38736. {
  38737. name: "Normal",
  38738. height: math.unit(5 + 7/12, "feet"),
  38739. default: true
  38740. },
  38741. {
  38742. name: "Big",
  38743. height: math.unit(5.7, "meters")
  38744. },
  38745. {
  38746. name: "Macro",
  38747. height: math.unit(5.7, "kilometers")
  38748. },
  38749. {
  38750. name: "Megamacro",
  38751. height: math.unit(5.7, "earths")
  38752. },
  38753. ]
  38754. ))
  38755. characterMakers.push(() => makeCharacter(
  38756. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38757. {
  38758. front: {
  38759. height: math.unit(5 + 10/12, "feet"),
  38760. weight: math.unit(150, "lb"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/jamie/front.svg",
  38764. extra: 1908/1768,
  38765. bottom: 19/1927
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Minimum",
  38772. height: math.unit(2, "cm")
  38773. },
  38774. {
  38775. name: "Micro",
  38776. height: math.unit(3, "inches")
  38777. },
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(5 + 10/12, "feet"),
  38781. default: true
  38782. },
  38783. {
  38784. name: "Macro",
  38785. height: math.unit(150, "feet")
  38786. },
  38787. {
  38788. name: "Megamacro",
  38789. height: math.unit(10000, "m")
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(2, "meters"),
  38798. weight: math.unit(100, "kg"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/shiron/front.svg",
  38802. extra: 2103/1985,
  38803. bottom: 98/2201
  38804. }
  38805. },
  38806. back: {
  38807. height: math.unit(2, "meters"),
  38808. weight: math.unit(100, "kg"),
  38809. name: "Back",
  38810. image: {
  38811. source: "./media/characters/shiron/back.svg",
  38812. extra: 2110/2015,
  38813. bottom: 89/2199
  38814. }
  38815. },
  38816. hand: {
  38817. height: math.unit(0.96, "feet"),
  38818. name: "Hand",
  38819. image: {
  38820. source: "./media/characters/shiron/hand.svg"
  38821. }
  38822. },
  38823. foot: {
  38824. height: math.unit(1.464, "feet"),
  38825. name: "Foot",
  38826. image: {
  38827. source: "./media/characters/shiron/foot.svg"
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(2, "meters")
  38835. },
  38836. {
  38837. name: "Macro",
  38838. height: math.unit(500, "meters"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Megamacro",
  38843. height: math.unit(20, "km")
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38849. {
  38850. front: {
  38851. height: math.unit(6, "feet"),
  38852. name: "Front",
  38853. image: {
  38854. source: "./media/characters/sam/front.svg",
  38855. extra: 849/826,
  38856. bottom: 19/868
  38857. }
  38858. },
  38859. },
  38860. [
  38861. {
  38862. name: "Normal",
  38863. height: math.unit(6, "feet"),
  38864. default: true
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38870. {
  38871. front: {
  38872. height: math.unit(8 + 4/12, "feet"),
  38873. weight: math.unit(122, "kg"),
  38874. name: "Front",
  38875. image: {
  38876. source: "./media/characters/namori-kurogawa/front.svg",
  38877. extra: 1894/1576,
  38878. bottom: 34/1928
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(8 + 4/12, "feet"),
  38886. default: true
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38892. {
  38893. front: {
  38894. height: math.unit(9, "feet"),
  38895. weight: math.unit(621, "lb"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/unmru/front.svg",
  38899. extra: 1853/1747,
  38900. bottom: 73/1926
  38901. }
  38902. },
  38903. side: {
  38904. height: math.unit(9, "feet"),
  38905. weight: math.unit(621, "lb"),
  38906. name: "Side",
  38907. image: {
  38908. source: "./media/characters/unmru/side.svg",
  38909. extra: 1781/1671,
  38910. bottom: 127/1908
  38911. }
  38912. },
  38913. back: {
  38914. height: math.unit(9, "feet"),
  38915. weight: math.unit(621, "lb"),
  38916. name: "Back",
  38917. image: {
  38918. source: "./media/characters/unmru/back.svg",
  38919. extra: 1894/1765,
  38920. bottom: 75/1969
  38921. }
  38922. },
  38923. dick: {
  38924. height: math.unit(3, "feet"),
  38925. weight: math.unit(35, "lb"),
  38926. name: "Dick",
  38927. image: {
  38928. source: "./media/characters/unmru/dick.svg"
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Normal",
  38935. height: math.unit(9, "feet")
  38936. },
  38937. {
  38938. name: "Natural",
  38939. height: math.unit(27, "feet"),
  38940. default: true
  38941. },
  38942. {
  38943. name: "Giant",
  38944. height: math.unit(90, "feet")
  38945. },
  38946. {
  38947. name: "Kaiju",
  38948. height: math.unit(270, "feet")
  38949. },
  38950. {
  38951. name: "Macro",
  38952. height: math.unit(900, "feet")
  38953. },
  38954. {
  38955. name: "Macro+",
  38956. height: math.unit(2700, "feet")
  38957. },
  38958. {
  38959. name: "Megamacro",
  38960. height: math.unit(9000, "feet")
  38961. },
  38962. {
  38963. name: "City-Crushing",
  38964. height: math.unit(27000, "feet")
  38965. },
  38966. {
  38967. name: "Mountain-Mashing",
  38968. height: math.unit(90000, "feet")
  38969. },
  38970. {
  38971. name: "Earth-Eclipsing",
  38972. height: math.unit(2.7e8, "feet")
  38973. },
  38974. {
  38975. name: "Sol-Swallowing",
  38976. height: math.unit(9e10, "feet")
  38977. },
  38978. {
  38979. name: "Majoris-Munching",
  38980. height: math.unit(2.7e13, "feet")
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38986. {
  38987. front: {
  38988. height: math.unit(1, "inch"),
  38989. name: "Front",
  38990. image: {
  38991. source: "./media/characters/squeaks-mouse/front.svg",
  38992. extra: 352/308,
  38993. bottom: 25/377
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Micro",
  39000. height: math.unit(1, "inch"),
  39001. default: true
  39002. },
  39003. ]
  39004. ))
  39005. characterMakers.push(() => makeCharacter(
  39006. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39007. {
  39008. side: {
  39009. height: math.unit(35, "feet"),
  39010. name: "Side",
  39011. image: {
  39012. source: "./media/characters/sayko/side.svg",
  39013. extra: 1697/1021,
  39014. bottom: 82/1779
  39015. }
  39016. },
  39017. head: {
  39018. height: math.unit(16, "feet"),
  39019. name: "Head",
  39020. image: {
  39021. source: "./media/characters/sayko/head.svg"
  39022. }
  39023. },
  39024. forepaw: {
  39025. height: math.unit(7.85, "feet"),
  39026. name: "Forepaw",
  39027. image: {
  39028. source: "./media/characters/sayko/forepaw.svg"
  39029. }
  39030. },
  39031. hindpaw: {
  39032. height: math.unit(8.8, "feet"),
  39033. name: "Hindpaw",
  39034. image: {
  39035. source: "./media/characters/sayko/hindpaw.svg"
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(35, "feet"),
  39043. default: true
  39044. },
  39045. {
  39046. name: "Colossus",
  39047. height: math.unit(100, "meters")
  39048. },
  39049. {
  39050. name: "\"Small\" Deity",
  39051. height: math.unit(1, "km")
  39052. },
  39053. {
  39054. name: "\"Large\" Deity",
  39055. height: math.unit(15, "km")
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(6, "feet"),
  39064. weight: math.unit(250, "lb"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/mukiro/front.svg",
  39068. extra: 1368/1310,
  39069. bottom: 34/1402
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Normal",
  39076. height: math.unit(6, "feet"),
  39077. default: true
  39078. },
  39079. ]
  39080. ))
  39081. characterMakers.push(() => makeCharacter(
  39082. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39083. {
  39084. front: {
  39085. height: math.unit(12 + 4/12, "feet"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39089. extra: 1346/1311,
  39090. bottom: 65/1411
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Base",
  39097. height: math.unit(12 + 4/12, "feet"),
  39098. default: true
  39099. },
  39100. {
  39101. name: "Macro",
  39102. height: math.unit(150, "feet")
  39103. },
  39104. {
  39105. name: "Mega",
  39106. height: math.unit(2, "miles")
  39107. },
  39108. {
  39109. name: "Demi God",
  39110. height: math.unit(4, "AU")
  39111. },
  39112. {
  39113. name: "God Size",
  39114. height: math.unit(1, "universe")
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(3 + 3/12, "feet"),
  39123. weight: math.unit(88, "lb"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/trey/front.svg",
  39127. extra: 1815/1509,
  39128. bottom: 60/1875
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(3 + 3/12, "feet"),
  39136. default: true
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39142. {
  39143. front: {
  39144. height: math.unit(4, "meters"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/adelonda/front.svg",
  39148. extra: 1077/982,
  39149. bottom: 39/1116
  39150. }
  39151. },
  39152. back: {
  39153. height: math.unit(4, "meters"),
  39154. name: "Back",
  39155. image: {
  39156. source: "./media/characters/adelonda/back.svg",
  39157. extra: 1105/1003,
  39158. bottom: 25/1130
  39159. }
  39160. },
  39161. feral: {
  39162. height: math.unit(40/1.5, "meters"),
  39163. name: "Feral",
  39164. image: {
  39165. source: "./media/characters/adelonda/feral.svg",
  39166. extra: 597/271,
  39167. bottom: 387/984
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(4, "meters"),
  39175. default: true
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(8 + 4/12, "feet"),
  39184. weight: math.unit(670, "lb"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/acadiel/front.svg",
  39188. extra: 1901/1595,
  39189. bottom: 142/2043
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(8 + 4/12, "feet"),
  39197. default: true
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(200, "feet")
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(6 + 2/12, "feet"),
  39210. weight: math.unit(185, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/kayne-ein/front.svg",
  39214. extra: 1780/1560,
  39215. bottom: 81/1861
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(6 + 2/12, "feet"),
  39223. default: true
  39224. },
  39225. {
  39226. name: "Transformation Stage",
  39227. height: math.unit(15, "feet")
  39228. },
  39229. {
  39230. name: "Macro",
  39231. height: math.unit(150, "feet")
  39232. },
  39233. {
  39234. name: "Earth's Shadow",
  39235. height: math.unit(6200, "miles")
  39236. },
  39237. {
  39238. name: "Universal Demon",
  39239. height: math.unit(28e9, "parsecs")
  39240. },
  39241. {
  39242. name: "Multiverse God",
  39243. height: math.unit(3, "multiverses")
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(5 + 5/12, "feet"),
  39252. name: "Front",
  39253. image: {
  39254. source: "./media/characters/fawn/front.svg",
  39255. extra: 1873/1731,
  39256. bottom: 95/1968
  39257. }
  39258. },
  39259. back: {
  39260. height: math.unit(5 + 5/12, "feet"),
  39261. name: "Back",
  39262. image: {
  39263. source: "./media/characters/fawn/back.svg",
  39264. extra: 1813/1700,
  39265. bottom: 14/1827
  39266. }
  39267. },
  39268. hoof: {
  39269. height: math.unit(1.45, "feet"),
  39270. name: "Hoof",
  39271. image: {
  39272. source: "./media/characters/fawn/hoof.svg"
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Normal",
  39279. height: math.unit(5 + 5/12, "feet"),
  39280. default: true
  39281. },
  39282. ]
  39283. ))
  39284. characterMakers.push(() => makeCharacter(
  39285. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39286. {
  39287. front: {
  39288. height: math.unit(2 + 5/12, "feet"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/orion/front.svg",
  39292. extra: 1366/1304,
  39293. bottom: 43/1409
  39294. }
  39295. },
  39296. paw: {
  39297. height: math.unit(0.52, "feet"),
  39298. name: "Paw",
  39299. image: {
  39300. source: "./media/characters/orion/paw.svg"
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(2 + 5/12, "feet"),
  39308. default: true
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39314. {
  39315. front: {
  39316. height: math.unit(5 + 10/12, "feet"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/vera/front.svg",
  39320. extra: 1680/1575,
  39321. bottom: 49/1729
  39322. }
  39323. },
  39324. back: {
  39325. height: math.unit(5 + 10/12, "feet"),
  39326. name: "Back",
  39327. image: {
  39328. source: "./media/characters/vera/back.svg",
  39329. extra: 1700/1588,
  39330. bottom: 18/1718
  39331. }
  39332. },
  39333. arcanine: {
  39334. height: math.unit(6 + 8/12, "feet"),
  39335. name: "Arcanine",
  39336. image: {
  39337. source: "./media/characters/vera/arcanine.svg",
  39338. extra: 1590/1511,
  39339. bottom: 71/1661
  39340. }
  39341. },
  39342. maw: {
  39343. height: math.unit(0.82, "feet"),
  39344. name: "Maw",
  39345. image: {
  39346. source: "./media/characters/vera/maw.svg"
  39347. }
  39348. },
  39349. mawArcanine: {
  39350. height: math.unit(0.97, "feet"),
  39351. name: "Maw (Arcanine)",
  39352. image: {
  39353. source: "./media/characters/vera/maw-arcanine.svg"
  39354. }
  39355. },
  39356. paw: {
  39357. height: math.unit(0.75, "feet"),
  39358. name: "Paw",
  39359. image: {
  39360. source: "./media/characters/vera/paw.svg"
  39361. }
  39362. },
  39363. pawprint: {
  39364. height: math.unit(0.52, "feet"),
  39365. name: "Pawprint",
  39366. image: {
  39367. source: "./media/characters/vera/pawprint.svg"
  39368. }
  39369. },
  39370. },
  39371. [
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(5 + 10/12, "feet"),
  39375. default: true
  39376. },
  39377. {
  39378. name: "Macro",
  39379. height: math.unit(75, "feet")
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(4, "feet"),
  39388. weight: math.unit(40, "lb"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/orvan-rabbit/front.svg",
  39392. extra: 1896/1642,
  39393. bottom: 29/1925
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(4, "feet"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39407. {
  39408. front: {
  39409. height: math.unit(6, "feet"),
  39410. weight: math.unit(168, "lb"),
  39411. name: "Front",
  39412. image: {
  39413. source: "./media/characters/lisa/front.svg",
  39414. extra: 2065/1867,
  39415. bottom: 46/2111
  39416. }
  39417. },
  39418. back: {
  39419. height: math.unit(6, "feet"),
  39420. weight: math.unit(168, "lb"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/lisa/back.svg",
  39424. extra: 1982/1838,
  39425. bottom: 29/2011
  39426. }
  39427. },
  39428. maw: {
  39429. height: math.unit(0.81, "feet"),
  39430. name: "Maw",
  39431. image: {
  39432. source: "./media/characters/lisa/maw.svg"
  39433. }
  39434. },
  39435. paw: {
  39436. height: math.unit(0.9, "feet"),
  39437. name: "Paw",
  39438. image: {
  39439. source: "./media/characters/lisa/paw.svg"
  39440. }
  39441. },
  39442. caribousune: {
  39443. height: math.unit(7 + 2/12, "feet"),
  39444. weight: math.unit(268, "lb"),
  39445. name: "Caribousune",
  39446. image: {
  39447. source: "./media/characters/lisa/caribousune.svg",
  39448. extra: 1843/1633,
  39449. bottom: 29/1872
  39450. }
  39451. },
  39452. frontCaribousune: {
  39453. height: math.unit(7 + 2/12, "feet"),
  39454. weight: math.unit(268, "lb"),
  39455. name: "Front (Caribousune)",
  39456. image: {
  39457. source: "./media/characters/lisa/front-caribousune.svg",
  39458. extra: 1818/1638,
  39459. bottom: 52/1870
  39460. }
  39461. },
  39462. sideCaribousune: {
  39463. height: math.unit(7 + 2/12, "feet"),
  39464. weight: math.unit(268, "lb"),
  39465. name: "Side (Caribousune)",
  39466. image: {
  39467. source: "./media/characters/lisa/side-caribousune.svg",
  39468. extra: 1851/1635,
  39469. bottom: 16/1867
  39470. }
  39471. },
  39472. backCaribousune: {
  39473. height: math.unit(7 + 2/12, "feet"),
  39474. weight: math.unit(268, "lb"),
  39475. name: "Back (Caribousune)",
  39476. image: {
  39477. source: "./media/characters/lisa/back-caribousune.svg",
  39478. extra: 1801/1604,
  39479. bottom: 44/1845
  39480. }
  39481. },
  39482. caribou: {
  39483. height: math.unit(7 + 2/12, "feet"),
  39484. weight: math.unit(268, "lb"),
  39485. name: "Caribou",
  39486. image: {
  39487. source: "./media/characters/lisa/caribou.svg",
  39488. extra: 1843/1633,
  39489. bottom: 29/1872
  39490. }
  39491. },
  39492. frontCaribou: {
  39493. height: math.unit(7 + 2/12, "feet"),
  39494. weight: math.unit(268, "lb"),
  39495. name: "Front (Caribou)",
  39496. image: {
  39497. source: "./media/characters/lisa/front-caribou.svg",
  39498. extra: 1818/1638,
  39499. bottom: 52/1870
  39500. }
  39501. },
  39502. sideCaribou: {
  39503. height: math.unit(7 + 2/12, "feet"),
  39504. weight: math.unit(268, "lb"),
  39505. name: "Side (Caribou)",
  39506. image: {
  39507. source: "./media/characters/lisa/side-caribou.svg",
  39508. extra: 1851/1635,
  39509. bottom: 16/1867
  39510. }
  39511. },
  39512. backCaribou: {
  39513. height: math.unit(7 + 2/12, "feet"),
  39514. weight: math.unit(268, "lb"),
  39515. name: "Back (Caribou)",
  39516. image: {
  39517. source: "./media/characters/lisa/back-caribou.svg",
  39518. extra: 1801/1604,
  39519. bottom: 44/1845
  39520. }
  39521. },
  39522. mawCaribou: {
  39523. height: math.unit(1.45, "feet"),
  39524. name: "Maw (Caribou)",
  39525. image: {
  39526. source: "./media/characters/lisa/maw-caribou.svg"
  39527. }
  39528. },
  39529. mawCaribousune: {
  39530. height: math.unit(1.45, "feet"),
  39531. name: "Maw (Caribousune)",
  39532. image: {
  39533. source: "./media/characters/lisa/maw-caribousune.svg"
  39534. }
  39535. },
  39536. pawCaribousune: {
  39537. height: math.unit(1.61, "feet"),
  39538. name: "Paw (Caribou)",
  39539. image: {
  39540. source: "./media/characters/lisa/paw-caribousune.svg"
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Normal",
  39547. height: math.unit(6, "feet")
  39548. },
  39549. {
  39550. name: "God Size",
  39551. height: math.unit(72, "feet"),
  39552. default: true
  39553. },
  39554. {
  39555. name: "Towering",
  39556. height: math.unit(288, "feet")
  39557. },
  39558. {
  39559. name: "City Size",
  39560. height: math.unit(48384, "feet")
  39561. },
  39562. {
  39563. name: "Continental",
  39564. height: math.unit(4200, "miles")
  39565. },
  39566. {
  39567. name: "Planet Eater",
  39568. height: math.unit(42, "earths")
  39569. },
  39570. {
  39571. name: "Star Swallower",
  39572. height: math.unit(42, "solarradii")
  39573. },
  39574. {
  39575. name: "System Swallower",
  39576. height: math.unit(84000, "AU")
  39577. },
  39578. {
  39579. name: "Galaxy Gobbler",
  39580. height: math.unit(42, "galaxies")
  39581. },
  39582. {
  39583. name: "Universe Devourer",
  39584. height: math.unit(42, "universes")
  39585. },
  39586. {
  39587. name: "Multiverse Muncher",
  39588. height: math.unit(42, "multiverses")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(36, "feet"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/shadow-rat/front.svg",
  39600. extra: 1845/1758,
  39601. bottom: 83/1928
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Macro",
  39608. height: math.unit(36, "feet"),
  39609. default: true
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39615. {
  39616. side: {
  39617. height: math.unit(8, "feet"),
  39618. weight: math.unit(2630, "lb"),
  39619. name: "Side",
  39620. image: {
  39621. source: "./media/characters/torallia/side.svg",
  39622. extra: 2164/2021,
  39623. bottom: 371/2535
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Mortal Interaction",
  39630. height: math.unit(8, "feet")
  39631. },
  39632. {
  39633. name: "Natural",
  39634. height: math.unit(24, "feet"),
  39635. default: true
  39636. },
  39637. {
  39638. name: "Giant",
  39639. height: math.unit(80, "feet")
  39640. },
  39641. {
  39642. name: "Kaiju",
  39643. height: math.unit(240, "feet")
  39644. },
  39645. {
  39646. name: "Macro",
  39647. height: math.unit(800, "feet")
  39648. },
  39649. {
  39650. name: "Macro+",
  39651. height: math.unit(2400, "feet")
  39652. },
  39653. {
  39654. name: "Macro++",
  39655. height: math.unit(8000, "feet")
  39656. },
  39657. {
  39658. name: "City-Crushing",
  39659. height: math.unit(24000, "feet")
  39660. },
  39661. {
  39662. name: "Mountain-Mashing",
  39663. height: math.unit(80000, "feet")
  39664. },
  39665. {
  39666. name: "District Demolisher",
  39667. height: math.unit(240000, "feet")
  39668. },
  39669. {
  39670. name: "Tri-County Terror",
  39671. height: math.unit(800000, "feet")
  39672. },
  39673. {
  39674. name: "State Smasher",
  39675. height: math.unit(2.4e6, "feet")
  39676. },
  39677. {
  39678. name: "Nation Nemesis",
  39679. height: math.unit(8e6, "feet")
  39680. },
  39681. {
  39682. name: "Continent Cracker",
  39683. height: math.unit(2.4e7, "feet")
  39684. },
  39685. {
  39686. name: "Planet-Pillaging",
  39687. height: math.unit(8e7, "feet")
  39688. },
  39689. {
  39690. name: "Earth-Eclipsing",
  39691. height: math.unit(2.4e8, "feet")
  39692. },
  39693. {
  39694. name: "Jovian-Jostling",
  39695. height: math.unit(8e8, "feet")
  39696. },
  39697. {
  39698. name: "Gas Giant Gulper",
  39699. height: math.unit(2.4e9, "feet")
  39700. },
  39701. {
  39702. name: "Astral Annihilator",
  39703. height: math.unit(8e9, "feet")
  39704. },
  39705. {
  39706. name: "Celestial Conqueror",
  39707. height: math.unit(2.4e10, "feet")
  39708. },
  39709. {
  39710. name: "Sol-Swallowing",
  39711. height: math.unit(8e10, "feet")
  39712. },
  39713. {
  39714. name: "Hunter of the Heavens",
  39715. height: math.unit(2.4e13, "feet")
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(6 + 8/12, "feet"),
  39724. weight: math.unit(250, "kilograms"),
  39725. volume: math.unit(28, "liters"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/rebecca-pawlson/front.svg",
  39729. extra: 1737/1596,
  39730. bottom: 107/1844
  39731. }
  39732. },
  39733. back: {
  39734. height: math.unit(6 + 8/12, "feet"),
  39735. weight: math.unit(250, "kilograms"),
  39736. volume: math.unit(28, "liters"),
  39737. name: "Back",
  39738. image: {
  39739. source: "./media/characters/rebecca-pawlson/back.svg",
  39740. extra: 1702/1523,
  39741. bottom: 86/1788
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Normal",
  39748. height: math.unit(6 + 8/12, "feet")
  39749. },
  39750. {
  39751. name: "Mini Macro",
  39752. height: math.unit(10, "feet"),
  39753. default: true
  39754. },
  39755. {
  39756. name: "Macro",
  39757. height: math.unit(100, "feet")
  39758. },
  39759. {
  39760. name: "Mega Macro",
  39761. height: math.unit(2500, "feet")
  39762. },
  39763. {
  39764. name: "Giga Macro",
  39765. height: math.unit(50, "miles")
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(7 + 6/12, "feet"),
  39774. weight: math.unit(600, "lb"),
  39775. name: "Front",
  39776. image: {
  39777. source: "./media/characters/moxie-nova/front.svg",
  39778. extra: 1734/1652,
  39779. bottom: 41/1775
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(7 + 6/12, "feet"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39793. {
  39794. goat: {
  39795. height: math.unit(4, "feet"),
  39796. weight: math.unit(180, "lb"),
  39797. name: "Goat",
  39798. image: {
  39799. source: "./media/characters/tiffany/goat.svg",
  39800. extra: 1845/1595,
  39801. bottom: 106/1951
  39802. }
  39803. },
  39804. front: {
  39805. height: math.unit(5, "feet"),
  39806. weight: math.unit(150, "lb"),
  39807. name: "Foxcoon",
  39808. image: {
  39809. source: "./media/characters/tiffany/foxcoon.svg",
  39810. extra: 1941/1845,
  39811. bottom: 58/1999
  39812. }
  39813. },
  39814. },
  39815. [
  39816. {
  39817. name: "Normal",
  39818. height: math.unit(5, "feet"),
  39819. default: true
  39820. },
  39821. ]
  39822. ))
  39823. characterMakers.push(() => makeCharacter(
  39824. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39825. {
  39826. front: {
  39827. height: math.unit(8, "feet"),
  39828. weight: math.unit(300, "lb"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/raxinath/front.svg",
  39832. extra: 1407/1309,
  39833. bottom: 39/1446
  39834. }
  39835. },
  39836. back: {
  39837. height: math.unit(8, "feet"),
  39838. weight: math.unit(300, "lb"),
  39839. name: "Back",
  39840. image: {
  39841. source: "./media/characters/raxinath/back.svg",
  39842. extra: 1405/1315,
  39843. bottom: 9/1414
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Speck",
  39850. height: math.unit(0.5, "nm")
  39851. },
  39852. {
  39853. name: "Micro",
  39854. height: math.unit(3, "inches")
  39855. },
  39856. {
  39857. name: "Kobold",
  39858. height: math.unit(3, "feet")
  39859. },
  39860. {
  39861. name: "Normal",
  39862. height: math.unit(8, "feet"),
  39863. default: true
  39864. },
  39865. {
  39866. name: "Giant",
  39867. height: math.unit(50, "feet")
  39868. },
  39869. {
  39870. name: "Macro",
  39871. height: math.unit(1000, "feet")
  39872. },
  39873. {
  39874. name: "Megamacro",
  39875. height: math.unit(1, "mile")
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(10, "feet"),
  39884. weight: math.unit(1442, "lb"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/mal-dragon/front.svg",
  39888. extra: 1515/1444,
  39889. bottom: 113/1628
  39890. }
  39891. },
  39892. back: {
  39893. height: math.unit(10, "feet"),
  39894. weight: math.unit(1442, "lb"),
  39895. name: "Back",
  39896. image: {
  39897. source: "./media/characters/mal-dragon/back.svg",
  39898. extra: 1527/1434,
  39899. bottom: 25/1552
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Mortal Interaction",
  39906. height: math.unit(10, "feet"),
  39907. default: true
  39908. },
  39909. {
  39910. name: "Large",
  39911. height: math.unit(30, "feet")
  39912. },
  39913. {
  39914. name: "Kaiju",
  39915. height: math.unit(300, "feet")
  39916. },
  39917. {
  39918. name: "Megamacro",
  39919. height: math.unit(10000, "feet")
  39920. },
  39921. {
  39922. name: "Continent Cracker",
  39923. height: math.unit(30000000, "feet")
  39924. },
  39925. {
  39926. name: "Sol-Swallowing",
  39927. height: math.unit(1e11, "feet")
  39928. },
  39929. {
  39930. name: "Light Universal",
  39931. height: math.unit(5, "universes")
  39932. },
  39933. {
  39934. name: "Universe Atoms",
  39935. height: math.unit(1.829e9, "universes")
  39936. },
  39937. {
  39938. name: "Light Multiversal",
  39939. height: math.unit(5, "multiverses")
  39940. },
  39941. {
  39942. name: "Multiverse Atoms",
  39943. height: math.unit(1.829e9, "multiverses")
  39944. },
  39945. {
  39946. name: "Fabric of Time",
  39947. height: math.unit(1e262, "multiverses")
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39953. {
  39954. front: {
  39955. height: math.unit(9, "feet"),
  39956. weight: math.unit(1050, "lb"),
  39957. name: "Front",
  39958. image: {
  39959. source: "./media/characters/tabitha/front.svg",
  39960. extra: 2083/1994,
  39961. bottom: 68/2151
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Baseline",
  39968. height: math.unit(9, "feet"),
  39969. default: true
  39970. },
  39971. {
  39972. name: "Giant",
  39973. height: math.unit(90, "feet")
  39974. },
  39975. {
  39976. name: "Macro",
  39977. height: math.unit(900, "feet")
  39978. },
  39979. {
  39980. name: "Megamacro",
  39981. height: math.unit(9000, "feet")
  39982. },
  39983. {
  39984. name: "City-Crushing",
  39985. height: math.unit(27000, "feet")
  39986. },
  39987. {
  39988. name: "Mountain-Mashing",
  39989. height: math.unit(90000, "feet")
  39990. },
  39991. {
  39992. name: "Nation Nemesis",
  39993. height: math.unit(9e6, "feet")
  39994. },
  39995. {
  39996. name: "Continent Cracker",
  39997. height: math.unit(27e6, "feet")
  39998. },
  39999. {
  40000. name: "Earth-Eclipsing",
  40001. height: math.unit(2.7e8, "feet")
  40002. },
  40003. {
  40004. name: "Gas Giant Gulper",
  40005. height: math.unit(2.7e9, "feet")
  40006. },
  40007. {
  40008. name: "Sol-Swallowing",
  40009. height: math.unit(9e10, "feet")
  40010. },
  40011. {
  40012. name: "Galaxy Gulper",
  40013. height: math.unit(9, "galaxies")
  40014. },
  40015. {
  40016. name: "Cosmos Churner",
  40017. height: math.unit(9, "universes")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(160, "cm"),
  40026. weight: math.unit(55, "kg"),
  40027. name: "Front",
  40028. image: {
  40029. source: "./media/characters/tow/front.svg",
  40030. extra: 1751/1722,
  40031. bottom: 74/1825
  40032. }
  40033. },
  40034. },
  40035. [
  40036. {
  40037. name: "Norm",
  40038. height: math.unit(160, "cm")
  40039. },
  40040. {
  40041. name: "Casual",
  40042. height: math.unit(3200, "m"),
  40043. default: true
  40044. },
  40045. {
  40046. name: "Show-Off",
  40047. height: math.unit(160, "km")
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40053. {
  40054. front: {
  40055. height: math.unit(7 + 11/12, "feet"),
  40056. weight: math.unit(342.8, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/vivian-orca-dragon/front.svg",
  40060. extra: 1890/1865,
  40061. bottom: 28/1918
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Micro",
  40068. height: math.unit(5, "inches")
  40069. },
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(7 + 11/12, "feet"),
  40073. default: true
  40074. },
  40075. {
  40076. name: "Macro",
  40077. height: math.unit(395 + 7/12, "feet")
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40083. {
  40084. side: {
  40085. height: math.unit(10, "feet"),
  40086. weight: math.unit(1442, "lb"),
  40087. name: "Side",
  40088. image: {
  40089. source: "./media/characters/lotherakon/side.svg",
  40090. extra: 1604/1497,
  40091. bottom: 89/1693
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Mortal Interaction",
  40098. height: math.unit(10, "feet")
  40099. },
  40100. {
  40101. name: "Large",
  40102. height: math.unit(30, "feet"),
  40103. default: true
  40104. },
  40105. {
  40106. name: "Giant",
  40107. height: math.unit(100, "feet")
  40108. },
  40109. {
  40110. name: "Kaiju",
  40111. height: math.unit(300, "feet")
  40112. },
  40113. {
  40114. name: "Macro",
  40115. height: math.unit(1000, "feet")
  40116. },
  40117. {
  40118. name: "Macro+",
  40119. height: math.unit(3000, "feet")
  40120. },
  40121. {
  40122. name: "Megamacro",
  40123. height: math.unit(10000, "feet")
  40124. },
  40125. {
  40126. name: "City-Crushing",
  40127. height: math.unit(30000, "feet")
  40128. },
  40129. {
  40130. name: "Continent Cracker",
  40131. height: math.unit(30e6, "feet")
  40132. },
  40133. {
  40134. name: "Earth Eclipsing",
  40135. height: math.unit(3e8, "feet")
  40136. },
  40137. {
  40138. name: "Gas Giant Gulper",
  40139. height: math.unit(3e9, "feet")
  40140. },
  40141. {
  40142. name: "Sol-Swallowing",
  40143. height: math.unit(1e11, "feet")
  40144. },
  40145. {
  40146. name: "System Swallower",
  40147. height: math.unit(3e14, "feet")
  40148. },
  40149. {
  40150. name: "Galaxy Gulper",
  40151. height: math.unit(10, "galaxies")
  40152. },
  40153. {
  40154. name: "Light Universal",
  40155. height: math.unit(5, "universes")
  40156. },
  40157. {
  40158. name: "Universe Palm",
  40159. height: math.unit(20, "universes")
  40160. },
  40161. {
  40162. name: "Light Multiversal",
  40163. height: math.unit(5, "multiverses")
  40164. },
  40165. {
  40166. name: "Multiverse Palm",
  40167. height: math.unit(20, "multiverses")
  40168. },
  40169. {
  40170. name: "Inferno Incarnate",
  40171. height: math.unit(1e7, "multiverses")
  40172. },
  40173. ]
  40174. ))
  40175. characterMakers.push(() => makeCharacter(
  40176. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40177. {
  40178. front: {
  40179. height: math.unit(8, "feet"),
  40180. weight: math.unit(1200, "lb"),
  40181. name: "Front",
  40182. image: {
  40183. source: "./media/characters/malithee/front.svg",
  40184. extra: 1675/1640,
  40185. bottom: 162/1837
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Mortal Interaction",
  40192. height: math.unit(8, "feet"),
  40193. default: true
  40194. },
  40195. {
  40196. name: "Large",
  40197. height: math.unit(24, "feet")
  40198. },
  40199. {
  40200. name: "Kaiju",
  40201. height: math.unit(240, "feet")
  40202. },
  40203. {
  40204. name: "Megamacro",
  40205. height: math.unit(8000, "feet")
  40206. },
  40207. {
  40208. name: "Continent Cracker",
  40209. height: math.unit(24e6, "feet")
  40210. },
  40211. {
  40212. name: "Earth-Eclipsing",
  40213. height: math.unit(2.4e8, "feet")
  40214. },
  40215. {
  40216. name: "Sol-Swallowing",
  40217. height: math.unit(8e10, "feet")
  40218. },
  40219. {
  40220. name: "Galaxy Gulper",
  40221. height: math.unit(8, "galaxies")
  40222. },
  40223. {
  40224. name: "Light Universal",
  40225. height: math.unit(4, "universes")
  40226. },
  40227. {
  40228. name: "Universe Atoms",
  40229. height: math.unit(1.829e9, "universes")
  40230. },
  40231. {
  40232. name: "Light Multiversal",
  40233. height: math.unit(4, "multiverses")
  40234. },
  40235. {
  40236. name: "Multiverse Atoms",
  40237. height: math.unit(1.829e9, "multiverses")
  40238. },
  40239. {
  40240. name: "Nigh-Omnipresence",
  40241. height: math.unit(8e261, "multiverses")
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(10, "feet"),
  40250. weight: math.unit(1500, "lb"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/miles-thestia/front.svg",
  40254. extra: 1812/1727,
  40255. bottom: 86/1898
  40256. }
  40257. },
  40258. back: {
  40259. height: math.unit(10, "feet"),
  40260. weight: math.unit(1500, "lb"),
  40261. name: "Back",
  40262. image: {
  40263. source: "./media/characters/miles-thestia/back.svg",
  40264. extra: 1799/1690,
  40265. bottom: 47/1846
  40266. }
  40267. },
  40268. frontNsfw: {
  40269. height: math.unit(10, "feet"),
  40270. weight: math.unit(1500, "lb"),
  40271. name: "Front (NSFW)",
  40272. image: {
  40273. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40274. extra: 1812/1727,
  40275. bottom: 86/1898
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Mini-Macro",
  40282. height: math.unit(10, "feet"),
  40283. default: true
  40284. },
  40285. ]
  40286. ))
  40287. characterMakers.push(() => makeCharacter(
  40288. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40289. {
  40290. front: {
  40291. height: math.unit(25, "feet"),
  40292. name: "Front",
  40293. image: {
  40294. source: "./media/characters/titan-s-wulf/front.svg",
  40295. extra: 1560/1484,
  40296. bottom: 76/1636
  40297. }
  40298. },
  40299. },
  40300. [
  40301. {
  40302. name: "Smallest",
  40303. height: math.unit(25, "feet"),
  40304. default: true
  40305. },
  40306. {
  40307. name: "Normal",
  40308. height: math.unit(200, "feet")
  40309. },
  40310. {
  40311. name: "Macro",
  40312. height: math.unit(200000, "feet")
  40313. },
  40314. {
  40315. name: "Multiversal Original",
  40316. height: math.unit(10000, "multiverses")
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(8, "feet"),
  40325. weight: math.unit(553, "lb"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/tawendeh/front.svg",
  40329. extra: 2365/2268,
  40330. bottom: 83/2448
  40331. }
  40332. },
  40333. frontClothed: {
  40334. height: math.unit(8, "feet"),
  40335. weight: math.unit(553, "lb"),
  40336. name: "Front (Clothed)",
  40337. image: {
  40338. source: "./media/characters/tawendeh/front-clothed.svg",
  40339. extra: 2365/2268,
  40340. bottom: 83/2448
  40341. }
  40342. },
  40343. back: {
  40344. height: math.unit(8, "feet"),
  40345. weight: math.unit(553, "lb"),
  40346. name: "Back",
  40347. image: {
  40348. source: "./media/characters/tawendeh/back.svg",
  40349. extra: 2397/2294,
  40350. bottom: 42/2439
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Mortal Interaction",
  40357. height: math.unit(8, "feet"),
  40358. default: true
  40359. },
  40360. {
  40361. name: "Giant",
  40362. height: math.unit(80, "feet")
  40363. },
  40364. {
  40365. name: "Macro",
  40366. height: math.unit(800, "feet")
  40367. },
  40368. {
  40369. name: "Megamacro",
  40370. height: math.unit(8000, "feet")
  40371. },
  40372. {
  40373. name: "City-Crushing",
  40374. height: math.unit(24000, "feet")
  40375. },
  40376. {
  40377. name: "Mountain-Mashing",
  40378. height: math.unit(80000, "feet")
  40379. },
  40380. {
  40381. name: "Nation Nemesis",
  40382. height: math.unit(8e6, "feet")
  40383. },
  40384. {
  40385. name: "Continent Cracker",
  40386. height: math.unit(24e6, "feet")
  40387. },
  40388. {
  40389. name: "Earth-Eclipsing",
  40390. height: math.unit(2.4e8, "feet")
  40391. },
  40392. {
  40393. name: "Gas Giant Gulper",
  40394. height: math.unit(2.4e9, "feet")
  40395. },
  40396. {
  40397. name: "Sol-Swallowing",
  40398. height: math.unit(8e10, "feet")
  40399. },
  40400. {
  40401. name: "Galaxy Gulper",
  40402. height: math.unit(8, "galaxies")
  40403. },
  40404. {
  40405. name: "Cosmos Churner",
  40406. height: math.unit(8, "universes")
  40407. },
  40408. {
  40409. name: "Omnipotent Otter",
  40410. height: math.unit(80, "universes")
  40411. },
  40412. ]
  40413. ))
  40414. characterMakers.push(() => makeCharacter(
  40415. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40416. {
  40417. front: {
  40418. height: math.unit(2.6, "meters"),
  40419. weight: math.unit(900, "kg"),
  40420. name: "Front",
  40421. image: {
  40422. source: "./media/characters/neesha/front.svg",
  40423. extra: 1803/1653,
  40424. bottom: 128/1931
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(2.6, "meters"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Macro",
  40436. height: math.unit(50, "meters")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(5, "feet"),
  40445. weight: math.unit(185, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/kyera/front.svg",
  40449. extra: 1875/1790,
  40450. bottom: 96/1971
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(5, "feet"),
  40458. default: true
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(7 + 6/12, "feet"),
  40467. weight: math.unit(540, "lb"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/yuko/front.svg",
  40471. extra: 1282/1222,
  40472. bottom: 101/1383
  40473. }
  40474. },
  40475. frontClothed: {
  40476. height: math.unit(7 + 6/12, "feet"),
  40477. weight: math.unit(540, "lb"),
  40478. name: "Front (Clothed)",
  40479. image: {
  40480. source: "./media/characters/yuko/front-clothed.svg",
  40481. extra: 1282/1222,
  40482. bottom: 101/1383
  40483. }
  40484. },
  40485. },
  40486. [
  40487. {
  40488. name: "Normal",
  40489. height: math.unit(7 + 6/12, "feet"),
  40490. default: true
  40491. },
  40492. {
  40493. name: "Macro",
  40494. height: math.unit(26 + 9/12, "feet")
  40495. },
  40496. {
  40497. name: "Megamacro",
  40498. height: math.unit(300, "feet")
  40499. },
  40500. {
  40501. name: "Gigamacro",
  40502. height: math.unit(5000, "feet")
  40503. },
  40504. {
  40505. name: "Planetary",
  40506. height: math.unit(10000, "miles")
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40512. {
  40513. front: {
  40514. height: math.unit(8 + 2/12, "feet"),
  40515. weight: math.unit(600, "lb"),
  40516. name: "Front",
  40517. image: {
  40518. source: "./media/characters/deam-nitrel/front.svg",
  40519. extra: 1308/1234,
  40520. bottom: 125/1433
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Normal",
  40527. height: math.unit(8 + 2/12, "feet"),
  40528. default: true
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40534. {
  40535. front: {
  40536. height: math.unit(6.1, "feet"),
  40537. weight: math.unit(180, "lb"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/skyress/front.svg",
  40541. extra: 1045/915,
  40542. bottom: 28/1073
  40543. }
  40544. },
  40545. maw: {
  40546. height: math.unit(1, "feet"),
  40547. name: "Maw",
  40548. image: {
  40549. source: "./media/characters/skyress/maw.svg"
  40550. }
  40551. },
  40552. },
  40553. [
  40554. {
  40555. name: "Normal",
  40556. height: math.unit(6.1, "feet"),
  40557. default: true
  40558. },
  40559. {
  40560. name: "Macro",
  40561. height: math.unit(200, "feet")
  40562. },
  40563. ]
  40564. ))
  40565. characterMakers.push(() => makeCharacter(
  40566. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40567. {
  40568. front: {
  40569. height: math.unit(4 + 2/12, "feet"),
  40570. weight: math.unit(40, "kg"),
  40571. name: "Front",
  40572. image: {
  40573. source: "./media/characters/amethyst-jones/front.svg",
  40574. extra: 1220/1150,
  40575. bottom: 101/1321
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Normal",
  40582. height: math.unit(4 + 2/12, "feet"),
  40583. default: true
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(1.7, "m"),
  40592. weight: math.unit(135, "lb"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/jade/front.svg",
  40596. extra: 1818/1767,
  40597. bottom: 32/1850
  40598. }
  40599. },
  40600. back: {
  40601. height: math.unit(1.7, "m"),
  40602. weight: math.unit(135, "lb"),
  40603. name: "Back",
  40604. image: {
  40605. source: "./media/characters/jade/back.svg",
  40606. extra: 1869/1809,
  40607. bottom: 35/1904
  40608. }
  40609. },
  40610. hand: {
  40611. height: math.unit(0.24, "m"),
  40612. name: "Hand",
  40613. image: {
  40614. source: "./media/characters/jade/hand.svg"
  40615. }
  40616. },
  40617. foot: {
  40618. height: math.unit(0.263, "m"),
  40619. name: "Foot",
  40620. image: {
  40621. source: "./media/characters/jade/foot.svg"
  40622. }
  40623. },
  40624. dick: {
  40625. height: math.unit(0.47, "m"),
  40626. name: "Dick",
  40627. image: {
  40628. source: "./media/characters/jade/dick.svg"
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Micro",
  40635. height: math.unit(22, "cm")
  40636. },
  40637. {
  40638. name: "Normal",
  40639. height: math.unit(1.7, "m"),
  40640. default: true
  40641. },
  40642. {
  40643. name: "Macro",
  40644. height: math.unit(152, "m")
  40645. },
  40646. ]
  40647. ))
  40648. characterMakers.push(() => makeCharacter(
  40649. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40650. {
  40651. front: {
  40652. height: math.unit(100, "miles"),
  40653. weight: math.unit(20000, "tons"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/cookie/front.svg",
  40657. extra: 1125/1070,
  40658. bottom: 30/1155
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Big",
  40665. height: math.unit(50, "feet")
  40666. },
  40667. {
  40668. name: "Macro",
  40669. height: math.unit(100, "miles"),
  40670. default: true
  40671. },
  40672. {
  40673. name: "Megamacro",
  40674. height: math.unit(90000, "miles")
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40680. {
  40681. front: {
  40682. height: math.unit(6, "feet"),
  40683. weight: math.unit(145, "lb"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/farzian/front.svg",
  40687. extra: 1902/1693,
  40688. bottom: 108/2010
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(500, "feet"),
  40696. default: true
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(3 + 6/12, "feet"),
  40705. weight: math.unit(50, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/kimberly-tilson/front.svg",
  40709. extra: 1400/1322,
  40710. bottom: 36/1436
  40711. }
  40712. },
  40713. back: {
  40714. height: math.unit(3 + 6/12, "feet"),
  40715. weight: math.unit(50, "lb"),
  40716. name: "Back",
  40717. image: {
  40718. source: "./media/characters/kimberly-tilson/back.svg",
  40719. extra: 1370/1307,
  40720. bottom: 20/1390
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Normal",
  40727. height: math.unit(3 + 6/12, "feet"),
  40728. default: true
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(1148, "feet"),
  40737. weight: math.unit(34057, "lb"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/harthos/front.svg",
  40741. extra: 1391/1339,
  40742. bottom: 13/1404
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(1148, "feet"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(15, "feet"),
  40759. name: "Front",
  40760. image: {
  40761. source: "./media/characters/hypatia/front.svg",
  40762. extra: 1653/1591,
  40763. bottom: 79/1732
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Normal",
  40770. height: math.unit(15, "feet")
  40771. },
  40772. {
  40773. name: "Small",
  40774. height: math.unit(300, "feet")
  40775. },
  40776. {
  40777. name: "Macro",
  40778. height: math.unit(2500, "feet"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "Mega Macro",
  40783. height: math.unit(1500, "miles")
  40784. },
  40785. {
  40786. name: "Giga Macro",
  40787. height: math.unit(1.5e6, "miles")
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40793. {
  40794. front: {
  40795. height: math.unit(6, "feet"),
  40796. weight: math.unit(200, "lb"),
  40797. name: "Front",
  40798. image: {
  40799. source: "./media/characters/wulver/front.svg",
  40800. extra: 1724/1632,
  40801. bottom: 130/1854
  40802. }
  40803. },
  40804. frontNsfw: {
  40805. height: math.unit(6, "feet"),
  40806. weight: math.unit(200, "lb"),
  40807. name: "Front (NSFW)",
  40808. image: {
  40809. source: "./media/characters/wulver/front-nsfw.svg",
  40810. extra: 1724/1632,
  40811. bottom: 130/1854
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Human-Sized",
  40818. height: math.unit(6, "feet")
  40819. },
  40820. {
  40821. name: "Normal",
  40822. height: math.unit(4, "meters"),
  40823. default: true
  40824. },
  40825. {
  40826. name: "Large",
  40827. height: math.unit(6, "m")
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(7, "feet"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/maru/front.svg",
  40839. extra: 1595/1570,
  40840. bottom: 0/1595
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Normal",
  40847. height: math.unit(7, "feet"),
  40848. default: true
  40849. },
  40850. {
  40851. name: "Macro",
  40852. height: math.unit(700, "feet")
  40853. },
  40854. {
  40855. name: "Mega Macro",
  40856. height: math.unit(25, "miles")
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(6, "feet"),
  40865. weight: math.unit(170, "lb"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/xenon/front.svg",
  40869. extra: 1376/1305,
  40870. bottom: 56/1432
  40871. }
  40872. },
  40873. back: {
  40874. height: math.unit(6, "feet"),
  40875. weight: math.unit(170, "lb"),
  40876. name: "Back",
  40877. image: {
  40878. source: "./media/characters/xenon/back.svg",
  40879. extra: 1328/1259,
  40880. bottom: 95/1423
  40881. }
  40882. },
  40883. maw: {
  40884. height: math.unit(0.52, "feet"),
  40885. name: "Maw",
  40886. image: {
  40887. source: "./media/characters/xenon/maw.svg"
  40888. }
  40889. },
  40890. hand: {
  40891. height: math.unit(0.82, "feet"),
  40892. name: "Hand",
  40893. image: {
  40894. source: "./media/characters/xenon/hand.svg"
  40895. }
  40896. },
  40897. foot: {
  40898. height: math.unit(1.13, "feet"),
  40899. name: "Foot",
  40900. image: {
  40901. source: "./media/characters/xenon/foot.svg"
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Micro",
  40908. height: math.unit(0.8, "inches")
  40909. },
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(6, "feet")
  40913. },
  40914. {
  40915. name: "Macro",
  40916. height: math.unit(50, "feet"),
  40917. default: true
  40918. },
  40919. {
  40920. name: "Macro+",
  40921. height: math.unit(250, "feet")
  40922. },
  40923. {
  40924. name: "Megamacro",
  40925. height: math.unit(1500, "feet")
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(7 + 5/12, "feet"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/zane/front.svg",
  40937. extra: 1260/1203,
  40938. bottom: 94/1354
  40939. }
  40940. },
  40941. back: {
  40942. height: math.unit(5.05, "feet"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/zane/back.svg",
  40946. extra: 893/829,
  40947. bottom: 30/923
  40948. }
  40949. },
  40950. werewolf: {
  40951. height: math.unit(11, "feet"),
  40952. name: "Werewolf",
  40953. image: {
  40954. source: "./media/characters/zane/werewolf.svg",
  40955. extra: 1383/1323,
  40956. bottom: 89/1472
  40957. }
  40958. },
  40959. foot: {
  40960. height: math.unit(1.46, "feet"),
  40961. name: "Foot",
  40962. image: {
  40963. source: "./media/characters/zane/foot.svg"
  40964. }
  40965. },
  40966. footFront: {
  40967. height: math.unit(0.784, "feet"),
  40968. name: "Foot (Front)",
  40969. image: {
  40970. source: "./media/characters/zane/foot-front.svg"
  40971. }
  40972. },
  40973. dick: {
  40974. height: math.unit(1.95, "feet"),
  40975. name: "Dick",
  40976. image: {
  40977. source: "./media/characters/zane/dick.svg"
  40978. }
  40979. },
  40980. dickWerewolf: {
  40981. height: math.unit(3.77, "feet"),
  40982. name: "Dick (Werewolf)",
  40983. image: {
  40984. source: "./media/characters/zane/dick.svg"
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(7 + 5/12, "feet"),
  40992. default: true
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(6 + 2/12, "feet"),
  41001. weight: math.unit(284, "lb"),
  41002. name: "Front",
  41003. image: {
  41004. source: "./media/characters/benni-desparque/front.svg",
  41005. extra: 1353/1126,
  41006. bottom: 69/1422
  41007. }
  41008. },
  41009. },
  41010. [
  41011. {
  41012. name: "Civilian",
  41013. height: math.unit(6 + 2/12, "feet")
  41014. },
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(98, "feet"),
  41018. default: true
  41019. },
  41020. {
  41021. name: "Kaiju Fighter",
  41022. height: math.unit(268, "feet")
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(5, "feet"),
  41031. weight: math.unit(105, "lb"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/maxine/front.svg",
  41035. extra: 1386/1250,
  41036. bottom: 71/1457
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(5, "feet"),
  41044. default: true
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41050. {
  41051. front: {
  41052. height: math.unit(11 + 7/12, "feet"),
  41053. weight: math.unit(9576, "lb"),
  41054. name: "Front",
  41055. image: {
  41056. source: "./media/characters/scaly/front.svg",
  41057. extra: 888/867,
  41058. bottom: 36/924
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(11 + 7/12, "feet"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41072. {
  41073. front: {
  41074. height: math.unit(6 + 3/12, "feet"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/saelria/front.svg",
  41078. extra: 1243/1138,
  41079. bottom: 46/1289
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Micro",
  41086. height: math.unit(6, "inches"),
  41087. },
  41088. {
  41089. name: "Normal",
  41090. height: math.unit(6 + 3/12, "feet"),
  41091. default: true
  41092. },
  41093. {
  41094. name: "Macro",
  41095. height: math.unit(25, "feet")
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(80, "meters"),
  41104. weight: math.unit(7000, "tonnes"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/tef/front.svg",
  41108. extra: 2036/1991,
  41109. bottom: 54/2090
  41110. }
  41111. },
  41112. back: {
  41113. height: math.unit(80, "meters"),
  41114. weight: math.unit(7000, "tonnes"),
  41115. name: "Back",
  41116. image: {
  41117. source: "./media/characters/tef/back.svg",
  41118. extra: 2036/1991,
  41119. bottom: 54/2090
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(80, "meters"),
  41127. default: true
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41133. {
  41134. front: {
  41135. height: math.unit(13, "feet"),
  41136. weight: math.unit(6, "tons"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/rover/front.svg",
  41140. extra: 1233/1156,
  41141. bottom: 50/1283
  41142. }
  41143. },
  41144. back: {
  41145. height: math.unit(13, "feet"),
  41146. weight: math.unit(6, "tons"),
  41147. name: "Back",
  41148. image: {
  41149. source: "./media/characters/rover/back.svg",
  41150. extra: 1327/1258,
  41151. bottom: 39/1366
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Normal",
  41158. height: math.unit(13, "feet"),
  41159. default: true
  41160. },
  41161. {
  41162. name: "Macro",
  41163. height: math.unit(1300, "feet")
  41164. },
  41165. {
  41166. name: "Megamacro",
  41167. height: math.unit(1300, "miles")
  41168. },
  41169. {
  41170. name: "Gigamacro",
  41171. height: math.unit(1300000, "miles")
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(6, "feet"),
  41180. weight: math.unit(150, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/ariz/front.svg",
  41184. extra: 1401/1346,
  41185. bottom: 5/1406
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(10, "feet"),
  41193. default: true
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(6, "feet"),
  41202. weight: math.unit(140, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/sigrun/front.svg",
  41206. extra: 1418/1359,
  41207. bottom: 27/1445
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Macro",
  41214. height: math.unit(35, "feet"),
  41215. default: true
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(6, "feet"),
  41224. weight: math.unit(150, "lb"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/numin/front.svg",
  41228. extra: 1433/1388,
  41229. bottom: 12/1445
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Macro",
  41236. height: math.unit(21.5, "km"),
  41237. default: true
  41238. },
  41239. ]
  41240. ))
  41241. characterMakers.push(() => makeCharacter(
  41242. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41243. {
  41244. front: {
  41245. height: math.unit(6, "feet"),
  41246. weight: math.unit(463, "lb"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/melwa/front.svg",
  41250. extra: 1307/1248,
  41251. bottom: 93/1400
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Macro",
  41258. height: math.unit(50, "meters"),
  41259. default: true
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41265. {
  41266. front: {
  41267. height: math.unit(325, "feet"),
  41268. name: "Front",
  41269. image: {
  41270. source: "./media/characters/zorkaiju/front.svg",
  41271. extra: 1955/1814,
  41272. bottom: 40/1995
  41273. }
  41274. },
  41275. frontExtended: {
  41276. height: math.unit(325, "feet"),
  41277. name: "Front (Extended)",
  41278. image: {
  41279. source: "./media/characters/zorkaiju/front-extended.svg",
  41280. extra: 1955/1814,
  41281. bottom: 40/1995
  41282. }
  41283. },
  41284. side: {
  41285. height: math.unit(325, "feet"),
  41286. name: "Side",
  41287. image: {
  41288. source: "./media/characters/zorkaiju/side.svg",
  41289. extra: 1495/1396,
  41290. bottom: 17/1512
  41291. }
  41292. },
  41293. sideExtended: {
  41294. height: math.unit(325, "feet"),
  41295. name: "Side (Extended)",
  41296. image: {
  41297. source: "./media/characters/zorkaiju/side-extended.svg",
  41298. extra: 1495/1396,
  41299. bottom: 17/1512
  41300. }
  41301. },
  41302. back: {
  41303. height: math.unit(325, "feet"),
  41304. name: "Back",
  41305. image: {
  41306. source: "./media/characters/zorkaiju/back.svg",
  41307. extra: 1959/1821,
  41308. bottom: 31/1990
  41309. }
  41310. },
  41311. backExtended: {
  41312. height: math.unit(325, "feet"),
  41313. name: "Back (Extended)",
  41314. image: {
  41315. source: "./media/characters/zorkaiju/back-extended.svg",
  41316. extra: 1959/1821,
  41317. bottom: 31/1990
  41318. }
  41319. },
  41320. hand: {
  41321. height: math.unit(58.4, "feet"),
  41322. name: "Hand",
  41323. image: {
  41324. source: "./media/characters/zorkaiju/hand.svg"
  41325. }
  41326. },
  41327. handExtended: {
  41328. height: math.unit(61.4, "feet"),
  41329. name: "Hand (Extended)",
  41330. image: {
  41331. source: "./media/characters/zorkaiju/hand-extended.svg"
  41332. }
  41333. },
  41334. foot: {
  41335. height: math.unit(95, "feet"),
  41336. name: "Foot",
  41337. image: {
  41338. source: "./media/characters/zorkaiju/foot.svg"
  41339. }
  41340. },
  41341. leftArm: {
  41342. height: math.unit(59, "feet"),
  41343. name: "Left Arm",
  41344. image: {
  41345. source: "./media/characters/zorkaiju/left-arm.svg"
  41346. }
  41347. },
  41348. rightArm: {
  41349. height: math.unit(59, "feet"),
  41350. name: "Right Arm",
  41351. image: {
  41352. source: "./media/characters/zorkaiju/right-arm.svg"
  41353. }
  41354. },
  41355. tail: {
  41356. height: math.unit(104, "feet"),
  41357. name: "Tail",
  41358. image: {
  41359. source: "./media/characters/zorkaiju/tail.svg"
  41360. }
  41361. },
  41362. tailExtended: {
  41363. height: math.unit(104, "feet"),
  41364. name: "Tail (Extended)",
  41365. image: {
  41366. source: "./media/characters/zorkaiju/tail-extended.svg"
  41367. }
  41368. },
  41369. tailBottom: {
  41370. height: math.unit(104, "feet"),
  41371. name: "Tail Bottom",
  41372. image: {
  41373. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41374. }
  41375. },
  41376. crystal: {
  41377. height: math.unit(27.54, "feet"),
  41378. name: "Crystal",
  41379. image: {
  41380. source: "./media/characters/zorkaiju/crystal.svg"
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Kaiju",
  41387. height: math.unit(325, "feet"),
  41388. default: true
  41389. },
  41390. ]
  41391. ))
  41392. characterMakers.push(() => makeCharacter(
  41393. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41394. {
  41395. front: {
  41396. height: math.unit(6 + 1/12, "feet"),
  41397. weight: math.unit(115, "lb"),
  41398. name: "Front",
  41399. image: {
  41400. source: "./media/characters/bailey-belfry/front.svg",
  41401. extra: 1240/1121,
  41402. bottom: 101/1341
  41403. }
  41404. },
  41405. },
  41406. [
  41407. {
  41408. name: "Normal",
  41409. height: math.unit(6 + 1/12, "feet"),
  41410. default: true
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41416. {
  41417. side: {
  41418. height: math.unit(4, "meters"),
  41419. weight: math.unit(250, "kg"),
  41420. name: "Side",
  41421. image: {
  41422. source: "./media/characters/blacky/side.svg",
  41423. extra: 1027/919,
  41424. bottom: 43/1070
  41425. }
  41426. },
  41427. maw: {
  41428. height: math.unit(1, "meters"),
  41429. name: "Maw",
  41430. image: {
  41431. source: "./media/characters/blacky/maw.svg"
  41432. }
  41433. },
  41434. paw: {
  41435. height: math.unit(1, "meters"),
  41436. name: "Paw",
  41437. image: {
  41438. source: "./media/characters/blacky/paw.svg"
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Normal",
  41445. height: math.unit(4, "meters"),
  41446. default: true
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41452. {
  41453. front: {
  41454. height: math.unit(170, "cm"),
  41455. weight: math.unit(66, "kg"),
  41456. name: "Front",
  41457. image: {
  41458. source: "./media/characters/thux-ei/front.svg",
  41459. extra: 1109/1011,
  41460. bottom: 8/1117
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(170, "cm"),
  41468. default: true
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41474. {
  41475. front: {
  41476. height: math.unit(5, "feet"),
  41477. weight: math.unit(120, "lb"),
  41478. name: "Front",
  41479. image: {
  41480. source: "./media/characters/roxanne-voltaire/front.svg",
  41481. extra: 1901/1779,
  41482. bottom: 53/1954
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(5, "feet"),
  41490. default: true
  41491. },
  41492. {
  41493. name: "Giant",
  41494. height: math.unit(50, "feet")
  41495. },
  41496. {
  41497. name: "Titan",
  41498. height: math.unit(500, "feet")
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(5000, "feet")
  41503. },
  41504. {
  41505. name: "Megamacro",
  41506. height: math.unit(50000, "feet")
  41507. },
  41508. {
  41509. name: "Gigamacro",
  41510. height: math.unit(500000, "feet")
  41511. },
  41512. {
  41513. name: "Teramacro",
  41514. height: math.unit(5e6, "feet")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(6 + 2/12, "feet"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/squeaks/front.svg",
  41526. extra: 1823/1768,
  41527. bottom: 138/1961
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Micro",
  41534. height: math.unit(0.5, "inches")
  41535. },
  41536. {
  41537. name: "Normal",
  41538. height: math.unit(6 + 2/12, "feet"),
  41539. default: true
  41540. },
  41541. {
  41542. name: "Macro",
  41543. height: math.unit(600, "feet")
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(1.72, "meters"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/archinger/front.svg",
  41555. extra: 1861/1675,
  41556. bottom: 125/1986
  41557. }
  41558. },
  41559. back: {
  41560. height: math.unit(1.72, "meters"),
  41561. name: "Back",
  41562. image: {
  41563. source: "./media/characters/archinger/back.svg",
  41564. extra: 1844/1701,
  41565. bottom: 104/1948
  41566. }
  41567. },
  41568. cock: {
  41569. height: math.unit(0.59, "feet"),
  41570. name: "Cock",
  41571. image: {
  41572. source: "./media/characters/archinger/cock.svg"
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(1.72, "meters"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Macro",
  41584. height: math.unit(84, "meters")
  41585. },
  41586. {
  41587. name: "Macro+",
  41588. height: math.unit(112, "meters")
  41589. },
  41590. {
  41591. name: "Macro++",
  41592. height: math.unit(960, "meters")
  41593. },
  41594. {
  41595. name: "Macro+++",
  41596. height: math.unit(4, "km")
  41597. },
  41598. {
  41599. name: "Macro++++",
  41600. height: math.unit(48, "km")
  41601. },
  41602. {
  41603. name: "Macro+++++",
  41604. height: math.unit(4500, "km")
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(5 + 5/12, "feet"),
  41613. name: "Front",
  41614. image: {
  41615. source: "./media/characters/alsnapz/front.svg",
  41616. extra: 1157/1065,
  41617. bottom: 42/1199
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(5 + 5/12, "feet"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41631. {
  41632. side: {
  41633. height: math.unit(3.2, "earths"),
  41634. name: "Side",
  41635. image: {
  41636. source: "./media/characters/mag/side.svg",
  41637. extra: 1331/1008,
  41638. bottom: 52/1383
  41639. }
  41640. },
  41641. wing: {
  41642. height: math.unit(1.94, "earths"),
  41643. name: "Wing",
  41644. image: {
  41645. source: "./media/characters/mag/wing.svg"
  41646. }
  41647. },
  41648. dick: {
  41649. height: math.unit(1.8, "earths"),
  41650. name: "Dick",
  41651. image: {
  41652. source: "./media/characters/mag/dick.svg"
  41653. }
  41654. },
  41655. ass: {
  41656. height: math.unit(1.33, "earths"),
  41657. name: "Ass",
  41658. image: {
  41659. source: "./media/characters/mag/ass.svg"
  41660. }
  41661. },
  41662. head: {
  41663. height: math.unit(1.1, "earths"),
  41664. name: "Head",
  41665. image: {
  41666. source: "./media/characters/mag/head.svg"
  41667. }
  41668. },
  41669. maw: {
  41670. height: math.unit(1.62, "earths"),
  41671. name: "Maw",
  41672. image: {
  41673. source: "./media/characters/mag/maw.svg"
  41674. }
  41675. },
  41676. },
  41677. [
  41678. {
  41679. name: "Small",
  41680. height: math.unit(162, "feet")
  41681. },
  41682. {
  41683. name: "Normal",
  41684. height: math.unit(3.2, "earths"),
  41685. default: true
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(512, "feet"),
  41694. weight: math.unit(63509, "tonnes"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/vorrel-harroc/front.svg",
  41698. extra: 1075/1063,
  41699. bottom: 62/1137
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Normal",
  41706. height: math.unit(10, "feet")
  41707. },
  41708. {
  41709. name: "Macro",
  41710. height: math.unit(512, "feet"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Megamacro",
  41715. height: math.unit(256, "miles")
  41716. },
  41717. {
  41718. name: "Gigamacro",
  41719. height: math.unit(4096, "miles")
  41720. },
  41721. ]
  41722. ))
  41723. characterMakers.push(() => makeCharacter(
  41724. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41725. {
  41726. side: {
  41727. height: math.unit(50, "feet"),
  41728. name: "Side",
  41729. image: {
  41730. source: "./media/characters/froimar/side.svg",
  41731. extra: 855/638,
  41732. bottom: 99/954
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Macro",
  41739. height: math.unit(50, "feet"),
  41740. default: true
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41746. {
  41747. front: {
  41748. height: math.unit(210, "miles"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/timothy/front.svg",
  41752. extra: 1007/943,
  41753. bottom: 62/1069
  41754. }
  41755. },
  41756. frontSkirt: {
  41757. height: math.unit(210, "miles"),
  41758. name: "Front (Skirt)",
  41759. image: {
  41760. source: "./media/characters/timothy/front-skirt.svg",
  41761. extra: 1007/943,
  41762. bottom: 62/1069
  41763. }
  41764. },
  41765. frontCoat: {
  41766. height: math.unit(210, "miles"),
  41767. name: "Front (Coat)",
  41768. image: {
  41769. source: "./media/characters/timothy/front-coat.svg",
  41770. extra: 1007/943,
  41771. bottom: 62/1069
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Macro",
  41778. height: math.unit(210, "miles"),
  41779. default: true
  41780. },
  41781. {
  41782. name: "Megamacro",
  41783. height: math.unit(210000, "miles")
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(188, "feet"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/pyotr/front.svg",
  41795. extra: 1912/1826,
  41796. bottom: 18/1930
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Macro",
  41803. height: math.unit(188, "feet"),
  41804. default: true
  41805. },
  41806. {
  41807. name: "Megamacro",
  41808. height: math.unit(8, "miles")
  41809. },
  41810. ]
  41811. ))
  41812. characterMakers.push(() => makeCharacter(
  41813. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41814. {
  41815. side: {
  41816. height: math.unit(10, "feet"),
  41817. weight: math.unit(4500, "lb"),
  41818. name: "Side",
  41819. image: {
  41820. source: "./media/characters/ackart/side.svg",
  41821. extra: 1776/1668,
  41822. bottom: 116/1892
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(10, "feet"),
  41830. default: true
  41831. },
  41832. ]
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41836. {
  41837. side: {
  41838. height: math.unit(21, "feet"),
  41839. name: "Side",
  41840. image: {
  41841. source: "./media/characters/nolow/side.svg",
  41842. extra: 1484/1434,
  41843. bottom: 85/1569
  41844. }
  41845. },
  41846. sideErect: {
  41847. height: math.unit(21, "feet"),
  41848. name: "Side-erect",
  41849. image: {
  41850. source: "./media/characters/nolow/side-erect.svg",
  41851. extra: 1484/1434,
  41852. bottom: 85/1569
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Regular",
  41859. height: math.unit(12, "feet")
  41860. },
  41861. {
  41862. name: "Big Chee",
  41863. height: math.unit(21, "feet"),
  41864. default: true
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(7, "feet"),
  41873. weight: math.unit(250, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/nines/front.svg",
  41877. extra: 1741/1607,
  41878. bottom: 41/1782
  41879. }
  41880. },
  41881. side: {
  41882. height: math.unit(7, "feet"),
  41883. weight: math.unit(250, "lb"),
  41884. name: "Side",
  41885. image: {
  41886. source: "./media/characters/nines/side.svg",
  41887. extra: 1854/1735,
  41888. bottom: 93/1947
  41889. }
  41890. },
  41891. back: {
  41892. height: math.unit(7, "feet"),
  41893. weight: math.unit(250, "lb"),
  41894. name: "Back",
  41895. image: {
  41896. source: "./media/characters/nines/back.svg",
  41897. extra: 1748/1615,
  41898. bottom: 20/1768
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Megamacro",
  41905. height: math.unit(99, "km"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(5 + 10/12, "feet"),
  41915. weight: math.unit(210, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/zenith/front.svg",
  41919. extra: 1531/1452,
  41920. bottom: 198/1729
  41921. }
  41922. },
  41923. back: {
  41924. height: math.unit(5 + 10/12, "feet"),
  41925. weight: math.unit(210, "lb"),
  41926. name: "Back",
  41927. image: {
  41928. source: "./media/characters/zenith/back.svg",
  41929. extra: 1571/1487,
  41930. bottom: 75/1646
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Normal",
  41937. height: math.unit(5 + 10/12, "feet"),
  41938. default: true
  41939. }
  41940. ]
  41941. ))
  41942. characterMakers.push(() => makeCharacter(
  41943. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41944. {
  41945. front: {
  41946. height: math.unit(4, "feet"),
  41947. weight: math.unit(60, "lb"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/jasper/front.svg",
  41951. extra: 1450/1379,
  41952. bottom: 19/1469
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(4, "feet"),
  41960. default: true
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41966. {
  41967. front: {
  41968. height: math.unit(6 + 5/12, "feet"),
  41969. weight: math.unit(290, "lb"),
  41970. name: "Front",
  41971. image: {
  41972. source: "./media/characters/tiberius-thyben/front.svg",
  41973. extra: 757/739,
  41974. bottom: 39/796
  41975. }
  41976. },
  41977. },
  41978. [
  41979. {
  41980. name: "Micro",
  41981. height: math.unit(1.5, "inches")
  41982. },
  41983. {
  41984. name: "Normal",
  41985. height: math.unit(6 + 5/12, "feet"),
  41986. default: true
  41987. },
  41988. {
  41989. name: "Macro",
  41990. height: math.unit(300, "feet")
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41996. {
  41997. front: {
  41998. height: math.unit(5 + 6/12, "feet"),
  41999. weight: math.unit(60, "kg"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/sabre/front.svg",
  42003. extra: 738/671,
  42004. bottom: 27/765
  42005. }
  42006. },
  42007. },
  42008. [
  42009. {
  42010. name: "Teeny",
  42011. height: math.unit(2, "inches")
  42012. },
  42013. {
  42014. name: "Smol",
  42015. height: math.unit(8, "inches")
  42016. },
  42017. {
  42018. name: "Normal",
  42019. height: math.unit(5 + 6/12, "feet"),
  42020. default: true
  42021. },
  42022. {
  42023. name: "Mini-Macro",
  42024. height: math.unit(15, "feet")
  42025. },
  42026. {
  42027. name: "Macro",
  42028. height: math.unit(50, "feet")
  42029. },
  42030. ]
  42031. ))
  42032. characterMakers.push(() => makeCharacter(
  42033. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42034. {
  42035. front: {
  42036. height: math.unit(6 + 4/12, "feet"),
  42037. weight: math.unit(170, "lb"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/charlie/front.svg",
  42041. extra: 1348/1228,
  42042. bottom: 15/1363
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(1700, "meters"),
  42050. default: true
  42051. },
  42052. {
  42053. name: "MegaMacro",
  42054. height: math.unit(20400, "meters")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(6 + 3/12, "feet"),
  42063. weight: math.unit(185, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/susan-grant/front.svg",
  42067. extra: 1351/1327,
  42068. bottom: 26/1377
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Normal",
  42075. height: math.unit(6 + 3/12, "feet"),
  42076. default: true
  42077. },
  42078. {
  42079. name: "Macro",
  42080. height: math.unit(225, "feet")
  42081. },
  42082. {
  42083. name: "Macro+",
  42084. height: math.unit(900, "feet")
  42085. },
  42086. {
  42087. name: "MegaMacro",
  42088. height: math.unit(14400, "feet")
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(5 + 4/12, "feet"),
  42097. weight: math.unit(110, "lb"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/axel-isanov/front.svg",
  42101. extra: 1096/1065,
  42102. bottom: 13/1109
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Normal",
  42109. height: math.unit(5 + 4/12, "feet"),
  42110. default: true
  42111. },
  42112. ]
  42113. ))
  42114. characterMakers.push(() => makeCharacter(
  42115. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42116. {
  42117. front: {
  42118. height: math.unit(9, "feet"),
  42119. weight: math.unit(467, "lb"),
  42120. name: "Front",
  42121. image: {
  42122. source: "./media/characters/necahual/front.svg",
  42123. extra: 920/873,
  42124. bottom: 26/946
  42125. }
  42126. },
  42127. back: {
  42128. height: math.unit(9, "feet"),
  42129. weight: math.unit(467, "lb"),
  42130. name: "Back",
  42131. image: {
  42132. source: "./media/characters/necahual/back.svg",
  42133. extra: 930/884,
  42134. bottom: 16/946
  42135. }
  42136. },
  42137. frontUnderwear: {
  42138. height: math.unit(9, "feet"),
  42139. weight: math.unit(467, "lb"),
  42140. name: "Front (Underwear)",
  42141. image: {
  42142. source: "./media/characters/necahual/front-underwear.svg",
  42143. extra: 920/873,
  42144. bottom: 26/946
  42145. }
  42146. },
  42147. frontDressed: {
  42148. height: math.unit(9, "feet"),
  42149. weight: math.unit(467, "lb"),
  42150. name: "Front (Dressed)",
  42151. image: {
  42152. source: "./media/characters/necahual/front-dressed.svg",
  42153. extra: 920/873,
  42154. bottom: 26/946
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Comprsesed",
  42161. height: math.unit(9, "feet")
  42162. },
  42163. {
  42164. name: "Natural",
  42165. height: math.unit(15, "feet"),
  42166. default: true
  42167. },
  42168. {
  42169. name: "Boosted",
  42170. height: math.unit(50, "feet")
  42171. },
  42172. {
  42173. name: "Boosted+",
  42174. height: math.unit(150, "feet")
  42175. },
  42176. {
  42177. name: "Max",
  42178. height: math.unit(500, "feet")
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(22 + 1/12, "feet"),
  42187. weight: math.unit(3200, "lb"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/theo-acacia/front.svg",
  42191. extra: 1796/1741,
  42192. bottom: 83/1879
  42193. }
  42194. },
  42195. frontUnderwear: {
  42196. height: math.unit(22 + 1/12, "feet"),
  42197. weight: math.unit(3200, "lb"),
  42198. name: "Front (Underwear)",
  42199. image: {
  42200. source: "./media/characters/theo-acacia/front-underwear.svg",
  42201. extra: 1796/1741,
  42202. bottom: 83/1879
  42203. }
  42204. },
  42205. frontNude: {
  42206. height: math.unit(22 + 1/12, "feet"),
  42207. weight: math.unit(3200, "lb"),
  42208. name: "Front (Nude)",
  42209. image: {
  42210. source: "./media/characters/theo-acacia/front-nude.svg",
  42211. extra: 1796/1741,
  42212. bottom: 83/1879
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(22 + 1/12, "feet"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42226. {
  42227. front: {
  42228. height: math.unit(20, "feet"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/astra/front.svg",
  42232. extra: 1850/1714,
  42233. bottom: 106/1956
  42234. }
  42235. },
  42236. frontUndressed: {
  42237. height: math.unit(20, "feet"),
  42238. name: "Front (Undressed)",
  42239. image: {
  42240. source: "./media/characters/astra/front-undressed.svg",
  42241. extra: 1926/1749,
  42242. bottom: 0/1926
  42243. }
  42244. },
  42245. hand: {
  42246. height: math.unit(1.53, "feet"),
  42247. name: "Hand",
  42248. image: {
  42249. source: "./media/characters/astra/hand.svg"
  42250. }
  42251. },
  42252. paw: {
  42253. height: math.unit(1.53, "feet"),
  42254. name: "Paw",
  42255. image: {
  42256. source: "./media/characters/astra/paw.svg"
  42257. }
  42258. },
  42259. },
  42260. [
  42261. {
  42262. name: "Smallest",
  42263. height: math.unit(20, "feet")
  42264. },
  42265. {
  42266. name: "Normal",
  42267. height: math.unit(1e9, "miles"),
  42268. default: true
  42269. },
  42270. {
  42271. name: "Larger",
  42272. height: math.unit(5, "multiverses")
  42273. },
  42274. {
  42275. name: "Largest",
  42276. height: math.unit(1e9, "multiverses")
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(8, "feet"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/breanna/front.svg",
  42288. extra: 1912/1632,
  42289. bottom: 33/1945
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Smallest",
  42296. height: math.unit(8, "feet")
  42297. },
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(1, "mile"),
  42301. default: true
  42302. },
  42303. {
  42304. name: "Maximum",
  42305. height: math.unit(1500000000000, "lightyears")
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(5 + 11/12, "feet"),
  42314. weight: math.unit(155, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/cai/front.svg",
  42318. extra: 1823/1702,
  42319. bottom: 32/1855
  42320. }
  42321. },
  42322. back: {
  42323. height: math.unit(5 + 11/12, "feet"),
  42324. weight: math.unit(155, "lb"),
  42325. name: "Back",
  42326. image: {
  42327. source: "./media/characters/cai/back.svg",
  42328. extra: 1809/1708,
  42329. bottom: 31/1840
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(5 + 11/12, "feet"),
  42337. default: true
  42338. },
  42339. {
  42340. name: "Big",
  42341. height: math.unit(15, "feet")
  42342. },
  42343. {
  42344. name: "Macro",
  42345. height: math.unit(200, "feet")
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(5 + 6/12, "feet"),
  42354. weight: math.unit(160, "lb"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42358. extra: 1227/1174,
  42359. bottom: 37/1264
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Macro",
  42366. height: math.unit(444, "meters"),
  42367. default: true
  42368. },
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42373. {
  42374. front: {
  42375. height: math.unit(18 + 7/12, "feet"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/rex/front.svg",
  42379. extra: 1941/1807,
  42380. bottom: 66/2007
  42381. }
  42382. },
  42383. back: {
  42384. height: math.unit(18 + 7/12, "feet"),
  42385. name: "Back",
  42386. image: {
  42387. source: "./media/characters/rex/back.svg",
  42388. extra: 1937/1822,
  42389. bottom: 42/1979
  42390. }
  42391. },
  42392. boot: {
  42393. height: math.unit(3.45, "feet"),
  42394. name: "Boot",
  42395. image: {
  42396. source: "./media/characters/rex/boot.svg"
  42397. }
  42398. },
  42399. paw: {
  42400. height: math.unit(4.17, "feet"),
  42401. name: "Paw",
  42402. image: {
  42403. source: "./media/characters/rex/paw.svg"
  42404. }
  42405. },
  42406. head: {
  42407. height: math.unit(6.728, "feet"),
  42408. name: "Head",
  42409. image: {
  42410. source: "./media/characters/rex/head.svg"
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Nano",
  42417. height: math.unit(18 + 7/12, "feet")
  42418. },
  42419. {
  42420. name: "Micro",
  42421. height: math.unit(1.5, "megameters")
  42422. },
  42423. {
  42424. name: "Normal",
  42425. height: math.unit(440, "megameters"),
  42426. default: true
  42427. },
  42428. {
  42429. name: "Macro",
  42430. height: math.unit(2.5, "gigameters")
  42431. },
  42432. {
  42433. name: "Gigamacro",
  42434. height: math.unit(2, "galaxies")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42440. {
  42441. side: {
  42442. height: math.unit(32, "feet"),
  42443. weight: math.unit(250000, "lb"),
  42444. name: "Side",
  42445. image: {
  42446. source: "./media/characters/silverwing/side.svg",
  42447. extra: 1100/1019,
  42448. bottom: 204/1304
  42449. }
  42450. },
  42451. },
  42452. [
  42453. {
  42454. name: "Normal",
  42455. height: math.unit(32, "feet"),
  42456. default: true
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(6 + 6/12, "feet"),
  42465. weight: math.unit(350, "lb"),
  42466. name: "Front",
  42467. image: {
  42468. source: "./media/characters/tristan-hawthorne/front.svg",
  42469. extra: 1159/1124,
  42470. bottom: 37/1196
  42471. },
  42472. form: "labrador",
  42473. default: true
  42474. },
  42475. skunkFront: {
  42476. height: math.unit(4 + 6/12, "feet"),
  42477. weight: math.unit(120, "lb"),
  42478. name: "Front",
  42479. image: {
  42480. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42481. extra: 1609/1551,
  42482. bottom: 169/1778
  42483. },
  42484. form: "skunk",
  42485. default: true
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(6 + 6/12, "feet"),
  42492. form: "labrador",
  42493. default: true
  42494. },
  42495. {
  42496. name: "Normal",
  42497. height: math.unit(4 + 6/12, "feet"),
  42498. form: "skunk",
  42499. default: true
  42500. },
  42501. ],
  42502. {
  42503. "labrador": {
  42504. name: "Labrador",
  42505. default: true
  42506. },
  42507. "skunk": {
  42508. name: "Skunk"
  42509. }
  42510. }
  42511. ))
  42512. characterMakers.push(() => makeCharacter(
  42513. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42514. {
  42515. front: {
  42516. height: math.unit(5 + 11/12, "feet"),
  42517. weight: math.unit(190, "lb"),
  42518. name: "Front",
  42519. image: {
  42520. source: "./media/characters/mizu/front.svg",
  42521. extra: 1988/1788,
  42522. bottom: 14/2002
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Normal",
  42529. height: math.unit(5 + 11/12, "feet"),
  42530. default: true
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(1.7, "feet"),
  42539. weight: math.unit(50, "lb"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/dechroma/front.svg",
  42543. extra: 1095/859,
  42544. bottom: 64/1159
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(1.7, "feet"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42558. {
  42559. side: {
  42560. height: math.unit(30, "feet"),
  42561. name: "Side",
  42562. image: {
  42563. source: "./media/characters/veluren-thanazel/side.svg",
  42564. extra: 1611/633,
  42565. bottom: 118/1729
  42566. }
  42567. },
  42568. front: {
  42569. height: math.unit(30, "feet"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/veluren-thanazel/front.svg",
  42573. extra: 1486/636,
  42574. bottom: 238/1724
  42575. }
  42576. },
  42577. head: {
  42578. height: math.unit(21.4, "feet"),
  42579. name: "Head",
  42580. image: {
  42581. source: "./media/characters/veluren-thanazel/head.svg"
  42582. }
  42583. },
  42584. genitals: {
  42585. height: math.unit(19.4, "feet"),
  42586. name: "Genitals",
  42587. image: {
  42588. source: "./media/characters/veluren-thanazel/genitals.svg"
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Social",
  42595. height: math.unit(6, "feet")
  42596. },
  42597. {
  42598. name: "Play",
  42599. height: math.unit(12, "feet")
  42600. },
  42601. {
  42602. name: "True",
  42603. height: math.unit(30, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(7 + 6/12, "feet"),
  42613. weight: math.unit(500, "kg"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/arcturas/front.svg",
  42617. extra: 1700/1500,
  42618. bottom: 145/1845
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Normal",
  42625. height: math.unit(7 + 6/12, "feet"),
  42626. default: true
  42627. },
  42628. ]
  42629. ))
  42630. characterMakers.push(() => makeCharacter(
  42631. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42632. {
  42633. side: {
  42634. height: math.unit(6, "feet"),
  42635. weight: math.unit(2, "tons"),
  42636. name: "Side",
  42637. image: {
  42638. source: "./media/characters/vitaen/side.svg",
  42639. extra: 1157/617,
  42640. bottom: 122/1279
  42641. }
  42642. },
  42643. },
  42644. [
  42645. {
  42646. name: "Normal",
  42647. height: math.unit(6, "feet"),
  42648. default: true
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42654. {
  42655. front: {
  42656. height: math.unit(19, "feet"),
  42657. name: "Front",
  42658. image: {
  42659. source: "./media/characters/fia-dreamweaver/front.svg",
  42660. extra: 1630/1504,
  42661. bottom: 25/1655
  42662. }
  42663. },
  42664. },
  42665. [
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(19, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(5 + 4/12, "feet"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/artan/front.svg",
  42681. extra: 1618/1535,
  42682. bottom: 46/1664
  42683. }
  42684. },
  42685. back: {
  42686. height: math.unit(5 + 4/12, "feet"),
  42687. name: "Back",
  42688. image: {
  42689. source: "./media/characters/artan/back.svg",
  42690. extra: 1618/1543,
  42691. bottom: 31/1649
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(5 + 4/12, "feet"),
  42699. default: true
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42705. {
  42706. side: {
  42707. height: math.unit(182, "cm"),
  42708. weight: math.unit(1000, "lb"),
  42709. name: "Side",
  42710. image: {
  42711. source: "./media/characters/silver-dragon/side.svg",
  42712. extra: 710/287,
  42713. bottom: 88/798
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Normal",
  42720. height: math.unit(182, "cm"),
  42721. default: true
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42727. {
  42728. side: {
  42729. height: math.unit(6 + 6/12, "feet"),
  42730. weight: math.unit(1.5, "tons"),
  42731. name: "Side",
  42732. image: {
  42733. source: "./media/characters/zephyr/side.svg",
  42734. extra: 1433/586,
  42735. bottom: 109/1542
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Normal",
  42742. height: math.unit(6 + 6/12, "feet"),
  42743. default: true
  42744. },
  42745. ]
  42746. ))
  42747. characterMakers.push(() => makeCharacter(
  42748. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42749. {
  42750. side: {
  42751. height: math.unit(1, "feet"),
  42752. name: "Side",
  42753. image: {
  42754. source: "./media/characters/vixye/side.svg",
  42755. extra: 632/541,
  42756. bottom: 0/632
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(1, "feet"),
  42764. default: true
  42765. },
  42766. {
  42767. name: "True",
  42768. height: math.unit(1e15, "multiverses")
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(8 + 2/12, "feet"),
  42777. weight: math.unit(650, "lb"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42781. extra: 1174/1137,
  42782. bottom: 82/1256
  42783. }
  42784. },
  42785. back: {
  42786. height: math.unit(8 + 2/12, "feet"),
  42787. weight: math.unit(650, "lb"),
  42788. name: "Back",
  42789. image: {
  42790. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42791. extra: 1204/1157,
  42792. bottom: 46/1250
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Wildform",
  42799. height: math.unit(8 + 2/12, "feet"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(18, "feet"),
  42809. name: "Front",
  42810. image: {
  42811. source: "./media/characters/cyphin/front.svg",
  42812. extra: 970/886,
  42813. bottom: 42/1012
  42814. }
  42815. },
  42816. back: {
  42817. height: math.unit(18, "feet"),
  42818. name: "Back",
  42819. image: {
  42820. source: "./media/characters/cyphin/back.svg",
  42821. extra: 1009/894,
  42822. bottom: 24/1033
  42823. }
  42824. },
  42825. head: {
  42826. height: math.unit(5.05, "feet"),
  42827. name: "Head",
  42828. image: {
  42829. source: "./media/characters/cyphin/head.svg"
  42830. }
  42831. },
  42832. tailbud: {
  42833. height: math.unit(5, "feet"),
  42834. name: "Tailbud",
  42835. image: {
  42836. source: "./media/characters/cyphin/tailbud.svg"
  42837. }
  42838. },
  42839. },
  42840. [
  42841. ]
  42842. ))
  42843. characterMakers.push(() => makeCharacter(
  42844. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42845. {
  42846. side: {
  42847. height: math.unit(10, "feet"),
  42848. weight: math.unit(6, "tons"),
  42849. name: "Side",
  42850. image: {
  42851. source: "./media/characters/raijin/side.svg",
  42852. extra: 1529/613,
  42853. bottom: 337/1866
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(10, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42867. {
  42868. side: {
  42869. height: math.unit(9, "feet"),
  42870. name: "Side",
  42871. image: {
  42872. source: "./media/characters/nilghais/side.svg",
  42873. extra: 1047/744,
  42874. bottom: 91/1138
  42875. }
  42876. },
  42877. head: {
  42878. height: math.unit(3.14, "feet"),
  42879. name: "Head",
  42880. image: {
  42881. source: "./media/characters/nilghais/head.svg"
  42882. }
  42883. },
  42884. mouth: {
  42885. height: math.unit(4.6, "feet"),
  42886. name: "Mouth",
  42887. image: {
  42888. source: "./media/characters/nilghais/mouth.svg"
  42889. }
  42890. },
  42891. wings: {
  42892. height: math.unit(24, "feet"),
  42893. name: "Wings",
  42894. image: {
  42895. source: "./media/characters/nilghais/wings.svg"
  42896. }
  42897. },
  42898. ass: {
  42899. height: math.unit(6.12, "feet"),
  42900. name: "Ass",
  42901. image: {
  42902. source: "./media/characters/nilghais/ass.svg"
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(9, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42916. {
  42917. regular: {
  42918. height: math.unit(16 + 2/12, "feet"),
  42919. weight: math.unit(2300, "lb"),
  42920. name: "Regular",
  42921. image: {
  42922. source: "./media/characters/zolgar/regular.svg",
  42923. extra: 1246/1004,
  42924. bottom: 124/1370
  42925. }
  42926. },
  42927. boxers: {
  42928. height: math.unit(16 + 2/12, "feet"),
  42929. weight: math.unit(2300, "lb"),
  42930. name: "Boxers",
  42931. image: {
  42932. source: "./media/characters/zolgar/boxers.svg",
  42933. extra: 1246/1004,
  42934. bottom: 124/1370
  42935. }
  42936. },
  42937. armored: {
  42938. height: math.unit(16 + 2/12, "feet"),
  42939. weight: math.unit(2300, "lb"),
  42940. name: "Armored",
  42941. image: {
  42942. source: "./media/characters/zolgar/armored.svg",
  42943. extra: 1246/1004,
  42944. bottom: 124/1370
  42945. }
  42946. },
  42947. goth: {
  42948. height: math.unit(16 + 2/12, "feet"),
  42949. weight: math.unit(2300, "lb"),
  42950. name: "Goth",
  42951. image: {
  42952. source: "./media/characters/zolgar/goth.svg",
  42953. extra: 1246/1004,
  42954. bottom: 124/1370
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Shrunken Down",
  42961. height: math.unit(9 + 2/12, "feet")
  42962. },
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(16 + 2/12, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(6, "feet"),
  42975. weight: math.unit(168, "lb"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/luca/front.svg",
  42979. extra: 841/667,
  42980. bottom: 102/943
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(6, "feet"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42994. {
  42995. side: {
  42996. height: math.unit(7 + 3/12, "feet"),
  42997. weight: math.unit(312, "lb"),
  42998. name: "Side",
  42999. image: {
  43000. source: "./media/characters/zezo/side.svg",
  43001. extra: 1192/1067,
  43002. bottom: 63/1255
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(7 + 3/12, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(5 + 5/12, "feet"),
  43019. weight: math.unit(170, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/mayso/front.svg",
  43023. extra: 1215/1108,
  43024. bottom: 16/1231
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Normal",
  43031. height: math.unit(5 + 5/12, "feet"),
  43032. default: true
  43033. },
  43034. ]
  43035. ))
  43036. characterMakers.push(() => makeCharacter(
  43037. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43038. {
  43039. front: {
  43040. height: math.unit(4 + 3/12, "feet"),
  43041. weight: math.unit(80, "lb"),
  43042. name: "Front",
  43043. image: {
  43044. source: "./media/characters/hess/front.svg",
  43045. extra: 1200/1123,
  43046. bottom: 16/1216
  43047. }
  43048. },
  43049. },
  43050. [
  43051. {
  43052. name: "Normal",
  43053. height: math.unit(4 + 3/12, "feet"),
  43054. default: true
  43055. },
  43056. ]
  43057. ))
  43058. characterMakers.push(() => makeCharacter(
  43059. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43060. {
  43061. front: {
  43062. height: math.unit(1.9, "meters"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/ashgar/front.svg",
  43066. extra: 1177/1146,
  43067. bottom: 99/1276
  43068. }
  43069. },
  43070. back: {
  43071. height: math.unit(1.9, "meters"),
  43072. name: "Back",
  43073. image: {
  43074. source: "./media/characters/ashgar/back.svg",
  43075. extra: 1201/1183,
  43076. bottom: 53/1254
  43077. }
  43078. },
  43079. feral: {
  43080. height: math.unit(1.4, "meters"),
  43081. name: "Feral",
  43082. image: {
  43083. source: "./media/characters/ashgar/feral.svg",
  43084. extra: 370/345,
  43085. bottom: 45/415
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(1.9, "meters"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43099. {
  43100. regular: {
  43101. height: math.unit(6, "feet"),
  43102. weight: math.unit(220, "lb"),
  43103. name: "Regular",
  43104. image: {
  43105. source: "./media/characters/phillip/regular.svg",
  43106. extra: 1373/1277,
  43107. bottom: 75/1448
  43108. }
  43109. },
  43110. dressed: {
  43111. height: math.unit(6, "feet"),
  43112. weight: math.unit(220, "lb"),
  43113. name: "Dressed",
  43114. image: {
  43115. source: "./media/characters/phillip/dressed.svg",
  43116. extra: 1373/1277,
  43117. bottom: 75/1448
  43118. }
  43119. },
  43120. paw: {
  43121. height: math.unit(1.44, "feet"),
  43122. name: "Paw",
  43123. image: {
  43124. source: "./media/characters/phillip/paw.svg"
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(6, "feet"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43138. {
  43139. side: {
  43140. height: math.unit(42, "feet"),
  43141. name: "Side",
  43142. image: {
  43143. source: "./media/characters/uvula/side.svg",
  43144. extra: 683/586,
  43145. bottom: 60/743
  43146. }
  43147. },
  43148. front: {
  43149. height: math.unit(42, "feet"),
  43150. name: "Front",
  43151. image: {
  43152. source: "./media/characters/uvula/front.svg",
  43153. extra: 705/613,
  43154. bottom: 54/759
  43155. }
  43156. },
  43157. maw: {
  43158. height: math.unit(23.5, "feet"),
  43159. name: "Maw",
  43160. image: {
  43161. source: "./media/characters/uvula/maw.svg"
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Original Size",
  43168. height: math.unit(14, "inches")
  43169. },
  43170. {
  43171. name: "Human Size",
  43172. height: math.unit(6, "feet")
  43173. },
  43174. {
  43175. name: "Big",
  43176. height: math.unit(42, "feet"),
  43177. default: true
  43178. },
  43179. {
  43180. name: "Bigger",
  43181. height: math.unit(100, "feet")
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(5 + 11/12, "feet"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/lannah/front.svg",
  43193. extra: 1208/1113,
  43194. bottom: 97/1305
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(5 + 11/12, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43208. {
  43209. front: {
  43210. height: math.unit(6 + 3/12, "feet"),
  43211. weight: math.unit(3.5, "tons"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/emberflame/front.svg",
  43215. extra: 1198/672,
  43216. bottom: 82/1280
  43217. }
  43218. },
  43219. side: {
  43220. height: math.unit(6 + 3/12, "feet"),
  43221. weight: math.unit(3.5, "tons"),
  43222. name: "Side",
  43223. image: {
  43224. source: "./media/characters/emberflame/side.svg",
  43225. extra: 938/527,
  43226. bottom: 56/994
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Normal",
  43233. height: math.unit(6 + 3/12, "feet"),
  43234. default: true
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43240. {
  43241. side: {
  43242. height: math.unit(17.5, "feet"),
  43243. weight: math.unit(35, "tons"),
  43244. name: "Side",
  43245. image: {
  43246. source: "./media/characters/sophie-ambrose/side.svg",
  43247. extra: 1573/1242,
  43248. bottom: 71/1644
  43249. }
  43250. },
  43251. maw: {
  43252. height: math.unit(7.4, "feet"),
  43253. name: "Maw",
  43254. image: {
  43255. source: "./media/characters/sophie-ambrose/maw.svg"
  43256. }
  43257. },
  43258. },
  43259. [
  43260. {
  43261. name: "Normal",
  43262. height: math.unit(17.5, "feet"),
  43263. default: true
  43264. },
  43265. ]
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43269. {
  43270. front: {
  43271. height: math.unit(280, "feet"),
  43272. weight: math.unit(550, "tons"),
  43273. name: "Front",
  43274. image: {
  43275. source: "./media/characters/king-mugi/front.svg",
  43276. extra: 1102/947,
  43277. bottom: 104/1206
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "King Mugi",
  43284. height: math.unit(280, "feet"),
  43285. default: true
  43286. },
  43287. ]
  43288. ))
  43289. characterMakers.push(() => makeCharacter(
  43290. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43291. {
  43292. front: {
  43293. height: math.unit(64, "meters"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/nova-fox/front.svg",
  43297. extra: 1310/1246,
  43298. bottom: 65/1375
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Macro",
  43305. height: math.unit(64, "meters"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(6 + 3/12, "feet"),
  43315. weight: math.unit(170, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/sam-bat/front.svg",
  43319. extra: 1601/1411,
  43320. bottom: 125/1726
  43321. }
  43322. },
  43323. back: {
  43324. height: math.unit(6 + 3/12, "feet"),
  43325. weight: math.unit(170, "lb"),
  43326. name: "Back",
  43327. image: {
  43328. source: "./media/characters/sam-bat/back.svg",
  43329. extra: 1577/1405,
  43330. bottom: 58/1635
  43331. }
  43332. },
  43333. },
  43334. [
  43335. {
  43336. name: "Normal",
  43337. height: math.unit(6 + 3/12, "feet"),
  43338. default: true
  43339. },
  43340. ]
  43341. ))
  43342. characterMakers.push(() => makeCharacter(
  43343. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43344. {
  43345. front: {
  43346. height: math.unit(59, "feet"),
  43347. weight: math.unit(40000, "lb"),
  43348. name: "Front",
  43349. image: {
  43350. source: "./media/characters/inari/front.svg",
  43351. extra: 1884/1350,
  43352. bottom: 95/1979
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Gigantamax",
  43359. height: math.unit(59, "feet"),
  43360. default: true
  43361. },
  43362. ]
  43363. ))
  43364. characterMakers.push(() => makeCharacter(
  43365. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43366. {
  43367. front: {
  43368. height: math.unit(5 + 8/12, "feet"),
  43369. name: "Front",
  43370. image: {
  43371. source: "./media/characters/elizabeth/front.svg",
  43372. extra: 1395/1298,
  43373. bottom: 54/1449
  43374. }
  43375. },
  43376. mouth: {
  43377. height: math.unit(1.97, "feet"),
  43378. name: "Mouth",
  43379. image: {
  43380. source: "./media/characters/elizabeth/mouth.svg"
  43381. }
  43382. },
  43383. foot: {
  43384. height: math.unit(1.17, "feet"),
  43385. name: "Foot",
  43386. image: {
  43387. source: "./media/characters/elizabeth/foot.svg"
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(5 + 8/12, "feet"),
  43395. default: true
  43396. },
  43397. {
  43398. name: "Minimacro",
  43399. height: math.unit(18, "feet")
  43400. },
  43401. {
  43402. name: "Macro",
  43403. height: math.unit(180, "feet")
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43409. {
  43410. front: {
  43411. height: math.unit(5 + 2/12, "feet"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/october-gossamer/front.svg",
  43415. extra: 505/454,
  43416. bottom: 7/512
  43417. }
  43418. },
  43419. back: {
  43420. height: math.unit(5 + 2/12, "feet"),
  43421. name: "Back",
  43422. image: {
  43423. source: "./media/characters/october-gossamer/back.svg",
  43424. extra: 501/454,
  43425. bottom: 11/512
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(5 + 2/12, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(5, "feet"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/epiglottis/front.svg",
  43445. extra: 923/849,
  43446. bottom: 17/940
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Original Size",
  43453. height: math.unit(10, "inches")
  43454. },
  43455. {
  43456. name: "Human Size",
  43457. height: math.unit(5, "feet"),
  43458. default: true
  43459. },
  43460. {
  43461. name: "Big",
  43462. height: math.unit(25, "feet")
  43463. },
  43464. {
  43465. name: "Bigger",
  43466. height: math.unit(50, "feet")
  43467. },
  43468. {
  43469. name: "oh lawd",
  43470. height: math.unit(75, "feet")
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(2 + 4/12, "feet"),
  43479. weight: math.unit(60, "lb"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/lerm/front.svg",
  43483. extra: 796/790,
  43484. bottom: 79/875
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(2 + 4/12, "feet"),
  43492. default: true
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43498. {
  43499. front: {
  43500. height: math.unit(5.5, "feet"),
  43501. weight: math.unit(130, "lb"),
  43502. name: "Front",
  43503. image: {
  43504. source: "./media/characters/xena-nebadon/front.svg",
  43505. extra: 1828/1730,
  43506. bottom: 79/1907
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Tiny Puppy",
  43513. height: math.unit(3, "inches")
  43514. },
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(5.5, "feet"),
  43518. default: true
  43519. },
  43520. {
  43521. name: "Lotta Lady",
  43522. height: math.unit(12, "feet")
  43523. },
  43524. {
  43525. name: "Pretty Big",
  43526. height: math.unit(100, "feet")
  43527. },
  43528. {
  43529. name: "Big",
  43530. height: math.unit(500, "feet")
  43531. },
  43532. {
  43533. name: "Skyscraper Toys",
  43534. height: math.unit(2500, "feet")
  43535. },
  43536. {
  43537. name: "Plane Catcher",
  43538. height: math.unit(8, "miles")
  43539. },
  43540. {
  43541. name: "Planet Toys",
  43542. height: math.unit(15, "earths")
  43543. },
  43544. {
  43545. name: "Stardust",
  43546. height: math.unit(0.25, "galaxies")
  43547. },
  43548. {
  43549. name: "Snacks",
  43550. height: math.unit(70, "universes")
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(1.6, "meters"),
  43559. weight: math.unit(60, "kg"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/bounty/front.svg",
  43563. extra: 1426/1308,
  43564. bottom: 15/1441
  43565. }
  43566. },
  43567. back: {
  43568. height: math.unit(1.6, "meters"),
  43569. weight: math.unit(60, "kg"),
  43570. name: "Back",
  43571. image: {
  43572. source: "./media/characters/bounty/back.svg",
  43573. extra: 1417/1307,
  43574. bottom: 8/1425
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(1.6, "meters"),
  43582. default: true
  43583. },
  43584. {
  43585. name: "Macro",
  43586. height: math.unit(300, "meters")
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43592. {
  43593. front: {
  43594. height: math.unit(2 + 8/12, "feet"),
  43595. weight: math.unit(15, "lb"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/mochi/front.svg",
  43599. extra: 1022/852,
  43600. bottom: 435/1457
  43601. }
  43602. },
  43603. back: {
  43604. height: math.unit(2 + 8/12, "feet"),
  43605. weight: math.unit(15, "lb"),
  43606. name: "Back",
  43607. image: {
  43608. source: "./media/characters/mochi/back.svg",
  43609. extra: 1335/1119,
  43610. bottom: 39/1374
  43611. }
  43612. },
  43613. bird: {
  43614. height: math.unit(2 + 8/12, "feet"),
  43615. weight: math.unit(15, "lb"),
  43616. name: "Bird",
  43617. image: {
  43618. source: "./media/characters/mochi/bird.svg",
  43619. extra: 1251/1113,
  43620. bottom: 178/1429
  43621. }
  43622. },
  43623. kaiju: {
  43624. height: math.unit(154, "feet"),
  43625. weight: math.unit(1e7, "lb"),
  43626. name: "Kaiju",
  43627. image: {
  43628. source: "./media/characters/mochi/kaiju.svg",
  43629. extra: 460/324,
  43630. bottom: 40/500
  43631. }
  43632. },
  43633. head: {
  43634. height: math.unit(1.21, "feet"),
  43635. name: "Head",
  43636. image: {
  43637. source: "./media/characters/mochi/head.svg"
  43638. }
  43639. },
  43640. alternateTail: {
  43641. height: math.unit(2 + 8/12, "feet"),
  43642. weight: math.unit(45, "lb"),
  43643. name: "Alternate Tail",
  43644. image: {
  43645. source: "./media/characters/mochi/alternate-tail.svg",
  43646. extra: 139/76,
  43647. bottom: 45/184
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Micro",
  43654. height: math.unit(2, "inches")
  43655. },
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(2 + 8/12, "feet"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Macro",
  43663. height: math.unit(106, "feet")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(5.67, "feet"),
  43672. weight: math.unit(135, "lb"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/sarel/front.svg",
  43676. extra: 865/788,
  43677. bottom: 97/962
  43678. }
  43679. },
  43680. back: {
  43681. height: math.unit(5.67, "feet"),
  43682. weight: math.unit(135, "lb"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/sarel/back.svg",
  43686. extra: 857/777,
  43687. bottom: 32/889
  43688. }
  43689. },
  43690. chozoan: {
  43691. height: math.unit(5.67, "feet"),
  43692. weight: math.unit(135, "lb"),
  43693. name: "Chozoan",
  43694. image: {
  43695. source: "./media/characters/sarel/chozoan.svg",
  43696. extra: 865/788,
  43697. bottom: 97/962
  43698. }
  43699. },
  43700. current: {
  43701. height: math.unit(5.67, "feet"),
  43702. weight: math.unit(135, "lb"),
  43703. name: "Current",
  43704. image: {
  43705. source: "./media/characters/sarel/current.svg",
  43706. extra: 865/788,
  43707. bottom: 97/962
  43708. }
  43709. },
  43710. head: {
  43711. height: math.unit(1.77, "feet"),
  43712. name: "Head",
  43713. image: {
  43714. source: "./media/characters/sarel/head.svg"
  43715. }
  43716. },
  43717. claws: {
  43718. height: math.unit(1.8, "feet"),
  43719. name: "Claws",
  43720. image: {
  43721. source: "./media/characters/sarel/claws.svg"
  43722. }
  43723. },
  43724. clawsAlt: {
  43725. height: math.unit(1.8, "feet"),
  43726. name: "Claws-alt",
  43727. image: {
  43728. source: "./media/characters/sarel/claws-alt.svg"
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(5.67, "feet"),
  43736. default: true
  43737. },
  43738. ]
  43739. ))
  43740. characterMakers.push(() => makeCharacter(
  43741. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43742. {
  43743. front: {
  43744. height: math.unit(5500, "feet"),
  43745. name: "Front",
  43746. image: {
  43747. source: "./media/characters/alyonia/front.svg",
  43748. extra: 1200/1135,
  43749. bottom: 29/1229
  43750. }
  43751. },
  43752. back: {
  43753. height: math.unit(5500, "feet"),
  43754. name: "Back",
  43755. image: {
  43756. source: "./media/characters/alyonia/back.svg",
  43757. extra: 1205/1138,
  43758. bottom: 10/1215
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Small",
  43765. height: math.unit(10, "feet")
  43766. },
  43767. {
  43768. name: "Macro",
  43769. height: math.unit(500, "feet")
  43770. },
  43771. {
  43772. name: "Mega Macro",
  43773. height: math.unit(5500, "feet"),
  43774. default: true
  43775. },
  43776. {
  43777. name: "Mega Macro+",
  43778. height: math.unit(500000, "feet")
  43779. },
  43780. {
  43781. name: "Giga Macro",
  43782. height: math.unit(3000, "miles")
  43783. },
  43784. {
  43785. name: "Tera Macro",
  43786. height: math.unit(2.8e6, "miles")
  43787. },
  43788. {
  43789. name: "Galactic",
  43790. height: math.unit(120000, "lightyears")
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43796. {
  43797. werewolf: {
  43798. height: math.unit(8, "feet"),
  43799. weight: math.unit(425, "lb"),
  43800. name: "Werewolf",
  43801. image: {
  43802. source: "./media/characters/autumn/werewolf.svg",
  43803. extra: 2154/2031,
  43804. bottom: 160/2314
  43805. }
  43806. },
  43807. human: {
  43808. height: math.unit(5 + 8/12, "feet"),
  43809. weight: math.unit(150, "lb"),
  43810. name: "Human",
  43811. image: {
  43812. source: "./media/characters/autumn/human.svg",
  43813. extra: 1200/1149,
  43814. bottom: 30/1230
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Normal",
  43821. height: math.unit(8, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43828. {
  43829. front: {
  43830. height: math.unit(8 + 5/12, "feet"),
  43831. weight: math.unit(825, "lb"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/cobalt-charizard/front.svg",
  43835. extra: 1268/1155,
  43836. bottom: 122/1390
  43837. }
  43838. },
  43839. side: {
  43840. height: math.unit(8 + 5/12, "feet"),
  43841. weight: math.unit(825, "lb"),
  43842. name: "Side",
  43843. image: {
  43844. source: "./media/characters/cobalt-charizard/side.svg",
  43845. extra: 1348/1257,
  43846. bottom: 58/1406
  43847. }
  43848. },
  43849. gMax: {
  43850. height: math.unit(134 + 11/12, "feet"),
  43851. name: "G-Max",
  43852. image: {
  43853. source: "./media/characters/cobalt-charizard/g-max.svg",
  43854. extra: 1835/1541,
  43855. bottom: 151/1986
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Normal",
  43862. height: math.unit(8 + 5/12, "feet"),
  43863. default: true
  43864. },
  43865. ]
  43866. ))
  43867. characterMakers.push(() => makeCharacter(
  43868. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43869. {
  43870. front: {
  43871. height: math.unit(6 + 3/12, "feet"),
  43872. weight: math.unit(210, "lb"),
  43873. name: "Front",
  43874. image: {
  43875. source: "./media/characters/stella/front.svg",
  43876. extra: 3549/3335,
  43877. bottom: 51/3600
  43878. }
  43879. },
  43880. },
  43881. [
  43882. {
  43883. name: "Normal",
  43884. height: math.unit(6 + 3/12, "feet"),
  43885. default: true
  43886. },
  43887. ]
  43888. ))
  43889. characterMakers.push(() => makeCharacter(
  43890. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43891. {
  43892. front: {
  43893. height: math.unit(5, "feet"),
  43894. weight: math.unit(90, "lb"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/riley-bishop/front.svg",
  43898. extra: 1450/1428,
  43899. bottom: 152/1602
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Normal",
  43906. height: math.unit(5, "feet"),
  43907. default: true
  43908. },
  43909. ]
  43910. ))
  43911. characterMakers.push(() => makeCharacter(
  43912. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43913. {
  43914. side: {
  43915. height: math.unit(8 + 2/12, "feet"),
  43916. weight: math.unit(500, "kg"),
  43917. name: "Side",
  43918. image: {
  43919. source: "./media/characters/theo-arcanine/side.svg",
  43920. extra: 1342/1074,
  43921. bottom: 111/1453
  43922. }
  43923. },
  43924. },
  43925. [
  43926. {
  43927. name: "Normal",
  43928. height: math.unit(8 + 2/12, "feet"),
  43929. default: true
  43930. },
  43931. ]
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43935. {
  43936. front: {
  43937. height: math.unit(4, "feet"),
  43938. name: "Front",
  43939. image: {
  43940. source: "./media/characters/kali/front.svg",
  43941. extra: 1921/1357,
  43942. bottom: 70/1991
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(4, "feet"),
  43950. default: true
  43951. },
  43952. {
  43953. name: "Macro",
  43954. height: math.unit(32, "meters")
  43955. },
  43956. {
  43957. name: "Macro+",
  43958. height: math.unit(150, "meters")
  43959. },
  43960. {
  43961. name: "Megamacro",
  43962. height: math.unit(7500, "meters")
  43963. },
  43964. {
  43965. name: "Megamacro+",
  43966. height: math.unit(80, "kilometers")
  43967. },
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43972. {
  43973. side: {
  43974. height: math.unit(5 + 11/12, "feet"),
  43975. weight: math.unit(236, "lb"),
  43976. name: "Side",
  43977. image: {
  43978. source: "./media/characters/gapp/side.svg",
  43979. extra: 775/340,
  43980. bottom: 58/833
  43981. }
  43982. },
  43983. mouth: {
  43984. height: math.unit(2.98, "feet"),
  43985. name: "Mouth",
  43986. image: {
  43987. source: "./media/characters/gapp/mouth.svg"
  43988. }
  43989. },
  43990. },
  43991. [
  43992. {
  43993. name: "Normal",
  43994. height: math.unit(5 + 1/12, "feet"),
  43995. default: true
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(6, "feet"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/persephone/front.svg",
  44007. extra: 1895/1717,
  44008. bottom: 96/1991
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(6, "feet"),
  44013. name: "Back",
  44014. image: {
  44015. source: "./media/characters/persephone/back.svg",
  44016. extra: 1868/1679,
  44017. bottom: 26/1894
  44018. }
  44019. },
  44020. casual: {
  44021. height: math.unit(6, "feet"),
  44022. name: "Casual",
  44023. image: {
  44024. source: "./media/characters/persephone/casual.svg",
  44025. extra: 1713/1541,
  44026. bottom: 76/1789
  44027. }
  44028. },
  44029. },
  44030. [
  44031. {
  44032. name: "Human Size",
  44033. height: math.unit(6, "feet")
  44034. },
  44035. {
  44036. name: "Big Steppy",
  44037. height: math.unit(600, "meters"),
  44038. default: true
  44039. },
  44040. {
  44041. name: "Galaxy Brain",
  44042. height: math.unit(1, "zettameter")
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(1.85, "meters"),
  44051. name: "Front",
  44052. image: {
  44053. source: "./media/characters/riley-foxthing/front.svg",
  44054. extra: 1495/1354,
  44055. bottom: 122/1617
  44056. }
  44057. },
  44058. frontAlt: {
  44059. height: math.unit(1.85, "meters"),
  44060. name: "Front (Alt)",
  44061. image: {
  44062. source: "./media/characters/riley-foxthing/front-alt.svg",
  44063. extra: 1572/1389,
  44064. bottom: 116/1688
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Normal Sized",
  44071. height: math.unit(1.85, "meters"),
  44072. default: true
  44073. },
  44074. {
  44075. name: "Quite Sizable",
  44076. height: math.unit(5, "meters")
  44077. },
  44078. {
  44079. name: "Rather Large",
  44080. height: math.unit(20, "meters")
  44081. },
  44082. {
  44083. name: "Macro",
  44084. height: math.unit(450, "meters")
  44085. },
  44086. {
  44087. name: "Giga",
  44088. height: math.unit(5, "km")
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44094. {
  44095. front: {
  44096. height: math.unit(6, "feet"),
  44097. weight: math.unit(200, "lb"),
  44098. name: "Front",
  44099. image: {
  44100. source: "./media/characters/blizzard/front.svg",
  44101. extra: 1136/990,
  44102. bottom: 136/1272
  44103. }
  44104. },
  44105. back: {
  44106. height: math.unit(6, "feet"),
  44107. weight: math.unit(200, "lb"),
  44108. name: "Back",
  44109. image: {
  44110. source: "./media/characters/blizzard/back.svg",
  44111. extra: 1175/1034,
  44112. bottom: 97/1272
  44113. }
  44114. },
  44115. sitting: {
  44116. height: math.unit(3.725, "feet"),
  44117. weight: math.unit(200, "lb"),
  44118. name: "Sitting",
  44119. image: {
  44120. source: "./media/characters/blizzard/sitting.svg",
  44121. extra: 581/485,
  44122. bottom: 90/671
  44123. }
  44124. },
  44125. frontWizard: {
  44126. height: math.unit(7.9, "feet"),
  44127. weight: math.unit(200, "lb"),
  44128. name: "Front (Wizard)",
  44129. image: {
  44130. source: "./media/characters/blizzard/front-wizard.svg"
  44131. }
  44132. },
  44133. backWizard: {
  44134. height: math.unit(7.9, "feet"),
  44135. weight: math.unit(200, "lb"),
  44136. name: "Back (Wizard)",
  44137. image: {
  44138. source: "./media/characters/blizzard/back-wizard.svg"
  44139. }
  44140. },
  44141. frontNsfw: {
  44142. height: math.unit(6, "feet"),
  44143. weight: math.unit(200, "lb"),
  44144. name: "Front (NSFW)",
  44145. image: {
  44146. source: "./media/characters/blizzard/front-nsfw.svg",
  44147. extra: 1136/990,
  44148. bottom: 136/1272
  44149. }
  44150. },
  44151. backNsfw: {
  44152. height: math.unit(6, "feet"),
  44153. weight: math.unit(200, "lb"),
  44154. name: "Back (NSFW)",
  44155. image: {
  44156. source: "./media/characters/blizzard/back-nsfw.svg",
  44157. extra: 1175/1034,
  44158. bottom: 97/1272
  44159. }
  44160. },
  44161. sittingNsfw: {
  44162. height: math.unit(3.725, "feet"),
  44163. weight: math.unit(200, "lb"),
  44164. name: "Sitting (NSFW)",
  44165. image: {
  44166. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44167. extra: 581/485,
  44168. bottom: 90/671
  44169. }
  44170. },
  44171. wizardFrontNsfw: {
  44172. height: math.unit(7.9, "feet"),
  44173. weight: math.unit(200, "lb"),
  44174. name: "Wizard (Front, NSFW)",
  44175. image: {
  44176. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(6, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44190. {
  44191. front: {
  44192. height: math.unit(5 + 2/12, "feet"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/lumi/front.svg",
  44196. extra: 1328/1268,
  44197. bottom: 103/1431
  44198. }
  44199. },
  44200. back: {
  44201. height: math.unit(5 + 2/12, "feet"),
  44202. name: "Back",
  44203. image: {
  44204. source: "./media/characters/lumi/back.svg",
  44205. extra: 1381/1327,
  44206. bottom: 43/1424
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(5 + 2/12, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44220. {
  44221. front: {
  44222. height: math.unit(5 + 9/12, "feet"),
  44223. name: "Front",
  44224. image: {
  44225. source: "./media/characters/aliya-cotton/front.svg",
  44226. extra: 577/564,
  44227. bottom: 29/606
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(5 + 9/12, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(2.7, "meters"),
  44244. weight: math.unit(25000, "lb"),
  44245. name: "Front",
  44246. image: {
  44247. source: "./media/characters/noah-luxray/front.svg",
  44248. extra: 1644/825,
  44249. bottom: 339/1983
  44250. }
  44251. },
  44252. side: {
  44253. height: math.unit(2.97, "meters"),
  44254. weight: math.unit(25000, "lb"),
  44255. name: "Side",
  44256. image: {
  44257. source: "./media/characters/noah-luxray/side.svg",
  44258. extra: 1319/650,
  44259. bottom: 163/1482
  44260. }
  44261. },
  44262. dick: {
  44263. height: math.unit(7.4, "feet"),
  44264. weight: math.unit(2500, "lb"),
  44265. name: "Dick",
  44266. image: {
  44267. source: "./media/characters/noah-luxray/dick.svg"
  44268. }
  44269. },
  44270. dickAlt: {
  44271. height: math.unit(10.83, "feet"),
  44272. weight: math.unit(2500, "lb"),
  44273. name: "Dick-alt",
  44274. image: {
  44275. source: "./media/characters/noah-luxray/dick-alt.svg"
  44276. }
  44277. },
  44278. },
  44279. [
  44280. {
  44281. name: "BIG",
  44282. height: math.unit(2.7, "meters"),
  44283. default: true
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44289. {
  44290. standing: {
  44291. height: math.unit(183, "cm"),
  44292. weight: math.unit(68, "kg"),
  44293. name: "Standing",
  44294. image: {
  44295. source: "./media/characters/arion/standing.svg",
  44296. extra: 1869/1807,
  44297. bottom: 93/1962
  44298. }
  44299. },
  44300. reclining: {
  44301. height: math.unit(70.5, "cm"),
  44302. weight: math.unit(68, "lb"),
  44303. name: "Reclining",
  44304. image: {
  44305. source: "./media/characters/arion/reclining.svg",
  44306. extra: 937/870,
  44307. bottom: 63/1000
  44308. }
  44309. },
  44310. },
  44311. [
  44312. {
  44313. name: "Colossus Size, Low",
  44314. height: math.unit(33, "meters"),
  44315. default: true
  44316. },
  44317. {
  44318. name: "Colossus Size, Mid",
  44319. height: math.unit(52, "meters")
  44320. },
  44321. {
  44322. name: "Colossus Size, High",
  44323. height: math.unit(60, "meters")
  44324. },
  44325. {
  44326. name: "Titan Size, Low",
  44327. height: math.unit(91, "meters"),
  44328. },
  44329. {
  44330. name: "Titan Size, Mid",
  44331. height: math.unit(122, "meters")
  44332. },
  44333. {
  44334. name: "Titan Size, High",
  44335. height: math.unit(162, "meters")
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(53, "meters"),
  44344. name: "Front",
  44345. image: {
  44346. source: "./media/characters/stellar-marbey/front.svg",
  44347. extra: 1913/1805,
  44348. bottom: 92/2005
  44349. }
  44350. },
  44351. back: {
  44352. height: math.unit(53, "meters"),
  44353. name: "Back",
  44354. image: {
  44355. source: "./media/characters/stellar-marbey/back.svg",
  44356. extra: 1960/1851,
  44357. bottom: 28/1988
  44358. }
  44359. },
  44360. mouth: {
  44361. height: math.unit(3.5, "meters"),
  44362. name: "Mouth",
  44363. image: {
  44364. source: "./media/characters/stellar-marbey/mouth.svg"
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Macro",
  44371. height: math.unit(53, "meters"),
  44372. default: true
  44373. },
  44374. ]
  44375. ))
  44376. characterMakers.push(() => makeCharacter(
  44377. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44378. {
  44379. front: {
  44380. height: math.unit(8 + 1/12, "feet"),
  44381. weight: math.unit(233, "lb"),
  44382. name: "Front",
  44383. image: {
  44384. source: "./media/characters/matsu/front.svg",
  44385. extra: 832/772,
  44386. bottom: 40/872
  44387. }
  44388. },
  44389. back: {
  44390. height: math.unit(8 + 1/12, "feet"),
  44391. weight: math.unit(233, "lb"),
  44392. name: "Back",
  44393. image: {
  44394. source: "./media/characters/matsu/back.svg",
  44395. extra: 839/780,
  44396. bottom: 47/886
  44397. }
  44398. },
  44399. },
  44400. [
  44401. {
  44402. name: "Normal",
  44403. height: math.unit(8 + 1/12, "feet"),
  44404. default: true
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(4, "feet"),
  44413. weight: math.unit(148, "lb"),
  44414. name: "Front",
  44415. image: {
  44416. source: "./media/characters/thiz/front.svg",
  44417. extra: 1913/1748,
  44418. bottom: 62/1975
  44419. }
  44420. },
  44421. },
  44422. [
  44423. {
  44424. name: "Normal",
  44425. height: math.unit(4, "feet"),
  44426. default: true
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44432. {
  44433. front: {
  44434. height: math.unit(7 + 6/12, "feet"),
  44435. weight: math.unit(267, "lb"),
  44436. name: "Front",
  44437. image: {
  44438. source: "./media/characters/marcel/front.svg",
  44439. extra: 1221/1096,
  44440. bottom: 76/1297
  44441. }
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Normal",
  44447. height: math.unit(7 + 6/12, "feet"),
  44448. default: true
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44454. {
  44455. side: {
  44456. height: math.unit(42, "meters"),
  44457. name: "Side",
  44458. image: {
  44459. source: "./media/characters/flake/side.svg",
  44460. extra: 1525/1306,
  44461. bottom: 209/1734
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(42, "meters"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44475. {
  44476. dressed: {
  44477. height: math.unit(6 + 4/12, "feet"),
  44478. weight: math.unit(520, "lb"),
  44479. name: "Dressed",
  44480. image: {
  44481. source: "./media/characters/someonne/dressed.svg",
  44482. extra: 1020/1010,
  44483. bottom: 178/1198
  44484. }
  44485. },
  44486. undressed: {
  44487. height: math.unit(6 + 4/12, "feet"),
  44488. weight: math.unit(520, "lb"),
  44489. name: "Undressed",
  44490. image: {
  44491. source: "./media/characters/someonne/undressed.svg",
  44492. extra: 1019/1014,
  44493. bottom: 169/1188
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(6 + 4/12, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44507. {
  44508. front: {
  44509. height: math.unit(3, "feet"),
  44510. weight: math.unit(30, "lb"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/till/front.svg",
  44514. extra: 892/823,
  44515. bottom: 55/947
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Normal",
  44522. height: math.unit(3, "feet"),
  44523. default: true
  44524. },
  44525. ]
  44526. ))
  44527. characterMakers.push(() => makeCharacter(
  44528. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44529. {
  44530. front: {
  44531. height: math.unit(9 + 8/12, "feet"),
  44532. weight: math.unit(800, "lb"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/sydney-heki/front.svg",
  44536. extra: 1360/1300,
  44537. bottom: 22/1382
  44538. }
  44539. },
  44540. back: {
  44541. height: math.unit(9 + 8/12, "feet"),
  44542. weight: math.unit(800, "lb"),
  44543. name: "Back",
  44544. image: {
  44545. source: "./media/characters/sydney-heki/back.svg",
  44546. extra: 1356/1293,
  44547. bottom: 12/1368
  44548. }
  44549. },
  44550. frontDressed: {
  44551. height: math.unit(9 + 8/12, "feet"),
  44552. weight: math.unit(800, "lb"),
  44553. name: "Front-dressed",
  44554. image: {
  44555. source: "./media/characters/sydney-heki/front-dressed.svg",
  44556. extra: 1360/1300,
  44557. bottom: 22/1382
  44558. }
  44559. },
  44560. },
  44561. [
  44562. {
  44563. name: "Normal",
  44564. height: math.unit(9 + 8/12, "feet"),
  44565. default: true
  44566. },
  44567. {
  44568. name: "Macro",
  44569. height: math.unit(500, "feet")
  44570. },
  44571. {
  44572. name: "Megamacro",
  44573. height: math.unit(3.6, "miles")
  44574. },
  44575. ]
  44576. ))
  44577. characterMakers.push(() => makeCharacter(
  44578. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44579. {
  44580. front: {
  44581. height: math.unit(200, "cm"),
  44582. weight: math.unit(250, "lb"),
  44583. name: "Front",
  44584. image: {
  44585. source: "./media/characters/fowler-karlsson/front.svg",
  44586. extra: 897/845,
  44587. bottom: 123/1020
  44588. }
  44589. },
  44590. back: {
  44591. height: math.unit(200, "cm"),
  44592. weight: math.unit(250, "lb"),
  44593. name: "Back",
  44594. image: {
  44595. source: "./media/characters/fowler-karlsson/back.svg",
  44596. extra: 999/944,
  44597. bottom: 26/1025
  44598. }
  44599. },
  44600. dick: {
  44601. height: math.unit(1.92, "feet"),
  44602. weight: math.unit(150, "lb"),
  44603. name: "Dick",
  44604. image: {
  44605. source: "./media/characters/fowler-karlsson/dick.svg"
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "Normal",
  44612. height: math.unit(200, "cm"),
  44613. default: true
  44614. },
  44615. {
  44616. name: "Smaller Macro",
  44617. height: math.unit(90, "m")
  44618. },
  44619. {
  44620. name: "Macro",
  44621. height: math.unit(150, "m")
  44622. },
  44623. {
  44624. name: "Bigger Macro",
  44625. height: math.unit(300, "m")
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44631. {
  44632. side: {
  44633. height: math.unit(8 + 2/12, "feet"),
  44634. weight: math.unit(1, "tonne"),
  44635. name: "Side",
  44636. image: {
  44637. source: "./media/characters/rylide/side.svg",
  44638. extra: 1318/1034,
  44639. bottom: 106/1424
  44640. }
  44641. },
  44642. sitting: {
  44643. height: math.unit(303, "cm"),
  44644. weight: math.unit(1, "tonne"),
  44645. name: "Sitting",
  44646. image: {
  44647. source: "./media/characters/rylide/sitting.svg",
  44648. extra: 1303/1103,
  44649. bottom: 36/1339
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(8 + 2/12, "feet"),
  44657. default: true
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(5 + 10/12, "feet"),
  44666. weight: math.unit(160, "lb"),
  44667. name: "Front",
  44668. image: {
  44669. source: "./media/characters/pudask/front.svg",
  44670. extra: 1616/1590,
  44671. bottom: 161/1777
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Ferret Height",
  44678. height: math.unit(2 + 5/12, "feet")
  44679. },
  44680. {
  44681. name: "Canon Height",
  44682. height: math.unit(5 + 10/12, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44689. {
  44690. front: {
  44691. height: math.unit(3 + 6/12, "feet"),
  44692. weight: math.unit(60, "lb"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/ramita/front.svg",
  44696. extra: 1402/1232,
  44697. bottom: 62/1464
  44698. }
  44699. },
  44700. dressed: {
  44701. height: math.unit(3 + 6/12, "feet"),
  44702. weight: math.unit(60, "lb"),
  44703. name: "Dressed",
  44704. image: {
  44705. source: "./media/characters/ramita/dressed.svg",
  44706. extra: 1534/1249,
  44707. bottom: 50/1584
  44708. }
  44709. },
  44710. },
  44711. [
  44712. {
  44713. name: "Normal",
  44714. height: math.unit(3 + 6/12, "feet"),
  44715. default: true
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44721. {
  44722. front: {
  44723. height: math.unit(8, "feet"),
  44724. name: "Front",
  44725. image: {
  44726. source: "./media/characters/ark/front.svg",
  44727. extra: 772/693,
  44728. bottom: 45/817
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Normal",
  44735. height: math.unit(8, "feet"),
  44736. default: true
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44742. {
  44743. front: {
  44744. height: math.unit(6, "feet"),
  44745. weight: math.unit(250, "lb"),
  44746. volume: math.unit(5/8, "gallons"),
  44747. name: "Front",
  44748. image: {
  44749. source: "./media/characters/ludwig-horn/front.svg",
  44750. extra: 1782/1635,
  44751. bottom: 96/1878
  44752. }
  44753. },
  44754. back: {
  44755. height: math.unit(6, "feet"),
  44756. weight: math.unit(250, "lb"),
  44757. volume: math.unit(5/8, "gallons"),
  44758. name: "Back",
  44759. image: {
  44760. source: "./media/characters/ludwig-horn/back.svg",
  44761. extra: 1874/1729,
  44762. bottom: 27/1901
  44763. }
  44764. },
  44765. dick: {
  44766. height: math.unit(1.05, "feet"),
  44767. weight: math.unit(15, "lb"),
  44768. volume: math.unit(5/8, "gallons"),
  44769. name: "Dick",
  44770. image: {
  44771. source: "./media/characters/ludwig-horn/dick.svg"
  44772. }
  44773. },
  44774. },
  44775. [
  44776. {
  44777. name: "Small",
  44778. height: math.unit(6, "feet")
  44779. },
  44780. {
  44781. name: "Typical",
  44782. height: math.unit(12, "feet"),
  44783. default: true
  44784. },
  44785. {
  44786. name: "Building",
  44787. height: math.unit(80, "feet")
  44788. },
  44789. {
  44790. name: "Town",
  44791. height: math.unit(800, "feet")
  44792. },
  44793. {
  44794. name: "Kingdom",
  44795. height: math.unit(80000, "feet")
  44796. },
  44797. {
  44798. name: "Planet",
  44799. height: math.unit(8000000, "feet")
  44800. },
  44801. {
  44802. name: "Universe",
  44803. height: math.unit(8000000000, "feet")
  44804. },
  44805. {
  44806. name: "Transcended",
  44807. height: math.unit(8e27, "feet")
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44813. {
  44814. front: {
  44815. height: math.unit(5, "feet"),
  44816. weight: math.unit(50, "kg"),
  44817. name: "Front",
  44818. image: {
  44819. source: "./media/characters/biot-avery/front.svg",
  44820. extra: 1295/1232,
  44821. bottom: 86/1381
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Normal",
  44828. height: math.unit(5, "feet"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(6, "feet"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/kitsune-kiro/front.svg",
  44841. extra: 1270/1158,
  44842. bottom: 42/1312
  44843. }
  44844. },
  44845. frontAlt: {
  44846. height: math.unit(6, "feet"),
  44847. name: "Front-alt",
  44848. image: {
  44849. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44850. extra: 1130/1081,
  44851. bottom: 36/1166
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Smol",
  44858. height: math.unit(3, "feet")
  44859. },
  44860. {
  44861. name: "Normal",
  44862. height: math.unit(6, "feet"),
  44863. default: true
  44864. },
  44865. ]
  44866. ))
  44867. characterMakers.push(() => makeCharacter(
  44868. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44869. {
  44870. front: {
  44871. height: math.unit(6, "feet"),
  44872. weight: math.unit(125, "lb"),
  44873. name: "Front",
  44874. image: {
  44875. source: "./media/characters/jack-thatcher/front.svg",
  44876. extra: 1474/1370,
  44877. bottom: 26/1500
  44878. }
  44879. },
  44880. back: {
  44881. height: math.unit(6, "feet"),
  44882. weight: math.unit(125, "lb"),
  44883. name: "Back",
  44884. image: {
  44885. source: "./media/characters/jack-thatcher/back.svg",
  44886. extra: 1489/1384,
  44887. bottom: 18/1507
  44888. }
  44889. },
  44890. },
  44891. [
  44892. {
  44893. name: "Normal",
  44894. height: math.unit(6, "feet"),
  44895. default: true
  44896. },
  44897. {
  44898. name: "Macro",
  44899. height: math.unit(75, "feet")
  44900. },
  44901. {
  44902. name: "Macro-er",
  44903. height: math.unit(250, "feet")
  44904. },
  44905. ]
  44906. ))
  44907. characterMakers.push(() => makeCharacter(
  44908. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44909. {
  44910. front: {
  44911. height: math.unit(7, "feet"),
  44912. weight: math.unit(110, "kg"),
  44913. name: "Front",
  44914. image: {
  44915. source: "./media/characters/max-hyper/front.svg",
  44916. extra: 1969/1881,
  44917. bottom: 49/2018
  44918. }
  44919. },
  44920. },
  44921. [
  44922. {
  44923. name: "Normal",
  44924. height: math.unit(7, "feet"),
  44925. default: true
  44926. },
  44927. ]
  44928. ))
  44929. characterMakers.push(() => makeCharacter(
  44930. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44931. {
  44932. front: {
  44933. height: math.unit(5 + 5/12, "feet"),
  44934. weight: math.unit(160, "lb"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/spook/front.svg",
  44938. extra: 794/791,
  44939. bottom: 54/848
  44940. }
  44941. },
  44942. back: {
  44943. height: math.unit(5 + 5/12, "feet"),
  44944. weight: math.unit(160, "lb"),
  44945. name: "Back",
  44946. image: {
  44947. source: "./media/characters/spook/back.svg",
  44948. extra: 812/798,
  44949. bottom: 32/844
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Normal",
  44956. height: math.unit(5 + 5/12, "feet"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44963. {
  44964. front: {
  44965. height: math.unit(18, "feet"),
  44966. name: "Front",
  44967. image: {
  44968. source: "./media/characters/xeaduulix/front.svg",
  44969. extra: 1380/1166,
  44970. bottom: 110/1490
  44971. }
  44972. },
  44973. back: {
  44974. height: math.unit(18, "feet"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/xeaduulix/back.svg",
  44978. extra: 1592/1170,
  44979. bottom: 128/1720
  44980. }
  44981. },
  44982. frontNsfw: {
  44983. height: math.unit(18, "feet"),
  44984. name: "Front (NSFW)",
  44985. image: {
  44986. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44987. extra: 1380/1166,
  44988. bottom: 110/1490
  44989. }
  44990. },
  44991. backNsfw: {
  44992. height: math.unit(18, "feet"),
  44993. name: "Back (NSFW)",
  44994. image: {
  44995. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44996. extra: 1592/1170,
  44997. bottom: 128/1720
  44998. }
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(18, "feet"),
  45005. default: true
  45006. },
  45007. ]
  45008. ))
  45009. characterMakers.push(() => makeCharacter(
  45010. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45011. {
  45012. spreadWings: {
  45013. height: math.unit(20, "feet"),
  45014. name: "Spread Wings",
  45015. image: {
  45016. source: "./media/characters/fledge/spread-wings.svg",
  45017. extra: 693/635,
  45018. bottom: 26/719
  45019. }
  45020. },
  45021. front: {
  45022. height: math.unit(20, "feet"),
  45023. name: "Front",
  45024. image: {
  45025. source: "./media/characters/fledge/front.svg",
  45026. extra: 684/637,
  45027. bottom: 18/702
  45028. }
  45029. },
  45030. frontAlt: {
  45031. height: math.unit(20, "feet"),
  45032. name: "Front (Alt)",
  45033. image: {
  45034. source: "./media/characters/fledge/front-alt.svg",
  45035. extra: 708/664,
  45036. bottom: 13/721
  45037. }
  45038. },
  45039. back: {
  45040. height: math.unit(20, "feet"),
  45041. name: "Back",
  45042. image: {
  45043. source: "./media/characters/fledge/back.svg",
  45044. extra: 718/634,
  45045. bottom: 22/740
  45046. }
  45047. },
  45048. head: {
  45049. height: math.unit(5.55, "feet"),
  45050. name: "Head",
  45051. image: {
  45052. source: "./media/characters/fledge/head.svg"
  45053. }
  45054. },
  45055. headAlt: {
  45056. height: math.unit(5.1, "feet"),
  45057. name: "Head (Alt)",
  45058. image: {
  45059. source: "./media/characters/fledge/head-alt.svg"
  45060. }
  45061. },
  45062. },
  45063. [
  45064. {
  45065. name: "Small",
  45066. height: math.unit(6 + 2/12, "feet")
  45067. },
  45068. {
  45069. name: "Big",
  45070. height: math.unit(20, "feet"),
  45071. default: true
  45072. },
  45073. {
  45074. name: "Giant",
  45075. height: math.unit(100, "feet")
  45076. },
  45077. {
  45078. name: "Macro",
  45079. height: math.unit(200, "feet")
  45080. },
  45081. ]
  45082. ))
  45083. characterMakers.push(() => makeCharacter(
  45084. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45085. {
  45086. front: {
  45087. height: math.unit(1, "meter"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/atlas-morenai/front.svg",
  45091. extra: 1275/1043,
  45092. bottom: 19/1294
  45093. }
  45094. },
  45095. back: {
  45096. height: math.unit(1, "meter"),
  45097. name: "Back",
  45098. image: {
  45099. source: "./media/characters/atlas-morenai/back.svg",
  45100. extra: 1141/1001,
  45101. bottom: 25/1166
  45102. }
  45103. },
  45104. },
  45105. [
  45106. {
  45107. name: "Normal",
  45108. height: math.unit(1, "meter"),
  45109. default: true
  45110. },
  45111. {
  45112. name: "Magic-Infused",
  45113. height: math.unit(5, "meters")
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45119. {
  45120. front: {
  45121. height: math.unit(5, "meters"),
  45122. name: "Front",
  45123. image: {
  45124. source: "./media/characters/cintia/front.svg",
  45125. extra: 1312/1228,
  45126. bottom: 38/1350
  45127. }
  45128. },
  45129. back: {
  45130. height: math.unit(5, "meters"),
  45131. name: "Back",
  45132. image: {
  45133. source: "./media/characters/cintia/back.svg",
  45134. extra: 1260/1166,
  45135. bottom: 98/1358
  45136. }
  45137. },
  45138. frontDick: {
  45139. height: math.unit(5, "meters"),
  45140. name: "Front (Dick)",
  45141. image: {
  45142. source: "./media/characters/cintia/front-dick.svg",
  45143. extra: 1312/1228,
  45144. bottom: 38/1350
  45145. }
  45146. },
  45147. backDick: {
  45148. height: math.unit(5, "meters"),
  45149. name: "Back (Dick)",
  45150. image: {
  45151. source: "./media/characters/cintia/back-dick.svg",
  45152. extra: 1260/1166,
  45153. bottom: 98/1358
  45154. }
  45155. },
  45156. bust: {
  45157. height: math.unit(1.97, "meters"),
  45158. name: "Bust",
  45159. image: {
  45160. source: "./media/characters/cintia/bust.svg",
  45161. extra: 617/565,
  45162. bottom: 0/617
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Normal",
  45169. height: math.unit(5, "meters"),
  45170. default: true
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45176. {
  45177. side: {
  45178. height: math.unit(100, "feet"),
  45179. name: "Side",
  45180. image: {
  45181. source: "./media/characters/denora/side.svg",
  45182. extra: 875/803,
  45183. bottom: 9/884
  45184. }
  45185. },
  45186. },
  45187. [
  45188. {
  45189. name: "Standard",
  45190. height: math.unit(100, "feet"),
  45191. default: true
  45192. },
  45193. {
  45194. name: "Grand",
  45195. height: math.unit(1000, "feet")
  45196. },
  45197. {
  45198. name: "Conquering",
  45199. height: math.unit(10000, "feet")
  45200. },
  45201. ]
  45202. ))
  45203. characterMakers.push(() => makeCharacter(
  45204. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45205. {
  45206. dressed: {
  45207. height: math.unit(8 + 5/12, "feet"),
  45208. weight: math.unit(700, "lb"),
  45209. name: "Dressed",
  45210. image: {
  45211. source: "./media/characters/kiva/dressed.svg",
  45212. extra: 1102/1055,
  45213. bottom: 60/1162
  45214. }
  45215. },
  45216. nude: {
  45217. height: math.unit(8 + 5/12, "feet"),
  45218. weight: math.unit(700, "lb"),
  45219. name: "Nude",
  45220. image: {
  45221. source: "./media/characters/kiva/nude.svg",
  45222. extra: 1102/1055,
  45223. bottom: 60/1162
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Base Height",
  45230. height: math.unit(8 + 5/12, "feet"),
  45231. default: true
  45232. },
  45233. {
  45234. name: "Macro",
  45235. height: math.unit(100, "feet")
  45236. },
  45237. {
  45238. name: "Max",
  45239. height: math.unit(3280, "feet")
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45245. {
  45246. front: {
  45247. height: math.unit(6 + 8/12, "feet"),
  45248. weight: math.unit(250, "lb"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/ztragon/front.svg",
  45252. extra: 1825/1684,
  45253. bottom: 98/1923
  45254. }
  45255. },
  45256. },
  45257. [
  45258. {
  45259. name: "Normal",
  45260. height: math.unit(6 + 8/12, "feet"),
  45261. default: true
  45262. },
  45263. {
  45264. name: "Macro",
  45265. height: math.unit(80, "feet")
  45266. },
  45267. ]
  45268. ))
  45269. characterMakers.push(() => makeCharacter(
  45270. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45271. {
  45272. front: {
  45273. height: math.unit(10.4, "feet"),
  45274. weight: math.unit(2, "tons"),
  45275. name: "Front",
  45276. image: {
  45277. source: "./media/characters/yesenia/front.svg",
  45278. extra: 1479/1474,
  45279. bottom: 233/1712
  45280. }
  45281. },
  45282. },
  45283. [
  45284. {
  45285. name: "Normal",
  45286. height: math.unit(10.4, "feet"),
  45287. default: true
  45288. },
  45289. ]
  45290. ))
  45291. characterMakers.push(() => makeCharacter(
  45292. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45293. {
  45294. normal: {
  45295. height: math.unit(6 + 1/12, "feet"),
  45296. weight: math.unit(180, "lb"),
  45297. name: "Normal",
  45298. image: {
  45299. source: "./media/characters/leanne-lycheborne/normal.svg",
  45300. extra: 1748/1660,
  45301. bottom: 98/1846
  45302. }
  45303. },
  45304. were: {
  45305. height: math.unit(12, "feet"),
  45306. weight: math.unit(1600, "lb"),
  45307. name: "Were",
  45308. image: {
  45309. source: "./media/characters/leanne-lycheborne/were.svg",
  45310. extra: 1485/1432,
  45311. bottom: 66/1551
  45312. }
  45313. },
  45314. },
  45315. [
  45316. {
  45317. name: "Normal",
  45318. height: math.unit(6 + 1/12, "feet"),
  45319. default: true
  45320. },
  45321. ]
  45322. ))
  45323. characterMakers.push(() => makeCharacter(
  45324. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45325. {
  45326. side: {
  45327. height: math.unit(13, "feet"),
  45328. name: "Side",
  45329. image: {
  45330. source: "./media/characters/kira-tyler/side.svg",
  45331. extra: 693/393,
  45332. bottom: 58/751
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(13, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(10.3, "feet"),
  45349. weight: math.unit(150, "lb"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/blaze/front.svg",
  45353. extra: 1378/1286,
  45354. bottom: 172/1550
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(10.3, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45368. {
  45369. side: {
  45370. height: math.unit(2, "meters"),
  45371. weight: math.unit(400, "kg"),
  45372. name: "Side",
  45373. image: {
  45374. source: "./media/characters/anu/side.svg",
  45375. extra: 506/394,
  45376. bottom: 18/524
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Humanoid",
  45383. height: math.unit(2, "meters")
  45384. },
  45385. {
  45386. name: "Normal",
  45387. height: math.unit(5, "meters"),
  45388. default: true
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45394. {
  45395. front: {
  45396. height: math.unit(5 + 5/12, "feet"),
  45397. weight: math.unit(170, "lb"),
  45398. name: "Front",
  45399. image: {
  45400. source: "./media/characters/synx-the-lynx/front.svg",
  45401. extra: 1893/1745,
  45402. bottom: 17/1910
  45403. }
  45404. },
  45405. side: {
  45406. height: math.unit(5 + 5/12, "feet"),
  45407. weight: math.unit(170, "lb"),
  45408. name: "Side",
  45409. image: {
  45410. source: "./media/characters/synx-the-lynx/side.svg",
  45411. extra: 1884/1740,
  45412. bottom: 39/1923
  45413. }
  45414. },
  45415. back: {
  45416. height: math.unit(5 + 5/12, "feet"),
  45417. weight: math.unit(170, "lb"),
  45418. name: "Back",
  45419. image: {
  45420. source: "./media/characters/synx-the-lynx/back.svg",
  45421. extra: 1903/1755,
  45422. bottom: 14/1917
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(5 + 5/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45436. {
  45437. back: {
  45438. height: math.unit(15, "feet"),
  45439. name: "Back",
  45440. image: {
  45441. source: "./media/characters/nadezda-fex/back.svg",
  45442. extra: 1695/1481,
  45443. bottom: 25/1720
  45444. }
  45445. },
  45446. },
  45447. [
  45448. {
  45449. name: "Normal",
  45450. height: math.unit(15, "feet"),
  45451. default: true
  45452. },
  45453. {
  45454. name: "Macro",
  45455. height: math.unit(2.5, "miles")
  45456. },
  45457. {
  45458. name: "Goddess",
  45459. height: math.unit(2, "multiverses")
  45460. },
  45461. ]
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45465. {
  45466. front: {
  45467. height: math.unit(216, "cm"),
  45468. name: "Front",
  45469. image: {
  45470. source: "./media/characters/lev/front.svg",
  45471. extra: 1728/1670,
  45472. bottom: 82/1810
  45473. }
  45474. },
  45475. back: {
  45476. height: math.unit(216, "cm"),
  45477. name: "Back",
  45478. image: {
  45479. source: "./media/characters/lev/back.svg",
  45480. extra: 1738/1675,
  45481. bottom: 24/1762
  45482. }
  45483. },
  45484. dressed: {
  45485. height: math.unit(216, "cm"),
  45486. name: "Dressed",
  45487. image: {
  45488. source: "./media/characters/lev/dressed.svg",
  45489. extra: 1397/1351,
  45490. bottom: 73/1470
  45491. }
  45492. },
  45493. head: {
  45494. height: math.unit(0.51, "meter"),
  45495. name: "Head",
  45496. image: {
  45497. source: "./media/characters/lev/head.svg"
  45498. }
  45499. },
  45500. },
  45501. [
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(216, "cm"),
  45505. default: true
  45506. },
  45507. {
  45508. name: "Relatively Macro",
  45509. height: math.unit(80, "meters")
  45510. },
  45511. {
  45512. name: "Megamacro",
  45513. height: math.unit(21600, "meters")
  45514. },
  45515. {
  45516. name: "Megamacro+",
  45517. height: math.unit(64800, "meters")
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(2, "meters"),
  45526. weight: math.unit(80, "kg"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/moka/front.svg",
  45530. extra: 1337/1255,
  45531. bottom: 58/1395
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Micro",
  45538. height: math.unit(15, "cm")
  45539. },
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(2, "meters"),
  45543. default: true
  45544. },
  45545. {
  45546. name: "Macro",
  45547. height: math.unit(20, "meters"),
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45553. {
  45554. front: {
  45555. height: math.unit(9, "feet"),
  45556. weight: math.unit(240, "lb"),
  45557. name: "Front",
  45558. image: {
  45559. source: "./media/characters/kuzco/front.svg",
  45560. extra: 1593/1487,
  45561. bottom: 32/1625
  45562. }
  45563. },
  45564. side: {
  45565. height: math.unit(9, "feet"),
  45566. weight: math.unit(240, "lb"),
  45567. name: "Side",
  45568. image: {
  45569. source: "./media/characters/kuzco/side.svg",
  45570. extra: 1575/1485,
  45571. bottom: 30/1605
  45572. }
  45573. },
  45574. back: {
  45575. height: math.unit(9, "feet"),
  45576. weight: math.unit(240, "lb"),
  45577. name: "Back",
  45578. image: {
  45579. source: "./media/characters/kuzco/back.svg",
  45580. extra: 1603/1514,
  45581. bottom: 14/1617
  45582. }
  45583. },
  45584. },
  45585. [
  45586. {
  45587. name: "Normal",
  45588. height: math.unit(9, "feet"),
  45589. default: true
  45590. },
  45591. ]
  45592. ))
  45593. characterMakers.push(() => makeCharacter(
  45594. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45595. {
  45596. side: {
  45597. height: math.unit(2, "meters"),
  45598. weight: math.unit(300, "kg"),
  45599. name: "Side",
  45600. image: {
  45601. source: "./media/characters/ceruleus/side.svg",
  45602. extra: 1068/974,
  45603. bottom: 126/1194
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "Normal",
  45610. height: math.unit(16, "meters"),
  45611. default: true
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45617. {
  45618. front: {
  45619. height: math.unit(9, "feet"),
  45620. weight: math.unit(500, "kg"),
  45621. name: "Front",
  45622. image: {
  45623. source: "./media/characters/acouya/front.svg",
  45624. extra: 1660/1473,
  45625. bottom: 28/1688
  45626. }
  45627. },
  45628. },
  45629. [
  45630. {
  45631. name: "Normal",
  45632. height: math.unit(9, "feet"),
  45633. default: true
  45634. },
  45635. ]
  45636. ))
  45637. characterMakers.push(() => makeCharacter(
  45638. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45639. {
  45640. front: {
  45641. height: math.unit(5 + 6/12, "feet"),
  45642. weight: math.unit(195, "lb"),
  45643. name: "Front",
  45644. image: {
  45645. source: "./media/characters/vant/front.svg",
  45646. extra: 1396/1320,
  45647. bottom: 20/1416
  45648. }
  45649. },
  45650. back: {
  45651. height: math.unit(5 + 6/12, "feet"),
  45652. weight: math.unit(195, "lb"),
  45653. name: "Back",
  45654. image: {
  45655. source: "./media/characters/vant/back.svg",
  45656. extra: 1396/1320,
  45657. bottom: 20/1416
  45658. }
  45659. },
  45660. maw: {
  45661. height: math.unit(0.75, "feet"),
  45662. name: "Maw",
  45663. image: {
  45664. source: "./media/characters/vant/maw.svg"
  45665. }
  45666. },
  45667. paw: {
  45668. height: math.unit(1.07, "feet"),
  45669. name: "Paw",
  45670. image: {
  45671. source: "./media/characters/vant/paw.svg"
  45672. }
  45673. },
  45674. },
  45675. [
  45676. {
  45677. name: "Micro",
  45678. height: math.unit(0.25, "inches")
  45679. },
  45680. {
  45681. name: "Normal",
  45682. height: math.unit(5 + 6/12, "feet"),
  45683. default: true
  45684. },
  45685. {
  45686. name: "Macro",
  45687. height: math.unit(75, "feet")
  45688. },
  45689. ]
  45690. ))
  45691. characterMakers.push(() => makeCharacter(
  45692. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45693. {
  45694. front: {
  45695. height: math.unit(30, "meters"),
  45696. weight: math.unit(363, "tons"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/ahra/front.svg",
  45700. extra: 1914/1814,
  45701. bottom: 46/1960
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Macro",
  45708. height: math.unit(30, "meters"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45715. {
  45716. undressed: {
  45717. height: math.unit(2, "m"),
  45718. weight: math.unit(250, "kg"),
  45719. name: "Undressed",
  45720. image: {
  45721. source: "./media/characters/coriander/undressed.svg",
  45722. extra: 1757/1606,
  45723. bottom: 107/1864
  45724. }
  45725. },
  45726. dressed: {
  45727. height: math.unit(2, "m"),
  45728. weight: math.unit(250, "kg"),
  45729. name: "Dressed",
  45730. image: {
  45731. source: "./media/characters/coriander/dressed.svg",
  45732. extra: 1757/1606,
  45733. bottom: 107/1864
  45734. }
  45735. },
  45736. },
  45737. [
  45738. {
  45739. name: "Normal",
  45740. height: math.unit(4, "meters"),
  45741. default: true
  45742. },
  45743. {
  45744. name: "XL",
  45745. height: math.unit(6, "meters")
  45746. },
  45747. {
  45748. name: "XXL",
  45749. height: math.unit(8, "meters")
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(6, "feet"),
  45758. name: "Front",
  45759. image: {
  45760. source: "./media/characters/syrinx/front.svg",
  45761. extra: 1557/1259,
  45762. bottom: 171/1728
  45763. }
  45764. },
  45765. },
  45766. [
  45767. {
  45768. name: "Normal",
  45769. height: math.unit(6 + 3/12, "feet"),
  45770. default: true
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(11 + 6/12, "feet"),
  45779. weight: math.unit(1.5, "tons"),
  45780. name: "Front",
  45781. image: {
  45782. source: "./media/characters/bor/front.svg",
  45783. extra: 1189/1109,
  45784. bottom: 170/1359
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(11 + 6/12, "feet"),
  45792. default: true
  45793. },
  45794. {
  45795. name: "Macro",
  45796. height: math.unit(32 + 9/12, "feet")
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45802. {
  45803. anthro: {
  45804. height: math.unit(9, "feet"),
  45805. weight: math.unit(2076, "lb"),
  45806. name: "Anthro",
  45807. image: {
  45808. source: "./media/characters/abacus/anthro.svg",
  45809. extra: 1540/1494,
  45810. bottom: 233/1773
  45811. }
  45812. },
  45813. pigeon: {
  45814. height: math.unit(1, "feet"),
  45815. name: "Pigeon",
  45816. image: {
  45817. source: "./media/characters/abacus/pigeon.svg",
  45818. extra: 528/525,
  45819. bottom: 46/574
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(9, "feet"),
  45827. default: true
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45833. {
  45834. side: {
  45835. height: math.unit(6, "feet"),
  45836. name: "Side",
  45837. image: {
  45838. source: "./media/characters/delkhan/side.svg",
  45839. extra: 1884/1786,
  45840. bottom: 308/2192
  45841. }
  45842. },
  45843. head: {
  45844. height: math.unit(3.38, "feet"),
  45845. name: "Head",
  45846. image: {
  45847. source: "./media/characters/delkhan/head.svg"
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(72, "feet"),
  45855. default: true
  45856. },
  45857. {
  45858. name: "Giant",
  45859. height: math.unit(172, "feet")
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45865. {
  45866. standing: {
  45867. height: math.unit(6, "feet"),
  45868. name: "Standing",
  45869. image: {
  45870. source: "./media/characters/euchidat/standing.svg",
  45871. extra: 1612/1553,
  45872. bottom: 116/1728
  45873. }
  45874. },
  45875. leaning: {
  45876. height: math.unit(6, "feet"),
  45877. name: "Leaning",
  45878. image: {
  45879. source: "./media/characters/euchidat/leaning.svg",
  45880. extra: 1719/1674,
  45881. bottom: 27/1746
  45882. }
  45883. },
  45884. },
  45885. [
  45886. {
  45887. name: "Normal",
  45888. height: math.unit(175, "feet"),
  45889. default: true
  45890. },
  45891. {
  45892. name: "Megamacro",
  45893. height: math.unit(190, "miles")
  45894. },
  45895. {
  45896. name: "Gigamacro",
  45897. height: math.unit(190000, "miles")
  45898. },
  45899. ]
  45900. ))
  45901. characterMakers.push(() => makeCharacter(
  45902. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45903. {
  45904. front: {
  45905. height: math.unit(6, "feet"),
  45906. weight: math.unit(150, "lb"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/rebecca-stack/front.svg",
  45910. extra: 1256/1201,
  45911. bottom: 18/1274
  45912. }
  45913. },
  45914. },
  45915. [
  45916. {
  45917. name: "Normal",
  45918. height: math.unit(5 + 8/12, "feet"),
  45919. default: true
  45920. },
  45921. {
  45922. name: "Demolitionist",
  45923. height: math.unit(200, "feet")
  45924. },
  45925. {
  45926. name: "Out of Control",
  45927. height: math.unit(2, "miles")
  45928. },
  45929. {
  45930. name: "Giga",
  45931. height: math.unit(7200, "miles")
  45932. },
  45933. ]
  45934. ))
  45935. characterMakers.push(() => makeCharacter(
  45936. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45937. {
  45938. front: {
  45939. height: math.unit(6, "feet"),
  45940. weight: math.unit(150, "lb"),
  45941. name: "Front",
  45942. image: {
  45943. source: "./media/characters/jenny-cartwright/front.svg",
  45944. extra: 1384/1376,
  45945. bottom: 58/1442
  45946. }
  45947. },
  45948. },
  45949. [
  45950. {
  45951. name: "Normal",
  45952. height: math.unit(6 + 7/12, "feet"),
  45953. default: true
  45954. },
  45955. {
  45956. name: "Librarian",
  45957. height: math.unit(55, "feet")
  45958. },
  45959. {
  45960. name: "Sightseer",
  45961. height: math.unit(50, "miles")
  45962. },
  45963. {
  45964. name: "Giga",
  45965. height: math.unit(30000, "miles")
  45966. },
  45967. ]
  45968. ))
  45969. characterMakers.push(() => makeCharacter(
  45970. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45971. {
  45972. nude: {
  45973. height: math.unit(8, "feet"),
  45974. weight: math.unit(225, "lb"),
  45975. name: "Nude",
  45976. image: {
  45977. source: "./media/characters/marvy/nude.svg",
  45978. extra: 1900/1683,
  45979. bottom: 89/1989
  45980. }
  45981. },
  45982. dressed: {
  45983. height: math.unit(8, "feet"),
  45984. weight: math.unit(225, "lb"),
  45985. name: "Dressed",
  45986. image: {
  45987. source: "./media/characters/marvy/dressed.svg",
  45988. extra: 1900/1683,
  45989. bottom: 89/1989
  45990. }
  45991. },
  45992. head: {
  45993. height: math.unit(2.85, "feet"),
  45994. name: "Head",
  45995. image: {
  45996. source: "./media/characters/marvy/head.svg"
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Normal",
  46003. height: math.unit(8, "feet"),
  46004. default: true
  46005. },
  46006. ]
  46007. ))
  46008. characterMakers.push(() => makeCharacter(
  46009. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46010. {
  46011. front: {
  46012. height: math.unit(8, "feet"),
  46013. weight: math.unit(250, "lb"),
  46014. name: "Front",
  46015. image: {
  46016. source: "./media/characters/leah/front.svg",
  46017. extra: 1257/1149,
  46018. bottom: 109/1366
  46019. }
  46020. },
  46021. },
  46022. [
  46023. {
  46024. name: "Normal",
  46025. height: math.unit(8, "feet"),
  46026. default: true
  46027. },
  46028. {
  46029. name: "Minimacro",
  46030. height: math.unit(40, "feet")
  46031. },
  46032. {
  46033. name: "Macro",
  46034. height: math.unit(124, "feet")
  46035. },
  46036. {
  46037. name: "Megamacro",
  46038. height: math.unit(850, "feet")
  46039. },
  46040. ]
  46041. ))
  46042. characterMakers.push(() => makeCharacter(
  46043. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46044. {
  46045. side: {
  46046. height: math.unit(13 + 6/12, "feet"),
  46047. weight: math.unit(3200, "lb"),
  46048. name: "Side",
  46049. image: {
  46050. source: "./media/characters/alvir/side.svg",
  46051. extra: 896/589,
  46052. bottom: 26/922
  46053. }
  46054. },
  46055. },
  46056. [
  46057. {
  46058. name: "Normal",
  46059. height: math.unit(13 + 6/12, "feet"),
  46060. default: true
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46066. {
  46067. front: {
  46068. height: math.unit(5 + 4/12, "feet"),
  46069. weight: math.unit(236, "lb"),
  46070. name: "Front",
  46071. image: {
  46072. source: "./media/characters/zaina-khalil/front.svg",
  46073. extra: 1533/1485,
  46074. bottom: 94/1627
  46075. }
  46076. },
  46077. side: {
  46078. height: math.unit(5 + 4/12, "feet"),
  46079. weight: math.unit(236, "lb"),
  46080. name: "Side",
  46081. image: {
  46082. source: "./media/characters/zaina-khalil/side.svg",
  46083. extra: 1537/1498,
  46084. bottom: 66/1603
  46085. }
  46086. },
  46087. back: {
  46088. height: math.unit(5 + 4/12, "feet"),
  46089. weight: math.unit(236, "lb"),
  46090. name: "Back",
  46091. image: {
  46092. source: "./media/characters/zaina-khalil/back.svg",
  46093. extra: 1546/1494,
  46094. bottom: 89/1635
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(5 + 4/12, "feet"),
  46102. default: true
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46108. {
  46109. side: {
  46110. height: math.unit(12, "feet"),
  46111. weight: math.unit(4000, "lb"),
  46112. name: "Side",
  46113. image: {
  46114. source: "./media/characters/terry/side.svg",
  46115. extra: 1518/1439,
  46116. bottom: 149/1667
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(12, "feet"),
  46124. default: true
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46130. {
  46131. front: {
  46132. height: math.unit(12, "feet"),
  46133. weight: math.unit(1500, "lb"),
  46134. name: "Front",
  46135. image: {
  46136. source: "./media/characters/kahea/front.svg",
  46137. extra: 1722/1617,
  46138. bottom: 179/1901
  46139. }
  46140. },
  46141. },
  46142. [
  46143. {
  46144. name: "Normal",
  46145. height: math.unit(12, "feet"),
  46146. default: true
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46152. {
  46153. demonFront: {
  46154. height: math.unit(36, "feet"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/alex-xuria/demon-front.svg",
  46158. extra: 1705/1673,
  46159. bottom: 198/1903
  46160. },
  46161. form: "demon",
  46162. default: true
  46163. },
  46164. demonBack: {
  46165. height: math.unit(36, "feet"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/alex-xuria/demon-back.svg",
  46169. extra: 1725/1693,
  46170. bottom: 70/1795
  46171. },
  46172. form: "demon"
  46173. },
  46174. demonHead: {
  46175. height: math.unit(2.14, "meters"),
  46176. name: "Head",
  46177. image: {
  46178. source: "./media/characters/alex-xuria/demon-head.svg"
  46179. },
  46180. form: "demon"
  46181. },
  46182. demonHand: {
  46183. height: math.unit(1.61, "meters"),
  46184. name: "Hand",
  46185. image: {
  46186. source: "./media/characters/alex-xuria/demon-hand.svg"
  46187. },
  46188. form: "demon"
  46189. },
  46190. demonPaw: {
  46191. height: math.unit(1.35, "meters"),
  46192. name: "Paw",
  46193. image: {
  46194. source: "./media/characters/alex-xuria/demon-paw.svg"
  46195. },
  46196. form: "demon"
  46197. },
  46198. demonFoot: {
  46199. height: math.unit(2.2, "meters"),
  46200. name: "Foot",
  46201. image: {
  46202. source: "./media/characters/alex-xuria/demon-foot.svg"
  46203. },
  46204. form: "demon"
  46205. },
  46206. demonCock: {
  46207. height: math.unit(1.74, "meters"),
  46208. name: "Cock",
  46209. image: {
  46210. source: "./media/characters/alex-xuria/demon-cock.svg"
  46211. },
  46212. form: "demon"
  46213. },
  46214. demonTailClosed: {
  46215. height: math.unit(1.47, "meters"),
  46216. name: "Tail (Closed)",
  46217. image: {
  46218. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46219. },
  46220. form: "demon"
  46221. },
  46222. demonTailOpen: {
  46223. height: math.unit(2.85, "meters"),
  46224. name: "Tail (Open)",
  46225. image: {
  46226. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46227. },
  46228. form: "demon"
  46229. },
  46230. incubusFront: {
  46231. height: math.unit(12, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/alex-xuria/incubus-front.svg",
  46235. extra: 1754/1677,
  46236. bottom: 125/1879
  46237. },
  46238. form: "incubus",
  46239. default: true
  46240. },
  46241. incubusBack: {
  46242. height: math.unit(12, "feet"),
  46243. name: "Back",
  46244. image: {
  46245. source: "./media/characters/alex-xuria/incubus-back.svg",
  46246. extra: 1702/1647,
  46247. bottom: 30/1732
  46248. },
  46249. form: "incubus"
  46250. },
  46251. incubusHead: {
  46252. height: math.unit(3.45, "feet"),
  46253. name: "Head",
  46254. image: {
  46255. source: "./media/characters/alex-xuria/incubus-head.svg"
  46256. },
  46257. form: "incubus"
  46258. },
  46259. rabbitFront: {
  46260. height: math.unit(6, "feet"),
  46261. name: "Front",
  46262. image: {
  46263. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46264. extra: 1369/1349,
  46265. bottom: 45/1414
  46266. },
  46267. form: "rabbit",
  46268. default: true
  46269. },
  46270. rabbitSide: {
  46271. height: math.unit(6, "feet"),
  46272. name: "Side",
  46273. image: {
  46274. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46275. extra: 1370/1356,
  46276. bottom: 37/1407
  46277. },
  46278. form: "rabbit"
  46279. },
  46280. rabbitBack: {
  46281. height: math.unit(6, "feet"),
  46282. name: "Back",
  46283. image: {
  46284. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46285. extra: 1375/1358,
  46286. bottom: 43/1418
  46287. },
  46288. form: "rabbit"
  46289. },
  46290. },
  46291. [
  46292. {
  46293. name: "Normal",
  46294. height: math.unit(6, "feet"),
  46295. default: true,
  46296. form: "rabbit"
  46297. },
  46298. {
  46299. name: "Incubus",
  46300. height: math.unit(12, "feet"),
  46301. default: true,
  46302. form: "incubus"
  46303. },
  46304. {
  46305. name: "Demon",
  46306. height: math.unit(36, "feet"),
  46307. default: true,
  46308. form: "demon"
  46309. }
  46310. ],
  46311. {
  46312. "demon": {
  46313. name: "Demon",
  46314. default: true
  46315. },
  46316. "incubus": {
  46317. name: "Incubus",
  46318. },
  46319. "rabbit": {
  46320. name: "Rabbit"
  46321. }
  46322. }
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(7 + 5/12, "feet"),
  46329. weight: math.unit(510, "lb"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/syrup/front.svg",
  46333. extra: 932/916,
  46334. bottom: 26/958
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(7 + 5/12, "feet"),
  46342. default: true
  46343. },
  46344. {
  46345. name: "Big",
  46346. height: math.unit(50, "feet")
  46347. },
  46348. {
  46349. name: "Macro",
  46350. height: math.unit(300, "feet")
  46351. },
  46352. {
  46353. name: "Megamacro",
  46354. height: math.unit(1, "mile")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(6 + 9/12, "feet"),
  46363. name: "Front",
  46364. image: {
  46365. source: "./media/characters/zeimne/front.svg",
  46366. extra: 1969/1806,
  46367. bottom: 53/2022
  46368. }
  46369. },
  46370. },
  46371. [
  46372. {
  46373. name: "Normal",
  46374. height: math.unit(6 + 9/12, "feet"),
  46375. default: true
  46376. },
  46377. {
  46378. name: "Giant",
  46379. height: math.unit(550, "feet")
  46380. },
  46381. {
  46382. name: "Mega",
  46383. height: math.unit(3, "miles")
  46384. },
  46385. {
  46386. name: "Giga",
  46387. height: math.unit(250, "miles")
  46388. },
  46389. {
  46390. name: "Tera",
  46391. height: math.unit(1, "AU")
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46397. {
  46398. front: {
  46399. height: math.unit(5 + 2/12, "feet"),
  46400. name: "Front",
  46401. image: {
  46402. source: "./media/characters/grar/front.svg",
  46403. extra: 1331/1119,
  46404. bottom: 60/1391
  46405. }
  46406. },
  46407. back: {
  46408. height: math.unit(5 + 2/12, "feet"),
  46409. name: "Back",
  46410. image: {
  46411. source: "./media/characters/grar/back.svg",
  46412. extra: 1385/1169,
  46413. bottom: 23/1408
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(5 + 2/12, "feet"),
  46421. default: true
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(13 + 7/12, "feet"),
  46430. weight: math.unit(2200, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/endraya/front.svg",
  46434. extra: 1289/1215,
  46435. bottom: 50/1339
  46436. }
  46437. },
  46438. nude: {
  46439. height: math.unit(13 + 7/12, "feet"),
  46440. weight: math.unit(2200, "lb"),
  46441. name: "Nude",
  46442. image: {
  46443. source: "./media/characters/endraya/nude.svg",
  46444. extra: 1247/1171,
  46445. bottom: 40/1287
  46446. }
  46447. },
  46448. head: {
  46449. height: math.unit(2.6, "feet"),
  46450. name: "Head",
  46451. image: {
  46452. source: "./media/characters/endraya/head.svg"
  46453. }
  46454. },
  46455. slit: {
  46456. height: math.unit(3.4, "feet"),
  46457. name: "Slit",
  46458. image: {
  46459. source: "./media/characters/endraya/slit.svg"
  46460. }
  46461. },
  46462. },
  46463. [
  46464. {
  46465. name: "Normal",
  46466. height: math.unit(13 + 7/12, "feet"),
  46467. default: true
  46468. },
  46469. {
  46470. name: "Macro",
  46471. height: math.unit(200, "feet")
  46472. },
  46473. ]
  46474. ))
  46475. characterMakers.push(() => makeCharacter(
  46476. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46477. {
  46478. front: {
  46479. height: math.unit(1.81, "meters"),
  46480. weight: math.unit(69, "kg"),
  46481. name: "Front",
  46482. image: {
  46483. source: "./media/characters/rodryana/front.svg",
  46484. extra: 2002/1921,
  46485. bottom: 53/2055
  46486. }
  46487. },
  46488. back: {
  46489. height: math.unit(1.81, "meters"),
  46490. weight: math.unit(69, "kg"),
  46491. name: "Back",
  46492. image: {
  46493. source: "./media/characters/rodryana/back.svg",
  46494. extra: 1993/1926,
  46495. bottom: 48/2041
  46496. }
  46497. },
  46498. maw: {
  46499. height: math.unit(0.19769417475, "meters"),
  46500. name: "Maw",
  46501. image: {
  46502. source: "./media/characters/rodryana/maw.svg"
  46503. }
  46504. },
  46505. slit: {
  46506. height: math.unit(0.31631067961, "meters"),
  46507. name: "Slit",
  46508. image: {
  46509. source: "./media/characters/rodryana/slit.svg"
  46510. }
  46511. },
  46512. },
  46513. [
  46514. {
  46515. name: "Normal",
  46516. height: math.unit(1.81, "meters")
  46517. },
  46518. {
  46519. name: "Mini Macro",
  46520. height: math.unit(181, "meters")
  46521. },
  46522. {
  46523. name: "Macro",
  46524. height: math.unit(452, "meters"),
  46525. default: true
  46526. },
  46527. {
  46528. name: "Mega Macro",
  46529. height: math.unit(1.375, "km")
  46530. },
  46531. {
  46532. name: "Giga Macro",
  46533. height: math.unit(13.575, "km")
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46539. {
  46540. front: {
  46541. height: math.unit(6, "feet"),
  46542. weight: math.unit(1000, "lb"),
  46543. name: "Front",
  46544. image: {
  46545. source: "./media/characters/asaya/front.svg",
  46546. extra: 1460/1200,
  46547. bottom: 71/1531
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(8, "km"),
  46555. default: true
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46561. {
  46562. front: {
  46563. height: math.unit(3.5, "meters"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/sarzu-and-israz/front.svg",
  46567. extra: 1570/1558,
  46568. bottom: 150/1720
  46569. },
  46570. },
  46571. back: {
  46572. height: math.unit(3.5, "meters"),
  46573. name: "Back",
  46574. image: {
  46575. source: "./media/characters/sarzu-and-israz/back.svg",
  46576. extra: 1523/1509,
  46577. bottom: 132/1655
  46578. },
  46579. },
  46580. frontFemale: {
  46581. height: math.unit(3.5, "meters"),
  46582. name: "Front (Female)",
  46583. image: {
  46584. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46585. extra: 1570/1558,
  46586. bottom: 150/1720
  46587. },
  46588. },
  46589. frontHerm: {
  46590. height: math.unit(3.5, "meters"),
  46591. name: "Front (Herm)",
  46592. image: {
  46593. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46594. extra: 1570/1558,
  46595. bottom: 150/1720
  46596. },
  46597. },
  46598. },
  46599. [
  46600. {
  46601. name: "Normal",
  46602. height: math.unit(3.5, "meters"),
  46603. default: true,
  46604. },
  46605. {
  46606. name: "Macro",
  46607. height: math.unit(65.5, "meters"),
  46608. },
  46609. ],
  46610. ))
  46611. characterMakers.push(() => makeCharacter(
  46612. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46613. {
  46614. front: {
  46615. height: math.unit(6, "feet"),
  46616. weight: math.unit(250, "lb"),
  46617. name: "Front",
  46618. image: {
  46619. source: "./media/characters/zenimma/front.svg",
  46620. extra: 1346/1320,
  46621. bottom: 58/1404
  46622. }
  46623. },
  46624. back: {
  46625. height: math.unit(6, "feet"),
  46626. weight: math.unit(250, "lb"),
  46627. name: "Back",
  46628. image: {
  46629. source: "./media/characters/zenimma/back.svg",
  46630. extra: 1324/1308,
  46631. bottom: 44/1368
  46632. }
  46633. },
  46634. dick: {
  46635. height: math.unit(1.44, "feet"),
  46636. name: "Dick",
  46637. image: {
  46638. source: "./media/characters/zenimma/dick.svg"
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Canon Height",
  46645. height: math.unit(66, "miles"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46652. {
  46653. nude: {
  46654. height: math.unit(6, "feet"),
  46655. weight: math.unit(150, "lb"),
  46656. name: "Nude",
  46657. image: {
  46658. source: "./media/characters/shavon/nude.svg",
  46659. extra: 1242/1096,
  46660. bottom: 98/1340
  46661. }
  46662. },
  46663. dressed: {
  46664. height: math.unit(6, "feet"),
  46665. weight: math.unit(150, "lb"),
  46666. name: "Dressed",
  46667. image: {
  46668. source: "./media/characters/shavon/dressed.svg",
  46669. extra: 1242/1096,
  46670. bottom: 98/1340
  46671. }
  46672. },
  46673. },
  46674. [
  46675. {
  46676. name: "Macro",
  46677. height: math.unit(255, "feet"),
  46678. default: true
  46679. },
  46680. ]
  46681. ))
  46682. characterMakers.push(() => makeCharacter(
  46683. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46684. {
  46685. front: {
  46686. height: math.unit(6, "feet"),
  46687. name: "Front",
  46688. image: {
  46689. source: "./media/characters/steph/front.svg",
  46690. extra: 1430/1330,
  46691. bottom: 54/1484
  46692. }
  46693. },
  46694. },
  46695. [
  46696. {
  46697. name: "Normal",
  46698. height: math.unit(6, "feet"),
  46699. default: true
  46700. },
  46701. ]
  46702. ))
  46703. characterMakers.push(() => makeCharacter(
  46704. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46705. {
  46706. front: {
  46707. height: math.unit(9, "feet"),
  46708. weight: math.unit(400, "lb"),
  46709. name: "Front",
  46710. image: {
  46711. source: "./media/characters/kil'aman/front.svg",
  46712. extra: 1210/1159,
  46713. bottom: 109/1319
  46714. }
  46715. },
  46716. head: {
  46717. height: math.unit(2.14, "feet"),
  46718. name: "Head",
  46719. image: {
  46720. source: "./media/characters/kil'aman/head.svg"
  46721. }
  46722. },
  46723. maw: {
  46724. height: math.unit(1.21, "feet"),
  46725. name: "Maw",
  46726. image: {
  46727. source: "./media/characters/kil'aman/maw.svg"
  46728. }
  46729. },
  46730. foot: {
  46731. height: math.unit(1.7, "feet"),
  46732. name: "Foot",
  46733. image: {
  46734. source: "./media/characters/kil'aman/foot.svg"
  46735. }
  46736. },
  46737. dick: {
  46738. height: math.unit(2.1, "feet"),
  46739. name: "Dick",
  46740. image: {
  46741. source: "./media/characters/kil'aman/dick.svg"
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(9, "feet")
  46749. },
  46750. {
  46751. name: "Canon Height",
  46752. height: math.unit(10, "miles"),
  46753. default: true
  46754. },
  46755. {
  46756. name: "Maximum",
  46757. height: math.unit(6e9, "miles")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(90, "feet"),
  46766. weight: math.unit(675000, "lb"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/qadan/front.svg",
  46770. extra: 1012/1004,
  46771. bottom: 78/1090
  46772. }
  46773. },
  46774. back: {
  46775. height: math.unit(90, "feet"),
  46776. weight: math.unit(675000, "lb"),
  46777. name: "Back",
  46778. image: {
  46779. source: "./media/characters/qadan/back.svg",
  46780. extra: 1042/1031,
  46781. bottom: 55/1097
  46782. }
  46783. },
  46784. armored: {
  46785. height: math.unit(90, "feet"),
  46786. weight: math.unit(675000, "lb"),
  46787. name: "Armored",
  46788. image: {
  46789. source: "./media/characters/qadan/armored.svg",
  46790. extra: 1047/1037,
  46791. bottom: 48/1095
  46792. }
  46793. },
  46794. },
  46795. [
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(90, "feet"),
  46799. default: true
  46800. },
  46801. ]
  46802. ))
  46803. characterMakers.push(() => makeCharacter(
  46804. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46805. {
  46806. front: {
  46807. height: math.unit(6, "feet"),
  46808. weight: math.unit(225, "lb"),
  46809. name: "Front",
  46810. image: {
  46811. source: "./media/characters/brooke/front.svg",
  46812. extra: 1050/1010,
  46813. bottom: 66/1116
  46814. }
  46815. },
  46816. back: {
  46817. height: math.unit(6, "feet"),
  46818. weight: math.unit(225, "lb"),
  46819. name: "Back",
  46820. image: {
  46821. source: "./media/characters/brooke/back.svg",
  46822. extra: 1053/1013,
  46823. bottom: 41/1094
  46824. }
  46825. },
  46826. dressed: {
  46827. height: math.unit(6, "feet"),
  46828. weight: math.unit(225, "lb"),
  46829. name: "Dressed",
  46830. image: {
  46831. source: "./media/characters/brooke/dressed.svg",
  46832. extra: 1050/1010,
  46833. bottom: 66/1116
  46834. }
  46835. },
  46836. },
  46837. [
  46838. {
  46839. name: "Canon Height",
  46840. height: math.unit(500, "miles"),
  46841. default: true
  46842. },
  46843. ]
  46844. ))
  46845. characterMakers.push(() => makeCharacter(
  46846. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46847. {
  46848. front: {
  46849. height: math.unit(6 + 2/12, "feet"),
  46850. weight: math.unit(210, "lb"),
  46851. name: "Front",
  46852. image: {
  46853. source: "./media/characters/wubs/front.svg",
  46854. extra: 1345/1325,
  46855. bottom: 70/1415
  46856. }
  46857. },
  46858. back: {
  46859. height: math.unit(6 + 2/12, "feet"),
  46860. weight: math.unit(210, "lb"),
  46861. name: "Back",
  46862. image: {
  46863. source: "./media/characters/wubs/back.svg",
  46864. extra: 1296/1275,
  46865. bottom: 58/1354
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(6 + 2/12, "feet"),
  46873. default: true
  46874. },
  46875. {
  46876. name: "Macro",
  46877. height: math.unit(1000, "feet")
  46878. },
  46879. {
  46880. name: "Megamacro",
  46881. height: math.unit(1, "mile")
  46882. },
  46883. ]
  46884. ))
  46885. characterMakers.push(() => makeCharacter(
  46886. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46887. {
  46888. front: {
  46889. height: math.unit(4, "feet"),
  46890. weight: math.unit(120, "lb"),
  46891. name: "Front",
  46892. image: {
  46893. source: "./media/characters/blue/front.svg",
  46894. extra: 1636/1525,
  46895. bottom: 43/1679
  46896. }
  46897. },
  46898. back: {
  46899. height: math.unit(4, "feet"),
  46900. weight: math.unit(120, "lb"),
  46901. name: "Back",
  46902. image: {
  46903. source: "./media/characters/blue/back.svg",
  46904. extra: 1660/1560,
  46905. bottom: 57/1717
  46906. }
  46907. },
  46908. paws: {
  46909. height: math.unit(0.826, "feet"),
  46910. name: "Paws",
  46911. image: {
  46912. source: "./media/characters/blue/paws.svg"
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Micro",
  46919. height: math.unit(3, "inches")
  46920. },
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(4, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Femenine Form",
  46928. height: math.unit(14, "feet")
  46929. },
  46930. {
  46931. name: "Werebat Form",
  46932. height: math.unit(18, "feet")
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46938. {
  46939. female: {
  46940. height: math.unit(7 + 4/12, "feet"),
  46941. weight: math.unit(243, "lb"),
  46942. name: "Female",
  46943. image: {
  46944. source: "./media/characters/kaya/female.svg",
  46945. extra: 975/898,
  46946. bottom: 34/1009
  46947. }
  46948. },
  46949. herm: {
  46950. height: math.unit(7 + 4/12, "feet"),
  46951. weight: math.unit(243, "lb"),
  46952. name: "Herm",
  46953. image: {
  46954. source: "./media/characters/kaya/herm.svg",
  46955. extra: 975/898,
  46956. bottom: 34/1009
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(7 + 4/12, "feet"),
  46964. default: true
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46970. {
  46971. female: {
  46972. height: math.unit(9 + 4/12, "feet"),
  46973. weight: math.unit(398, "lb"),
  46974. name: "Female",
  46975. image: {
  46976. source: "./media/characters/kassandra/female.svg",
  46977. extra: 908/839,
  46978. bottom: 61/969
  46979. }
  46980. },
  46981. intersex: {
  46982. height: math.unit(9 + 4/12, "feet"),
  46983. weight: math.unit(398, "lb"),
  46984. name: "Intersex",
  46985. image: {
  46986. source: "./media/characters/kassandra/intersex.svg",
  46987. extra: 908/839,
  46988. bottom: 61/969
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(9 + 4/12, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(3, "meters"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/amy/front.svg",
  47008. extra: 1380/1343,
  47009. bottom: 70/1450
  47010. }
  47011. },
  47012. back: {
  47013. height: math.unit(3, "meters"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/amy/back.svg",
  47017. extra: 1380/1347,
  47018. bottom: 66/1446
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(3, "meters"),
  47026. default: true
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47032. {
  47033. side: {
  47034. height: math.unit(47, "cm"),
  47035. weight: math.unit(10.8, "kg"),
  47036. name: "Side",
  47037. image: {
  47038. source: "./media/characters/alphaschakal/side.svg",
  47039. extra: 1058/568,
  47040. bottom: 62/1120
  47041. }
  47042. },
  47043. back: {
  47044. height: math.unit(78, "cm"),
  47045. weight: math.unit(10.8, "kg"),
  47046. name: "Back",
  47047. image: {
  47048. source: "./media/characters/alphaschakal/back.svg",
  47049. extra: 1102/942,
  47050. bottom: 185/1287
  47051. }
  47052. },
  47053. head: {
  47054. height: math.unit(28, "cm"),
  47055. name: "Head",
  47056. image: {
  47057. source: "./media/characters/alphaschakal/head.svg",
  47058. extra: 696/508,
  47059. bottom: 0/696
  47060. }
  47061. },
  47062. paw: {
  47063. height: math.unit(16, "cm"),
  47064. name: "Paw",
  47065. image: {
  47066. source: "./media/characters/alphaschakal/paw.svg"
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(47, "cm"),
  47074. default: true
  47075. },
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(340, "cm")
  47079. },
  47080. ]
  47081. ))
  47082. characterMakers.push(() => makeCharacter(
  47083. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47084. {
  47085. front: {
  47086. height: math.unit(36, "earths"),
  47087. name: "Front",
  47088. image: {
  47089. source: "./media/characters/ecobyss/front.svg",
  47090. extra: 1282/1215,
  47091. bottom: 11/1293
  47092. }
  47093. },
  47094. back: {
  47095. height: math.unit(36, "earths"),
  47096. name: "Back",
  47097. image: {
  47098. source: "./media/characters/ecobyss/back.svg",
  47099. extra: 1291/1222,
  47100. bottom: 8/1299
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(36, "earths"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47114. {
  47115. front: {
  47116. height: math.unit(12, "feet"),
  47117. name: "Front",
  47118. image: {
  47119. source: "./media/characters/vasuk/front.svg",
  47120. extra: 1326/1207,
  47121. bottom: 64/1390
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(12, "feet"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47135. {
  47136. side: {
  47137. height: math.unit(100, "feet"),
  47138. name: "Side",
  47139. image: {
  47140. source: "./media/characters/linneaus/side.svg",
  47141. extra: 987/807,
  47142. bottom: 47/1034
  47143. }
  47144. },
  47145. },
  47146. [
  47147. {
  47148. name: "Macro",
  47149. height: math.unit(100, "feet"),
  47150. default: true
  47151. },
  47152. ]
  47153. ))
  47154. characterMakers.push(() => makeCharacter(
  47155. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47156. {
  47157. front: {
  47158. height: math.unit(8, "feet"),
  47159. weight: math.unit(1200, "lb"),
  47160. name: "Front",
  47161. image: {
  47162. source: "./media/characters/nyterious-daligdig/front.svg",
  47163. extra: 1284/1094,
  47164. bottom: 84/1368
  47165. }
  47166. },
  47167. back: {
  47168. height: math.unit(8, "feet"),
  47169. weight: math.unit(1200, "lb"),
  47170. name: "Back",
  47171. image: {
  47172. source: "./media/characters/nyterious-daligdig/back.svg",
  47173. extra: 1301/1121,
  47174. bottom: 129/1430
  47175. }
  47176. },
  47177. mouth: {
  47178. height: math.unit(1.464, "feet"),
  47179. name: "Mouth",
  47180. image: {
  47181. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Small",
  47188. height: math.unit(8, "feet"),
  47189. default: true
  47190. },
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(15, "feet")
  47194. },
  47195. {
  47196. name: "Macro",
  47197. height: math.unit(90, "feet")
  47198. },
  47199. ]
  47200. ))
  47201. characterMakers.push(() => makeCharacter(
  47202. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47203. {
  47204. front: {
  47205. height: math.unit(7 + 4/12, "feet"),
  47206. weight: math.unit(252, "lb"),
  47207. name: "Front",
  47208. image: {
  47209. source: "./media/characters/bandel/front.svg",
  47210. extra: 1946/1775,
  47211. bottom: 26/1972
  47212. }
  47213. },
  47214. back: {
  47215. height: math.unit(7 + 4/12, "feet"),
  47216. weight: math.unit(252, "lb"),
  47217. name: "Back",
  47218. image: {
  47219. source: "./media/characters/bandel/back.svg",
  47220. extra: 1940/1770,
  47221. bottom: 25/1965
  47222. }
  47223. },
  47224. maw: {
  47225. height: math.unit(2.15, "feet"),
  47226. name: "Maw",
  47227. image: {
  47228. source: "./media/characters/bandel/maw.svg"
  47229. }
  47230. },
  47231. stomach: {
  47232. height: math.unit(1.95, "feet"),
  47233. name: "Stomach",
  47234. image: {
  47235. source: "./media/characters/bandel/stomach.svg"
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Normal",
  47242. height: math.unit(7 + 4/12, "feet"),
  47243. default: true
  47244. },
  47245. ]
  47246. ))
  47247. characterMakers.push(() => makeCharacter(
  47248. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47249. {
  47250. front: {
  47251. height: math.unit(10 + 5/12, "feet"),
  47252. weight: math.unit(773.5, "kg"),
  47253. name: "Front",
  47254. image: {
  47255. source: "./media/characters/zed/front.svg",
  47256. extra: 987/941,
  47257. bottom: 52/1039
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Short",
  47264. height: math.unit(5 + 4/12, "feet")
  47265. },
  47266. {
  47267. name: "Average",
  47268. height: math.unit(10 + 5/12, "feet"),
  47269. default: true
  47270. },
  47271. {
  47272. name: "Mini-Macro",
  47273. height: math.unit(24 + 9/12, "feet")
  47274. },
  47275. {
  47276. name: "Macro",
  47277. height: math.unit(249, "feet")
  47278. },
  47279. {
  47280. name: "Mega-Macro",
  47281. height: math.unit(12490, "feet")
  47282. },
  47283. {
  47284. name: "Giga-Macro",
  47285. height: math.unit(24.9, "miles")
  47286. },
  47287. {
  47288. name: "Tera-Macro",
  47289. height: math.unit(24900, "miles")
  47290. },
  47291. {
  47292. name: "Cosmic Scale",
  47293. height: math.unit(38.9, "lightyears")
  47294. },
  47295. {
  47296. name: "Universal Scale",
  47297. height: math.unit(138e12, "lightyears")
  47298. },
  47299. ]
  47300. ))
  47301. characterMakers.push(() => makeCharacter(
  47302. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47303. {
  47304. front: {
  47305. height: math.unit(1561, "inches"),
  47306. name: "Front",
  47307. image: {
  47308. source: "./media/characters/ivan/front.svg",
  47309. extra: 1126/1071,
  47310. bottom: 26/1152
  47311. }
  47312. },
  47313. back: {
  47314. height: math.unit(1561, "inches"),
  47315. name: "Back",
  47316. image: {
  47317. source: "./media/characters/ivan/back.svg",
  47318. extra: 1134/1079,
  47319. bottom: 30/1164
  47320. }
  47321. },
  47322. },
  47323. [
  47324. {
  47325. name: "Normal",
  47326. height: math.unit(1561, "inches"),
  47327. default: true
  47328. },
  47329. ]
  47330. ))
  47331. characterMakers.push(() => makeCharacter(
  47332. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47333. {
  47334. front: {
  47335. height: math.unit(5 + 7/12, "feet"),
  47336. weight: math.unit(150, "lb"),
  47337. name: "Front",
  47338. image: {
  47339. source: "./media/characters/robin-arctic-hare/front.svg",
  47340. extra: 1148/974,
  47341. bottom: 20/1168
  47342. }
  47343. },
  47344. },
  47345. [
  47346. {
  47347. name: "Normal",
  47348. height: math.unit(5 + 7/12, "feet"),
  47349. default: true
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47355. {
  47356. side: {
  47357. height: math.unit(5, "feet"),
  47358. name: "Side",
  47359. image: {
  47360. source: "./media/characters/birch/side.svg",
  47361. extra: 985/796,
  47362. bottom: 111/1096
  47363. }
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Normal",
  47369. height: math.unit(5, "feet"),
  47370. default: true
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47376. {
  47377. front: {
  47378. height: math.unit(4, "feet"),
  47379. name: "Front",
  47380. image: {
  47381. source: "./media/characters/rasp/front.svg",
  47382. extra: 561/478,
  47383. bottom: 74/635
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Normal",
  47390. height: math.unit(4, "feet"),
  47391. default: true
  47392. },
  47393. ]
  47394. ))
  47395. characterMakers.push(() => makeCharacter(
  47396. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47397. {
  47398. front: {
  47399. height: math.unit(4 + 6/12, "feet"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/agatha/front.svg",
  47403. extra: 947/933,
  47404. bottom: 42/989
  47405. }
  47406. },
  47407. back: {
  47408. height: math.unit(4 + 6/12, "feet"),
  47409. name: "Back",
  47410. image: {
  47411. source: "./media/characters/agatha/back.svg",
  47412. extra: 935/922,
  47413. bottom: 48/983
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Normal",
  47420. height: math.unit(4 + 6 /12, "feet"),
  47421. default: true
  47422. },
  47423. {
  47424. name: "Max Size",
  47425. height: math.unit(500, "feet")
  47426. },
  47427. ]
  47428. ))
  47429. characterMakers.push(() => makeCharacter(
  47430. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47431. {
  47432. side: {
  47433. height: math.unit(30, "feet"),
  47434. name: "Side",
  47435. image: {
  47436. source: "./media/characters/roggy/side.svg",
  47437. extra: 909/643,
  47438. bottom: 63/972
  47439. }
  47440. },
  47441. lounging: {
  47442. height: math.unit(20, "feet"),
  47443. name: "Lounging",
  47444. image: {
  47445. source: "./media/characters/roggy/lounging.svg",
  47446. extra: 643/479,
  47447. bottom: 145/788
  47448. }
  47449. },
  47450. handpaw: {
  47451. height: math.unit(13.1, "feet"),
  47452. name: "Handpaw",
  47453. image: {
  47454. source: "./media/characters/roggy/handpaw.svg"
  47455. }
  47456. },
  47457. footpaw: {
  47458. height: math.unit(15.8, "feet"),
  47459. name: "Footpaw",
  47460. image: {
  47461. source: "./media/characters/roggy/footpaw.svg"
  47462. }
  47463. },
  47464. },
  47465. [
  47466. {
  47467. name: "Menacing",
  47468. height: math.unit(30, "feet"),
  47469. default: true
  47470. },
  47471. ]
  47472. ))
  47473. characterMakers.push(() => makeCharacter(
  47474. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47475. {
  47476. front: {
  47477. height: math.unit(5 + 7/12, "feet"),
  47478. weight: math.unit(135, "lb"),
  47479. name: "Front",
  47480. image: {
  47481. source: "./media/characters/naomi/front.svg",
  47482. extra: 1209/1154,
  47483. bottom: 129/1338
  47484. }
  47485. },
  47486. back: {
  47487. height: math.unit(5 + 7/12, "feet"),
  47488. weight: math.unit(135, "lb"),
  47489. name: "Back",
  47490. image: {
  47491. source: "./media/characters/naomi/back.svg",
  47492. extra: 1252/1190,
  47493. bottom: 23/1275
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(5 + 7 /12, "feet"),
  47501. default: true
  47502. },
  47503. ]
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47507. {
  47508. side: {
  47509. height: math.unit(35, "meters"),
  47510. name: "Side",
  47511. image: {
  47512. source: "./media/characters/kimpi/side.svg",
  47513. extra: 419/382,
  47514. bottom: 63/482
  47515. }
  47516. },
  47517. hand: {
  47518. height: math.unit(8.96, "meters"),
  47519. name: "Hand",
  47520. image: {
  47521. source: "./media/characters/kimpi/hand.svg"
  47522. }
  47523. },
  47524. },
  47525. [
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(35, "meters"),
  47529. default: true
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47535. {
  47536. front: {
  47537. height: math.unit(4 + 4/12, "feet"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/pepper-purrloin/front.svg",
  47541. extra: 1141/1024,
  47542. bottom: 21/1162
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(4 + 4/12, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6 + 2/12, "feet"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/raphael/front.svg",
  47562. extra: 1101/962,
  47563. bottom: 59/1160
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(6 + 2/12, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(6, "feet"),
  47580. weight: math.unit(150, "lb"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/victor-williams/front.svg",
  47584. extra: 1894/1825,
  47585. bottom: 67/1961
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Normal",
  47592. height: math.unit(6, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(5 + 8/12, "feet"),
  47602. weight: math.unit(150, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/rachel/front.svg",
  47606. extra: 1902/1787,
  47607. bottom: 46/1948
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Base Height",
  47614. height: math.unit(5 + 8/12, "feet"),
  47615. default: true
  47616. },
  47617. {
  47618. name: "Macro",
  47619. height: math.unit(200, "feet")
  47620. },
  47621. {
  47622. name: "Mega Macro",
  47623. height: math.unit(1, "mile")
  47624. },
  47625. {
  47626. name: "Giga Macro",
  47627. height: math.unit(1500, "miles")
  47628. },
  47629. {
  47630. name: "Tera Macro",
  47631. height: math.unit(8000, "miles")
  47632. },
  47633. {
  47634. name: "Tera Macro+",
  47635. height: math.unit(2e5, "miles")
  47636. },
  47637. ]
  47638. ))
  47639. characterMakers.push(() => makeCharacter(
  47640. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47641. {
  47642. front: {
  47643. height: math.unit(6.5, "feet"),
  47644. name: "Front",
  47645. image: {
  47646. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47647. extra: 860/819,
  47648. bottom: 307/1167
  47649. }
  47650. },
  47651. back: {
  47652. height: math.unit(6.5, "feet"),
  47653. name: "Back",
  47654. image: {
  47655. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47656. extra: 880/837,
  47657. bottom: 395/1275
  47658. }
  47659. },
  47660. sleeping: {
  47661. height: math.unit(2.79, "feet"),
  47662. name: "Sleeping",
  47663. image: {
  47664. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47665. extra: 465/383,
  47666. bottom: 263/728
  47667. }
  47668. },
  47669. maw: {
  47670. height: math.unit(2.52, "feet"),
  47671. name: "Maw",
  47672. image: {
  47673. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47674. }
  47675. },
  47676. },
  47677. [
  47678. {
  47679. name: "Normal",
  47680. height: math.unit(6.5, "feet"),
  47681. default: true
  47682. },
  47683. ]
  47684. ))
  47685. characterMakers.push(() => makeCharacter(
  47686. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47687. {
  47688. front: {
  47689. height: math.unit(5, "feet"),
  47690. name: "Front",
  47691. image: {
  47692. source: "./media/characters/nova-nerium/front.svg",
  47693. extra: 1548/1392,
  47694. bottom: 374/1922
  47695. }
  47696. },
  47697. back: {
  47698. height: math.unit(5, "feet"),
  47699. name: "Back",
  47700. image: {
  47701. source: "./media/characters/nova-nerium/back.svg",
  47702. extra: 1658/1468,
  47703. bottom: 257/1915
  47704. }
  47705. },
  47706. },
  47707. [
  47708. {
  47709. name: "Normal",
  47710. height: math.unit(5, "feet"),
  47711. default: true
  47712. },
  47713. ]
  47714. ))
  47715. characterMakers.push(() => makeCharacter(
  47716. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47717. {
  47718. front: {
  47719. height: math.unit(5 + 4/12, "feet"),
  47720. name: "Front",
  47721. image: {
  47722. source: "./media/characters/ashe-pyriph/front.svg",
  47723. extra: 1935/1747,
  47724. bottom: 60/1995
  47725. }
  47726. },
  47727. },
  47728. [
  47729. {
  47730. name: "Normal",
  47731. height: math.unit(5 + 4/12, "feet"),
  47732. default: true
  47733. },
  47734. ]
  47735. ))
  47736. characterMakers.push(() => makeCharacter(
  47737. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47738. {
  47739. front: {
  47740. height: math.unit(8.7, "feet"),
  47741. name: "Front",
  47742. image: {
  47743. source: "./media/characters/flicker-wisp/front.svg",
  47744. extra: 1835/1613,
  47745. bottom: 449/2284
  47746. }
  47747. },
  47748. side: {
  47749. height: math.unit(8.7, "feet"),
  47750. name: "Side",
  47751. image: {
  47752. source: "./media/characters/flicker-wisp/side.svg",
  47753. extra: 1841/1642,
  47754. bottom: 336/2177
  47755. },
  47756. default: true
  47757. },
  47758. maw: {
  47759. height: math.unit(3.35, "feet"),
  47760. name: "Maw",
  47761. image: {
  47762. source: "./media/characters/flicker-wisp/maw.svg",
  47763. extra: 2338/1506,
  47764. bottom: 0/2338
  47765. }
  47766. },
  47767. ovipositor: {
  47768. height: math.unit(4.95, "feet"),
  47769. name: "Ovipositor",
  47770. image: {
  47771. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47772. }
  47773. },
  47774. egg: {
  47775. height: math.unit(0.385, "feet"),
  47776. weight: math.unit(2, "lb"),
  47777. name: "Egg",
  47778. image: {
  47779. source: "./media/characters/flicker-wisp/egg.svg"
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(8.7, "feet"),
  47787. default: true
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47793. {
  47794. side: {
  47795. height: math.unit(11, "feet"),
  47796. name: "Side",
  47797. image: {
  47798. source: "./media/characters/faefnul/side.svg",
  47799. extra: 1100/1007,
  47800. bottom: 0/1100
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(11, "feet"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(6 + 2/12, "feet"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/shady/front.svg",
  47820. extra: 502/461,
  47821. bottom: 9/511
  47822. }
  47823. },
  47824. kneeling: {
  47825. height: math.unit(4.6, "feet"),
  47826. name: "Kneeling",
  47827. image: {
  47828. source: "./media/characters/shady/kneeling.svg",
  47829. extra: 1328/1219,
  47830. bottom: 117/1445
  47831. }
  47832. },
  47833. maw: {
  47834. height: math.unit(2, "feet"),
  47835. name: "Maw",
  47836. image: {
  47837. source: "./media/characters/shady/maw.svg"
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Nano",
  47844. height: math.unit(1, "mm")
  47845. },
  47846. {
  47847. name: "Micro",
  47848. height: math.unit(12, "mm")
  47849. },
  47850. {
  47851. name: "Tiny",
  47852. height: math.unit(3, "inches")
  47853. },
  47854. {
  47855. name: "Normal",
  47856. height: math.unit(6 + 2/12, "feet"),
  47857. default: true
  47858. },
  47859. {
  47860. name: "Big",
  47861. height: math.unit(15, "feet")
  47862. },
  47863. {
  47864. name: "Macro",
  47865. height: math.unit(150, "feet")
  47866. },
  47867. {
  47868. name: "Titanic",
  47869. height: math.unit(500, "feet")
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47875. {
  47876. front: {
  47877. height: math.unit(12, "feet"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/fenrir/front.svg",
  47881. extra: 968/875,
  47882. bottom: 22/990
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Big",
  47889. height: math.unit(12, "feet"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(5 + 4/12, "feet"),
  47899. name: "Front",
  47900. image: {
  47901. source: "./media/characters/makar/front.svg",
  47902. extra: 1181/1112,
  47903. bottom: 78/1259
  47904. }
  47905. },
  47906. },
  47907. [
  47908. {
  47909. name: "Normal",
  47910. height: math.unit(5 + 4/12, "feet"),
  47911. default: true
  47912. },
  47913. ]
  47914. ))
  47915. characterMakers.push(() => makeCharacter(
  47916. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47917. {
  47918. front: {
  47919. height: math.unit(5 + 7/12, "feet"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/callow/front.svg",
  47923. extra: 1482/1304,
  47924. bottom: 23/1505
  47925. }
  47926. },
  47927. back: {
  47928. height: math.unit(5 + 7/12, "feet"),
  47929. name: "Back",
  47930. image: {
  47931. source: "./media/characters/callow/back.svg",
  47932. extra: 1484/1296,
  47933. bottom: 25/1509
  47934. }
  47935. },
  47936. },
  47937. [
  47938. {
  47939. name: "Micro",
  47940. height: math.unit(3, "inches"),
  47941. default: true
  47942. },
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(5 + 7/12, "feet")
  47946. },
  47947. ]
  47948. ))
  47949. characterMakers.push(() => makeCharacter(
  47950. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47951. {
  47952. front: {
  47953. height: math.unit(6 + 2/12, "feet"),
  47954. name: "Front",
  47955. image: {
  47956. source: "./media/characters/natel/front.svg",
  47957. extra: 1833/1692,
  47958. bottom: 166/1999
  47959. }
  47960. },
  47961. },
  47962. [
  47963. {
  47964. name: "Normal",
  47965. height: math.unit(6 + 2/12, "feet"),
  47966. default: true
  47967. },
  47968. ]
  47969. ))
  47970. characterMakers.push(() => makeCharacter(
  47971. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47972. {
  47973. front: {
  47974. height: math.unit(1.75, "meters"),
  47975. name: "Front",
  47976. image: {
  47977. source: "./media/characters/misu/front.svg",
  47978. extra: 1690/1558,
  47979. bottom: 234/1924
  47980. }
  47981. },
  47982. back: {
  47983. height: math.unit(1.75, "meters"),
  47984. name: "Back",
  47985. image: {
  47986. source: "./media/characters/misu/back.svg",
  47987. extra: 1762/1618,
  47988. bottom: 146/1908
  47989. }
  47990. },
  47991. frontNude: {
  47992. height: math.unit(1.75, "meters"),
  47993. name: "Front (Nude)",
  47994. image: {
  47995. source: "./media/characters/misu/front-nude.svg",
  47996. extra: 1690/1558,
  47997. bottom: 234/1924
  47998. }
  47999. },
  48000. backNude: {
  48001. height: math.unit(1.75, "meters"),
  48002. name: "Back (Nude)",
  48003. image: {
  48004. source: "./media/characters/misu/back-nude.svg",
  48005. extra: 1762/1618,
  48006. bottom: 146/1908
  48007. }
  48008. },
  48009. frontErect: {
  48010. height: math.unit(1.75, "meters"),
  48011. name: "Front (Erect)",
  48012. image: {
  48013. source: "./media/characters/misu/front-erect.svg",
  48014. extra: 1690/1558,
  48015. bottom: 234/1924
  48016. }
  48017. },
  48018. maw: {
  48019. height: math.unit(0.47, "meters"),
  48020. name: "Maw",
  48021. image: {
  48022. source: "./media/characters/misu/maw.svg"
  48023. }
  48024. },
  48025. head: {
  48026. height: math.unit(0.35, "meters"),
  48027. name: "Head",
  48028. image: {
  48029. source: "./media/characters/misu/head.svg"
  48030. }
  48031. },
  48032. rear: {
  48033. height: math.unit(0.47, "meters"),
  48034. name: "Rear",
  48035. image: {
  48036. source: "./media/characters/misu/rear.svg"
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Normal",
  48043. height: math.unit(1.75, "meters")
  48044. },
  48045. {
  48046. name: "Not good for the people",
  48047. height: math.unit(42, "meters")
  48048. },
  48049. {
  48050. name: "Not good for the neighborhood",
  48051. height: math.unit(135, "meters")
  48052. },
  48053. {
  48054. name: "Bit bigger problem",
  48055. height: math.unit(380, "meters"),
  48056. default: true
  48057. },
  48058. {
  48059. name: "Not good for the city",
  48060. height: math.unit(1.5, "km")
  48061. },
  48062. {
  48063. name: "Not good for the county",
  48064. height: math.unit(5.5, "km")
  48065. },
  48066. {
  48067. name: "Not good for the state",
  48068. height: math.unit(25, "km")
  48069. },
  48070. {
  48071. name: "Not good for the country",
  48072. height: math.unit(125, "km")
  48073. },
  48074. {
  48075. name: "Not good for the continent",
  48076. height: math.unit(2100, "km")
  48077. },
  48078. {
  48079. name: "Not good for the planet",
  48080. height: math.unit(35000, "km")
  48081. },
  48082. {
  48083. name: "Just no",
  48084. height: math.unit(8.5e18, "km")
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48090. {
  48091. front: {
  48092. height: math.unit(6.5, "feet"),
  48093. name: "Front",
  48094. image: {
  48095. source: "./media/characters/poppy/front.svg",
  48096. extra: 1878/1812,
  48097. bottom: 43/1921
  48098. }
  48099. },
  48100. feet: {
  48101. height: math.unit(1.06, "feet"),
  48102. name: "Feet",
  48103. image: {
  48104. source: "./media/characters/poppy/feet.svg",
  48105. extra: 1083/1083,
  48106. bottom: 87/1170
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Human",
  48113. height: math.unit(6.5, "feet")
  48114. },
  48115. {
  48116. name: "Default",
  48117. height: math.unit(300, "feet"),
  48118. default: true
  48119. },
  48120. {
  48121. name: "Huge",
  48122. height: math.unit(850, "feet")
  48123. },
  48124. {
  48125. name: "Mega",
  48126. height: math.unit(8000, "feet")
  48127. },
  48128. {
  48129. name: "Giga",
  48130. height: math.unit(300, "miles")
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48136. {
  48137. bipedal: {
  48138. height: math.unit(7, "feet"),
  48139. name: "Bipedal",
  48140. image: {
  48141. source: "./media/characters/zener/bipedal.svg",
  48142. extra: 874/805,
  48143. bottom: 109/983
  48144. }
  48145. },
  48146. quadrupedal: {
  48147. height: math.unit(4.64, "feet"),
  48148. name: "Quadrupedal",
  48149. image: {
  48150. source: "./media/characters/zener/quadrupedal.svg",
  48151. extra: 638/507,
  48152. bottom: 190/828
  48153. }
  48154. },
  48155. cock: {
  48156. height: math.unit(18, "inches"),
  48157. name: "Cock",
  48158. image: {
  48159. source: "./media/characters/zener/cock.svg"
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(7, "feet"),
  48167. default: true
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48173. {
  48174. nude: {
  48175. height: math.unit(5 + 6/12, "feet"),
  48176. name: "Nude",
  48177. image: {
  48178. source: "./media/characters/charlie-dog/nude.svg",
  48179. extra: 768/734,
  48180. bottom: 26/794
  48181. }
  48182. },
  48183. dressed: {
  48184. height: math.unit(5 + 6/12, "feet"),
  48185. name: "Dressed",
  48186. image: {
  48187. source: "./media/characters/charlie-dog/dressed.svg",
  48188. extra: 768/734,
  48189. bottom: 26/794
  48190. }
  48191. },
  48192. },
  48193. [
  48194. {
  48195. name: "Normal",
  48196. height: math.unit(5 + 6/12, "feet"),
  48197. default: true
  48198. },
  48199. ]
  48200. ))
  48201. characterMakers.push(() => makeCharacter(
  48202. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48203. {
  48204. front: {
  48205. height: math.unit(6 + 4/12, "feet"),
  48206. name: "Front",
  48207. image: {
  48208. source: "./media/characters/ir'istrasz/front.svg",
  48209. extra: 1014/977,
  48210. bottom: 65/1079
  48211. }
  48212. },
  48213. back: {
  48214. height: math.unit(6 + 4/12, "feet"),
  48215. name: "Back",
  48216. image: {
  48217. source: "./media/characters/ir'istrasz/back.svg",
  48218. extra: 1024/992,
  48219. bottom: 34/1058
  48220. }
  48221. },
  48222. },
  48223. [
  48224. {
  48225. name: "Normal",
  48226. height: math.unit(6 + 4/12, "feet"),
  48227. default: true
  48228. },
  48229. ]
  48230. ))
  48231. characterMakers.push(() => makeCharacter(
  48232. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48233. {
  48234. front: {
  48235. height: math.unit(5 + 8/12, "feet"),
  48236. name: "Front",
  48237. image: {
  48238. source: "./media/characters/dee-ditto/front.svg",
  48239. extra: 1874/1785,
  48240. bottom: 68/1942
  48241. }
  48242. },
  48243. back: {
  48244. height: math.unit(5 + 8/12, "feet"),
  48245. name: "Back",
  48246. image: {
  48247. source: "./media/characters/dee-ditto/back.svg",
  48248. extra: 1870/1783,
  48249. bottom: 77/1947
  48250. }
  48251. },
  48252. },
  48253. [
  48254. {
  48255. name: "Normal",
  48256. height: math.unit(5 + 8/12, "feet"),
  48257. default: true
  48258. },
  48259. ]
  48260. ))
  48261. characterMakers.push(() => makeCharacter(
  48262. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48263. {
  48264. front: {
  48265. height: math.unit(7 + 6/12, "feet"),
  48266. name: "Front",
  48267. image: {
  48268. source: "./media/characters/fey/front.svg",
  48269. extra: 995/979,
  48270. bottom: 30/1025
  48271. }
  48272. },
  48273. back: {
  48274. height: math.unit(7 + 6/12, "feet"),
  48275. name: "Back",
  48276. image: {
  48277. source: "./media/characters/fey/back.svg",
  48278. extra: 1079/1008,
  48279. bottom: 5/1084
  48280. }
  48281. },
  48282. dressed: {
  48283. height: math.unit(7 + 6/12, "feet"),
  48284. name: "Dressed",
  48285. image: {
  48286. source: "./media/characters/fey/dressed.svg",
  48287. extra: 995/979,
  48288. bottom: 30/1025
  48289. }
  48290. },
  48291. },
  48292. [
  48293. {
  48294. name: "Normal",
  48295. height: math.unit(7 + 6/12, "feet"),
  48296. default: true
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48302. {
  48303. standing: {
  48304. height: math.unit(17, "feet"),
  48305. name: "Standing",
  48306. image: {
  48307. source: "./media/characters/aster/standing.svg",
  48308. extra: 1798/1598,
  48309. bottom: 117/1915
  48310. }
  48311. },
  48312. },
  48313. [
  48314. {
  48315. name: "Normal",
  48316. height: math.unit(17, "feet"),
  48317. default: true
  48318. },
  48319. {
  48320. name: "Homewrecker",
  48321. height: math.unit(95, "feet")
  48322. },
  48323. {
  48324. name: "Planet Devourer",
  48325. height: math.unit(1008000, "miles")
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(6 + 5/12, "feet"),
  48334. weight: math.unit(265, "lb"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/devon-childs/front.svg",
  48338. extra: 1795/1721,
  48339. bottom: 41/1836
  48340. }
  48341. },
  48342. side: {
  48343. height: math.unit(6 + 5/12, "feet"),
  48344. weight: math.unit(265, "lb"),
  48345. name: "Side",
  48346. image: {
  48347. source: "./media/characters/devon-childs/side.svg",
  48348. extra: 1812/1738,
  48349. bottom: 30/1842
  48350. }
  48351. },
  48352. back: {
  48353. height: math.unit(6 + 5/12, "feet"),
  48354. weight: math.unit(265, "lb"),
  48355. name: "Back",
  48356. image: {
  48357. source: "./media/characters/devon-childs/back.svg",
  48358. extra: 1808/1735,
  48359. bottom: 23/1831
  48360. }
  48361. },
  48362. hand: {
  48363. height: math.unit(1.464, "feet"),
  48364. name: "Hand",
  48365. image: {
  48366. source: "./media/characters/devon-childs/hand.svg"
  48367. }
  48368. },
  48369. foot: {
  48370. height: math.unit(1.6, "feet"),
  48371. name: "Foot",
  48372. image: {
  48373. source: "./media/characters/devon-childs/foot.svg"
  48374. }
  48375. },
  48376. },
  48377. [
  48378. {
  48379. name: "Micro",
  48380. height: math.unit(7, "cm")
  48381. },
  48382. {
  48383. name: "Normal",
  48384. height: math.unit(6 + 5/12, "feet"),
  48385. default: true
  48386. },
  48387. {
  48388. name: "Macro",
  48389. height: math.unit(154, "feet")
  48390. },
  48391. ]
  48392. ))
  48393. characterMakers.push(() => makeCharacter(
  48394. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48395. {
  48396. front: {
  48397. height: math.unit(6, "feet"),
  48398. weight: math.unit(180, "lb"),
  48399. name: "Front",
  48400. image: {
  48401. source: "./media/characters/lydemox-vir/front.svg",
  48402. extra: 1632/1435,
  48403. bottom: 58/1690
  48404. }
  48405. },
  48406. frontSFW: {
  48407. height: math.unit(6, "feet"),
  48408. weight: math.unit(180, "lb"),
  48409. name: "Front (SFW)",
  48410. image: {
  48411. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48412. extra: 1632/1435,
  48413. bottom: 58/1690
  48414. }
  48415. },
  48416. back: {
  48417. height: math.unit(6, "feet"),
  48418. weight: math.unit(180, "lb"),
  48419. name: "Back",
  48420. image: {
  48421. source: "./media/characters/lydemox-vir/back.svg",
  48422. extra: 1593/1408,
  48423. bottom: 31/1624
  48424. }
  48425. },
  48426. paw: {
  48427. height: math.unit(1.85, "feet"),
  48428. name: "Paw",
  48429. image: {
  48430. source: "./media/characters/lydemox-vir/paw.svg"
  48431. }
  48432. },
  48433. dick: {
  48434. height: math.unit(1.8, "feet"),
  48435. name: "Dick",
  48436. image: {
  48437. source: "./media/characters/lydemox-vir/dick.svg"
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Macro",
  48444. height: math.unit(100, "feet"),
  48445. default: true
  48446. },
  48447. {
  48448. name: "Teramacro",
  48449. height: math.unit(1, "earth")
  48450. },
  48451. {
  48452. name: "Planetary",
  48453. height: math.unit(20, "earths")
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48459. {
  48460. front: {
  48461. height: math.unit(15 + 8/12, "feet"),
  48462. weight: math.unit(1237, "kg"),
  48463. name: "Front",
  48464. image: {
  48465. source: "./media/characters/mia/front.svg",
  48466. extra: 1573/1446,
  48467. bottom: 58/1631
  48468. }
  48469. },
  48470. },
  48471. [
  48472. {
  48473. name: "Small",
  48474. height: math.unit(9 + 5/12, "feet")
  48475. },
  48476. {
  48477. name: "Normal",
  48478. height: math.unit(15 + 8/12, "feet"),
  48479. default: true
  48480. },
  48481. ]
  48482. ))
  48483. characterMakers.push(() => makeCharacter(
  48484. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48485. {
  48486. front: {
  48487. height: math.unit(10 + 6/12, "feet"),
  48488. weight: math.unit(1.3, "tons"),
  48489. name: "Front",
  48490. image: {
  48491. source: "./media/characters/mr-graves/front.svg",
  48492. extra: 1779/1695,
  48493. bottom: 198/1977
  48494. }
  48495. },
  48496. },
  48497. [
  48498. {
  48499. name: "Normal",
  48500. height: math.unit(10 + 6 /12, "feet"),
  48501. default: true
  48502. },
  48503. ]
  48504. ))
  48505. characterMakers.push(() => makeCharacter(
  48506. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48507. {
  48508. dressedFront: {
  48509. height: math.unit(5 + 8/12, "feet"),
  48510. weight: math.unit(125, "lb"),
  48511. name: "Dressed (Front)",
  48512. image: {
  48513. source: "./media/characters/jess/dressed-front.svg",
  48514. extra: 1176/1152,
  48515. bottom: 42/1218
  48516. }
  48517. },
  48518. dressedSide: {
  48519. height: math.unit(5 + 8/12, "feet"),
  48520. weight: math.unit(125, "lb"),
  48521. name: "Dressed (Side)",
  48522. image: {
  48523. source: "./media/characters/jess/dressed-side.svg",
  48524. extra: 1204/1190,
  48525. bottom: 6/1210
  48526. }
  48527. },
  48528. nudeFront: {
  48529. height: math.unit(5 + 8/12, "feet"),
  48530. weight: math.unit(125, "lb"),
  48531. name: "Nude (Front)",
  48532. image: {
  48533. source: "./media/characters/jess/nude-front.svg",
  48534. extra: 1176/1152,
  48535. bottom: 42/1218
  48536. }
  48537. },
  48538. nudeSide: {
  48539. height: math.unit(5 + 8/12, "feet"),
  48540. weight: math.unit(125, "lb"),
  48541. name: "Nude (Side)",
  48542. image: {
  48543. source: "./media/characters/jess/nude-side.svg",
  48544. extra: 1204/1190,
  48545. bottom: 6/1210
  48546. }
  48547. },
  48548. organsFront: {
  48549. height: math.unit(2.83799342105, "feet"),
  48550. name: "Organs (Front)",
  48551. image: {
  48552. source: "./media/characters/jess/organs-front.svg"
  48553. }
  48554. },
  48555. organsSide: {
  48556. height: math.unit(2.64225290474, "feet"),
  48557. name: "Organs (Side)",
  48558. image: {
  48559. source: "./media/characters/jess/organs-side.svg"
  48560. }
  48561. },
  48562. digestiveTractFront: {
  48563. height: math.unit(2.8106580871, "feet"),
  48564. name: "Digestive Tract (Front)",
  48565. image: {
  48566. source: "./media/characters/jess/digestive-tract-front.svg"
  48567. }
  48568. },
  48569. digestiveTractSide: {
  48570. height: math.unit(2.54365045014, "feet"),
  48571. name: "Digestive Tract (Side)",
  48572. image: {
  48573. source: "./media/characters/jess/digestive-tract-side.svg"
  48574. }
  48575. },
  48576. respiratorySystemFront: {
  48577. height: math.unit(1.11196233456, "feet"),
  48578. name: "Respiratory System (Front)",
  48579. image: {
  48580. source: "./media/characters/jess/respiratory-system-front.svg"
  48581. }
  48582. },
  48583. respiratorySystemSide: {
  48584. height: math.unit(0.89327966297, "feet"),
  48585. name: "Respiratory System (Side)",
  48586. image: {
  48587. source: "./media/characters/jess/respiratory-system-side.svg"
  48588. }
  48589. },
  48590. urinaryTractFront: {
  48591. height: math.unit(1.16126356186, "feet"),
  48592. name: "Urinary Tract (Front)",
  48593. image: {
  48594. source: "./media/characters/jess/urinary-tract-front.svg"
  48595. }
  48596. },
  48597. urinaryTractSide: {
  48598. height: math.unit(1.20910039627, "feet"),
  48599. name: "Urinary Tract (Side)",
  48600. image: {
  48601. source: "./media/characters/jess/urinary-tract-side.svg"
  48602. }
  48603. },
  48604. reproductiveOrgansFront: {
  48605. height: math.unit(0.48422591566, "feet"),
  48606. name: "Reproductive Organs (Front)",
  48607. image: {
  48608. source: "./media/characters/jess/reproductive-organs-front.svg"
  48609. }
  48610. },
  48611. reproductiveOrgansSide: {
  48612. height: math.unit(0.61553314481, "feet"),
  48613. name: "Reproductive Organs (Side)",
  48614. image: {
  48615. source: "./media/characters/jess/reproductive-organs-side.svg"
  48616. }
  48617. },
  48618. breastsFront: {
  48619. height: math.unit(0.47690395121, "feet"),
  48620. name: "Breasts (Front)",
  48621. image: {
  48622. source: "./media/characters/jess/breasts-front.svg"
  48623. }
  48624. },
  48625. breastsSide: {
  48626. height: math.unit(0.30556998307, "feet"),
  48627. name: "Breasts (Side)",
  48628. image: {
  48629. source: "./media/characters/jess/breasts-side.svg"
  48630. }
  48631. },
  48632. heartFront: {
  48633. height: math.unit(0.53011022622, "feet"),
  48634. name: "Heart (Front)",
  48635. image: {
  48636. source: "./media/characters/jess/heart-front.svg"
  48637. }
  48638. },
  48639. heartSide: {
  48640. height: math.unit(0.51790695213, "feet"),
  48641. name: "Heart (Side)",
  48642. image: {
  48643. source: "./media/characters/jess/heart-side.svg"
  48644. }
  48645. },
  48646. earsAndNoseFront: {
  48647. height: math.unit(0.29385483995, "feet"),
  48648. name: "Ears and Nose (Front)",
  48649. image: {
  48650. source: "./media/characters/jess/ears-and-nose-front.svg"
  48651. }
  48652. },
  48653. earsAndNoseSide: {
  48654. height: math.unit(0.18109658741, "feet"),
  48655. name: "Ears and Nose (Side)",
  48656. image: {
  48657. source: "./media/characters/jess/ears-and-nose-side.svg"
  48658. }
  48659. },
  48660. },
  48661. [
  48662. {
  48663. name: "Normal",
  48664. height: math.unit(5 + 8/12, "feet"),
  48665. default: true
  48666. },
  48667. ]
  48668. ))
  48669. characterMakers.push(() => makeCharacter(
  48670. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48671. {
  48672. front: {
  48673. height: math.unit(6, "feet"),
  48674. weight: math.unit(6.64467e-7, "grams"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/wimpering/front.svg",
  48678. extra: 597/587,
  48679. bottom: 34/631
  48680. }
  48681. },
  48682. },
  48683. [
  48684. {
  48685. name: "Micro",
  48686. height: math.unit(0.4, "mm"),
  48687. default: true
  48688. },
  48689. ]
  48690. ))
  48691. characterMakers.push(() => makeCharacter(
  48692. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48693. {
  48694. front: {
  48695. height: math.unit(5 + 2/12, "feet"),
  48696. weight: math.unit(110, "lb"),
  48697. name: "Front",
  48698. image: {
  48699. source: "./media/characters/keltre/front.svg",
  48700. extra: 1099/1057,
  48701. bottom: 22/1121
  48702. }
  48703. },
  48704. back: {
  48705. height: math.unit(5 + 2/12, "feet"),
  48706. weight: math.unit(110, "lb"),
  48707. name: "Back",
  48708. image: {
  48709. source: "./media/characters/keltre/back.svg",
  48710. extra: 1095/1053,
  48711. bottom: 17/1112
  48712. }
  48713. },
  48714. dressed: {
  48715. height: math.unit(5 + 2/12, "feet"),
  48716. weight: math.unit(110, "lb"),
  48717. name: "Dressed",
  48718. image: {
  48719. source: "./media/characters/keltre/dressed.svg",
  48720. extra: 1099/1057,
  48721. bottom: 22/1121
  48722. }
  48723. },
  48724. winter: {
  48725. height: math.unit(5 + 2/12, "feet"),
  48726. weight: math.unit(110, "lb"),
  48727. name: "Winter",
  48728. image: {
  48729. source: "./media/characters/keltre/winter.svg",
  48730. extra: 1099/1057,
  48731. bottom: 22/1121
  48732. }
  48733. },
  48734. head: {
  48735. height: math.unit(1.61 * 0.86, "feet"),
  48736. name: "Head",
  48737. image: {
  48738. source: "./media/characters/keltre/head.svg",
  48739. extra: 534/421,
  48740. bottom: 0/534
  48741. }
  48742. },
  48743. hand: {
  48744. height: math.unit(1.3 * 0.86, "feet"),
  48745. name: "Hand",
  48746. image: {
  48747. source: "./media/characters/keltre/hand.svg"
  48748. }
  48749. },
  48750. foot: {
  48751. height: math.unit(1.8 * 0.86, "feet"),
  48752. name: "Foot",
  48753. image: {
  48754. source: "./media/characters/keltre/foot.svg"
  48755. }
  48756. },
  48757. },
  48758. [
  48759. {
  48760. name: "Fine",
  48761. height: math.unit(1, "inch")
  48762. },
  48763. {
  48764. name: "Dimnutive",
  48765. height: math.unit(4, "inches")
  48766. },
  48767. {
  48768. name: "Tiny",
  48769. height: math.unit(1, "foot")
  48770. },
  48771. {
  48772. name: "Small",
  48773. height: math.unit(3, "feet")
  48774. },
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(5 + 2/12, "feet"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(6 + 2/12, "feet"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/nox/front.svg",
  48790. extra: 1917/1830,
  48791. bottom: 74/1991
  48792. }
  48793. },
  48794. back: {
  48795. height: math.unit(6 + 2/12, "feet"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/nox/back.svg",
  48799. extra: 1896/1815,
  48800. bottom: 21/1917
  48801. }
  48802. },
  48803. head: {
  48804. height: math.unit(1.1, "feet"),
  48805. name: "Head",
  48806. image: {
  48807. source: "./media/characters/nox/head.svg",
  48808. extra: 874/704,
  48809. bottom: 0/874
  48810. }
  48811. },
  48812. tattoo: {
  48813. height: math.unit(0.729, "feet"),
  48814. name: "Tattoo",
  48815. image: {
  48816. source: "./media/characters/nox/tattoo.svg"
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(6 + 2/12, "feet")
  48824. },
  48825. {
  48826. name: "Gigamacro",
  48827. height: math.unit(2, "earths"),
  48828. default: true
  48829. },
  48830. {
  48831. name: "Cosmic",
  48832. height: math.unit(867, "yottameters")
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48838. {
  48839. front: {
  48840. height: math.unit(6, "feet"),
  48841. weight: math.unit(150, "lb"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/caspian/front.svg",
  48845. extra: 1443/1359,
  48846. bottom: 0/1443
  48847. }
  48848. },
  48849. back: {
  48850. height: math.unit(6, "feet"),
  48851. weight: math.unit(150, "lb"),
  48852. name: "Back",
  48853. image: {
  48854. source: "./media/characters/caspian/back.svg",
  48855. extra: 1379/1309,
  48856. bottom: 0/1379
  48857. }
  48858. },
  48859. head: {
  48860. height: math.unit(0.9, "feet"),
  48861. name: "Head",
  48862. image: {
  48863. source: "./media/characters/caspian/head.svg",
  48864. extra: 692/492,
  48865. bottom: 0/692
  48866. }
  48867. },
  48868. headAlt: {
  48869. height: math.unit(0.95, "feet"),
  48870. name: "Head (Alt)",
  48871. image: {
  48872. source: "./media/characters/caspian/head-alt.svg",
  48873. extra: 668/508,
  48874. bottom: 0/668
  48875. }
  48876. },
  48877. hand: {
  48878. height: math.unit(0.8, "feet"),
  48879. name: "Hand",
  48880. image: {
  48881. source: "./media/characters/caspian/hand.svg"
  48882. }
  48883. },
  48884. paw: {
  48885. height: math.unit(0.95, "feet"),
  48886. name: "Paw",
  48887. image: {
  48888. source: "./media/characters/caspian/paw.svg"
  48889. }
  48890. },
  48891. },
  48892. [
  48893. {
  48894. name: "Normal",
  48895. height: math.unit(162, "feet"),
  48896. default: true
  48897. },
  48898. ]
  48899. ))
  48900. characterMakers.push(() => makeCharacter(
  48901. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48902. {
  48903. front: {
  48904. height: math.unit(6, "feet"),
  48905. name: "Front",
  48906. image: {
  48907. source: "./media/characters/myra-aisling/front.svg",
  48908. extra: 1268/1166,
  48909. bottom: 73/1341
  48910. }
  48911. },
  48912. back: {
  48913. height: math.unit(6, "feet"),
  48914. name: "Back",
  48915. image: {
  48916. source: "./media/characters/myra-aisling/back.svg",
  48917. extra: 1249/1149,
  48918. bottom: 79/1328
  48919. }
  48920. },
  48921. dressed: {
  48922. height: math.unit(6, "feet"),
  48923. name: "Dressed",
  48924. image: {
  48925. source: "./media/characters/myra-aisling/dressed.svg",
  48926. extra: 1290/1189,
  48927. bottom: 47/1337
  48928. }
  48929. },
  48930. hand: {
  48931. height: math.unit(1.1, "feet"),
  48932. name: "Hand",
  48933. image: {
  48934. source: "./media/characters/myra-aisling/hand.svg"
  48935. }
  48936. },
  48937. paw: {
  48938. height: math.unit(1.23, "feet"),
  48939. name: "Paw",
  48940. image: {
  48941. source: "./media/characters/myra-aisling/paw.svg"
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Normal",
  48948. height: math.unit(160, "feet"),
  48949. default: true
  48950. },
  48951. ]
  48952. ))
  48953. characterMakers.push(() => makeCharacter(
  48954. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48955. {
  48956. front: {
  48957. height: math.unit(6, "feet"),
  48958. name: "Front",
  48959. image: {
  48960. source: "./media/characters/tenley-sidero/front.svg",
  48961. extra: 1365/1276,
  48962. bottom: 47/1412
  48963. }
  48964. },
  48965. back: {
  48966. height: math.unit(6, "feet"),
  48967. name: "Back",
  48968. image: {
  48969. source: "./media/characters/tenley-sidero/back.svg",
  48970. extra: 1383/1283,
  48971. bottom: 35/1418
  48972. }
  48973. },
  48974. dressed: {
  48975. height: math.unit(6, "feet"),
  48976. name: "Dressed",
  48977. image: {
  48978. source: "./media/characters/tenley-sidero/dressed.svg",
  48979. extra: 1364/1275,
  48980. bottom: 42/1406
  48981. }
  48982. },
  48983. head: {
  48984. height: math.unit(1.47, "feet"),
  48985. name: "Head",
  48986. image: {
  48987. source: "./media/characters/tenley-sidero/head.svg",
  48988. extra: 610/490,
  48989. bottom: 0/610
  48990. }
  48991. },
  48992. },
  48993. [
  48994. {
  48995. name: "Normal",
  48996. height: math.unit(154, "feet"),
  48997. default: true
  48998. },
  48999. ]
  49000. ))
  49001. characterMakers.push(() => makeCharacter(
  49002. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49003. {
  49004. front: {
  49005. height: math.unit(5, "inches"),
  49006. name: "Front",
  49007. image: {
  49008. source: "./media/characters/mallory/front.svg",
  49009. extra: 1919/1678,
  49010. bottom: 29/1948
  49011. }
  49012. },
  49013. hand: {
  49014. height: math.unit(0.73, "inches"),
  49015. name: "Hand",
  49016. image: {
  49017. source: "./media/characters/mallory/hand.svg"
  49018. }
  49019. },
  49020. paw: {
  49021. height: math.unit(0.68, "inches"),
  49022. name: "Paw",
  49023. image: {
  49024. source: "./media/characters/mallory/paw.svg"
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Small",
  49031. height: math.unit(5, "inches"),
  49032. default: true
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49038. {
  49039. naked: {
  49040. height: math.unit(6, "feet"),
  49041. name: "Naked",
  49042. image: {
  49043. source: "./media/characters/mab/naked.svg",
  49044. extra: 1855/1757,
  49045. bottom: 208/2063
  49046. }
  49047. },
  49048. outside: {
  49049. height: math.unit(6, "feet"),
  49050. name: "Outside",
  49051. image: {
  49052. source: "./media/characters/mab/outside.svg",
  49053. extra: 1855/1757,
  49054. bottom: 208/2063
  49055. }
  49056. },
  49057. party: {
  49058. height: math.unit(6, "feet"),
  49059. name: "Party",
  49060. image: {
  49061. source: "./media/characters/mab/party.svg",
  49062. extra: 1855/1757,
  49063. bottom: 208/2063
  49064. }
  49065. },
  49066. },
  49067. [
  49068. {
  49069. name: "Normal",
  49070. height: math.unit(165, "feet"),
  49071. default: true
  49072. },
  49073. ]
  49074. ))
  49075. characterMakers.push(() => makeCharacter(
  49076. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49077. {
  49078. front: {
  49079. height: math.unit(12, "feet"),
  49080. weight: math.unit(4000, "lb"),
  49081. name: "Front",
  49082. image: {
  49083. source: "./media/characters/winter/front.svg",
  49084. extra: 1286/943,
  49085. bottom: 112/1398
  49086. }
  49087. },
  49088. frontNsfw: {
  49089. height: math.unit(12, "feet"),
  49090. weight: math.unit(4000, "lb"),
  49091. name: "Front (NSFW)",
  49092. image: {
  49093. source: "./media/characters/winter/front-nsfw.svg",
  49094. extra: 1286/943,
  49095. bottom: 112/1398
  49096. }
  49097. },
  49098. dick: {
  49099. height: math.unit(3.79, "feet"),
  49100. name: "Dick",
  49101. image: {
  49102. source: "./media/characters/winter/dick.svg"
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Big",
  49109. height: math.unit(12, "feet"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(4.1, "inches"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/alto/front.svg",
  49122. extra: 736/627,
  49123. bottom: 90/826
  49124. }
  49125. },
  49126. },
  49127. [
  49128. {
  49129. name: "Normal",
  49130. height: math.unit(4.1, "inches"),
  49131. default: true
  49132. },
  49133. ]
  49134. ))
  49135. characterMakers.push(() => makeCharacter(
  49136. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49137. {
  49138. sitting: {
  49139. height: math.unit(3, "feet"),
  49140. name: "Sitting",
  49141. image: {
  49142. source: "./media/characters/ratstrid-v/sitting.svg",
  49143. extra: 355/310,
  49144. bottom: 136/491
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(3, "feet"),
  49152. default: true
  49153. },
  49154. ]
  49155. ))
  49156. characterMakers.push(() => makeCharacter(
  49157. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49158. {
  49159. back: {
  49160. height: math.unit(6, "feet"),
  49161. weight: math.unit(350, "lb"),
  49162. name: "Back",
  49163. image: {
  49164. source: "./media/characters/siz/back.svg",
  49165. extra: 1449/1274,
  49166. bottom: 13/1462
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Over-Overcompressed",
  49173. height: math.unit(8, "feet")
  49174. },
  49175. {
  49176. name: "Overcompressed",
  49177. height: math.unit(32, "feet")
  49178. },
  49179. {
  49180. name: "Compressed",
  49181. height: math.unit(128, "feet"),
  49182. default: true
  49183. },
  49184. {
  49185. name: "Half-Compressed",
  49186. height: math.unit(512, "feet")
  49187. },
  49188. {
  49189. name: "Quarter-Compressed",
  49190. height: math.unit(2048, "feet")
  49191. },
  49192. {
  49193. name: "Uncompressed?",
  49194. height: math.unit(8192, "feet")
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49200. {
  49201. front: {
  49202. height: math.unit(5 + 9/12, "feet"),
  49203. weight: math.unit(150, "lb"),
  49204. name: "Front",
  49205. image: {
  49206. source: "./media/characters/ven/front.svg",
  49207. extra: 1372/1320,
  49208. bottom: 73/1445
  49209. }
  49210. },
  49211. side: {
  49212. height: math.unit(5 + 9/12, "feet"),
  49213. weight: math.unit(1150, "lb"),
  49214. name: "Side",
  49215. image: {
  49216. source: "./media/characters/ven/side.svg",
  49217. extra: 1119/1070,
  49218. bottom: 42/1161
  49219. },
  49220. default: true
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(5 + 9/12, "feet"),
  49227. default: true
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49233. {
  49234. front: {
  49235. height: math.unit(12, "feet"),
  49236. weight: math.unit(1000, "kg"),
  49237. name: "Front",
  49238. image: {
  49239. source: "./media/characters/maple/front.svg",
  49240. extra: 1193/1081,
  49241. bottom: 22/1215
  49242. }
  49243. },
  49244. },
  49245. [
  49246. {
  49247. name: "Compressed",
  49248. height: math.unit(7, "feet")
  49249. },
  49250. {
  49251. name: "Normal",
  49252. height: math.unit(12, "feet"),
  49253. default: true
  49254. },
  49255. ]
  49256. ))
  49257. characterMakers.push(() => makeCharacter(
  49258. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49259. {
  49260. front: {
  49261. height: math.unit(9, "feet"),
  49262. weight: math.unit(1500, "lb"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/nora/front.svg",
  49266. extra: 1348/1286,
  49267. bottom: 218/1566
  49268. }
  49269. },
  49270. erect: {
  49271. height: math.unit(9, "feet"),
  49272. weight: math.unit(11500, "lb"),
  49273. name: "Erect",
  49274. image: {
  49275. source: "./media/characters/nora/erect.svg",
  49276. extra: 1488/1433,
  49277. bottom: 133/1621
  49278. }
  49279. },
  49280. },
  49281. [
  49282. {
  49283. name: "Normal",
  49284. height: math.unit(9, "feet"),
  49285. default: true
  49286. },
  49287. ]
  49288. ))
  49289. characterMakers.push(() => makeCharacter(
  49290. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49291. {
  49292. front: {
  49293. height: math.unit(25, "feet"),
  49294. weight: math.unit(27500, "lb"),
  49295. name: "Front",
  49296. image: {
  49297. source: "./media/characters/north-caudin/front.svg",
  49298. extra: 1184/1082,
  49299. bottom: 23/1207
  49300. }
  49301. },
  49302. },
  49303. [
  49304. {
  49305. name: "Compressed",
  49306. height: math.unit(10, "feet")
  49307. },
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(25, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(9, "feet"),
  49320. weight: math.unit(1250, "lb"),
  49321. name: "Front",
  49322. image: {
  49323. source: "./media/characters/merrian/front.svg",
  49324. extra: 2393/2304,
  49325. bottom: 40/2433
  49326. }
  49327. },
  49328. },
  49329. [
  49330. {
  49331. name: "Normal",
  49332. height: math.unit(9, "feet"),
  49333. default: true
  49334. },
  49335. ]
  49336. ))
  49337. characterMakers.push(() => makeCharacter(
  49338. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49339. {
  49340. front: {
  49341. height: math.unit(9, "feet"),
  49342. weight: math.unit(1000, "lb"),
  49343. name: "Front",
  49344. image: {
  49345. source: "./media/characters/hazel/front.svg",
  49346. extra: 2351/2298,
  49347. bottom: 38/2389
  49348. }
  49349. },
  49350. },
  49351. [
  49352. {
  49353. name: "Normal",
  49354. height: math.unit(9, "feet"),
  49355. default: true
  49356. },
  49357. ]
  49358. ))
  49359. characterMakers.push(() => makeCharacter(
  49360. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49361. {
  49362. front: {
  49363. height: math.unit(13, "feet"),
  49364. weight: math.unit(3200, "lb"),
  49365. name: "Front",
  49366. image: {
  49367. source: "./media/characters/emma/front.svg",
  49368. extra: 2263/2029,
  49369. bottom: 68/2331
  49370. }
  49371. },
  49372. },
  49373. [
  49374. {
  49375. name: "Normal",
  49376. height: math.unit(13, "feet"),
  49377. default: true
  49378. },
  49379. ]
  49380. ))
  49381. characterMakers.push(() => makeCharacter(
  49382. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49383. {
  49384. front: {
  49385. height: math.unit(11 + 9/12, "feet"),
  49386. weight: math.unit(2500, "lb"),
  49387. name: "Front",
  49388. image: {
  49389. source: "./media/characters/ilumina/front.svg",
  49390. extra: 2248/2209,
  49391. bottom: 164/2412
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(11 + 9/12, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49405. {
  49406. front: {
  49407. height: math.unit(8 + 10/12, "feet"),
  49408. weight: math.unit(1350, "lb"),
  49409. name: "Front",
  49410. image: {
  49411. source: "./media/characters/moonshine/front.svg",
  49412. extra: 2395/2288,
  49413. bottom: 40/2435
  49414. }
  49415. },
  49416. },
  49417. [
  49418. {
  49419. name: "Normal",
  49420. height: math.unit(8 + 10/12, "feet"),
  49421. default: true
  49422. },
  49423. ]
  49424. ))
  49425. characterMakers.push(() => makeCharacter(
  49426. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49427. {
  49428. front: {
  49429. height: math.unit(14, "feet"),
  49430. weight: math.unit(3400, "lb"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/aletia/front.svg",
  49434. extra: 1185/1052,
  49435. bottom: 21/1206
  49436. }
  49437. },
  49438. },
  49439. [
  49440. {
  49441. name: "Compressed",
  49442. height: math.unit(8, "feet")
  49443. },
  49444. {
  49445. name: "Normal",
  49446. height: math.unit(14, "feet"),
  49447. default: true
  49448. },
  49449. ]
  49450. ))
  49451. characterMakers.push(() => makeCharacter(
  49452. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49453. {
  49454. front: {
  49455. height: math.unit(17, "feet"),
  49456. weight: math.unit(6500, "lb"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/deidra/front.svg",
  49460. extra: 1201/1081,
  49461. bottom: 16/1217
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Compressed",
  49468. height: math.unit(9 + 6/12, "feet")
  49469. },
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(17, "feet"),
  49473. default: true
  49474. },
  49475. ]
  49476. ))
  49477. characterMakers.push(() => makeCharacter(
  49478. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49479. {
  49480. front: {
  49481. height: math.unit(7 + 4/12, "feet"),
  49482. weight: math.unit(280, "lb"),
  49483. name: "Front",
  49484. image: {
  49485. source: "./media/characters/freki-yrmori/front.svg",
  49486. extra: 1286/1182,
  49487. bottom: 29/1315
  49488. }
  49489. },
  49490. maw: {
  49491. height: math.unit(0.9, "feet"),
  49492. name: "Maw",
  49493. image: {
  49494. source: "./media/characters/freki-yrmori/maw.svg"
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Normal",
  49501. height: math.unit(7 + 4/12, "feet"),
  49502. default: true
  49503. },
  49504. {
  49505. name: "Macro",
  49506. height: math.unit(38.5, "meters")
  49507. },
  49508. ]
  49509. ))
  49510. characterMakers.push(() => makeCharacter(
  49511. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49512. {
  49513. side: {
  49514. height: math.unit(47.2, "meters"),
  49515. weight: math.unit(10000, "tons"),
  49516. name: "Side",
  49517. image: {
  49518. source: "./media/characters/aetherios/side.svg",
  49519. extra: 2363/642,
  49520. bottom: 221/2584
  49521. }
  49522. },
  49523. top: {
  49524. height: math.unit(240, "meters"),
  49525. weight: math.unit(10000, "tons"),
  49526. name: "Top",
  49527. image: {
  49528. source: "./media/characters/aetherios/top.svg"
  49529. }
  49530. },
  49531. bottom: {
  49532. height: math.unit(240, "meters"),
  49533. weight: math.unit(10000, "tons"),
  49534. name: "Bottom",
  49535. image: {
  49536. source: "./media/characters/aetherios/bottom.svg"
  49537. }
  49538. },
  49539. head: {
  49540. height: math.unit(38.6, "meters"),
  49541. name: "Head",
  49542. image: {
  49543. source: "./media/characters/aetherios/head.svg",
  49544. extra: 1335/1112,
  49545. bottom: 0/1335
  49546. }
  49547. },
  49548. front: {
  49549. height: math.unit(29, "meters"),
  49550. name: "Front",
  49551. image: {
  49552. source: "./media/characters/aetherios/front.svg",
  49553. extra: 1266/953,
  49554. bottom: 158/1424
  49555. }
  49556. },
  49557. maw: {
  49558. height: math.unit(16.37, "meters"),
  49559. name: "Maw",
  49560. image: {
  49561. source: "./media/characters/aetherios/maw.svg",
  49562. extra: 748/637,
  49563. bottom: 0/748
  49564. },
  49565. extraAttributes: {
  49566. preyCapacity: {
  49567. name: "Capacity",
  49568. power: 3,
  49569. type: "volume",
  49570. base: math.unit(1000, "people")
  49571. }
  49572. }
  49573. },
  49574. forepaw: {
  49575. height: math.unit(18, "meters"),
  49576. name: "Forepaw",
  49577. image: {
  49578. source: "./media/characters/aetherios/forepaw.svg"
  49579. }
  49580. },
  49581. hindpaw: {
  49582. height: math.unit(23, "meters"),
  49583. name: "Hindpaw",
  49584. image: {
  49585. source: "./media/characters/aetherios/hindpaw.svg"
  49586. }
  49587. },
  49588. genitals: {
  49589. height: math.unit(42, "meters"),
  49590. name: "Genitals",
  49591. image: {
  49592. source: "./media/characters/aetherios/genitals.svg"
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(47.2, "meters"),
  49600. default: true
  49601. },
  49602. {
  49603. name: "Macro",
  49604. height: math.unit(160, "meters")
  49605. },
  49606. {
  49607. name: "Mega",
  49608. height: math.unit(1.87, "km")
  49609. },
  49610. {
  49611. name: "Giga",
  49612. height: math.unit(40000, "km")
  49613. },
  49614. {
  49615. name: "Stellar",
  49616. height: math.unit(158000000, "km")
  49617. },
  49618. {
  49619. name: "Cosmic",
  49620. height: math.unit(9.46e12, "km")
  49621. },
  49622. ]
  49623. ))
  49624. //characters
  49625. function makeCharacters() {
  49626. const results = [];
  49627. characterMakers.forEach(character => {
  49628. results.push(character());
  49629. });
  49630. return results;
  49631. }