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

54577 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. }
  2067. //species
  2068. function getSpeciesInfo(speciesList) {
  2069. let result = new Set();
  2070. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2071. result.add(entry)
  2072. });
  2073. return Array.from(result);
  2074. };
  2075. function getSpeciesInfoHelper(species) {
  2076. if (!speciesData[species]) {
  2077. console.warn(species + " doesn't exist");
  2078. return [];
  2079. }
  2080. if (speciesData[species].parents) {
  2081. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2082. } else {
  2083. return [species];
  2084. }
  2085. }
  2086. characterMakers.push(() => makeCharacter(
  2087. {
  2088. name: "Fen",
  2089. species: ["crux"],
  2090. description: {
  2091. title: "Bio",
  2092. text: "Very furry. Sheds on everything."
  2093. },
  2094. tags: [
  2095. "anthro",
  2096. "goo"
  2097. ]
  2098. },
  2099. {
  2100. front: {
  2101. height: math.unit(12, "feet"),
  2102. weight: math.unit(2400, "lb"),
  2103. name: "Front",
  2104. image: {
  2105. source: "./media/characters/fen/front.svg",
  2106. extra: 1804/1562,
  2107. bottom: 205/2009
  2108. },
  2109. extraAttributes: {
  2110. pawSize: {
  2111. name: "Paw Size",
  2112. power: 2,
  2113. type: "area",
  2114. base: math.unit(0.35, "m^2")
  2115. }
  2116. }
  2117. },
  2118. diving: {
  2119. height: math.unit(4.9, "meters"),
  2120. weight: math.unit(2400, "lb"),
  2121. name: "Diving",
  2122. image: {
  2123. source: "./media/characters/fen/diving.svg"
  2124. }
  2125. },
  2126. goo: {
  2127. height: math.unit(12, "feet"),
  2128. weight: math.unit(3600, "lb"),
  2129. volume: math.unit(1000, "liters"),
  2130. preyCapacity: math.unit(6, "people"),
  2131. name: "Goo",
  2132. image: {
  2133. source: "./media/characters/fen/goo.svg",
  2134. extra: 1307/1071,
  2135. bottom: 134/1441
  2136. }
  2137. },
  2138. gooNsfw: {
  2139. height: math.unit(12, "feet"),
  2140. weight: math.unit(3750, "lb"),
  2141. volume: math.unit(1000, "liters"),
  2142. preyCapacity: math.unit(6, "people"),
  2143. name: "Goo (NSFW)",
  2144. image: {
  2145. source: "./media/characters/fen/goo-nsfw.svg",
  2146. extra: 1875/1734,
  2147. bottom: 122/1997
  2148. }
  2149. },
  2150. maw: {
  2151. height: math.unit(5.03, "feet"),
  2152. name: "Maw",
  2153. image: {
  2154. source: "./media/characters/fen/maw.svg"
  2155. }
  2156. },
  2157. gooCeiling: {
  2158. height: math.unit(6.6, "feet"),
  2159. weight: math.unit(3000, "lb"),
  2160. volume: math.unit(1000, "liters"),
  2161. preyCapacity: math.unit(6, "people"),
  2162. name: "Goo (Ceiling)",
  2163. image: {
  2164. source: "./media/characters/fen/goo-ceiling.svg"
  2165. }
  2166. },
  2167. paw: {
  2168. height: math.unit(3.77, "feet"),
  2169. name: "Paw",
  2170. image: {
  2171. source: "./media/characters/fen/paw.svg"
  2172. },
  2173. extraAttributes: {
  2174. "toeSize": {
  2175. name: "Toe Size",
  2176. power: 2,
  2177. type: "area",
  2178. base: math.unit(0.02875, "m^2")
  2179. },
  2180. "pawSize": {
  2181. name: "Paw Size",
  2182. power: 2,
  2183. type: "area",
  2184. base: math.unit(0.378, "m^2")
  2185. },
  2186. }
  2187. },
  2188. tail: {
  2189. height: math.unit(12.1, "feet"),
  2190. name: "Tail",
  2191. image: {
  2192. source: "./media/characters/fen/tail.svg"
  2193. }
  2194. },
  2195. tailFull: {
  2196. height: math.unit(12.1, "feet"),
  2197. name: "Full Tail",
  2198. image: {
  2199. source: "./media/characters/fen/tail-full.svg"
  2200. }
  2201. },
  2202. back: {
  2203. height: math.unit(12, "feet"),
  2204. weight: math.unit(2400, "lb"),
  2205. name: "Back",
  2206. image: {
  2207. source: "./media/characters/fen/back.svg",
  2208. },
  2209. info: {
  2210. description: {
  2211. mode: "append",
  2212. text: "\n\nHe is not currently looking at you."
  2213. }
  2214. }
  2215. },
  2216. full: {
  2217. height: math.unit(1.85, "meter"),
  2218. weight: math.unit(3200, "lb"),
  2219. name: "Full",
  2220. image: {
  2221. source: "./media/characters/fen/full.svg",
  2222. extra: 1133/859,
  2223. bottom: 145/1278
  2224. },
  2225. info: {
  2226. description: {
  2227. mode: "append",
  2228. text: "\n\nMunch."
  2229. }
  2230. }
  2231. },
  2232. gooLounging: {
  2233. height: math.unit(4.53, "feet"),
  2234. weight: math.unit(3000, "lb"),
  2235. preyCapacity: math.unit(6, "people"),
  2236. name: "Goo (Lounging)",
  2237. image: {
  2238. source: "./media/characters/fen/goo-lounging.svg",
  2239. bottom: 116 / 613
  2240. }
  2241. },
  2242. lounging: {
  2243. height: math.unit(10.52, "feet"),
  2244. weight: math.unit(2400, "lb"),
  2245. name: "Lounging",
  2246. image: {
  2247. source: "./media/characters/fen/lounging.svg"
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Small",
  2254. height: math.unit(2.2428, "meter")
  2255. },
  2256. {
  2257. name: "Normal",
  2258. height: math.unit(12, "feet"),
  2259. default: true,
  2260. },
  2261. {
  2262. name: "Big",
  2263. height: math.unit(20, "feet")
  2264. },
  2265. {
  2266. name: "Minimacro",
  2267. height: math.unit(40, "feet"),
  2268. info: {
  2269. description: {
  2270. mode: "append",
  2271. text: "\n\nTOO DAMN BIG"
  2272. }
  2273. }
  2274. },
  2275. {
  2276. name: "Macro",
  2277. height: math.unit(100, "feet"),
  2278. info: {
  2279. description: {
  2280. mode: "append",
  2281. text: "\n\nTOO DAMN BIG"
  2282. }
  2283. }
  2284. },
  2285. {
  2286. name: "Megamacro",
  2287. height: math.unit(2, "miles")
  2288. },
  2289. {
  2290. name: "Gigamacro",
  2291. height: math.unit(10, "earths")
  2292. },
  2293. ]
  2294. ))
  2295. characterMakers.push(() => makeCharacter(
  2296. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2297. {
  2298. front: {
  2299. height: math.unit(183, "cm"),
  2300. weight: math.unit(80, "kg"),
  2301. name: "Front",
  2302. image: {
  2303. source: "./media/characters/sofia-fluttertail/front.svg",
  2304. bottom: 0.01,
  2305. extra: 2154 / 2081
  2306. }
  2307. },
  2308. frontAlt: {
  2309. height: math.unit(183, "cm"),
  2310. weight: math.unit(80, "kg"),
  2311. name: "Front (alt)",
  2312. image: {
  2313. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2314. }
  2315. },
  2316. back: {
  2317. height: math.unit(183, "cm"),
  2318. weight: math.unit(80, "kg"),
  2319. name: "Back",
  2320. image: {
  2321. source: "./media/characters/sofia-fluttertail/back.svg"
  2322. }
  2323. },
  2324. kneeling: {
  2325. height: math.unit(125, "cm"),
  2326. weight: math.unit(80, "kg"),
  2327. name: "Kneeling",
  2328. image: {
  2329. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2330. extra: 1033 / 977,
  2331. bottom: 23.7 / 1057
  2332. }
  2333. },
  2334. maw: {
  2335. height: math.unit(183 / 5, "cm"),
  2336. name: "Maw",
  2337. image: {
  2338. source: "./media/characters/sofia-fluttertail/maw.svg"
  2339. }
  2340. },
  2341. mawcloseup: {
  2342. height: math.unit(183 / 5 * 0.41, "cm"),
  2343. name: "Maw (Closeup)",
  2344. image: {
  2345. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2346. }
  2347. },
  2348. paws: {
  2349. height: math.unit(1.17, "feet"),
  2350. name: "Paws",
  2351. image: {
  2352. source: "./media/characters/sofia-fluttertail/paws.svg",
  2353. extra: 851 / 851,
  2354. bottom: 17 / 868
  2355. }
  2356. },
  2357. },
  2358. [
  2359. {
  2360. name: "Normal",
  2361. height: math.unit(1.83, "meter")
  2362. },
  2363. {
  2364. name: "Size Thief",
  2365. height: math.unit(18, "feet")
  2366. },
  2367. {
  2368. name: "50 Foot Collie",
  2369. height: math.unit(50, "feet")
  2370. },
  2371. {
  2372. name: "Macro",
  2373. height: math.unit(96, "feet"),
  2374. default: true
  2375. },
  2376. {
  2377. name: "Megamerger",
  2378. height: math.unit(650, "feet")
  2379. },
  2380. ]
  2381. ))
  2382. characterMakers.push(() => makeCharacter(
  2383. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2384. {
  2385. front: {
  2386. height: math.unit(7, "feet"),
  2387. weight: math.unit(100, "kg"),
  2388. name: "Front",
  2389. image: {
  2390. source: "./media/characters/march/front.svg",
  2391. extra: 1992/1851,
  2392. bottom: 39/2031
  2393. }
  2394. },
  2395. foot: {
  2396. height: math.unit(0.9, "feet"),
  2397. name: "Foot",
  2398. image: {
  2399. source: "./media/characters/march/foot.svg"
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Normal",
  2406. height: math.unit(7.9, "feet")
  2407. },
  2408. {
  2409. name: "Macro",
  2410. height: math.unit(220, "meters")
  2411. },
  2412. {
  2413. name: "Megamacro",
  2414. height: math.unit(2.98, "km"),
  2415. default: true
  2416. },
  2417. {
  2418. name: "Gigamacro",
  2419. height: math.unit(15963, "km")
  2420. },
  2421. {
  2422. name: "Teramacro",
  2423. height: math.unit(2980000000, "km")
  2424. },
  2425. {
  2426. name: "Examacro",
  2427. height: math.unit(250, "parsecs")
  2428. },
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(60, "kg"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/noir/front.svg",
  2440. extra: 1,
  2441. bottom: 0.032
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(6.6, "feet")
  2449. },
  2450. {
  2451. name: "Macro",
  2452. height: math.unit(500, "feet")
  2453. },
  2454. {
  2455. name: "Megamacro",
  2456. height: math.unit(2.5, "km"),
  2457. default: true
  2458. },
  2459. {
  2460. name: "Gigamacro",
  2461. height: math.unit(22500, "km")
  2462. },
  2463. {
  2464. name: "Teramacro",
  2465. height: math.unit(2500000000, "km")
  2466. },
  2467. {
  2468. name: "Examacro",
  2469. height: math.unit(200, "parsecs")
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(7, "feet"),
  2478. weight: math.unit(100, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/okuri/front.svg",
  2482. extra: 739/665,
  2483. bottom: 39/778
  2484. }
  2485. },
  2486. back: {
  2487. height: math.unit(7, "feet"),
  2488. weight: math.unit(100, "kg"),
  2489. name: "Back",
  2490. image: {
  2491. source: "./media/characters/okuri/back.svg",
  2492. extra: 734/653,
  2493. bottom: 13/747
  2494. }
  2495. },
  2496. sitting: {
  2497. height: math.unit(2.95, "feet"),
  2498. weight: math.unit(100, "kg"),
  2499. name: "Sitting",
  2500. image: {
  2501. source: "./media/characters/okuri/sitting.svg",
  2502. extra: 370/318,
  2503. bottom: 99/469
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Smallest",
  2510. height: math.unit(5 + 2/12, "feet")
  2511. },
  2512. {
  2513. name: "Smaller",
  2514. height: math.unit(300, "feet")
  2515. },
  2516. {
  2517. name: "Small",
  2518. height: math.unit(1000, "feet")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(1, "mile")
  2523. },
  2524. {
  2525. name: "Mega Macro (Small)",
  2526. height: math.unit(20, "km")
  2527. },
  2528. {
  2529. name: "Mega Macro (Large)",
  2530. height: math.unit(600, "km")
  2531. },
  2532. {
  2533. name: "Giga Macro",
  2534. height: math.unit(10000, "km")
  2535. },
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(577560, "km"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Large",
  2543. height: math.unit(4, "galaxies")
  2544. },
  2545. {
  2546. name: "Largest",
  2547. height: math.unit(15, "multiverses")
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(7, "feet"),
  2556. weight: math.unit(100, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/manny/front.svg",
  2560. extra: 1,
  2561. bottom: 0.06
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(7, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/manny/back.svg",
  2570. extra: 1,
  2571. bottom: 0.014
  2572. }
  2573. },
  2574. },
  2575. [
  2576. {
  2577. name: "Normal",
  2578. height: math.unit(7, "feet"),
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(78, "feet"),
  2583. default: true
  2584. },
  2585. {
  2586. name: "Macro+",
  2587. height: math.unit(300, "meters")
  2588. },
  2589. {
  2590. name: "Macro++",
  2591. height: math.unit(2400, "meters")
  2592. },
  2593. {
  2594. name: "Megamacro",
  2595. height: math.unit(5167, "meters")
  2596. },
  2597. {
  2598. name: "Gigamacro",
  2599. height: math.unit(41769, "miles")
  2600. },
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2605. {
  2606. front: {
  2607. height: math.unit(7, "feet"),
  2608. weight: math.unit(100, "kg"),
  2609. name: "Front",
  2610. image: {
  2611. source: "./media/characters/adake/front-1.svg"
  2612. }
  2613. },
  2614. frontAlt: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Front (Alt)",
  2618. image: {
  2619. source: "./media/characters/adake/front-2.svg",
  2620. extra: 1,
  2621. bottom: 0.01
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(7, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/adake/back.svg",
  2630. }
  2631. },
  2632. kneel: {
  2633. height: math.unit(5.385, "feet"),
  2634. weight: math.unit(100, "kg"),
  2635. name: "Kneeling",
  2636. image: {
  2637. source: "./media/characters/adake/kneel.svg",
  2638. bottom: 0.052
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(7, "feet"),
  2646. },
  2647. {
  2648. name: "Macro",
  2649. height: math.unit(78, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Macro+",
  2654. height: math.unit(300, "meters")
  2655. },
  2656. {
  2657. name: "Macro++",
  2658. height: math.unit(2400, "meters")
  2659. },
  2660. {
  2661. name: "Megamacro",
  2662. height: math.unit(5167, "meters")
  2663. },
  2664. {
  2665. name: "Gigamacro",
  2666. height: math.unit(41769, "miles")
  2667. },
  2668. ]
  2669. ))
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(1.65, "meters"),
  2675. weight: math.unit(50, "kg"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/elijah/front.svg",
  2679. extra: 858 / 830,
  2680. bottom: 95.5 / 953.8559
  2681. }
  2682. },
  2683. back: {
  2684. height: math.unit(1.65, "meters"),
  2685. weight: math.unit(50, "kg"),
  2686. name: "Back",
  2687. image: {
  2688. source: "./media/characters/elijah/back.svg",
  2689. extra: 895 / 850,
  2690. bottom: 5.3 / 897.956
  2691. }
  2692. },
  2693. frontNsfw: {
  2694. height: math.unit(1.65, "meters"),
  2695. weight: math.unit(50, "kg"),
  2696. name: "Front (NSFW)",
  2697. image: {
  2698. source: "./media/characters/elijah/front-nsfw.svg",
  2699. extra: 858 / 830,
  2700. bottom: 95.5 / 953.8559
  2701. }
  2702. },
  2703. backNsfw: {
  2704. height: math.unit(1.65, "meters"),
  2705. weight: math.unit(50, "kg"),
  2706. name: "Back (NSFW)",
  2707. image: {
  2708. source: "./media/characters/elijah/back-nsfw.svg",
  2709. extra: 895 / 850,
  2710. bottom: 5.3 / 897.956
  2711. }
  2712. },
  2713. dick: {
  2714. height: math.unit(1, "feet"),
  2715. name: "Dick",
  2716. image: {
  2717. source: "./media/characters/elijah/dick.svg"
  2718. }
  2719. },
  2720. beakOpen: {
  2721. height: math.unit(1.25, "feet"),
  2722. name: "Beak (Open)",
  2723. image: {
  2724. source: "./media/characters/elijah/beak-open.svg"
  2725. }
  2726. },
  2727. beakShut: {
  2728. height: math.unit(1.25, "feet"),
  2729. name: "Beak (Shut)",
  2730. image: {
  2731. source: "./media/characters/elijah/beak-shut.svg"
  2732. }
  2733. },
  2734. footFlexing: {
  2735. height: math.unit(1.61, "feet"),
  2736. name: "Foot (Flexing)",
  2737. image: {
  2738. source: "./media/characters/elijah/foot-flexing.svg"
  2739. }
  2740. },
  2741. footStepping: {
  2742. height: math.unit(1.44, "feet"),
  2743. name: "Foot (Stepping)",
  2744. image: {
  2745. source: "./media/characters/elijah/foot-stepping.svg"
  2746. }
  2747. },
  2748. plantigradeLeg: {
  2749. height: math.unit(2.34, "feet"),
  2750. name: "Plantigrade Leg",
  2751. image: {
  2752. source: "./media/characters/elijah/plantigrade-leg.svg"
  2753. }
  2754. },
  2755. plantigradeFootLeft: {
  2756. height: math.unit(0.9, "feet"),
  2757. name: "Plantigrade Foot (Left)",
  2758. image: {
  2759. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2760. }
  2761. },
  2762. plantigradeFootRight: {
  2763. height: math.unit(0.9, "feet"),
  2764. name: "Plantigrade Foot (Right)",
  2765. image: {
  2766. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(1.65, "meters")
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(55, "meters"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(105, "meters")
  2783. },
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2788. {
  2789. front: {
  2790. height: math.unit(7 + 2/12, "feet"),
  2791. weight: math.unit(320, "kg"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/rai/front.svg",
  2795. extra: 1802/1696,
  2796. bottom: 68/1870
  2797. }
  2798. },
  2799. frontDressed: {
  2800. height: math.unit(7 + 2/12, "feet"),
  2801. weight: math.unit(320, "kg"),
  2802. name: "Front (Dressed)",
  2803. image: {
  2804. source: "./media/characters/rai/front-dressed.svg",
  2805. extra: 1802/1696,
  2806. bottom: 68/1870
  2807. }
  2808. },
  2809. side: {
  2810. height: math.unit(7 + 2/12, "feet"),
  2811. weight: math.unit(320, "kg"),
  2812. name: "Side",
  2813. image: {
  2814. source: "./media/characters/rai/side.svg",
  2815. extra: 1789/1710,
  2816. bottom: 115/1904
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(7 + 2/12, "feet"),
  2821. weight: math.unit(320, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/rai/back.svg",
  2825. extra: 1770/1707,
  2826. bottom: 28/1798
  2827. }
  2828. },
  2829. feral: {
  2830. height: math.unit(9.5, "feet"),
  2831. weight: math.unit(640, "kg"),
  2832. name: "Feral",
  2833. image: {
  2834. source: "./media/characters/rai/feral.svg",
  2835. extra: 945/553,
  2836. bottom: 176/1121
  2837. }
  2838. },
  2839. dragon: {
  2840. height: math.unit(23, "feet"),
  2841. weight: math.unit(50000, "lb"),
  2842. name: "Dragon",
  2843. image: {
  2844. source: "./media/characters/rai/dragon.svg",
  2845. extra: 2498 / 2030,
  2846. bottom: 85.2 / 2584
  2847. }
  2848. },
  2849. maw: {
  2850. height: math.unit(1.69, "feet"),
  2851. name: "Maw",
  2852. image: {
  2853. source: "./media/characters/rai/maw.svg"
  2854. }
  2855. },
  2856. },
  2857. [
  2858. {
  2859. name: "Normal",
  2860. height: math.unit(7 + 2/12, "feet")
  2861. },
  2862. {
  2863. name: "Big",
  2864. height: math.unit(11, "feet")
  2865. },
  2866. {
  2867. name: "Macro",
  2868. height: math.unit(302, "feet"),
  2869. default: true
  2870. },
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2875. {
  2876. frontDressed: {
  2877. height: math.unit(216, "feet"),
  2878. weight: math.unit(7000000, "lb"),
  2879. name: "Front (Dressed)",
  2880. image: {
  2881. source: "./media/characters/jazzy/front-dressed.svg",
  2882. extra: 2738 / 2651,
  2883. bottom: 41.8 / 2786
  2884. }
  2885. },
  2886. backDressed: {
  2887. height: math.unit(216, "feet"),
  2888. weight: math.unit(7000000, "lb"),
  2889. name: "Back (Dressed)",
  2890. image: {
  2891. source: "./media/characters/jazzy/back-dressed.svg",
  2892. extra: 2775 / 2673,
  2893. bottom: 36.8 / 2817
  2894. }
  2895. },
  2896. front: {
  2897. height: math.unit(216, "feet"),
  2898. weight: math.unit(7000000, "lb"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/jazzy/front.svg",
  2902. extra: 2738 / 2651,
  2903. bottom: 41.8 / 2786
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(216, "feet"),
  2908. weight: math.unit(7000000, "lb"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/jazzy/back.svg",
  2912. extra: 2775 / 2673,
  2913. bottom: 36.8 / 2817
  2914. }
  2915. },
  2916. maw: {
  2917. height: math.unit(20, "feet"),
  2918. name: "Maw",
  2919. image: {
  2920. source: "./media/characters/jazzy/maw.svg"
  2921. }
  2922. },
  2923. paws: {
  2924. height: math.unit(27.5, "feet"),
  2925. name: "Paws",
  2926. image: {
  2927. source: "./media/characters/jazzy/paws.svg"
  2928. }
  2929. },
  2930. eye: {
  2931. height: math.unit(4.4, "feet"),
  2932. name: "Eye",
  2933. image: {
  2934. source: "./media/characters/jazzy/eye.svg"
  2935. }
  2936. },
  2937. droneOffense: {
  2938. height: math.unit(9.5, "inches"),
  2939. name: "Drone (Offense)",
  2940. image: {
  2941. source: "./media/characters/jazzy/drone-offense.svg"
  2942. }
  2943. },
  2944. droneRecon: {
  2945. height: math.unit(9.5, "inches"),
  2946. name: "Drone (Recon)",
  2947. image: {
  2948. source: "./media/characters/jazzy/drone-recon.svg"
  2949. }
  2950. },
  2951. droneDefense: {
  2952. height: math.unit(9.5, "inches"),
  2953. name: "Drone (Defense)",
  2954. image: {
  2955. source: "./media/characters/jazzy/drone-defense.svg"
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(216, "feet"),
  2963. default: true
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(9 + 6/12, "feet"),
  2972. weight: math.unit(700, "lb"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/flamm/front.svg",
  2976. extra: 1751/1632,
  2977. bottom: 46/1797
  2978. }
  2979. },
  2980. buff: {
  2981. height: math.unit(9 + 6/12, "feet"),
  2982. weight: math.unit(950, "lb"),
  2983. name: "Buff",
  2984. image: {
  2985. source: "./media/characters/flamm/buff.svg",
  2986. extra: 3018/2874,
  2987. bottom: 221/3239
  2988. }
  2989. },
  2990. },
  2991. [
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(9.5, "feet")
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(200, "feet"),
  2999. default: true
  3000. },
  3001. ]
  3002. ))
  3003. characterMakers.push(() => makeCharacter(
  3004. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3005. {
  3006. front: {
  3007. height: math.unit(5 + 3/12, "feet"),
  3008. weight: math.unit(60, "kg"),
  3009. name: "Front",
  3010. image: {
  3011. source: "./media/characters/zephiro/front.svg",
  3012. extra: 1873/1761,
  3013. bottom: 147/2020
  3014. }
  3015. },
  3016. side: {
  3017. height: math.unit(5 + 3/12, "feet"),
  3018. weight: math.unit(60, "kg"),
  3019. name: "Side",
  3020. image: {
  3021. source: "./media/characters/zephiro/side.svg",
  3022. extra: 1929/1827,
  3023. bottom: 65/1994
  3024. }
  3025. },
  3026. back: {
  3027. height: math.unit(5 + 3/12, "feet"),
  3028. weight: math.unit(60, "kg"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/zephiro/back.svg",
  3032. extra: 1926/1816,
  3033. bottom: 41/1967
  3034. }
  3035. },
  3036. hand: {
  3037. height: math.unit(0.68, "feet"),
  3038. name: "Hand",
  3039. image: {
  3040. source: "./media/characters/zephiro/hand.svg"
  3041. }
  3042. },
  3043. paw: {
  3044. height: math.unit(1, "feet"),
  3045. name: "Paw",
  3046. image: {
  3047. source: "./media/characters/zephiro/paw.svg"
  3048. }
  3049. },
  3050. beans: {
  3051. height: math.unit(0.93, "feet"),
  3052. name: "Beans",
  3053. image: {
  3054. source: "./media/characters/zephiro/beans.svg"
  3055. }
  3056. },
  3057. },
  3058. [
  3059. {
  3060. name: "Micro",
  3061. height: math.unit(3, "inches")
  3062. },
  3063. {
  3064. name: "Normal",
  3065. height: math.unit(5 + 3 / 12, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Macro",
  3070. height: math.unit(118, "feet")
  3071. },
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(5, "feet"),
  3079. weight: math.unit(90, "kg"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/fory/front.svg",
  3083. extra: 2862 / 2674,
  3084. bottom: 180 / 3043.8
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(5, "feet"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/fory/back.svg",
  3093. extra: 2962 / 2791,
  3094. bottom: 106 / 3071.8
  3095. }
  3096. },
  3097. foot: {
  3098. height: math.unit(2.14, "feet"),
  3099. name: "Foot",
  3100. image: {
  3101. source: "./media/characters/fory/foot.svg"
  3102. }
  3103. },
  3104. },
  3105. [
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(5, "feet")
  3109. },
  3110. {
  3111. name: "Macro",
  3112. height: math.unit(50, "feet"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Megamacro",
  3117. height: math.unit(10, "miles")
  3118. },
  3119. {
  3120. name: "Gigamacro",
  3121. height: math.unit(5, "earths")
  3122. },
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(7, "feet"),
  3130. weight: math.unit(90, "kg"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/kurrikage/front.svg",
  3134. extra: 1845/1733,
  3135. bottom: 119/1964
  3136. }
  3137. },
  3138. back: {
  3139. height: math.unit(7, "feet"),
  3140. weight: math.unit(90, "kg"),
  3141. name: "Back",
  3142. image: {
  3143. source: "./media/characters/kurrikage/back.svg",
  3144. extra: 1790/1677,
  3145. bottom: 61/1851
  3146. }
  3147. },
  3148. dressed: {
  3149. height: math.unit(7, "feet"),
  3150. weight: math.unit(90, "kg"),
  3151. name: "Dressed",
  3152. image: {
  3153. source: "./media/characters/kurrikage/dressed.svg",
  3154. extra: 1845/1733,
  3155. bottom: 119/1964
  3156. }
  3157. },
  3158. foot: {
  3159. height: math.unit(1.5, "feet"),
  3160. name: "Foot",
  3161. image: {
  3162. source: "./media/characters/kurrikage/foot.svg"
  3163. }
  3164. },
  3165. staff: {
  3166. height: math.unit(6.7, "feet"),
  3167. name: "Staff",
  3168. image: {
  3169. source: "./media/characters/kurrikage/staff.svg"
  3170. }
  3171. },
  3172. peek: {
  3173. height: math.unit(1.05, "feet"),
  3174. name: "Peeking",
  3175. image: {
  3176. source: "./media/characters/kurrikage/peek.svg",
  3177. bottom: 0.08
  3178. }
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(12, "feet"),
  3185. default: true
  3186. },
  3187. {
  3188. name: "Big",
  3189. height: math.unit(20, "feet")
  3190. },
  3191. {
  3192. name: "Macro",
  3193. height: math.unit(500, "feet")
  3194. },
  3195. {
  3196. name: "Megamacro",
  3197. height: math.unit(20, "miles")
  3198. },
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3203. {
  3204. front: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(75, "kg"),
  3207. name: "Front",
  3208. image: {
  3209. source: "./media/characters/shingo/front.svg",
  3210. extra: 1900/1825,
  3211. bottom: 82/1982
  3212. }
  3213. },
  3214. side: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(75, "kg"),
  3217. name: "Side",
  3218. image: {
  3219. source: "./media/characters/shingo/side.svg",
  3220. extra: 1930/1865,
  3221. bottom: 16/1946
  3222. }
  3223. },
  3224. back: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(75, "kg"),
  3227. name: "Back",
  3228. image: {
  3229. source: "./media/characters/shingo/back.svg",
  3230. extra: 1922/1852,
  3231. bottom: 16/1938
  3232. }
  3233. },
  3234. frontDressed: {
  3235. height: math.unit(6, "feet"),
  3236. weight: math.unit(150, "lb"),
  3237. name: "Front-dressed",
  3238. image: {
  3239. source: "./media/characters/shingo/front-dressed.svg",
  3240. extra: 1900/1825,
  3241. bottom: 82/1982
  3242. }
  3243. },
  3244. paw: {
  3245. height: math.unit(1.29, "feet"),
  3246. name: "Paw",
  3247. image: {
  3248. source: "./media/characters/shingo/paw.svg"
  3249. }
  3250. },
  3251. hand: {
  3252. height: math.unit(1.07, "feet"),
  3253. name: "Hand",
  3254. image: {
  3255. source: "./media/characters/shingo/hand.svg"
  3256. }
  3257. },
  3258. frontAlt: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(75, "kg"),
  3261. name: "Front (Alt)",
  3262. image: {
  3263. source: "./media/characters/shingo/front-alt.svg",
  3264. extra: 3511 / 3338,
  3265. bottom: 0.005
  3266. }
  3267. },
  3268. frontAlt2: {
  3269. height: math.unit(6, "feet"),
  3270. weight: math.unit(75, "kg"),
  3271. name: "Front (Alt 2)",
  3272. image: {
  3273. source: "./media/characters/shingo/front-alt-2.svg",
  3274. extra: 706/681,
  3275. bottom: 11/717
  3276. }
  3277. },
  3278. pawAlt: {
  3279. height: math.unit(1, "feet"),
  3280. name: "Paw (Alt)",
  3281. image: {
  3282. source: "./media/characters/shingo/paw-alt.svg"
  3283. }
  3284. },
  3285. },
  3286. [
  3287. {
  3288. name: "Micro",
  3289. height: math.unit(4, "inches")
  3290. },
  3291. {
  3292. name: "Normal",
  3293. height: math.unit(6, "feet"),
  3294. default: true
  3295. },
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(108, "feet")
  3299. },
  3300. {
  3301. name: "Macro+",
  3302. height: math.unit(1500, "feet")
  3303. },
  3304. ]
  3305. ))
  3306. characterMakers.push(() => makeCharacter(
  3307. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3308. {
  3309. side: {
  3310. height: math.unit(6, "feet"),
  3311. weight: math.unit(75, "kg"),
  3312. name: "Side",
  3313. image: {
  3314. source: "./media/characters/aigey/side.svg"
  3315. }
  3316. },
  3317. },
  3318. [
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(200, "feet"),
  3322. default: true
  3323. },
  3324. {
  3325. name: "Megamacro",
  3326. height: math.unit(100, "miles")
  3327. },
  3328. ]
  3329. )
  3330. )
  3331. characterMakers.push(() => makeCharacter(
  3332. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3333. {
  3334. front: {
  3335. height: math.unit(5 + 5 / 12, "feet"),
  3336. weight: math.unit(75, "kg"),
  3337. name: "Front",
  3338. image: {
  3339. source: "./media/characters/natasha/front.svg",
  3340. extra: 859 / 824,
  3341. bottom: 23 / 879.6
  3342. }
  3343. },
  3344. frontNsfw: {
  3345. height: math.unit(5 + 5 / 12, "feet"),
  3346. weight: math.unit(75, "kg"),
  3347. name: "Front (NSFW)",
  3348. image: {
  3349. source: "./media/characters/natasha/front-nsfw.svg",
  3350. extra: 859 / 824,
  3351. bottom: 23 / 879.6
  3352. }
  3353. },
  3354. frontErect: {
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. weight: math.unit(75, "kg"),
  3357. name: "Front (Erect)",
  3358. image: {
  3359. source: "./media/characters/natasha/front-erect.svg",
  3360. extra: 859 / 824,
  3361. bottom: 23 / 879.6
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(5 + 5 / 12, "feet"),
  3366. weight: math.unit(75, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/natasha/back.svg",
  3370. extra: 887.9 / 852.6,
  3371. bottom: 9.7 / 896.4
  3372. }
  3373. },
  3374. backAlt: {
  3375. height: math.unit(5 + 5 / 12, "feet"),
  3376. weight: math.unit(75, "kg"),
  3377. name: "Back (Alt)",
  3378. image: {
  3379. source: "./media/characters/natasha/back-alt.svg",
  3380. extra: 1236.7 / 1192,
  3381. bottom: 22.3 / 1258.2
  3382. }
  3383. },
  3384. dick: {
  3385. height: math.unit(1.772, "feet"),
  3386. name: "Dick",
  3387. image: {
  3388. source: "./media/characters/natasha/dick.svg"
  3389. }
  3390. },
  3391. paw: {
  3392. height: math.unit(0.250, "meters"),
  3393. name: "Paw",
  3394. image: {
  3395. source: "./media/characters/natasha/paw.svg"
  3396. },
  3397. extraAttributes: {
  3398. "toeSize": {
  3399. name: "Toe Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.0024, "m^2")
  3403. },
  3404. "padSize": {
  3405. name: "Pad Size",
  3406. power: 2,
  3407. type: "area",
  3408. base: math.unit(0.00889, "m^2")
  3409. },
  3410. "pawSize": {
  3411. name: "Paw Size",
  3412. power: 2,
  3413. type: "area",
  3414. base: math.unit(0.023667, "m^2")
  3415. },
  3416. }
  3417. },
  3418. },
  3419. [
  3420. {
  3421. name: "Shortstack",
  3422. height: math.unit(3, "feet"),
  3423. default: true
  3424. },
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(5 + 5 / 12, "feet")
  3428. },
  3429. {
  3430. name: "Large",
  3431. height: math.unit(12, "feet")
  3432. },
  3433. {
  3434. name: "Macro",
  3435. height: math.unit(100, "feet")
  3436. },
  3437. {
  3438. name: "Macro+",
  3439. height: math.unit(260, "feet")
  3440. },
  3441. {
  3442. name: "Macro++",
  3443. height: math.unit(1, "mile")
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(6, "feet"),
  3452. weight: math.unit(75, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/malik/front.svg",
  3456. extra: 1750/1561,
  3457. bottom: 80/1830
  3458. },
  3459. extraAttributes: {
  3460. "toeSize": {
  3461. name: "Toe Size",
  3462. power: 2,
  3463. type: "area",
  3464. base: math.unit(0.0159, "m^2")
  3465. },
  3466. "pawSize": {
  3467. name: "Paw Size",
  3468. power: 2,
  3469. type: "area",
  3470. base: math.unit(0.09834, "m^2")
  3471. },
  3472. }
  3473. },
  3474. side: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(75, "kg"),
  3477. name: "Side",
  3478. image: {
  3479. source: "./media/characters/malik/side.svg",
  3480. extra: 1802/1685,
  3481. bottom: 42/1844
  3482. },
  3483. extraAttributes: {
  3484. "toeSize": {
  3485. name: "Toe Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.0159, "m^2")
  3489. },
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.09834, "m^2")
  3495. },
  3496. }
  3497. },
  3498. back: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Back",
  3502. image: {
  3503. source: "./media/characters/malik/back.svg",
  3504. extra: 1803/1607,
  3505. bottom: 33/1836
  3506. },
  3507. extraAttributes: {
  3508. "toeSize": {
  3509. name: "Toe Size",
  3510. power: 2,
  3511. type: "area",
  3512. base: math.unit(0.0159, "m^2")
  3513. },
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.09834, "m^2")
  3519. },
  3520. }
  3521. },
  3522. },
  3523. [
  3524. {
  3525. name: "Macro",
  3526. height: math.unit(156, "feet"),
  3527. default: true
  3528. },
  3529. {
  3530. name: "Macro+",
  3531. height: math.unit(1188, "feet")
  3532. },
  3533. ]
  3534. ))
  3535. characterMakers.push(() => makeCharacter(
  3536. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3537. {
  3538. front: {
  3539. height: math.unit(6, "feet"),
  3540. weight: math.unit(75, "kg"),
  3541. name: "Front",
  3542. image: {
  3543. source: "./media/characters/sefer/front.svg",
  3544. extra: 848 / 659,
  3545. bottom: 28.3 / 876.442
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(6, "feet"),
  3550. weight: math.unit(75, "kg"),
  3551. name: "Back",
  3552. image: {
  3553. source: "./media/characters/sefer/back.svg",
  3554. extra: 864 / 695,
  3555. bottom: 10 / 871
  3556. }
  3557. },
  3558. frontDressed: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(75, "kg"),
  3561. name: "Dressed",
  3562. image: {
  3563. source: "./media/characters/sefer/dressed.svg",
  3564. extra: 839 / 653,
  3565. bottom: 37.6 / 878
  3566. }
  3567. },
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(6, "feet"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Big",
  3577. height: math.unit(8, "meters")
  3578. },
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3583. {
  3584. body: {
  3585. height: math.unit(2.2428, "meter"),
  3586. weight: math.unit(124.738, "kg"),
  3587. name: "Body",
  3588. image: {
  3589. extra: 1225 / 1050,
  3590. source: "./media/characters/north/front.svg"
  3591. }
  3592. }
  3593. },
  3594. [
  3595. {
  3596. name: "Micro",
  3597. height: math.unit(4, "inches")
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(63, "meters")
  3602. },
  3603. {
  3604. name: "Megamacro",
  3605. height: math.unit(101, "miles"),
  3606. default: true
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3612. {
  3613. angled: {
  3614. height: math.unit(4, "meter"),
  3615. weight: math.unit(150, "kg"),
  3616. name: "Angled",
  3617. image: {
  3618. source: "./media/characters/talan/angled-sfw.svg",
  3619. bottom: 29 / 3734
  3620. }
  3621. },
  3622. angledNsfw: {
  3623. height: math.unit(4, "meter"),
  3624. weight: math.unit(150, "kg"),
  3625. name: "Angled (NSFW)",
  3626. image: {
  3627. source: "./media/characters/talan/angled-nsfw.svg",
  3628. bottom: 29 / 3734
  3629. }
  3630. },
  3631. frontNsfw: {
  3632. height: math.unit(4, "meter"),
  3633. weight: math.unit(150, "kg"),
  3634. name: "Front (NSFW)",
  3635. image: {
  3636. source: "./media/characters/talan/front-nsfw.svg",
  3637. bottom: 29 / 3734
  3638. }
  3639. },
  3640. sideNsfw: {
  3641. height: math.unit(4, "meter"),
  3642. weight: math.unit(150, "kg"),
  3643. name: "Side (NSFW)",
  3644. image: {
  3645. source: "./media/characters/talan/side-nsfw.svg",
  3646. bottom: 29 / 3734
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(4, "meter"),
  3651. weight: math.unit(150, "kg"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/talan/back.svg"
  3655. }
  3656. },
  3657. dickBottom: {
  3658. height: math.unit(0.621, "meter"),
  3659. name: "Dick (Bottom)",
  3660. image: {
  3661. source: "./media/characters/talan/dick-bottom.svg"
  3662. }
  3663. },
  3664. dickTop: {
  3665. height: math.unit(0.621, "meter"),
  3666. name: "Dick (Top)",
  3667. image: {
  3668. source: "./media/characters/talan/dick-top.svg"
  3669. }
  3670. },
  3671. dickSide: {
  3672. height: math.unit(0.305, "meter"),
  3673. name: "Dick (Side)",
  3674. image: {
  3675. source: "./media/characters/talan/dick-side.svg"
  3676. }
  3677. },
  3678. dickFront: {
  3679. height: math.unit(0.305, "meter"),
  3680. name: "Dick (Front)",
  3681. image: {
  3682. source: "./media/characters/talan/dick-front.svg"
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(4, "meters")
  3690. },
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(100, "meters")
  3694. },
  3695. {
  3696. name: "Megamacro",
  3697. height: math.unit(2, "miles"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Gigamacro",
  3702. height: math.unit(5000, "miles")
  3703. },
  3704. {
  3705. name: "Teramacro",
  3706. height: math.unit(100, "parsecs")
  3707. }
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/gael'rathus/front.svg"
  3719. }
  3720. },
  3721. frontAlt: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Front (alt)",
  3725. image: {
  3726. source: "./media/characters/gael'rathus/front-alt.svg"
  3727. }
  3728. },
  3729. frontAlt2: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(90, "kg"),
  3732. name: "Front (alt 2)",
  3733. image: {
  3734. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(9, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Large",
  3746. height: math.unit(25, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(0.25, "miles")
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(10, "miles")
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3760. {
  3761. side: {
  3762. height: math.unit(2, "meter"),
  3763. weight: math.unit(140, "kg"),
  3764. name: "Side",
  3765. image: {
  3766. source: "./media/characters/sosha/side.svg",
  3767. extra: 1170/1006,
  3768. bottom: 94/1264
  3769. }
  3770. },
  3771. maw: {
  3772. height: math.unit(2.87, "feet"),
  3773. name: "Maw",
  3774. image: {
  3775. source: "./media/characters/sosha/maw.svg",
  3776. extra: 966/865,
  3777. bottom: 0/966
  3778. }
  3779. },
  3780. cooch: {
  3781. height: math.unit(5.6, "feet"),
  3782. name: "Cooch",
  3783. image: {
  3784. source: "./media/characters/sosha/cooch.svg"
  3785. }
  3786. },
  3787. },
  3788. [
  3789. {
  3790. name: "Normal",
  3791. height: math.unit(12, "feet"),
  3792. default: true
  3793. }
  3794. ]
  3795. ))
  3796. characterMakers.push(() => makeCharacter(
  3797. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3798. {
  3799. side: {
  3800. height: math.unit(5 + 5 / 12, "feet"),
  3801. weight: math.unit(170, "kg"),
  3802. name: "Side",
  3803. image: {
  3804. source: "./media/characters/runnola/side.svg",
  3805. extra: 741 / 448,
  3806. bottom: 0.05
  3807. }
  3808. },
  3809. },
  3810. [
  3811. {
  3812. name: "Small",
  3813. height: math.unit(3, "feet")
  3814. },
  3815. {
  3816. name: "Normal",
  3817. height: math.unit(5 + 5 / 12, "feet"),
  3818. default: true
  3819. },
  3820. {
  3821. name: "Big",
  3822. height: math.unit(10, "feet")
  3823. },
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3828. {
  3829. front: {
  3830. height: math.unit(2, "meter"),
  3831. weight: math.unit(50, "kg"),
  3832. name: "Front",
  3833. image: {
  3834. source: "./media/characters/kurribird/front.svg",
  3835. bottom: 0.015
  3836. }
  3837. },
  3838. frontAlt: {
  3839. height: math.unit(1.5, "meter"),
  3840. weight: math.unit(50, "kg"),
  3841. name: "Front (Alt)",
  3842. image: {
  3843. source: "./media/characters/kurribird/front-alt.svg",
  3844. extra: 1.45
  3845. }
  3846. },
  3847. },
  3848. [
  3849. {
  3850. name: "Normal",
  3851. height: math.unit(7, "feet")
  3852. },
  3853. {
  3854. name: "Big",
  3855. height: math.unit(12, "feet"),
  3856. default: true
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(1500, "feet")
  3861. },
  3862. {
  3863. name: "Megamacro",
  3864. height: math.unit(2, "miles")
  3865. }
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(2, "meter"),
  3873. weight: math.unit(80, "kg"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/elbial/front.svg",
  3877. extra: 1643 / 1556,
  3878. bottom: 60.2 / 1696
  3879. }
  3880. },
  3881. side: {
  3882. height: math.unit(2, "meter"),
  3883. weight: math.unit(80, "kg"),
  3884. name: "Side",
  3885. image: {
  3886. source: "./media/characters/elbial/side.svg",
  3887. extra: 1601/1528,
  3888. bottom: 97/1698
  3889. }
  3890. },
  3891. back: {
  3892. height: math.unit(2, "meter"),
  3893. weight: math.unit(80, "kg"),
  3894. name: "Back",
  3895. image: {
  3896. source: "./media/characters/elbial/back.svg",
  3897. extra: 1653/1569,
  3898. bottom: 20/1673
  3899. }
  3900. },
  3901. frontDressed: {
  3902. height: math.unit(2, "meter"),
  3903. weight: math.unit(80, "kg"),
  3904. name: "Front (Dressed)",
  3905. image: {
  3906. source: "./media/characters/elbial/front-dressed.svg",
  3907. extra: 1638/1569,
  3908. bottom: 70/1708
  3909. }
  3910. },
  3911. genitals: {
  3912. height: math.unit(2 / 3.367, "meter"),
  3913. name: "Genitals",
  3914. image: {
  3915. source: "./media/characters/elbial/genitals.svg"
  3916. }
  3917. },
  3918. },
  3919. [
  3920. {
  3921. name: "Large",
  3922. height: math.unit(100, "feet")
  3923. },
  3924. {
  3925. name: "Macro",
  3926. height: math.unit(500, "feet"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(10, "miles")
  3932. },
  3933. {
  3934. name: "Gigamacro",
  3935. height: math.unit(25000, "miles")
  3936. },
  3937. {
  3938. name: "Full-Size",
  3939. height: math.unit(8000000, "gigaparsecs")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/noah/front.svg"
  3952. }
  3953. },
  3954. talons: {
  3955. height: math.unit(0.315, "meter"),
  3956. name: "Talons",
  3957. image: {
  3958. source: "./media/characters/noah/talons.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Large",
  3965. height: math.unit(50, "feet")
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(750, "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Megamacro",
  3974. height: math.unit(50, "miles")
  3975. },
  3976. {
  3977. name: "Gigamacro",
  3978. height: math.unit(100000, "miles")
  3979. },
  3980. {
  3981. name: "Full-Size",
  3982. height: math.unit(3000000000, "miles")
  3983. }
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(80, "kg"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/natalya/front.svg"
  3995. }
  3996. },
  3997. back: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(80, "kg"),
  4000. name: "Back",
  4001. image: {
  4002. source: "./media/characters/natalya/back.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Normal",
  4009. height: math.unit(150, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Megamacro",
  4014. height: math.unit(5, "miles")
  4015. },
  4016. {
  4017. name: "Full-Size",
  4018. height: math.unit(600, "kiloparsecs")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(50, "kg"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/erestrebah/front.svg",
  4031. extra: 1262/1162,
  4032. bottom: 96/1358
  4033. }
  4034. },
  4035. back: {
  4036. height: math.unit(2, "meter"),
  4037. weight: math.unit(50, "kg"),
  4038. name: "Back",
  4039. image: {
  4040. source: "./media/characters/erestrebah/back.svg",
  4041. extra: 1257/1139,
  4042. bottom: 13/1270
  4043. }
  4044. },
  4045. wing: {
  4046. height: math.unit(2, "meter"),
  4047. weight: math.unit(50, "kg"),
  4048. name: "Wing",
  4049. image: {
  4050. source: "./media/characters/erestrebah/wing.svg",
  4051. extra: 1262/1162,
  4052. bottom: 96/1358
  4053. }
  4054. },
  4055. mouth: {
  4056. height: math.unit(0.39, "feet"),
  4057. name: "Mouth",
  4058. image: {
  4059. source: "./media/characters/erestrebah/mouth.svg"
  4060. }
  4061. }
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(10, "feet")
  4067. },
  4068. {
  4069. name: "Large",
  4070. height: math.unit(50, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(300, "feet")
  4076. },
  4077. {
  4078. name: "Macro+",
  4079. height: math.unit(750, "feet")
  4080. },
  4081. {
  4082. name: "Megamacro",
  4083. height: math.unit(3, "miles")
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4089. {
  4090. front: {
  4091. height: math.unit(2, "meter"),
  4092. weight: math.unit(80, "kg"),
  4093. name: "Front",
  4094. image: {
  4095. source: "./media/characters/jennifer/front.svg",
  4096. bottom: 0.11,
  4097. extra: 1.16
  4098. }
  4099. },
  4100. frontAlt: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(80, "kg"),
  4103. name: "Front (Alt)",
  4104. image: {
  4105. source: "./media/characters/jennifer/front-alt.svg"
  4106. }
  4107. }
  4108. },
  4109. [
  4110. {
  4111. name: "Canon Height",
  4112. height: math.unit(120, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Macro+",
  4117. height: math.unit(300, "feet")
  4118. },
  4119. {
  4120. name: "Megamacro",
  4121. height: math.unit(20000, "feet")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(2, "meter"),
  4130. weight: math.unit(50, "kg"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/kalista/front.svg",
  4134. extra: 1314/1145,
  4135. bottom: 101/1415
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(2, "meter"),
  4140. weight: math.unit(50, "kg"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/kalista/back.svg",
  4144. extra: 1366 / 1156,
  4145. bottom: 33.9 / 1362.78
  4146. }
  4147. }
  4148. },
  4149. [
  4150. {
  4151. name: "Uncomfortably Small",
  4152. height: math.unit(10, "feet")
  4153. },
  4154. {
  4155. name: "Small",
  4156. height: math.unit(30, "feet")
  4157. },
  4158. {
  4159. name: "Macro",
  4160. height: math.unit(100, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Macro+",
  4165. height: math.unit(2000, "feet")
  4166. },
  4167. {
  4168. name: "True Form",
  4169. height: math.unit(8924, "miles")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(2, "meter"),
  4178. weight: math.unit(120, "kg"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/ggv/front.svg"
  4182. }
  4183. },
  4184. side: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(120, "kg"),
  4187. name: "Side",
  4188. image: {
  4189. source: "./media/characters/ggv/side.svg"
  4190. }
  4191. }
  4192. },
  4193. [
  4194. {
  4195. name: "Extremely Puny",
  4196. height: math.unit(9 + 5 / 12, "feet")
  4197. },
  4198. {
  4199. name: "Horribly Small",
  4200. height: math.unit(47.7, "miles"),
  4201. default: true
  4202. },
  4203. {
  4204. name: "Reasonably Sized",
  4205. height: math.unit(25000, "parsecs")
  4206. },
  4207. {
  4208. name: "Slightly Uncompressed",
  4209. height: math.unit(7.77e31, "parsecs")
  4210. },
  4211. {
  4212. name: "Omniversal",
  4213. height: math.unit(1e300, "meters")
  4214. },
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4219. {
  4220. front: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(75, "lb"),
  4223. name: "Front",
  4224. image: {
  4225. source: "./media/characters/napalm/front.svg"
  4226. }
  4227. },
  4228. back: {
  4229. height: math.unit(2, "meter"),
  4230. weight: math.unit(75, "lb"),
  4231. name: "Back",
  4232. image: {
  4233. source: "./media/characters/napalm/back.svg"
  4234. }
  4235. }
  4236. },
  4237. [
  4238. {
  4239. name: "Standard",
  4240. height: math.unit(55, "feet"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4247. {
  4248. front: {
  4249. height: math.unit(7 + 5 / 6, "feet"),
  4250. weight: math.unit(325, "lb"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/asana/front.svg",
  4254. extra: 1133 / 1060,
  4255. bottom: 15.2 / 1148.6
  4256. }
  4257. },
  4258. back: {
  4259. height: math.unit(7 + 5 / 6, "feet"),
  4260. weight: math.unit(325, "lb"),
  4261. name: "Back",
  4262. image: {
  4263. source: "./media/characters/asana/back.svg",
  4264. extra: 1114 / 1043,
  4265. bottom: 5 / 1120
  4266. }
  4267. },
  4268. dressedDark: {
  4269. height: math.unit(7 + 5 / 6, "feet"),
  4270. weight: math.unit(325, "lb"),
  4271. name: "Dressed (Dark)",
  4272. image: {
  4273. source: "./media/characters/asana/dressed-dark.svg",
  4274. extra: 1133 / 1060,
  4275. bottom: 15.2 / 1148.6
  4276. }
  4277. },
  4278. dressedLight: {
  4279. height: math.unit(7 + 5 / 6, "feet"),
  4280. weight: math.unit(325, "lb"),
  4281. name: "Dressed (Light)",
  4282. image: {
  4283. source: "./media/characters/asana/dressed-light.svg",
  4284. extra: 1133 / 1060,
  4285. bottom: 15.2 / 1148.6
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Standard",
  4292. height: math.unit(7 + 5 / 6, "feet"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Large",
  4297. height: math.unit(10, "meters")
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(2500, "meters")
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(5e6, "meters")
  4306. },
  4307. {
  4308. name: "Examacro",
  4309. height: math.unit(5e12, "lightyears")
  4310. },
  4311. {
  4312. name: "Max Size",
  4313. height: math.unit(1e31, "lightyears")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(60, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/ebony/front.svg",
  4326. bottom: 0.03,
  4327. extra: 1045 / 810 + 0.03
  4328. }
  4329. },
  4330. side: {
  4331. height: math.unit(2, "meter"),
  4332. weight: math.unit(60, "kg"),
  4333. name: "Side",
  4334. image: {
  4335. source: "./media/characters/ebony/side.svg",
  4336. bottom: 0.03,
  4337. extra: 1045 / 810 + 0.03
  4338. }
  4339. },
  4340. back: {
  4341. height: math.unit(2, "meter"),
  4342. weight: math.unit(60, "kg"),
  4343. name: "Back",
  4344. image: {
  4345. source: "./media/characters/ebony/back.svg",
  4346. bottom: 0.01,
  4347. extra: 1045 / 810 + 0.01
  4348. }
  4349. },
  4350. },
  4351. [
  4352. // TODO check why I did this lol
  4353. {
  4354. name: "Standard",
  4355. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(200, "feet")
  4361. },
  4362. {
  4363. name: "Gigamacro",
  4364. height: math.unit(13000, "km")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(175, "lb"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/mountain/front.svg",
  4377. extra: 972 / 955,
  4378. bottom: 64 / 1036.6
  4379. }
  4380. },
  4381. back: {
  4382. height: math.unit(6, "feet"),
  4383. weight: math.unit(175, "lb"),
  4384. name: "Back",
  4385. image: {
  4386. source: "./media/characters/mountain/back.svg",
  4387. extra: 970 / 950,
  4388. bottom: 28.25 / 999
  4389. }
  4390. },
  4391. },
  4392. [
  4393. {
  4394. name: "Large",
  4395. height: math.unit(20, "meters")
  4396. },
  4397. {
  4398. name: "Macro",
  4399. height: math.unit(300, "meters")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(10000, "km"),
  4404. default: true
  4405. },
  4406. {
  4407. name: "Examacro",
  4408. height: math.unit(10e9, "lightyears")
  4409. }
  4410. ]
  4411. ))
  4412. characterMakers.push(() => makeCharacter(
  4413. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4414. {
  4415. front: {
  4416. height: math.unit(8, "feet"),
  4417. weight: math.unit(500, "lb"),
  4418. name: "Front",
  4419. image: {
  4420. source: "./media/characters/rick/front.svg"
  4421. }
  4422. }
  4423. },
  4424. [
  4425. {
  4426. name: "Normal",
  4427. height: math.unit(8, "feet"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(5, "km")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4438. {
  4439. front: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(120, "lb"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/ona/front.svg"
  4445. }
  4446. },
  4447. frontAlt: {
  4448. height: math.unit(8, "feet"),
  4449. weight: math.unit(120, "lb"),
  4450. name: "Front (Alt)",
  4451. image: {
  4452. source: "./media/characters/ona/front-alt.svg"
  4453. }
  4454. },
  4455. back: {
  4456. height: math.unit(8, "feet"),
  4457. weight: math.unit(120, "lb"),
  4458. name: "Back",
  4459. image: {
  4460. source: "./media/characters/ona/back.svg"
  4461. }
  4462. },
  4463. foot: {
  4464. height: math.unit(1.1, "feet"),
  4465. name: "Foot",
  4466. image: {
  4467. source: "./media/characters/ona/foot.svg"
  4468. }
  4469. }
  4470. },
  4471. [
  4472. {
  4473. name: "Megamacro",
  4474. height: math.unit(70, "km"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Gigamacro",
  4479. height: math.unit(681818, "miles")
  4480. },
  4481. {
  4482. name: "Examacro",
  4483. height: math.unit(3800000, "lightyears")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(12, "feet"),
  4492. weight: math.unit(3000, "lb"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/mech/front.svg",
  4496. extra: 2900 / 2770,
  4497. bottom: 110 / 3010
  4498. }
  4499. },
  4500. back: {
  4501. height: math.unit(12, "feet"),
  4502. weight: math.unit(3000, "lb"),
  4503. name: "Back",
  4504. image: {
  4505. source: "./media/characters/mech/back.svg",
  4506. extra: 3011 / 2890,
  4507. bottom: 94 / 3105
  4508. }
  4509. },
  4510. maw: {
  4511. height: math.unit(3.07, "feet"),
  4512. name: "Maw",
  4513. image: {
  4514. source: "./media/characters/mech/maw.svg"
  4515. }
  4516. },
  4517. head: {
  4518. height: math.unit(3.07, "feet"),
  4519. name: "Head",
  4520. image: {
  4521. source: "./media/characters/mech/head.svg"
  4522. }
  4523. },
  4524. dick: {
  4525. height: math.unit(1.43, "feet"),
  4526. name: "Dick",
  4527. image: {
  4528. source: "./media/characters/mech/dick.svg"
  4529. }
  4530. },
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(12, "feet")
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(300, "feet"),
  4540. default: true
  4541. },
  4542. {
  4543. name: "Macro+",
  4544. height: math.unit(1500, "feet")
  4545. },
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4550. {
  4551. front: {
  4552. height: math.unit(1.3, "meter"),
  4553. weight: math.unit(30, "kg"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/gregory/front.svg",
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(1.3, "meter"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Macro",
  4568. height: math.unit(20, "meter")
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(2.8, "meter"),
  4577. weight: math.unit(200, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/elory/front.svg",
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(2.8, "meter"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(38, "meter")
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(470, "feet"),
  4601. weight: math.unit(924, "tons"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/angelpatamon/front.svg",
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(470, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Deity Size I",
  4616. height: math.unit(28651.2, "km")
  4617. },
  4618. {
  4619. name: "Deity Size II",
  4620. height: math.unit(171907.2, "km")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4626. {
  4627. side: {
  4628. height: math.unit(7.2, "meter"),
  4629. weight: math.unit(8.2, "tons"),
  4630. name: "Side",
  4631. image: {
  4632. source: "./media/characters/cryae/side.svg",
  4633. extra: 3500 / 1500
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(7.2, "meter"),
  4641. default: true
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(175, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/xera/front.svg",
  4654. extra: 2377 / 1972,
  4655. bottom: 75.5 / 2452
  4656. }
  4657. },
  4658. side: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(175, "lb"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/xera/side.svg",
  4664. extra: 2345 / 2019,
  4665. bottom: 39.7 / 2384
  4666. }
  4667. },
  4668. back: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(175, "lb"),
  4671. name: "Back",
  4672. image: {
  4673. source: "./media/characters/xera/back.svg",
  4674. extra: 2095 / 1984,
  4675. bottom: 67 / 2166
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Small",
  4682. height: math.unit(10, "feet")
  4683. },
  4684. {
  4685. name: "Macro",
  4686. height: math.unit(500, "meters"),
  4687. default: true
  4688. },
  4689. {
  4690. name: "Macro+",
  4691. height: math.unit(10, "km")
  4692. },
  4693. {
  4694. name: "Gigamacro",
  4695. height: math.unit(25000, "km")
  4696. },
  4697. {
  4698. name: "Teramacro",
  4699. height: math.unit(3e6, "km")
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4705. {
  4706. front: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(175, "lb"),
  4709. name: "Front",
  4710. image: {
  4711. source: "./media/characters/nebula/front.svg",
  4712. extra: 2566 / 2362,
  4713. bottom: 81 / 2644
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Small",
  4720. height: math.unit(4.5, "meters")
  4721. },
  4722. {
  4723. name: "Macro",
  4724. height: math.unit(1500, "meters"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Megamacro",
  4729. height: math.unit(150, "km")
  4730. },
  4731. {
  4732. name: "Gigamacro",
  4733. height: math.unit(27000, "km")
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(225, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/abysgar/front.svg",
  4746. extra: 1739/1614,
  4747. bottom: 71/1810
  4748. }
  4749. },
  4750. frontNsfw: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(225, "lb"),
  4753. name: "Front (NSFW)",
  4754. image: {
  4755. source: "./media/characters/abysgar/front-nsfw.svg",
  4756. extra: 1739/1614,
  4757. bottom: 71/1810
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(4.6, "feet"),
  4762. weight: math.unit(225, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/abysgar/back.svg",
  4766. extra: 1384/1327,
  4767. bottom: 0/1384
  4768. }
  4769. },
  4770. head: {
  4771. height: math.unit(1.25, "feet"),
  4772. name: "Head",
  4773. image: {
  4774. source: "./media/characters/abysgar/head.svg",
  4775. extra: 669/569,
  4776. bottom: 0/669
  4777. }
  4778. },
  4779. },
  4780. [
  4781. {
  4782. name: "Small",
  4783. height: math.unit(4.5, "meters")
  4784. },
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(1250, "meters"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Megamacro",
  4792. height: math.unit(125, "km")
  4793. },
  4794. {
  4795. name: "Gigamacro",
  4796. height: math.unit(26000, "km")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(180, "lb"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/yakuz/front.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Small",
  4815. height: math.unit(5, "meters")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(1500, "meters"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Megamacro",
  4824. height: math.unit(200, "km")
  4825. },
  4826. {
  4827. name: "Gigamacro",
  4828. height: math.unit(100000, "km")
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(175, "lb"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/mirova/front.svg",
  4841. extra: 3334 / 3071,
  4842. bottom: 42 / 3375.6
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Small",
  4849. height: math.unit(5, "meters")
  4850. },
  4851. {
  4852. name: "Macro",
  4853. height: math.unit(900, "meters"),
  4854. default: true
  4855. },
  4856. {
  4857. name: "Megamacro",
  4858. height: math.unit(135, "km")
  4859. },
  4860. {
  4861. name: "Gigamacro",
  4862. height: math.unit(20000, "km")
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4868. {
  4869. side: {
  4870. height: math.unit(28.35, "feet"),
  4871. weight: math.unit(99.75, "tons"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/asana-mech/side.svg",
  4875. extra: 923 / 699,
  4876. bottom: 50 / 975
  4877. }
  4878. },
  4879. chaingun: {
  4880. height: math.unit(7, "feet"),
  4881. weight: math.unit(2400, "lb"),
  4882. name: "Chaingun",
  4883. image: {
  4884. source: "./media/characters/asana-mech/chaingun.svg"
  4885. }
  4886. },
  4887. laser: {
  4888. height: math.unit(7.12, "feet"),
  4889. weight: math.unit(2000, "lb"),
  4890. name: "Laser",
  4891. image: {
  4892. source: "./media/characters/asana-mech/laser.svg"
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(28.35, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "feet")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(25, "miles")
  4909. },
  4910. {
  4911. name: "Examacro",
  4912. height: math.unit(6e8, "lightyears")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(5, "meters"),
  4921. weight: math.unit(1000, "kg"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/asche/front.svg",
  4925. extra: 1258 / 1190,
  4926. bottom: 47 / 1305
  4927. }
  4928. },
  4929. frontUnderwear: {
  4930. height: math.unit(5, "meters"),
  4931. weight: math.unit(1000, "kg"),
  4932. name: "Front (Underwear)",
  4933. image: {
  4934. source: "./media/characters/asche/front-underwear.svg",
  4935. extra: 1258 / 1190,
  4936. bottom: 47 / 1305
  4937. }
  4938. },
  4939. frontDressed: {
  4940. height: math.unit(5, "meters"),
  4941. weight: math.unit(1000, "kg"),
  4942. name: "Front (Dressed)",
  4943. image: {
  4944. source: "./media/characters/asche/front-dressed.svg",
  4945. extra: 1258 / 1190,
  4946. bottom: 47 / 1305
  4947. }
  4948. },
  4949. frontArmor: {
  4950. height: math.unit(5, "meters"),
  4951. weight: math.unit(1000, "kg"),
  4952. name: "Front (Armored)",
  4953. image: {
  4954. source: "./media/characters/asche/front-armored.svg",
  4955. extra: 1374 / 1308,
  4956. bottom: 23 / 1397
  4957. }
  4958. },
  4959. mp724: {
  4960. height: math.unit(0.96, "meters"),
  4961. weight: math.unit(38, "kg"),
  4962. name: "H&K MP724",
  4963. image: {
  4964. source: "./media/characters/asche/h&k-mp724.svg"
  4965. }
  4966. },
  4967. side: {
  4968. height: math.unit(5, "meters"),
  4969. weight: math.unit(1000, "kg"),
  4970. name: "Side",
  4971. image: {
  4972. source: "./media/characters/asche/side.svg",
  4973. extra: 1717 / 1609,
  4974. bottom: 0.005
  4975. }
  4976. },
  4977. back: {
  4978. height: math.unit(5, "meters"),
  4979. weight: math.unit(1000, "kg"),
  4980. name: "Back",
  4981. image: {
  4982. source: "./media/characters/asche/back.svg",
  4983. extra: 1570 / 1501
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "DEFCON 5",
  4990. height: math.unit(5, "meters")
  4991. },
  4992. {
  4993. name: "DEFCON 4",
  4994. height: math.unit(500, "meters"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "DEFCON 3",
  4999. height: math.unit(5, "km")
  5000. },
  5001. {
  5002. name: "DEFCON 2",
  5003. height: math.unit(500, "km")
  5004. },
  5005. {
  5006. name: "DEFCON 1",
  5007. height: math.unit(500000, "km")
  5008. },
  5009. {
  5010. name: "DEFCON 0",
  5011. height: math.unit(3, "gigaparsecs")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(76, "kg"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/gale/front.svg"
  5024. }
  5025. },
  5026. frontAlt1: {
  5027. height: math.unit(2, "meters"),
  5028. weight: math.unit(76, "kg"),
  5029. name: "Front (Alt 1)",
  5030. image: {
  5031. source: "./media/characters/gale/front-alt-1.svg"
  5032. }
  5033. },
  5034. frontAlt2: {
  5035. height: math.unit(2, "meters"),
  5036. weight: math.unit(76, "kg"),
  5037. name: "Front (Alt 2)",
  5038. image: {
  5039. source: "./media/characters/gale/front-alt-2.svg"
  5040. }
  5041. },
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(7, "feet")
  5047. },
  5048. {
  5049. name: "Macro",
  5050. height: math.unit(150, "feet"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Macro+",
  5055. height: math.unit(300, "feet")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(5 + 10/12, "feet"),
  5064. weight: math.unit(67, "kg"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/draylen/front.svg",
  5068. extra: 832/777,
  5069. bottom: 85/917
  5070. }
  5071. }
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(5 + 10/12, "feet")
  5077. },
  5078. {
  5079. name: "Macro",
  5080. height: math.unit(150, "feet"),
  5081. default: true
  5082. }
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5087. {
  5088. front: {
  5089. height: math.unit(7 + 9 / 12, "feet"),
  5090. weight: math.unit(379, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/chez/front.svg"
  5094. }
  5095. },
  5096. side: {
  5097. height: math.unit(7 + 9 / 12, "feet"),
  5098. weight: math.unit(379, "lbs"),
  5099. name: "Side",
  5100. image: {
  5101. source: "./media/characters/chez/side.svg"
  5102. }
  5103. }
  5104. },
  5105. [
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(7 + 9 / 12, "feet"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "God King",
  5113. height: math.unit(9750000, "meters")
  5114. }
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(275, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/kaylum/front.svg",
  5126. bottom: 0.01,
  5127. extra: 1166 / 1031
  5128. }
  5129. },
  5130. frontWingless: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(275, "lbs"),
  5133. name: "Front (Wingless)",
  5134. image: {
  5135. source: "./media/characters/kaylum/front-wingless.svg",
  5136. bottom: 0.01,
  5137. extra: 1117 / 1031
  5138. }
  5139. }
  5140. },
  5141. [
  5142. {
  5143. name: "Normal",
  5144. height: math.unit(3.05, "meters")
  5145. },
  5146. {
  5147. name: "Master",
  5148. height: math.unit(5.5, "meters")
  5149. },
  5150. {
  5151. name: "Rampage",
  5152. height: math.unit(19, "meters")
  5153. },
  5154. {
  5155. name: "Macro Lite",
  5156. height: math.unit(37, "meters")
  5157. },
  5158. {
  5159. name: "Hyper Predator",
  5160. height: math.unit(61, "meters")
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(138, "meters"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5171. {
  5172. front: {
  5173. height: math.unit(5 + 5 / 12, "feet"),
  5174. weight: math.unit(120, "lbs"),
  5175. name: "Front",
  5176. image: {
  5177. source: "./media/characters/geta/front.svg",
  5178. extra: 1003/933,
  5179. bottom: 21/1024
  5180. }
  5181. },
  5182. paw: {
  5183. height: math.unit(0.35, "feet"),
  5184. name: "Paw",
  5185. image: {
  5186. source: "./media/characters/geta/paw.svg"
  5187. }
  5188. },
  5189. },
  5190. [
  5191. {
  5192. name: "Micro",
  5193. height: math.unit(3, "inches"),
  5194. default: true
  5195. },
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(5 + 5 / 12, "feet")
  5199. }
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5204. {
  5205. front: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(300, "lbs"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/tyrnn/front.svg"
  5211. }
  5212. }
  5213. },
  5214. [
  5215. {
  5216. name: "Main Height",
  5217. height: math.unit(355, "feet"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Fave. Height",
  5222. height: math.unit(2400, "feet")
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/appledectomy/front.svg"
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(2500, "feet")
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(50, "miles"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Gigamacro",
  5250. height: math.unit(5000, "miles")
  5251. },
  5252. {
  5253. name: "Teramacro",
  5254. height: math.unit(250000, "miles")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(200, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/vulpes/front.svg",
  5267. extra: 573 / 543,
  5268. bottom: 0.033
  5269. }
  5270. },
  5271. side: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(200, "lbs"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/vulpes/side.svg",
  5277. extra: 577 / 549,
  5278. bottom: 11 / 588
  5279. }
  5280. },
  5281. back: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(200, "lbs"),
  5284. name: "Back",
  5285. image: {
  5286. source: "./media/characters/vulpes/back.svg",
  5287. extra: 573 / 549,
  5288. bottom: 20 / 593
  5289. }
  5290. },
  5291. feet: {
  5292. height: math.unit(1.276, "feet"),
  5293. name: "Feet",
  5294. image: {
  5295. source: "./media/characters/vulpes/feet.svg"
  5296. }
  5297. },
  5298. maw: {
  5299. height: math.unit(1.18, "feet"),
  5300. name: "Maw",
  5301. image: {
  5302. source: "./media/characters/vulpes/maw.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Micro",
  5309. height: math.unit(2, "inches")
  5310. },
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(6.3, "feet")
  5314. },
  5315. {
  5316. name: "Macro",
  5317. height: math.unit(850, "feet")
  5318. },
  5319. {
  5320. name: "Megamacro",
  5321. height: math.unit(7500, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Gigamacro",
  5326. height: math.unit(570000, "miles")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(210, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/rain-fallen/front.svg"
  5339. }
  5340. },
  5341. side: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(210, "lbs"),
  5344. name: "Side",
  5345. image: {
  5346. source: "./media/characters/rain-fallen/side.svg"
  5347. }
  5348. },
  5349. back: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(210, "lbs"),
  5352. name: "Back",
  5353. image: {
  5354. source: "./media/characters/rain-fallen/back.svg"
  5355. }
  5356. },
  5357. feral: {
  5358. height: math.unit(9, "feet"),
  5359. weight: math.unit(700, "lbs"),
  5360. name: "Feral",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/feral.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Meddling with Mortals",
  5369. height: math.unit(8 + 8/12, "feet")
  5370. },
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(5, "meter")
  5374. },
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(150, "meter"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Megamacro",
  5382. height: math.unit(278e6, "meter")
  5383. },
  5384. {
  5385. name: "Gigamacro",
  5386. height: math.unit(2e9, "meter")
  5387. },
  5388. {
  5389. name: "Teramacro",
  5390. height: math.unit(8e12, "meter")
  5391. },
  5392. {
  5393. name: "Devourer",
  5394. height: math.unit(14, "zettameters")
  5395. },
  5396. {
  5397. name: "Scarlet King",
  5398. height: math.unit(18, "yottameters")
  5399. },
  5400. {
  5401. name: "Void",
  5402. height: math.unit(1e88, "yottameters")
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5408. {
  5409. standing: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(180, "lbs"),
  5412. name: "Standing",
  5413. image: {
  5414. source: "./media/characters/zaakira/standing.svg",
  5415. extra: 1599/1504,
  5416. bottom: 39/1638
  5417. }
  5418. },
  5419. laying: {
  5420. height: math.unit(3.3, "feet"),
  5421. weight: math.unit(180, "lbs"),
  5422. name: "Laying",
  5423. image: {
  5424. source: "./media/characters/zaakira/laying.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(12, "feet")
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(279, "feet"),
  5436. default: true
  5437. }
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5442. {
  5443. femSfw: {
  5444. height: math.unit(8, "feet"),
  5445. weight: math.unit(350, "lb"),
  5446. name: "Fem",
  5447. image: {
  5448. source: "./media/characters/sigvald/fem-sfw.svg",
  5449. extra: 182 / 164,
  5450. bottom: 8.7 / 190.5
  5451. }
  5452. },
  5453. femNsfw: {
  5454. height: math.unit(8, "feet"),
  5455. weight: math.unit(350, "lb"),
  5456. name: "Fem (NSFW)",
  5457. image: {
  5458. source: "./media/characters/sigvald/fem-nsfw.svg",
  5459. extra: 182 / 164,
  5460. bottom: 8.7 / 190.5
  5461. }
  5462. },
  5463. maleNsfw: {
  5464. height: math.unit(8, "feet"),
  5465. weight: math.unit(350, "lb"),
  5466. name: "Male (NSFW)",
  5467. image: {
  5468. source: "./media/characters/sigvald/male-nsfw.svg",
  5469. extra: 182 / 164,
  5470. bottom: 8.7 / 190.5
  5471. }
  5472. },
  5473. hermNsfw: {
  5474. height: math.unit(8, "feet"),
  5475. weight: math.unit(350, "lb"),
  5476. name: "Herm (NSFW)",
  5477. image: {
  5478. source: "./media/characters/sigvald/herm-nsfw.svg",
  5479. extra: 182 / 164,
  5480. bottom: 8.7 / 190.5
  5481. }
  5482. },
  5483. dick: {
  5484. height: math.unit(2.36, "feet"),
  5485. name: "Dick",
  5486. image: {
  5487. source: "./media/characters/sigvald/dick.svg"
  5488. }
  5489. },
  5490. eye: {
  5491. height: math.unit(0.31, "feet"),
  5492. name: "Eye",
  5493. image: {
  5494. source: "./media/characters/sigvald/eye.svg"
  5495. }
  5496. },
  5497. mouth: {
  5498. height: math.unit(0.92, "feet"),
  5499. name: "Mouth",
  5500. image: {
  5501. source: "./media/characters/sigvald/mouth.svg"
  5502. }
  5503. },
  5504. paws: {
  5505. height: math.unit(2.2, "feet"),
  5506. name: "Paws",
  5507. image: {
  5508. source: "./media/characters/sigvald/paws.svg"
  5509. }
  5510. }
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(8, "feet")
  5516. },
  5517. {
  5518. name: "Large",
  5519. height: math.unit(12, "feet")
  5520. },
  5521. {
  5522. name: "Larger",
  5523. height: math.unit(20, "feet")
  5524. },
  5525. {
  5526. name: "Macro",
  5527. height: math.unit(150, "feet")
  5528. },
  5529. {
  5530. name: "Macro+",
  5531. height: math.unit(200, "feet"),
  5532. default: true
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5538. {
  5539. side: {
  5540. height: math.unit(12, "feet"),
  5541. weight: math.unit(2000, "kg"),
  5542. name: "Side",
  5543. image: {
  5544. source: "./media/characters/scott/side.svg",
  5545. extra: 754 / 724,
  5546. bottom: 0.069
  5547. }
  5548. },
  5549. upright: {
  5550. height: math.unit(12, "feet"),
  5551. weight: math.unit(2000, "kg"),
  5552. name: "Upright",
  5553. image: {
  5554. source: "./media/characters/scott/upright.svg",
  5555. extra: 3881 / 3722,
  5556. bottom: 0.05
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(12, "feet"),
  5564. default: true
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5570. {
  5571. side: {
  5572. height: math.unit(8, "meters"),
  5573. weight: math.unit(84755, "lbs"),
  5574. name: "Side",
  5575. image: {
  5576. source: "./media/characters/tobias/side.svg",
  5577. extra: 1474 / 1096,
  5578. bottom: 38.9 / 1513.1235
  5579. }
  5580. },
  5581. },
  5582. [
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(8, "meters"),
  5586. default: true
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5592. {
  5593. front: {
  5594. height: math.unit(5.5, "feet"),
  5595. weight: math.unit(400, "lbs"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/kieran/front.svg",
  5599. extra: 2694 / 2364,
  5600. bottom: 217 / 2908
  5601. }
  5602. },
  5603. side: {
  5604. height: math.unit(5.5, "feet"),
  5605. weight: math.unit(400, "lbs"),
  5606. name: "Side",
  5607. image: {
  5608. source: "./media/characters/kieran/side.svg",
  5609. extra: 875 / 777,
  5610. bottom: 84.6 / 959
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(5.5, "feet"),
  5618. default: true
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5624. {
  5625. side: {
  5626. height: math.unit(2, "meters"),
  5627. weight: math.unit(70, "kg"),
  5628. name: "Side",
  5629. image: {
  5630. source: "./media/characters/sanya/side.svg",
  5631. bottom: 0.02,
  5632. extra: 1.02
  5633. }
  5634. },
  5635. },
  5636. [
  5637. {
  5638. name: "Small",
  5639. height: math.unit(2, "meters")
  5640. },
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(3, "meters")
  5644. },
  5645. {
  5646. name: "Macro",
  5647. height: math.unit(16, "meters"),
  5648. default: true
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5654. {
  5655. front: {
  5656. height: math.unit(2, "meters"),
  5657. weight: math.unit(120, "kg"),
  5658. name: "Front",
  5659. image: {
  5660. source: "./media/characters/miranda/front.svg",
  5661. extra: 195 / 185,
  5662. bottom: 10.9 / 206.5
  5663. }
  5664. },
  5665. back: {
  5666. height: math.unit(2, "meters"),
  5667. weight: math.unit(120, "kg"),
  5668. name: "Back",
  5669. image: {
  5670. source: "./media/characters/miranda/back.svg",
  5671. extra: 201 / 193,
  5672. bottom: 2.3 / 203.7
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(10, "feet"),
  5680. default: true
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "James", species: ["deer"], tags: ["anthro"] },
  5686. {
  5687. side: {
  5688. height: math.unit(2, "meters"),
  5689. weight: math.unit(100, "kg"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/james/front.svg",
  5693. extra: 10 / 8.5
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(8.5, "feet"),
  5701. default: true
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5707. {
  5708. side: {
  5709. height: math.unit(9.5, "feet"),
  5710. weight: math.unit(2500, "lbs"),
  5711. name: "Side",
  5712. image: {
  5713. source: "./media/characters/heather/side.svg"
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(9.5, "feet"),
  5721. default: true
  5722. }
  5723. ]
  5724. ))
  5725. characterMakers.push(() => makeCharacter(
  5726. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5727. {
  5728. side: {
  5729. height: math.unit(6.5, "feet"),
  5730. weight: math.unit(400, "lbs"),
  5731. name: "Side",
  5732. image: {
  5733. source: "./media/characters/lukas/side.svg",
  5734. extra: 7.25 / 6.5
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(6.5, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5748. {
  5749. side: {
  5750. height: math.unit(5, "feet"),
  5751. weight: math.unit(3000, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/louise/side.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(5, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5768. {
  5769. side: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(150, "lbs"),
  5772. name: "Side",
  5773. image: {
  5774. source: "./media/characters/ramona/side.svg",
  5775. extra: 871/854,
  5776. bottom: 41/912
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(6 + 4/12, "feet")
  5784. },
  5785. {
  5786. name: "Minimacro",
  5787. height: math.unit(5.3, "meters"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(20, "stories")
  5793. },
  5794. {
  5795. name: "Macro+",
  5796. height: math.unit(50, "stories")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5802. {
  5803. standing: {
  5804. height: math.unit(5.75, "feet"),
  5805. weight: math.unit(160, "lbs"),
  5806. name: "Standing",
  5807. image: {
  5808. source: "./media/characters/deerpuff/standing.svg",
  5809. extra: 682 / 624
  5810. }
  5811. },
  5812. sitting: {
  5813. height: math.unit(5.75 / 1.79, "feet"),
  5814. weight: math.unit(160, "lbs"),
  5815. name: "Sitting",
  5816. image: {
  5817. source: "./media/characters/deerpuff/sitting.svg",
  5818. bottom: 44 / 400,
  5819. extra: 1
  5820. }
  5821. },
  5822. taurLaying: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(400, "lbs"),
  5825. name: "Taur (Laying)",
  5826. image: {
  5827. source: "./media/characters/deerpuff/taur-laying.svg"
  5828. }
  5829. },
  5830. },
  5831. [
  5832. {
  5833. name: "Puffball",
  5834. height: math.unit(6, "inches")
  5835. },
  5836. {
  5837. name: "Normalpuff",
  5838. height: math.unit(5.75, "feet")
  5839. },
  5840. {
  5841. name: "Macropuff",
  5842. height: math.unit(1500, "feet"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Megapuff",
  5847. height: math.unit(500, "miles")
  5848. },
  5849. {
  5850. name: "Gigapuff",
  5851. height: math.unit(250000, "miles")
  5852. },
  5853. {
  5854. name: "Omegapuff",
  5855. height: math.unit(1000, "lightyears")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5861. {
  5862. stomping: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(170, "lbs"),
  5865. name: "Stomping",
  5866. image: {
  5867. source: "./media/characters/vivian/stomping.svg"
  5868. }
  5869. },
  5870. sitting: {
  5871. height: math.unit(6 / 1.75, "feet"),
  5872. weight: math.unit(170, "lbs"),
  5873. name: "Sitting",
  5874. image: {
  5875. source: "./media/characters/vivian/sitting.svg",
  5876. bottom: 1 / 6.4,
  5877. extra: 1,
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(7, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(10, "stories")
  5890. },
  5891. {
  5892. name: "Macro+",
  5893. height: math.unit(30, "stories")
  5894. },
  5895. {
  5896. name: "Megamacro",
  5897. height: math.unit(10, "miles")
  5898. },
  5899. {
  5900. name: "Megamacro+",
  5901. height: math.unit(2750000, "meters")
  5902. },
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5907. {
  5908. front: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(160, "lbs"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/prince/front.svg",
  5914. extra: 3400 / 3000
  5915. }
  5916. },
  5917. jumping: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(160, "lbs"),
  5920. name: "Jumping",
  5921. image: {
  5922. source: "./media/characters/prince/jump.svg",
  5923. extra: 2555 / 2134
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(7.75, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Not cute",
  5935. height: math.unit(17, "feet")
  5936. },
  5937. {
  5938. name: "I said NOT",
  5939. height: math.unit(91, "feet")
  5940. },
  5941. {
  5942. name: "Please stop",
  5943. height: math.unit(560, "feet")
  5944. },
  5945. {
  5946. name: "What have you done",
  5947. height: math.unit(2200, "feet")
  5948. },
  5949. {
  5950. name: "Deer God",
  5951. height: math.unit(3.6, "miles")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5957. {
  5958. standing: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(300, "lbs"),
  5961. name: "Standing",
  5962. image: {
  5963. source: "./media/characters/psymon/standing.svg",
  5964. extra: 1888 / 1810,
  5965. bottom: 0.05
  5966. }
  5967. },
  5968. slithering: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(300, "lbs"),
  5971. name: "Slithering",
  5972. image: {
  5973. source: "./media/characters/psymon/slithering.svg",
  5974. extra: 1330 / 1224
  5975. }
  5976. },
  5977. slitheringAlt: {
  5978. height: math.unit(6, "feet"),
  5979. weight: math.unit(300, "lbs"),
  5980. name: "Slithering (Alt)",
  5981. image: {
  5982. source: "./media/characters/psymon/slithering-alt.svg",
  5983. extra: 1330 / 1224
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(11.25, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Large",
  5995. height: math.unit(27, "feet")
  5996. },
  5997. {
  5998. name: "Giant",
  5999. height: math.unit(87, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(365, "feet")
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(3, "miles")
  6008. },
  6009. {
  6010. name: "World Serpent",
  6011. height: math.unit(8000, "miles")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(6, "feet"),
  6020. weight: math.unit(180, "lbs"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/daimos/front.svg",
  6024. extra: 4160 / 3897,
  6025. bottom: 0.021
  6026. }
  6027. }
  6028. },
  6029. [
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(8, "feet"),
  6033. default: true
  6034. },
  6035. {
  6036. name: "Big Dog",
  6037. height: math.unit(22, "feet")
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(127, "feet")
  6042. },
  6043. {
  6044. name: "Megamacro",
  6045. height: math.unit(3600, "feet")
  6046. },
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6051. {
  6052. side: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(180, "lbs"),
  6055. name: "Side",
  6056. image: {
  6057. source: "./media/characters/blake/side.svg",
  6058. extra: 1212 / 1120,
  6059. bottom: 0.05
  6060. }
  6061. },
  6062. crouched: {
  6063. height: math.unit(6 * 0.57, "feet"),
  6064. weight: math.unit(180, "lbs"),
  6065. name: "Crouched",
  6066. image: {
  6067. source: "./media/characters/blake/crouched.svg",
  6068. extra: 840 / 587,
  6069. bottom: 0.04
  6070. }
  6071. },
  6072. bent: {
  6073. height: math.unit(6 * 0.75, "feet"),
  6074. weight: math.unit(180, "lbs"),
  6075. name: "Bent",
  6076. image: {
  6077. source: "./media/characters/blake/bent.svg",
  6078. extra: 592 / 544,
  6079. bottom: 0.035
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(8 + 1 / 6, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Big Backside",
  6091. height: math.unit(37, "feet")
  6092. },
  6093. {
  6094. name: "Subway Shredder",
  6095. height: math.unit(72, "feet")
  6096. },
  6097. {
  6098. name: "City Carver",
  6099. height: math.unit(1675, "feet")
  6100. },
  6101. {
  6102. name: "Tectonic Tweaker",
  6103. height: math.unit(2300, "miles")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(180, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/guisetto/front.svg",
  6116. extra: 856 / 817,
  6117. bottom: 0.06
  6118. }
  6119. },
  6120. airborne: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(180, "lbs"),
  6123. name: "Airborne",
  6124. image: {
  6125. source: "./media/characters/guisetto/airborne.svg",
  6126. extra: 584 / 525
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(10 + 11 / 12, "feet"),
  6134. default: true
  6135. },
  6136. {
  6137. name: "Large",
  6138. height: math.unit(35, "feet")
  6139. },
  6140. {
  6141. name: "Macro",
  6142. height: math.unit(475, "feet")
  6143. },
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6148. {
  6149. front: {
  6150. height: math.unit(6, "feet"),
  6151. weight: math.unit(180, "lbs"),
  6152. name: "Front",
  6153. image: {
  6154. source: "./media/characters/luxor/front.svg",
  6155. extra: 2940 / 2152
  6156. }
  6157. },
  6158. back: {
  6159. height: math.unit(6, "feet"),
  6160. weight: math.unit(180, "lbs"),
  6161. name: "Back",
  6162. image: {
  6163. source: "./media/characters/luxor/back.svg",
  6164. extra: 1083 / 960
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(5 + 5 / 6, "feet"),
  6172. default: true
  6173. },
  6174. {
  6175. name: "Lamp",
  6176. height: math.unit(50, "feet")
  6177. },
  6178. {
  6179. name: "Lämp",
  6180. height: math.unit(300, "feet")
  6181. },
  6182. {
  6183. name: "The sun is a lamp",
  6184. height: math.unit(250000, "miles")
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(50, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/huoyan/front.svg"
  6197. }
  6198. },
  6199. side: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(180, "lbs"),
  6202. name: "Side",
  6203. image: {
  6204. source: "./media/characters/huoyan/side.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Chef",
  6211. height: math.unit(9, "feet")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(65, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(780, "feet")
  6221. },
  6222. {
  6223. name: "Flaming Mountain",
  6224. height: math.unit(4.8, "miles")
  6225. },
  6226. {
  6227. name: "Celestial",
  6228. height: math.unit(765000, "miles")
  6229. },
  6230. ]
  6231. ))
  6232. characterMakers.push(() => makeCharacter(
  6233. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6234. {
  6235. front: {
  6236. height: math.unit(5 + 3 / 4, "feet"),
  6237. weight: math.unit(120, "lbs"),
  6238. name: "Front",
  6239. image: {
  6240. source: "./media/characters/tails/front.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(5 + 3 / 4, "feet"),
  6248. default: true
  6249. }
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(4, "feet"),
  6257. weight: math.unit(50, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/rainy/front.svg"
  6261. }
  6262. }
  6263. },
  6264. [
  6265. {
  6266. name: "Macro",
  6267. height: math.unit(800, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(150, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/rainier/front.svg"
  6281. }
  6282. }
  6283. },
  6284. [
  6285. {
  6286. name: "Micro",
  6287. height: math.unit(2, "mm"),
  6288. default: true
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(8 + 4/12, "feet"),
  6297. weight: math.unit(450, "kilograms"),
  6298. volume: math.unit(5, "cups"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/andy-renard/front.svg",
  6302. extra: 1839/1726,
  6303. bottom: 134/1973
  6304. }
  6305. },
  6306. back: {
  6307. height: math.unit(8 + 4/12, "feet"),
  6308. weight: math.unit(450, "kilograms"),
  6309. volume: math.unit(5, "cups"),
  6310. name: "Back",
  6311. image: {
  6312. source: "./media/characters/andy-renard/back.svg",
  6313. extra: 1838/1710,
  6314. bottom: 105/1943
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Tall",
  6321. height: math.unit(8 + 4/12, "feet")
  6322. },
  6323. {
  6324. name: "Mini Macro",
  6325. height: math.unit(15, "feet"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Macro",
  6330. height: math.unit(100, "feet")
  6331. },
  6332. {
  6333. name: "Mega Macro",
  6334. height: math.unit(1000, "feet")
  6335. },
  6336. {
  6337. name: "Giga Macro",
  6338. height: math.unit(10, "miles")
  6339. },
  6340. {
  6341. name: "God Macro",
  6342. height: math.unit(1, "multiverse")
  6343. },
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6348. {
  6349. front: {
  6350. height: math.unit(6, "feet"),
  6351. weight: math.unit(210, "lbs"),
  6352. name: "Front",
  6353. image: {
  6354. source: "./media/characters/cimmaron/front-sfw.svg",
  6355. extra: 701 / 676,
  6356. bottom: 0.046
  6357. }
  6358. },
  6359. back: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(210, "lbs"),
  6362. name: "Back",
  6363. image: {
  6364. source: "./media/characters/cimmaron/back-sfw.svg",
  6365. extra: 701 / 676,
  6366. bottom: 0.046
  6367. }
  6368. },
  6369. frontNsfw: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(210, "lbs"),
  6372. name: "Front (NSFW)",
  6373. image: {
  6374. source: "./media/characters/cimmaron/front-nsfw.svg",
  6375. extra: 701 / 676,
  6376. bottom: 0.046
  6377. }
  6378. },
  6379. backNsfw: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(210, "lbs"),
  6382. name: "Back (NSFW)",
  6383. image: {
  6384. source: "./media/characters/cimmaron/back-nsfw.svg",
  6385. extra: 701 / 676,
  6386. bottom: 0.046
  6387. }
  6388. },
  6389. dick: {
  6390. height: math.unit(1.714, "feet"),
  6391. name: "Dick",
  6392. image: {
  6393. source: "./media/characters/cimmaron/dick.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Macro Mayor",
  6405. height: math.unit(350, "meters")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(200, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/akari/front.svg",
  6418. extra: 962 / 901,
  6419. bottom: 0.04
  6420. }
  6421. }
  6422. },
  6423. [
  6424. {
  6425. name: "Micro",
  6426. height: math.unit(5, "inches"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(7, "feet")
  6432. },
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(140, "lbs"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/cynosura/front.svg",
  6444. extra: 896 / 847
  6445. }
  6446. },
  6447. back: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(140, "lbs"),
  6450. name: "Back",
  6451. image: {
  6452. source: "./media/characters/cynosura/back.svg",
  6453. extra: 1365 / 1250
  6454. }
  6455. },
  6456. },
  6457. [
  6458. {
  6459. name: "Micro",
  6460. height: math.unit(4, "inches")
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(5.75, "feet"),
  6465. default: true
  6466. },
  6467. {
  6468. name: "Tall",
  6469. height: math.unit(10, "feet")
  6470. },
  6471. {
  6472. name: "Big",
  6473. height: math.unit(20, "feet")
  6474. },
  6475. {
  6476. name: "Macro",
  6477. height: math.unit(50, "feet")
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(13 + 2/12, "feet"),
  6486. weight: math.unit(800, "kg"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/gin/front.svg",
  6490. extra: 1312/1191,
  6491. bottom: 45/1357
  6492. }
  6493. },
  6494. mouth: {
  6495. height: math.unit(2.39 * 1.8, "feet"),
  6496. name: "Mouth",
  6497. image: {
  6498. source: "./media/characters/gin/mouth.svg"
  6499. }
  6500. },
  6501. hand: {
  6502. height: math.unit(1.57 * 2.19, "feet"),
  6503. name: "Hand",
  6504. image: {
  6505. source: "./media/characters/gin/hand.svg"
  6506. }
  6507. },
  6508. foot: {
  6509. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6510. name: "Foot",
  6511. image: {
  6512. source: "./media/characters/gin/foot.svg"
  6513. }
  6514. },
  6515. sole: {
  6516. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6517. name: "Sole",
  6518. image: {
  6519. source: "./media/characters/gin/sole.svg"
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Very Small",
  6526. height: math.unit(13 + 2 / 12, "feet")
  6527. },
  6528. {
  6529. name: "Micro",
  6530. height: math.unit(600, "miles")
  6531. },
  6532. {
  6533. name: "Regular",
  6534. height: math.unit(20, "earths"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(2.2, "solarradii")
  6540. },
  6541. {
  6542. name: "Teramacro",
  6543. height: math.unit(1.2, "galaxies")
  6544. },
  6545. {
  6546. name: "Omegamacro",
  6547. height: math.unit(200, "universes")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6 + 1 / 6, "feet"),
  6556. weight: math.unit(178, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/guy/front.svg"
  6560. }
  6561. }
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(6 + 1 / 6, "feet"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Large",
  6571. height: math.unit(25 + 7 / 12, "feet")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(60 + 9 / 12, "feet")
  6576. },
  6577. {
  6578. name: "Macro+",
  6579. height: math.unit(246, "feet")
  6580. },
  6581. {
  6582. name: "Macro++",
  6583. height: math.unit(878, "feet")
  6584. }
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(9, "feet"),
  6592. weight: math.unit(800, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/tiberius/front.svg",
  6596. extra: 2295 / 2071
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(9, "feet"),
  6601. weight: math.unit(800, "lbs"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/tiberius/back.svg",
  6605. extra: 2373 / 2160
  6606. }
  6607. },
  6608. },
  6609. [
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(9, "feet"),
  6613. default: true
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6619. {
  6620. front: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(600, "lbs"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/surgo/front.svg",
  6626. extra: 3591 / 2227
  6627. }
  6628. },
  6629. back: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(600, "lbs"),
  6632. name: "Back",
  6633. image: {
  6634. source: "./media/characters/surgo/back.svg",
  6635. extra: 3557 / 2228
  6636. }
  6637. },
  6638. laying: {
  6639. height: math.unit(6 * 0.85, "feet"),
  6640. weight: math.unit(600, "lbs"),
  6641. name: "Laying",
  6642. image: {
  6643. source: "./media/characters/surgo/laying.svg"
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(6, "feet"),
  6651. default: true
  6652. }
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6657. {
  6658. side: {
  6659. height: math.unit(6, "feet"),
  6660. weight: math.unit(150, "lbs"),
  6661. name: "Side",
  6662. image: {
  6663. source: "./media/characters/cibus/side.svg",
  6664. extra: 800 / 400
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(6, "feet"),
  6672. default: true
  6673. }
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(240, "lbs"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/nibbles/front.svg"
  6685. }
  6686. },
  6687. side: {
  6688. height: math.unit(6, "feet"),
  6689. weight: math.unit(240, "lbs"),
  6690. name: "Side",
  6691. image: {
  6692. source: "./media/characters/nibbles/side.svg"
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(9, "feet"),
  6700. default: true
  6701. }
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6706. {
  6707. side: {
  6708. height: math.unit(5 + 1 / 6, "feet"),
  6709. weight: math.unit(130, "lbs"),
  6710. name: "Side",
  6711. image: {
  6712. source: "./media/characters/rikky/side.svg",
  6713. extra: 851 / 801
  6714. }
  6715. },
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(5 + 1 / 6, "feet")
  6721. },
  6722. {
  6723. name: "Macro",
  6724. height: math.unit(152, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Megamacro",
  6729. height: math.unit(7, "miles")
  6730. }
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6735. {
  6736. side: {
  6737. height: math.unit(370, "cm"),
  6738. weight: math.unit(350, "lbs"),
  6739. name: "Side",
  6740. image: {
  6741. source: "./media/characters/malfressa/side.svg"
  6742. }
  6743. },
  6744. walking: {
  6745. height: math.unit(370, "cm"),
  6746. weight: math.unit(350, "lbs"),
  6747. name: "Walking",
  6748. image: {
  6749. source: "./media/characters/malfressa/walking.svg"
  6750. }
  6751. },
  6752. feral: {
  6753. height: math.unit(2500, "cm"),
  6754. weight: math.unit(100000, "lbs"),
  6755. name: "Feral",
  6756. image: {
  6757. source: "./media/characters/malfressa/feral.svg",
  6758. extra: 2108 / 837,
  6759. bottom: 0.02
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(370, "cm")
  6767. },
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(300, "meters"),
  6771. default: true
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(60, "kg"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/jaro/front.svg",
  6784. extra: 845/817,
  6785. bottom: 45/890
  6786. }
  6787. },
  6788. back: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(60, "kg"),
  6791. name: "Back",
  6792. image: {
  6793. source: "./media/characters/jaro/back.svg",
  6794. extra: 847/817,
  6795. bottom: 34/881
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Micro",
  6802. height: math.unit(7, "inches")
  6803. },
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(5.5, "feet"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Minimacro",
  6811. height: math.unit(20, "feet")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(200, "meters")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(195, "lb"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/rogue/front.svg"
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(90, "feet"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6841. {
  6842. standing: {
  6843. height: math.unit(5 + 8 / 12, "feet"),
  6844. weight: math.unit(140, "lb"),
  6845. name: "Standing",
  6846. image: {
  6847. source: "./media/characters/piper/standing.svg",
  6848. extra: 1440/1284,
  6849. bottom: 66/1506
  6850. }
  6851. },
  6852. running: {
  6853. height: math.unit(5 + 8 / 12, "feet"),
  6854. weight: math.unit(140, "lb"),
  6855. name: "Running",
  6856. image: {
  6857. source: "./media/characters/piper/running.svg",
  6858. extra: 3948/3655,
  6859. bottom: 0/3948
  6860. }
  6861. },
  6862. sole: {
  6863. height: math.unit(0.81, "feet"),
  6864. weight: math.unit(2, "kg"),
  6865. name: "Sole",
  6866. image: {
  6867. source: "./media/characters/piper/sole.svg"
  6868. }
  6869. },
  6870. nipple: {
  6871. height: math.unit(0.25, "feet"),
  6872. weight: math.unit(1.5, "lb"),
  6873. name: "Nipple",
  6874. image: {
  6875. source: "./media/characters/piper/nipple.svg"
  6876. }
  6877. },
  6878. head: {
  6879. height: math.unit(1.1, "feet"),
  6880. name: "Head",
  6881. image: {
  6882. source: "./media/characters/piper/head.svg"
  6883. }
  6884. },
  6885. },
  6886. [
  6887. {
  6888. name: "Micro",
  6889. height: math.unit(2, "inches")
  6890. },
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(5 + 8 / 12, "feet")
  6894. },
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(250, "feet"),
  6898. default: true
  6899. },
  6900. {
  6901. name: "Megamacro",
  6902. height: math.unit(7, "miles")
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(6, "feet"),
  6911. weight: math.unit(220, "lb"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/gemini/front.svg"
  6915. }
  6916. },
  6917. back: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(220, "lb"),
  6920. name: "Back",
  6921. image: {
  6922. source: "./media/characters/gemini/back.svg"
  6923. }
  6924. },
  6925. kneeling: {
  6926. height: math.unit(6 / 1.5, "feet"),
  6927. weight: math.unit(220, "lb"),
  6928. name: "Kneeling",
  6929. image: {
  6930. source: "./media/characters/gemini/kneeling.svg",
  6931. bottom: 0.02
  6932. }
  6933. },
  6934. },
  6935. [
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(300, "meters"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Megamacro",
  6943. height: math.unit(6900, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6949. {
  6950. anthro: {
  6951. height: math.unit(2.35, "meters"),
  6952. weight: math.unit(73, "kg"),
  6953. name: "Anthro",
  6954. image: {
  6955. source: "./media/characters/alicia/anthro.svg",
  6956. extra: 2571 / 2385,
  6957. bottom: 75 / 2648
  6958. }
  6959. },
  6960. paw: {
  6961. height: math.unit(1.32, "feet"),
  6962. name: "Paw",
  6963. image: {
  6964. source: "./media/characters/alicia/paw.svg"
  6965. }
  6966. },
  6967. feral: {
  6968. height: math.unit(1.69, "meters"),
  6969. weight: math.unit(73, "kg"),
  6970. name: "Feral",
  6971. image: {
  6972. source: "./media/characters/alicia/feral.svg",
  6973. extra: 2123 / 1715,
  6974. bottom: 222 / 2349
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(2.35, "meters")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(60, "meters"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Megamacro",
  6990. height: math.unit(10000, "kilometers")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(7, "feet"),
  6999. weight: math.unit(250, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/archy/front.svg"
  7003. }
  7004. }
  7005. },
  7006. [
  7007. {
  7008. name: "Micro",
  7009. height: math.unit(1, "inch")
  7010. },
  7011. {
  7012. name: "Shorty",
  7013. height: math.unit(5, "feet")
  7014. },
  7015. {
  7016. name: "Normal",
  7017. height: math.unit(7, "feet")
  7018. },
  7019. {
  7020. name: "Macro",
  7021. height: math.unit(600, "meters"),
  7022. default: true
  7023. },
  7024. {
  7025. name: "Megamacro",
  7026. height: math.unit(1, "mile")
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(1.65, "meters"),
  7035. weight: math.unit(74, "kg"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/berri/front.svg",
  7039. extra: 857 / 837,
  7040. bottom: 18 / 877
  7041. }
  7042. },
  7043. bum: {
  7044. height: math.unit(1.46, "feet"),
  7045. name: "Bum",
  7046. image: {
  7047. source: "./media/characters/berri/bum.svg"
  7048. }
  7049. },
  7050. mouth: {
  7051. height: math.unit(0.44, "feet"),
  7052. name: "Mouth",
  7053. image: {
  7054. source: "./media/characters/berri/mouth.svg"
  7055. }
  7056. },
  7057. paw: {
  7058. height: math.unit(0.826, "feet"),
  7059. name: "Paw",
  7060. image: {
  7061. source: "./media/characters/berri/paw.svg"
  7062. }
  7063. },
  7064. },
  7065. [
  7066. {
  7067. name: "Normal",
  7068. height: math.unit(1.65, "meters")
  7069. },
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(60, "m"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Megamacro",
  7077. height: math.unit(9.213, "km")
  7078. },
  7079. {
  7080. name: "Planet Eater",
  7081. height: math.unit(489, "megameters")
  7082. },
  7083. {
  7084. name: "Teramacro",
  7085. height: math.unit(2471635000000, "meters")
  7086. },
  7087. {
  7088. name: "Examacro",
  7089. height: math.unit(8.0624e+26, "meters")
  7090. }
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(1.72, "meters"),
  7098. weight: math.unit(68, "kg"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/lexi/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Very Smol",
  7108. height: math.unit(10, "mm")
  7109. },
  7110. {
  7111. name: "Micro",
  7112. height: math.unit(6.8, "cm"),
  7113. default: true
  7114. },
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(1.72, "m")
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(1.69, "meters"),
  7126. weight: math.unit(68, "kg"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/martin/front.svg",
  7130. extra: 596 / 581
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Micro",
  7137. height: math.unit(6.85, "cm"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(1.69, "m")
  7143. }
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(1.69, "meters"),
  7151. weight: math.unit(68, "kg"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/juno/front.svg"
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(7, "cm")
  7162. },
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(1.89, "m")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(353, "meters"),
  7170. default: true
  7171. }
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(1.93, "meters"),
  7179. weight: math.unit(83, "kg"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/samantha/front.svg"
  7183. }
  7184. },
  7185. frontClothed: {
  7186. height: math.unit(1.93, "meters"),
  7187. weight: math.unit(83, "kg"),
  7188. name: "Front (Clothed)",
  7189. image: {
  7190. source: "./media/characters/samantha/front-clothed.svg"
  7191. }
  7192. },
  7193. back: {
  7194. height: math.unit(1.93, "meters"),
  7195. weight: math.unit(83, "kg"),
  7196. name: "Back",
  7197. image: {
  7198. source: "./media/characters/samantha/back.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(1.93, "m")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(74, "meters"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro+",
  7214. height: math.unit(223, "meters"),
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(8381, "meters"),
  7219. },
  7220. {
  7221. name: "Megamacro+",
  7222. height: math.unit(12000, "kilometers")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(1.92, "meters"),
  7231. weight: math.unit(80, "kg"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/dr-clay/front.svg"
  7235. }
  7236. },
  7237. frontClothed: {
  7238. height: math.unit(1.92, "meters"),
  7239. weight: math.unit(80, "kg"),
  7240. name: "Front (Clothed)",
  7241. image: {
  7242. source: "./media/characters/dr-clay/front-clothed.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(1.92, "m")
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(214, "meters"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(12.237, "meters"),
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(557, "megameters"),
  7263. },
  7264. {
  7265. name: "Unimaginable",
  7266. height: math.unit(120e9, "lightyears")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(2, "meters"),
  7275. weight: math.unit(80, "kg"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Teramacro",
  7285. height: math.unit(500000, "lightyears"),
  7286. default: true
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7292. {
  7293. crux: {
  7294. height: math.unit(2, "meters"),
  7295. weight: math.unit(150, "kg"),
  7296. name: "Crux",
  7297. image: {
  7298. source: "./media/characters/vemus/crux.svg",
  7299. extra: 1074/936,
  7300. bottom: 23/1097
  7301. }
  7302. },
  7303. skunkTanuki: {
  7304. height: math.unit(2, "meters"),
  7305. weight: math.unit(150, "kg"),
  7306. name: "Skunk-Tanuki",
  7307. image: {
  7308. source: "./media/characters/vemus/skunk-tanuki.svg",
  7309. extra: 926/893,
  7310. bottom: 20/946
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(4, "meters"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Big",
  7322. height: math.unit(8, "meters")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(100, "meters")
  7327. },
  7328. {
  7329. name: "Macro+",
  7330. height: math.unit(1500, "meters")
  7331. },
  7332. {
  7333. name: "Stellar",
  7334. height: math.unit(14e8, "meters")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(2, "meters"),
  7343. weight: math.unit(70, "kg"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/beherit/front.svg",
  7347. extra: 1234/1109,
  7348. bottom: 55/1289
  7349. }
  7350. }
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(6, "feet")
  7356. },
  7357. {
  7358. name: "Lorg",
  7359. height: math.unit(25, "feet"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Lorger",
  7364. height: math.unit(75, "feet")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(200, "meters")
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7374. {
  7375. front: {
  7376. height: math.unit(2, "meters"),
  7377. weight: math.unit(150, "kg"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/everett/front.svg",
  7381. extra: 1017/866,
  7382. bottom: 86/1103
  7383. }
  7384. },
  7385. paw: {
  7386. height: math.unit(2 / 3.6, "meters"),
  7387. name: "Paw",
  7388. image: {
  7389. source: "./media/characters/everett/paw.svg"
  7390. }
  7391. },
  7392. },
  7393. [
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(15, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Lorg",
  7401. height: math.unit(70, "feet"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Lorger",
  7406. height: math.unit(250, "feet")
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(500, "meters")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(2, "meters"),
  7419. weight: math.unit(86, "kg"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/rose/front.svg",
  7423. extra: 1785/1636,
  7424. bottom: 30/1815
  7425. },
  7426. form: "liom",
  7427. default: true
  7428. },
  7429. frontSporty: {
  7430. height: math.unit(2, "meters"),
  7431. weight: math.unit(86, "kg"),
  7432. name: "Front (Sporty)",
  7433. image: {
  7434. source: "./media/characters/rose/front-sporty.svg",
  7435. extra: 350/335,
  7436. bottom: 10/360
  7437. },
  7438. form: "liom"
  7439. },
  7440. frontAlt: {
  7441. height: math.unit(1.6, "meters"),
  7442. weight: math.unit(86, "kg"),
  7443. name: "Front (Alt)",
  7444. image: {
  7445. source: "./media/characters/rose/front-alt.svg",
  7446. extra: 299/283,
  7447. bottom: 3/302
  7448. },
  7449. form: "liom"
  7450. },
  7451. plush: {
  7452. height: math.unit(2, "meters"),
  7453. weight: math.unit(86/3, "kg"),
  7454. name: "Plush",
  7455. image: {
  7456. source: "./media/characters/rose/plush.svg",
  7457. extra: 361/337,
  7458. bottom: 11/372
  7459. },
  7460. form: "plush",
  7461. default: true
  7462. },
  7463. faeStanding: {
  7464. height: math.unit(10, "cm"),
  7465. weight: math.unit(10, "grams"),
  7466. name: "Standing",
  7467. image: {
  7468. source: "./media/characters/rose/fae-standing.svg",
  7469. extra: 1189/1060,
  7470. bottom: 27/1216
  7471. },
  7472. form: "fae",
  7473. default: true
  7474. },
  7475. faeSitting: {
  7476. height: math.unit(5, "cm"),
  7477. weight: math.unit(10, "grams"),
  7478. name: "Sitting",
  7479. image: {
  7480. source: "./media/characters/rose/fae-sitting.svg",
  7481. extra: 737/577,
  7482. bottom: 356/1093
  7483. },
  7484. form: "fae"
  7485. },
  7486. faePaw: {
  7487. height: math.unit(1.35, "cm"),
  7488. name: "Paw",
  7489. image: {
  7490. source: "./media/characters/rose/fae-paw.svg"
  7491. },
  7492. form: "fae"
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "True Micro",
  7498. height: math.unit(9, "cm"),
  7499. form: "liom"
  7500. },
  7501. {
  7502. name: "Micro",
  7503. height: math.unit(16, "cm"),
  7504. form: "liom"
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(1.85, "meters"),
  7509. default: true,
  7510. form: "liom"
  7511. },
  7512. {
  7513. name: "Mini-Macro",
  7514. height: math.unit(5, "meters"),
  7515. form: "liom"
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(15, "meters"),
  7520. form: "liom"
  7521. },
  7522. {
  7523. name: "True Macro",
  7524. height: math.unit(40, "meters"),
  7525. form: "liom"
  7526. },
  7527. {
  7528. name: "City Scale",
  7529. height: math.unit(1, "km"),
  7530. form: "liom"
  7531. },
  7532. {
  7533. name: "Plushie",
  7534. height: math.unit(9, "cm"),
  7535. form: "plush",
  7536. default: true
  7537. },
  7538. {
  7539. name: "Fae",
  7540. height: math.unit(10, "cm"),
  7541. form: "fae",
  7542. default: true
  7543. },
  7544. ],
  7545. {
  7546. "liom": {
  7547. name: "Liom"
  7548. },
  7549. "plush": {
  7550. name: "Plush"
  7551. },
  7552. "fae": {
  7553. name: "Fae Fox",
  7554. default: true
  7555. }
  7556. }
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(2, "meters"),
  7563. weight: math.unit(350, "lbs"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/regal/front.svg"
  7567. }
  7568. },
  7569. back: {
  7570. height: math.unit(2, "meters"),
  7571. weight: math.unit(350, "lbs"),
  7572. name: "Back",
  7573. image: {
  7574. source: "./media/characters/regal/back.svg"
  7575. }
  7576. },
  7577. },
  7578. [
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(350, "feet"),
  7582. default: true
  7583. }
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(4 + 11 / 12, "feet"),
  7591. weight: math.unit(100, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/opal/front.svg"
  7595. }
  7596. },
  7597. frontAlt: {
  7598. height: math.unit(4 + 11 / 12, "feet"),
  7599. weight: math.unit(100, "lbs"),
  7600. name: "Front (Alt)",
  7601. image: {
  7602. source: "./media/characters/opal/front-alt.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Small",
  7609. height: math.unit(4 + 11 / 12, "feet")
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(20, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(120, "feet")
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(80, "miles")
  7623. },
  7624. {
  7625. name: "True Size",
  7626. height: math.unit(100000, "lightyears")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(6, "feet"),
  7635. weight: math.unit(200, "lbs"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/vector-wuff/front.svg"
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.8, "meters")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(450, "meters"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(15, "kilometers")
  7655. }
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(256, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/dannik/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(69.57, "meters"),
  7674. default: true
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(120, "lbs"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/azura-saharah/front.svg"
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(120, "lbs"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/azura-saharah/back.svg"
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(100, "feet"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7708. {
  7709. side: {
  7710. height: math.unit(5 + 4 / 12, "feet"),
  7711. weight: math.unit(163, "lbs"),
  7712. name: "Side",
  7713. image: {
  7714. source: "./media/characters/kennedy/side.svg"
  7715. }
  7716. }
  7717. },
  7718. [
  7719. {
  7720. name: "Standard Doggo",
  7721. height: math.unit(5 + 4 / 12, "feet")
  7722. },
  7723. {
  7724. name: "Big Doggo",
  7725. height: math.unit(25 + 3 / 12, "feet"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(5 + 5/12, "feet"),
  7735. weight: math.unit(100, "lbs"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/odios-de-lunar/front.svg",
  7739. extra: 1468/1323,
  7740. bottom: 22/1490
  7741. }
  7742. }
  7743. },
  7744. [
  7745. {
  7746. name: "Micro",
  7747. height: math.unit(3, "inches")
  7748. },
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(5.5, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(100, "feet")
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7762. {
  7763. back: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(220, "lbs"),
  7766. name: "Back",
  7767. image: {
  7768. source: "./media/characters/mandake/back.svg"
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(7, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(78, "feet")
  7781. },
  7782. {
  7783. name: "Macro+",
  7784. height: math.unit(300, "meters")
  7785. },
  7786. {
  7787. name: "Macro++",
  7788. height: math.unit(2400, "feet")
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(5167, "meters")
  7793. },
  7794. {
  7795. name: "Gigamacro",
  7796. height: math.unit(41769, "miles")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(120, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/yozey/front.svg"
  7809. }
  7810. },
  7811. frontAlt: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(120, "lbs"),
  7814. name: "Front (Alt)",
  7815. image: {
  7816. source: "./media/characters/yozey/front-alt.svg"
  7817. }
  7818. },
  7819. side: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(120, "lbs"),
  7822. name: "Side",
  7823. image: {
  7824. source: "./media/characters/yozey/side.svg"
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Micro",
  7831. height: math.unit(3, "inches"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(6, "feet")
  7837. }
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(103, "lbs"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/valeska-voss/front.svg"
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Mini-Sized Sub",
  7855. height: math.unit(3.1, "inches")
  7856. },
  7857. {
  7858. name: "Mid-Sized Sub",
  7859. height: math.unit(6.2, "inches")
  7860. },
  7861. {
  7862. name: "Full-Sized Sub",
  7863. height: math.unit(9.3, "inches")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(5 + 2 / 12, "foot"),
  7868. default: true
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(6, "feet"),
  7877. weight: math.unit(160, "lbs"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/gene-zeta/front.svg",
  7881. extra: 3006 / 2826,
  7882. bottom: 182 / 3188
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Micro",
  7889. height: math.unit(6, "inches")
  7890. },
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(5 + 11 / 12, "foot"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(140, "feet")
  7899. },
  7900. {
  7901. name: "Supercharged",
  7902. height: math.unit(2500, "feet")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(350, "lbs"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/razinox/front.svg",
  7915. extra: 1686 / 1548,
  7916. bottom: 28.2 / 1868
  7917. }
  7918. },
  7919. back: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(350, "lbs"),
  7922. name: "Back",
  7923. image: {
  7924. source: "./media/characters/razinox/back.svg",
  7925. extra: 1660 / 1590,
  7926. bottom: 15 / 1665
  7927. }
  7928. },
  7929. },
  7930. [
  7931. {
  7932. name: "Normal",
  7933. height: math.unit(10 + 8 / 12, "foot")
  7934. },
  7935. {
  7936. name: "Minimacro",
  7937. height: math.unit(15, "foot")
  7938. },
  7939. {
  7940. name: "Macro",
  7941. height: math.unit(60, "foot"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Megamacro",
  7946. height: math.unit(5, "miles")
  7947. },
  7948. {
  7949. name: "Gigamacro",
  7950. height: math.unit(6000, "miles")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(150, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/cobalt/front.svg"
  7963. }
  7964. }
  7965. },
  7966. [
  7967. {
  7968. name: "Normal",
  7969. height: math.unit(8 + 1 / 12, "foot")
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(111, "foot"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Supracosmic",
  7978. height: math.unit(1e42, "feet")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(5, "inches"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/amanda/front.svg",
  7990. extra: 926/791,
  7991. bottom: 38/964
  7992. }
  7993. },
  7994. back: {
  7995. height: math.unit(5, "inches"),
  7996. name: "Back",
  7997. image: {
  7998. source: "./media/characters/amanda/back.svg",
  7999. extra: 909/805,
  8000. bottom: 43/952
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Micro",
  8007. height: math.unit(5, "inches"),
  8008. default: true
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(2.75, "meters"),
  8017. weight: math.unit(1200, "lb"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/teal/front.svg",
  8021. extra: 2463 / 2320,
  8022. bottom: 166 / 2629
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(2.75, "meters"),
  8027. weight: math.unit(1200, "lb"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/teal/back.svg",
  8031. extra: 2580 / 2489,
  8032. bottom: 151 / 2731
  8033. }
  8034. },
  8035. sitting: {
  8036. height: math.unit(1.9, "meters"),
  8037. weight: math.unit(1200, "lb"),
  8038. name: "Sitting",
  8039. image: {
  8040. source: "./media/characters/teal/sitting.svg",
  8041. extra: 623 / 590,
  8042. bottom: 121 / 744
  8043. }
  8044. },
  8045. standing: {
  8046. height: math.unit(2.75, "meters"),
  8047. weight: math.unit(1200, "lb"),
  8048. name: "Standing",
  8049. image: {
  8050. source: "./media/characters/teal/standing.svg",
  8051. extra: 923 / 893,
  8052. bottom: 60 / 983
  8053. }
  8054. },
  8055. stretching: {
  8056. height: math.unit(3.65, "meters"),
  8057. weight: math.unit(1200, "lb"),
  8058. name: "Stretching",
  8059. image: {
  8060. source: "./media/characters/teal/stretching.svg",
  8061. extra: 1276 / 1244,
  8062. bottom: 0 / 1276
  8063. }
  8064. },
  8065. legged: {
  8066. height: math.unit(1.3, "meters"),
  8067. weight: math.unit(100, "lb"),
  8068. name: "Legged",
  8069. image: {
  8070. source: "./media/characters/teal/legged.svg",
  8071. extra: 462 / 437,
  8072. bottom: 24 / 486
  8073. }
  8074. },
  8075. naga: {
  8076. height: math.unit(5.4, "meters"),
  8077. weight: math.unit(4000, "lb"),
  8078. name: "Naga",
  8079. image: {
  8080. source: "./media/characters/teal/naga.svg",
  8081. extra: 1902 / 1858,
  8082. bottom: 0 / 1902
  8083. }
  8084. },
  8085. hand: {
  8086. height: math.unit(0.52, "meters"),
  8087. name: "Hand",
  8088. image: {
  8089. source: "./media/characters/teal/hand.svg"
  8090. }
  8091. },
  8092. maw: {
  8093. height: math.unit(0.43, "meters"),
  8094. name: "Maw",
  8095. image: {
  8096. source: "./media/characters/teal/maw.svg"
  8097. }
  8098. },
  8099. slit: {
  8100. height: math.unit(0.25, "meters"),
  8101. name: "Slit",
  8102. image: {
  8103. source: "./media/characters/teal/slit.svg"
  8104. }
  8105. },
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(2.75, "meters"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(300, "feet")
  8116. },
  8117. {
  8118. name: "Macro+",
  8119. height: math.unit(2000, "feet")
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8125. {
  8126. frontCat: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(180, "lbs"),
  8129. name: "Front (Cat)",
  8130. image: {
  8131. source: "./media/characters/ravin-amulet/front-cat.svg"
  8132. }
  8133. },
  8134. frontCatAlt: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(180, "lbs"),
  8137. name: "Front (Alt, Cat)",
  8138. image: {
  8139. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8140. }
  8141. },
  8142. frontWerewolf: {
  8143. height: math.unit(6 * 1.2, "feet"),
  8144. weight: math.unit(225, "lbs"),
  8145. name: "Front (Werewolf)",
  8146. image: {
  8147. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8148. }
  8149. },
  8150. backWerewolf: {
  8151. height: math.unit(6 * 1.2, "feet"),
  8152. weight: math.unit(225, "lbs"),
  8153. name: "Back (Werewolf)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8156. }
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "Nano",
  8162. height: math.unit(1, "micrometer")
  8163. },
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(1, "inch")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(6, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(60, "feet")
  8176. }
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(165, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/fluoresce/front.svg"
  8188. }
  8189. }
  8190. },
  8191. [
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(6, "cm")
  8195. },
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(5 + 7 / 12, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(56, "feet")
  8204. },
  8205. {
  8206. name: "Megamacro",
  8207. height: math.unit(1.9, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(9 + 6 / 12, "feet"),
  8216. weight: math.unit(523, "lbs"),
  8217. name: "Side",
  8218. image: {
  8219. source: "./media/characters/aurora/side.svg"
  8220. }
  8221. }
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(9 + 6 / 12, "feet")
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(96, "feet"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Macro+",
  8235. height: math.unit(243, "feet")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(194, "cm"),
  8244. weight: math.unit(90, "kg"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/ranek/front.svg",
  8248. extra: 1862/1791,
  8249. bottom: 80/1942
  8250. }
  8251. },
  8252. back: {
  8253. height: math.unit(194, "cm"),
  8254. weight: math.unit(90, "kg"),
  8255. name: "Back",
  8256. image: {
  8257. source: "./media/characters/ranek/back.svg",
  8258. extra: 1853/1787,
  8259. bottom: 74/1927
  8260. }
  8261. },
  8262. feral: {
  8263. height: math.unit(30, "cm"),
  8264. weight: math.unit(1.6, "lbs"),
  8265. name: "Feral",
  8266. image: {
  8267. source: "./media/characters/ranek/feral.svg",
  8268. extra: 990/631,
  8269. bottom: 29/1019
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(194, "cm"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(100, "meters")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(5 + 6 / 12, "feet"),
  8290. weight: math.unit(153, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/andrew-cooper/front.svg"
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Nano",
  8300. height: math.unit(1, "mm")
  8301. },
  8302. {
  8303. name: "Micro",
  8304. height: math.unit(2, "inches")
  8305. },
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(5 + 6 / 12, "feet"),
  8309. default: true
  8310. }
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(6, "feet"),
  8318. weight: math.unit(180, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/akane-sato/front.svg",
  8322. extra: 1219 / 1140
  8323. }
  8324. },
  8325. back: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(180, "lbs"),
  8328. name: "Back",
  8329. image: {
  8330. source: "./media/characters/akane-sato/back.svg",
  8331. extra: 1219 / 1170
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(2.5, "meters")
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(250, "meters"),
  8343. default: true
  8344. },
  8345. {
  8346. name: "Megamacro",
  8347. height: math.unit(25, "km")
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(65, "kg"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/rook/front.svg",
  8360. extra: 960 / 950
  8361. }
  8362. }
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(8.8, "feet")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(88, "feet"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Megamacro",
  8376. height: math.unit(8, "miles")
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(12 + 2 / 12, "feet"),
  8385. weight: math.unit(808, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/prodigy/front.svg"
  8389. }
  8390. }
  8391. },
  8392. [
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(12 + 2 / 12, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(143, "feet")
  8401. },
  8402. {
  8403. name: "Macro+",
  8404. height: math.unit(400, "feet")
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(225, "lbs"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/daniel/front.svg"
  8417. }
  8418. },
  8419. leaning: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(225, "lbs"),
  8422. name: "Leaning",
  8423. image: {
  8424. source: "./media/characters/daniel/leaning.svg"
  8425. }
  8426. },
  8427. },
  8428. [
  8429. {
  8430. name: "Macro",
  8431. height: math.unit(1000, "feet"),
  8432. default: true
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(88, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/chiros/front.svg",
  8445. extra: 306 / 226
  8446. }
  8447. },
  8448. side: {
  8449. height: math.unit(6, "feet"),
  8450. weight: math.unit(88, "lbs"),
  8451. name: "Side",
  8452. image: {
  8453. source: "./media/characters/chiros/side.svg",
  8454. extra: 306 / 226
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(6, "cm"),
  8462. default: true
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8468. {
  8469. front: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(100, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/selka/front.svg",
  8475. extra: 947 / 887
  8476. }
  8477. }
  8478. },
  8479. [
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(5, "cm"),
  8483. default: true
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(8 + 3 / 12, "feet"),
  8492. weight: math.unit(424, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/verin/front.svg",
  8496. extra: 1845 / 1550
  8497. }
  8498. },
  8499. frontArmored: {
  8500. height: math.unit(8 + 3 / 12, "feet"),
  8501. weight: math.unit(424, "lbs"),
  8502. name: "Front (Armored)",
  8503. image: {
  8504. source: "./media/characters/verin/front-armor.svg",
  8505. extra: 1845 / 1550,
  8506. bottom: 0.01
  8507. }
  8508. },
  8509. back: {
  8510. height: math.unit(8 + 3 / 12, "feet"),
  8511. weight: math.unit(424, "lbs"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/verin/back.svg",
  8515. bottom: 0.1,
  8516. extra: 1
  8517. }
  8518. },
  8519. foot: {
  8520. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8521. name: "Foot",
  8522. image: {
  8523. source: "./media/characters/verin/foot.svg"
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(8 + 3 / 12, "feet")
  8531. },
  8532. {
  8533. name: "Minimacro",
  8534. height: math.unit(21, "feet"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(626, "feet")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(2.718, "meters"),
  8548. weight: math.unit(150, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/sovrim-terraquian/front.svg",
  8552. extra: 1752/1689,
  8553. bottom: 36/1788
  8554. }
  8555. },
  8556. back: {
  8557. height: math.unit(2.718, "meters"),
  8558. weight: math.unit(150, "lbs"),
  8559. name: "Back",
  8560. image: {
  8561. source: "./media/characters/sovrim-terraquian/back.svg",
  8562. extra: 1698/1657,
  8563. bottom: 58/1756
  8564. }
  8565. },
  8566. tongue: {
  8567. height: math.unit(2.865, "feet"),
  8568. name: "Tongue",
  8569. image: {
  8570. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8571. }
  8572. },
  8573. hand: {
  8574. height: math.unit(1.61, "feet"),
  8575. name: "Hand",
  8576. image: {
  8577. source: "./media/characters/sovrim-terraquian/hand.svg"
  8578. }
  8579. },
  8580. foot: {
  8581. height: math.unit(1.05, "feet"),
  8582. name: "Foot",
  8583. image: {
  8584. source: "./media/characters/sovrim-terraquian/foot.svg"
  8585. }
  8586. },
  8587. footAlt: {
  8588. height: math.unit(0.88, "feet"),
  8589. name: "Foot (Alt)",
  8590. image: {
  8591. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(2, "inches")
  8599. },
  8600. {
  8601. name: "Small",
  8602. height: math.unit(1, "meter")
  8603. },
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(Math.E, "meters"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(20, "meters")
  8612. },
  8613. {
  8614. name: "Macro+",
  8615. height: math.unit(400, "meters")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(7, "feet"),
  8624. weight: math.unit(489, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/reece-silvermane/front.svg",
  8628. bottom: 0.02,
  8629. extra: 1
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Macro",
  8636. height: math.unit(1.5, "miles"),
  8637. default: true
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(78, "kg"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/kane/front.svg",
  8650. extra: 978 / 899
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(2.1, "m"),
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(1, "km"),
  8662. default: true
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(200, "kg"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/tegon/front.svg",
  8675. bottom: 0.01,
  8676. extra: 1
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Micro",
  8683. height: math.unit(1, "inch")
  8684. },
  8685. {
  8686. name: "Normal",
  8687. height: math.unit(6 + 3 / 12, "feet"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Macro",
  8692. height: math.unit(300, "feet")
  8693. },
  8694. {
  8695. name: "Megamacro",
  8696. height: math.unit(69, "miles")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8702. {
  8703. side: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(2304, "lbs"),
  8706. name: "Side",
  8707. image: {
  8708. source: "./media/characters/arcturax/side.svg",
  8709. extra: 790 / 376,
  8710. bottom: 0.01
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inch")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(6, "feet")
  8722. },
  8723. {
  8724. name: "Macro",
  8725. height: math.unit(39, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Megamacro",
  8730. height: math.unit(7, "miles")
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(50, "lbs"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/sentri/front.svg",
  8743. extra: 1750 / 1570,
  8744. bottom: 0.025
  8745. }
  8746. },
  8747. frontAlt: {
  8748. height: math.unit(6, "feet"),
  8749. weight: math.unit(50, "lbs"),
  8750. name: "Front (Alt)",
  8751. image: {
  8752. source: "./media/characters/sentri/front-alt.svg",
  8753. extra: 1750 / 1570,
  8754. bottom: 0.025
  8755. }
  8756. },
  8757. },
  8758. [
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(15, "feet"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "Macro",
  8766. height: math.unit(2500, "feet")
  8767. }
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(5 + 8 / 12, "feet"),
  8775. weight: math.unit(130, "lbs"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/corvin/front.svg",
  8779. extra: 1803 / 1629
  8780. }
  8781. },
  8782. frontShirt: {
  8783. height: math.unit(5 + 8 / 12, "feet"),
  8784. weight: math.unit(130, "lbs"),
  8785. name: "Front (Shirt)",
  8786. image: {
  8787. source: "./media/characters/corvin/front-shirt.svg",
  8788. extra: 1803 / 1629
  8789. }
  8790. },
  8791. frontPoncho: {
  8792. height: math.unit(5 + 8 / 12, "feet"),
  8793. weight: math.unit(130, "lbs"),
  8794. name: "Front (Poncho)",
  8795. image: {
  8796. source: "./media/characters/corvin/front-poncho.svg",
  8797. extra: 1803 / 1629
  8798. }
  8799. },
  8800. side: {
  8801. height: math.unit(5 + 8 / 12, "feet"),
  8802. weight: math.unit(130, "lbs"),
  8803. name: "Side",
  8804. image: {
  8805. source: "./media/characters/corvin/side.svg",
  8806. extra: 1012 / 945
  8807. }
  8808. },
  8809. back: {
  8810. height: math.unit(5 + 8 / 12, "feet"),
  8811. weight: math.unit(130, "lbs"),
  8812. name: "Back",
  8813. image: {
  8814. source: "./media/characters/corvin/back.svg",
  8815. extra: 1803 / 1629
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(3, "inches")
  8823. },
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 8 / 12, "feet")
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(300, "feet"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Megamacro",
  8835. height: math.unit(500, "miles")
  8836. }
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(6, "feet"),
  8844. weight: math.unit(135, "lbs"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/q/front.svg",
  8848. extra: 854 / 752,
  8849. bottom: 0.005
  8850. }
  8851. },
  8852. back: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(130, "lbs"),
  8855. name: "Back",
  8856. image: {
  8857. source: "./media/characters/q/back.svg",
  8858. extra: 854 / 752
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(90, "feet"),
  8866. default: true
  8867. },
  8868. {
  8869. name: "Extra Macro",
  8870. height: math.unit(300, "feet"),
  8871. },
  8872. {
  8873. name: "BIG WALF",
  8874. height: math.unit(750, "feet"),
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(3, "feet"),
  8883. weight: math.unit(28, "lbs"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/citrine/front.svg"
  8887. }
  8888. }
  8889. },
  8890. [
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(3, "feet"),
  8894. default: true
  8895. }
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8900. {
  8901. front: {
  8902. height: math.unit(14, "feet"),
  8903. weight: math.unit(1450, "kg"),
  8904. preyCapacity: math.unit(15, "people"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/aura-starwind/front.svg",
  8908. extra: 1440/1327,
  8909. bottom: 11/1451
  8910. }
  8911. },
  8912. side: {
  8913. height: math.unit(14, "feet"),
  8914. weight: math.unit(1450, "kg"),
  8915. preyCapacity: math.unit(15, "people"),
  8916. name: "Side",
  8917. image: {
  8918. source: "./media/characters/aura-starwind/side.svg",
  8919. extra: 1654 / 1497
  8920. }
  8921. },
  8922. taur: {
  8923. height: math.unit(18, "feet"),
  8924. weight: math.unit(5500, "kg"),
  8925. preyCapacity: math.unit(50, "people"),
  8926. name: "Taur",
  8927. image: {
  8928. source: "./media/characters/aura-starwind/taur.svg",
  8929. extra: 1760 / 1650
  8930. }
  8931. },
  8932. feral: {
  8933. height: math.unit(46, "feet"),
  8934. weight: math.unit(25000, "kg"),
  8935. preyCapacity: math.unit(120, "people"),
  8936. name: "Feral",
  8937. image: {
  8938. source: "./media/characters/aura-starwind/feral.svg"
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(14, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(50, "meters")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(5000, "meters")
  8955. },
  8956. {
  8957. name: "Gigamacro",
  8958. height: math.unit(100000, "kilometers")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(2 + 7 / 12, "feet"),
  8967. weight: math.unit(32, "lbs"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/rivet/front.svg",
  8971. extra: 1716 / 1658,
  8972. bottom: 0.03
  8973. }
  8974. },
  8975. foot: {
  8976. height: math.unit(0.551, "feet"),
  8977. name: "Rivet's Foot",
  8978. image: {
  8979. source: "./media/characters/rivet/foot.svg"
  8980. },
  8981. rename: true
  8982. }
  8983. },
  8984. [
  8985. {
  8986. name: "Micro",
  8987. height: math.unit(1.5, "inches"),
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(2 + 7 / 12, "feet"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(85, "feet")
  8997. },
  8998. {
  8999. name: "Megamacro",
  9000. height: math.unit(2.2, "km")
  9001. }
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(5 + 9 / 12, "feet"),
  9009. weight: math.unit(150, "lbs"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/coffee/front.svg",
  9013. extra: 946/880,
  9014. bottom: 66/1012
  9015. }
  9016. },
  9017. foot: {
  9018. height: math.unit(1.29, "feet"),
  9019. name: "Foot",
  9020. image: {
  9021. source: "./media/characters/coffee/foot.svg"
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Micro",
  9028. height: math.unit(2, "inches"),
  9029. },
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(800, "feet")
  9038. },
  9039. {
  9040. name: "Megamacro",
  9041. height: math.unit(25, "miles")
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(200, "lbs"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/chari-gal/front.svg",
  9054. extra: 1568 / 1385,
  9055. bottom: 0.047
  9056. }
  9057. },
  9058. gigantamax: {
  9059. height: math.unit(6 * 16, "feet"),
  9060. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9061. name: "Gigantamax",
  9062. image: {
  9063. source: "./media/characters/chari-gal/gigantamax.svg",
  9064. extra: 1124 / 888,
  9065. bottom: 0.03
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5 + 7 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(200, "feet"),
  9077. default: true
  9078. }
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(150, "lbs"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/nova/front.svg",
  9090. extra: 5000 / 4722,
  9091. bottom: 0.02
  9092. }
  9093. }
  9094. },
  9095. [
  9096. {
  9097. name: "Micro-",
  9098. height: math.unit(0.8, "inches")
  9099. },
  9100. {
  9101. name: "Micro",
  9102. height: math.unit(2, "inches"),
  9103. default: true
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9109. {
  9110. koboldFront: {
  9111. height: math.unit(3 + 1 / 12, "feet"),
  9112. weight: math.unit(21.7, "lbs"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/argent/kobold-front.svg",
  9116. extra: 1471 / 1331,
  9117. bottom: 100.8 / 1575.5
  9118. },
  9119. form: "kobold",
  9120. default: true
  9121. },
  9122. dragonFront: {
  9123. height: math.unit(75, "inches"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/argent/dragon-front.svg",
  9127. extra: 1389/1248,
  9128. bottom: 54/1443
  9129. },
  9130. form: "dragon",
  9131. },
  9132. dragonBack: {
  9133. height: math.unit(75, "inches"),
  9134. name: "Back",
  9135. image: {
  9136. source: "./media/characters/argent/dragon-back.svg",
  9137. extra: 1399/1271,
  9138. bottom: 23/1422
  9139. },
  9140. form: "dragon",
  9141. },
  9142. dragonDressed: {
  9143. height: math.unit(75, "inches"),
  9144. name: "Dressed",
  9145. image: {
  9146. source: "./media/characters/argent/dragon-dressed.svg",
  9147. extra: 1350/1215,
  9148. bottom: 26/1376
  9149. },
  9150. form: "dragon"
  9151. },
  9152. dragonHead: {
  9153. height: math.unit(23.5, "inches"),
  9154. name: "Head",
  9155. image: {
  9156. source: "./media/characters/argent/dragon-head.svg"
  9157. },
  9158. form: "dragon",
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches"),
  9165. form: "kobold",
  9166. },
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(3 + 1 / 12, "feet"),
  9170. form: "kobold",
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(120, "feet"),
  9176. form: "kobold",
  9177. },
  9178. {
  9179. name: "Speck",
  9180. height: math.unit(1, "mm"),
  9181. form: "dragon",
  9182. },
  9183. {
  9184. name: "Tiny",
  9185. height: math.unit(1, "cm"),
  9186. form: "dragon",
  9187. },
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(5, "cm"),
  9191. form: "dragon",
  9192. },
  9193. {
  9194. name: "Normal",
  9195. height: math.unit(75, "inches"),
  9196. form: "dragon",
  9197. default: true
  9198. },
  9199. {
  9200. name: "Extra Tall",
  9201. height: math.unit(9, "feet"),
  9202. form: "dragon",
  9203. },
  9204. {
  9205. name: "Inconvenient",
  9206. height: math.unit(5, "meters"),
  9207. form: "dragon",
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(70, "meters"),
  9212. form: "dragon",
  9213. },
  9214. {
  9215. name: "Macro+",
  9216. height: math.unit(250, "meters"),
  9217. form: "dragon",
  9218. },
  9219. {
  9220. name: "Megamacro",
  9221. height: math.unit(20, "km"),
  9222. form: "dragon",
  9223. },
  9224. {
  9225. name: "Mountainous",
  9226. height: math.unit(100, "km"),
  9227. form: "dragon",
  9228. },
  9229. {
  9230. name: "Continental",
  9231. height: math.unit(2, "megameters"),
  9232. form: "dragon",
  9233. },
  9234. {
  9235. name: "Too Big",
  9236. height: math.unit(900, "megameters"),
  9237. form: "dragon",
  9238. },
  9239. ],
  9240. {
  9241. "kobold": {
  9242. name: "Kobold",
  9243. default: true
  9244. },
  9245. "dragon": {
  9246. name: "Dragon",
  9247. },
  9248. }
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9252. {
  9253. lamp: {
  9254. height: math.unit(7 * 1559 / 989, "feet"),
  9255. name: "Magic Lamp",
  9256. image: {
  9257. source: "./media/characters/mira-al-cul/lamp.svg",
  9258. extra: 1617 / 1559
  9259. }
  9260. },
  9261. front: {
  9262. height: math.unit(7, "feet"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/mira-al-cul/front.svg",
  9266. extra: 1044 / 990
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Heavily Restricted",
  9273. height: math.unit(7 * 1559 / 989, "feet")
  9274. },
  9275. {
  9276. name: "Freshly Freed",
  9277. height: math.unit(50 * 1559 / 989, "feet")
  9278. },
  9279. {
  9280. name: "World Encompassing",
  9281. height: math.unit(10000 * 1559 / 989, "miles")
  9282. },
  9283. {
  9284. name: "Galactic",
  9285. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9286. },
  9287. {
  9288. name: "Palmed Universe",
  9289. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Multiversal Matriarch",
  9294. height: math.unit(8.87e10, "yottameters")
  9295. },
  9296. {
  9297. name: "Void Mother",
  9298. height: math.unit(3.14e110, "yottaparsecs")
  9299. },
  9300. {
  9301. name: "Toying with Transcendence",
  9302. height: math.unit(1e307, "meters")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9308. {
  9309. front: {
  9310. height: math.unit(17 + 1 / 12, "feet"),
  9311. weight: math.unit(476.2 * 5, "lbs"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/kuro-shi-uchū/front.svg",
  9315. extra: 2329 / 1835,
  9316. bottom: 0.02
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Micro",
  9323. height: math.unit(2, "inches")
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(12, "meters")
  9328. },
  9329. {
  9330. name: "Planetary",
  9331. height: math.unit(0.00929, "AU"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Universal",
  9336. height: math.unit(20, "gigaparsecs")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(5 + 2 / 12, "feet"),
  9345. weight: math.unit(120, "lbs"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/katherine/front.svg",
  9349. extra: 2075 / 1969
  9350. }
  9351. },
  9352. dress: {
  9353. height: math.unit(5 + 2 / 12, "feet"),
  9354. weight: math.unit(120, "lbs"),
  9355. name: "Dress",
  9356. image: {
  9357. source: "./media/characters/katherine/dress.svg",
  9358. extra: 2258 / 2064
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(1, "inches"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(5 + 2 / 12, "feet")
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(100, "meters")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(80, "miles")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(7 + 8 / 12, "feet"),
  9387. weight: math.unit(250, "lbs"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/yevis/front.svg",
  9391. extra: 1938 / 1755
  9392. }
  9393. }
  9394. },
  9395. [
  9396. {
  9397. name: "Mortal",
  9398. height: math.unit(7 + 8 / 12, "feet")
  9399. },
  9400. {
  9401. name: "Battle",
  9402. height: math.unit(25 + 11 / 12, "feet")
  9403. },
  9404. {
  9405. name: "Wrath",
  9406. height: math.unit(1654 + 11 / 12, "feet")
  9407. },
  9408. {
  9409. name: "Planet Destroyer",
  9410. height: math.unit(12000, "miles")
  9411. },
  9412. {
  9413. name: "Galaxy Conqueror",
  9414. height: math.unit(1.45, "zettameters"),
  9415. default: true
  9416. },
  9417. {
  9418. name: "Universal War",
  9419. height: math.unit(184, "gigaparsecs")
  9420. },
  9421. {
  9422. name: "Eternity War",
  9423. height: math.unit(1.98e55, "yottaparsecs")
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(5 + 8 / 12, "feet"),
  9432. weight: math.unit(63, "kg"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/xavier/front.svg",
  9436. extra: 944 / 883
  9437. }
  9438. },
  9439. frontStretch: {
  9440. height: math.unit(5 + 8 / 12, "feet"),
  9441. weight: math.unit(63, "kg"),
  9442. name: "Stretching",
  9443. image: {
  9444. source: "./media/characters/xavier/front-stretch.svg",
  9445. extra: 962 / 820
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(5 + 8 / 12, "feet")
  9453. },
  9454. {
  9455. name: "Macro",
  9456. height: math.unit(100, "meters"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "McLargeHuge",
  9461. height: math.unit(10, "miles")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(5 + 5 / 12, "feet"),
  9470. weight: math.unit(150, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/joshii/front.svg",
  9474. extra: 765 / 653,
  9475. bottom: 51 / 816
  9476. }
  9477. },
  9478. foot: {
  9479. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9480. name: "Foot",
  9481. image: {
  9482. source: "./media/characters/joshii/foot.svg"
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Micro",
  9489. height: math.unit(2, "inches")
  9490. },
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(5 + 5 / 12, "feet")
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(785, "feet"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Megamacro",
  9502. height: math.unit(24.5, "miles")
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(6, "feet"),
  9511. weight: math.unit(150, "lb"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/goddess-elizabeth/front.svg",
  9515. extra: 1800 / 1525,
  9516. bottom: 0.005
  9517. }
  9518. },
  9519. foot: {
  9520. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9521. name: "Foot",
  9522. image: {
  9523. source: "./media/characters/goddess-elizabeth/foot.svg"
  9524. }
  9525. },
  9526. mouth: {
  9527. height: math.unit(6, "feet"),
  9528. name: "Mouth",
  9529. image: {
  9530. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(12, "feet")
  9538. },
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(80, "miles"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(15000, "parsecs")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. weight: math.unit(144, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/kara/front.svg"
  9559. }
  9560. },
  9561. feet: {
  9562. height: math.unit(6 / 6.765, "feet"),
  9563. name: "Kara's Feet",
  9564. rename: true,
  9565. image: {
  9566. source: "./media/characters/kara/feet.svg"
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(5 + 9 / 12, "feet")
  9574. },
  9575. {
  9576. name: "Macro",
  9577. height: math.unit(174, "feet"),
  9578. default: true
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9584. {
  9585. front: {
  9586. height: math.unit(18, "feet"),
  9587. weight: math.unit(4050, "lb"),
  9588. name: "Front",
  9589. image: {
  9590. source: "./media/characters/tyrone/front.svg",
  9591. extra: 2405 / 2270,
  9592. bottom: 182 / 2587
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Normal",
  9599. height: math.unit(18, "feet"),
  9600. default: true
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(300, "feet")
  9605. },
  9606. {
  9607. name: "Megamacro",
  9608. height: math.unit(15, "km")
  9609. },
  9610. {
  9611. name: "Gigamacro",
  9612. height: math.unit(500, "km")
  9613. },
  9614. {
  9615. name: "Teramacro",
  9616. height: math.unit(0.5, "gigameters")
  9617. },
  9618. {
  9619. name: "Omnimacro",
  9620. height: math.unit(1e252, "yottauniverse")
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9626. {
  9627. front: {
  9628. height: math.unit(7 + 8 / 12, "feet"),
  9629. weight: math.unit(120, "lb"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/danny/front.svg",
  9633. extra: 1490 / 1350
  9634. }
  9635. },
  9636. back: {
  9637. height: math.unit(7 + 8 / 12, "feet"),
  9638. weight: math.unit(120, "lb"),
  9639. name: "Back",
  9640. image: {
  9641. source: "./media/characters/danny/back.svg",
  9642. extra: 1490 / 1350
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(7 + 8 / 12, "feet"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(3.5, "inches"),
  9659. weight: math.unit(19, "grams"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/mallow/front.svg",
  9663. extra: 471 / 431
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(3.5, "inches"),
  9668. weight: math.unit(19, "grams"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/mallow/back.svg",
  9672. extra: 471 / 431
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Normal",
  9679. height: math.unit(3.5, "inches"),
  9680. default: true
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9686. {
  9687. front: {
  9688. height: math.unit(9, "feet"),
  9689. weight: math.unit(230, "kg"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/starry-aqua/front.svg"
  9693. }
  9694. },
  9695. back: {
  9696. height: math.unit(9, "feet"),
  9697. weight: math.unit(230, "kg"),
  9698. name: "Back",
  9699. image: {
  9700. source: "./media/characters/starry-aqua/back.svg"
  9701. }
  9702. },
  9703. hand: {
  9704. height: math.unit(9 * 0.1168, "feet"),
  9705. name: "Hand",
  9706. image: {
  9707. source: "./media/characters/starry-aqua/hand.svg"
  9708. }
  9709. },
  9710. foot: {
  9711. height: math.unit(9 * 0.18, "feet"),
  9712. name: "Foot",
  9713. image: {
  9714. source: "./media/characters/starry-aqua/foot.svg"
  9715. }
  9716. }
  9717. },
  9718. [
  9719. {
  9720. name: "Micro",
  9721. height: math.unit(3, "inches")
  9722. },
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(9, "feet")
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(300, "feet"),
  9730. default: true
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(3200, "feet")
  9735. }
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9740. {
  9741. front: {
  9742. height: math.unit(15, "feet"),
  9743. weight: math.unit(5026, "lb"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/luka-towers/front.svg",
  9747. extra: 1269/1133,
  9748. bottom: 51/1320
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(15, "feet"),
  9756. default: true
  9757. },
  9758. {
  9759. name: "Minimacro",
  9760. height: math.unit(25, "feet")
  9761. },
  9762. {
  9763. name: "Macro",
  9764. height: math.unit(320, "feet")
  9765. },
  9766. {
  9767. name: "Megamacro",
  9768. height: math.unit(35000, "feet")
  9769. },
  9770. {
  9771. name: "Gigamacro",
  9772. height: math.unit(4000, "miles")
  9773. },
  9774. {
  9775. name: "Teramacro",
  9776. height: math.unit(15000, "miles")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(150, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/natalie-nightring/front.svg",
  9789. extra: 1,
  9790. bottom: 0.06
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Uh Oh",
  9797. height: math.unit(0.1, "mm")
  9798. },
  9799. {
  9800. name: "Small",
  9801. height: math.unit(3, "inches")
  9802. },
  9803. {
  9804. name: "Human Scale",
  9805. height: math.unit(6, "feet")
  9806. },
  9807. {
  9808. name: "Librarian",
  9809. height: math.unit(50, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Immense",
  9814. height: math.unit(200, "miles")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(180, "lbs"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/danni-rosie/front.svg",
  9827. extra: 1260 / 1128,
  9828. bottom: 0.022
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Micro",
  9835. height: math.unit(2, "inches"),
  9836. default: true
  9837. },
  9838. ]
  9839. ))
  9840. characterMakers.push(() => makeCharacter(
  9841. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9842. {
  9843. front: {
  9844. height: math.unit(5 + 9 / 12, "feet"),
  9845. weight: math.unit(220, "lb"),
  9846. name: "Front",
  9847. image: {
  9848. source: "./media/characters/samantha-kruse/front.svg",
  9849. extra: (985 / 935),
  9850. bottom: 0.03
  9851. }
  9852. },
  9853. frontUndressed: {
  9854. height: math.unit(5 + 9 / 12, "feet"),
  9855. weight: math.unit(220, "lb"),
  9856. name: "Front (Undressed)",
  9857. image: {
  9858. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9859. extra: (973 / 923),
  9860. bottom: 0.025
  9861. }
  9862. },
  9863. fat: {
  9864. height: math.unit(5 + 9 / 12, "feet"),
  9865. weight: math.unit(900, "lb"),
  9866. name: "Front (Fat)",
  9867. image: {
  9868. source: "./media/characters/samantha-kruse/fat.svg",
  9869. extra: 2688 / 2561
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(5 + 9 / 12, "feet"),
  9877. default: true
  9878. }
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9883. {
  9884. back: {
  9885. height: math.unit(5 + 4 / 12, "feet"),
  9886. weight: math.unit(4963, "lb"),
  9887. name: "Back",
  9888. image: {
  9889. source: "./media/characters/amelia-rosie/back.svg",
  9890. extra: 1113 / 963,
  9891. bottom: 0.01
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Level 0",
  9898. height: math.unit(5 + 4 / 12, "feet")
  9899. },
  9900. {
  9901. name: "Level 1",
  9902. height: math.unit(164597, "feet"),
  9903. default: true
  9904. },
  9905. {
  9906. name: "Level 2",
  9907. height: math.unit(956243, "miles")
  9908. },
  9909. {
  9910. name: "Level 3",
  9911. height: math.unit(29421709423, "miles")
  9912. },
  9913. {
  9914. name: "Level 4",
  9915. height: math.unit(154, "lightyears")
  9916. },
  9917. {
  9918. name: "Level 5",
  9919. height: math.unit(4738272, "lightyears")
  9920. },
  9921. {
  9922. name: "Level 6",
  9923. height: math.unit(145787152896, "lightyears")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(5 + 11 / 12, "feet"),
  9932. weight: math.unit(65, "kg"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/rook-kitara/front.svg",
  9936. extra: 1347 / 1274,
  9937. bottom: 0.005
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Totally Unfair",
  9944. height: math.unit(1.8, "mm")
  9945. },
  9946. {
  9947. name: "Lap Rookie",
  9948. height: math.unit(1.4, "feet")
  9949. },
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(5 + 11 / 12, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "How Did This Happen",
  9957. height: math.unit(80, "miles")
  9958. }
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(7, "feet"),
  9966. weight: math.unit(300, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/pisces/front.svg",
  9970. extra: 2255 / 2115,
  9971. bottom: 0.03
  9972. }
  9973. },
  9974. back: {
  9975. height: math.unit(7, "feet"),
  9976. weight: math.unit(300, "lb"),
  9977. name: "Back",
  9978. image: {
  9979. source: "./media/characters/pisces/back.svg",
  9980. extra: 2146 / 2055,
  9981. bottom: 0.04
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(7, "feet"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Swimming Pool",
  9993. height: math.unit(12.2, "meters")
  9994. },
  9995. {
  9996. name: "Olympic Swimming Pool",
  9997. height: math.unit(56.3, "meters")
  9998. },
  9999. {
  10000. name: "Lake Superior",
  10001. height: math.unit(93900, "meters")
  10002. },
  10003. {
  10004. name: "Mediterranean Sea",
  10005. height: math.unit(644457, "meters")
  10006. },
  10007. {
  10008. name: "World's Oceans",
  10009. height: math.unit(4567491, "meters")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(2.3, "meters"),
  10018. weight: math.unit(120, "kg"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/zelas/front.svg"
  10022. }
  10023. },
  10024. side: {
  10025. height: math.unit(2.3, "meters"),
  10026. weight: math.unit(120, "kg"),
  10027. name: "Side",
  10028. image: {
  10029. source: "./media/characters/zelas/side.svg"
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(2.3, "meters"),
  10034. weight: math.unit(120, "kg"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/zelas/back.svg"
  10038. }
  10039. },
  10040. foot: {
  10041. height: math.unit(1.116, "feet"),
  10042. name: "Foot",
  10043. image: {
  10044. source: "./media/characters/zelas/foot.svg"
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(2.3, "meters")
  10052. },
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(30, "meters"),
  10056. default: true
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(1, "inch"),
  10065. weight: math.unit(0.21, "grams"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/talbot/front.svg",
  10069. extra: 594 / 544
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Micro",
  10076. height: math.unit(1, "inch"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10083. {
  10084. front: {
  10085. height: math.unit(3 + 3 / 12, "feet"),
  10086. weight: math.unit(51.8, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/fliss/front.svg",
  10090. extra: 840 / 640
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Teeny Tiny",
  10097. height: math.unit(1, "mm")
  10098. },
  10099. {
  10100. name: "Small",
  10101. height: math.unit(1, "inch"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Standard Sylveon",
  10106. height: math.unit(3 + 3 / 12, "feet")
  10107. },
  10108. {
  10109. name: "Large Nuisance",
  10110. height: math.unit(33, "feet")
  10111. },
  10112. {
  10113. name: "City Filler",
  10114. height: math.unit(3000, "feet")
  10115. },
  10116. {
  10117. name: "New Horizon",
  10118. height: math.unit(6000, "miles")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(5, "cm"),
  10127. weight: math.unit(1.94, "g"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/fleta/front.svg",
  10131. extra: 835 / 803
  10132. }
  10133. },
  10134. back: {
  10135. height: math.unit(5, "cm"),
  10136. weight: math.unit(1.94, "g"),
  10137. name: "Back",
  10138. image: {
  10139. source: "./media/characters/fleta/back.svg",
  10140. extra: 835 / 803
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Micro",
  10147. height: math.unit(5, "cm"),
  10148. default: true
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6, "feet"),
  10157. weight: math.unit(225, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/dominic/front.svg",
  10161. extra: 1770 / 1620,
  10162. bottom: 0.025
  10163. }
  10164. },
  10165. back: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(225, "lb"),
  10168. name: "Back",
  10169. image: {
  10170. source: "./media/characters/dominic/back.svg",
  10171. extra: 1745 / 1620,
  10172. bottom: 0.065
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Nano",
  10179. height: math.unit(0.1, "mm")
  10180. },
  10181. {
  10182. name: "Micro-",
  10183. height: math.unit(1, "mm")
  10184. },
  10185. {
  10186. name: "Micro",
  10187. height: math.unit(4, "inches")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(6 + 4 / 12, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(115, "feet")
  10197. },
  10198. {
  10199. name: "Macro+",
  10200. height: math.unit(955, "feet")
  10201. },
  10202. {
  10203. name: "Megamacro",
  10204. height: math.unit(8990, "feet")
  10205. },
  10206. {
  10207. name: "Gigmacro",
  10208. height: math.unit(9310, "miles")
  10209. },
  10210. {
  10211. name: "Teramacro",
  10212. height: math.unit(1567005010, "miles")
  10213. },
  10214. {
  10215. name: "Examacro",
  10216. height: math.unit(1425, "parsecs")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10222. {
  10223. front: {
  10224. height: math.unit(400, "feet"),
  10225. weight: math.unit(44444444, "lb"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/major-colonel/front.svg"
  10229. }
  10230. },
  10231. back: {
  10232. height: math.unit(400, "feet"),
  10233. weight: math.unit(44444444, "lb"),
  10234. name: "Back",
  10235. image: {
  10236. source: "./media/characters/major-colonel/back.svg"
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(400, "feet"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10250. {
  10251. catFront: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(120, "lb"),
  10254. name: "Front (Cat Side)",
  10255. image: {
  10256. source: "./media/characters/axel-lycan/cat-front.svg",
  10257. extra: 430 / 402,
  10258. bottom: 43 / 472.35
  10259. }
  10260. },
  10261. catBack: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Back (Cat Side)",
  10265. image: {
  10266. source: "./media/characters/axel-lycan/cat-back.svg",
  10267. extra: 447 / 419,
  10268. bottom: 23.3 / 469
  10269. }
  10270. },
  10271. wolfFront: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Front (Wolf Side)",
  10275. image: {
  10276. source: "./media/characters/axel-lycan/wolf-front.svg",
  10277. extra: 485 / 456,
  10278. bottom: 19 / 504
  10279. }
  10280. },
  10281. wolfBack: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Back (Wolf Side)",
  10285. image: {
  10286. source: "./media/characters/axel-lycan/wolf-back.svg",
  10287. extra: 475 / 438,
  10288. bottom: 39.2 / 514
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Macro",
  10295. height: math.unit(1, "km"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(5 + 9 / 12, "feet"),
  10305. weight: math.unit(175, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/vanrel-hyena/front.svg",
  10309. extra: 1086 / 1010,
  10310. bottom: 0.04
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(5 + 9 / 12, "feet"),
  10318. default: true
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(103, "lb"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/abbott-absol/front.svg",
  10331. extra: 2010 / 1842
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Megamicro",
  10338. height: math.unit(0.1, "mm")
  10339. },
  10340. {
  10341. name: "Micro",
  10342. height: math.unit(1, "inch")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(6, "feet"),
  10347. default: true
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(264, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/hector/front.svg",
  10360. extra: 2280 / 2130,
  10361. bottom: 0.07
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(12.25, "foot"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(160, "feet")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/sal/front.svg",
  10386. extra: 1846 / 1699,
  10387. bottom: 0.04
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Megamacro",
  10394. height: math.unit(10, "miles"),
  10395. default: true
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10401. {
  10402. front: {
  10403. height: math.unit(3, "meters"),
  10404. weight: math.unit(450, "kg"),
  10405. name: "front",
  10406. image: {
  10407. source: "./media/characters/ranger/front.svg",
  10408. extra: 2401 / 2243,
  10409. bottom: 0.05
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(3, "meters"),
  10417. default: true
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(14, "feet"),
  10426. weight: math.unit(800, "kg"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/theresa/front.svg",
  10430. extra: 3575 / 3346,
  10431. bottom: 0.03
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(14, "feet"),
  10439. default: true
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10445. {
  10446. front: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(3, "kg"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/ine/front.svg",
  10452. extra: 678 / 539,
  10453. bottom: 0.023
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(2.265, "feet"),
  10461. default: true
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(5, "feet"),
  10470. weight: math.unit(30, "kg"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/vial/front.svg",
  10474. extra: 1365 / 1277,
  10475. bottom: 0.04
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(5, "feet"),
  10483. default: true
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10489. {
  10490. side: {
  10491. height: math.unit(3.4, "meters"),
  10492. weight: math.unit(1000, "lb"),
  10493. name: "Side",
  10494. image: {
  10495. source: "./media/characters/rovoska/side.svg",
  10496. extra: 4403 / 1515
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(3.4, "meters"),
  10504. default: true
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(8, "feet"),
  10513. weight: math.unit(315, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/gunner-rotthbauer/front.svg"
  10517. }
  10518. },
  10519. back: {
  10520. height: math.unit(8, "feet"),
  10521. weight: math.unit(315, "lb"),
  10522. name: "Back",
  10523. image: {
  10524. source: "./media/characters/gunner-rotthbauer/back.svg"
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Micro",
  10531. height: math.unit(3.5, "inches")
  10532. },
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(8, "feet"),
  10536. default: true
  10537. },
  10538. {
  10539. name: "Macro",
  10540. height: math.unit(250, "feet")
  10541. },
  10542. {
  10543. name: "Megamacro",
  10544. height: math.unit(1, "AU")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(5 + 5 / 12, "feet"),
  10553. weight: math.unit(140, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/allatia/front.svg",
  10557. extra: 1227 / 1180,
  10558. bottom: 0.027
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(5 + 5 / 12, "feet")
  10566. },
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(250, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(8, "miles")
  10575. }
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(120, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/tene/front.svg",
  10587. extra: 814/750,
  10588. bottom: 36/850
  10589. }
  10590. },
  10591. stomping: {
  10592. height: math.unit(2.025, "meters"),
  10593. weight: math.unit(120, "lb"),
  10594. name: "Stomping",
  10595. image: {
  10596. source: "./media/characters/tene/stomping.svg",
  10597. extra: 885/821,
  10598. bottom: 15/900
  10599. }
  10600. },
  10601. sitting: {
  10602. height: math.unit(1, "meter"),
  10603. weight: math.unit(120, "lb"),
  10604. name: "Sitting",
  10605. image: {
  10606. source: "./media/characters/tene/sitting.svg",
  10607. extra: 396/366,
  10608. bottom: 79/475
  10609. }
  10610. },
  10611. smiling: {
  10612. height: math.unit(1.2, "feet"),
  10613. name: "Smiling",
  10614. image: {
  10615. source: "./media/characters/tene/smiling.svg",
  10616. extra: 1364/1071,
  10617. bottom: 0/1364
  10618. }
  10619. },
  10620. smug: {
  10621. height: math.unit(1.3, "feet"),
  10622. name: "Smug",
  10623. image: {
  10624. source: "./media/characters/tene/smug.svg",
  10625. extra: 1323/1082,
  10626. bottom: 0/1323
  10627. }
  10628. },
  10629. feral: {
  10630. height: math.unit(3.9, "feet"),
  10631. weight: math.unit(250, "lb"),
  10632. name: "Feral",
  10633. image: {
  10634. source: "./media/characters/tene/feral.svg",
  10635. extra: 717 / 458,
  10636. bottom: 0.179
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(6, "feet")
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(300, "feet"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Megamacro",
  10652. height: math.unit(5, "miles")
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10658. {
  10659. side: {
  10660. height: math.unit(6, "feet"),
  10661. name: "Side",
  10662. image: {
  10663. source: "./media/characters/evander/side.svg",
  10664. extra: 877 / 477
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(0.83, "meters"),
  10672. default: true
  10673. },
  10674. ]
  10675. ))
  10676. characterMakers.push(() => makeCharacter(
  10677. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10678. {
  10679. front: {
  10680. height: math.unit(12, "feet"),
  10681. weight: math.unit(1000, "lb"),
  10682. name: "Front",
  10683. image: {
  10684. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10685. extra: 1762 / 1611
  10686. }
  10687. },
  10688. back: {
  10689. height: math.unit(12, "feet"),
  10690. weight: math.unit(1000, "lb"),
  10691. name: "Back",
  10692. image: {
  10693. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10694. extra: 1762 / 1611
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(12, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Kaiju",
  10706. height: math.unit(150, "feet")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/zero-alurus/front.svg"
  10719. }
  10720. },
  10721. back: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/zero-alurus/back.svg"
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(5 + 10 / 12, "feet")
  10734. },
  10735. {
  10736. name: "Macro",
  10737. height: math.unit(60, "feet"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Macro+",
  10742. height: math.unit(450, "feet")
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(200, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/mega-shi/front.svg",
  10755. extra: 1279 / 1250,
  10756. bottom: 0.02
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(200, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/mega-shi/back.svg",
  10765. extra: 1279 / 1250,
  10766. bottom: 0.02
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Micro",
  10773. height: math.unit(16 + 6 / 12, "feet")
  10774. },
  10775. {
  10776. name: "Third Dimension",
  10777. height: math.unit(40, "meters")
  10778. },
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(660, "feet"),
  10782. default: true
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(10, "miles")
  10787. },
  10788. {
  10789. name: "Planetary Launch",
  10790. height: math.unit(500, "miles")
  10791. },
  10792. {
  10793. name: "Interstellar",
  10794. height: math.unit(1e9, "miles")
  10795. },
  10796. {
  10797. name: "Leaving the Universe",
  10798. height: math.unit(1, "gigaparsec")
  10799. },
  10800. {
  10801. name: "Travelling Universes",
  10802. height: math.unit(30e15, "parsecs")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(5 + 4/12, "feet"),
  10811. weight: math.unit(120, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/odyssey/front.svg",
  10815. extra: 1747/1571,
  10816. bottom: 47/1794
  10817. }
  10818. },
  10819. side: {
  10820. height: math.unit(5.1, "feet"),
  10821. weight: math.unit(120, "lb"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/odyssey/side.svg",
  10825. extra: 1847/1619,
  10826. bottom: 47/1894
  10827. }
  10828. },
  10829. lounging: {
  10830. height: math.unit(1.464, "feet"),
  10831. weight: math.unit(120, "lb"),
  10832. name: "Lounging",
  10833. image: {
  10834. source: "./media/characters/odyssey/lounging.svg",
  10835. extra: 1235/837,
  10836. bottom: 551/1786
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(5 + 4 / 12, "feet")
  10844. },
  10845. {
  10846. name: "Macro",
  10847. height: math.unit(1, "km")
  10848. },
  10849. {
  10850. name: "Megamacro",
  10851. height: math.unit(3000, "km")
  10852. },
  10853. {
  10854. name: "Gigamacro",
  10855. height: math.unit(1, "AU"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Omniversal",
  10860. height: math.unit(100e14, "lightyears")
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(300, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/mekuto/front.svg",
  10873. extra: 921 / 832,
  10874. bottom: 0.03
  10875. }
  10876. },
  10877. hand: {
  10878. height: math.unit(6 / 10.24, "feet"),
  10879. name: "Hand",
  10880. image: {
  10881. source: "./media/characters/mekuto/hand.svg"
  10882. }
  10883. },
  10884. foot: {
  10885. height: math.unit(6 / 5.05, "feet"),
  10886. name: "Foot",
  10887. image: {
  10888. source: "./media/characters/mekuto/foot.svg"
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Minimicro",
  10895. height: math.unit(0.2, "inches")
  10896. },
  10897. {
  10898. name: "Micro",
  10899. height: math.unit(1.5, "inches")
  10900. },
  10901. {
  10902. name: "Normal",
  10903. height: math.unit(5 + 11 / 12, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Minimacro",
  10908. height: math.unit(17 + 9 / 12, "feet")
  10909. },
  10910. {
  10911. name: "Macro",
  10912. height: math.unit(177.5, "feet")
  10913. },
  10914. {
  10915. name: "Megamacro",
  10916. height: math.unit(152, "miles")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(6.5, "inches"),
  10925. weight: math.unit(13, "oz"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/dafydd-tomos/front.svg",
  10929. extra: 2990 / 2603,
  10930. bottom: 0.03
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(6.5, "inches"),
  10938. default: true
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(150, "lb"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/splinter/front.svg",
  10951. extra: 2990 / 2882,
  10952. bottom: 0.04
  10953. }
  10954. },
  10955. back: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Back",
  10959. image: {
  10960. source: "./media/characters/splinter/back.svg",
  10961. extra: 2990 / 2882,
  10962. bottom: 0.04
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(6, "feet")
  10970. },
  10971. {
  10972. name: "Macro",
  10973. height: math.unit(230, "meters"),
  10974. default: true
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(4 + 10 / 12, "feet"),
  10983. weight: math.unit(480, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/snow-gabumon/front.svg",
  10987. extra: 1140 / 963,
  10988. bottom: 0.058
  10989. }
  10990. },
  10991. back: {
  10992. height: math.unit(4 + 10 / 12, "feet"),
  10993. weight: math.unit(480, "lb"),
  10994. name: "Back",
  10995. image: {
  10996. source: "./media/characters/snow-gabumon/back.svg",
  10997. extra: 1115 / 962,
  10998. bottom: 0.041
  10999. }
  11000. },
  11001. frontUndresed: {
  11002. height: math.unit(4 + 10 / 12, "feet"),
  11003. weight: math.unit(480, "lb"),
  11004. name: "Front (Undressed)",
  11005. image: {
  11006. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11007. extra: 1061 / 960,
  11008. bottom: 0.045
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(1, "inch")
  11016. },
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(4 + 10 / 12, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(200, "feet")
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(120, "miles")
  11029. },
  11030. {
  11031. name: "Gigamacro",
  11032. height: math.unit(9800, "miles")
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(1.7, "meters"),
  11041. weight: math.unit(140, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/moody/front.svg",
  11045. extra: 3226 / 3007,
  11046. bottom: 0.087
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Micro",
  11053. height: math.unit(1, "mm")
  11054. },
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(1.7, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(80, "meters")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(500, "meters")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/zyas/front.svg",
  11079. extra: 1180 / 1120,
  11080. bottom: 0.045
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(10, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(500, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(5, "miles")
  11097. },
  11098. {
  11099. name: "Teramacro",
  11100. height: math.unit(150000, "miles")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(150, "lb"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/cuon/front.svg",
  11113. extra: 1390 / 1320,
  11114. bottom: 0.008
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Micro",
  11121. height: math.unit(3, "inches")
  11122. },
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(18 + 9 / 12, "feet"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(360, "feet")
  11131. },
  11132. {
  11133. name: "Megamacro",
  11134. height: math.unit(360, "miles")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(2.4, "meters"),
  11143. weight: math.unit(70, "kg"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/nyanuxk/front.svg",
  11147. extra: 1172 / 1084,
  11148. bottom: 0.065
  11149. }
  11150. },
  11151. side: {
  11152. height: math.unit(2.4, "meters"),
  11153. weight: math.unit(70, "kg"),
  11154. name: "Side",
  11155. image: {
  11156. source: "./media/characters/nyanuxk/side.svg",
  11157. extra: 1190 / 1132,
  11158. bottom: 0.007
  11159. }
  11160. },
  11161. back: {
  11162. height: math.unit(2.4, "meters"),
  11163. weight: math.unit(70, "kg"),
  11164. name: "Back",
  11165. image: {
  11166. source: "./media/characters/nyanuxk/back.svg",
  11167. extra: 1200 / 1141,
  11168. bottom: 0.015
  11169. }
  11170. },
  11171. foot: {
  11172. height: math.unit(0.52, "meters"),
  11173. name: "Foot",
  11174. image: {
  11175. source: "./media/characters/nyanuxk/foot.svg"
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Micro",
  11182. height: math.unit(2, "cm")
  11183. },
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(2.4, "meters"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Smaller Macro",
  11191. height: math.unit(120, "meters")
  11192. },
  11193. {
  11194. name: "Bigger Macro",
  11195. height: math.unit(1.2, "km")
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(15, "kilometers")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(2000, "km")
  11204. },
  11205. {
  11206. name: "Teramacro",
  11207. height: math.unit(500000, "km")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11213. {
  11214. side: {
  11215. height: math.unit(6, "feet"),
  11216. name: "Side",
  11217. image: {
  11218. source: "./media/characters/ailbhe/side.svg",
  11219. extra: 757 / 464,
  11220. bottom: 0.041
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(1.07, "meters"),
  11228. default: true
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(120, "kg"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/zevulfius/front.svg",
  11241. extra: 965 / 903
  11242. }
  11243. },
  11244. side: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(120, "kg"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/zevulfius/side.svg",
  11250. extra: 939 / 900
  11251. }
  11252. },
  11253. back: {
  11254. height: math.unit(6, "feet"),
  11255. weight: math.unit(120, "kg"),
  11256. name: "Back",
  11257. image: {
  11258. source: "./media/characters/zevulfius/back.svg",
  11259. extra: 918 / 854,
  11260. bottom: 0.005
  11261. }
  11262. },
  11263. foot: {
  11264. height: math.unit(6 / 3.72, "feet"),
  11265. name: "Foot",
  11266. image: {
  11267. source: "./media/characters/zevulfius/foot.svg"
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(750, "meters")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(20, "km"),
  11279. default: true
  11280. },
  11281. {
  11282. name: "Gigamacro",
  11283. height: math.unit(2000, "km")
  11284. },
  11285. {
  11286. name: "Teramacro",
  11287. height: math.unit(250000, "km")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(100, "feet"),
  11296. weight: math.unit(350, "kg"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/rikes/front.svg",
  11300. extra: 1565 / 1483,
  11301. bottom: 0.017
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Macro",
  11308. height: math.unit(100, "feet"),
  11309. default: true
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(8, "feet"),
  11318. weight: math.unit(356, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/adam-silver-mane/front.svg",
  11322. extra: 1036/937,
  11323. bottom: 63/1099
  11324. }
  11325. },
  11326. side: {
  11327. height: math.unit(8, "feet"),
  11328. weight: math.unit(356, "lb"),
  11329. name: "Side",
  11330. image: {
  11331. source: "./media/characters/adam-silver-mane/side.svg",
  11332. extra: 997/901,
  11333. bottom: 59/1056
  11334. }
  11335. },
  11336. frontNsfw: {
  11337. height: math.unit(8, "feet"),
  11338. weight: math.unit(356, "lb"),
  11339. name: "Front (NSFW)",
  11340. image: {
  11341. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11342. extra: 1036/937,
  11343. bottom: 63/1099
  11344. }
  11345. },
  11346. sideNsfw: {
  11347. height: math.unit(8, "feet"),
  11348. weight: math.unit(356, "lb"),
  11349. name: "Side (NSFW)",
  11350. image: {
  11351. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11352. extra: 997/901,
  11353. bottom: 59/1056
  11354. }
  11355. },
  11356. dick: {
  11357. height: math.unit(2.1, "feet"),
  11358. name: "Dick",
  11359. image: {
  11360. source: "./media/characters/adam-silver-mane/dick.svg"
  11361. }
  11362. },
  11363. taur: {
  11364. height: math.unit(16, "feet"),
  11365. weight: math.unit(1500, "kg"),
  11366. name: "Taur",
  11367. image: {
  11368. source: "./media/characters/adam-silver-mane/taur.svg",
  11369. extra: 1713 / 1571,
  11370. bottom: 0.01
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet")
  11378. },
  11379. {
  11380. name: "Minimacro",
  11381. height: math.unit(80, "feet")
  11382. },
  11383. {
  11384. name: "MDA",
  11385. height: math.unit(80, "meters")
  11386. },
  11387. {
  11388. name: "Macro",
  11389. height: math.unit(800, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(8000, "feet")
  11395. },
  11396. {
  11397. name: "Gigamacro",
  11398. height: math.unit(800, "miles")
  11399. },
  11400. {
  11401. name: "Teramacro",
  11402. height: math.unit(80000, "miles")
  11403. },
  11404. {
  11405. name: "Celestial",
  11406. height: math.unit(8e6, "miles")
  11407. },
  11408. {
  11409. name: "Star Dragon",
  11410. height: math.unit(800000, "parsecs")
  11411. },
  11412. {
  11413. name: "Godly",
  11414. height: math.unit(800, "teraparsecs")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/ky'owin/front.svg",
  11427. extra: 3888 / 3068,
  11428. bottom: 0.015
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(6 + 8 / 12, "feet")
  11436. },
  11437. {
  11438. name: "Large",
  11439. height: math.unit(68, "feet")
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(132, "feet")
  11444. },
  11445. {
  11446. name: "Macro+",
  11447. height: math.unit(340, "feet")
  11448. },
  11449. {
  11450. name: "Macro++",
  11451. height: math.unit(680, "feet"),
  11452. default: true
  11453. },
  11454. {
  11455. name: "Megamacro",
  11456. height: math.unit(1, "mile")
  11457. },
  11458. {
  11459. name: "Megamacro+",
  11460. height: math.unit(10, "miles")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(4, "feet"),
  11469. weight: math.unit(50, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/mal/front.svg",
  11473. extra: 785 / 724,
  11474. bottom: 0.07
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Micro",
  11481. height: math.unit(4, "inches")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(4, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(200, "feet")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(150, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/jordan-deware/front.svg",
  11503. extra: 1191 / 1012
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Nano",
  11510. height: math.unit(0.01, "mm")
  11511. },
  11512. {
  11513. name: "Minimicro",
  11514. height: math.unit(1, "mm")
  11515. },
  11516. {
  11517. name: "Micro",
  11518. height: math.unit(0.5, "inches")
  11519. },
  11520. {
  11521. name: "Normal",
  11522. height: math.unit(4, "feet"),
  11523. default: true
  11524. },
  11525. {
  11526. name: "Minimacro",
  11527. height: math.unit(40, "meters")
  11528. },
  11529. {
  11530. name: "Small Macro",
  11531. height: math.unit(400, "meters")
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(4, "miles")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(40, "miles")
  11540. },
  11541. {
  11542. name: "Megamacro+",
  11543. height: math.unit(400, "miles")
  11544. },
  11545. {
  11546. name: "Gigamacro",
  11547. height: math.unit(400000, "miles")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11553. {
  11554. side: {
  11555. height: math.unit(6, "feet"),
  11556. weight: math.unit(150, "lb"),
  11557. name: "Side",
  11558. image: {
  11559. source: "./media/characters/kimiko/side.svg",
  11560. extra: 600 / 358
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(15, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(220, "feet")
  11573. },
  11574. {
  11575. name: "Macro+",
  11576. height: math.unit(1450, "feet")
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(11500, "feet")
  11581. },
  11582. {
  11583. name: "Gigamacro",
  11584. height: math.unit(9500, "miles")
  11585. },
  11586. {
  11587. name: "Teramacro",
  11588. height: math.unit(2208005005, "miles")
  11589. },
  11590. {
  11591. name: "Examacro",
  11592. height: math.unit(2750, "parsecs")
  11593. },
  11594. {
  11595. name: "Zettamacro",
  11596. height: math.unit(101500, "parsecs")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(70, "kg"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/andrew-sleepy/front.svg"
  11609. }
  11610. },
  11611. side: {
  11612. height: math.unit(6, "feet"),
  11613. weight: math.unit(70, "kg"),
  11614. name: "Side",
  11615. image: {
  11616. source: "./media/characters/andrew-sleepy/side.svg"
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Micro",
  11623. height: math.unit(1, "mm"),
  11624. default: true
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/judio/front.svg",
  11637. extra: 1258 / 1110
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(5 + 6 / 12, "feet")
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(1000, "feet"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Megamacro",
  11653. height: math.unit(10, "miles")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11659. {
  11660. frontDressed: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(68, "kg"),
  11663. name: "Front (Dressed)",
  11664. image: {
  11665. source: "./media/characters/nomaxice/front-dressed.svg",
  11666. extra: 1137/824,
  11667. bottom: 74/1211
  11668. }
  11669. },
  11670. frontShorts: {
  11671. height: math.unit(6, "feet"),
  11672. weight: math.unit(68, "kg"),
  11673. name: "Front (Shorts)",
  11674. image: {
  11675. source: "./media/characters/nomaxice/front-shorts.svg",
  11676. extra: 1137/824,
  11677. bottom: 74/1211
  11678. }
  11679. },
  11680. back: {
  11681. height: math.unit(6, "feet"),
  11682. weight: math.unit(68, "kg"),
  11683. name: "Back",
  11684. image: {
  11685. source: "./media/characters/nomaxice/back.svg",
  11686. extra: 822/786,
  11687. bottom: 39/861
  11688. }
  11689. },
  11690. hand: {
  11691. height: math.unit(0.565, "feet"),
  11692. name: "Hand",
  11693. image: {
  11694. source: "./media/characters/nomaxice/hand.svg"
  11695. }
  11696. },
  11697. foot: {
  11698. height: math.unit(1, "feet"),
  11699. name: "Foot",
  11700. image: {
  11701. source: "./media/characters/nomaxice/foot.svg"
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Micro",
  11708. height: math.unit(8, "cm")
  11709. },
  11710. {
  11711. name: "Norm",
  11712. height: math.unit(1.82, "m")
  11713. },
  11714. {
  11715. name: "Norm+",
  11716. height: math.unit(8.8, "feet"),
  11717. default: true
  11718. },
  11719. {
  11720. name: "Big",
  11721. height: math.unit(8, "meters")
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(18, "meters")
  11726. },
  11727. {
  11728. name: "Macro+",
  11729. height: math.unit(88, "meters")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(12, "feet"),
  11738. weight: math.unit(1.5, "tons"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/dydros/front.svg",
  11742. extra: 863 / 800,
  11743. bottom: 0.015
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(12, "feet"),
  11748. weight: math.unit(1.5, "tons"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/dydros/back.svg",
  11752. extra: 900 / 843,
  11753. bottom: 0.005
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(12, "feet"),
  11761. default: true
  11762. },
  11763. ]
  11764. ))
  11765. characterMakers.push(() => makeCharacter(
  11766. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11767. {
  11768. front: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(100, "kg"),
  11771. name: "Front",
  11772. image: {
  11773. source: "./media/characters/riggi/front.svg",
  11774. extra: 5787 / 5303
  11775. }
  11776. },
  11777. hyper: {
  11778. height: math.unit(6 * 5 / 3, "feet"),
  11779. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11780. name: "Hyper",
  11781. image: {
  11782. source: "./media/characters/riggi/hyper.svg",
  11783. extra: 3595 / 3485
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Small Macro",
  11790. height: math.unit(50, "feet")
  11791. },
  11792. {
  11793. name: "Default",
  11794. height: math.unit(200, "feet"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Loom",
  11799. height: math.unit(10000, "feet")
  11800. },
  11801. {
  11802. name: "Cruising Altitude",
  11803. height: math.unit(30000, "feet")
  11804. },
  11805. {
  11806. name: "Megamacro",
  11807. height: math.unit(100, "miles")
  11808. },
  11809. {
  11810. name: "Continent Sized",
  11811. height: math.unit(2800, "miles")
  11812. },
  11813. {
  11814. name: "Earth Sized",
  11815. height: math.unit(8000, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(6, "feet"),
  11824. weight: math.unit(250, "lb"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/alexi/front.svg",
  11828. extra: 3483 / 3291,
  11829. bottom: 0.04
  11830. }
  11831. },
  11832. back: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(250, "lb"),
  11835. name: "Back",
  11836. image: {
  11837. source: "./media/characters/alexi/back.svg",
  11838. extra: 3533 / 3356,
  11839. bottom: 0.021
  11840. }
  11841. },
  11842. frontTransforming: {
  11843. height: math.unit(8.58, "feet"),
  11844. weight: math.unit(1300, "lb"),
  11845. name: "Transforming",
  11846. image: {
  11847. source: "./media/characters/alexi/front-transforming.svg",
  11848. extra: 437 / 409,
  11849. bottom: 19 / 458.66
  11850. }
  11851. },
  11852. frontTransformed: {
  11853. height: math.unit(12.5, "feet"),
  11854. weight: math.unit(4000, "lb"),
  11855. name: "Transformed",
  11856. image: {
  11857. source: "./media/characters/alexi/front-transformed.svg",
  11858. extra: 639 / 614,
  11859. bottom: 30.55 / 671
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(14, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Minimacro",
  11871. height: math.unit(30, "meters")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(500, "meters")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(9000, "km")
  11880. },
  11881. {
  11882. name: "Teramacro",
  11883. height: math.unit(384000, "km")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(6, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/kayroo/front.svg",
  11896. extra: 1153 / 1038,
  11897. bottom: 0.06
  11898. }
  11899. },
  11900. foot: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Foot",
  11904. image: {
  11905. source: "./media/characters/kayroo/foot.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(8, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Minimacro",
  11917. height: math.unit(250, "feet")
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(2800, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(5200, "feet")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(27000, "feet")
  11930. },
  11931. {
  11932. name: "Omega",
  11933. height: math.unit(45000, "feet")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(18, "feet"),
  11942. weight: math.unit(5800, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/rhys/front.svg",
  11946. extra: 3386 / 3090,
  11947. bottom: 0.07
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(18, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Working Size",
  11959. height: math.unit(200, "feet")
  11960. },
  11961. {
  11962. name: "Demolition Size",
  11963. height: math.unit(2000, "feet")
  11964. },
  11965. {
  11966. name: "Maximum Licensed Size",
  11967. height: math.unit(5, "miles")
  11968. },
  11969. {
  11970. name: "Maximum Observed Size",
  11971. height: math.unit(10, "yottameters")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(250, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/toto/front.svg",
  11984. extra: 527 / 479,
  11985. bottom: 0.05
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Micro",
  11992. height: math.unit(3, "feet")
  11993. },
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(10, "feet")
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(150, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(1200, "feet")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "King", species: ["lion"], tags: ["anthro"] },
  12011. {
  12012. back: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/king/back.svg"
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(2, "inches")
  12025. },
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(8, "feet")
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(200, "feet"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Megamacro",
  12037. height: math.unit(50, "miles")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12043. {
  12044. front: {
  12045. height: math.unit(11, "feet"),
  12046. weight: math.unit(1400, "lb"),
  12047. name: "Front",
  12048. image: {
  12049. source: "./media/characters/cordite/front.svg",
  12050. extra: 1919/1827,
  12051. bottom: 40/1959
  12052. }
  12053. },
  12054. side: {
  12055. height: math.unit(11, "feet"),
  12056. weight: math.unit(1400, "lb"),
  12057. name: "Side",
  12058. image: {
  12059. source: "./media/characters/cordite/side.svg",
  12060. extra: 1908/1793,
  12061. bottom: 38/1946
  12062. }
  12063. },
  12064. back: {
  12065. height: math.unit(11, "feet"),
  12066. weight: math.unit(1400, "lb"),
  12067. name: "Back",
  12068. image: {
  12069. source: "./media/characters/cordite/back.svg",
  12070. extra: 1938/1837,
  12071. bottom: 10/1948
  12072. }
  12073. },
  12074. feral: {
  12075. height: math.unit(2, "feet"),
  12076. weight: math.unit(90, "lb"),
  12077. name: "Feral",
  12078. image: {
  12079. source: "./media/characters/cordite/feral.svg",
  12080. extra: 1260 / 755,
  12081. bottom: 0.05
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(11, "feet"),
  12089. default: true
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/pianostrong/front.svg",
  12102. extra: 6577 / 6254,
  12103. bottom: 0.02
  12104. }
  12105. },
  12106. side: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(150, "lb"),
  12109. name: "Side",
  12110. image: {
  12111. source: "./media/characters/pianostrong/side.svg",
  12112. extra: 6106 / 5730
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(150, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/pianostrong/back.svg",
  12121. extra: 6085 / 5733,
  12122. bottom: 0.01
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(100, "feet")
  12130. },
  12131. {
  12132. name: "Macro+",
  12133. height: math.unit(300, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Macro++",
  12138. height: math.unit(1000, "feet")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/kona/front.svg",
  12151. extra: 2960 / 2629,
  12152. bottom: 0.005
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(11 + 8 / 12, "feet")
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(850, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Macro+",
  12168. height: math.unit(1.5, "km"),
  12169. default: true
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(80, "miles")
  12174. },
  12175. {
  12176. name: "Gigamacro",
  12177. height: math.unit(3500, "miles")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12183. {
  12184. side: {
  12185. height: math.unit(1.9, "meters"),
  12186. weight: math.unit(326, "kg"),
  12187. name: "Side",
  12188. image: {
  12189. source: "./media/characters/levi/side.svg",
  12190. extra: 1704 / 1334,
  12191. bottom: 0.02
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(1.9, "meters"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Macro",
  12203. height: math.unit(20, "meters")
  12204. },
  12205. {
  12206. name: "Macro+",
  12207. height: math.unit(200, "meters")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(2, "km")
  12212. },
  12213. {
  12214. name: "Megamacro+",
  12215. height: math.unit(20, "km")
  12216. },
  12217. {
  12218. name: "Gigamacro",
  12219. height: math.unit(2500, "km")
  12220. },
  12221. {
  12222. name: "Gigamacro+",
  12223. height: math.unit(120000, "km")
  12224. },
  12225. {
  12226. name: "Teramacro",
  12227. height: math.unit(7.77e6, "km")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12233. {
  12234. front: {
  12235. height: math.unit(6 + 4/12, "feet"),
  12236. weight: math.unit(190, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/bmc/front.svg",
  12240. extra: 1626/1472,
  12241. bottom: 79/1705
  12242. }
  12243. },
  12244. back: {
  12245. height: math.unit(6 + 4/12, "feet"),
  12246. weight: math.unit(190, "lb"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/bmc/back.svg",
  12250. extra: 1640/1479,
  12251. bottom: 45/1685
  12252. }
  12253. },
  12254. frontArmor: {
  12255. height: math.unit(6 + 4/12, "feet"),
  12256. weight: math.unit(190, "lb"),
  12257. name: "Front-armor",
  12258. image: {
  12259. source: "./media/characters/bmc/front-armor.svg",
  12260. extra: 1538/1468,
  12261. bottom: 79/1617
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Human-sized",
  12268. height: math.unit(6 + 4 / 12, "feet")
  12269. },
  12270. {
  12271. name: "Interactive Size",
  12272. height: math.unit(25, "feet")
  12273. },
  12274. {
  12275. name: "Small",
  12276. height: math.unit(250, "feet")
  12277. },
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(1250, "feet"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Good Day",
  12285. height: math.unit(88, "miles")
  12286. },
  12287. {
  12288. name: "Largest Measured Size",
  12289. height: math.unit(105.960, "galaxies")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(20, "feet"),
  12298. weight: math.unit(2016, "kg"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/sven-the-kaiju/front.svg",
  12302. extra: 1277/1250,
  12303. bottom: 35/1312
  12304. }
  12305. },
  12306. mouth: {
  12307. height: math.unit(1.85, "feet"),
  12308. name: "Mouth",
  12309. image: {
  12310. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Fairy",
  12317. height: math.unit(6, "inches")
  12318. },
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(20, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Rampage",
  12326. height: math.unit(200, "feet")
  12327. },
  12328. {
  12329. name: "Archfey Forest Guardian",
  12330. height: math.unit(1, "mile")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(4, "meters"),
  12339. weight: math.unit(2, "tons"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/marik/front.svg",
  12343. extra: 1057 / 1003,
  12344. bottom: 0.08
  12345. }
  12346. },
  12347. },
  12348. [
  12349. {
  12350. name: "Normal",
  12351. height: math.unit(4, "meters"),
  12352. default: true
  12353. },
  12354. {
  12355. name: "Macro",
  12356. height: math.unit(20, "meters")
  12357. },
  12358. {
  12359. name: "Megamacro",
  12360. height: math.unit(50, "km")
  12361. },
  12362. {
  12363. name: "Gigamacro",
  12364. height: math.unit(100, "km")
  12365. },
  12366. {
  12367. name: "Alpha Macro",
  12368. height: math.unit(7.88e7, "yottameters")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(110, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/mel/front.svg",
  12381. extra: 736 / 617,
  12382. bottom: 0.017
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Pico",
  12389. height: math.unit(3, "pm")
  12390. },
  12391. {
  12392. name: "Nano",
  12393. height: math.unit(3, "nm")
  12394. },
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(0.3, "mm"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Micro+",
  12402. height: math.unit(3, "mm")
  12403. },
  12404. {
  12405. name: "Normal",
  12406. height: math.unit(5 + 10.5 / 12, "feet")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12412. {
  12413. kaiju: {
  12414. height: math.unit(1.75, "meters"),
  12415. weight: math.unit(55, "kg"),
  12416. name: "Kaiju",
  12417. image: {
  12418. source: "./media/characters/lykonous/kaiju.svg",
  12419. extra: 1055 / 946,
  12420. bottom: 0.135
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(2.5, "meters"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Kaiju Dragon",
  12432. height: math.unit(60, "meters")
  12433. },
  12434. {
  12435. name: "Mega Kaiju",
  12436. height: math.unit(120, "km")
  12437. },
  12438. {
  12439. name: "Giga Kaiju",
  12440. height: math.unit(200, "megameters")
  12441. },
  12442. {
  12443. name: "Terra Kaiju",
  12444. height: math.unit(400, "gigameters")
  12445. },
  12446. {
  12447. name: "Kaiju Dragon God",
  12448. height: math.unit(13000, "exaparsecs")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/blü/front.svg",
  12461. extra: 1883 / 1564,
  12462. bottom: 0.031
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(13, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Big Boi",
  12474. height: math.unit(150, "meters")
  12475. },
  12476. {
  12477. name: "Mini Stomper",
  12478. height: math.unit(300, "meters")
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(1000, "meters")
  12483. },
  12484. {
  12485. name: "Megamacro",
  12486. height: math.unit(11000, "meters")
  12487. },
  12488. {
  12489. name: "Gigamacro",
  12490. height: math.unit(11000, "km")
  12491. },
  12492. {
  12493. name: "Teramacro",
  12494. height: math.unit(420000, "km")
  12495. },
  12496. {
  12497. name: "Examacro",
  12498. height: math.unit(120, "parsecs")
  12499. },
  12500. {
  12501. name: "God Tho",
  12502. height: math.unit(98000000000, "parsecs")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12508. {
  12509. taurFront: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(200, "lb"),
  12512. name: "Taur (Front)",
  12513. image: {
  12514. source: "./media/characters/scales/taur-front.svg",
  12515. extra: 1,
  12516. bottom: 0.05
  12517. }
  12518. },
  12519. taurBack: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(200, "lb"),
  12522. name: "Taur (Back)",
  12523. image: {
  12524. source: "./media/characters/scales/taur-back.svg",
  12525. extra: 1,
  12526. bottom: 0.08
  12527. }
  12528. },
  12529. anthro: {
  12530. height: math.unit(6 * 7 / 12, "feet"),
  12531. weight: math.unit(100, "lb"),
  12532. name: "Anthro",
  12533. image: {
  12534. source: "./media/characters/scales/anthro.svg",
  12535. extra: 1,
  12536. bottom: 0.06
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(12, "feet"),
  12544. default: true
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/koragos/front.svg",
  12557. extra: 841 / 794,
  12558. bottom: 0.035
  12559. }
  12560. },
  12561. back: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Back",
  12565. image: {
  12566. source: "./media/characters/koragos/back.svg",
  12567. extra: 841 / 810,
  12568. bottom: 0.022
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(6 + 11 / 12, "feet"),
  12576. default: true
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(490, "feet")
  12581. },
  12582. {
  12583. name: "Megamacro",
  12584. height: math.unit(10, "miles")
  12585. },
  12586. {
  12587. name: "Gigamacro",
  12588. height: math.unit(50, "miles")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(250, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/xylrem/front.svg",
  12601. extra: 3323 / 3050,
  12602. bottom: 0.065
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(4, "feet")
  12610. },
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(16, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(2720, "feet")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(25000, "miles")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(8, "feet"),
  12631. weight: math.unit(250, "kg"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/ikideru/front.svg",
  12635. extra: 930 / 870,
  12636. bottom: 0.087
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(8, "feet"),
  12641. weight: math.unit(250, "kg"),
  12642. name: "Back",
  12643. image: {
  12644. source: "./media/characters/ikideru/back.svg",
  12645. extra: 919 / 852,
  12646. bottom: 0.055
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Rare",
  12653. height: math.unit(8, "feet"),
  12654. default: true
  12655. },
  12656. {
  12657. name: "Playful Loom",
  12658. height: math.unit(80, "feet")
  12659. },
  12660. {
  12661. name: "City Leaner",
  12662. height: math.unit(230, "feet")
  12663. },
  12664. {
  12665. name: "Megamacro",
  12666. height: math.unit(2500, "feet")
  12667. },
  12668. {
  12669. name: "Gigamacro",
  12670. height: math.unit(26400, "feet")
  12671. },
  12672. {
  12673. name: "Tectonic Shifter",
  12674. height: math.unit(1.7, "megameters")
  12675. },
  12676. {
  12677. name: "Planet Carer",
  12678. height: math.unit(21, "megameters")
  12679. },
  12680. {
  12681. name: "God",
  12682. height: math.unit(11157.22, "parsecs")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(120, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/neo/front.svg"
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Micro",
  12701. height: math.unit(2, "inches"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Human Size",
  12706. height: math.unit(5 + 8 / 12, "feet")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(13 + 10 / 12, "feet"),
  12715. weight: math.unit(5320, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/chauncey-chantz/front.svg",
  12719. extra: 1587 / 1435,
  12720. bottom: 0.02
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Normal",
  12727. height: math.unit(13 + 10 / 12, "feet"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(45, "feet")
  12733. },
  12734. {
  12735. name: "Megamacro",
  12736. height: math.unit(250, "miles")
  12737. },
  12738. {
  12739. name: "Planetary",
  12740. height: math.unit(10000, "miles")
  12741. },
  12742. {
  12743. name: "Galactic",
  12744. height: math.unit(40000, "parsecs")
  12745. },
  12746. {
  12747. name: "Universal",
  12748. height: math.unit(1, "yottameter")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/epifox/front.svg",
  12761. extra: 1,
  12762. bottom: 0.075
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Micro",
  12769. height: math.unit(6, "inches")
  12770. },
  12771. {
  12772. name: "Normal",
  12773. height: math.unit(12, "feet"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Macro",
  12778. height: math.unit(3810, "feet")
  12779. },
  12780. {
  12781. name: "Megamacro",
  12782. height: math.unit(500, "miles")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(1.8796, "m"),
  12791. weight: math.unit(230, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/colin-t/front.svg",
  12795. extra: 1272 / 1193,
  12796. bottom: 0.07
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Micro",
  12803. height: math.unit(0.571, "meters")
  12804. },
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(1.8796, "meters"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Tall",
  12812. height: math.unit(4, "meters")
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(67.241, "meters")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(371.856, "meters")
  12821. },
  12822. {
  12823. name: "Planetary",
  12824. height: math.unit(12631.5689, "km")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(1.85, "meters"),
  12833. weight: math.unit(80, "kg"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/matvei/front.svg",
  12837. extra: 614 / 594,
  12838. bottom: 0.01
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(1.85, "meters"),
  12846. default: true
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(5 + 9 / 12, "feet"),
  12855. weight: math.unit(70, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/quincy/front.svg",
  12859. extra: 3041 / 2751
  12860. }
  12861. },
  12862. back: {
  12863. height: math.unit(5 + 9 / 12, "feet"),
  12864. weight: math.unit(70, "lb"),
  12865. name: "Back",
  12866. image: {
  12867. source: "./media/characters/quincy/back.svg",
  12868. extra: 3041 / 2751
  12869. }
  12870. },
  12871. flying: {
  12872. height: math.unit(5 + 4 / 12, "feet"),
  12873. weight: math.unit(70, "lb"),
  12874. name: "Flying",
  12875. image: {
  12876. source: "./media/characters/quincy/flying.svg",
  12877. extra: 1044 / 930
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Micro",
  12884. height: math.unit(3, "cm")
  12885. },
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(5 + 9 / 12, "feet")
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(200, "meters"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(1000, "meters")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(3 + 11/12, "feet"),
  12906. weight: math.unit(50, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/vanrel/front.svg",
  12910. extra: 1104/949,
  12911. bottom: 52/1156
  12912. }
  12913. },
  12914. back: {
  12915. height: math.unit(3 + 11/12, "feet"),
  12916. weight: math.unit(50, "lb"),
  12917. name: "Back",
  12918. image: {
  12919. source: "./media/characters/vanrel/back.svg",
  12920. extra: 1119/976,
  12921. bottom: 37/1156
  12922. }
  12923. },
  12924. tome: {
  12925. height: math.unit(1.35, "feet"),
  12926. weight: math.unit(10, "lb"),
  12927. name: "Vanrel's Tome",
  12928. rename: true,
  12929. image: {
  12930. source: "./media/characters/vanrel/tome.svg"
  12931. }
  12932. },
  12933. beans: {
  12934. height: math.unit(0.89, "feet"),
  12935. name: "Beans",
  12936. image: {
  12937. source: "./media/characters/vanrel/beans.svg"
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Normal",
  12944. height: math.unit(3 + 11/12, "feet"),
  12945. default: true
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12951. {
  12952. front: {
  12953. height: math.unit(7 + 5 / 12, "feet"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/kuiper-vanrel/front.svg",
  12957. extra: 1219/1169,
  12958. bottom: 69/1288
  12959. }
  12960. },
  12961. back: {
  12962. height: math.unit(7 + 5 / 12, "feet"),
  12963. name: "Back",
  12964. image: {
  12965. source: "./media/characters/kuiper-vanrel/back.svg",
  12966. extra: 1236/1193,
  12967. bottom: 27/1263
  12968. }
  12969. },
  12970. foot: {
  12971. height: math.unit(0.55, "meters"),
  12972. name: "Foot",
  12973. image: {
  12974. source: "./media/characters/kuiper-vanrel/foot.svg",
  12975. }
  12976. },
  12977. battle: {
  12978. height: math.unit(6.824, "feet"),
  12979. name: "Battle",
  12980. image: {
  12981. source: "./media/characters/kuiper-vanrel/battle.svg",
  12982. extra: 1466 / 1327,
  12983. bottom: 29 / 1492.5
  12984. }
  12985. },
  12986. meerkui: {
  12987. height: math.unit(18, "inches"),
  12988. name: "Meerkui",
  12989. image: {
  12990. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12991. extra: 1354/1289,
  12992. bottom: 69/1423
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Normal",
  12999. height: math.unit(7 + 5 / 12, "feet"),
  13000. default: true
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(8 + 5 / 12, "feet"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/keset-vanrel/front.svg",
  13012. extra: 1231/1148,
  13013. bottom: 82/1313
  13014. }
  13015. },
  13016. back: {
  13017. height: math.unit(8 + 5 / 12, "feet"),
  13018. name: "Back",
  13019. image: {
  13020. source: "./media/characters/keset-vanrel/back.svg",
  13021. extra: 1240/1174,
  13022. bottom: 33/1273
  13023. }
  13024. },
  13025. hand: {
  13026. height: math.unit(0.6, "meters"),
  13027. name: "Hand",
  13028. image: {
  13029. source: "./media/characters/keset-vanrel/hand.svg"
  13030. }
  13031. },
  13032. foot: {
  13033. height: math.unit(0.94978, "meters"),
  13034. name: "Foot",
  13035. image: {
  13036. source: "./media/characters/keset-vanrel/foot.svg"
  13037. }
  13038. },
  13039. battle: {
  13040. height: math.unit(7.408, "feet"),
  13041. name: "Battle",
  13042. image: {
  13043. source: "./media/characters/keset-vanrel/battle.svg",
  13044. extra: 1890 / 1386,
  13045. bottom: 73.28 / 1970
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(8 + 5 / 12, "feet"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/neos/front.svg",
  13066. extra: 1696 / 992,
  13067. bottom: 0.14
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(54, "cm"),
  13075. default: true
  13076. },
  13077. {
  13078. name: "Macro",
  13079. height: math.unit(100, "m")
  13080. },
  13081. {
  13082. name: "Megamacro",
  13083. height: math.unit(10, "km")
  13084. },
  13085. {
  13086. name: "Megamacro+",
  13087. height: math.unit(100, "km")
  13088. },
  13089. {
  13090. name: "Gigamacro",
  13091. height: math.unit(100, "Mm")
  13092. },
  13093. {
  13094. name: "Teramacro",
  13095. height: math.unit(100, "Gm")
  13096. },
  13097. {
  13098. name: "Examacro",
  13099. height: math.unit(100, "Em")
  13100. },
  13101. {
  13102. name: "Godly",
  13103. height: math.unit(10000, "Ym")
  13104. },
  13105. {
  13106. name: "Beyond Godly",
  13107. height: math.unit(25, "multiverses")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13113. {
  13114. feminine: {
  13115. height: math.unit(5, "feet"),
  13116. weight: math.unit(100, "lb"),
  13117. name: "Feminine",
  13118. image: {
  13119. source: "./media/characters/sammy-mouse/feminine.svg",
  13120. extra: 2526 / 2425,
  13121. bottom: 0.123
  13122. }
  13123. },
  13124. masculine: {
  13125. height: math.unit(5, "feet"),
  13126. weight: math.unit(100, "lb"),
  13127. name: "Masculine",
  13128. image: {
  13129. source: "./media/characters/sammy-mouse/masculine.svg",
  13130. extra: 2526 / 2425,
  13131. bottom: 0.123
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(5, "inches")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(5, "feet"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(60, "feet")
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(4, "feet"),
  13156. weight: math.unit(50, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/kole/front.svg",
  13160. extra: 1423 / 1303,
  13161. bottom: 0.025
  13162. }
  13163. },
  13164. back: {
  13165. height: math.unit(4, "feet"),
  13166. weight: math.unit(50, "lb"),
  13167. name: "Back",
  13168. image: {
  13169. source: "./media/characters/kole/back.svg",
  13170. extra: 1426 / 1280,
  13171. bottom: 0.02
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(4, "feet"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(2.5, "feet"),
  13188. weight: math.unit(32, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/rufran/front.svg",
  13192. extra: 1313/885,
  13193. bottom: 94/1407
  13194. }
  13195. },
  13196. side: {
  13197. height: math.unit(2.5, "feet"),
  13198. weight: math.unit(32, "lb"),
  13199. name: "Side",
  13200. image: {
  13201. source: "./media/characters/rufran/side.svg",
  13202. extra: 1109/852,
  13203. bottom: 118/1227
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(2.5, "feet"),
  13208. weight: math.unit(32, "lb"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/rufran/back.svg",
  13212. extra: 1280/878,
  13213. bottom: 131/1411
  13214. }
  13215. },
  13216. mouth: {
  13217. height: math.unit(1.13, "feet"),
  13218. name: "Mouth",
  13219. image: {
  13220. source: "./media/characters/rufran/mouth.svg"
  13221. }
  13222. },
  13223. foot: {
  13224. height: math.unit(1.33, "feet"),
  13225. name: "Foot",
  13226. image: {
  13227. source: "./media/characters/rufran/foot.svg"
  13228. }
  13229. },
  13230. koboldFront: {
  13231. height: math.unit(2 + 6 / 12, "feet"),
  13232. weight: math.unit(20, "lb"),
  13233. name: "Front (Kobold)",
  13234. image: {
  13235. source: "./media/characters/rufran/kobold-front.svg",
  13236. extra: 2041 / 1839,
  13237. bottom: 0.055
  13238. }
  13239. },
  13240. koboldBack: {
  13241. height: math.unit(2 + 6 / 12, "feet"),
  13242. weight: math.unit(20, "lb"),
  13243. name: "Back (Kobold)",
  13244. image: {
  13245. source: "./media/characters/rufran/kobold-back.svg",
  13246. extra: 2054 / 1839,
  13247. bottom: 0.01
  13248. }
  13249. },
  13250. koboldHand: {
  13251. height: math.unit(0.2166, "meters"),
  13252. name: "Hand (Kobold)",
  13253. image: {
  13254. source: "./media/characters/rufran/kobold-hand.svg"
  13255. }
  13256. },
  13257. koboldFoot: {
  13258. height: math.unit(0.185, "meters"),
  13259. name: "Foot (Kobold)",
  13260. image: {
  13261. source: "./media/characters/rufran/kobold-foot.svg"
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(1, "inch")
  13269. },
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(2 + 6 / 12, "feet"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Big",
  13277. height: math.unit(60, "feet")
  13278. },
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(325, "feet")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13287. {
  13288. front: {
  13289. height: math.unit(0.3, "meters"),
  13290. weight: math.unit(3.5, "kg"),
  13291. name: "Front",
  13292. image: {
  13293. source: "./media/characters/chip/front.svg",
  13294. extra: 748 / 674
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Micro",
  13301. height: math.unit(1, "inch"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13308. {
  13309. side: {
  13310. height: math.unit(2.3, "meters"),
  13311. weight: math.unit(3500, "lb"),
  13312. name: "Side",
  13313. image: {
  13314. source: "./media/characters/torvid/side.svg",
  13315. extra: 1972 / 722,
  13316. bottom: 0.035
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(2.3, "meters"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(2, "meters"),
  13333. weight: math.unit(150.5, "kg"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/susan/front.svg",
  13337. extra: 693 / 635,
  13338. bottom: 0.05
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(505, "miles"),
  13346. default: true
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(150, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/raindrops/front.svg",
  13359. extra: 2655 / 2461,
  13360. bottom: 49 / 2705
  13361. }
  13362. },
  13363. back: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/raindrops/back.svg",
  13369. extra: 2574 / 2400,
  13370. bottom: 65 / 2634
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Micro",
  13377. height: math.unit(6, "inches")
  13378. },
  13379. {
  13380. name: "Normal",
  13381. height: math.unit(6 + 2 / 12, "feet")
  13382. },
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(131, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Megamacro",
  13390. height: math.unit(15, "miles")
  13391. },
  13392. {
  13393. name: "Gigamacro",
  13394. height: math.unit(4000, "miles")
  13395. },
  13396. {
  13397. name: "Teramacro",
  13398. height: math.unit(315000, "miles")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(2.794, "meters"),
  13407. weight: math.unit(325, "kg"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/tezwa/front.svg",
  13411. extra: 2083 / 1906,
  13412. bottom: 0.031
  13413. }
  13414. },
  13415. foot: {
  13416. height: math.unit(0.687, "meters"),
  13417. name: "Foot",
  13418. image: {
  13419. source: "./media/characters/tezwa/foot.svg"
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(9 + 2 / 12, "feet"),
  13427. default: true
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(58, "feet"),
  13436. weight: math.unit(89000, "lb"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/typhus/front.svg",
  13440. extra: 816 / 800,
  13441. bottom: 0.065
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(58, "feet"),
  13449. default: true
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(12, "feet"),
  13458. weight: math.unit(6, "tonnes"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/lyra-von-wulf/front.svg",
  13462. extra: 1,
  13463. bottom: 0.10
  13464. }
  13465. },
  13466. frontMecha: {
  13467. height: math.unit(12, "feet"),
  13468. weight: math.unit(12, "tonnes"),
  13469. name: "Front (Mecha)",
  13470. image: {
  13471. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13472. extra: 1,
  13473. bottom: 0.042
  13474. }
  13475. },
  13476. maw: {
  13477. height: math.unit(2.2, "feet"),
  13478. name: "Maw",
  13479. image: {
  13480. source: "./media/characters/lyra-von-wulf/maw.svg"
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(12, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Classic",
  13492. height: math.unit(50, "feet")
  13493. },
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(500, "feet")
  13497. },
  13498. {
  13499. name: "Megamacro",
  13500. height: math.unit(1, "mile")
  13501. },
  13502. {
  13503. name: "Gigamacro",
  13504. height: math.unit(400, "miles")
  13505. },
  13506. {
  13507. name: "Teramacro",
  13508. height: math.unit(22000, "miles")
  13509. },
  13510. {
  13511. name: "Solarmacro",
  13512. height: math.unit(8600000, "miles")
  13513. },
  13514. {
  13515. name: "Galactic",
  13516. height: math.unit(1057000, "lightyears")
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6 + 10 / 12, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/dixon/front.svg",
  13529. extra: 3361 / 3209,
  13530. bottom: 0.01
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(6 + 10 / 12, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Big",
  13542. height: math.unit(12, "meters")
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(500, "meters")
  13547. },
  13548. {
  13549. name: "Megamacro",
  13550. height: math.unit(2, "km")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(185, "cm"),
  13559. weight: math.unit(68, "kg"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/kauko/front.svg",
  13563. extra: 1455 / 1421,
  13564. bottom: 0.03
  13565. }
  13566. },
  13567. back: {
  13568. height: math.unit(185, "cm"),
  13569. weight: math.unit(68, "kg"),
  13570. name: "Back",
  13571. image: {
  13572. source: "./media/characters/kauko/back.svg",
  13573. extra: 1455 / 1421,
  13574. bottom: 0.004
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(185, "cm"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "kg"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/varg/front.svg",
  13595. extra: 1108 / 1018,
  13596. bottom: 0.0375
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(5, "meters")
  13604. },
  13605. {
  13606. name: "Macro",
  13607. height: math.unit(200, "meters")
  13608. },
  13609. {
  13610. name: "Megamacro",
  13611. height: math.unit(20, "kilometers")
  13612. },
  13613. {
  13614. name: "True Size",
  13615. height: math.unit(211, "km"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Gigamacro",
  13620. height: math.unit(1000, "km")
  13621. },
  13622. {
  13623. name: "Gigamacro+",
  13624. height: math.unit(8000, "km")
  13625. },
  13626. {
  13627. name: "Teramacro",
  13628. height: math.unit(1000000, "km")
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(7 + 7 / 12, "feet"),
  13637. weight: math.unit(267, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/dayza/front.svg",
  13641. extra: 1262 / 1200,
  13642. bottom: 0.035
  13643. }
  13644. },
  13645. side: {
  13646. height: math.unit(7 + 7 / 12, "feet"),
  13647. weight: math.unit(267, "lb"),
  13648. name: "Side",
  13649. image: {
  13650. source: "./media/characters/dayza/side.svg",
  13651. extra: 1295 / 1245,
  13652. bottom: 0.05
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(7 + 7 / 12, "feet"),
  13657. weight: math.unit(267, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/dayza/back.svg",
  13661. extra: 1241 / 1170
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(7 + 7 / 12, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(155, "feet")
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(6 + 5 / 12, "feet"),
  13682. weight: math.unit(160, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/xanthos/front.svg",
  13686. extra: 1,
  13687. bottom: 0.04
  13688. }
  13689. },
  13690. back: {
  13691. height: math.unit(6 + 5 / 12, "feet"),
  13692. weight: math.unit(160, "lb"),
  13693. name: "Back",
  13694. image: {
  13695. source: "./media/characters/xanthos/back.svg",
  13696. extra: 1,
  13697. bottom: 0.03
  13698. }
  13699. },
  13700. hand: {
  13701. height: math.unit(0.928, "feet"),
  13702. name: "Hand",
  13703. image: {
  13704. source: "./media/characters/xanthos/hand.svg"
  13705. }
  13706. },
  13707. foot: {
  13708. height: math.unit(1.286, "feet"),
  13709. name: "Foot",
  13710. image: {
  13711. source: "./media/characters/xanthos/foot.svg"
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(6 + 5 / 12, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Normal+",
  13723. height: math.unit(6, "meters")
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(40, "feet")
  13728. },
  13729. {
  13730. name: "Macro+",
  13731. height: math.unit(200, "meters")
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(20, "km")
  13736. },
  13737. {
  13738. name: "Megamacro+",
  13739. height: math.unit(100, "km")
  13740. },
  13741. {
  13742. name: "Gigamacro",
  13743. height: math.unit(200, "megameters")
  13744. },
  13745. {
  13746. name: "Gigamacro+",
  13747. height: math.unit(1.5, "gigameters")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6 + 3 / 12, "feet"),
  13756. weight: math.unit(215, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/grynn/front.svg",
  13760. extra: 4627 / 4209,
  13761. bottom: 0.047
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Micro",
  13768. height: math.unit(6, "inches")
  13769. },
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(6 + 3 / 12, "feet"),
  13773. default: true
  13774. },
  13775. {
  13776. name: "Big",
  13777. height: math.unit(104, "feet")
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(944, "feet")
  13782. },
  13783. {
  13784. name: "Macro+",
  13785. height: math.unit(9480, "feet")
  13786. },
  13787. {
  13788. name: "Megamacro",
  13789. height: math.unit(78752, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro+",
  13793. height: math.unit(630128, "feet")
  13794. },
  13795. {
  13796. name: "Megamacro++",
  13797. height: math.unit(3150695, "feet")
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(7 + 5 / 12, "feet"),
  13806. weight: math.unit(450, "lb"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/mocha-aura/front.svg",
  13810. extra: 1907 / 1817,
  13811. bottom: 0.04
  13812. }
  13813. },
  13814. back: {
  13815. height: math.unit(7 + 5 / 12, "feet"),
  13816. weight: math.unit(450, "lb"),
  13817. name: "Back",
  13818. image: {
  13819. source: "./media/characters/mocha-aura/back.svg",
  13820. extra: 1900 / 1825,
  13821. bottom: 0.045
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Nano",
  13828. height: math.unit(1, "nm")
  13829. },
  13830. {
  13831. name: "Megamicro",
  13832. height: math.unit(1, "mm")
  13833. },
  13834. {
  13835. name: "Micro",
  13836. height: math.unit(3, "inches")
  13837. },
  13838. {
  13839. name: "Normal",
  13840. height: math.unit(7 + 5 / 12, "feet"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Macro",
  13845. height: math.unit(30, "feet")
  13846. },
  13847. {
  13848. name: "Megamacro",
  13849. height: math.unit(3500, "feet")
  13850. },
  13851. {
  13852. name: "Teramacro",
  13853. height: math.unit(500000, "miles")
  13854. },
  13855. {
  13856. name: "Petamacro",
  13857. height: math.unit(50000000000000000, "parsecs")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/ilisha-devya/front.svg",
  13870. extra: 1053/1049,
  13871. bottom: 270/1323
  13872. }
  13873. },
  13874. back: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Back",
  13878. image: {
  13879. source: "./media/characters/ilisha-devya/back.svg",
  13880. extra: 1131/1128,
  13881. bottom: 39/1170
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(500, "feet"),
  13889. default: true
  13890. },
  13891. {
  13892. name: "Megamacro",
  13893. height: math.unit(10, "miles")
  13894. },
  13895. {
  13896. name: "Gigamacro",
  13897. height: math.unit(100000, "miles")
  13898. },
  13899. {
  13900. name: "Examacro",
  13901. height: math.unit(1e9, "lightyears")
  13902. },
  13903. {
  13904. name: "Omniversal",
  13905. height: math.unit(1e33, "lightyears")
  13906. },
  13907. {
  13908. name: "Beyond Infinite",
  13909. height: math.unit(1e100, "lightyears")
  13910. },
  13911. ]
  13912. ))
  13913. characterMakers.push(() => makeCharacter(
  13914. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13915. {
  13916. Side: {
  13917. height: math.unit(6, "feet"),
  13918. weight: math.unit(150, "lb"),
  13919. name: "Side",
  13920. image: {
  13921. source: "./media/characters/mira/side.svg",
  13922. extra: 900 / 799,
  13923. bottom: 0.02
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Human Size",
  13930. height: math.unit(6, "feet")
  13931. },
  13932. {
  13933. name: "Macro",
  13934. height: math.unit(100, "feet"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Megamacro",
  13939. height: math.unit(10, "miles")
  13940. },
  13941. {
  13942. name: "Gigamacro",
  13943. height: math.unit(25000, "miles")
  13944. },
  13945. {
  13946. name: "Teramacro",
  13947. height: math.unit(300, "AU")
  13948. },
  13949. {
  13950. name: "Full Size",
  13951. height: math.unit(4.5e10, "lightyears")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(150, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/holly/front.svg",
  13964. extra: 639 / 606
  13965. }
  13966. },
  13967. back: {
  13968. height: math.unit(6, "feet"),
  13969. weight: math.unit(150, "lb"),
  13970. name: "Back",
  13971. image: {
  13972. source: "./media/characters/holly/back.svg",
  13973. extra: 623 / 598
  13974. }
  13975. },
  13976. frontWorking: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front (Working)",
  13980. image: {
  13981. source: "./media/characters/holly/front-working.svg",
  13982. extra: 607 / 577,
  13983. bottom: 0.048
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(12 + 3 / 12, "feet"),
  13991. default: true
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/porter/front.svg",
  14004. extra: 1,
  14005. bottom: 0.01
  14006. }
  14007. },
  14008. frontRobes: {
  14009. height: math.unit(6, "feet"),
  14010. weight: math.unit(150, "lb"),
  14011. name: "Front (Robes)",
  14012. image: {
  14013. source: "./media/characters/porter/front-robes.svg",
  14014. extra: 1.01,
  14015. bottom: 0.01
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(11 + 9 / 12, "feet"),
  14023. default: true
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14029. {
  14030. legendary: {
  14031. height: math.unit(6, "feet"),
  14032. weight: math.unit(150, "lb"),
  14033. name: "Legendary",
  14034. image: {
  14035. source: "./media/characters/lucy/legendary.svg",
  14036. extra: 1355 / 1100,
  14037. bottom: 0.045
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Legendary",
  14044. height: math.unit(86882 * 2, "miles"),
  14045. default: true
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(6, "feet"),
  14054. weight: math.unit(150, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/drusilla/front.svg",
  14058. extra: 678 / 635,
  14059. bottom: 0.03
  14060. }
  14061. },
  14062. back: {
  14063. height: math.unit(6, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Back",
  14066. image: {
  14067. source: "./media/characters/drusilla/back.svg",
  14068. extra: 678 / 635,
  14069. bottom: 0.005
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Macro",
  14076. height: math.unit(100, "feet")
  14077. },
  14078. {
  14079. name: "Canon Height",
  14080. height: math.unit(2000, "feet"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(6, "feet"),
  14090. weight: math.unit(180, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/renard-thatch/front.svg",
  14094. extra: 2411 / 2275,
  14095. bottom: 0.01
  14096. }
  14097. },
  14098. frontPosing: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(180, "lb"),
  14101. name: "Front (Posing)",
  14102. image: {
  14103. source: "./media/characters/renard-thatch/front-posing.svg",
  14104. extra: 2381 / 2261,
  14105. bottom: 0.01
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(180, "lb"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/renard-thatch/back.svg",
  14114. extra: 2428 / 2288
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Micro",
  14121. height: math.unit(3, "inches")
  14122. },
  14123. {
  14124. name: "Default",
  14125. height: math.unit(6, "feet"),
  14126. default: true
  14127. },
  14128. {
  14129. name: "Macro",
  14130. height: math.unit(75, "feet")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(1450, "feet"),
  14139. weight: math.unit(1.21e6, "tons"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/sekvra/front.svg",
  14143. extra: 1193/1190,
  14144. bottom: 78/1271
  14145. }
  14146. },
  14147. side: {
  14148. height: math.unit(1450, "feet"),
  14149. weight: math.unit(1.21e6, "tons"),
  14150. name: "Side",
  14151. image: {
  14152. source: "./media/characters/sekvra/side.svg",
  14153. extra: 1193/1190,
  14154. bottom: 52/1245
  14155. }
  14156. },
  14157. back: {
  14158. height: math.unit(1450, "feet"),
  14159. weight: math.unit(1.21e6, "tons"),
  14160. name: "Back",
  14161. image: {
  14162. source: "./media/characters/sekvra/back.svg",
  14163. extra: 1219/1216,
  14164. bottom: 21/1240
  14165. }
  14166. },
  14167. frontClothed: {
  14168. height: math.unit(1450, "feet"),
  14169. weight: math.unit(1.21e6, "tons"),
  14170. name: "Front (Clothed)",
  14171. image: {
  14172. source: "./media/characters/sekvra/front-clothed.svg",
  14173. extra: 1192/1189,
  14174. bottom: 79/1271
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Macro",
  14181. height: math.unit(1450, "feet"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(15000, "feet")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(150, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/carmine/front.svg",
  14199. extra: 1,
  14200. bottom: 0.035
  14201. }
  14202. },
  14203. frontArmor: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(150, "lb"),
  14206. name: "Front (Armor)",
  14207. image: {
  14208. source: "./media/characters/carmine/front-armor.svg",
  14209. extra: 1,
  14210. bottom: 0.035
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Large",
  14217. height: math.unit(1, "mile")
  14218. },
  14219. {
  14220. name: "Huge",
  14221. height: math.unit(40, "miles"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Colossal",
  14226. height: math.unit(2500, "miles")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/elyssia/front.svg",
  14239. extra: 2201 / 2035,
  14240. bottom: 0.05
  14241. }
  14242. },
  14243. frontClothed: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Front (Clothed)",
  14247. image: {
  14248. source: "./media/characters/elyssia/front-clothed.svg",
  14249. extra: 2201 / 2035,
  14250. bottom: 0.05
  14251. }
  14252. },
  14253. back: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(150, "lb"),
  14256. name: "Back",
  14257. image: {
  14258. source: "./media/characters/elyssia/back.svg",
  14259. extra: 2201 / 2035,
  14260. bottom: 0.013
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Smaller",
  14267. height: math.unit(150, "feet")
  14268. },
  14269. {
  14270. name: "Standard",
  14271. height: math.unit(1400, "feet"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Distracted",
  14276. height: math.unit(15000, "feet")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(7 + 4/12, "feet"),
  14285. weight: math.unit(690, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/geno-maxwell/front.svg",
  14289. extra: 984/856,
  14290. bottom: 87/1071
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(7 + 4/12, "feet"),
  14295. weight: math.unit(690, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/geno-maxwell/back.svg",
  14299. extra: 981/854,
  14300. bottom: 57/1038
  14301. }
  14302. },
  14303. frontCostume: {
  14304. height: math.unit(7 + 4/12, "feet"),
  14305. weight: math.unit(690, "lb"),
  14306. name: "Front (Costume)",
  14307. image: {
  14308. source: "./media/characters/geno-maxwell/front-costume.svg",
  14309. extra: 984/856,
  14310. bottom: 87/1071
  14311. }
  14312. },
  14313. backcostume: {
  14314. height: math.unit(7 + 4/12, "feet"),
  14315. weight: math.unit(690, "lb"),
  14316. name: "Back (Costume)",
  14317. image: {
  14318. source: "./media/characters/geno-maxwell/back-costume.svg",
  14319. extra: 981/854,
  14320. bottom: 57/1038
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Micro",
  14327. height: math.unit(3, "inches")
  14328. },
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(7 + 4 / 12, "feet"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(220, "feet")
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(11, "miles")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(7 + 4/12, "feet"),
  14349. weight: math.unit(750, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/regena-maxwell/front.svg",
  14353. extra: 984/856,
  14354. bottom: 87/1071
  14355. }
  14356. },
  14357. back: {
  14358. height: math.unit(7 + 4/12, "feet"),
  14359. weight: math.unit(750, "lb"),
  14360. name: "Back",
  14361. image: {
  14362. source: "./media/characters/regena-maxwell/back.svg",
  14363. extra: 981/854,
  14364. bottom: 57/1038
  14365. }
  14366. },
  14367. frontCostume: {
  14368. height: math.unit(7 + 4/12, "feet"),
  14369. weight: math.unit(750, "lb"),
  14370. name: "Front (Costume)",
  14371. image: {
  14372. source: "./media/characters/regena-maxwell/front-costume.svg",
  14373. extra: 984/856,
  14374. bottom: 87/1071
  14375. }
  14376. },
  14377. backcostume: {
  14378. height: math.unit(7 + 4/12, "feet"),
  14379. weight: math.unit(750, "lb"),
  14380. name: "Back (Costume)",
  14381. image: {
  14382. source: "./media/characters/regena-maxwell/back-costume.svg",
  14383. extra: 981/854,
  14384. bottom: 57/1038
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(7 + 4 / 12, "feet"),
  14392. default: true
  14393. },
  14394. {
  14395. name: "Macro",
  14396. height: math.unit(220, "feet")
  14397. },
  14398. {
  14399. name: "Megamacro",
  14400. height: math.unit(11, "miles")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  14413. extra: 860 / 690,
  14414. bottom: 0.03
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(1.7, "meters"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(150, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/quilly/front.svg",
  14435. extra: 890 / 776
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Gigamacro",
  14442. height: math.unit(404090, "miles"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(7 + 8 / 12, "feet"),
  14452. weight: math.unit(350, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/tempest/front.svg",
  14456. extra: 1175 / 1086,
  14457. bottom: 0.02
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(7 + 8 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14471. {
  14472. side: {
  14473. height: math.unit(4 + 5 / 12, "feet"),
  14474. weight: math.unit(80, "lb"),
  14475. name: "Side",
  14476. image: {
  14477. source: "./media/characters/rodger/side.svg",
  14478. extra: 1235 / 1118
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Micro",
  14485. height: math.unit(1, "inch")
  14486. },
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(4 + 5 / 12, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(120, "feet")
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(150, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/danyel/front.svg",
  14507. extra: 1185 / 1123,
  14508. bottom: 0.05
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Shrunken",
  14515. height: math.unit(0.5, "mm")
  14516. },
  14517. {
  14518. name: "Micro",
  14519. height: math.unit(1, "mm"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Upsized",
  14524. height: math.unit(5 + 5 / 12, "feet")
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(5 + 6 / 12, "feet"),
  14533. weight: math.unit(200, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/vivian-bijoux/front.svg",
  14537. extra: 1217/1209,
  14538. bottom: 76/1293
  14539. }
  14540. },
  14541. back: {
  14542. height: math.unit(5 + 6 / 12, "feet"),
  14543. weight: math.unit(200, "lb"),
  14544. name: "Back",
  14545. image: {
  14546. source: "./media/characters/vivian-bijoux/back.svg",
  14547. extra: 1214/1208,
  14548. bottom: 51/1265
  14549. }
  14550. },
  14551. dressed: {
  14552. height: math.unit(5 + 6 / 12, "feet"),
  14553. weight: math.unit(200, "lb"),
  14554. name: "Dressed",
  14555. image: {
  14556. source: "./media/characters/vivian-bijoux/dressed.svg",
  14557. extra: 1217/1209,
  14558. bottom: 76/1293
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(5 + 6 / 12, "feet"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Bad Dream",
  14570. height: math.unit(500, "feet")
  14571. },
  14572. {
  14573. name: "Nightmare",
  14574. height: math.unit(500, "miles")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(6 + 1 / 12, "feet"),
  14583. weight: math.unit(260, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/zeta/front.svg",
  14587. extra: 1968 / 1889,
  14588. bottom: 0.06
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(6 + 1 / 12, "feet"),
  14593. weight: math.unit(260, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/zeta/back.svg",
  14597. extra: 1944 / 1858,
  14598. bottom: 0.03
  14599. }
  14600. },
  14601. hand: {
  14602. height: math.unit(1.112, "feet"),
  14603. name: "Hand",
  14604. image: {
  14605. source: "./media/characters/zeta/hand.svg"
  14606. }
  14607. },
  14608. foot: {
  14609. height: math.unit(1.48, "feet"),
  14610. name: "Foot",
  14611. image: {
  14612. source: "./media/characters/zeta/foot.svg"
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(6, "inches")
  14620. },
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(6 + 1 / 12, "feet"),
  14624. default: true
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(20, "feet")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/jamie-larsen/front.svg",
  14641. extra: 962 / 933,
  14642. bottom: 0.02
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/jamie-larsen/back.svg",
  14651. extra: 997 / 946
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(28 + 7 / 12, "feet"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Macro+",
  14663. height: math.unit(180, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(10, "miles")
  14668. },
  14669. {
  14670. name: "Gigamacro",
  14671. height: math.unit(200000, "miles")
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(120, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/vance/front.svg",
  14684. extra: 1980 / 1890,
  14685. bottom: 0.09
  14686. }
  14687. },
  14688. back: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(120, "lb"),
  14691. name: "Back",
  14692. image: {
  14693. source: "./media/characters/vance/back.svg",
  14694. extra: 2081 / 1994,
  14695. bottom: 0.014
  14696. }
  14697. },
  14698. hand: {
  14699. height: math.unit(0.88, "feet"),
  14700. name: "Hand",
  14701. image: {
  14702. source: "./media/characters/vance/hand.svg"
  14703. }
  14704. },
  14705. foot: {
  14706. height: math.unit(0.64, "feet"),
  14707. name: "Foot",
  14708. image: {
  14709. source: "./media/characters/vance/foot.svg"
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Small",
  14716. height: math.unit(90, "feet"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(100, "meters")
  14722. },
  14723. {
  14724. name: "Megamacro",
  14725. height: math.unit(15, "miles")
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14731. {
  14732. front: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(180, "lb"),
  14735. name: "Front",
  14736. image: {
  14737. source: "./media/characters/xochitl/front.svg",
  14738. extra: 2297 / 2261,
  14739. bottom: 0.065
  14740. }
  14741. },
  14742. back: {
  14743. height: math.unit(6, "feet"),
  14744. weight: math.unit(180, "lb"),
  14745. name: "Back",
  14746. image: {
  14747. source: "./media/characters/xochitl/back.svg",
  14748. extra: 2386 / 2354,
  14749. bottom: 0.01
  14750. }
  14751. },
  14752. foot: {
  14753. height: math.unit(6 / 5 * 1.15, "feet"),
  14754. weight: math.unit(150, "lb"),
  14755. name: "Foot",
  14756. image: {
  14757. source: "./media/characters/xochitl/foot.svg"
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Macro",
  14764. height: math.unit(80, "feet")
  14765. },
  14766. {
  14767. name: "Macro+",
  14768. height: math.unit(400, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Gigamacro",
  14773. height: math.unit(80000, "miles")
  14774. },
  14775. {
  14776. name: "Gigamacro+",
  14777. height: math.unit(400000, "miles")
  14778. },
  14779. {
  14780. name: "Teramacro",
  14781. height: math.unit(300, "AU")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14787. {
  14788. front: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(150, "lb"),
  14791. name: "Front",
  14792. image: {
  14793. source: "./media/characters/vincent/front.svg",
  14794. extra: 1130 / 1080,
  14795. bottom: 0.055
  14796. }
  14797. },
  14798. beak: {
  14799. height: math.unit(6 * 0.1, "feet"),
  14800. name: "Beak",
  14801. image: {
  14802. source: "./media/characters/vincent/beak.svg"
  14803. }
  14804. },
  14805. hand: {
  14806. height: math.unit(6 * 0.85, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Hand",
  14809. image: {
  14810. source: "./media/characters/vincent/hand.svg"
  14811. }
  14812. },
  14813. foot: {
  14814. height: math.unit(6 * 0.19, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Foot",
  14817. image: {
  14818. source: "./media/characters/vincent/foot.svg"
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Base",
  14825. height: math.unit(6 + 5 / 12, "feet"),
  14826. default: true
  14827. },
  14828. {
  14829. name: "Macro",
  14830. height: math.unit(300, "feet")
  14831. },
  14832. {
  14833. name: "Megamacro",
  14834. height: math.unit(2, "miles")
  14835. },
  14836. {
  14837. name: "Gigamacro",
  14838. height: math.unit(1000, "miles")
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(2, "meters"),
  14847. weight: math.unit(500, "kg"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/coatl/front.svg",
  14851. extra: 3948 / 3500,
  14852. bottom: 0.082
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(4, "meters")
  14860. },
  14861. {
  14862. name: "Macro",
  14863. height: math.unit(100, "meters"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Macro+",
  14868. height: math.unit(300, "meters")
  14869. },
  14870. {
  14871. name: "Megamacro",
  14872. height: math.unit(3, "gigameters")
  14873. },
  14874. {
  14875. name: "Megamacro+",
  14876. height: math.unit(300, "terameters")
  14877. },
  14878. {
  14879. name: "Megamacro++",
  14880. height: math.unit(3, "lightyears")
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(50, "kg"),
  14890. name: "front",
  14891. image: {
  14892. source: "./media/characters/shiroryu/front.svg",
  14893. extra: 1990 / 1935
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Mortal Mingling",
  14900. height: math.unit(3, "meters")
  14901. },
  14902. {
  14903. name: "Kaiju-ish",
  14904. height: math.unit(250, "meters")
  14905. },
  14906. {
  14907. name: "Somewhat Godly",
  14908. height: math.unit(400, "km"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Planetary",
  14913. height: math.unit(300, "megameters")
  14914. },
  14915. {
  14916. name: "Galaxy-dwarfing",
  14917. height: math.unit(450, "kiloparsecs")
  14918. },
  14919. {
  14920. name: "Universe Eater",
  14921. height: math.unit(150, "gigaparsecs")
  14922. },
  14923. {
  14924. name: "Almost Immeasurable",
  14925. height: math.unit(1.3e266, "yottaparsecs")
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/umeko/front.svg",
  14938. extra: 1,
  14939. bottom: 0.019
  14940. }
  14941. },
  14942. frontArmored: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Front (Armored)",
  14946. image: {
  14947. source: "./media/characters/umeko/front-armored.svg",
  14948. extra: 1,
  14949. bottom: 0.021
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Macro",
  14956. height: math.unit(220, "feet"),
  14957. default: true
  14958. },
  14959. {
  14960. name: "Guardian Dragon",
  14961. height: math.unit(50, "miles")
  14962. },
  14963. {
  14964. name: "Cosmic",
  14965. height: math.unit(800000, "miles")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/cassidy/front.svg",
  14978. extra: 810/808,
  14979. bottom: 41/851
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Canon Height",
  14986. height: math.unit(120, "feet"),
  14987. default: true
  14988. },
  14989. {
  14990. name: "Macro+",
  14991. height: math.unit(400, "feet")
  14992. },
  14993. {
  14994. name: "Macro++",
  14995. height: math.unit(4000, "feet")
  14996. },
  14997. {
  14998. name: "Megamacro",
  14999. height: math.unit(3, "miles")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(6, "feet"),
  15008. weight: math.unit(150, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/isaac/front.svg",
  15012. extra: 896 / 815,
  15013. bottom: 0.11
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Human Size",
  15020. height: math.unit(8, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(400, "feet")
  15026. },
  15027. {
  15028. name: "Megamacro",
  15029. height: math.unit(50, "miles")
  15030. },
  15031. {
  15032. name: "Canon Height",
  15033. height: math.unit(200, "AU")
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6, "feet"),
  15042. weight: math.unit(72, "kg"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/sleekit/front.svg",
  15046. extra: 4693 / 4487,
  15047. bottom: 0.012
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Minimum Height",
  15054. height: math.unit(10, "meters")
  15055. },
  15056. {
  15057. name: "Smaller",
  15058. height: math.unit(25, "meters")
  15059. },
  15060. {
  15061. name: "Larger",
  15062. height: math.unit(38, "meters"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Maximum height",
  15067. height: math.unit(100, "meters")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6, "feet"),
  15076. weight: math.unit(150, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/nillia/front.svg",
  15080. extra: 2195 / 2037,
  15081. bottom: 0.005
  15082. }
  15083. },
  15084. back: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Back",
  15088. image: {
  15089. source: "./media/characters/nillia/back.svg",
  15090. extra: 2195 / 2037,
  15091. bottom: 0.005
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Canon Height",
  15098. height: math.unit(489, "feet"),
  15099. default: true
  15100. }
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/mesmyriza/front.svg",
  15112. extra: 2067 / 1784,
  15113. bottom: 0.035
  15114. }
  15115. },
  15116. foot: {
  15117. height: math.unit(6 / (250 / 35), "feet"),
  15118. name: "Foot",
  15119. image: {
  15120. source: "./media/characters/mesmyriza/foot.svg"
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Macro",
  15127. height: math.unit(457, "meters"),
  15128. default: true
  15129. },
  15130. {
  15131. name: "Megamacro",
  15132. height: math.unit(8, "megameters")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(250, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/saudade/front.svg",
  15145. extra: 1172 / 1139,
  15146. bottom: 0.035
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Micro",
  15153. height: math.unit(3, "inches")
  15154. },
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(6, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Macro",
  15162. height: math.unit(50, "feet")
  15163. },
  15164. {
  15165. name: "Megamacro",
  15166. height: math.unit(2800, "feet")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(5 + 4 / 12, "feet"),
  15175. weight: math.unit(100, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/keireer/front.svg",
  15179. extra: 716 / 666,
  15180. bottom: 0.05
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(5 + 4 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(5.5, "feet"),
  15197. weight: math.unit(90, "kg"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/mirja/front.svg",
  15201. extra: 1452/1262,
  15202. bottom: 67/1519
  15203. }
  15204. },
  15205. frontDressed: {
  15206. height: math.unit(5.5, "feet"),
  15207. weight: math.unit(90, "lb"),
  15208. name: "Front (Dressed)",
  15209. image: {
  15210. source: "./media/characters/mirja/dressed.svg",
  15211. extra: 1452/1262,
  15212. bottom: 67/1519
  15213. }
  15214. },
  15215. back: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(90, "lb"),
  15218. name: "Back",
  15219. image: {
  15220. source: "./media/characters/mirja/back.svg",
  15221. extra: 1892/1795,
  15222. bottom: 48/1940
  15223. }
  15224. },
  15225. maw: {
  15226. height: math.unit(1.312, "feet"),
  15227. name: "Maw",
  15228. image: {
  15229. source: "./media/characters/mirja/maw.svg"
  15230. }
  15231. },
  15232. paw: {
  15233. height: math.unit(1.15, "feet"),
  15234. name: "Paw",
  15235. image: {
  15236. source: "./media/characters/mirja/paw.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "\"Incognito\"",
  15243. height: math.unit(3, "meters")
  15244. },
  15245. {
  15246. name: "Strolling Size",
  15247. height: math.unit(15, "km")
  15248. },
  15249. {
  15250. name: "Larger Strolling Size",
  15251. height: math.unit(400, "km")
  15252. },
  15253. {
  15254. name: "Preferred Size",
  15255. height: math.unit(5000, "km"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "True Size",
  15260. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(15, "feet"),
  15269. weight: math.unit(880, "kg"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/nightraver/front.svg",
  15273. extra: 2444 / 2160,
  15274. bottom: 0.027
  15275. }
  15276. },
  15277. back: {
  15278. height: math.unit(15, "feet"),
  15279. weight: math.unit(880, "kg"),
  15280. name: "Back",
  15281. image: {
  15282. source: "./media/characters/nightraver/back.svg",
  15283. extra: 2309 / 2180,
  15284. bottom: 0.005
  15285. }
  15286. },
  15287. sole: {
  15288. height: math.unit(2.878, "feet"),
  15289. name: "Sole",
  15290. image: {
  15291. source: "./media/characters/nightraver/sole.svg"
  15292. }
  15293. },
  15294. foot: {
  15295. height: math.unit(2.285, "feet"),
  15296. name: "Foot",
  15297. image: {
  15298. source: "./media/characters/nightraver/foot.svg"
  15299. }
  15300. },
  15301. maw: {
  15302. height: math.unit(2.67, "feet"),
  15303. name: "Maw",
  15304. image: {
  15305. source: "./media/characters/nightraver/maw.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Micro",
  15312. height: math.unit(1, "cm")
  15313. },
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(15, "feet"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Macro",
  15321. height: math.unit(300, "feet")
  15322. },
  15323. {
  15324. name: "Megamacro",
  15325. height: math.unit(300, "miles")
  15326. },
  15327. {
  15328. name: "Gigamacro",
  15329. height: math.unit(10000, "miles")
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15335. {
  15336. side: {
  15337. height: math.unit(2, "inches"),
  15338. weight: math.unit(5, "grams"),
  15339. name: "Side",
  15340. image: {
  15341. source: "./media/characters/arc/side.svg"
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Micro",
  15348. height: math.unit(2, "inches"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(1.1938, "meters"),
  15358. weight: math.unit(54, "kg"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/nebula-shahar/front.svg",
  15362. extra: 1642 / 1436,
  15363. bottom: 0.06
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Megamicro",
  15370. height: math.unit(0.3, "mm")
  15371. },
  15372. {
  15373. name: "Micro",
  15374. height: math.unit(3, "cm")
  15375. },
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(138, "cm"),
  15379. default: true
  15380. },
  15381. {
  15382. name: "Macro",
  15383. height: math.unit(30, "m")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(5.24, "feet"),
  15392. weight: math.unit(150, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/shayla/front.svg",
  15396. extra: 1512 / 1414,
  15397. bottom: 0.01
  15398. }
  15399. },
  15400. back: {
  15401. height: math.unit(5.24, "feet"),
  15402. weight: math.unit(150, "lb"),
  15403. name: "Back",
  15404. image: {
  15405. source: "./media/characters/shayla/back.svg",
  15406. extra: 1512 / 1414
  15407. }
  15408. },
  15409. hand: {
  15410. height: math.unit(0.7781496062992126, "feet"),
  15411. name: "Hand",
  15412. image: {
  15413. source: "./media/characters/shayla/hand.svg"
  15414. }
  15415. },
  15416. foot: {
  15417. height: math.unit(1.4206036745406823, "feet"),
  15418. name: "Foot",
  15419. image: {
  15420. source: "./media/characters/shayla/foot.svg"
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Micro",
  15427. height: math.unit(0.32, "feet")
  15428. },
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(5.24, "feet"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Macro",
  15436. height: math.unit(492.12, "feet")
  15437. },
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(186.41, "miles")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(2.2, "m"),
  15449. weight: math.unit(120, "kg"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/pia-jr/front.svg",
  15453. extra: 1000 / 970,
  15454. bottom: 0.035
  15455. }
  15456. },
  15457. hand: {
  15458. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15459. name: "Hand",
  15460. image: {
  15461. source: "./media/characters/pia-jr/hand.svg"
  15462. }
  15463. },
  15464. paw: {
  15465. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15466. name: "Paw",
  15467. image: {
  15468. source: "./media/characters/pia-jr/paw.svg"
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Micro",
  15475. height: math.unit(1.2, "cm")
  15476. },
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(2.2, "m"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Macro",
  15484. height: math.unit(180, "m")
  15485. },
  15486. {
  15487. name: "Megamacro",
  15488. height: math.unit(420, "km")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(2, "m"),
  15497. weight: math.unit(115, "kg"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/pia-sr/front.svg",
  15501. extra: 760 / 730,
  15502. bottom: 0.015
  15503. }
  15504. },
  15505. back: {
  15506. height: math.unit(2, "m"),
  15507. weight: math.unit(115, "kg"),
  15508. name: "Back",
  15509. image: {
  15510. source: "./media/characters/pia-sr/back.svg",
  15511. extra: 760 / 730,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. hand: {
  15516. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15517. name: "Hand",
  15518. image: {
  15519. source: "./media/characters/pia-sr/hand.svg"
  15520. }
  15521. },
  15522. foot: {
  15523. height: math.unit(1.83, "feet"),
  15524. name: "Foot",
  15525. image: {
  15526. source: "./media/characters/pia-sr/foot.svg"
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(88, "mm")
  15534. },
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(2, "m"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(200, "m")
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(420, "km")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(8 + 2 / 12, "feet"),
  15555. weight: math.unit(300, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/kibibyte/front.svg",
  15559. extra: 2221 / 2098,
  15560. bottom: 0.04
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(8 + 2 / 12, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Socialable Macro",
  15572. height: math.unit(50, "feet")
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(300, "feet")
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(500, "miles")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/felix/front.svg",
  15593. extra: 762 / 722,
  15594. bottom: 0.02
  15595. }
  15596. },
  15597. frontClothed: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Front (Clothed)",
  15601. image: {
  15602. source: "./media/characters/felix/front-clothed.svg",
  15603. extra: 762 / 722,
  15604. bottom: 0.02
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(6 + 8 / 12, "feet"),
  15612. default: true
  15613. },
  15614. {
  15615. name: "Macro",
  15616. height: math.unit(2600, "feet")
  15617. },
  15618. {
  15619. name: "Megamacro",
  15620. height: math.unit(450, "miles")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6 + 1 / 12, "feet"),
  15629. weight: math.unit(250, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/tobo/front.svg",
  15633. extra: 608 / 586,
  15634. bottom: 0.023
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(6 + 1 / 12, "feet"),
  15639. weight: math.unit(250, "lb"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/tobo/back.svg",
  15643. extra: 608 / 586
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Nano",
  15650. height: math.unit(2, "nm")
  15651. },
  15652. {
  15653. name: "Megamicro",
  15654. height: math.unit(0.1, "mm")
  15655. },
  15656. {
  15657. name: "Micro",
  15658. height: math.unit(1, "inch"),
  15659. default: true
  15660. },
  15661. {
  15662. name: "Human-sized",
  15663. height: math.unit(6 + 1 / 12, "feet")
  15664. },
  15665. {
  15666. name: "Macro",
  15667. height: math.unit(250, "feet")
  15668. },
  15669. {
  15670. name: "Megamacro",
  15671. height: math.unit(75, "miles")
  15672. },
  15673. {
  15674. name: "Texas-sized",
  15675. height: math.unit(750, "miles")
  15676. },
  15677. {
  15678. name: "Teramacro",
  15679. height: math.unit(50000, "miles")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(269, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/danny-kapowsky/front.svg",
  15692. extra: 766 / 736,
  15693. bottom: 0.044
  15694. }
  15695. },
  15696. back: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(269, "lb"),
  15699. name: "Back",
  15700. image: {
  15701. source: "./media/characters/danny-kapowsky/back.svg",
  15702. extra: 797 / 760,
  15703. bottom: 0.025
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(150, "feet"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Macro+",
  15715. height: math.unit(200, "feet")
  15716. },
  15717. {
  15718. name: "Macro++",
  15719. height: math.unit(300, "feet")
  15720. },
  15721. {
  15722. name: "Macro+++",
  15723. height: math.unit(400, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15729. {
  15730. side: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(170, "lb"),
  15733. name: "Side",
  15734. image: {
  15735. source: "./media/characters/finn/side.svg",
  15736. extra: 1953 / 1807,
  15737. bottom: 0.057
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Megamacro",
  15744. height: math.unit(14445, "feet"),
  15745. default: true
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(5 + 6 / 12, "feet"),
  15754. weight: math.unit(125, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/roy/front.svg",
  15758. extra: 1,
  15759. bottom: 0.11
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Micro",
  15766. height: math.unit(3, "inches"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 6 / 12, "feet")
  15772. },
  15773. {
  15774. name: "Lesser Macro",
  15775. height: math.unit(60, "feet")
  15776. },
  15777. {
  15778. name: "Greater Macro",
  15779. height: math.unit(120, "feet")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6, "feet"),
  15788. weight: math.unit(100, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/aevsivs/front.svg",
  15792. extra: 1,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. back: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(100, "lb"),
  15799. name: "Back",
  15800. image: {
  15801. source: "./media/characters/aevsivs/back.svg"
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Micro",
  15808. height: math.unit(2, "inches"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(5, "feet")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(5 + 7 / 12, "feet"),
  15822. weight: math.unit(159, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/hildegard/front.svg",
  15826. extra: 289 / 269,
  15827. bottom: 7.63 / 297.8
  15828. }
  15829. },
  15830. back: {
  15831. height: math.unit(5 + 7 / 12, "feet"),
  15832. weight: math.unit(159, "lb"),
  15833. name: "Back",
  15834. image: {
  15835. source: "./media/characters/hildegard/back.svg",
  15836. extra: 280 / 260,
  15837. bottom: 2.3 / 282
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(5 + 7 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15851. {
  15852. bernard: {
  15853. height: math.unit(2 + 7 / 12, "feet"),
  15854. weight: math.unit(66, "lb"),
  15855. name: "Bernard",
  15856. rename: true,
  15857. image: {
  15858. source: "./media/characters/bernard-wilder/bernard.svg",
  15859. extra: 192 / 128,
  15860. bottom: 0.05
  15861. }
  15862. },
  15863. wilder: {
  15864. height: math.unit(5 + 8 / 12, "feet"),
  15865. weight: math.unit(143, "lb"),
  15866. name: "Wilder",
  15867. rename: true,
  15868. image: {
  15869. source: "./media/characters/bernard-wilder/wilder.svg",
  15870. extra: 361 / 312,
  15871. bottom: 0.02
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(2 + 7 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15885. {
  15886. anthro: {
  15887. height: math.unit(6 + 1 / 12, "feet"),
  15888. weight: math.unit(155, "lb"),
  15889. name: "Anthro",
  15890. image: {
  15891. source: "./media/characters/hearth/anthro.svg",
  15892. extra: 1178/1136,
  15893. bottom: 28/1206
  15894. }
  15895. },
  15896. feral: {
  15897. height: math.unit(3.78, "feet"),
  15898. weight: math.unit(35, "kg"),
  15899. name: "Feral",
  15900. image: {
  15901. source: "./media/characters/hearth/feral.svg",
  15902. extra: 153 / 135,
  15903. bottom: 0.03
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(6 + 1 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6, "feet"),
  15920. weight: math.unit(182, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/ingrid/front.svg",
  15924. extra: 294 / 268,
  15925. bottom: 0.027
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(6, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15939. {
  15940. eevee: {
  15941. height: math.unit(2 + 10 / 12, "feet"),
  15942. weight: math.unit(86, "lb"),
  15943. name: "Malgam",
  15944. image: {
  15945. source: "./media/characters/malgam/eevee.svg",
  15946. extra: 952/784,
  15947. bottom: 38/990
  15948. }
  15949. },
  15950. sylveon: {
  15951. height: math.unit(4, "feet"),
  15952. weight: math.unit(101, "lb"),
  15953. name: "Future Malgam",
  15954. rename: true,
  15955. image: {
  15956. source: "./media/characters/malgam/sylveon.svg",
  15957. extra: 371 / 325,
  15958. bottom: 0.015
  15959. }
  15960. },
  15961. gigantamax: {
  15962. height: math.unit(50, "feet"),
  15963. name: "Gigantamax Malgam",
  15964. rename: true,
  15965. image: {
  15966. source: "./media/characters/malgam/gigantamax.svg"
  15967. }
  15968. },
  15969. },
  15970. [
  15971. {
  15972. name: "Normal",
  15973. height: math.unit(2 + 10 / 12, "feet"),
  15974. default: true
  15975. },
  15976. ]
  15977. ))
  15978. characterMakers.push(() => makeCharacter(
  15979. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15980. {
  15981. front: {
  15982. height: math.unit(5 + 11 / 12, "feet"),
  15983. weight: math.unit(188, "lb"),
  15984. name: "Front",
  15985. image: {
  15986. source: "./media/characters/fleur/front.svg",
  15987. extra: 309 / 283,
  15988. bottom: 0.007
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(5 + 11 / 12, "feet"),
  15996. default: true
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(5 + 4 / 12, "feet"),
  16005. weight: math.unit(122, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/jude/front.svg",
  16009. extra: 288 / 273,
  16010. bottom: 0.03
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(5 + 4 / 12, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(5 + 11 / 12, "feet"),
  16027. weight: math.unit(190, "lb"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/seara/front.svg",
  16031. extra: 1,
  16032. bottom: 0.05
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(5 + 11 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(16 + 5 / 12, "feet"),
  16049. weight: math.unit(524, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/caspian-lugia/front.svg",
  16053. extra: 1,
  16054. bottom: 0.04
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Normal",
  16061. height: math.unit(16 + 5 / 12, "feet"),
  16062. default: true
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(5 + 7 / 12, "feet"),
  16071. weight: math.unit(170, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/mika/front.svg",
  16075. extra: 1,
  16076. bottom: 0.016
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(5 + 7 / 12, "feet"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(6 + 2 / 12, "feet"),
  16093. weight: math.unit(268, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/sol/front.svg",
  16097. extra: 247 / 231,
  16098. bottom: 0.05
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Normal",
  16105. height: math.unit(6 + 2 / 12, "feet"),
  16106. default: true
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16112. {
  16113. buizel: {
  16114. height: math.unit(2 + 5 / 12, "feet"),
  16115. weight: math.unit(87, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/umiko/buizel.svg",
  16119. extra: 172 / 157,
  16120. bottom: 0.01
  16121. },
  16122. form: "buizel",
  16123. default: true
  16124. },
  16125. floatzel: {
  16126. height: math.unit(5 + 9 / 12, "feet"),
  16127. weight: math.unit(250, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/umiko/floatzel.svg",
  16131. extra: 1076/1006,
  16132. bottom: 15/1091
  16133. },
  16134. form: "floatzel",
  16135. default: true
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(2 + 5 / 12, "feet"),
  16142. form: "buizel",
  16143. default: true
  16144. },
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(5 + 9 / 12, "feet"),
  16148. form: "floatzel",
  16149. default: true
  16150. },
  16151. ],
  16152. {
  16153. "buizel": {
  16154. name: "Buizel"
  16155. },
  16156. "floatzel": {
  16157. name: "Floatzel",
  16158. default: true
  16159. }
  16160. }
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6 + 2 / 12, "feet"),
  16167. weight: math.unit(146, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/iliac/front.svg",
  16171. extra: 389 / 365,
  16172. bottom: 0.035
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(6 + 2 / 12, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(170, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/topaz/front.svg",
  16193. extra: 317 / 303,
  16194. bottom: 0.055
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(6, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 11 / 12, "feet"),
  16211. weight: math.unit(144, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/gabriel/front.svg",
  16215. extra: 285 / 262,
  16216. bottom: 0.004
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(5 + 11 / 12, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16230. {
  16231. side: {
  16232. height: math.unit(6 + 5 / 12, "feet"),
  16233. weight: math.unit(300, "lb"),
  16234. name: "Side",
  16235. image: {
  16236. source: "./media/characters/tempest-suicune/side.svg",
  16237. extra: 195 / 154,
  16238. bottom: 0.04
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(6 + 5 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(7 + 2 / 12, "feet"),
  16255. weight: math.unit(322, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/vulcan/front.svg",
  16259. extra: 154 / 147,
  16260. bottom: 0.04
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(7 + 2 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(5 + 10 / 12, "feet"),
  16277. weight: math.unit(264, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/gault/front.svg",
  16281. extra: 161 / 140,
  16282. bottom: 0.028
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(5 + 10 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/shard/front.svg",
  16303. extra: 273 / 238,
  16304. bottom: 0.02
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(3 + 6 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(5 + 11 / 12, "feet"),
  16321. weight: math.unit(146, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/ashe/front.svg",
  16325. extra: 400 / 373,
  16326. bottom: 0.01
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(5 + 11 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(5 + 5 / 12, "feet"),
  16343. weight: math.unit(135, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/beatrix/front.svg",
  16347. extra: 392 / 379,
  16348. bottom: 0.01
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(6, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6 + 2/12, "feet"),
  16365. weight: math.unit(135, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/ignatius/front.svg",
  16369. extra: 1380/1259,
  16370. bottom: 27/1407
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(6 + 2/12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6 + 2 / 12, "feet"),
  16387. weight: math.unit(138, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/mei-li/front.svg",
  16391. extra: 237 / 229,
  16392. bottom: 0.03
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6 + 2 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(2 + 4 / 12, "feet"),
  16409. weight: math.unit(62, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/puru/front.svg",
  16413. extra: 206 / 149,
  16414. bottom: 0.06
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(2 + 4 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16428. {
  16429. anthro: {
  16430. height: math.unit(5 + 8/12, "feet"),
  16431. weight: math.unit(200, "lb"),
  16432. energyNeed: math.unit(2000, "kcal"),
  16433. name: "Anthro",
  16434. image: {
  16435. source: "./media/characters/kee/anthro.svg",
  16436. extra: 3251/3184,
  16437. bottom: 250/3501
  16438. }
  16439. },
  16440. taur: {
  16441. height: math.unit(11, "feet"),
  16442. weight: math.unit(500, "lb"),
  16443. energyNeed: math.unit(5000, "kcal"),
  16444. name: "Taur",
  16445. image: {
  16446. source: "./media/characters/kee/taur.svg",
  16447. extra: 1362/1320,
  16448. bottom: 83/1445
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(5 + 8/12, "feet"),
  16456. default: true
  16457. },
  16458. {
  16459. name: "Macro",
  16460. height: math.unit(35, "feet")
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16466. {
  16467. anthro: {
  16468. height: math.unit(7, "feet"),
  16469. weight: math.unit(190, "lb"),
  16470. name: "Anthro",
  16471. image: {
  16472. source: "./media/characters/cobalt-dracha/anthro.svg",
  16473. extra: 231 / 225,
  16474. bottom: 0.04
  16475. }
  16476. },
  16477. feral: {
  16478. height: math.unit(9 + 7 / 12, "feet"),
  16479. weight: math.unit(294, "lb"),
  16480. name: "Feral",
  16481. image: {
  16482. source: "./media/characters/cobalt-dracha/feral.svg",
  16483. extra: 692 / 633,
  16484. bottom: 0.05
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(7, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16498. {
  16499. fallen: {
  16500. height: math.unit(11 + 8 / 12, "feet"),
  16501. weight: math.unit(485, "lb"),
  16502. name: "Java (Fallen)",
  16503. rename: true,
  16504. image: {
  16505. source: "./media/characters/java/fallen.svg",
  16506. extra: 226 / 208,
  16507. bottom: 0.005
  16508. }
  16509. },
  16510. godkin: {
  16511. height: math.unit(10 + 6 / 12, "feet"),
  16512. weight: math.unit(328, "lb"),
  16513. name: "Java (Godkin)",
  16514. rename: true,
  16515. image: {
  16516. source: "./media/characters/java/godkin.svg",
  16517. extra: 1104/1068,
  16518. bottom: 36/1140
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(11 + 8 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(5 + 9 / 12, "feet"),
  16535. weight: math.unit(170, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/purna/front.svg",
  16539. extra: 239 / 229,
  16540. bottom: 0.01
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(5 + 9 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(5 + 9 / 12, "feet"),
  16557. weight: math.unit(142, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/kuva/front.svg",
  16561. extra: 281 / 271,
  16562. bottom: 0.006
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(5 + 9 / 12, "feet"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16576. {
  16577. anthro: {
  16578. height: math.unit(9 + 2 / 12, "feet"),
  16579. weight: math.unit(270, "lb"),
  16580. name: "Anthro",
  16581. image: {
  16582. source: "./media/characters/embra/anthro.svg",
  16583. extra: 200 / 187,
  16584. bottom: 0.02
  16585. }
  16586. },
  16587. feral: {
  16588. height: math.unit(18 + 8 / 12, "feet"),
  16589. weight: math.unit(576, "lb"),
  16590. name: "Feral",
  16591. image: {
  16592. source: "./media/characters/embra/feral.svg",
  16593. extra: 152 / 137,
  16594. bottom: 0.037
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(9 + 2 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16608. {
  16609. anthro: {
  16610. height: math.unit(10 + 9 / 12, "feet"),
  16611. weight: math.unit(224, "lb"),
  16612. name: "Anthro",
  16613. image: {
  16614. source: "./media/characters/grottos/anthro.svg",
  16615. extra: 350 / 332,
  16616. bottom: 0.045
  16617. }
  16618. },
  16619. feral: {
  16620. height: math.unit(20 + 7 / 12, "feet"),
  16621. weight: math.unit(629, "lb"),
  16622. name: "Feral",
  16623. image: {
  16624. source: "./media/characters/grottos/feral.svg",
  16625. extra: 207 / 190,
  16626. bottom: 0.05
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(10 + 9 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16640. {
  16641. anthro: {
  16642. height: math.unit(9 + 6 / 12, "feet"),
  16643. weight: math.unit(298, "lb"),
  16644. name: "Anthro",
  16645. image: {
  16646. source: "./media/characters/frifna/anthro.svg",
  16647. extra: 282 / 269,
  16648. bottom: 0.015
  16649. }
  16650. },
  16651. feral: {
  16652. height: math.unit(16 + 2 / 12, "feet"),
  16653. weight: math.unit(624, "lb"),
  16654. name: "Feral",
  16655. image: {
  16656. source: "./media/characters/frifna/feral.svg"
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(9 + 6 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(6 + 2 / 12, "feet"),
  16673. weight: math.unit(168, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/elise/front.svg",
  16677. extra: 276 / 271
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(6 + 2 / 12, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(5 + 10 / 12, "feet"),
  16694. weight: math.unit(210, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/glade/front.svg",
  16698. extra: 258 / 247,
  16699. bottom: 0.008
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(5 + 10 / 12, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(5 + 10 / 12, "feet"),
  16716. weight: math.unit(129, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/rina/front.svg",
  16720. extra: 266 / 255,
  16721. bottom: 0.005
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(5 + 10 / 12, "feet"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(6 + 1 / 12, "feet"),
  16738. weight: math.unit(192, "lb"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/veronica/front.svg",
  16742. extra: 319 / 309,
  16743. bottom: 0.005
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6 + 1 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(9 + 3 / 12, "feet"),
  16760. weight: math.unit(1100, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/braxton/front.svg",
  16764. extra: 1057 / 984,
  16765. bottom: 0.05
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(9 + 3 / 12, "feet")
  16773. },
  16774. {
  16775. name: "Giant",
  16776. height: math.unit(300, "feet"),
  16777. default: true
  16778. },
  16779. {
  16780. name: "Macro",
  16781. height: math.unit(700, "feet")
  16782. },
  16783. {
  16784. name: "Megamacro",
  16785. height: math.unit(6000, "feet")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6 + 7 / 12, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/blue-feyonics/front.svg",
  16798. extra: 1403 / 1306,
  16799. bottom: 0.047
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 7 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(1.8, "meters"),
  16816. weight: math.unit(60, "kg"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/maxwell/front.svg",
  16820. extra: 2060 / 1873
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Micro",
  16827. height: math.unit(1, "mm")
  16828. },
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(1.8, "meter"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(30, "meters")
  16837. },
  16838. {
  16839. name: "Megamacro",
  16840. height: math.unit(10, "km")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(150, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/jack/front.svg",
  16853. extra: 1754 / 1640,
  16854. bottom: 0.01
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(80000, "feet"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Max size",
  16866. height: math.unit(10, "lightyears")
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16872. {
  16873. urban: {
  16874. height: math.unit(5, "feet"),
  16875. weight: math.unit(240, "lb"),
  16876. name: "Urban",
  16877. image: {
  16878. source: "./media/characters/cafat/urban.svg",
  16879. extra: 1223/1126,
  16880. bottom: 205/1428
  16881. }
  16882. },
  16883. summer: {
  16884. height: math.unit(5, "feet"),
  16885. weight: math.unit(240, "lb"),
  16886. name: "Summer",
  16887. image: {
  16888. source: "./media/characters/cafat/summer.svg",
  16889. extra: 1223/1126,
  16890. bottom: 205/1428
  16891. }
  16892. },
  16893. winter: {
  16894. height: math.unit(5, "feet"),
  16895. weight: math.unit(240, "lb"),
  16896. name: "Winter",
  16897. image: {
  16898. source: "./media/characters/cafat/winter.svg",
  16899. extra: 1223/1126,
  16900. bottom: 205/1428
  16901. }
  16902. },
  16903. lingerie: {
  16904. height: math.unit(5, "feet"),
  16905. weight: math.unit(240, "lb"),
  16906. name: "Lingerie",
  16907. image: {
  16908. source: "./media/characters/cafat/lingerie.svg",
  16909. extra: 1223/1126,
  16910. bottom: 205/1428
  16911. }
  16912. },
  16913. upright: {
  16914. height: math.unit(6.3, "feet"),
  16915. weight: math.unit(240, "lb"),
  16916. name: "Upright",
  16917. image: {
  16918. source: "./media/characters/cafat/upright.svg",
  16919. bottom: 0.01
  16920. }
  16921. },
  16922. uprightFull: {
  16923. height: math.unit(6.3, "feet"),
  16924. weight: math.unit(240, "lb"),
  16925. name: "Upright (Full)",
  16926. image: {
  16927. source: "./media/characters/cafat/upright-full.svg",
  16928. bottom: 0.01
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Small",
  16935. height: math.unit(5, "feet"),
  16936. default: true
  16937. },
  16938. {
  16939. name: "Large",
  16940. height: math.unit(13, "feet")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/verin-raharra/front.svg",
  16953. extra: 5019 / 4835,
  16954. bottom: 0.023
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(7 + 5 / 12, "feet"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Upsized",
  16966. height: math.unit(20, "feet")
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16972. {
  16973. front: {
  16974. height: math.unit(7, "feet"),
  16975. weight: math.unit(230, "lb"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/nakata/front.svg",
  16979. extra: 1.005,
  16980. bottom: 0.01
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(7, "feet"),
  16988. default: true
  16989. },
  16990. {
  16991. name: "Big",
  16992. height: math.unit(14, "feet")
  16993. },
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(400, "feet")
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(4.91, "feet"),
  17005. weight: math.unit(100, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/lily/front.svg",
  17009. extra: 1585 / 1415,
  17010. bottom: 0.02
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(4.91, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17024. {
  17025. laying: {
  17026. height: math.unit(4 + 4 / 12, "feet"),
  17027. weight: math.unit(600, "lb"),
  17028. name: "Laying",
  17029. image: {
  17030. source: "./media/characters/sheila/laying.svg",
  17031. extra: 1333 / 1265,
  17032. bottom: 0.16
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(4 + 4 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(190, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/sax/front.svg",
  17053. extra: 1187 / 973,
  17054. bottom: 0.042
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Micro",
  17061. height: math.unit(4, "inches"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(6, "feet"),
  17071. weight: math.unit(150, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/pandora/front.svg",
  17075. extra: 2720 / 2556,
  17076. bottom: 0.015
  17077. }
  17078. },
  17079. back: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Back",
  17083. image: {
  17084. source: "./media/characters/pandora/back.svg",
  17085. extra: 2720 / 2556,
  17086. bottom: 0.01
  17087. }
  17088. },
  17089. beans: {
  17090. height: math.unit(6 / 8, "feet"),
  17091. name: "Beans",
  17092. image: {
  17093. source: "./media/characters/pandora/beans.svg"
  17094. }
  17095. },
  17096. collar: {
  17097. height: math.unit(0.31, "feet"),
  17098. name: "Collar",
  17099. image: {
  17100. source: "./media/characters/pandora/collar.svg"
  17101. }
  17102. },
  17103. skirt: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Skirt",
  17107. image: {
  17108. source: "./media/characters/pandora/skirt.svg",
  17109. extra: 1622 / 1525,
  17110. bottom: 0.015
  17111. }
  17112. },
  17113. hoodie: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Hoodie",
  17117. image: {
  17118. source: "./media/characters/pandora/hoodie.svg",
  17119. extra: 1622 / 1525,
  17120. bottom: 0.015
  17121. }
  17122. },
  17123. casual: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(150, "lb"),
  17126. name: "Casual",
  17127. image: {
  17128. source: "./media/characters/pandora/casual.svg",
  17129. extra: 1622 / 1525,
  17130. bottom: 0.015
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(6, "feet")
  17138. },
  17139. {
  17140. name: "Big Steppy",
  17141. height: math.unit(1, "km"),
  17142. default: true
  17143. },
  17144. {
  17145. name: "Galactic Steppy",
  17146. height: math.unit(2, "gigameters")
  17147. },
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17152. {
  17153. side: {
  17154. height: math.unit(10, "feet"),
  17155. weight: math.unit(800, "kg"),
  17156. name: "Side",
  17157. image: {
  17158. source: "./media/characters/venio-darcony/side.svg",
  17159. extra: 1373 / 1003,
  17160. bottom: 0.037
  17161. }
  17162. },
  17163. front: {
  17164. height: math.unit(19, "feet"),
  17165. weight: math.unit(800, "kg"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/venio-darcony/front.svg"
  17169. }
  17170. },
  17171. back: {
  17172. height: math.unit(19, "feet"),
  17173. weight: math.unit(800, "kg"),
  17174. name: "Back",
  17175. image: {
  17176. source: "./media/characters/venio-darcony/back.svg"
  17177. }
  17178. },
  17179. sideNsfw: {
  17180. height: math.unit(10, "feet"),
  17181. weight: math.unit(800, "kg"),
  17182. name: "Side (NSFW)",
  17183. image: {
  17184. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17185. extra: 1373 / 1003,
  17186. bottom: 0.037
  17187. }
  17188. },
  17189. frontNsfw: {
  17190. height: math.unit(19, "feet"),
  17191. weight: math.unit(800, "kg"),
  17192. name: "Front (NSFW)",
  17193. image: {
  17194. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17195. }
  17196. },
  17197. backNsfw: {
  17198. height: math.unit(19, "feet"),
  17199. weight: math.unit(800, "kg"),
  17200. name: "Back (NSFW)",
  17201. image: {
  17202. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17203. }
  17204. },
  17205. sideArmored: {
  17206. height: math.unit(10, "feet"),
  17207. weight: math.unit(800, "kg"),
  17208. name: "Side (Armored)",
  17209. image: {
  17210. source: "./media/characters/venio-darcony/side-armored.svg",
  17211. extra: 1373 / 1003,
  17212. bottom: 0.037
  17213. }
  17214. },
  17215. frontArmored: {
  17216. height: math.unit(19, "feet"),
  17217. weight: math.unit(900, "kg"),
  17218. name: "Front (Armored)",
  17219. image: {
  17220. source: "./media/characters/venio-darcony/front-armored.svg"
  17221. }
  17222. },
  17223. backArmored: {
  17224. height: math.unit(19, "feet"),
  17225. weight: math.unit(900, "kg"),
  17226. name: "Back (Armored)",
  17227. image: {
  17228. source: "./media/characters/venio-darcony/back-armored.svg"
  17229. }
  17230. },
  17231. sword: {
  17232. height: math.unit(10, "feet"),
  17233. weight: math.unit(50, "lb"),
  17234. name: "Sword",
  17235. image: {
  17236. source: "./media/characters/venio-darcony/sword.svg"
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(10, "feet")
  17244. },
  17245. {
  17246. name: "Macro",
  17247. height: math.unit(130, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Macro+",
  17252. height: math.unit(240, "feet")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6, "feet"),
  17261. weight: math.unit(150, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/veski/front.svg",
  17265. extra: 1299 / 1225,
  17266. bottom: 0.04
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/veski/back.svg",
  17275. extra: 1299 / 1225,
  17276. bottom: 0.008
  17277. }
  17278. },
  17279. maw: {
  17280. height: math.unit(1.5 * 1.21, "feet"),
  17281. name: "Maw",
  17282. image: {
  17283. source: "./media/characters/veski/maw.svg"
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Macro",
  17290. height: math.unit(2, "km"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(5 + 7 / 12, "feet"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/isabelle/front.svg",
  17303. extra: 2130 / 1976,
  17304. bottom: 0.05
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Supermicro",
  17311. height: math.unit(10, "micrometers")
  17312. },
  17313. {
  17314. name: "Micro",
  17315. height: math.unit(1, "inch")
  17316. },
  17317. {
  17318. name: "Tiny",
  17319. height: math.unit(5, "inches")
  17320. },
  17321. {
  17322. name: "Standard",
  17323. height: math.unit(5 + 7 / 12, "inches")
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(80, "meters"),
  17328. default: true
  17329. },
  17330. {
  17331. name: "Megamacro",
  17332. height: math.unit(250, "meters")
  17333. },
  17334. {
  17335. name: "Gigamacro",
  17336. height: math.unit(5, "km")
  17337. },
  17338. {
  17339. name: "Cosmic",
  17340. height: math.unit(2.5e6, "miles")
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(6, "feet"),
  17349. weight: math.unit(150, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/hanzo/front.svg",
  17353. extra: 374 / 344,
  17354. bottom: 0.02
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(8, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(7, "feet"),
  17371. weight: math.unit(130, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/anna/front.svg",
  17375. extra: 169 / 145,
  17376. bottom: 0.06
  17377. }
  17378. },
  17379. full: {
  17380. height: math.unit(4.96, "feet"),
  17381. weight: math.unit(220, "lb"),
  17382. name: "Full",
  17383. image: {
  17384. source: "./media/characters/anna/full.svg",
  17385. extra: 138 / 114,
  17386. bottom: 0.15
  17387. }
  17388. },
  17389. tongue: {
  17390. height: math.unit(2.53, "feet"),
  17391. name: "Tongue",
  17392. image: {
  17393. source: "./media/characters/anna/tongue.svg"
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(7, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(7, "feet"),
  17410. weight: math.unit(150, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/ian-corvid/front.svg",
  17414. extra: 150 / 142,
  17415. bottom: 0.02
  17416. }
  17417. },
  17418. back: {
  17419. height: math.unit(7, "feet"),
  17420. weight: math.unit(150, "lb"),
  17421. name: "Back",
  17422. image: {
  17423. source: "./media/characters/ian-corvid/back.svg",
  17424. extra: 150 / 143,
  17425. bottom: 0.01
  17426. }
  17427. },
  17428. stomping: {
  17429. height: math.unit(7, "feet"),
  17430. weight: math.unit(150, "lb"),
  17431. name: "Stomping",
  17432. image: {
  17433. source: "./media/characters/ian-corvid/stomping.svg",
  17434. extra: 76 / 72
  17435. }
  17436. },
  17437. sitting: {
  17438. height: math.unit(7 / 1.8, "feet"),
  17439. weight: math.unit(150, "lb"),
  17440. name: "Sitting",
  17441. image: {
  17442. source: "./media/characters/ian-corvid/sitting.svg",
  17443. extra: 1400 / 1269,
  17444. bottom: 0.15
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Tiny Microw",
  17451. height: math.unit(1, "inch")
  17452. },
  17453. {
  17454. name: "Microw",
  17455. height: math.unit(6, "inches")
  17456. },
  17457. {
  17458. name: "Crow",
  17459. height: math.unit(7 + 1 / 12, "feet"),
  17460. default: true
  17461. },
  17462. {
  17463. name: "Macrow",
  17464. height: math.unit(176, "feet")
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17470. {
  17471. front: {
  17472. height: math.unit(5 + 7 / 12, "feet"),
  17473. weight: math.unit(147, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/natalie-kellon/front.svg",
  17477. extra: 1214 / 1141,
  17478. bottom: 0.02
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Micro",
  17485. height: math.unit(1 / 16, "inch")
  17486. },
  17487. {
  17488. name: "Tiny",
  17489. height: math.unit(4, "inches")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(5 + 7 / 12, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Amazon",
  17498. height: math.unit(12, "feet")
  17499. },
  17500. {
  17501. name: "Giantess",
  17502. height: math.unit(160, "meters")
  17503. },
  17504. {
  17505. name: "Titaness",
  17506. height: math.unit(800, "meters")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(150, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/alluria/front.svg",
  17519. extra: 806 / 738,
  17520. bottom: 0.01
  17521. }
  17522. },
  17523. side: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/alluria/side.svg",
  17529. extra: 800 / 750,
  17530. }
  17531. },
  17532. back: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(150, "lb"),
  17535. name: "Back",
  17536. image: {
  17537. source: "./media/characters/alluria/back.svg",
  17538. extra: 806 / 738,
  17539. }
  17540. },
  17541. frontMaid: {
  17542. height: math.unit(6, "feet"),
  17543. weight: math.unit(150, "lb"),
  17544. name: "Front (Maid)",
  17545. image: {
  17546. source: "./media/characters/alluria/front-maid.svg",
  17547. extra: 806 / 738,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. sideMaid: {
  17552. height: math.unit(6, "feet"),
  17553. weight: math.unit(150, "lb"),
  17554. name: "Side (Maid)",
  17555. image: {
  17556. source: "./media/characters/alluria/side-maid.svg",
  17557. extra: 800 / 750,
  17558. bottom: 0.005
  17559. }
  17560. },
  17561. backMaid: {
  17562. height: math.unit(6, "feet"),
  17563. weight: math.unit(150, "lb"),
  17564. name: "Back (Maid)",
  17565. image: {
  17566. source: "./media/characters/alluria/back-maid.svg",
  17567. extra: 806 / 738,
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Micro",
  17574. height: math.unit(6, "inches"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(6, "feet"),
  17584. weight: math.unit(150, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/kyle/front.svg",
  17588. extra: 1069 / 962,
  17589. bottom: 77.228 / 1727.45
  17590. }
  17591. },
  17592. },
  17593. [
  17594. {
  17595. name: "Macro",
  17596. height: math.unit(150, "feet"),
  17597. default: true
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(6, "feet"),
  17606. weight: math.unit(300, "lb"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/duncan/front.svg",
  17610. extra: 1650 / 1482,
  17611. bottom: 0.05
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Macro",
  17618. height: math.unit(100, "feet"),
  17619. default: true
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17625. {
  17626. front: {
  17627. height: math.unit(5 + 4 / 12, "feet"),
  17628. weight: math.unit(220, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/memory/front.svg",
  17632. extra: 3641 / 3545,
  17633. bottom: 0.03
  17634. }
  17635. },
  17636. back: {
  17637. height: math.unit(5 + 4 / 12, "feet"),
  17638. weight: math.unit(220, "lb"),
  17639. name: "Back",
  17640. image: {
  17641. source: "./media/characters/memory/back.svg",
  17642. extra: 3641 / 3545,
  17643. bottom: 0.025
  17644. }
  17645. },
  17646. frontSkirt: {
  17647. height: math.unit(5 + 4 / 12, "feet"),
  17648. weight: math.unit(220, "lb"),
  17649. name: "Front (Skirt)",
  17650. image: {
  17651. source: "./media/characters/memory/front-skirt.svg",
  17652. extra: 3641 / 3545,
  17653. bottom: 0.03
  17654. }
  17655. },
  17656. frontDress: {
  17657. height: math.unit(5 + 4 / 12, "feet"),
  17658. weight: math.unit(220, "lb"),
  17659. name: "Front (Dress)",
  17660. image: {
  17661. source: "./media/characters/memory/front-dress.svg",
  17662. extra: 3641 / 3545,
  17663. bottom: 0.03
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Micro",
  17670. height: math.unit(6, "inches"),
  17671. default: true
  17672. },
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 4 / 12, "feet")
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(4 + 11 / 12, "feet"),
  17684. weight: math.unit(100, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/luno/front.svg",
  17688. extra: 1535 / 1487,
  17689. bottom: 0.03
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Micro",
  17696. height: math.unit(3, "inches")
  17697. },
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(4 + 11 / 12, "feet"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "Macro",
  17705. height: math.unit(300, "feet")
  17706. },
  17707. {
  17708. name: "Megamacro",
  17709. height: math.unit(700, "miles")
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(6 + 2 / 12, "feet"),
  17718. weight: math.unit(170, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/jamesy/front.svg",
  17722. extra: 440 / 382,
  17723. bottom: 0.005
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Micro",
  17730. height: math.unit(3, "inches")
  17731. },
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(6 + 2 / 12, "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Macro",
  17739. height: math.unit(300, "feet")
  17740. },
  17741. {
  17742. name: "Megamacro",
  17743. height: math.unit(700, "miles")
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(160, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/mark/front.svg",
  17756. extra: 3300 / 3100,
  17757. bottom: 136.42 / 3440.47
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Macro",
  17764. height: math.unit(120, "meters")
  17765. },
  17766. {
  17767. name: "Bigger Macro",
  17768. height: math.unit(350, "meters")
  17769. },
  17770. {
  17771. name: "Megamacro",
  17772. height: math.unit(8, "km"),
  17773. default: true
  17774. },
  17775. {
  17776. name: "Continental",
  17777. height: math.unit(4550, "km")
  17778. },
  17779. {
  17780. name: "Planetary",
  17781. height: math.unit(65000, "km")
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(6, "feet"),
  17790. weight: math.unit(400, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/mac/front.svg",
  17794. extra: 1048 / 987.7,
  17795. bottom: 60 / 1107.6,
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(500, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(5 + 2 / 12, "feet"),
  17812. weight: math.unit(190, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/bari/front.svg",
  17816. extra: 3156 / 2880,
  17817. bottom: 0.03
  17818. }
  17819. },
  17820. back: {
  17821. height: math.unit(5 + 2 / 12, "feet"),
  17822. weight: math.unit(190, "lb"),
  17823. name: "Back",
  17824. image: {
  17825. source: "./media/characters/bari/back.svg",
  17826. extra: 3260 / 2834,
  17827. bottom: 0.025
  17828. }
  17829. },
  17830. frontPlush: {
  17831. height: math.unit(5 + 2 / 12, "feet"),
  17832. weight: math.unit(190, "lb"),
  17833. name: "Front (Plush)",
  17834. image: {
  17835. source: "./media/characters/bari/front-plush.svg",
  17836. extra: 1112 / 1061,
  17837. bottom: 0.002
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Micro",
  17844. height: math.unit(3, "inches")
  17845. },
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(5 + 2 / 12, "feet"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(20, "feet")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(6 + 1 / 12, "feet"),
  17862. weight: math.unit(275, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/hunter-misha-raven/front.svg"
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Mortal",
  17872. height: math.unit(6 + 1 / 12, "feet")
  17873. },
  17874. {
  17875. name: "Divine",
  17876. height: math.unit(1.12134e34, "parsecs"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(6 + 3 / 12, "feet"),
  17886. weight: math.unit(220, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/max-calore/front.svg",
  17890. extra: 1700 / 1648,
  17891. bottom: 0.01
  17892. }
  17893. },
  17894. back: {
  17895. height: math.unit(6 + 3 / 12, "feet"),
  17896. weight: math.unit(220, "lb"),
  17897. name: "Back",
  17898. image: {
  17899. source: "./media/characters/max-calore/back.svg",
  17900. extra: 1700 / 1648,
  17901. bottom: 0.01
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(6 + 3 / 12, "feet"),
  17909. default: true
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17915. {
  17916. side: {
  17917. height: math.unit(2 + 8 / 12, "feet"),
  17918. weight: math.unit(99, "lb"),
  17919. name: "Side",
  17920. image: {
  17921. source: "./media/characters/aspen/side.svg",
  17922. extra: 152 / 138,
  17923. bottom: 0.032
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(2 + 8 / 12, "feet"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17937. {
  17938. side: {
  17939. height: math.unit(3 + 2 / 12, "feet"),
  17940. weight: math.unit(224, "lb"),
  17941. name: "Side",
  17942. image: {
  17943. source: "./media/characters/sheila-feral-wolf/side.svg",
  17944. extra: 179 / 166,
  17945. bottom: 0.03
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(3 + 2 / 12, "feet"),
  17953. default: true
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17959. {
  17960. side: {
  17961. height: math.unit(1 + 9 / 12, "feet"),
  17962. weight: math.unit(38, "lb"),
  17963. name: "Side",
  17964. image: {
  17965. source: "./media/characters/michelle/side.svg",
  17966. extra: 147 / 136.7,
  17967. bottom: 0.03
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(1 + 9 / 12, "feet"),
  17975. default: true
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(1.54, "feet"),
  17984. weight: math.unit(50, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/nino/front.svg"
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(1.54, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(1.49, "feet"),
  18004. weight: math.unit(45, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/viola/front.svg"
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(1.49, "feet"),
  18015. default: true
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(6 + 5 / 12, "feet"),
  18024. weight: math.unit(580, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/atlas/front.svg",
  18028. extra: 298.5 / 290,
  18029. bottom: 0.015
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 5 / 12, "feet"),
  18037. default: true
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18043. {
  18044. side: {
  18045. height: math.unit(15.6, "inches"),
  18046. weight: math.unit(10, "lb"),
  18047. name: "Side",
  18048. image: {
  18049. source: "./media/characters/davy/side.svg",
  18050. extra: 200 / 170,
  18051. bottom: 0.01
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(15.6, "inches"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18065. {
  18066. side: {
  18067. height: math.unit(4 + 8 / 12, "feet"),
  18068. weight: math.unit(166, "lb"),
  18069. name: "Side",
  18070. image: {
  18071. source: "./media/characters/fiona/side.svg",
  18072. extra: 232 / 220,
  18073. bottom: 0.03
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(4 + 8 / 12, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18087. {
  18088. front: {
  18089. height: math.unit(26, "inches"),
  18090. weight: math.unit(35, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/lyla/front.svg",
  18094. bottom: 0.1
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(3, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18108. {
  18109. side: {
  18110. height: math.unit(1.8, "feet"),
  18111. weight: math.unit(44, "lb"),
  18112. name: "Side",
  18113. image: {
  18114. source: "./media/characters/perseus/side.svg",
  18115. bottom: 0.21
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(1.8, "feet"),
  18123. default: true
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18129. {
  18130. side: {
  18131. height: math.unit(4 + 2 / 12, "feet"),
  18132. weight: math.unit(20, "lb"),
  18133. name: "Side",
  18134. image: {
  18135. source: "./media/characters/remus/side.svg"
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(4 + 2 / 12, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(4 + 11 / 12, "feet"),
  18152. weight: math.unit(114, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/raf/front.svg",
  18156. extra: 1504/1339,
  18157. bottom: 26/1530
  18158. }
  18159. },
  18160. side: {
  18161. height: math.unit(4 + 11 / 12, "feet"),
  18162. weight: math.unit(114, "lb"),
  18163. name: "Side",
  18164. image: {
  18165. source: "./media/characters/raf/side.svg",
  18166. extra: 1466/1316,
  18167. bottom: 29/1495
  18168. }
  18169. },
  18170. paw: {
  18171. height: math.unit(1.45, "feet"),
  18172. name: "Paw",
  18173. image: {
  18174. source: "./media/characters/raf/paw.svg"
  18175. },
  18176. extraAttributes: {
  18177. "toeSize": {
  18178. name: "Toe Size",
  18179. power: 2,
  18180. type: "area",
  18181. base: math.unit(0.004, "m^2")
  18182. },
  18183. "padSize": {
  18184. name: "Pad Size",
  18185. power: 2,
  18186. type: "area",
  18187. base: math.unit(0.04, "m^2")
  18188. },
  18189. "footSize": {
  18190. name: "Foot Size",
  18191. power: 2,
  18192. type: "area",
  18193. base: math.unit(0.08, "m^2")
  18194. },
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Micro",
  18201. height: math.unit(2, "inches")
  18202. },
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(4 + 11 / 12, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Macro",
  18210. height: math.unit(70, "feet")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(1.5, "meters"),
  18219. weight: math.unit(68, "kg"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/liam-einarr/front.svg",
  18223. extra: 2822 / 2666
  18224. }
  18225. },
  18226. back: {
  18227. height: math.unit(1.5, "meters"),
  18228. weight: math.unit(68, "kg"),
  18229. name: "Back",
  18230. image: {
  18231. source: "./media/characters/liam-einarr/back.svg",
  18232. extra: 2822 / 2666,
  18233. bottom: 0.015
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(1.5, "meters"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "Macro",
  18245. height: math.unit(150, "meters")
  18246. },
  18247. {
  18248. name: "Megamacro",
  18249. height: math.unit(35, "km")
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18255. {
  18256. front: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(75, "kg"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/linda/front.svg",
  18262. extra: 930 / 874,
  18263. bottom: 0.004
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(6, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6 + 8 / 12, "feet"),
  18280. weight: math.unit(220, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/caylex/front.svg",
  18284. extra: 821 / 772,
  18285. bottom: 0.07
  18286. }
  18287. },
  18288. back: {
  18289. height: math.unit(6 + 8 / 12, "feet"),
  18290. weight: math.unit(220, "lb"),
  18291. name: "Back",
  18292. image: {
  18293. source: "./media/characters/caylex/back.svg",
  18294. extra: 821 / 772,
  18295. bottom: 0.022
  18296. }
  18297. },
  18298. hand: {
  18299. height: math.unit(1.25, "feet"),
  18300. name: "Hand",
  18301. image: {
  18302. source: "./media/characters/caylex/hand.svg"
  18303. }
  18304. },
  18305. foot: {
  18306. height: math.unit(1.6, "feet"),
  18307. name: "Foot",
  18308. image: {
  18309. source: "./media/characters/caylex/foot.svg"
  18310. }
  18311. },
  18312. armored: {
  18313. height: math.unit(6 + 8 / 12, "feet"),
  18314. weight: math.unit(250, "lb"),
  18315. name: "Armored",
  18316. image: {
  18317. source: "./media/characters/caylex/armored.svg",
  18318. extra: 1420 / 1310,
  18319. bottom: 0.045
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(6 + 8 / 12, "feet"),
  18327. default: true
  18328. },
  18329. {
  18330. name: "Normal+",
  18331. height: math.unit(12, "feet")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(7 + 6 / 12, "feet"),
  18340. weight: math.unit(288, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/alana/front.svg",
  18344. extra: 679 / 653,
  18345. bottom: 22.5 / 701
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(7 + 6 / 12, "feet")
  18353. },
  18354. {
  18355. name: "Large",
  18356. height: math.unit(50, "feet")
  18357. },
  18358. {
  18359. name: "Macro",
  18360. height: math.unit(100, "feet"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Macro+",
  18365. height: math.unit(200, "feet")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(6 + 1 / 12, "feet"),
  18374. weight: math.unit(210, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/hasani/front.svg",
  18378. extra: 244 / 232,
  18379. bottom: 0.01
  18380. }
  18381. },
  18382. back: {
  18383. height: math.unit(6 + 1 / 12, "feet"),
  18384. weight: math.unit(210, "lb"),
  18385. name: "Back",
  18386. image: {
  18387. source: "./media/characters/hasani/back.svg",
  18388. extra: 244 / 232,
  18389. bottom: 0.01
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(6 + 1 / 12, "feet")
  18397. },
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(175, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(1.82, "meters"),
  18410. weight: math.unit(140, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/nita/front.svg",
  18414. extra: 2473 / 2363,
  18415. bottom: 0.01
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(1.82, "m")
  18423. },
  18424. {
  18425. name: "Macro",
  18426. height: math.unit(300, "m")
  18427. },
  18428. {
  18429. name: "Mistake Canon",
  18430. height: math.unit(0.5, "miles"),
  18431. default: true
  18432. },
  18433. {
  18434. name: "Big Mistake",
  18435. height: math.unit(13, "miles")
  18436. },
  18437. {
  18438. name: "Playing God",
  18439. height: math.unit(2450, "miles")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(4, "feet"),
  18448. weight: math.unit(120, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/shiriko/front.svg",
  18452. extra: 970/934,
  18453. bottom: 5/975
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(4, "feet"),
  18461. default: true
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6, "feet"),
  18470. name: "front",
  18471. image: {
  18472. source: "./media/characters/deja/front.svg",
  18473. extra: 926 / 840,
  18474. bottom: 0.07
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Planck Length",
  18481. height: math.unit(1.6e-35, "meters")
  18482. },
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(30.48, "meters"),
  18486. default: true
  18487. },
  18488. {
  18489. name: "Universal",
  18490. height: math.unit(8.8e26, "meters")
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18496. {
  18497. side: {
  18498. height: math.unit(8, "feet"),
  18499. weight: math.unit(6300, "lb"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/anima/side.svg",
  18503. bottom: 0.035
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(8, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18517. {
  18518. front: {
  18519. height: math.unit(8, "feet"),
  18520. weight: math.unit(350, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/bianca/front.svg",
  18524. extra: 234 / 225,
  18525. bottom: 0.03
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(8, "feet"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(11 + 5/12, "feet"),
  18542. weight: math.unit(1200, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/adinia/front.svg",
  18546. extra: 1767/1641,
  18547. bottom: 44/1811
  18548. },
  18549. extraAttributes: {
  18550. "energyIntake": {
  18551. name: "Energy Intake",
  18552. power: 3,
  18553. type: "energy",
  18554. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18555. },
  18556. }
  18557. },
  18558. back: {
  18559. height: math.unit(11 + 5/12, "feet"),
  18560. weight: math.unit(1200, "lb"),
  18561. name: "Back",
  18562. image: {
  18563. source: "./media/characters/adinia/back.svg",
  18564. extra: 1834/1684,
  18565. bottom: 14/1848
  18566. },
  18567. extraAttributes: {
  18568. "energyIntake": {
  18569. name: "Energy Intake",
  18570. power: 3,
  18571. type: "energy",
  18572. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18573. },
  18574. }
  18575. },
  18576. maw: {
  18577. height: math.unit(3.79, "feet"),
  18578. name: "Maw",
  18579. image: {
  18580. source: "./media/characters/adinia/maw.svg"
  18581. }
  18582. },
  18583. rump: {
  18584. height: math.unit(4.6, "feet"),
  18585. name: "Rump",
  18586. image: {
  18587. source: "./media/characters/adinia/rump.svg"
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(11 + 5 / 12, "feet"),
  18595. default: true
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18601. {
  18602. front: {
  18603. height: math.unit(3, "meters"),
  18604. weight: math.unit(200, "kg"),
  18605. name: "Front",
  18606. image: {
  18607. source: "./media/characters/lykasa/front.svg",
  18608. extra: 1076 / 976,
  18609. bottom: 0.06
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(3, "meters")
  18617. },
  18618. {
  18619. name: "Kaiju",
  18620. height: math.unit(120, "meters"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Mega Kaiju",
  18625. height: math.unit(240, "km")
  18626. },
  18627. {
  18628. name: "Giga Kaiju",
  18629. height: math.unit(400, "megameters")
  18630. },
  18631. {
  18632. name: "Tera Kaiju",
  18633. height: math.unit(800, "gigameters")
  18634. },
  18635. {
  18636. name: "Kaiju Dragon Goddess",
  18637. height: math.unit(26, "zettaparsecs")
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18643. {
  18644. side: {
  18645. height: math.unit(283 / 124 * 6, "feet"),
  18646. weight: math.unit(35000, "lb"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/malfaren/side.svg",
  18650. extra: 1310/529,
  18651. bottom: 24/1334
  18652. }
  18653. },
  18654. front: {
  18655. height: math.unit(22.36, "feet"),
  18656. weight: math.unit(35000, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/malfaren/front.svg",
  18660. extra: 1237/1115,
  18661. bottom: 32/1269
  18662. }
  18663. },
  18664. maw: {
  18665. height: math.unit(6.9, "feet"),
  18666. name: "Maw",
  18667. image: {
  18668. source: "./media/characters/malfaren/maw.svg"
  18669. }
  18670. },
  18671. dick: {
  18672. height: math.unit(6.19, "feet"),
  18673. name: "Dick",
  18674. image: {
  18675. source: "./media/characters/malfaren/dick.svg"
  18676. }
  18677. },
  18678. eye: {
  18679. height: math.unit(0.69, "feet"),
  18680. name: "Eye",
  18681. image: {
  18682. source: "./media/characters/malfaren/eye.svg"
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Big",
  18689. height: math.unit(283 / 162 * 6, "feet"),
  18690. },
  18691. {
  18692. name: "Bigger",
  18693. height: math.unit(283 / 124 * 6, "feet")
  18694. },
  18695. {
  18696. name: "Massive",
  18697. height: math.unit(283 / 92 * 6, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "👀💦",
  18702. height: math.unit(283 / 73 * 6, "feet"),
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(1.7, "m"),
  18711. weight: math.unit(70, "kg"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/kernel/front.svg",
  18715. extra: 222 / 210,
  18716. bottom: 0.007
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Nano",
  18723. height: math.unit(17, "micrometers")
  18724. },
  18725. {
  18726. name: "Micro",
  18727. height: math.unit(1.7, "mm")
  18728. },
  18729. {
  18730. name: "Small",
  18731. height: math.unit(1.7, "cm")
  18732. },
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(1.7, "m"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(1.75, "meters"),
  18745. weight: math.unit(65, "kg"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/jayne-folest/front.svg",
  18749. extra: 2115 / 2007,
  18750. bottom: 0.02
  18751. }
  18752. },
  18753. back: {
  18754. height: math.unit(1.75, "meters"),
  18755. weight: math.unit(65, "kg"),
  18756. name: "Back",
  18757. image: {
  18758. source: "./media/characters/jayne-folest/back.svg",
  18759. extra: 2115 / 2007,
  18760. bottom: 0.005
  18761. }
  18762. },
  18763. frontClothed: {
  18764. height: math.unit(1.75, "meters"),
  18765. weight: math.unit(65, "kg"),
  18766. name: "Front (Clothed)",
  18767. image: {
  18768. source: "./media/characters/jayne-folest/front-clothed.svg",
  18769. extra: 2115 / 2007,
  18770. bottom: 0.035
  18771. }
  18772. },
  18773. hand: {
  18774. height: math.unit(1 / 1.260, "feet"),
  18775. name: "Hand",
  18776. image: {
  18777. source: "./media/characters/jayne-folest/hand.svg"
  18778. }
  18779. },
  18780. foot: {
  18781. height: math.unit(1 / 0.918, "feet"),
  18782. name: "Foot",
  18783. image: {
  18784. source: "./media/characters/jayne-folest/foot.svg"
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Micro",
  18791. height: math.unit(4, "cm")
  18792. },
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(1.75, "meters")
  18796. },
  18797. {
  18798. name: "Macro",
  18799. height: math.unit(47.5, "meters"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18806. {
  18807. front: {
  18808. height: math.unit(180, "cm"),
  18809. weight: math.unit(70, "kg"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/algier/front.svg",
  18813. extra: 596 / 572,
  18814. bottom: 0.04
  18815. }
  18816. },
  18817. back: {
  18818. height: math.unit(180, "cm"),
  18819. weight: math.unit(70, "kg"),
  18820. name: "Back",
  18821. image: {
  18822. source: "./media/characters/algier/back.svg",
  18823. extra: 596 / 572,
  18824. bottom: 0.025
  18825. }
  18826. },
  18827. frontdressed: {
  18828. height: math.unit(180, "cm"),
  18829. weight: math.unit(150, "kg"),
  18830. name: "Front-dressed",
  18831. image: {
  18832. source: "./media/characters/algier/front-dressed.svg",
  18833. extra: 596 / 572,
  18834. bottom: 0.038
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Micro",
  18841. height: math.unit(5, "cm")
  18842. },
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(180, "cm"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(64, "m")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18856. {
  18857. upright: {
  18858. height: math.unit(7, "feet"),
  18859. weight: math.unit(300, "lb"),
  18860. name: "Upright",
  18861. image: {
  18862. source: "./media/characters/pretzel/upright.svg",
  18863. extra: 534 / 522,
  18864. bottom: 0.065
  18865. }
  18866. },
  18867. sprawling: {
  18868. height: math.unit(3.75, "feet"),
  18869. weight: math.unit(300, "lb"),
  18870. name: "Sprawling",
  18871. image: {
  18872. source: "./media/characters/pretzel/sprawling.svg",
  18873. extra: 314 / 281,
  18874. bottom: 0.1
  18875. }
  18876. },
  18877. tongue: {
  18878. height: math.unit(2, "feet"),
  18879. name: "Tongue",
  18880. image: {
  18881. source: "./media/characters/pretzel/tongue.svg"
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(7, "feet"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Oversized",
  18893. height: math.unit(15, "feet")
  18894. },
  18895. {
  18896. name: "Huge",
  18897. height: math.unit(30, "feet")
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(250, "feet")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18907. {
  18908. sideFront: {
  18909. height: math.unit(5 + 2 / 12, "feet"),
  18910. weight: math.unit(120, "lb"),
  18911. name: "Front Side",
  18912. image: {
  18913. source: "./media/characters/roxi/side-front.svg",
  18914. extra: 2924 / 2717,
  18915. bottom: 0.08
  18916. }
  18917. },
  18918. sideBack: {
  18919. height: math.unit(5 + 2 / 12, "feet"),
  18920. weight: math.unit(120, "lb"),
  18921. name: "Back Side",
  18922. image: {
  18923. source: "./media/characters/roxi/side-back.svg",
  18924. extra: 2904 / 2693,
  18925. bottom: 0.06
  18926. }
  18927. },
  18928. front: {
  18929. height: math.unit(5 + 2 / 12, "feet"),
  18930. weight: math.unit(120, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/roxi/front.svg",
  18934. extra: 2028 / 1907,
  18935. bottom: 0.01
  18936. }
  18937. },
  18938. frontAlt: {
  18939. height: math.unit(5 + 2 / 12, "feet"),
  18940. weight: math.unit(120, "lb"),
  18941. name: "Front (Alt)",
  18942. image: {
  18943. source: "./media/characters/roxi/front-alt.svg",
  18944. extra: 1828 / 1798,
  18945. bottom: 0.01
  18946. }
  18947. },
  18948. sitting: {
  18949. height: math.unit(2.8, "feet"),
  18950. weight: math.unit(120, "lb"),
  18951. name: "Sitting",
  18952. image: {
  18953. source: "./media/characters/roxi/sitting.svg",
  18954. extra: 2660 / 2462,
  18955. bottom: 0.1
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Normal",
  18962. height: math.unit(5 + 2 / 12, "feet"),
  18963. default: true
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18969. {
  18970. side: {
  18971. height: math.unit(55, "feet"),
  18972. weight: math.unit(153, "tons"),
  18973. name: "Side",
  18974. image: {
  18975. source: "./media/characters/shadow/side.svg",
  18976. extra: 701 / 628,
  18977. bottom: 0.02
  18978. }
  18979. },
  18980. flying: {
  18981. height: math.unit(145, "feet"),
  18982. weight: math.unit(153, "tons"),
  18983. name: "Flying",
  18984. image: {
  18985. source: "./media/characters/shadow/flying.svg"
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(55, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6, "feet"),
  19002. weight: math.unit(200, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/marcie/front.svg",
  19006. extra: 960 / 876,
  19007. bottom: 58 / 1017.87
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(1, "mile"),
  19015. default: true
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19021. {
  19022. front: {
  19023. height: math.unit(7, "feet"),
  19024. weight: math.unit(200, "lb"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/kachina/front.svg",
  19028. extra: 1290.68 / 1119,
  19029. bottom: 36.5 / 1327.18
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(7, "feet"),
  19037. default: true
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19043. {
  19044. looking: {
  19045. height: math.unit(2, "meters"),
  19046. weight: math.unit(300, "kg"),
  19047. name: "Looking",
  19048. image: {
  19049. source: "./media/characters/kash/looking.svg",
  19050. extra: 474 / 344,
  19051. bottom: 0.03
  19052. }
  19053. },
  19054. side: {
  19055. height: math.unit(2, "meters"),
  19056. weight: math.unit(300, "kg"),
  19057. name: "Side",
  19058. image: {
  19059. source: "./media/characters/kash/side.svg",
  19060. extra: 302 / 251,
  19061. bottom: 0.03
  19062. }
  19063. },
  19064. front: {
  19065. height: math.unit(2, "meters"),
  19066. weight: math.unit(300, "kg"),
  19067. name: "Front",
  19068. image: {
  19069. source: "./media/characters/kash/front.svg",
  19070. extra: 495 / 360,
  19071. bottom: 0.015
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(2, "meters"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Big",
  19083. height: math.unit(3, "meters")
  19084. },
  19085. {
  19086. name: "Large",
  19087. height: math.unit(5, "meters")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19093. {
  19094. feeding: {
  19095. height: math.unit(6.7, "feet"),
  19096. weight: math.unit(350, "lb"),
  19097. name: "Feeding",
  19098. image: {
  19099. source: "./media/characters/lalim/feeding.svg",
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Normal",
  19106. height: math.unit(6.7, "feet"),
  19107. default: true
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(9.5, "feet"),
  19116. weight: math.unit(600, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/de'vout/front.svg",
  19120. extra: 1443 / 1328,
  19121. bottom: 0.025
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(9.5, "feet"),
  19126. weight: math.unit(600, "lb"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/de'vout/back.svg",
  19130. extra: 1443 / 1328
  19131. }
  19132. },
  19133. frontDressed: {
  19134. height: math.unit(9.5, "feet"),
  19135. weight: math.unit(600, "lb"),
  19136. name: "Front (Dressed",
  19137. image: {
  19138. source: "./media/characters/de'vout/front-dressed.svg",
  19139. extra: 1443 / 1328,
  19140. bottom: 0.025
  19141. }
  19142. },
  19143. backDressed: {
  19144. height: math.unit(9.5, "feet"),
  19145. weight: math.unit(600, "lb"),
  19146. name: "Back (Dressed",
  19147. image: {
  19148. source: "./media/characters/de'vout/back-dressed.svg",
  19149. extra: 1443 / 1328
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(9.5, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(8, "feet"),
  19166. weight: math.unit(225, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/talana/front.svg",
  19170. extra: 1410 / 1300,
  19171. bottom: 0.015
  19172. }
  19173. },
  19174. frontDressed: {
  19175. height: math.unit(8, "feet"),
  19176. weight: math.unit(225, "lb"),
  19177. name: "Front (Dressed",
  19178. image: {
  19179. source: "./media/characters/talana/front-dressed.svg",
  19180. extra: 1410 / 1300,
  19181. bottom: 0.015
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(8, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19195. {
  19196. side: {
  19197. height: math.unit(7.2, "feet"),
  19198. weight: math.unit(150, "lb"),
  19199. name: "Side",
  19200. image: {
  19201. source: "./media/characters/xeauvok/side.svg",
  19202. extra: 1975 / 1523,
  19203. bottom: 0.07
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(7.2, "feet"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19217. {
  19218. side: {
  19219. height: math.unit(4, "meters"),
  19220. weight: math.unit(2200, "kg"),
  19221. name: "Side",
  19222. image: {
  19223. source: "./media/characters/zara/side.svg",
  19224. extra: 765/744,
  19225. bottom: 156/921
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(4, "meters"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19239. {
  19240. side: {
  19241. height: math.unit(6, "feet"),
  19242. weight: math.unit(150, "lb"),
  19243. name: "Side",
  19244. image: {
  19245. source: "./media/characters/richard-dragon/side.svg",
  19246. extra: 845 / 340,
  19247. bottom: 0.017
  19248. }
  19249. },
  19250. maw: {
  19251. height: math.unit(2.97, "feet"),
  19252. name: "Maw",
  19253. image: {
  19254. source: "./media/characters/richard-dragon/maw.svg"
  19255. }
  19256. },
  19257. },
  19258. [
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(4, "feet"),
  19266. weight: math.unit(100, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/richard-smeargle/front.svg",
  19270. extra: 2952 / 2820,
  19271. bottom: 0.028
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(4, "feet"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Dynamax",
  19283. height: math.unit(20, "meters")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(110, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/klay/front.svg",
  19296. extra: 962 / 883,
  19297. bottom: 0.04
  19298. }
  19299. },
  19300. back: {
  19301. height: math.unit(6, "feet"),
  19302. weight: math.unit(110, "lb"),
  19303. name: "Back",
  19304. image: {
  19305. source: "./media/characters/klay/back.svg",
  19306. extra: 962 / 883
  19307. }
  19308. },
  19309. beans: {
  19310. height: math.unit(1.15, "feet"),
  19311. name: "Beans",
  19312. image: {
  19313. source: "./media/characters/klay/beans.svg"
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Micro",
  19320. height: math.unit(6, "inches")
  19321. },
  19322. {
  19323. name: "Mini",
  19324. height: math.unit(3, "feet")
  19325. },
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6, "feet"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Big",
  19333. height: math.unit(25, "feet")
  19334. },
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(100, "feet")
  19338. },
  19339. {
  19340. name: "Megamacro",
  19341. height: math.unit(400, "feet")
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(6, "feet"),
  19350. weight: math.unit(160, "lb"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/marcus/front.svg",
  19354. extra: 734 / 676,
  19355. bottom: 0.03
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Little",
  19362. height: math.unit(6, "feet")
  19363. },
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(110, "feet"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Macro",
  19371. height: math.unit(250, "feet")
  19372. },
  19373. {
  19374. name: "Megamacro",
  19375. height: math.unit(1000, "feet")
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19381. {
  19382. front: {
  19383. height: math.unit(7, "feet"),
  19384. weight: math.unit(275, "lb"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/claude-delroute/front.svg",
  19388. extra: 902/827,
  19389. bottom: 26/928
  19390. }
  19391. },
  19392. side: {
  19393. height: math.unit(7, "feet"),
  19394. weight: math.unit(275, "lb"),
  19395. name: "Side",
  19396. image: {
  19397. source: "./media/characters/claude-delroute/side.svg",
  19398. extra: 908/853,
  19399. bottom: 16/924
  19400. }
  19401. },
  19402. back: {
  19403. height: math.unit(7, "feet"),
  19404. weight: math.unit(275, "lb"),
  19405. name: "Back",
  19406. image: {
  19407. source: "./media/characters/claude-delroute/back.svg",
  19408. extra: 911/829,
  19409. bottom: 18/929
  19410. }
  19411. },
  19412. maw: {
  19413. height: math.unit(0.6407, "meters"),
  19414. name: "Maw",
  19415. image: {
  19416. source: "./media/characters/claude-delroute/maw.svg"
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(7, "feet"),
  19424. default: true
  19425. },
  19426. {
  19427. name: "Lorge",
  19428. height: math.unit(20, "feet")
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(8 + 4 / 12, "feet"),
  19437. weight: math.unit(600, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/dragonien/front.svg",
  19441. extra: 100 / 94,
  19442. bottom: 3.3 / 103.3445
  19443. }
  19444. },
  19445. back: {
  19446. height: math.unit(8 + 4 / 12, "feet"),
  19447. weight: math.unit(600, "lb"),
  19448. name: "Back",
  19449. image: {
  19450. source: "./media/characters/dragonien/back.svg",
  19451. extra: 776 / 746,
  19452. bottom: 6.4 / 782.0616
  19453. }
  19454. },
  19455. foot: {
  19456. height: math.unit(1.54, "feet"),
  19457. name: "Foot",
  19458. image: {
  19459. source: "./media/characters/dragonien/foot.svg",
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(8 + 4 / 12, "feet"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(200, "feet")
  19472. },
  19473. {
  19474. name: "Megamacro",
  19475. height: math.unit(1, "mile")
  19476. },
  19477. {
  19478. name: "Gigamacro",
  19479. height: math.unit(1000, "miles")
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(5 + 2 / 12, "feet"),
  19488. weight: math.unit(110, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/desta/front.svg",
  19492. extra: 767 / 726,
  19493. bottom: 11.7 / 779
  19494. }
  19495. },
  19496. back: {
  19497. height: math.unit(5 + 2 / 12, "feet"),
  19498. weight: math.unit(110, "lb"),
  19499. name: "Back",
  19500. image: {
  19501. source: "./media/characters/desta/back.svg",
  19502. extra: 777 / 728,
  19503. bottom: 6 / 784
  19504. }
  19505. },
  19506. frontAlt: {
  19507. height: math.unit(5 + 2 / 12, "feet"),
  19508. weight: math.unit(110, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/desta/front-alt.svg",
  19512. extra: 1482 / 1417
  19513. }
  19514. },
  19515. side: {
  19516. height: math.unit(5 + 2 / 12, "feet"),
  19517. weight: math.unit(110, "lb"),
  19518. name: "Side",
  19519. image: {
  19520. source: "./media/characters/desta/side.svg",
  19521. extra: 2579 / 2491,
  19522. bottom: 0.053
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Micro",
  19529. height: math.unit(6, "inches")
  19530. },
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(5 + 2 / 12, "feet"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(62, "feet")
  19539. },
  19540. {
  19541. name: "Megamacro",
  19542. height: math.unit(1800, "feet")
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(10, "feet"),
  19551. weight: math.unit(700, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/storm-alystar/front.svg",
  19555. extra: 2112 / 1898,
  19556. bottom: 0.034
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Micro",
  19563. height: math.unit(3.5, "inches")
  19564. },
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(10, "feet"),
  19568. default: true
  19569. },
  19570. {
  19571. name: "Macro",
  19572. height: math.unit(400, "feet")
  19573. },
  19574. {
  19575. name: "Deific",
  19576. height: math.unit(60, "miles")
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(2.35, "meters"),
  19585. weight: math.unit(119, "kg"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/ilia/front.svg",
  19589. extra: 1285 / 1255,
  19590. bottom: 0.06
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(2.35, "meters")
  19598. },
  19599. {
  19600. name: "Macro",
  19601. height: math.unit(140, "meters"),
  19602. default: true
  19603. },
  19604. {
  19605. name: "Megamacro",
  19606. height: math.unit(100, "miles")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(6 + 5 / 12, "feet"),
  19615. weight: math.unit(190, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/kingdead/front.svg",
  19619. extra: 1228 / 1177
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(7, "inches")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(6 + 5 / 12, "feet")
  19631. },
  19632. {
  19633. name: "Macro",
  19634. height: math.unit(150, "feet"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Megamacro",
  19639. height: math.unit(200, "miles")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19645. {
  19646. front: {
  19647. height: math.unit(8, "feet"),
  19648. weight: math.unit(600, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/kyrehx/front.svg",
  19652. extra: 1195 / 1095,
  19653. bottom: 0.034
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Micro",
  19660. height: math.unit(2, "inches")
  19661. },
  19662. {
  19663. name: "Normal",
  19664. height: math.unit(8, "feet"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(255, "feet")
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19675. {
  19676. front: {
  19677. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19678. weight: math.unit(184, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/xang/front.svg",
  19682. extra: 845 / 755
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Macro",
  19694. height: math.unit(0.935 * 146, "feet")
  19695. },
  19696. {
  19697. name: "Megamacro",
  19698. height: math.unit(0.935 * 3, "miles")
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19704. {
  19705. frontDressed: {
  19706. height: math.unit(5 + 7 / 12, "feet"),
  19707. weight: math.unit(140, "lb"),
  19708. name: "Front (Dressed)",
  19709. image: {
  19710. source: "./media/characters/doc-weardno/front-dressed.svg",
  19711. extra: 263 / 234
  19712. }
  19713. },
  19714. backDressed: {
  19715. height: math.unit(5 + 7 / 12, "feet"),
  19716. weight: math.unit(140, "lb"),
  19717. name: "Back (Dressed)",
  19718. image: {
  19719. source: "./media/characters/doc-weardno/back-dressed.svg",
  19720. extra: 266 / 238
  19721. }
  19722. },
  19723. front: {
  19724. height: math.unit(5 + 7 / 12, "feet"),
  19725. weight: math.unit(140, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/doc-weardno/front.svg",
  19729. extra: 254 / 233
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Micro",
  19736. height: math.unit(3, "inches")
  19737. },
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(5 + 7 / 12, "feet"),
  19741. default: true
  19742. },
  19743. {
  19744. name: "Macro",
  19745. height: math.unit(25, "feet")
  19746. },
  19747. {
  19748. name: "Megamacro",
  19749. height: math.unit(2, "miles")
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(6 + 2 / 12, "feet"),
  19758. weight: math.unit(153, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/seth-whilst/front.svg",
  19762. bottom: 0.07
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Micro",
  19769. height: math.unit(5, "inches")
  19770. },
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6 + 2 / 12, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(3, "inches"),
  19783. weight: math.unit(8, "grams"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/pocket-jabari/front.svg",
  19787. extra: 1024 / 974,
  19788. bottom: 0.039
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Minimicro",
  19795. height: math.unit(8, "mm")
  19796. },
  19797. {
  19798. name: "Micro",
  19799. height: math.unit(3, "inches"),
  19800. default: true
  19801. },
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(3, "feet")
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19810. {
  19811. frontDressed: {
  19812. height: math.unit(15, "feet"),
  19813. weight: math.unit(3280, "lb"),
  19814. name: "Front (Dressed)",
  19815. image: {
  19816. source: "./media/characters/sapphy/front-dressed.svg",
  19817. extra: 1951/1654,
  19818. bottom: 194/2145
  19819. },
  19820. form: "anthro",
  19821. default: true
  19822. },
  19823. backDressed: {
  19824. height: math.unit(15, "feet"),
  19825. weight: math.unit(3280, "lb"),
  19826. name: "Back (Dressed)",
  19827. image: {
  19828. source: "./media/characters/sapphy/back-dressed.svg",
  19829. extra: 2058/1918,
  19830. bottom: 125/2183
  19831. },
  19832. form: "anthro"
  19833. },
  19834. frontNude: {
  19835. height: math.unit(15, "feet"),
  19836. weight: math.unit(3280, "lb"),
  19837. name: "Front (Nude)",
  19838. image: {
  19839. source: "./media/characters/sapphy/front-nude.svg",
  19840. extra: 1951/1654,
  19841. bottom: 194/2145
  19842. },
  19843. form: "anthro"
  19844. },
  19845. backNude: {
  19846. height: math.unit(15, "feet"),
  19847. weight: math.unit(3280, "lb"),
  19848. name: "Back (Nude)",
  19849. image: {
  19850. source: "./media/characters/sapphy/back-nude.svg",
  19851. extra: 2058/1918,
  19852. bottom: 125/2183
  19853. },
  19854. form: "anthro"
  19855. },
  19856. full: {
  19857. height: math.unit(15, "feet"),
  19858. weight: math.unit(3280, "lb"),
  19859. name: "Full",
  19860. image: {
  19861. source: "./media/characters/sapphy/full.svg",
  19862. extra: 1396/1317,
  19863. bottom: 44/1440
  19864. },
  19865. form: "anthro"
  19866. },
  19867. dick: {
  19868. height: math.unit(3.8, "feet"),
  19869. name: "Dick",
  19870. image: {
  19871. source: "./media/characters/sapphy/dick.svg"
  19872. },
  19873. form: "anthro"
  19874. },
  19875. feral: {
  19876. height: math.unit(35, "feet"),
  19877. weight: math.unit(160, "tons"),
  19878. name: "Feral",
  19879. image: {
  19880. source: "./media/characters/sapphy/feral.svg",
  19881. extra: 1050/573,
  19882. bottom: 60/1110
  19883. },
  19884. form: "feral",
  19885. default: true
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(15, "feet"),
  19892. form: "anthro"
  19893. },
  19894. {
  19895. name: "Casual Macro",
  19896. height: math.unit(120, "feet"),
  19897. form: "anthro"
  19898. },
  19899. {
  19900. name: "Macro",
  19901. height: math.unit(2150, "feet"),
  19902. default: true,
  19903. form: "anthro"
  19904. },
  19905. {
  19906. name: "Megamacro",
  19907. height: math.unit(8, "miles"),
  19908. form: "anthro"
  19909. },
  19910. {
  19911. name: "Galaxy Mom",
  19912. height: math.unit(6, "megalightyears"),
  19913. form: "anthro"
  19914. },
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(35, "feet"),
  19918. form: "feral",
  19919. default: true
  19920. },
  19921. {
  19922. name: "Macro",
  19923. height: math.unit(300, "feet"),
  19924. form: "feral"
  19925. },
  19926. {
  19927. name: "Galaxy Mom",
  19928. height: math.unit(10, "megalightyears"),
  19929. form: "feral"
  19930. },
  19931. ],
  19932. {
  19933. "anthro": {
  19934. name: "Anthro",
  19935. default: true
  19936. },
  19937. "feral": {
  19938. name: "Feral"
  19939. }
  19940. }
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(6, "feet"),
  19947. weight: math.unit(170, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/kiro/front.svg",
  19951. extra: 1064 / 1012,
  19952. bottom: 0.052
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Micro",
  19959. height: math.unit(6, "inches")
  19960. },
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(6, "feet"),
  19964. default: true
  19965. },
  19966. {
  19967. name: "Macro",
  19968. height: math.unit(72, "feet")
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(5 + 9 / 12, "feet"),
  19977. weight: math.unit(175, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/irishfox/front.svg",
  19981. extra: 1912 / 1680,
  19982. bottom: 0.02
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Nano",
  19989. height: math.unit(1, "mm")
  19990. },
  19991. {
  19992. name: "Micro",
  19993. height: math.unit(2, "inches")
  19994. },
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(5 + 9 / 12, "feet"),
  19998. default: true
  19999. },
  20000. {
  20001. name: "Macro",
  20002. height: math.unit(45, "feet")
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(6 + 1 / 12, "feet"),
  20011. weight: math.unit(75, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/aronai-sieyes/front.svg",
  20015. extra: 1532/1450,
  20016. bottom: 42/1574
  20017. }
  20018. },
  20019. side: {
  20020. height: math.unit(6 + 1 / 12, "feet"),
  20021. weight: math.unit(75, "lb"),
  20022. name: "Side",
  20023. image: {
  20024. source: "./media/characters/aronai-sieyes/side.svg",
  20025. extra: 1422/1365,
  20026. bottom: 148/1570
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(6 + 1 / 12, "feet"),
  20031. weight: math.unit(75, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/aronai-sieyes/back.svg",
  20035. extra: 1526/1464,
  20036. bottom: 51/1577
  20037. }
  20038. },
  20039. dressed: {
  20040. height: math.unit(6 + 1 / 12, "feet"),
  20041. weight: math.unit(75, "lb"),
  20042. name: "Dressed",
  20043. image: {
  20044. source: "./media/characters/aronai-sieyes/dressed.svg",
  20045. extra: 1559/1483,
  20046. bottom: 39/1598
  20047. }
  20048. },
  20049. slit: {
  20050. height: math.unit(1.3, "feet"),
  20051. name: "Slit",
  20052. image: {
  20053. source: "./media/characters/aronai-sieyes/slit.svg"
  20054. }
  20055. },
  20056. slitSpread: {
  20057. height: math.unit(0.9, "feet"),
  20058. name: "Slit (Spread)",
  20059. image: {
  20060. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20061. }
  20062. },
  20063. rump: {
  20064. height: math.unit(1.3, "feet"),
  20065. name: "Rump",
  20066. image: {
  20067. source: "./media/characters/aronai-sieyes/rump.svg"
  20068. }
  20069. },
  20070. maw: {
  20071. height: math.unit(1.25, "feet"),
  20072. name: "Maw",
  20073. image: {
  20074. source: "./media/characters/aronai-sieyes/maw.svg"
  20075. }
  20076. },
  20077. feral: {
  20078. height: math.unit(18, "feet"),
  20079. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20080. name: "Feral",
  20081. image: {
  20082. source: "./media/characters/aronai-sieyes/feral.svg",
  20083. extra: 1530 / 1240,
  20084. bottom: 0.035
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Micro",
  20091. height: math.unit(2, "inches")
  20092. },
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(6 + 1 / 12, "feet"),
  20096. default: true
  20097. }
  20098. ]
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20102. {
  20103. front: {
  20104. height: math.unit(12, "feet"),
  20105. weight: math.unit(410, "kg"),
  20106. name: "Front",
  20107. image: {
  20108. source: "./media/characters/xuna/front.svg",
  20109. extra: 2184 / 1980
  20110. }
  20111. },
  20112. side: {
  20113. height: math.unit(12, "feet"),
  20114. weight: math.unit(410, "kg"),
  20115. name: "Side",
  20116. image: {
  20117. source: "./media/characters/xuna/side.svg",
  20118. extra: 2184 / 1980
  20119. }
  20120. },
  20121. back: {
  20122. height: math.unit(12, "feet"),
  20123. weight: math.unit(410, "kg"),
  20124. name: "Back",
  20125. image: {
  20126. source: "./media/characters/xuna/back.svg",
  20127. extra: 2184 / 1980
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Nano glow",
  20134. height: math.unit(10, "nm")
  20135. },
  20136. {
  20137. name: "Micro floof",
  20138. height: math.unit(0.3, "m")
  20139. },
  20140. {
  20141. name: "Huggable softy boi",
  20142. height: math.unit(3.6576, "m"),
  20143. default: true
  20144. },
  20145. {
  20146. name: "Admirable floof",
  20147. height: math.unit(80, "meters")
  20148. },
  20149. {
  20150. name: "Gentle macro",
  20151. height: math.unit(300, "meters")
  20152. },
  20153. {
  20154. name: "Very careful floof",
  20155. height: math.unit(3200, "meters")
  20156. },
  20157. {
  20158. name: "The mega floof",
  20159. height: math.unit(36000, "meters")
  20160. },
  20161. {
  20162. name: "Giga-fur-Wicker",
  20163. height: math.unit(4800000, "meters")
  20164. },
  20165. {
  20166. name: "Licky world",
  20167. height: math.unit(20000000, "meters")
  20168. },
  20169. {
  20170. name: "Floofy cyan sun",
  20171. height: math.unit(1500000000, "meters")
  20172. },
  20173. {
  20174. name: "Milky Wicker",
  20175. height: math.unit(1000000000000000000000, "meters")
  20176. },
  20177. {
  20178. name: "The observing Wicker",
  20179. height: math.unit(999999999999999999999999999, "meters")
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20185. {
  20186. front: {
  20187. height: math.unit(5 + 9 / 12, "feet"),
  20188. weight: math.unit(150, "lb"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/arokha-sieyes/front.svg",
  20192. extra: 1425 / 1284,
  20193. bottom: 0.05
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(5 + 9 / 12, "feet")
  20201. },
  20202. {
  20203. name: "Macro",
  20204. height: math.unit(30, "meters"),
  20205. default: true
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20211. {
  20212. front: {
  20213. height: math.unit(6, "feet"),
  20214. weight: math.unit(180, "lb"),
  20215. name: "Front",
  20216. image: {
  20217. source: "./media/characters/arokh-sieyes/front.svg",
  20218. extra: 1830 / 1769,
  20219. bottom: 0.01
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(6, "feet")
  20227. },
  20228. {
  20229. name: "Macro",
  20230. height: math.unit(30, "meters"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20237. {
  20238. side: {
  20239. height: math.unit(13 + 1 / 12, "feet"),
  20240. weight: math.unit(8.5, "tonnes"),
  20241. name: "Side",
  20242. image: {
  20243. source: "./media/characters/goldeneye/side.svg",
  20244. extra: 1182 / 778,
  20245. bottom: 0.067
  20246. }
  20247. },
  20248. paw: {
  20249. height: math.unit(3.4, "feet"),
  20250. name: "Paw",
  20251. image: {
  20252. source: "./media/characters/goldeneye/paw.svg"
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(13 + 1 / 12, "feet"),
  20260. default: true
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20266. {
  20267. front: {
  20268. height: math.unit(6 + 1 / 12, "feet"),
  20269. weight: math.unit(210, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/leonardo-lycheborne/front.svg",
  20273. extra: 776/723,
  20274. bottom: 34/810
  20275. }
  20276. },
  20277. side: {
  20278. height: math.unit(6 + 1 / 12, "feet"),
  20279. weight: math.unit(210, "lb"),
  20280. name: "Side",
  20281. image: {
  20282. source: "./media/characters/leonardo-lycheborne/side.svg",
  20283. extra: 780/728,
  20284. bottom: 12/792
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(6 + 1 / 12, "feet"),
  20289. weight: math.unit(210, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/leonardo-lycheborne/back.svg",
  20293. extra: 775/721,
  20294. bottom: 17/792
  20295. }
  20296. },
  20297. hand: {
  20298. height: math.unit(1.08, "feet"),
  20299. name: "Hand",
  20300. image: {
  20301. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20302. }
  20303. },
  20304. foot: {
  20305. height: math.unit(1.32, "feet"),
  20306. name: "Foot",
  20307. image: {
  20308. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20309. }
  20310. },
  20311. maw: {
  20312. height: math.unit(1, "feet"),
  20313. name: "Maw",
  20314. image: {
  20315. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20316. }
  20317. },
  20318. were: {
  20319. height: math.unit(20, "feet"),
  20320. weight: math.unit(7800, "lb"),
  20321. name: "Were",
  20322. image: {
  20323. source: "./media/characters/leonardo-lycheborne/were.svg",
  20324. extra: 1224/1165,
  20325. bottom: 72/1296
  20326. }
  20327. },
  20328. feral: {
  20329. height: math.unit(7.5, "feet"),
  20330. weight: math.unit(600, "lb"),
  20331. name: "Feral",
  20332. image: {
  20333. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20334. extra: 797/702,
  20335. bottom: 139/936
  20336. }
  20337. },
  20338. taur: {
  20339. height: math.unit(11, "feet"),
  20340. weight: math.unit(3300, "lb"),
  20341. name: "Taur",
  20342. image: {
  20343. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20344. extra: 1271/1197,
  20345. bottom: 47/1318
  20346. }
  20347. },
  20348. barghest: {
  20349. height: math.unit(11, "feet"),
  20350. weight: math.unit(1300, "lb"),
  20351. name: "Barghest",
  20352. image: {
  20353. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20354. extra: 1291/1204,
  20355. bottom: 37/1328
  20356. }
  20357. },
  20358. dick: {
  20359. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20360. name: "Dick",
  20361. image: {
  20362. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20363. }
  20364. },
  20365. dickWere: {
  20366. height: math.unit((20) / 3.8, "feet"),
  20367. name: "Dick (Were)",
  20368. image: {
  20369. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(6 + 1 / 12, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(10, "feet"),
  20386. weight: math.unit(350, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/jet/front.svg",
  20390. extra: 2050 / 1980,
  20391. bottom: 0.013
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(10, "feet"),
  20396. weight: math.unit(350, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/jet/back.svg",
  20400. extra: 2050 / 1980,
  20401. bottom: 0.013
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Micro",
  20408. height: math.unit(6, "inches")
  20409. },
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(10, "feet"),
  20413. default: true
  20414. },
  20415. {
  20416. name: "Macro",
  20417. height: math.unit(100, "feet")
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20423. {
  20424. front: {
  20425. height: math.unit(15, "feet"),
  20426. weight: math.unit(2800, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/tanarath/front.svg",
  20430. extra: 2392 / 2220,
  20431. bottom: 0.03
  20432. }
  20433. },
  20434. back: {
  20435. height: math.unit(15, "feet"),
  20436. weight: math.unit(2800, "lb"),
  20437. name: "Back",
  20438. image: {
  20439. source: "./media/characters/tanarath/back.svg",
  20440. extra: 2392 / 2220,
  20441. bottom: 0.03
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Normal",
  20448. height: math.unit(15, "feet"),
  20449. default: true
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20455. {
  20456. front: {
  20457. height: math.unit(7 + 1 / 12, "feet"),
  20458. weight: math.unit(175, "lb"),
  20459. name: "Front",
  20460. image: {
  20461. source: "./media/characters/patty-cattybatty/front.svg",
  20462. extra: 908 / 874,
  20463. bottom: 0.025
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Micro",
  20470. height: math.unit(1, "inch")
  20471. },
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(7 + 1 / 12, "feet")
  20475. },
  20476. {
  20477. name: "Mini Macro",
  20478. height: math.unit(155, "feet")
  20479. },
  20480. {
  20481. name: "Macro",
  20482. height: math.unit(1077, "feet")
  20483. },
  20484. {
  20485. name: "Mega Macro",
  20486. height: math.unit(47650, "feet"),
  20487. default: true
  20488. },
  20489. {
  20490. name: "Giga Macro",
  20491. height: math.unit(440, "miles")
  20492. },
  20493. {
  20494. name: "Tera Macro",
  20495. height: math.unit(8700, "miles")
  20496. },
  20497. {
  20498. name: "Planetary Macro",
  20499. height: math.unit(32700, "miles")
  20500. },
  20501. {
  20502. name: "Solar Macro",
  20503. height: math.unit(550000, "miles")
  20504. },
  20505. {
  20506. name: "Celestial Macro",
  20507. height: math.unit(2.5, "AU")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(4 + 5 / 12, "feet"),
  20516. weight: math.unit(90, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/cappu/front.svg",
  20520. extra: 1247 / 1152,
  20521. bottom: 0.012
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(4 + 5 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20535. {
  20536. frontDressed: {
  20537. height: math.unit(70, "cm"),
  20538. weight: math.unit(6, "kg"),
  20539. name: "Front (Dressed)",
  20540. image: {
  20541. source: "./media/characters/sebi/front-dressed.svg",
  20542. extra: 713.5 / 686.5,
  20543. bottom: 0.003
  20544. }
  20545. },
  20546. front: {
  20547. height: math.unit(70, "cm"),
  20548. weight: math.unit(5, "kg"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/sebi/front.svg",
  20552. extra: 713.5 / 686.5,
  20553. bottom: 0.003
  20554. }
  20555. }
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(70, "cm"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Macro",
  20565. height: math.unit(8, "meters")
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(6, "feet"),
  20574. weight: math.unit(150, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/typhek/front.svg",
  20578. extra: 1948 / 1929,
  20579. bottom: 0.025
  20580. }
  20581. },
  20582. side: {
  20583. height: math.unit(6, "feet"),
  20584. weight: math.unit(150, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/typhek/side.svg",
  20588. extra: 2034 / 2010,
  20589. bottom: 0.003
  20590. }
  20591. },
  20592. back: {
  20593. height: math.unit(6, "feet"),
  20594. weight: math.unit(150, "lb"),
  20595. name: "Back",
  20596. image: {
  20597. source: "./media/characters/typhek/back.svg",
  20598. extra: 2005 / 1978,
  20599. bottom: 0.004
  20600. }
  20601. },
  20602. palm: {
  20603. height: math.unit(1.2, "feet"),
  20604. name: "Palm",
  20605. image: {
  20606. source: "./media/characters/typhek/palm.svg"
  20607. }
  20608. },
  20609. fist: {
  20610. height: math.unit(1.1, "feet"),
  20611. name: "Fist",
  20612. image: {
  20613. source: "./media/characters/typhek/fist.svg"
  20614. }
  20615. },
  20616. foot: {
  20617. height: math.unit(1.57, "feet"),
  20618. name: "Foot",
  20619. image: {
  20620. source: "./media/characters/typhek/foot.svg"
  20621. }
  20622. },
  20623. sole: {
  20624. height: math.unit(2.05, "feet"),
  20625. name: "Sole",
  20626. image: {
  20627. source: "./media/characters/typhek/sole.svg"
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Macro",
  20634. height: math.unit(40, "stories"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Megamacro",
  20639. height: math.unit(1, "mile")
  20640. },
  20641. {
  20642. name: "Gigamacro",
  20643. height: math.unit(4000, "solarradii")
  20644. },
  20645. {
  20646. name: "Universal",
  20647. height: math.unit(1.1, "universes")
  20648. }
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20653. {
  20654. side: {
  20655. height: math.unit(5 + 7 / 12, "feet"),
  20656. weight: math.unit(150, "lb"),
  20657. name: "Side",
  20658. image: {
  20659. source: "./media/characters/kassy/side.svg",
  20660. extra: 1280 / 1225,
  20661. bottom: 0.002
  20662. }
  20663. },
  20664. front: {
  20665. height: math.unit(5 + 7 / 12, "feet"),
  20666. weight: math.unit(150, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/kassy/front.svg",
  20670. extra: 1280 / 1225,
  20671. bottom: 0.025
  20672. }
  20673. },
  20674. back: {
  20675. height: math.unit(5 + 7 / 12, "feet"),
  20676. weight: math.unit(150, "lb"),
  20677. name: "Back",
  20678. image: {
  20679. source: "./media/characters/kassy/back.svg",
  20680. extra: 1280 / 1225,
  20681. bottom: 0.002
  20682. }
  20683. },
  20684. foot: {
  20685. height: math.unit(1.266, "feet"),
  20686. name: "Foot",
  20687. image: {
  20688. source: "./media/characters/kassy/foot.svg"
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(5 + 7 / 12, "feet")
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(137, "feet"),
  20700. default: true
  20701. },
  20702. {
  20703. name: "Megamacro",
  20704. height: math.unit(1, "mile")
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(6 + 1 / 12, "feet"),
  20713. weight: math.unit(200, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/neil/front.svg",
  20717. extra: 1326 / 1250,
  20718. bottom: 0.023
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 1 / 12, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Macro",
  20730. height: math.unit(200, "feet")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(5 + 9 / 12, "feet"),
  20739. weight: math.unit(190, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/atticus/front.svg",
  20743. extra: 2934 / 2785,
  20744. bottom: 0.025
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(5 + 9 / 12, "feet"),
  20752. default: true
  20753. },
  20754. {
  20755. name: "Macro",
  20756. height: math.unit(180, "feet")
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20762. {
  20763. side: {
  20764. height: math.unit(9, "feet"),
  20765. weight: math.unit(650, "lb"),
  20766. name: "Side",
  20767. image: {
  20768. source: "./media/characters/milo/side.svg",
  20769. extra: 2644 / 2310,
  20770. bottom: 0.032
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(9, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Macro",
  20782. height: math.unit(300, "feet")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20788. {
  20789. side: {
  20790. height: math.unit(8, "meters"),
  20791. weight: math.unit(90000, "kg"),
  20792. name: "Side",
  20793. image: {
  20794. source: "./media/characters/ijzer/side.svg",
  20795. extra: 2756 / 1600,
  20796. bottom: 0.01
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Small",
  20803. height: math.unit(3, "meters")
  20804. },
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(8, "meters"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Normal+",
  20812. height: math.unit(10, "meters")
  20813. },
  20814. {
  20815. name: "Bigger",
  20816. height: math.unit(24, "meters")
  20817. },
  20818. {
  20819. name: "Huge",
  20820. height: math.unit(80, "meters")
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(6 + 2 / 12, "feet"),
  20829. weight: math.unit(153, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/luca-cervicum/front.svg",
  20833. extra: 370 / 327,
  20834. bottom: 0.015
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(6 + 2 / 12, "feet"),
  20839. weight: math.unit(153, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/luca-cervicum/back.svg",
  20843. extra: 367 / 333,
  20844. bottom: 0.005
  20845. }
  20846. },
  20847. frontGear: {
  20848. height: math.unit(6 + 2 / 12, "feet"),
  20849. weight: math.unit(173, "lb"),
  20850. name: "Front (Gear)",
  20851. image: {
  20852. source: "./media/characters/luca-cervicum/front-gear.svg",
  20853. extra: 377 / 333,
  20854. bottom: 0.006
  20855. }
  20856. },
  20857. },
  20858. [
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(6 + 2 / 12, "feet"),
  20862. default: true
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(6 + 1 / 12, "feet"),
  20871. weight: math.unit(304, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/oliver/front.svg",
  20875. extra: 157 / 143,
  20876. bottom: 0.08
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(6 + 1 / 12, "feet"),
  20884. default: true
  20885. },
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(5 + 7 / 12, "feet"),
  20893. weight: math.unit(140, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/shane/front.svg",
  20897. extra: 304 / 289,
  20898. bottom: 0.005
  20899. }
  20900. },
  20901. },
  20902. [
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(5 + 7 / 12, "feet"),
  20906. default: true
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(5 + 9 / 12, "feet"),
  20915. weight: math.unit(178, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/shin/front.svg",
  20919. extra: 159 / 151,
  20920. bottom: 0.015
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(5 + 9 / 12, "feet"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(5 + 10 / 12, "feet"),
  20937. weight: math.unit(168, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/xerxes/front.svg",
  20941. extra: 282 / 260,
  20942. bottom: 0.045
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(5 + 10 / 12, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(6 + 7 / 12, "feet"),
  20959. weight: math.unit(208, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/chaska/front.svg",
  20963. extra: 332 / 319,
  20964. bottom: 0.015
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(6 + 7 / 12, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(5 + 8 / 12, "feet"),
  20981. weight: math.unit(208, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/enuk/front.svg",
  20985. extra: 437 / 406,
  20986. bottom: 0.02
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(5 + 8 / 12, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21000. {
  21001. front: {
  21002. height: math.unit(5 + 10 / 12, "feet"),
  21003. weight: math.unit(252, "lb"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/bruun/front.svg",
  21007. extra: 197 / 187,
  21008. bottom: 0.012
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(5 + 10 / 12, "feet"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(6 + 10 / 12, "feet"),
  21025. weight: math.unit(255, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/alexeev/front.svg",
  21029. extra: 213 / 200,
  21030. bottom: 0.05
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(6 + 10 / 12, "feet"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21044. {
  21045. front: {
  21046. height: math.unit(2 + 8 / 12, "feet"),
  21047. weight: math.unit(22, "lb"),
  21048. name: "Front",
  21049. image: {
  21050. source: "./media/characters/evelyn/front.svg",
  21051. extra: 208 / 180
  21052. }
  21053. },
  21054. },
  21055. [
  21056. {
  21057. name: "Normal",
  21058. height: math.unit(2 + 8 / 12, "feet"),
  21059. default: true
  21060. },
  21061. ]
  21062. ))
  21063. characterMakers.push(() => makeCharacter(
  21064. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21065. {
  21066. front: {
  21067. height: math.unit(5 + 9 / 12, "feet"),
  21068. weight: math.unit(139, "lb"),
  21069. name: "Front",
  21070. image: {
  21071. source: "./media/characters/inca/front.svg",
  21072. extra: 294 / 291,
  21073. bottom: 0.03
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Normal",
  21080. height: math.unit(5 + 9 / 12, "feet"),
  21081. default: true
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(6 + 3 / 12, "feet"),
  21090. weight: math.unit(185, "lb"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/mera/front.svg",
  21094. extra: 291 / 277,
  21095. bottom: 0.03
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(6 + 3 / 12, "feet"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(6 + 7 / 12, "feet"),
  21112. weight: math.unit(160, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/ceres/front.svg",
  21116. extra: 1023 / 950,
  21117. bottom: 0.027
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(6 + 7 / 12, "feet"),
  21122. weight: math.unit(160, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/ceres/back.svg",
  21126. extra: 1023 / 950
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(6 + 7 / 12, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(5 + 10 / 12, "feet"),
  21143. weight: math.unit(150, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/kris/front.svg",
  21147. extra: 885 / 803,
  21148. bottom: 0.03
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(5 + 10 / 12, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(7, "feet"),
  21165. weight: math.unit(120, "kg"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/taluthus/front.svg",
  21169. extra: 903 / 833,
  21170. bottom: 0.015
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(7, "feet"),
  21178. default: true
  21179. },
  21180. {
  21181. name: "Macro",
  21182. height: math.unit(300, "feet")
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21188. {
  21189. front: {
  21190. height: math.unit(5 + 9 / 12, "feet"),
  21191. weight: math.unit(145, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/dawn/front.svg",
  21195. extra: 2094 / 2016,
  21196. bottom: 0.025
  21197. }
  21198. },
  21199. back: {
  21200. height: math.unit(5 + 9 / 12, "feet"),
  21201. weight: math.unit(160, "lb"),
  21202. name: "Back",
  21203. image: {
  21204. source: "./media/characters/dawn/back.svg",
  21205. extra: 2112 / 2080,
  21206. bottom: 0.005
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Normal",
  21213. height: math.unit(6 + 7 / 12, "feet"),
  21214. default: true
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21220. {
  21221. anthro: {
  21222. height: math.unit(8 + 3 / 12, "feet"),
  21223. weight: math.unit(450, "lb"),
  21224. name: "Anthro",
  21225. image: {
  21226. source: "./media/characters/arador/anthro.svg",
  21227. extra: 1835 / 1718,
  21228. bottom: 0.025
  21229. }
  21230. },
  21231. feral: {
  21232. height: math.unit(4, "feet"),
  21233. weight: math.unit(200, "lb"),
  21234. name: "Feral",
  21235. image: {
  21236. source: "./media/characters/arador/feral.svg",
  21237. extra: 1683 / 1514,
  21238. bottom: 0.07
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(8 + 3 / 12, "feet")
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(82.5, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(5 + 10 / 12, "feet"),
  21259. weight: math.unit(125, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/dharsi/front.svg",
  21263. extra: 716 / 630,
  21264. bottom: 0.035
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Nano",
  21271. height: math.unit(100, "nm")
  21272. },
  21273. {
  21274. name: "Micro",
  21275. height: math.unit(2, "inches")
  21276. },
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(5 + 10 / 12, "feet"),
  21280. default: true
  21281. },
  21282. {
  21283. name: "Macro",
  21284. height: math.unit(1000, "feet")
  21285. },
  21286. {
  21287. name: "Megamacro",
  21288. height: math.unit(10, "miles")
  21289. },
  21290. {
  21291. name: "Gigamacro",
  21292. height: math.unit(3000, "miles")
  21293. },
  21294. {
  21295. name: "Teramacro",
  21296. height: math.unit(500000, "miles")
  21297. },
  21298. {
  21299. name: "Teramacro+",
  21300. height: math.unit(30, "galaxies")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(6, "feet"),
  21309. weight: math.unit(150, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/deathy/front.svg",
  21313. extra: 1552 / 1463,
  21314. bottom: 0.025
  21315. }
  21316. },
  21317. side: {
  21318. height: math.unit(6, "feet"),
  21319. weight: math.unit(150, "lb"),
  21320. name: "Side",
  21321. image: {
  21322. source: "./media/characters/deathy/side.svg",
  21323. extra: 1604 / 1455,
  21324. bottom: 0.025
  21325. }
  21326. },
  21327. back: {
  21328. height: math.unit(6, "feet"),
  21329. weight: math.unit(150, "lb"),
  21330. name: "Back",
  21331. image: {
  21332. source: "./media/characters/deathy/back.svg",
  21333. extra: 1580 / 1463,
  21334. bottom: 0.005
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Micro",
  21341. height: math.unit(5, "millimeters")
  21342. },
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(6 + 5 / 12, "feet"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21352. {
  21353. front: {
  21354. height: math.unit(16, "feet"),
  21355. weight: math.unit(4000, "lb"),
  21356. name: "Front",
  21357. image: {
  21358. source: "./media/characters/juniper/front.svg",
  21359. bottom: 0.04
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(16, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(6, "feet"),
  21376. weight: math.unit(150, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/hipster/front.svg",
  21380. extra: 1312 / 1209,
  21381. bottom: 0.025
  21382. }
  21383. },
  21384. back: {
  21385. height: math.unit(6, "feet"),
  21386. weight: math.unit(150, "lb"),
  21387. name: "Back",
  21388. image: {
  21389. source: "./media/characters/hipster/back.svg",
  21390. extra: 1281 / 1196,
  21391. bottom: 0.01
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Micro",
  21398. height: math.unit(1, "mm")
  21399. },
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(4, "inches"),
  21403. default: true
  21404. },
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(500, "feet")
  21408. },
  21409. {
  21410. name: "Megamacro",
  21411. height: math.unit(1000, "miles")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(6, "feet"),
  21420. weight: math.unit(150, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/tendirmuldr/front.svg",
  21424. extra: 1878 / 1772,
  21425. bottom: 0.015
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Megamacro",
  21432. height: math.unit(1500, "miles"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21439. {
  21440. front: {
  21441. height: math.unit(14, "feet"),
  21442. weight: math.unit(12000, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/mort/front.svg",
  21446. extra: 365 / 318,
  21447. bottom: 0.01
  21448. }
  21449. },
  21450. side: {
  21451. height: math.unit(14, "feet"),
  21452. weight: math.unit(12000, "lb"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/mort/side.svg",
  21456. extra: 365 / 318,
  21457. bottom: 0.052
  21458. },
  21459. default: true
  21460. },
  21461. back: {
  21462. height: math.unit(14, "feet"),
  21463. weight: math.unit(12000, "lb"),
  21464. name: "Back",
  21465. image: {
  21466. source: "./media/characters/mort/back.svg",
  21467. extra: 371 / 332,
  21468. bottom: 0.18
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(14, "feet"),
  21476. default: true
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21482. {
  21483. front: {
  21484. height: math.unit(8, "feet"),
  21485. weight: math.unit(1, "ton"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/lycoa/front.svg",
  21489. extra: 1836/1728,
  21490. bottom: 81/1917
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(8, "feet"),
  21495. weight: math.unit(1, "ton"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/lycoa/back.svg",
  21499. extra: 1785/1720,
  21500. bottom: 91/1876
  21501. }
  21502. },
  21503. head: {
  21504. height: math.unit(1.6243, "feet"),
  21505. name: "Head",
  21506. image: {
  21507. source: "./media/characters/lycoa/head.svg",
  21508. extra: 1011/782,
  21509. bottom: 0/1011
  21510. }
  21511. },
  21512. tailmaw: {
  21513. height: math.unit(1.9, "feet"),
  21514. name: "Tailmaw",
  21515. image: {
  21516. source: "./media/characters/lycoa/tailmaw.svg"
  21517. }
  21518. },
  21519. tentacles: {
  21520. height: math.unit(2.1, "feet"),
  21521. name: "Tentacles",
  21522. image: {
  21523. source: "./media/characters/lycoa/tentacles.svg"
  21524. }
  21525. },
  21526. dick: {
  21527. height: math.unit(1.73, "feet"),
  21528. name: "Dick",
  21529. image: {
  21530. source: "./media/characters/lycoa/dick.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(8, "feet"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Macro",
  21542. height: math.unit(30, "feet")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21548. {
  21549. front: {
  21550. height: math.unit(4 + 2 / 12, "feet"),
  21551. weight: math.unit(70, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/naldara/front.svg",
  21555. extra: 1664/1387,
  21556. bottom: 81/1745
  21557. },
  21558. form: "anthro",
  21559. default: true
  21560. },
  21561. naga: {
  21562. height: math.unit(20, "feet"),
  21563. weight: math.unit(15000, "kg"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/naldara/naga.svg",
  21567. extra: 1590/1396,
  21568. bottom: 285/1875
  21569. },
  21570. form: "naga",
  21571. default: true
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(4 + 2 / 12, "feet"),
  21578. form: "anthro",
  21579. default: true
  21580. },
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(20, "feet"),
  21584. form: "naga",
  21585. default: true
  21586. },
  21587. ],
  21588. {
  21589. "anthro": {
  21590. name: "Anthro",
  21591. default: true
  21592. },
  21593. "naga": {
  21594. name: "Naga"
  21595. }
  21596. }
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(13 + 7 / 12, "feet"),
  21603. weight: math.unit(1500, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/briar/front.svg",
  21607. extra: 1223/1157,
  21608. bottom: 123/1346
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(13 + 7 / 12, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21622. {
  21623. side: {
  21624. height: math.unit(16, "feet"),
  21625. weight: math.unit(500, "lb"),
  21626. name: "Side",
  21627. image: {
  21628. source: "./media/characters/vanguard/side.svg",
  21629. extra: 1022/914,
  21630. bottom: 30/1052
  21631. }
  21632. },
  21633. sideAlt: {
  21634. height: math.unit(10, "feet"),
  21635. weight: math.unit(500, "lb"),
  21636. name: "Side (Alt)",
  21637. image: {
  21638. source: "./media/characters/vanguard/side-alt.svg",
  21639. extra: 502 / 425,
  21640. bottom: 0.087
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(17.71, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(7.5, "feet"),
  21657. weight: math.unit(2, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/artemis/work-safe-front.svg",
  21661. extra: 1192 / 1075,
  21662. bottom: 0.07
  21663. },
  21664. form: "work-safe",
  21665. default: true
  21666. },
  21667. frontNsfw: {
  21668. height: math.unit(7.5, "feet"),
  21669. weight: math.unit(2, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/artemis/calibrating-front.svg",
  21673. extra: 1192 / 1075,
  21674. bottom: 0.07
  21675. },
  21676. form: "calibrating",
  21677. default: true
  21678. },
  21679. frontNsfwer: {
  21680. height: math.unit(7.5, "feet"),
  21681. weight: math.unit(2, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/artemis/oversize-load-front.svg",
  21685. extra: 1192 / 1075,
  21686. bottom: 0.07
  21687. },
  21688. form: "oversize-load",
  21689. default: true
  21690. },
  21691. side: {
  21692. height: math.unit(7.5, "feet"),
  21693. weight: math.unit(2, "lb"),
  21694. name: "Side",
  21695. image: {
  21696. source: "./media/characters/artemis/work-safe-side.svg",
  21697. extra: 1192 / 1075,
  21698. bottom: 0.07
  21699. },
  21700. form: "work-safe"
  21701. },
  21702. sideNsfw: {
  21703. height: math.unit(7.5, "feet"),
  21704. weight: math.unit(2, "lb"),
  21705. name: "Side",
  21706. image: {
  21707. source: "./media/characters/artemis/calibrating-side.svg",
  21708. extra: 1192 / 1075,
  21709. bottom: 0.07
  21710. },
  21711. form: "calibrating"
  21712. },
  21713. sideNsfwer: {
  21714. height: math.unit(7.5, "feet"),
  21715. weight: math.unit(2, "lb"),
  21716. name: "Side",
  21717. image: {
  21718. source: "./media/characters/artemis/oversize-load-side.svg",
  21719. extra: 1192 / 1075,
  21720. bottom: 0.07
  21721. },
  21722. form: "oversize-load"
  21723. },
  21724. maw: {
  21725. height: math.unit(1.1, "feet"),
  21726. name: "Maw",
  21727. image: {
  21728. source: "./media/characters/artemis/maw.svg"
  21729. },
  21730. form: "work-safe"
  21731. },
  21732. stomach: {
  21733. height: math.unit(0.95, "feet"),
  21734. name: "Stomach",
  21735. image: {
  21736. source: "./media/characters/artemis/stomach.svg"
  21737. },
  21738. form: "work-safe"
  21739. },
  21740. dickCanine: {
  21741. height: math.unit(1, "feet"),
  21742. name: "Dick (Canine)",
  21743. image: {
  21744. source: "./media/characters/artemis/dick-canine.svg"
  21745. },
  21746. form: "calibrating"
  21747. },
  21748. dickEquine: {
  21749. height: math.unit(0.85, "feet"),
  21750. name: "Dick (Equine)",
  21751. image: {
  21752. source: "./media/characters/artemis/dick-equine.svg"
  21753. },
  21754. form: "calibrating"
  21755. },
  21756. dickExotic: {
  21757. height: math.unit(0.85, "feet"),
  21758. name: "Dick (Exotic)",
  21759. image: {
  21760. source: "./media/characters/artemis/dick-exotic.svg"
  21761. },
  21762. form: "calibrating"
  21763. },
  21764. dickCanineBigger: {
  21765. height: math.unit(1 * 1.33, "feet"),
  21766. name: "Dick (Canine)",
  21767. image: {
  21768. source: "./media/characters/artemis/dick-canine.svg"
  21769. },
  21770. form: "oversize-load"
  21771. },
  21772. dickEquineBigger: {
  21773. height: math.unit(0.85 * 1.33, "feet"),
  21774. name: "Dick (Equine)",
  21775. image: {
  21776. source: "./media/characters/artemis/dick-equine.svg"
  21777. },
  21778. form: "oversize-load"
  21779. },
  21780. dickExoticBigger: {
  21781. height: math.unit(0.85 * 1.33, "feet"),
  21782. name: "Dick (Exotic)",
  21783. image: {
  21784. source: "./media/characters/artemis/dick-exotic.svg"
  21785. },
  21786. form: "oversize-load"
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(7.5, "feet"),
  21793. form: "work-safe",
  21794. default: true
  21795. },
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(7.5, "feet"),
  21799. form: "calibrating",
  21800. default: true
  21801. },
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(7.5, "feet"),
  21805. form: "oversize-load",
  21806. default: true
  21807. },
  21808. {
  21809. name: "Enlarged",
  21810. height: math.unit(12, "feet"),
  21811. form: "work-safe",
  21812. },
  21813. {
  21814. name: "Enlarged",
  21815. height: math.unit(12, "feet"),
  21816. form: "calibrating",
  21817. },
  21818. {
  21819. name: "Enlarged",
  21820. height: math.unit(12, "feet"),
  21821. form: "oversize-load",
  21822. },
  21823. ],
  21824. {
  21825. "work-safe": {
  21826. name: "Work-Safe",
  21827. default: true
  21828. },
  21829. "calibrating": {
  21830. name: "Calibrating"
  21831. },
  21832. "oversize-load": {
  21833. name: "Oversize Load"
  21834. }
  21835. }
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(5 + 3 / 12, "feet"),
  21842. weight: math.unit(160, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/kira/front.svg",
  21846. extra: 906 / 786,
  21847. bottom: 0.01
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(5 + 3 / 12, "feet"),
  21852. weight: math.unit(160, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/kira/back.svg",
  21856. extra: 882 / 757,
  21857. bottom: 0.005
  21858. }
  21859. },
  21860. frontDressed: {
  21861. height: math.unit(5 + 3 / 12, "feet"),
  21862. weight: math.unit(160, "lb"),
  21863. name: "Front (Dressed)",
  21864. image: {
  21865. source: "./media/characters/kira/front-dressed.svg",
  21866. extra: 906 / 786,
  21867. bottom: 0.01
  21868. }
  21869. },
  21870. beans: {
  21871. height: math.unit(0.92, "feet"),
  21872. name: "Beans",
  21873. image: {
  21874. source: "./media/characters/kira/beans.svg"
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(5 + 3 / 12, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(5 + 4 / 12, "feet"),
  21891. weight: math.unit(145, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/scramble/front.svg",
  21895. extra: 763 / 727,
  21896. bottom: 0.05
  21897. }
  21898. },
  21899. back: {
  21900. height: math.unit(5 + 4 / 12, "feet"),
  21901. weight: math.unit(145, "lb"),
  21902. name: "Back",
  21903. image: {
  21904. source: "./media/characters/scramble/back.svg",
  21905. extra: 826 / 737,
  21906. bottom: 0.002
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(5 + 4 / 12, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21920. {
  21921. side: {
  21922. height: math.unit(6 + 2 / 12, "feet"),
  21923. weight: math.unit(190, "lb"),
  21924. name: "Side",
  21925. image: {
  21926. source: "./media/characters/biscuit/side.svg",
  21927. extra: 858 / 791,
  21928. bottom: 0.044
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Normal",
  21935. height: math.unit(6 + 2 / 12, "feet"),
  21936. default: true
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(5 + 2 / 12, "feet"),
  21945. weight: math.unit(120, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/poffin/front.svg",
  21949. extra: 786 / 680,
  21950. bottom: 0.005
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(5 + 2 / 12, "feet"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(6 + 3 / 12, "feet"),
  21967. weight: math.unit(519, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/dhari/front.svg",
  21971. extra: 1048 / 946,
  21972. bottom: 0.015
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(6 + 3 / 12, "feet"),
  21977. weight: math.unit(519, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/dhari/back.svg",
  21981. extra: 1048 / 931,
  21982. bottom: 0.005
  21983. }
  21984. },
  21985. frontDressed: {
  21986. height: math.unit(6 + 3 / 12, "feet"),
  21987. weight: math.unit(519, "lb"),
  21988. name: "Front (Dressed)",
  21989. image: {
  21990. source: "./media/characters/dhari/front-dressed.svg",
  21991. extra: 1713 / 1546,
  21992. bottom: 0.02
  21993. }
  21994. },
  21995. backDressed: {
  21996. height: math.unit(6 + 3 / 12, "feet"),
  21997. weight: math.unit(519, "lb"),
  21998. name: "Back (Dressed)",
  21999. image: {
  22000. source: "./media/characters/dhari/back-dressed.svg",
  22001. extra: 1699 / 1537,
  22002. bottom: 0.01
  22003. }
  22004. },
  22005. maw: {
  22006. height: math.unit(0.95, "feet"),
  22007. name: "Maw",
  22008. image: {
  22009. source: "./media/characters/dhari/maw.svg"
  22010. }
  22011. },
  22012. wereFront: {
  22013. height: math.unit(12 + 8 / 12, "feet"),
  22014. weight: math.unit(4000, "lb"),
  22015. name: "Front (Were)",
  22016. image: {
  22017. source: "./media/characters/dhari/were-front.svg",
  22018. extra: 1065 / 969,
  22019. bottom: 0.015
  22020. }
  22021. },
  22022. wereBack: {
  22023. height: math.unit(12 + 8 / 12, "feet"),
  22024. weight: math.unit(4000, "lb"),
  22025. name: "Back (Were)",
  22026. image: {
  22027. source: "./media/characters/dhari/were-back.svg",
  22028. extra: 1065 / 969,
  22029. bottom: 0.012
  22030. }
  22031. },
  22032. wereMaw: {
  22033. height: math.unit(0.625, "meters"),
  22034. name: "Maw (Were)",
  22035. image: {
  22036. source: "./media/characters/dhari/were-maw.svg"
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(6 + 3 / 12, "feet"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22050. {
  22051. anthro: {
  22052. height: math.unit(5 + 7 / 12, "feet"),
  22053. weight: math.unit(175, "lb"),
  22054. name: "Anthro",
  22055. image: {
  22056. source: "./media/characters/rena-dyne/anthro.svg",
  22057. extra: 1849 / 1785,
  22058. bottom: 0.005
  22059. }
  22060. },
  22061. taur: {
  22062. height: math.unit(15 + 6 / 12, "feet"),
  22063. weight: math.unit(8000, "lb"),
  22064. name: "Taur",
  22065. image: {
  22066. source: "./media/characters/rena-dyne/taur.svg",
  22067. extra: 2315 / 2234,
  22068. bottom: 0.033
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(5 + 7 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(8, "feet"),
  22085. weight: math.unit(600, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/weremeep/front.svg",
  22089. extra: 970/849,
  22090. bottom: 7/977
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8, "feet"),
  22098. default: true
  22099. },
  22100. {
  22101. name: "Lorg",
  22102. height: math.unit(12, "feet")
  22103. },
  22104. {
  22105. name: "Oh Lawd She Comin'",
  22106. height: math.unit(20, "feet")
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22112. {
  22113. front: {
  22114. height: math.unit(4, "feet"),
  22115. weight: math.unit(90, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/reza/front.svg",
  22119. extra: 1183 / 1111,
  22120. bottom: 0.017
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(4, "feet"),
  22125. weight: math.unit(90, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/reza/back.svg",
  22129. extra: 1183 / 1111,
  22130. bottom: 0.01
  22131. }
  22132. },
  22133. drake: {
  22134. height: math.unit(30, "feet"),
  22135. weight: math.unit(246960, "lb"),
  22136. name: "Drake",
  22137. image: {
  22138. source: "./media/characters/reza/drake.svg",
  22139. extra: 2350 / 2024,
  22140. bottom: 60.7 / 2403
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Normal",
  22147. height: math.unit(4, "feet"),
  22148. default: true
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22154. {
  22155. side: {
  22156. height: math.unit(15, "feet"),
  22157. weight: math.unit(14, "tons"),
  22158. name: "Side",
  22159. image: {
  22160. source: "./media/characters/athea/side.svg",
  22161. extra: 960 / 540,
  22162. bottom: 0.003
  22163. }
  22164. },
  22165. sitting: {
  22166. height: math.unit(6 * 2.85, "feet"),
  22167. weight: math.unit(14, "tons"),
  22168. name: "Sitting",
  22169. image: {
  22170. source: "./media/characters/athea/sitting.svg",
  22171. extra: 621 / 581,
  22172. bottom: 0.075
  22173. }
  22174. },
  22175. maw: {
  22176. height: math.unit(7.59498031496063, "feet"),
  22177. name: "Maw",
  22178. image: {
  22179. source: "./media/characters/athea/maw.svg"
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Lap Cat",
  22186. height: math.unit(2.5, "feet")
  22187. },
  22188. {
  22189. name: "Minimacro",
  22190. height: math.unit(15, "feet"),
  22191. default: true
  22192. },
  22193. {
  22194. name: "Macro",
  22195. height: math.unit(120, "feet")
  22196. },
  22197. {
  22198. name: "Macro+",
  22199. height: math.unit(640, "feet")
  22200. },
  22201. {
  22202. name: "Colossus",
  22203. height: math.unit(2.2, "miles")
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22209. {
  22210. front: {
  22211. height: math.unit(8 + 8 / 12, "feet"),
  22212. weight: math.unit(130, "kg"),
  22213. name: "Front",
  22214. image: {
  22215. source: "./media/characters/seroko/front.svg",
  22216. extra: 1385 / 1280,
  22217. bottom: 0.025
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(8 + 8 / 12, "feet"),
  22222. weight: math.unit(130, "kg"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/seroko/back.svg",
  22226. extra: 1369 / 1238,
  22227. bottom: 0.018
  22228. }
  22229. },
  22230. frontDressed: {
  22231. height: math.unit(8 + 8 / 12, "feet"),
  22232. weight: math.unit(130, "kg"),
  22233. name: "Front (Dressed)",
  22234. image: {
  22235. source: "./media/characters/seroko/front-dressed.svg",
  22236. extra: 1366 / 1275,
  22237. bottom: 0.03
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(8 + 8 / 12, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(5.5, "feet"),
  22254. weight: math.unit(160, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/quatzi/front.svg",
  22258. extra: 2346 / 2242,
  22259. bottom: 0.015
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5.5, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Big",
  22271. height: math.unit(7.7, "feet")
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22277. {
  22278. front: {
  22279. height: math.unit(5 + 11 / 12, "feet"),
  22280. weight: math.unit(180, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/sen/front.svg",
  22284. extra: 1321 / 1254,
  22285. bottom: 0.015
  22286. }
  22287. },
  22288. side: {
  22289. height: math.unit(5 + 11 / 12, "feet"),
  22290. weight: math.unit(180, "lb"),
  22291. name: "Side",
  22292. image: {
  22293. source: "./media/characters/sen/side.svg",
  22294. extra: 1321 / 1254,
  22295. bottom: 0.007
  22296. }
  22297. },
  22298. back: {
  22299. height: math.unit(5 + 11 / 12, "feet"),
  22300. weight: math.unit(180, "lb"),
  22301. name: "Back",
  22302. image: {
  22303. source: "./media/characters/sen/back.svg",
  22304. extra: 1321 / 1254
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(5 + 11 / 12, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22318. {
  22319. front: {
  22320. height: math.unit(166.6, "cm"),
  22321. weight: math.unit(66.6, "kg"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/fruity/front.svg",
  22325. extra: 1510 / 1386,
  22326. bottom: 0.04
  22327. }
  22328. },
  22329. back: {
  22330. height: math.unit(166.6, "cm"),
  22331. weight: math.unit(66.6, "lb"),
  22332. name: "Back",
  22333. image: {
  22334. source: "./media/characters/fruity/back.svg",
  22335. extra: 1563 / 1435,
  22336. bottom: 0.005
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(166.6, "cm"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Demonic",
  22348. height: math.unit(166.6, "feet")
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22354. {
  22355. side: {
  22356. height: math.unit(10, "feet"),
  22357. weight: math.unit(500, "lb"),
  22358. name: "Side",
  22359. image: {
  22360. source: "./media/characters/zost/side.svg",
  22361. extra: 2870/2533,
  22362. bottom: 252/3122
  22363. }
  22364. },
  22365. mawFront: {
  22366. height: math.unit(1.08, "meters"),
  22367. name: "Maw (Front)",
  22368. image: {
  22369. source: "./media/characters/zost/maw-front.svg"
  22370. }
  22371. },
  22372. mawSide: {
  22373. height: math.unit(2.66, "feet"),
  22374. name: "Maw (Side)",
  22375. image: {
  22376. source: "./media/characters/zost/maw-side.svg"
  22377. }
  22378. },
  22379. wingspan: {
  22380. height: math.unit(7.4, "feet"),
  22381. name: "Wingspan",
  22382. image: {
  22383. source: "./media/characters/zost/wingspan.svg"
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(10, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(5 + 4 / 12, "feet"),
  22400. weight: math.unit(120, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/luci/front.svg",
  22404. extra: 1985 / 1884,
  22405. bottom: 0.04
  22406. }
  22407. },
  22408. back: {
  22409. height: math.unit(5 + 4 / 12, "feet"),
  22410. weight: math.unit(120, "lb"),
  22411. name: "Back",
  22412. image: {
  22413. source: "./media/characters/luci/back.svg",
  22414. extra: 1892 / 1791,
  22415. bottom: 0.002
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Normal",
  22422. height: math.unit(5 + 4 / 12, "feet"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(1500, "feet"),
  22432. weight: math.unit(3.8e6, "tons"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/2th/front.svg",
  22436. extra: 3489 / 3350,
  22437. bottom: 0.1
  22438. }
  22439. },
  22440. foot: {
  22441. height: math.unit(461, "feet"),
  22442. name: "Foot",
  22443. image: {
  22444. source: "./media/characters/2th/foot.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "\"Micro\"",
  22451. height: math.unit(15 + 7 / 12, "feet")
  22452. },
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(1500, "feet"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Macro",
  22460. height: math.unit(5000, "feet")
  22461. },
  22462. {
  22463. name: "Megamacro",
  22464. height: math.unit(15, "miles")
  22465. },
  22466. {
  22467. name: "Gigamacro",
  22468. height: math.unit(4000, "miles")
  22469. },
  22470. {
  22471. name: "Galactic",
  22472. height: math.unit(50, "AU")
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22478. {
  22479. front: {
  22480. height: math.unit(5 + 6 / 12, "feet"),
  22481. weight: math.unit(220, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/amethyst/front.svg",
  22485. extra: 2078 / 2040,
  22486. bottom: 0.045
  22487. }
  22488. },
  22489. back: {
  22490. height: math.unit(5 + 6 / 12, "feet"),
  22491. weight: math.unit(220, "lb"),
  22492. name: "Back",
  22493. image: {
  22494. source: "./media/characters/amethyst/back.svg",
  22495. extra: 2021 / 1989,
  22496. bottom: 0.02
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5 + 6 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(4 + 11 / 12, "feet"),
  22513. weight: math.unit(120, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/yumi-akiyama/front.svg",
  22517. extra: 1327 / 1235,
  22518. bottom: 0.02
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(4 + 11 / 12, "feet"),
  22523. weight: math.unit(120, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/yumi-akiyama/back.svg",
  22527. extra: 1287 / 1245,
  22528. bottom: 0.002
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Galactic",
  22535. height: math.unit(50, "galaxies"),
  22536. default: true
  22537. },
  22538. {
  22539. name: "Universal",
  22540. height: math.unit(100, "universes")
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(8, "feet"),
  22549. weight: math.unit(500, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/rifter-yrmori/front.svg",
  22553. extra: 1180 / 1125,
  22554. bottom: 0.02
  22555. }
  22556. },
  22557. back: {
  22558. height: math.unit(8, "feet"),
  22559. weight: math.unit(500, "lb"),
  22560. name: "Back",
  22561. image: {
  22562. source: "./media/characters/rifter-yrmori/back.svg",
  22563. extra: 1190 / 1145,
  22564. bottom: 0.001
  22565. }
  22566. },
  22567. wings: {
  22568. height: math.unit(7.75, "feet"),
  22569. weight: math.unit(500, "lb"),
  22570. name: "Wings",
  22571. image: {
  22572. source: "./media/characters/rifter-yrmori/wings.svg",
  22573. extra: 1357 / 1285
  22574. }
  22575. },
  22576. maw: {
  22577. height: math.unit(0.8, "feet"),
  22578. name: "Maw",
  22579. image: {
  22580. source: "./media/characters/rifter-yrmori/maw.svg"
  22581. }
  22582. },
  22583. mawfront: {
  22584. height: math.unit(1.45, "feet"),
  22585. name: "Maw (Front)",
  22586. image: {
  22587. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(8, "feet"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Macro",
  22599. height: math.unit(42, "meters")
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22605. {
  22606. were: {
  22607. height: math.unit(25 + 6 / 12, "feet"),
  22608. weight: math.unit(10000, "lb"),
  22609. name: "Were",
  22610. image: {
  22611. source: "./media/characters/tahajin/were.svg",
  22612. extra: 801 / 770,
  22613. bottom: 0.042
  22614. }
  22615. },
  22616. aquatic: {
  22617. height: math.unit(6 + 4 / 12, "feet"),
  22618. weight: math.unit(160, "lb"),
  22619. name: "Aquatic",
  22620. image: {
  22621. source: "./media/characters/tahajin/aquatic.svg",
  22622. extra: 572 / 542,
  22623. bottom: 0.04
  22624. }
  22625. },
  22626. chow: {
  22627. height: math.unit(8 + 11 / 12, "feet"),
  22628. weight: math.unit(450, "lb"),
  22629. name: "Chow",
  22630. image: {
  22631. source: "./media/characters/tahajin/chow.svg",
  22632. extra: 660 / 640,
  22633. bottom: 0.015
  22634. }
  22635. },
  22636. demiNaga: {
  22637. height: math.unit(6 + 8 / 12, "feet"),
  22638. weight: math.unit(300, "lb"),
  22639. name: "Demi Naga",
  22640. image: {
  22641. source: "./media/characters/tahajin/demi-naga.svg",
  22642. extra: 643 / 615,
  22643. bottom: 0.1
  22644. }
  22645. },
  22646. data: {
  22647. height: math.unit(5, "inches"),
  22648. weight: math.unit(0.1, "lb"),
  22649. name: "Data",
  22650. image: {
  22651. source: "./media/characters/tahajin/data.svg"
  22652. }
  22653. },
  22654. fluu: {
  22655. height: math.unit(5 + 7 / 12, "feet"),
  22656. weight: math.unit(140, "lb"),
  22657. name: "Fluu",
  22658. image: {
  22659. source: "./media/characters/tahajin/fluu.svg",
  22660. extra: 628 / 592,
  22661. bottom: 0.02
  22662. }
  22663. },
  22664. starWarrior: {
  22665. height: math.unit(4 + 5 / 12, "feet"),
  22666. weight: math.unit(50, "lb"),
  22667. name: "Star Warrior",
  22668. image: {
  22669. source: "./media/characters/tahajin/star-warrior.svg"
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(25 + 6 / 12, "feet"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(8, "feet"),
  22686. weight: math.unit(350, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/gabira/front.svg",
  22690. extra: 1261/1154,
  22691. bottom: 51/1312
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(8, "feet"),
  22696. weight: math.unit(350, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/gabira/back.svg",
  22700. extra: 1265/1163,
  22701. bottom: 46/1311
  22702. }
  22703. },
  22704. head: {
  22705. height: math.unit(2.85, "feet"),
  22706. name: "Head",
  22707. image: {
  22708. source: "./media/characters/gabira/head.svg"
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(8, "feet"),
  22716. default: true
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(5 + 3 / 12, "feet"),
  22725. weight: math.unit(137, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/sasha-katraine/front.svg",
  22729. extra: 1745/1694,
  22730. bottom: 37/1782
  22731. }
  22732. },
  22733. back: {
  22734. height: math.unit(5 + 3 / 12, "feet"),
  22735. weight: math.unit(137, "lb"),
  22736. name: "Back",
  22737. image: {
  22738. source: "./media/characters/sasha-katraine/back.svg",
  22739. extra: 1776/1699,
  22740. bottom: 26/1802
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Micro",
  22747. height: math.unit(5, "inches")
  22748. },
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(5 + 3 / 12, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22758. {
  22759. side: {
  22760. height: math.unit(4, "inches"),
  22761. weight: math.unit(200, "grams"),
  22762. name: "Side",
  22763. image: {
  22764. source: "./media/characters/der/side.svg",
  22765. extra: 719 / 400,
  22766. bottom: 30.6 / 749.9187
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Micro",
  22773. height: math.unit(4, "inches"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22780. {
  22781. side: {
  22782. height: math.unit(30, "meters"),
  22783. weight: math.unit(700, "tonnes"),
  22784. name: "Side",
  22785. image: {
  22786. source: "./media/characters/fixerdragon/side.svg",
  22787. extra: (1293.0514 - 116.03) / 1106.86,
  22788. bottom: 116.03 / 1293.0514
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Planck",
  22795. height: math.unit(1.6e-35, "meters")
  22796. },
  22797. {
  22798. name: "Micro",
  22799. height: math.unit(0.4, "meters")
  22800. },
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(30, "meters"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Megamacro",
  22808. height: math.unit(1.2, "megameters")
  22809. },
  22810. {
  22811. name: "Teramacro",
  22812. height: math.unit(130, "terameters")
  22813. },
  22814. {
  22815. name: "Yottamacro",
  22816. height: math.unit(6200, "yottameters")
  22817. },
  22818. ]
  22819. ));
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(8, "feet"),
  22825. weight: math.unit(250, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/kite/front.svg",
  22829. extra: 2796 / 2659,
  22830. bottom: 0.002
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(8, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Macro",
  22842. height: math.unit(360, "feet")
  22843. },
  22844. {
  22845. name: "Megamacro",
  22846. height: math.unit(1500, "feet")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(5 + 11/12, "feet"),
  22855. weight: math.unit(170, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/poojawa-vynar/front.svg",
  22859. extra: 1735/1585,
  22860. bottom: 96/1831
  22861. }
  22862. },
  22863. back: {
  22864. height: math.unit(5 + 11/12, "feet"),
  22865. weight: math.unit(170, "lb"),
  22866. name: "Back",
  22867. image: {
  22868. source: "./media/characters/poojawa-vynar/back.svg",
  22869. extra: 1749/1607,
  22870. bottom: 28/1777
  22871. }
  22872. },
  22873. male: {
  22874. height: math.unit(5 + 11/12, "feet"),
  22875. weight: math.unit(170, "lb"),
  22876. name: "Male",
  22877. image: {
  22878. source: "./media/characters/poojawa-vynar/male.svg",
  22879. extra: 1855/1713,
  22880. bottom: 63/1918
  22881. }
  22882. },
  22883. taur: {
  22884. height: math.unit(5 + 11/12, "feet"),
  22885. weight: math.unit(170, "lb"),
  22886. name: "Taur",
  22887. image: {
  22888. source: "./media/characters/poojawa-vynar/taur.svg",
  22889. extra: 1151/1059,
  22890. bottom: 356/1507
  22891. }
  22892. },
  22893. frontDressed: {
  22894. height: math.unit(5 + 11/12, "feet"),
  22895. weight: math.unit(170, "lb"),
  22896. name: "Front (Dressed)",
  22897. image: {
  22898. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22899. extra: 1735/1585,
  22900. bottom: 96/1831
  22901. }
  22902. },
  22903. backDressed: {
  22904. height: math.unit(5 + 11/12, "feet"),
  22905. weight: math.unit(170, "lb"),
  22906. name: "Back (Dressed)",
  22907. image: {
  22908. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22909. extra: 1749/1607,
  22910. bottom: 28/1777
  22911. }
  22912. },
  22913. maleDressed: {
  22914. height: math.unit(5 + 11/12, "feet"),
  22915. weight: math.unit(170, "lb"),
  22916. name: "Male (Dressed)",
  22917. image: {
  22918. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22919. extra: 1855/1713,
  22920. bottom: 63/1918
  22921. }
  22922. },
  22923. taurDressed: {
  22924. height: math.unit(5 + 11/12, "feet"),
  22925. weight: math.unit(170, "lb"),
  22926. name: "Taur (Dressed)",
  22927. image: {
  22928. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22929. extra: 1151/1059,
  22930. bottom: 356/1507
  22931. }
  22932. },
  22933. maw: {
  22934. height: math.unit(1.46, "feet"),
  22935. name: "Maw",
  22936. image: {
  22937. source: "./media/characters/poojawa-vynar/maw.svg"
  22938. }
  22939. },
  22940. head: {
  22941. height: math.unit(2.34, "feet"),
  22942. name: "Head",
  22943. image: {
  22944. source: "./media/characters/poojawa-vynar/head.svg"
  22945. }
  22946. },
  22947. paw: {
  22948. height: math.unit(1.61, "feet"),
  22949. name: "Paw",
  22950. image: {
  22951. source: "./media/characters/poojawa-vynar/paw.svg"
  22952. }
  22953. },
  22954. pawToering: {
  22955. height: math.unit(1.72, "feet"),
  22956. name: "Paw (Toering)",
  22957. image: {
  22958. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22959. }
  22960. },
  22961. toering: {
  22962. height: math.unit(2.9, "inches"),
  22963. name: "Toering",
  22964. image: {
  22965. source: "./media/characters/poojawa-vynar/toering.svg"
  22966. }
  22967. },
  22968. shaft: {
  22969. height: math.unit(0.625, "feet"),
  22970. name: "Shaft",
  22971. image: {
  22972. source: "./media/characters/poojawa-vynar/shaft.svg"
  22973. }
  22974. },
  22975. spade: {
  22976. height: math.unit(0.42, "feet"),
  22977. name: "Spade",
  22978. image: {
  22979. source: "./media/characters/poojawa-vynar/spade.svg"
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Shortstack",
  22986. height: math.unit(4, "feet")
  22987. },
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(5 + 11 / 12, "feet"),
  22991. default: true
  22992. },
  22993. {
  22994. name: "Tauric",
  22995. height: math.unit(4, "meters")
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(293, "meters"),
  23004. weight: math.unit(70400, "tons"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/violette/front.svg",
  23008. extra: 1227 / 1180,
  23009. bottom: 0.005
  23010. }
  23011. },
  23012. back: {
  23013. height: math.unit(293, "meters"),
  23014. weight: math.unit(70400, "tons"),
  23015. name: "Back",
  23016. image: {
  23017. source: "./media/characters/violette/back.svg",
  23018. extra: 1227 / 1180,
  23019. bottom: 0.005
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(293, "meters"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(1050, "feet"),
  23036. weight: math.unit(200000, "tons"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/alessandra/front.svg",
  23040. extra: 960 / 912,
  23041. bottom: 0.06
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Macro",
  23048. height: math.unit(1050, "feet")
  23049. },
  23050. {
  23051. name: "Macro+",
  23052. height: math.unit(900, "meters"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(5, "feet"),
  23062. weight: math.unit(187, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/person/front.svg",
  23066. extra: 3087 / 2945,
  23067. bottom: 91 / 3181
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Micro",
  23074. height: math.unit(3, "inches")
  23075. },
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(5, "feet"),
  23079. default: true
  23080. },
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(90, "feet")
  23084. },
  23085. {
  23086. name: "Max Size",
  23087. height: math.unit(280, "feet")
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(4.5, "meters"),
  23096. weight: math.unit(3200, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/ty/front.svg",
  23100. extra: 1038 / 960,
  23101. bottom: 31.156 / 1068
  23102. }
  23103. },
  23104. back: {
  23105. height: math.unit(4.5, "meters"),
  23106. weight: math.unit(3200, "lb"),
  23107. name: "Back",
  23108. image: {
  23109. source: "./media/characters/ty/back.svg",
  23110. extra: 1044 / 966,
  23111. bottom: 7.48 / 1049
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(4.5, "meters"),
  23119. default: true
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(5 + 4 / 12, "feet"),
  23128. weight: math.unit(115, "lb"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/rocky/front.svg",
  23132. extra: 1012 / 975,
  23133. bottom: 54 / 1066
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Normal",
  23140. height: math.unit(5 + 4 / 12, "feet"),
  23141. default: true
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23147. {
  23148. upright: {
  23149. height: math.unit(6, "meters"),
  23150. weight: math.unit(4000, "kg"),
  23151. name: "Upright",
  23152. image: {
  23153. source: "./media/characters/ruin/upright.svg",
  23154. extra: 668 / 661,
  23155. bottom: 42 / 799.8396
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Normal",
  23162. height: math.unit(6, "meters"),
  23163. default: true
  23164. },
  23165. ]
  23166. ))
  23167. characterMakers.push(() => makeCharacter(
  23168. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23169. {
  23170. front: {
  23171. height: math.unit(5, "feet"),
  23172. weight: math.unit(106, "lb"),
  23173. name: "Front",
  23174. image: {
  23175. source: "./media/characters/robin/front.svg",
  23176. extra: 862 / 799,
  23177. bottom: 42.4 / 914.8856
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(5, "feet"),
  23185. default: true
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23191. {
  23192. side: {
  23193. height: math.unit(3, "feet"),
  23194. weight: math.unit(225, "lb"),
  23195. name: "Side",
  23196. image: {
  23197. source: "./media/characters/saian/side.svg",
  23198. extra: 566 / 356,
  23199. bottom: 79.7 / 643
  23200. }
  23201. },
  23202. maw: {
  23203. height: math.unit(2.85, "feet"),
  23204. name: "Maw",
  23205. image: {
  23206. source: "./media/characters/saian/maw.svg"
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(3, "feet"),
  23214. default: true
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23220. {
  23221. side: {
  23222. height: math.unit(8, "feet"),
  23223. weight: math.unit(300, "lb"),
  23224. name: "Side",
  23225. image: {
  23226. source: "./media/characters/equus-silvermane/side.svg",
  23227. extra: 2176 / 2050,
  23228. bottom: 65.7 / 2245
  23229. }
  23230. },
  23231. front: {
  23232. height: math.unit(8, "feet"),
  23233. weight: math.unit(300, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/equus-silvermane/front.svg",
  23237. extra: 4633 / 4400,
  23238. bottom: 71.3 / 4706.915
  23239. }
  23240. },
  23241. sideStepping: {
  23242. height: math.unit(8, "feet"),
  23243. weight: math.unit(300, "lb"),
  23244. name: "Side (Stepping)",
  23245. image: {
  23246. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23247. extra: 1968 / 1860,
  23248. bottom: 16.4 / 1989
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(8, "feet")
  23256. },
  23257. {
  23258. name: "Minimacro",
  23259. height: math.unit(75, "feet"),
  23260. default: true
  23261. },
  23262. {
  23263. name: "Macro",
  23264. height: math.unit(150, "feet")
  23265. },
  23266. {
  23267. name: "Macro+",
  23268. height: math.unit(1000, "feet")
  23269. },
  23270. {
  23271. name: "Megamacro",
  23272. height: math.unit(1, "mile")
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23278. {
  23279. side: {
  23280. height: math.unit(20, "feet"),
  23281. weight: math.unit(30000, "kg"),
  23282. name: "Side",
  23283. image: {
  23284. source: "./media/characters/windar/side.svg",
  23285. extra: 1491 / 1248,
  23286. bottom: 82.56 / 1568
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(20, "feet"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23300. {
  23301. side: {
  23302. height: math.unit(15.66, "feet"),
  23303. weight: math.unit(150, "lb"),
  23304. name: "Side",
  23305. image: {
  23306. source: "./media/characters/melody/side.svg",
  23307. extra: 1097 / 944,
  23308. bottom: 11.8 / 1109
  23309. }
  23310. },
  23311. sideOutfit: {
  23312. height: math.unit(15.66, "feet"),
  23313. weight: math.unit(150, "lb"),
  23314. name: "Side (Outfit)",
  23315. image: {
  23316. source: "./media/characters/melody/side-outfit.svg",
  23317. extra: 1097 / 944,
  23318. bottom: 11.8 / 1109
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(15.66, "feet"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23332. {
  23333. armoredFront: {
  23334. height: math.unit(8, "feet"),
  23335. weight: math.unit(325, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/windera/armored-front.svg",
  23339. extra: 1830/1598,
  23340. bottom: 151/1981
  23341. },
  23342. form: "armored",
  23343. default: true
  23344. },
  23345. macroFront: {
  23346. height: math.unit(70, "feet"),
  23347. weight: math.unit(315453, "lb"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/windera/macro-front.svg",
  23351. extra: 963/883,
  23352. bottom: 23/986
  23353. },
  23354. form: "macro",
  23355. default: true
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(8, "feet"),
  23362. default: true,
  23363. form: "armored"
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(70, "feet"),
  23368. default: true,
  23369. form: "macro"
  23370. },
  23371. ],
  23372. {
  23373. "armored": {
  23374. name: "Armored",
  23375. default: true
  23376. },
  23377. "macro": {
  23378. name: "Macro",
  23379. },
  23380. }
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23384. {
  23385. front: {
  23386. height: math.unit(28.75, "feet"),
  23387. weight: math.unit(2000, "kg"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/sonear/front.svg",
  23391. extra: 1041.1 / 964.9,
  23392. bottom: 53.7 / 1096.6
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(28.75, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23406. {
  23407. side: {
  23408. height: math.unit(25.5, "feet"),
  23409. weight: math.unit(23000, "kg"),
  23410. name: "Side",
  23411. image: {
  23412. source: "./media/characters/kanara/side.svg"
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(25.5, "feet"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23426. {
  23427. side: {
  23428. height: math.unit(10, "feet"),
  23429. weight: math.unit(1000, "kg"),
  23430. name: "Side",
  23431. image: {
  23432. source: "./media/characters/ereus/side.svg",
  23433. extra: 1157 / 959,
  23434. bottom: 153 / 1312.5
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(10, "feet"),
  23442. default: true
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23448. {
  23449. side: {
  23450. height: math.unit(4.5, "feet"),
  23451. weight: math.unit(500, "lb"),
  23452. name: "Side",
  23453. image: {
  23454. source: "./media/characters/e-ter/side.svg",
  23455. extra: 1550 / 1248,
  23456. bottom: 146 / 1694
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Normal",
  23463. height: math.unit(4.5, "feet"),
  23464. default: true
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23470. {
  23471. side: {
  23472. height: math.unit(9.7, "feet"),
  23473. weight: math.unit(4000, "kg"),
  23474. name: "Side",
  23475. image: {
  23476. source: "./media/characters/yamie/side.svg"
  23477. }
  23478. },
  23479. },
  23480. [
  23481. {
  23482. name: "Normal",
  23483. height: math.unit(9.7, "feet"),
  23484. default: true
  23485. },
  23486. ]
  23487. ))
  23488. characterMakers.push(() => makeCharacter(
  23489. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23490. {
  23491. front: {
  23492. height: math.unit(50, "feet"),
  23493. weight: math.unit(50000, "kg"),
  23494. name: "Front",
  23495. image: {
  23496. source: "./media/characters/anders/front.svg",
  23497. extra: 570 / 539,
  23498. bottom: 14.7 / 586.7
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Large",
  23505. height: math.unit(50, "feet")
  23506. },
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(2000, "feet"),
  23510. default: true
  23511. },
  23512. {
  23513. name: "Megamacro",
  23514. height: math.unit(12, "miles")
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(7 + 2 / 12, "feet"),
  23523. weight: math.unit(300, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/reban/front.svg",
  23527. extra: 1287/1212,
  23528. bottom: 148/1435
  23529. }
  23530. },
  23531. head: {
  23532. height: math.unit(1.95, "feet"),
  23533. name: "Head",
  23534. image: {
  23535. source: "./media/characters/reban/head.svg"
  23536. }
  23537. },
  23538. maw: {
  23539. height: math.unit(0.95, "feet"),
  23540. name: "Maw",
  23541. image: {
  23542. source: "./media/characters/reban/maw.svg"
  23543. }
  23544. },
  23545. foot: {
  23546. height: math.unit(1.65, "feet"),
  23547. name: "Foot",
  23548. image: {
  23549. source: "./media/characters/reban/foot.svg"
  23550. }
  23551. },
  23552. dick: {
  23553. height: math.unit(7 / 5, "feet"),
  23554. name: "Dick",
  23555. image: {
  23556. source: "./media/characters/reban/dick.svg"
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Natural Height",
  23563. height: math.unit(7 + 2 / 12, "feet")
  23564. },
  23565. {
  23566. name: "Macro",
  23567. height: math.unit(500, "feet"),
  23568. default: true
  23569. },
  23570. {
  23571. name: "Canon Height",
  23572. height: math.unit(50, "AU")
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23578. {
  23579. front: {
  23580. height: math.unit(6, "feet"),
  23581. weight: math.unit(150, "lb"),
  23582. name: "Front",
  23583. image: {
  23584. source: "./media/characters/terrance-keayes/front.svg",
  23585. extra: 1.005,
  23586. bottom: 151 / 1615
  23587. }
  23588. },
  23589. side: {
  23590. height: math.unit(6, "feet"),
  23591. weight: math.unit(150, "lb"),
  23592. name: "Side",
  23593. image: {
  23594. source: "./media/characters/terrance-keayes/side.svg",
  23595. extra: 1.005,
  23596. bottom: 129.4 / 1544
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(6, "feet"),
  23601. weight: math.unit(150, "lb"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/terrance-keayes/back.svg",
  23605. extra: 1.005,
  23606. bottom: 58.4 / 1557.3
  23607. }
  23608. },
  23609. dick: {
  23610. height: math.unit(6 * 0.208, "feet"),
  23611. name: "Dick",
  23612. image: {
  23613. source: "./media/characters/terrance-keayes/dick.svg"
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Canon Height",
  23620. height: math.unit(35, "miles"),
  23621. default: true
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23627. {
  23628. front: {
  23629. height: math.unit(6, "feet"),
  23630. weight: math.unit(150, "lb"),
  23631. name: "Front",
  23632. image: {
  23633. source: "./media/characters/ofelia/front.svg",
  23634. extra: 1130/1117,
  23635. bottom: 91/1221
  23636. }
  23637. },
  23638. back: {
  23639. height: math.unit(6, "feet"),
  23640. weight: math.unit(150, "lb"),
  23641. name: "Back",
  23642. image: {
  23643. source: "./media/characters/ofelia/back.svg",
  23644. extra: 1172/1159,
  23645. bottom: 28/1200
  23646. }
  23647. },
  23648. maw: {
  23649. height: math.unit(1, "feet"),
  23650. name: "Maw",
  23651. image: {
  23652. source: "./media/characters/ofelia/maw.svg"
  23653. }
  23654. },
  23655. foot: {
  23656. height: math.unit(1.949, "feet"),
  23657. name: "Foot",
  23658. image: {
  23659. source: "./media/characters/ofelia/foot.svg"
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Canon Height",
  23666. height: math.unit(2000, "miles"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(6, "feet"),
  23676. weight: math.unit(150, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/samuel/front.svg",
  23680. extra: 265 / 258,
  23681. bottom: 2 / 266.1566
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(100, "feet"),
  23689. default: true
  23690. },
  23691. {
  23692. name: "Full Size",
  23693. height: math.unit(1000, "miles")
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(6, "feet"),
  23702. weight: math.unit(300, "lb"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/beishir-kiel/front.svg",
  23706. extra: 569 / 547,
  23707. bottom: 41.9 / 609
  23708. }
  23709. },
  23710. maw: {
  23711. height: math.unit(6 * 0.202, "feet"),
  23712. name: "Maw",
  23713. image: {
  23714. source: "./media/characters/beishir-kiel/maw.svg"
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(300, "feet"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(5 + 7/12, "feet"),
  23731. weight: math.unit(120, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/logan-grey/front.svg",
  23735. extra: 1836/1738,
  23736. bottom: 108/1944
  23737. }
  23738. },
  23739. back: {
  23740. height: math.unit(5 + 7/12, "feet"),
  23741. weight: math.unit(120, "lb"),
  23742. name: "Back",
  23743. image: {
  23744. source: "./media/characters/logan-grey/back.svg",
  23745. extra: 1880/1794,
  23746. bottom: 24/1904
  23747. }
  23748. },
  23749. frontSfw: {
  23750. height: math.unit(5 + 7/12, "feet"),
  23751. weight: math.unit(120, "lb"),
  23752. name: "Front (SFW)",
  23753. image: {
  23754. source: "./media/characters/logan-grey/front-sfw.svg",
  23755. extra: 1836/1738,
  23756. bottom: 108/1944
  23757. }
  23758. },
  23759. backSfw: {
  23760. height: math.unit(5 + 7/12, "feet"),
  23761. weight: math.unit(120, "lb"),
  23762. name: "Back (SFW)",
  23763. image: {
  23764. source: "./media/characters/logan-grey/back-sfw.svg",
  23765. extra: 1880/1794,
  23766. bottom: 24/1904
  23767. }
  23768. },
  23769. hands: {
  23770. height: math.unit(0.84, "feet"),
  23771. name: "Hands",
  23772. image: {
  23773. source: "./media/characters/logan-grey/hands.svg"
  23774. }
  23775. },
  23776. paws: {
  23777. height: math.unit(0.72, "feet"),
  23778. name: "Paws",
  23779. image: {
  23780. source: "./media/characters/logan-grey/paws.svg"
  23781. }
  23782. },
  23783. cock: {
  23784. height: math.unit(1.45, "feet"),
  23785. name: "Cock",
  23786. image: {
  23787. source: "./media/characters/logan-grey/cock.svg"
  23788. }
  23789. },
  23790. cockAlt: {
  23791. height: math.unit(1.437, "feet"),
  23792. name: "Cock (alt)",
  23793. image: {
  23794. source: "./media/characters/logan-grey/cock-alt.svg"
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(5 + 8 / 12, "feet")
  23802. },
  23803. {
  23804. name: "The 500 Foot Femboy",
  23805. height: math.unit(500, "feet"),
  23806. default: true
  23807. },
  23808. {
  23809. name: "Megmacro",
  23810. height: math.unit(20, "miles")
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(8 + 2 / 12, "feet"),
  23819. weight: math.unit(275, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/draganta/front.svg",
  23823. extra: 1177 / 1135,
  23824. bottom: 33.46 / 1212.1
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(8 + 6 / 12, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(150, "feet")
  23837. },
  23838. {
  23839. name: "Megamacro",
  23840. height: math.unit(1000, "miles")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(1.72, "m"),
  23849. weight: math.unit(80, "lb"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/voski/front.svg",
  23853. extra: 2076.22 / 2022.4,
  23854. bottom: 102.7 / 2177.3866
  23855. }
  23856. },
  23857. frontFlaccid: {
  23858. height: math.unit(1.72, "m"),
  23859. weight: math.unit(80, "lb"),
  23860. name: "Front (Flaccid)",
  23861. image: {
  23862. source: "./media/characters/voski/front-flaccid.svg",
  23863. extra: 2076.22 / 2022.4,
  23864. bottom: 102.7 / 2177.3866
  23865. }
  23866. },
  23867. frontErect: {
  23868. height: math.unit(1.72, "m"),
  23869. weight: math.unit(80, "lb"),
  23870. name: "Front (Erect)",
  23871. image: {
  23872. source: "./media/characters/voski/front-erect.svg",
  23873. extra: 2076.22 / 2022.4,
  23874. bottom: 102.7 / 2177.3866
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(1.72, "m"),
  23879. weight: math.unit(80, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/voski/back.svg",
  23883. extra: 2104 / 2051,
  23884. bottom: 10.45 / 2113.63
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(1.72, "m")
  23892. },
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(55, "m"),
  23896. default: true
  23897. },
  23898. {
  23899. name: "Macro+",
  23900. height: math.unit(300, "m")
  23901. },
  23902. {
  23903. name: "Macro++",
  23904. height: math.unit(700, "m")
  23905. },
  23906. {
  23907. name: "Macro+++",
  23908. height: math.unit(4500, "m")
  23909. },
  23910. {
  23911. name: "Macro++++",
  23912. height: math.unit(45, "km")
  23913. },
  23914. {
  23915. name: "Macro+++++",
  23916. height: math.unit(1220, "km")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(2.3, "m"),
  23925. weight: math.unit(304, "kg"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/icowom-lee/front.svg",
  23929. extra: 985 / 955,
  23930. bottom: 25.4 / 1012
  23931. }
  23932. },
  23933. fronttentacles: {
  23934. height: math.unit(2.3, "m"),
  23935. weight: math.unit(304, "kg"),
  23936. name: "Front-tentacles",
  23937. image: {
  23938. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23939. extra: 985 / 955,
  23940. bottom: 25.4 / 1012
  23941. }
  23942. },
  23943. back: {
  23944. height: math.unit(2.3, "m"),
  23945. weight: math.unit(304, "kg"),
  23946. name: "Back",
  23947. image: {
  23948. source: "./media/characters/icowom-lee/back.svg",
  23949. extra: 975 / 954,
  23950. bottom: 9.5 / 985
  23951. }
  23952. },
  23953. backtentacles: {
  23954. height: math.unit(2.3, "m"),
  23955. weight: math.unit(304, "kg"),
  23956. name: "Back-tentacles",
  23957. image: {
  23958. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23959. extra: 975 / 954,
  23960. bottom: 9.5 / 985
  23961. }
  23962. },
  23963. frontDressed: {
  23964. height: math.unit(2.3, "m"),
  23965. weight: math.unit(304, "kg"),
  23966. name: "Front (Dressed)",
  23967. image: {
  23968. source: "./media/characters/icowom-lee/front-dressed.svg",
  23969. extra: 3076 / 2933,
  23970. bottom: 51.4 / 3125.1889
  23971. }
  23972. },
  23973. rump: {
  23974. height: math.unit(0.776, "meters"),
  23975. name: "Rump",
  23976. image: {
  23977. source: "./media/characters/icowom-lee/rump.svg"
  23978. }
  23979. },
  23980. genitals: {
  23981. height: math.unit(0.78, "meters"),
  23982. name: "Genitals",
  23983. image: {
  23984. source: "./media/characters/icowom-lee/genitals.svg"
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(2.3, "meters"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(94, "meters"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24003. {
  24004. front: {
  24005. height: math.unit(22, "meters"),
  24006. weight: math.unit(21000, "kg"),
  24007. name: "Front",
  24008. image: {
  24009. source: "./media/characters/shock-diamond/front.svg",
  24010. extra: 2204 / 2053,
  24011. bottom: 65 / 2239.47
  24012. }
  24013. },
  24014. frontNude: {
  24015. height: math.unit(22, "meters"),
  24016. weight: math.unit(21000, "kg"),
  24017. name: "Front (Nude)",
  24018. image: {
  24019. source: "./media/characters/shock-diamond/front-nude.svg",
  24020. extra: 2514 / 2285,
  24021. bottom: 13 / 2527.56
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Normal",
  24028. height: math.unit(3, "meters")
  24029. },
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(22, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(5 + 4/12, "feet"),
  24042. weight: math.unit(125, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/rory/front.svg",
  24046. extra: 1790/1681,
  24047. bottom: 66/1856
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(5 + 4/12, "feet"),
  24052. weight: math.unit(125, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/rory/back.svg",
  24056. extra: 1805/1690,
  24057. bottom: 56/1861
  24058. }
  24059. },
  24060. frontDressed: {
  24061. height: math.unit(5 + 4/12, "feet"),
  24062. weight: math.unit(125, "lb"),
  24063. name: "Front (Dressed)",
  24064. image: {
  24065. source: "./media/characters/rory/front-dressed.svg",
  24066. extra: 1790/1681,
  24067. bottom: 66/1856
  24068. }
  24069. },
  24070. backDressed: {
  24071. height: math.unit(5 + 4/12, "feet"),
  24072. weight: math.unit(125, "lb"),
  24073. name: "Back (Dressed)",
  24074. image: {
  24075. source: "./media/characters/rory/back-dressed.svg",
  24076. extra: 1805/1690,
  24077. bottom: 56/1861
  24078. }
  24079. },
  24080. frontNsfw: {
  24081. height: math.unit(5 + 4/12, "feet"),
  24082. weight: math.unit(125, "lb"),
  24083. name: "Front (NSFW)",
  24084. image: {
  24085. source: "./media/characters/rory/front-nsfw.svg",
  24086. extra: 1790/1681,
  24087. bottom: 66/1856
  24088. }
  24089. },
  24090. backNsfw: {
  24091. height: math.unit(5 + 4/12, "feet"),
  24092. weight: math.unit(125, "lb"),
  24093. name: "Back (NSFW)",
  24094. image: {
  24095. source: "./media/characters/rory/back-nsfw.svg",
  24096. extra: 1805/1690,
  24097. bottom: 56/1861
  24098. }
  24099. },
  24100. dick: {
  24101. height: math.unit(0.8, "feet"),
  24102. name: "Dick",
  24103. image: {
  24104. source: "./media/characters/rory/dick.svg"
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Micro",
  24111. height: math.unit(3, "inches")
  24112. },
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(5 + 4/12, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(90, "feet")
  24121. },
  24122. {
  24123. name: "Supercharged",
  24124. height: math.unit(270, "feet")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(5 + 9 / 12, "feet"),
  24133. weight: math.unit(190, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/sprisk/front.svg",
  24137. extra: 1225 / 1180,
  24138. bottom: 42.7 / 1266.4
  24139. }
  24140. },
  24141. frontNsfw: {
  24142. height: math.unit(5 + 9 / 12, "feet"),
  24143. weight: math.unit(190, "lb"),
  24144. name: "Front (NSFW)",
  24145. image: {
  24146. source: "./media/characters/sprisk/front-nsfw.svg",
  24147. extra: 1225 / 1180,
  24148. bottom: 42.7 / 1266.4
  24149. }
  24150. },
  24151. back: {
  24152. height: math.unit(5 + 9 / 12, "feet"),
  24153. weight: math.unit(190, "lb"),
  24154. name: "Back",
  24155. image: {
  24156. source: "./media/characters/sprisk/back.svg",
  24157. extra: 1247 / 1200,
  24158. bottom: 5.6 / 1253.04
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Tiny",
  24165. height: math.unit(2, "inches")
  24166. },
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(5 + 9 / 12, "feet"),
  24170. default: true
  24171. },
  24172. {
  24173. name: "Mini Macro",
  24174. height: math.unit(18, "feet")
  24175. },
  24176. {
  24177. name: "Macro",
  24178. height: math.unit(100, "feet")
  24179. },
  24180. {
  24181. name: "MACRO",
  24182. height: math.unit(50, "miles")
  24183. },
  24184. {
  24185. name: "M A C R O",
  24186. height: math.unit(300, "miles")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24192. {
  24193. side: {
  24194. height: math.unit(15.6, "meters"),
  24195. weight: math.unit(700000, "kg"),
  24196. name: "Side",
  24197. image: {
  24198. source: "./media/characters/bunsen/side.svg",
  24199. extra: 1644 / 358
  24200. }
  24201. },
  24202. foot: {
  24203. height: math.unit(1.611 * 1644 / 358, "meter"),
  24204. name: "Foot",
  24205. image: {
  24206. source: "./media/characters/bunsen/foot.svg"
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Small",
  24213. height: math.unit(10, "feet")
  24214. },
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(15.6, "meters"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(4 + 11 / 12, "feet"),
  24227. weight: math.unit(140, "lb"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/sesh/front.svg",
  24231. extra: 3420 / 3231,
  24232. bottom: 72 / 3949.5
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(4 + 11 / 12, "feet")
  24240. },
  24241. {
  24242. name: "Grown",
  24243. height: math.unit(15, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(1500, "feet")
  24249. },
  24250. {
  24251. name: "Megamacro",
  24252. height: math.unit(30, "miles")
  24253. },
  24254. {
  24255. name: "Continental",
  24256. height: math.unit(3000, "miles")
  24257. },
  24258. {
  24259. name: "Gravity Mass",
  24260. height: math.unit(300000, "miles")
  24261. },
  24262. {
  24263. name: "Planet Buster",
  24264. height: math.unit(30000000, "miles")
  24265. },
  24266. {
  24267. name: "Big",
  24268. height: math.unit(3000000000, "miles")
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24274. {
  24275. front: {
  24276. height: math.unit(9, "feet"),
  24277. weight: math.unit(350, "lb"),
  24278. name: "Front",
  24279. image: {
  24280. source: "./media/characters/pepper/front.svg",
  24281. extra: 1448 / 1312,
  24282. bottom: 9.4 / 1457.88
  24283. }
  24284. },
  24285. back: {
  24286. height: math.unit(9, "feet"),
  24287. weight: math.unit(350, "lb"),
  24288. name: "Back",
  24289. image: {
  24290. source: "./media/characters/pepper/back.svg",
  24291. extra: 1423 / 1300,
  24292. bottom: 4.6 / 1429
  24293. }
  24294. },
  24295. maw: {
  24296. height: math.unit(0.932, "feet"),
  24297. name: "Maw",
  24298. image: {
  24299. source: "./media/characters/pepper/maw.svg"
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(9, "feet"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(6, "feet"),
  24316. weight: math.unit(150, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/maelstrom/front.svg",
  24320. extra: 2100 / 1883,
  24321. bottom: 94 / 2196.7
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Less Kaiju",
  24328. height: math.unit(200, "feet")
  24329. },
  24330. {
  24331. name: "Kaiju",
  24332. height: math.unit(400, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Kaiju-er",
  24337. height: math.unit(600, "feet")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(6 + 5 / 12, "feet"),
  24346. weight: math.unit(180, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/lexir/front.svg",
  24350. extra: 180 / 172,
  24351. bottom: 12 / 192
  24352. }
  24353. },
  24354. back: {
  24355. height: math.unit(6 + 5 / 12, "feet"),
  24356. weight: math.unit(180, "lb"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/lexir/back.svg",
  24360. extra: 1273/1201,
  24361. bottom: 39/1312
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Very Smal",
  24368. height: math.unit(1, "nm")
  24369. },
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(6 + 5 / 12, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(1, "mile")
  24378. },
  24379. {
  24380. name: "Megamacro",
  24381. height: math.unit(50, "miles")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(1.5, "meters"),
  24390. weight: math.unit(100, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/maksio/front.svg",
  24394. extra: 1549 / 1531,
  24395. bottom: 123.7 / 1674.5429
  24396. }
  24397. },
  24398. back: {
  24399. height: math.unit(1.5, "meters"),
  24400. weight: math.unit(100, "lb"),
  24401. name: "Back",
  24402. image: {
  24403. source: "./media/characters/maksio/back.svg",
  24404. extra: 1541 / 1509,
  24405. bottom: 97 / 1639
  24406. }
  24407. },
  24408. hand: {
  24409. height: math.unit(0.621, "feet"),
  24410. name: "Hand",
  24411. image: {
  24412. source: "./media/characters/maksio/hand.svg"
  24413. }
  24414. },
  24415. foot: {
  24416. height: math.unit(1.611, "feet"),
  24417. name: "Foot",
  24418. image: {
  24419. source: "./media/characters/maksio/foot.svg"
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Shrunken",
  24426. height: math.unit(10, "cm")
  24427. },
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(150, "cm"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(100, "feet"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/erza-bear/front.svg",
  24443. extra: 2449 / 2390,
  24444. bottom: 46 / 2494
  24445. }
  24446. },
  24447. back: {
  24448. height: math.unit(100, "feet"),
  24449. name: "Back",
  24450. image: {
  24451. source: "./media/characters/erza-bear/back.svg",
  24452. extra: 2489 / 2430,
  24453. bottom: 85.4 / 2480
  24454. }
  24455. },
  24456. tail: {
  24457. height: math.unit(42, "feet"),
  24458. name: "Tail",
  24459. image: {
  24460. source: "./media/characters/erza-bear/tail.svg"
  24461. }
  24462. },
  24463. tongue: {
  24464. height: math.unit(8, "feet"),
  24465. name: "Tongue",
  24466. image: {
  24467. source: "./media/characters/erza-bear/tongue.svg"
  24468. }
  24469. },
  24470. dick: {
  24471. height: math.unit(10.5, "feet"),
  24472. name: "Dick",
  24473. image: {
  24474. source: "./media/characters/erza-bear/dick.svg"
  24475. }
  24476. },
  24477. dickVertical: {
  24478. height: math.unit(16.9, "feet"),
  24479. name: "Dick (Vertical)",
  24480. image: {
  24481. source: "./media/characters/erza-bear/dick-vertical.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(100, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(172, "cm"),
  24498. weight: math.unit(73, "kg"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/violet-flor/front.svg",
  24502. extra: 1530 / 1442,
  24503. bottom: 61.9 / 1588.8
  24504. }
  24505. },
  24506. back: {
  24507. height: math.unit(180, "cm"),
  24508. weight: math.unit(73, "kg"),
  24509. name: "Back",
  24510. image: {
  24511. source: "./media/characters/violet-flor/back.svg",
  24512. extra: 1692 / 1630,
  24513. bottom: 20 / 1712
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Normal",
  24520. height: math.unit(172, "cm"),
  24521. default: true
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(6, "feet"),
  24530. weight: math.unit(220, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/lynn-rhea/front.svg",
  24534. extra: 310 / 273
  24535. }
  24536. },
  24537. back: {
  24538. height: math.unit(6, "feet"),
  24539. weight: math.unit(220, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/lynn-rhea/back.svg",
  24543. extra: 310 / 273
  24544. }
  24545. },
  24546. dicks: {
  24547. height: math.unit(0.9, "feet"),
  24548. name: "Dicks",
  24549. image: {
  24550. source: "./media/characters/lynn-rhea/dicks.svg"
  24551. }
  24552. },
  24553. slit: {
  24554. height: math.unit(0.4, "feet"),
  24555. name: "Slit",
  24556. image: {
  24557. source: "./media/characters/lynn-rhea/slit.svg"
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Micro",
  24564. height: math.unit(1, "inch")
  24565. },
  24566. {
  24567. name: "Macro",
  24568. height: math.unit(60, "feet"),
  24569. default: true
  24570. },
  24571. {
  24572. name: "Megamacro",
  24573. height: math.unit(2, "miles")
  24574. },
  24575. {
  24576. name: "Gigamacro",
  24577. height: math.unit(3, "earths")
  24578. },
  24579. {
  24580. name: "Galactic",
  24581. height: math.unit(0.8, "galaxies")
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24587. {
  24588. front: {
  24589. height: math.unit(1600, "feet"),
  24590. weight: math.unit(85758785169, "kg"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/valathos/front.svg",
  24594. extra: 1451 / 1339
  24595. }
  24596. },
  24597. },
  24598. [
  24599. {
  24600. name: "Macro",
  24601. height: math.unit(1600, "feet"),
  24602. default: true
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(7 + 5 / 12, "feet"),
  24611. weight: math.unit(300, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/azula/front.svg",
  24615. extra: 3208 / 2880,
  24616. bottom: 80.2 / 3277
  24617. }
  24618. },
  24619. back: {
  24620. height: math.unit(7 + 5 / 12, "feet"),
  24621. weight: math.unit(300, "lb"),
  24622. name: "Back",
  24623. image: {
  24624. source: "./media/characters/azula/back.svg",
  24625. extra: 3169 / 2822,
  24626. bottom: 150.6 / 3321
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(7 + 5 / 12, "feet"),
  24634. default: true
  24635. },
  24636. {
  24637. name: "Big",
  24638. height: math.unit(20, "feet")
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24644. {
  24645. front: {
  24646. height: math.unit(5 + 1 / 12, "feet"),
  24647. weight: math.unit(110, "lb"),
  24648. name: "Front",
  24649. image: {
  24650. source: "./media/characters/rupert/front.svg",
  24651. extra: 1549 / 1495,
  24652. bottom: 54.2 / 1604.4
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(5 + 1 / 12, "feet"),
  24660. default: true
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24666. {
  24667. front: {
  24668. height: math.unit(8 + 4 / 12, "feet"),
  24669. weight: math.unit(350, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/sheera-castellar/front.svg",
  24673. extra: 1957 / 1894,
  24674. bottom: 26.97 / 1975.017
  24675. }
  24676. },
  24677. side: {
  24678. height: math.unit(8 + 4 / 12, "feet"),
  24679. weight: math.unit(350, "lb"),
  24680. name: "Side",
  24681. image: {
  24682. source: "./media/characters/sheera-castellar/side.svg",
  24683. extra: 1957 / 1894
  24684. }
  24685. },
  24686. back: {
  24687. height: math.unit(8 + 4 / 12, "feet"),
  24688. weight: math.unit(350, "lb"),
  24689. name: "Back",
  24690. image: {
  24691. source: "./media/characters/sheera-castellar/back.svg",
  24692. extra: 1957 / 1894
  24693. }
  24694. },
  24695. angled: {
  24696. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24697. weight: math.unit(350, "lb"),
  24698. name: "Angled",
  24699. image: {
  24700. source: "./media/characters/sheera-castellar/angled.svg",
  24701. extra: 1807 / 1707,
  24702. bottom: 68 / 1875
  24703. }
  24704. },
  24705. genitals: {
  24706. height: math.unit(2.2, "feet"),
  24707. name: "Genitals",
  24708. image: {
  24709. source: "./media/characters/sheera-castellar/genitals.svg"
  24710. }
  24711. },
  24712. taur: {
  24713. height: math.unit(10 + 6/12, "feet"),
  24714. name: "Taur",
  24715. image: {
  24716. source: "./media/characters/sheera-castellar/taur.svg",
  24717. extra: 2017/1909,
  24718. bottom: 185/2202
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(8 + 4 / 12, "feet")
  24726. },
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(150, "feet"),
  24730. default: true
  24731. },
  24732. {
  24733. name: "Macro+",
  24734. height: math.unit(800, "feet")
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(6, "feet"),
  24743. weight: math.unit(150, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/jaipur/front.svg",
  24747. extra: 3860 / 3731,
  24748. bottom: 287 / 4140
  24749. }
  24750. },
  24751. back: {
  24752. height: math.unit(6, "feet"),
  24753. weight: math.unit(150, "lb"),
  24754. name: "Back",
  24755. image: {
  24756. source: "./media/characters/jaipur/back.svg",
  24757. extra: 1637/1561,
  24758. bottom: 154/1791
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(1.85, "meters"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Macro",
  24770. height: math.unit(150, "meters")
  24771. },
  24772. {
  24773. name: "Macro+",
  24774. height: math.unit(0.5, "miles")
  24775. },
  24776. {
  24777. name: "Macro++",
  24778. height: math.unit(2.5, "miles")
  24779. },
  24780. {
  24781. name: "Macro+++",
  24782. height: math.unit(12, "miles")
  24783. },
  24784. {
  24785. name: "Macro++++",
  24786. height: math.unit(120, "miles")
  24787. },
  24788. {
  24789. name: "Macro+++++",
  24790. height: math.unit(1200, "miles")
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(6, "feet"),
  24799. weight: math.unit(150, "lb"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/sheila-wolf/front.svg",
  24803. extra: 1931 / 1808,
  24804. bottom: 29.5 / 1960
  24805. }
  24806. },
  24807. dick: {
  24808. height: math.unit(1.464, "feet"),
  24809. name: "Dick",
  24810. image: {
  24811. source: "./media/characters/sheila-wolf/dick.svg"
  24812. }
  24813. },
  24814. muzzle: {
  24815. height: math.unit(0.513, "feet"),
  24816. name: "Muzzle",
  24817. image: {
  24818. source: "./media/characters/sheila-wolf/muzzle.svg"
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(70, "feet"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(32, "meters"),
  24835. weight: math.unit(300000, "kg"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/almor/front.svg",
  24839. extra: 1408 / 1322,
  24840. bottom: 94.6 / 1506.5
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(32, "meters"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(7, "feet"),
  24857. weight: math.unit(200, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/silver/front.svg",
  24861. extra: 472.1 / 450.5,
  24862. bottom: 26.5 / 499.424
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(7, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Macro",
  24874. height: math.unit(800, "feet")
  24875. },
  24876. {
  24877. name: "Megamacro",
  24878. height: math.unit(250, "miles")
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(6, "feet"),
  24887. weight: math.unit(150, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/pliskin/front.svg",
  24891. extra: 1469 / 1359,
  24892. bottom: 70 / 1540
  24893. }
  24894. },
  24895. },
  24896. [
  24897. {
  24898. name: "Micro",
  24899. height: math.unit(3, "inches")
  24900. },
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(5 + 11 / 12, "feet"),
  24904. default: true
  24905. },
  24906. {
  24907. name: "Macro",
  24908. height: math.unit(120, "feet")
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(6, "feet"),
  24917. weight: math.unit(150, "lb"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/sammy/front.svg",
  24921. extra: 1193 / 1089,
  24922. bottom: 30.5 / 1226
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(1700, "feet"),
  24930. default: true
  24931. },
  24932. {
  24933. name: "Examacro",
  24934. height: math.unit(2.5e9, "lightyears")
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(21, "meters"),
  24943. weight: math.unit(12, "tonnes"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/kuru/front.svg",
  24947. extra: 4301 / 3785,
  24948. bottom: 371.3 / 4691
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Macro",
  24955. height: math.unit(21, "meters"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(23, "meters"),
  24965. weight: math.unit(12.2, "tonnes"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/rakka/front.svg",
  24969. extra: 4670 / 4169,
  24970. bottom: 301 / 4968.7
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(23, "meters"),
  24978. default: true
  24979. },
  24980. ]
  24981. ))
  24982. characterMakers.push(() => makeCharacter(
  24983. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24984. {
  24985. front: {
  24986. height: math.unit(6, "feet"),
  24987. weight: math.unit(150, "lb"),
  24988. name: "Front",
  24989. image: {
  24990. source: "./media/characters/rhys-feline/front.svg",
  24991. extra: 2488 / 2308,
  24992. bottom: 35.67 / 2519.19
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Really Small",
  24999. height: math.unit(1, "nm")
  25000. },
  25001. {
  25002. name: "Micro",
  25003. height: math.unit(4, "inches")
  25004. },
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(4 + 10 / 12, "feet"),
  25008. default: true
  25009. },
  25010. {
  25011. name: "Macro",
  25012. height: math.unit(100, "feet")
  25013. },
  25014. {
  25015. name: "Megamacto",
  25016. height: math.unit(50, "miles")
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25022. {
  25023. side: {
  25024. height: math.unit(30, "feet"),
  25025. weight: math.unit(35000, "kg"),
  25026. name: "Side",
  25027. image: {
  25028. source: "./media/characters/alydar/side.svg",
  25029. extra: 234 / 222,
  25030. bottom: 6.5 / 241
  25031. }
  25032. },
  25033. front: {
  25034. height: math.unit(30, "feet"),
  25035. weight: math.unit(35000, "kg"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/alydar/front.svg",
  25039. extra: 223.37 / 210.2,
  25040. bottom: 22.3 / 246.76
  25041. }
  25042. },
  25043. top: {
  25044. height: math.unit(64.54, "feet"),
  25045. weight: math.unit(35000, "kg"),
  25046. name: "Top",
  25047. image: {
  25048. source: "./media/characters/alydar/top.svg"
  25049. }
  25050. },
  25051. anthro: {
  25052. height: math.unit(30, "feet"),
  25053. weight: math.unit(9000, "kg"),
  25054. name: "Anthro",
  25055. image: {
  25056. source: "./media/characters/alydar/anthro.svg",
  25057. extra: 432 / 421,
  25058. bottom: 7.18 / 440
  25059. }
  25060. },
  25061. maw: {
  25062. height: math.unit(11.693, "feet"),
  25063. name: "Maw",
  25064. image: {
  25065. source: "./media/characters/alydar/maw.svg"
  25066. }
  25067. },
  25068. head: {
  25069. height: math.unit(11.693, "feet"),
  25070. name: "Head",
  25071. image: {
  25072. source: "./media/characters/alydar/head.svg"
  25073. }
  25074. },
  25075. headAlt: {
  25076. height: math.unit(12.861, "feet"),
  25077. name: "Head (Alt)",
  25078. image: {
  25079. source: "./media/characters/alydar/head-alt.svg"
  25080. }
  25081. },
  25082. wing: {
  25083. height: math.unit(20.712, "feet"),
  25084. name: "Wing",
  25085. image: {
  25086. source: "./media/characters/alydar/wing.svg"
  25087. }
  25088. },
  25089. wingFeather: {
  25090. height: math.unit(9.662, "feet"),
  25091. name: "Wing Feather",
  25092. image: {
  25093. source: "./media/characters/alydar/wing-feather.svg"
  25094. }
  25095. },
  25096. countourFeather: {
  25097. height: math.unit(4.154, "feet"),
  25098. name: "Contour Feather",
  25099. image: {
  25100. source: "./media/characters/alydar/contour-feather.svg"
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Diplomatic",
  25107. height: math.unit(13, "feet"),
  25108. default: true
  25109. },
  25110. {
  25111. name: "Small",
  25112. height: math.unit(30, "feet")
  25113. },
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(95, "feet"),
  25117. default: true
  25118. },
  25119. {
  25120. name: "Large",
  25121. height: math.unit(285, "feet")
  25122. },
  25123. {
  25124. name: "Incomprehensible",
  25125. height: math.unit(450, "megameters")
  25126. },
  25127. ]
  25128. ))
  25129. characterMakers.push(() => makeCharacter(
  25130. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25131. {
  25132. side: {
  25133. height: math.unit(11, "feet"),
  25134. weight: math.unit(1750, "kg"),
  25135. name: "Side",
  25136. image: {
  25137. source: "./media/characters/selicia/side.svg",
  25138. extra: 440 / 396,
  25139. bottom: 24.8 / 465.979
  25140. }
  25141. },
  25142. maw: {
  25143. height: math.unit(4.665, "feet"),
  25144. name: "Maw",
  25145. image: {
  25146. source: "./media/characters/selicia/maw.svg"
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(11, "feet"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25160. {
  25161. side: {
  25162. height: math.unit(2 + 6 / 12, "feet"),
  25163. weight: math.unit(30, "lb"),
  25164. name: "Side",
  25165. image: {
  25166. source: "./media/characters/layla/side.svg",
  25167. extra: 244 / 188,
  25168. bottom: 18.2 / 262.1
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(2 + 6 / 12, "feet"),
  25173. weight: math.unit(30, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/layla/back.svg",
  25177. extra: 308 / 241.5,
  25178. bottom: 8.9 / 316.8
  25179. }
  25180. },
  25181. cumming: {
  25182. height: math.unit(2 + 6 / 12, "feet"),
  25183. weight: math.unit(30, "lb"),
  25184. name: "Cumming",
  25185. image: {
  25186. source: "./media/characters/layla/cumming.svg",
  25187. extra: 342 / 279,
  25188. bottom: 595 / 938
  25189. }
  25190. },
  25191. dickFlaccid: {
  25192. height: math.unit(2.595, "feet"),
  25193. name: "Flaccid Genitals",
  25194. image: {
  25195. source: "./media/characters/layla/dick-flaccid.svg"
  25196. }
  25197. },
  25198. dickErect: {
  25199. height: math.unit(2.359, "feet"),
  25200. name: "Erect Genitals",
  25201. image: {
  25202. source: "./media/characters/layla/dick-erect.svg"
  25203. }
  25204. },
  25205. dragon: {
  25206. height: math.unit(40, "feet"),
  25207. name: "Dragon",
  25208. image: {
  25209. source: "./media/characters/layla/dragon.svg",
  25210. extra: 610/535,
  25211. bottom: 367/977
  25212. }
  25213. },
  25214. taur: {
  25215. height: math.unit(30, "feet"),
  25216. name: "Taur",
  25217. image: {
  25218. source: "./media/characters/layla/taur.svg",
  25219. extra: 1268/1199,
  25220. bottom: 112/1380
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Micro",
  25227. height: math.unit(1, "inch")
  25228. },
  25229. {
  25230. name: "Small",
  25231. height: math.unit(1, "foot")
  25232. },
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(2 + 6 / 12, "feet"),
  25236. default: true
  25237. },
  25238. {
  25239. name: "Macro",
  25240. height: math.unit(200, "feet")
  25241. },
  25242. {
  25243. name: "Megamacro",
  25244. height: math.unit(1000, "miles")
  25245. },
  25246. {
  25247. name: "Planetary",
  25248. height: math.unit(8000, "miles")
  25249. },
  25250. {
  25251. name: "True Layla",
  25252. height: math.unit(200000 * 7, "multiverses")
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25258. {
  25259. back: {
  25260. height: math.unit(10.5, "feet"),
  25261. weight: math.unit(800, "lb"),
  25262. name: "Back",
  25263. image: {
  25264. source: "./media/characters/knox/back.svg",
  25265. extra: 1486 / 1089,
  25266. bottom: 107 / 1601.4
  25267. }
  25268. },
  25269. side: {
  25270. height: math.unit(10.5, "feet"),
  25271. weight: math.unit(800, "lb"),
  25272. name: "Side",
  25273. image: {
  25274. source: "./media/characters/knox/side.svg",
  25275. extra: 244 / 218,
  25276. bottom: 14 / 260
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Compact",
  25283. height: math.unit(10.5, "feet"),
  25284. default: true
  25285. },
  25286. {
  25287. name: "Dynamax",
  25288. height: math.unit(210, "feet")
  25289. },
  25290. {
  25291. name: "Full Macro",
  25292. height: math.unit(850, "feet")
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(28, "feet"),
  25301. weight: math.unit(10500, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/kayda/front.svg",
  25305. extra: 1536 / 1428,
  25306. bottom: 68.7 / 1603
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(28, "feet"),
  25311. weight: math.unit(10500, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/kayda/back.svg",
  25315. extra: 1557 / 1464,
  25316. bottom: 39.5 / 1597.49
  25317. }
  25318. },
  25319. dick: {
  25320. height: math.unit(3.858, "feet"),
  25321. name: "Dick",
  25322. image: {
  25323. source: "./media/characters/kayda/dick.svg"
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Macro",
  25330. height: math.unit(28, "feet"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(10 + 11 / 12, "feet"),
  25340. weight: math.unit(1400, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/brian/front.svg",
  25344. extra: 737 / 692,
  25345. bottom: 55.4 / 785
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(10 + 11 / 12, "feet"),
  25353. default: true
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25359. {
  25360. front: {
  25361. height: math.unit(5 + 8 / 12, "feet"),
  25362. weight: math.unit(140, "lb"),
  25363. name: "Front",
  25364. image: {
  25365. source: "./media/characters/khemri/front.svg",
  25366. extra: 4780 / 4059,
  25367. bottom: 80.1 / 4859.25
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Micro",
  25374. height: math.unit(6, "inches")
  25375. },
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(5 + 8 / 12, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25385. {
  25386. front: {
  25387. height: math.unit(13, "feet"),
  25388. weight: math.unit(1700, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/felix-braveheart/front.svg",
  25392. extra: 1222 / 1157,
  25393. bottom: 53.2 / 1280
  25394. }
  25395. },
  25396. back: {
  25397. height: math.unit(13, "feet"),
  25398. weight: math.unit(1700, "lb"),
  25399. name: "Back",
  25400. image: {
  25401. source: "./media/characters/felix-braveheart/back.svg",
  25402. extra: 1277 / 1203,
  25403. bottom: 50.2 / 1327
  25404. }
  25405. },
  25406. feral: {
  25407. height: math.unit(6, "feet"),
  25408. weight: math.unit(400, "lb"),
  25409. name: "Feral",
  25410. image: {
  25411. source: "./media/characters/felix-braveheart/feral.svg",
  25412. extra: 682 / 625,
  25413. bottom: 6.9 / 688
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(13, "feet"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25427. {
  25428. side: {
  25429. height: math.unit(5 + 11 / 12, "feet"),
  25430. weight: math.unit(1400, "lb"),
  25431. name: "Side",
  25432. image: {
  25433. source: "./media/characters/shadow-blade/side.svg",
  25434. extra: 1726 / 1267,
  25435. bottom: 58.4 / 1785
  25436. }
  25437. },
  25438. },
  25439. [
  25440. {
  25441. name: "Normal",
  25442. height: math.unit(5 + 11 / 12, "feet"),
  25443. default: true
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25449. {
  25450. front: {
  25451. height: math.unit(1 + 6 / 12, "feet"),
  25452. weight: math.unit(25, "lb"),
  25453. name: "Front",
  25454. image: {
  25455. source: "./media/characters/karla-halldor/front.svg",
  25456. extra: 1459 / 1383,
  25457. bottom: 12 / 1472
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(1 + 6 / 12, "feet"),
  25465. default: true
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(6 + 2 / 12, "feet"),
  25474. weight: math.unit(160, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/ariam/front.svg",
  25478. extra: 1073/976,
  25479. bottom: 52/1125
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(6 + 2/12, "feet"),
  25484. weight: math.unit(160, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/ariam/back.svg",
  25488. extra: 1103/1023,
  25489. bottom: 9/1112
  25490. }
  25491. },
  25492. dressed: {
  25493. height: math.unit(6 + 2/12, "feet"),
  25494. weight: math.unit(160, "lb"),
  25495. name: "Dressed",
  25496. image: {
  25497. source: "./media/characters/ariam/dressed.svg",
  25498. extra: 1099/1009,
  25499. bottom: 25/1124
  25500. }
  25501. },
  25502. squatting: {
  25503. height: math.unit(4.1, "feet"),
  25504. weight: math.unit(160, "lb"),
  25505. name: "Squatting",
  25506. image: {
  25507. source: "./media/characters/ariam/squatting.svg",
  25508. extra: 2617 / 2112,
  25509. bottom: 61.2 / 2681,
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Normal",
  25516. height: math.unit(6 + 2 / 12, "feet"),
  25517. default: true
  25518. },
  25519. {
  25520. name: "Normal+",
  25521. height: math.unit(4, "meters")
  25522. },
  25523. {
  25524. name: "Macro",
  25525. height: math.unit(50, "meters")
  25526. },
  25527. {
  25528. name: "Macro+",
  25529. height: math.unit(100, "meters")
  25530. },
  25531. {
  25532. name: "Megamacro",
  25533. height: math.unit(20, "km")
  25534. },
  25535. {
  25536. name: "Caretaker",
  25537. height: math.unit(444, "megameters")
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(1.67, "meters"),
  25546. weight: math.unit(140, "lb"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25550. extra: 438 / 410,
  25551. bottom: 0.75 / 439
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Shrunken",
  25558. height: math.unit(7.6, "cm")
  25559. },
  25560. {
  25561. name: "Human Scale",
  25562. height: math.unit(1.67, "meters")
  25563. },
  25564. {
  25565. name: "Wolxi Scale",
  25566. height: math.unit(36.7, "meters"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(1.73, "meters"),
  25576. weight: math.unit(240, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/izue-two-mothers/front.svg",
  25580. extra: 469 / 437,
  25581. bottom: 1.24 / 470.6
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Shrunken",
  25588. height: math.unit(7.86, "cm")
  25589. },
  25590. {
  25591. name: "Human Scale",
  25592. height: math.unit(1.73, "meters")
  25593. },
  25594. {
  25595. name: "Wolxi Scale",
  25596. height: math.unit(38, "meters"),
  25597. default: true
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(1.55, "meters"),
  25606. weight: math.unit(120, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/teeku-love-shack/front.svg",
  25610. extra: 387 / 362,
  25611. bottom: 1.51 / 388
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Shrunken",
  25618. height: math.unit(7, "cm")
  25619. },
  25620. {
  25621. name: "Human Scale",
  25622. height: math.unit(1.55, "meters")
  25623. },
  25624. {
  25625. name: "Wolxi Scale",
  25626. height: math.unit(34.1, "meters"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(1.83, "meters"),
  25636. weight: math.unit(135, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/dejma-the-red/front.svg",
  25640. extra: 480 / 458,
  25641. bottom: 1.8 / 482
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Shrunken",
  25648. height: math.unit(8.3, "cm")
  25649. },
  25650. {
  25651. name: "Human Scale",
  25652. height: math.unit(1.83, "meters")
  25653. },
  25654. {
  25655. name: "Wolxi Scale",
  25656. height: math.unit(40, "meters"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(1.78, "meters"),
  25666. weight: math.unit(65, "kg"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/aki/front.svg",
  25670. extra: 452 / 415
  25671. }
  25672. },
  25673. frontNsfw: {
  25674. height: math.unit(1.78, "meters"),
  25675. weight: math.unit(65, "kg"),
  25676. name: "Front (NSFW)",
  25677. image: {
  25678. source: "./media/characters/aki/front-nsfw.svg",
  25679. extra: 452 / 415
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(1.78, "meters"),
  25684. weight: math.unit(65, "kg"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/aki/back.svg",
  25688. extra: 452 / 415
  25689. }
  25690. },
  25691. rump: {
  25692. height: math.unit(2.05, "feet"),
  25693. name: "Rump",
  25694. image: {
  25695. source: "./media/characters/aki/rump.svg"
  25696. }
  25697. },
  25698. dick: {
  25699. height: math.unit(0.95, "feet"),
  25700. name: "Dick",
  25701. image: {
  25702. source: "./media/characters/aki/dick.svg"
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Micro",
  25709. height: math.unit(15, "cm")
  25710. },
  25711. {
  25712. name: "Normal",
  25713. height: math.unit(178, "cm"),
  25714. default: true
  25715. },
  25716. {
  25717. name: "Macro",
  25718. height: math.unit(214, "m")
  25719. },
  25720. {
  25721. name: "Macro+",
  25722. height: math.unit(534, "m")
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(5 + 5 / 12, "feet"),
  25731. weight: math.unit(120, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/ari/front.svg",
  25735. extra: 1550/1471,
  25736. bottom: 39/1589
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(5 + 5 / 12, "feet")
  25744. },
  25745. {
  25746. name: "Macro",
  25747. height: math.unit(100, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Megamacro",
  25752. height: math.unit(100, "miles")
  25753. },
  25754. {
  25755. name: "Gigamacro",
  25756. height: math.unit(80000, "miles")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25762. {
  25763. side: {
  25764. height: math.unit(9, "feet"),
  25765. weight: math.unit(400, "kg"),
  25766. name: "Side",
  25767. image: {
  25768. source: "./media/characters/bolt/side.svg",
  25769. extra: 1126 / 896,
  25770. bottom: 60 / 1187.3,
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Micro",
  25777. height: math.unit(5, "inches")
  25778. },
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(9, "feet"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(700, "feet")
  25787. },
  25788. {
  25789. name: "Max Size",
  25790. height: math.unit(1.52e22, "yottameters")
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(4.3, "meters"),
  25799. weight: math.unit(3, "tons"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/draekon-sylviar/front.svg",
  25803. extra: 2072/1512,
  25804. bottom: 74/2146
  25805. }
  25806. },
  25807. back: {
  25808. height: math.unit(4.3, "meters"),
  25809. weight: math.unit(3, "tons"),
  25810. name: "Back",
  25811. image: {
  25812. source: "./media/characters/draekon-sylviar/back.svg",
  25813. extra: 1639/1483,
  25814. bottom: 41/1680
  25815. }
  25816. },
  25817. feral: {
  25818. height: math.unit(1.15, "meters"),
  25819. weight: math.unit(3, "tons"),
  25820. name: "Feral",
  25821. image: {
  25822. source: "./media/characters/draekon-sylviar/feral.svg",
  25823. extra: 1033/395,
  25824. bottom: 130/1163
  25825. }
  25826. },
  25827. maw: {
  25828. height: math.unit(1.3, "meters"),
  25829. name: "Maw",
  25830. image: {
  25831. source: "./media/characters/draekon-sylviar/maw.svg"
  25832. }
  25833. },
  25834. mawSeparated: {
  25835. height: math.unit(1.53, "meters"),
  25836. name: "Separated Maw",
  25837. image: {
  25838. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25839. }
  25840. },
  25841. tail: {
  25842. height: math.unit(1.15, "meters"),
  25843. name: "Tail",
  25844. image: {
  25845. source: "./media/characters/draekon-sylviar/tail.svg"
  25846. }
  25847. },
  25848. tailDick: {
  25849. height: math.unit(1.15, "meters"),
  25850. name: "Tail (Dick)",
  25851. image: {
  25852. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25853. }
  25854. },
  25855. tailDickSeparated: {
  25856. height: math.unit(1.19, "meters"),
  25857. name: "Tail (Separated Dick)",
  25858. image: {
  25859. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25860. }
  25861. },
  25862. slit: {
  25863. height: math.unit(1, "meters"),
  25864. name: "Slit",
  25865. image: {
  25866. source: "./media/characters/draekon-sylviar/slit.svg"
  25867. }
  25868. },
  25869. dick: {
  25870. height: math.unit(1.15, "meters"),
  25871. name: "Dick",
  25872. image: {
  25873. source: "./media/characters/draekon-sylviar/dick.svg"
  25874. }
  25875. },
  25876. dickSeparated: {
  25877. height: math.unit(1.1, "meters"),
  25878. name: "Separated Dick",
  25879. image: {
  25880. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25881. }
  25882. },
  25883. sheath: {
  25884. height: math.unit(1.15, "meters"),
  25885. name: "Sheath",
  25886. image: {
  25887. source: "./media/characters/draekon-sylviar/sheath.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Small",
  25894. height: math.unit(4.53 / 2, "meters"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(4.53, "meters"),
  25900. default: true
  25901. },
  25902. {
  25903. name: "Large",
  25904. height: math.unit(4.53 * 2, "meters"),
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(6 + 2 / 12, "feet"),
  25913. weight: math.unit(180, "lb"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/brawler/front.svg",
  25917. extra: 3301 / 3027,
  25918. bottom: 138 / 3439
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(6 + 2 / 12, "feet"),
  25926. default: true
  25927. },
  25928. ]
  25929. ))
  25930. characterMakers.push(() => makeCharacter(
  25931. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25932. {
  25933. front: {
  25934. height: math.unit(11, "feet"),
  25935. weight: math.unit(1000, "lb"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/alex/front.svg",
  25939. bottom: 44.5 / 620
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Micro",
  25946. height: math.unit(5, "inches")
  25947. },
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(11, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(9.5e9, "feet")
  25956. },
  25957. {
  25958. name: "Max Size",
  25959. height: math.unit(1.4e283, "yottameters")
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25965. {
  25966. female: {
  25967. height: math.unit(29.9, "m"),
  25968. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25969. name: "Female",
  25970. image: {
  25971. source: "./media/characters/zenari/female.svg",
  25972. extra: 3281.6 / 3217,
  25973. bottom: 72.2 / 3353
  25974. }
  25975. },
  25976. male: {
  25977. height: math.unit(27.7, "m"),
  25978. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25979. name: "Male",
  25980. image: {
  25981. source: "./media/characters/zenari/male.svg",
  25982. extra: 3008 / 2991,
  25983. bottom: 54.6 / 3069
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Macro",
  25990. height: math.unit(29.7, "meters"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25997. {
  25998. female: {
  25999. height: math.unit(23.8, "m"),
  26000. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26001. name: "Female",
  26002. image: {
  26003. source: "./media/characters/mactarian/female.svg",
  26004. extra: 2662 / 2569,
  26005. bottom: 73 / 2736
  26006. }
  26007. },
  26008. male: {
  26009. height: math.unit(23.8, "m"),
  26010. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26011. name: "Male",
  26012. image: {
  26013. source: "./media/characters/mactarian/male.svg",
  26014. extra: 2673 / 2600,
  26015. bottom: 76 / 2750
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Macro",
  26022. height: math.unit(23.8, "meters"),
  26023. default: true
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26029. {
  26030. female: {
  26031. height: math.unit(19.3, "m"),
  26032. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26033. name: "Female",
  26034. image: {
  26035. source: "./media/characters/umok/female.svg",
  26036. extra: 2186 / 2078,
  26037. bottom: 87 / 2277
  26038. }
  26039. },
  26040. male: {
  26041. height: math.unit(19.5, "m"),
  26042. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26043. name: "Male",
  26044. image: {
  26045. source: "./media/characters/umok/male.svg",
  26046. extra: 2233 / 2140,
  26047. bottom: 24.4 / 2258
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Macro",
  26054. height: math.unit(19.3, "meters"),
  26055. default: true
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26061. {
  26062. female: {
  26063. height: math.unit(26.15, "m"),
  26064. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26065. name: "Female",
  26066. image: {
  26067. source: "./media/characters/joraxian/female.svg",
  26068. extra: 2912 / 2824,
  26069. bottom: 36 / 2956
  26070. }
  26071. },
  26072. male: {
  26073. height: math.unit(25.4, "m"),
  26074. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26075. name: "Male",
  26076. image: {
  26077. source: "./media/characters/joraxian/male.svg",
  26078. extra: 2877 / 2721,
  26079. bottom: 82 / 2967
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Macro",
  26086. height: math.unit(26.15, "meters"),
  26087. default: true
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26093. {
  26094. female: {
  26095. height: math.unit(21.6, "m"),
  26096. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26097. name: "Female",
  26098. image: {
  26099. source: "./media/characters/sthara/female.svg",
  26100. extra: 2516 / 2347,
  26101. bottom: 21.5 / 2537
  26102. }
  26103. },
  26104. male: {
  26105. height: math.unit(24, "m"),
  26106. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26107. name: "Male",
  26108. image: {
  26109. source: "./media/characters/sthara/male.svg",
  26110. extra: 2732 / 2607,
  26111. bottom: 23 / 2732
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Macro",
  26118. height: math.unit(21.6, "meters"),
  26119. default: true
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26125. {
  26126. front: {
  26127. height: math.unit(6 + 4 / 12, "feet"),
  26128. weight: math.unit(175, "lb"),
  26129. name: "Front",
  26130. image: {
  26131. source: "./media/characters/luka-bryzant/front.svg",
  26132. extra: 311 / 289,
  26133. bottom: 4 / 315
  26134. }
  26135. },
  26136. back: {
  26137. height: math.unit(6 + 4 / 12, "feet"),
  26138. weight: math.unit(175, "lb"),
  26139. name: "Back",
  26140. image: {
  26141. source: "./media/characters/luka-bryzant/back.svg",
  26142. extra: 311 / 289,
  26143. bottom: 3.8 / 313.7
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Micro",
  26150. height: math.unit(10, "inches")
  26151. },
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(6 + 4 / 12, "feet"),
  26155. default: true
  26156. },
  26157. {
  26158. name: "Large",
  26159. height: math.unit(12, "feet")
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(5 + 7 / 12, "feet"),
  26168. weight: math.unit(185, "lb"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/aman-aquila/front.svg",
  26172. extra: 1013 / 976,
  26173. bottom: 45.6 / 1057
  26174. }
  26175. },
  26176. side: {
  26177. height: math.unit(5 + 7 / 12, "feet"),
  26178. weight: math.unit(185, "lb"),
  26179. name: "Side",
  26180. image: {
  26181. source: "./media/characters/aman-aquila/side.svg",
  26182. extra: 1054 / 1011,
  26183. bottom: 15 / 1070
  26184. }
  26185. },
  26186. back: {
  26187. height: math.unit(5 + 7 / 12, "feet"),
  26188. weight: math.unit(185, "lb"),
  26189. name: "Back",
  26190. image: {
  26191. source: "./media/characters/aman-aquila/back.svg",
  26192. extra: 1026 / 970,
  26193. bottom: 12 / 1039
  26194. }
  26195. },
  26196. head: {
  26197. height: math.unit(1.211, "feet"),
  26198. name: "Head",
  26199. image: {
  26200. source: "./media/characters/aman-aquila/head.svg",
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Minimicro",
  26207. height: math.unit(0.057, "inches")
  26208. },
  26209. {
  26210. name: "Micro",
  26211. height: math.unit(7, "inches")
  26212. },
  26213. {
  26214. name: "Mini",
  26215. height: math.unit(3 + 7 / 12, "feet")
  26216. },
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(5 + 7 / 12, "feet"),
  26220. default: true
  26221. },
  26222. {
  26223. name: "Macro",
  26224. height: math.unit(157 + 7 / 12, "feet")
  26225. },
  26226. {
  26227. name: "Megamacro",
  26228. height: math.unit(1557 + 7 / 12, "feet")
  26229. },
  26230. {
  26231. name: "Gigamacro",
  26232. height: math.unit(15557 + 7 / 12, "feet")
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(3 + 2 / 12, "inches"),
  26241. weight: math.unit(0.3, "ounces"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/hiphae/front.svg",
  26245. extra: 1931 / 1683,
  26246. bottom: 24 / 1955
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(3 + 1 / 2, "inches"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(5 + 10 / 12, "feet"),
  26263. weight: math.unit(165, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/nicky/front.svg",
  26267. extra: 3144 / 2886,
  26268. bottom: 45.6 / 3192
  26269. }
  26270. },
  26271. back: {
  26272. height: math.unit(5 + 10 / 12, "feet"),
  26273. weight: math.unit(165, "lb"),
  26274. name: "Back",
  26275. image: {
  26276. source: "./media/characters/nicky/back.svg",
  26277. extra: 3055 / 2804,
  26278. bottom: 28.4 / 3087
  26279. }
  26280. },
  26281. frontclothed: {
  26282. height: math.unit(5 + 10 / 12, "feet"),
  26283. weight: math.unit(165, "lb"),
  26284. name: "Front-clothed",
  26285. image: {
  26286. source: "./media/characters/nicky/front-clothed.svg",
  26287. extra: 3184.9 / 2926.9,
  26288. bottom: 86.5 / 3239.9
  26289. }
  26290. },
  26291. foot: {
  26292. height: math.unit(1.16, "feet"),
  26293. name: "Foot",
  26294. image: {
  26295. source: "./media/characters/nicky/foot.svg"
  26296. }
  26297. },
  26298. feet: {
  26299. height: math.unit(1.34, "feet"),
  26300. name: "Feet",
  26301. image: {
  26302. source: "./media/characters/nicky/feet.svg"
  26303. }
  26304. },
  26305. maw: {
  26306. height: math.unit(0.9, "feet"),
  26307. name: "Maw",
  26308. image: {
  26309. source: "./media/characters/nicky/maw.svg"
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(5 + 10 / 12, "feet"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(60, "feet")
  26322. },
  26323. {
  26324. name: "Megamacro",
  26325. height: math.unit(1, "mile")
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26331. {
  26332. side: {
  26333. height: math.unit(10, "feet"),
  26334. weight: math.unit(600, "lb"),
  26335. name: "Side",
  26336. image: {
  26337. source: "./media/characters/blair/side.svg",
  26338. bottom: 16.6 / 475,
  26339. extra: 458 / 431
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Micro",
  26346. height: math.unit(8, "inches")
  26347. },
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(10, "feet"),
  26351. default: true
  26352. },
  26353. {
  26354. name: "Macro",
  26355. height: math.unit(180, "feet")
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(5 + 4 / 12, "feet"),
  26364. weight: math.unit(125, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/fisher/front.svg",
  26368. extra: 444 / 390,
  26369. bottom: 2 / 444.8
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Micro",
  26376. height: math.unit(4, "inches")
  26377. },
  26378. {
  26379. name: "Normal",
  26380. height: math.unit(5 + 4 / 12, "feet"),
  26381. default: true
  26382. },
  26383. {
  26384. name: "Macro",
  26385. height: math.unit(100, "feet")
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(6.71, "feet"),
  26394. weight: math.unit(200, "lb"),
  26395. preyCapacity: math.unit(1000000, "people"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/gliss/front.svg",
  26399. extra: 2347 / 2231,
  26400. bottom: 113 / 2462
  26401. }
  26402. },
  26403. hammerspaceSize: {
  26404. height: math.unit(6.71 * 717, "feet"),
  26405. weight: math.unit(200, "lb"),
  26406. preyCapacity: math.unit(1000000, "people"),
  26407. name: "Hammerspace Size",
  26408. image: {
  26409. source: "./media/characters/gliss/front.svg",
  26410. extra: 2347 / 2231,
  26411. bottom: 113 / 2462
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6.71, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26425. {
  26426. side: {
  26427. height: math.unit(1.44, "m"),
  26428. weight: math.unit(80, "kg"),
  26429. name: "Side",
  26430. image: {
  26431. source: "./media/characters/dune-anderson/side.svg",
  26432. bottom: 49 / 1426
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Wolf-sized",
  26439. height: math.unit(1.44, "meters")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(5.05, "meters"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Big",
  26448. height: math.unit(14.4, "meters")
  26449. },
  26450. {
  26451. name: "Huge",
  26452. height: math.unit(144, "meters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26458. {
  26459. front: {
  26460. height: math.unit(7, "feet"),
  26461. weight: math.unit(425, "lb"),
  26462. name: "Front",
  26463. image: {
  26464. source: "./media/characters/hind/front.svg",
  26465. extra: 2091 / 1860,
  26466. bottom: 129 / 2220
  26467. }
  26468. },
  26469. back: {
  26470. height: math.unit(7, "feet"),
  26471. weight: math.unit(425, "lb"),
  26472. name: "Back",
  26473. image: {
  26474. source: "./media/characters/hind/back.svg",
  26475. extra: 2091 / 1860,
  26476. bottom: 24.6 / 2309
  26477. }
  26478. },
  26479. tail: {
  26480. height: math.unit(2.8, "feet"),
  26481. name: "Tail",
  26482. image: {
  26483. source: "./media/characters/hind/tail.svg"
  26484. }
  26485. },
  26486. head: {
  26487. height: math.unit(2.55, "feet"),
  26488. name: "Head",
  26489. image: {
  26490. source: "./media/characters/hind/head.svg"
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "XS",
  26497. height: math.unit(0.7, "feet")
  26498. },
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(7, "feet"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "XL",
  26506. height: math.unit(70, "feet")
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(2.1, "meters"),
  26515. weight: math.unit(150, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/tharquench-sizestealer/front.svg",
  26519. extra: 1605/1470,
  26520. bottom: 36/1641
  26521. }
  26522. },
  26523. frontAlt: {
  26524. height: math.unit(2.1, "meters"),
  26525. weight: math.unit(150, "lb"),
  26526. name: "Front (Alt)",
  26527. image: {
  26528. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26529. extra: 2318 / 2063,
  26530. bottom: 93.4 / 2410
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Nano",
  26537. height: math.unit(1, "mm")
  26538. },
  26539. {
  26540. name: "Micro",
  26541. height: math.unit(1, "cm")
  26542. },
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(2.1, "meters"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(7 + 5 / 12, "feet"),
  26555. weight: math.unit(357, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/solex-draconov/front.svg",
  26559. extra: 1993 / 1865,
  26560. bottom: 117 / 2111
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Natural Height",
  26567. height: math.unit(7 + 5 / 12, "feet"),
  26568. default: true
  26569. },
  26570. {
  26571. name: "Macro",
  26572. height: math.unit(350, "feet")
  26573. },
  26574. {
  26575. name: "Macro+",
  26576. height: math.unit(1000, "feet")
  26577. },
  26578. {
  26579. name: "Megamacro",
  26580. height: math.unit(20, "km")
  26581. },
  26582. {
  26583. name: "Megamacro+",
  26584. height: math.unit(1000, "km")
  26585. },
  26586. {
  26587. name: "Gigamacro",
  26588. height: math.unit(2.5, "Gm")
  26589. },
  26590. {
  26591. name: "Teramacro",
  26592. height: math.unit(15, "Tm")
  26593. },
  26594. {
  26595. name: "Galactic",
  26596. height: math.unit(30, "Zm")
  26597. },
  26598. {
  26599. name: "Universal",
  26600. height: math.unit(21000, "Ym")
  26601. },
  26602. {
  26603. name: "Omniversal",
  26604. height: math.unit(9.861e50, "Ym")
  26605. },
  26606. {
  26607. name: "Existential",
  26608. height: math.unit(1e300, "meters")
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26614. {
  26615. side: {
  26616. height: math.unit(25, "feet"),
  26617. weight: math.unit(90000, "lb"),
  26618. name: "Side",
  26619. image: {
  26620. source: "./media/characters/mandarax/side.svg",
  26621. extra: 614 / 332,
  26622. bottom: 55 / 630
  26623. }
  26624. },
  26625. lounging: {
  26626. height: math.unit(15.4, "feet"),
  26627. weight: math.unit(90000, "lb"),
  26628. name: "Lounging",
  26629. image: {
  26630. source: "./media/characters/mandarax/lounging.svg",
  26631. extra: 817/609,
  26632. bottom: 685/1502
  26633. }
  26634. },
  26635. head: {
  26636. height: math.unit(11.4, "feet"),
  26637. name: "Head",
  26638. image: {
  26639. source: "./media/characters/mandarax/head.svg"
  26640. }
  26641. },
  26642. belly: {
  26643. height: math.unit(33, "feet"),
  26644. name: "Belly",
  26645. preyCapacity: math.unit(500, "people"),
  26646. image: {
  26647. source: "./media/characters/mandarax/belly.svg"
  26648. }
  26649. },
  26650. dick: {
  26651. height: math.unit(8.46, "feet"),
  26652. name: "Dick",
  26653. image: {
  26654. source: "./media/characters/mandarax/dick.svg"
  26655. }
  26656. },
  26657. top: {
  26658. height: math.unit(28, "meters"),
  26659. name: "Top",
  26660. image: {
  26661. source: "./media/characters/mandarax/top.svg"
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(25, "feet"),
  26669. default: true
  26670. },
  26671. ]
  26672. ))
  26673. characterMakers.push(() => makeCharacter(
  26674. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26675. {
  26676. front: {
  26677. height: math.unit(5, "feet"),
  26678. weight: math.unit(90, "lb"),
  26679. name: "Front",
  26680. image: {
  26681. source: "./media/characters/pixil/front.svg",
  26682. extra: 2000 / 1618,
  26683. bottom: 12.3 / 2011
  26684. }
  26685. },
  26686. },
  26687. [
  26688. {
  26689. name: "Normal",
  26690. height: math.unit(5, "feet"),
  26691. default: true
  26692. },
  26693. {
  26694. name: "Megamacro",
  26695. height: math.unit(10, "miles"),
  26696. },
  26697. ]
  26698. ))
  26699. characterMakers.push(() => makeCharacter(
  26700. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26701. {
  26702. front: {
  26703. height: math.unit(7 + 2 / 12, "feet"),
  26704. weight: math.unit(200, "lb"),
  26705. name: "Front",
  26706. image: {
  26707. source: "./media/characters/angel/front.svg",
  26708. extra: 1830 / 1737,
  26709. bottom: 22.6 / 1854,
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(7 + 2 / 12, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(1000, "feet")
  26722. },
  26723. {
  26724. name: "Megamacro",
  26725. height: math.unit(2, "miles")
  26726. },
  26727. {
  26728. name: "Gigamacro",
  26729. height: math.unit(20, "earths")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(5, "feet"),
  26738. weight: math.unit(180, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/mekana/front.svg",
  26742. extra: 1671 / 1605,
  26743. bottom: 3.5 / 1691
  26744. }
  26745. },
  26746. side: {
  26747. height: math.unit(5, "feet"),
  26748. weight: math.unit(180, "lb"),
  26749. name: "Side",
  26750. image: {
  26751. source: "./media/characters/mekana/side.svg",
  26752. extra: 1671 / 1605,
  26753. bottom: 3.5 / 1691
  26754. }
  26755. },
  26756. back: {
  26757. height: math.unit(5, "feet"),
  26758. weight: math.unit(180, "lb"),
  26759. name: "Back",
  26760. image: {
  26761. source: "./media/characters/mekana/back.svg",
  26762. extra: 1671 / 1605,
  26763. bottom: 3.5 / 1691
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Normal",
  26770. height: math.unit(5, "feet"),
  26771. default: true
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(4 + 6 / 12, "feet"),
  26780. weight: math.unit(80, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/pixie/front.svg",
  26784. extra: 1924 / 1825,
  26785. bottom: 22.4 / 1946
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(4 + 6 / 12, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Macro",
  26797. height: math.unit(40, "feet")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(2.1, "meters"),
  26806. weight: math.unit(200, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/the-lascivious/front.svg",
  26810. extra: 1 / 0.893,
  26811. bottom: 3.5 / 573.7
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Human Scale",
  26818. height: math.unit(2.1, "meters")
  26819. },
  26820. {
  26821. name: "Wolxi Scale",
  26822. height: math.unit(46.2, "m"),
  26823. default: true
  26824. },
  26825. {
  26826. name: "Boinker of Buildings",
  26827. height: math.unit(10, "km")
  26828. },
  26829. {
  26830. name: "Shagger of Skyscrapers",
  26831. height: math.unit(40, "km")
  26832. },
  26833. {
  26834. name: "Banger of Boroughs",
  26835. height: math.unit(4000, "km")
  26836. },
  26837. {
  26838. name: "Screwer of States",
  26839. height: math.unit(100000, "km")
  26840. },
  26841. {
  26842. name: "Pounder of Planets",
  26843. height: math.unit(2000000, "km")
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(6, "feet"),
  26852. weight: math.unit(150, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/aj/front.svg",
  26856. extra: 2039 / 1562,
  26857. bottom: 40 / 2079
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(11 + 6 / 12, "feet"),
  26865. default: true
  26866. },
  26867. {
  26868. name: "Megamacro",
  26869. height: math.unit(60, "megameters")
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26875. {
  26876. side: {
  26877. height: math.unit(31 + 8 / 12, "feet"),
  26878. weight: math.unit(75000, "kg"),
  26879. name: "Side",
  26880. image: {
  26881. source: "./media/characters/koros/side.svg",
  26882. extra: 1442 / 1297,
  26883. bottom: 122.7 / 1562
  26884. }
  26885. },
  26886. dicksKingsCrown: {
  26887. height: math.unit(6, "feet"),
  26888. name: "Dicks (King's Crown)",
  26889. image: {
  26890. source: "./media/characters/koros/dicks-kings-crown.svg"
  26891. }
  26892. },
  26893. dicksTailSet: {
  26894. height: math.unit(3, "feet"),
  26895. name: "Dicks (Tail Set)",
  26896. image: {
  26897. source: "./media/characters/koros/dicks-tail-set.svg"
  26898. }
  26899. },
  26900. dickCumming: {
  26901. height: math.unit(7.98, "feet"),
  26902. name: "Dick (Cumming)",
  26903. image: {
  26904. source: "./media/characters/koros/dick-cumming.svg"
  26905. }
  26906. },
  26907. dicksBack: {
  26908. height: math.unit(5.9, "feet"),
  26909. name: "Dicks (Back)",
  26910. image: {
  26911. source: "./media/characters/koros/dicks-back.svg"
  26912. }
  26913. },
  26914. dicksFront: {
  26915. height: math.unit(3.72, "feet"),
  26916. name: "Dicks (Front)",
  26917. image: {
  26918. source: "./media/characters/koros/dicks-front.svg"
  26919. }
  26920. },
  26921. dicksPeeking: {
  26922. height: math.unit(3.0, "feet"),
  26923. name: "Dicks (Peeking)",
  26924. image: {
  26925. source: "./media/characters/koros/dicks-peeking.svg"
  26926. }
  26927. },
  26928. eye: {
  26929. height: math.unit(1.7, "feet"),
  26930. name: "Eye",
  26931. image: {
  26932. source: "./media/characters/koros/eye.svg"
  26933. }
  26934. },
  26935. headFront: {
  26936. height: math.unit(11.69, "feet"),
  26937. name: "Head (Front)",
  26938. image: {
  26939. source: "./media/characters/koros/head-front.svg"
  26940. }
  26941. },
  26942. headSide: {
  26943. height: math.unit(14, "feet"),
  26944. name: "Head (Side)",
  26945. image: {
  26946. source: "./media/characters/koros/head-side.svg"
  26947. }
  26948. },
  26949. leg: {
  26950. height: math.unit(17, "feet"),
  26951. name: "Leg",
  26952. image: {
  26953. source: "./media/characters/koros/leg.svg"
  26954. }
  26955. },
  26956. mawSide: {
  26957. height: math.unit(12.8, "feet"),
  26958. name: "Maw (Side)",
  26959. image: {
  26960. source: "./media/characters/koros/maw-side.svg"
  26961. }
  26962. },
  26963. mawSpitting: {
  26964. height: math.unit(17, "feet"),
  26965. name: "Maw (Spitting)",
  26966. image: {
  26967. source: "./media/characters/koros/maw-spitting.svg"
  26968. }
  26969. },
  26970. slit: {
  26971. height: math.unit(2.8, "feet"),
  26972. name: "Slit",
  26973. image: {
  26974. source: "./media/characters/koros/slit.svg"
  26975. }
  26976. },
  26977. stomach: {
  26978. height: math.unit(6.8, "feet"),
  26979. preyCapacity: math.unit(20, "people"),
  26980. name: "Stomach",
  26981. image: {
  26982. source: "./media/characters/koros/stomach.svg"
  26983. }
  26984. },
  26985. wingspanBottom: {
  26986. height: math.unit(114, "feet"),
  26987. name: "Wingspan (Bottom)",
  26988. image: {
  26989. source: "./media/characters/koros/wingspan-bottom.svg"
  26990. }
  26991. },
  26992. wingspanTop: {
  26993. height: math.unit(104, "feet"),
  26994. name: "Wingspan (Top)",
  26995. image: {
  26996. source: "./media/characters/koros/wingspan-top.svg"
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(31 + 8 / 12, "feet"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(18 + 5 / 12, "feet"),
  27013. weight: math.unit(3750, "kg"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/vexx/front.svg",
  27017. extra: 426 / 396,
  27018. bottom: 31.5 / 458
  27019. }
  27020. },
  27021. maw: {
  27022. height: math.unit(6, "feet"),
  27023. name: "Maw",
  27024. image: {
  27025. source: "./media/characters/vexx/maw.svg"
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Normal",
  27032. height: math.unit(18 + 5 / 12, "feet"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(17 + 6 / 12, "feet"),
  27042. weight: math.unit(150, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/baadra/front.svg",
  27046. extra: 1694/1553,
  27047. bottom: 179/1873
  27048. }
  27049. },
  27050. frontAlt: {
  27051. height: math.unit(17 + 6 / 12, "feet"),
  27052. weight: math.unit(150, "lb"),
  27053. name: "Front (Alt)",
  27054. image: {
  27055. source: "./media/characters/baadra/front-alt.svg",
  27056. extra: 3137 / 2890,
  27057. bottom: 168.4 / 3305
  27058. }
  27059. },
  27060. back: {
  27061. height: math.unit(17 + 6 / 12, "feet"),
  27062. weight: math.unit(150, "lb"),
  27063. name: "Back",
  27064. image: {
  27065. source: "./media/characters/baadra/back.svg",
  27066. extra: 3142 / 2890,
  27067. bottom: 220 / 3371
  27068. }
  27069. },
  27070. head: {
  27071. height: math.unit(5.45, "feet"),
  27072. name: "Head",
  27073. image: {
  27074. source: "./media/characters/baadra/head.svg"
  27075. }
  27076. },
  27077. headAngry: {
  27078. height: math.unit(4.95, "feet"),
  27079. name: "Head (Angry)",
  27080. image: {
  27081. source: "./media/characters/baadra/head-angry.svg"
  27082. }
  27083. },
  27084. headOpen: {
  27085. height: math.unit(6, "feet"),
  27086. name: "Head (Open)",
  27087. image: {
  27088. source: "./media/characters/baadra/head-open.svg"
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(17 + 6 / 12, "feet"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(7 + 3 / 12, "feet"),
  27105. weight: math.unit(180, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/juri/front.svg",
  27109. extra: 1401 / 1237,
  27110. bottom: 18.5 / 1418
  27111. }
  27112. },
  27113. side: {
  27114. height: math.unit(7 + 3 / 12, "feet"),
  27115. weight: math.unit(180, "lb"),
  27116. name: "Side",
  27117. image: {
  27118. source: "./media/characters/juri/side.svg",
  27119. extra: 1424 / 1242,
  27120. bottom: 18.5 / 1447
  27121. }
  27122. },
  27123. sitting: {
  27124. height: math.unit(6, "feet"),
  27125. weight: math.unit(180, "lb"),
  27126. name: "Sitting",
  27127. image: {
  27128. source: "./media/characters/juri/sitting.svg",
  27129. extra: 1270 / 1143,
  27130. bottom: 100 / 1343
  27131. }
  27132. },
  27133. back: {
  27134. height: math.unit(7 + 3 / 12, "feet"),
  27135. weight: math.unit(180, "lb"),
  27136. name: "Back",
  27137. image: {
  27138. source: "./media/characters/juri/back.svg",
  27139. extra: 1377 / 1240,
  27140. bottom: 23.7 / 1405
  27141. }
  27142. },
  27143. maw: {
  27144. height: math.unit(2.8, "feet"),
  27145. name: "Maw",
  27146. image: {
  27147. source: "./media/characters/juri/maw.svg"
  27148. }
  27149. },
  27150. stomach: {
  27151. height: math.unit(0.89, "feet"),
  27152. preyCapacity: math.unit(4, "liters"),
  27153. name: "Stomach",
  27154. image: {
  27155. source: "./media/characters/juri/stomach.svg"
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(7 + 3 / 12, "feet"),
  27163. default: true
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27169. {
  27170. fox: {
  27171. height: math.unit(5 + 6 / 12, "feet"),
  27172. weight: math.unit(140, "lb"),
  27173. name: "Fox",
  27174. image: {
  27175. source: "./media/characters/maxene-sita/fox.svg",
  27176. extra: 146 / 138,
  27177. bottom: 2.1 / 148.19
  27178. }
  27179. },
  27180. foxLaying: {
  27181. height: math.unit(1.70, "feet"),
  27182. weight: math.unit(140, "lb"),
  27183. name: "Fox (Laying)",
  27184. image: {
  27185. source: "./media/characters/maxene-sita/fox-laying.svg",
  27186. extra: 910 / 572,
  27187. bottom: 71 / 981
  27188. }
  27189. },
  27190. kitsune: {
  27191. height: math.unit(10, "feet"),
  27192. weight: math.unit(800, "lb"),
  27193. name: "Kitsune",
  27194. image: {
  27195. source: "./media/characters/maxene-sita/kitsune.svg",
  27196. extra: 185 / 176,
  27197. bottom: 4.7 / 189.9
  27198. }
  27199. },
  27200. hellhound: {
  27201. height: math.unit(10, "feet"),
  27202. weight: math.unit(700, "lb"),
  27203. name: "Hellhound",
  27204. image: {
  27205. source: "./media/characters/maxene-sita/hellhound.svg",
  27206. extra: 1600 / 1545,
  27207. bottom: 81 / 1681
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(5 + 6 / 12, "feet"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27221. {
  27222. front: {
  27223. height: math.unit(3 + 4 / 12, "feet"),
  27224. weight: math.unit(70, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/maia/front.svg",
  27228. extra: 227 / 219.5,
  27229. bottom: 40 / 267
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(3 + 4 / 12, "feet"),
  27234. weight: math.unit(70, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/maia/back.svg",
  27238. extra: 237 / 225
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(3 + 4 / 12, "feet"),
  27246. default: true
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(5 + 10 / 12, "feet"),
  27255. weight: math.unit(197, "lb"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/jabaro/front.svg",
  27259. extra: 225 / 216,
  27260. bottom: 5.06 / 230
  27261. }
  27262. },
  27263. back: {
  27264. height: math.unit(5 + 10 / 12, "feet"),
  27265. weight: math.unit(197, "lb"),
  27266. name: "Back",
  27267. image: {
  27268. source: "./media/characters/jabaro/back.svg",
  27269. extra: 225 / 219,
  27270. bottom: 1.9 / 227
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(5 + 10 / 12, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(5 + 8 / 12, "feet"),
  27287. weight: math.unit(139, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/risa/front.svg",
  27291. extra: 270 / 260,
  27292. bottom: 11.2 / 282
  27293. }
  27294. },
  27295. back: {
  27296. height: math.unit(5 + 8 / 12, "feet"),
  27297. weight: math.unit(139, "lb"),
  27298. name: "Back",
  27299. image: {
  27300. source: "./media/characters/risa/back.svg",
  27301. extra: 264 / 255,
  27302. bottom: 4 / 268
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(5 + 8 / 12, "feet"),
  27310. default: true
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(2 + 11 / 12, "feet"),
  27319. weight: math.unit(30, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/weatley/front.svg",
  27323. bottom: 10.7 / 414,
  27324. extra: 403.5 / 362
  27325. }
  27326. },
  27327. back: {
  27328. height: math.unit(2 + 11 / 12, "feet"),
  27329. weight: math.unit(30, "lb"),
  27330. name: "Back",
  27331. image: {
  27332. source: "./media/characters/weatley/back.svg",
  27333. bottom: 10.7 / 414,
  27334. extra: 403.5 / 362
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Normal",
  27341. height: math.unit(2 + 11 / 12, "feet"),
  27342. default: true
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(5 + 2 / 12, "feet"),
  27351. weight: math.unit(50, "kg"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/mercury-crescent/front.svg",
  27355. extra: 1088 / 1033,
  27356. bottom: 18.9 / 1109
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(5 + 2 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(2, "feet"),
  27373. weight: math.unit(15, "kg"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/diamond-jones/front.svg",
  27377. extra: 727/723,
  27378. bottom: 46/773
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(2, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(3, "feet"),
  27395. weight: math.unit(30, "kg"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/sweet-bit/front.svg",
  27399. extra: 675 / 567,
  27400. bottom: 27.7 / 703
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(3, "feet"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27414. {
  27415. side: {
  27416. height: math.unit(9.178, "feet"),
  27417. weight: math.unit(500, "lb"),
  27418. name: "Side",
  27419. image: {
  27420. source: "./media/characters/umbrazen/side.svg",
  27421. extra: 1730 / 1473,
  27422. bottom: 34.6 / 1765
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(9.178, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(10, "feet"),
  27439. weight: math.unit(750, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/arlist/front.svg",
  27443. extra: 961 / 778,
  27444. bottom: 6.2 / 986
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(10, "feet"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(5 + 1 / 12, "feet"),
  27461. weight: math.unit(110, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/aradel/front.svg",
  27465. extra: 324 / 303,
  27466. bottom: 3.6 / 329.4
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(5 + 1 / 12, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27480. {
  27481. dressed: {
  27482. height: math.unit(3 + 8 / 12, "feet"),
  27483. weight: math.unit(50, "lb"),
  27484. name: "Dressed",
  27485. image: {
  27486. source: "./media/characters/serryn/dressed.svg",
  27487. extra: 1792 / 1656,
  27488. bottom: 43.5 / 1840
  27489. }
  27490. },
  27491. nude: {
  27492. height: math.unit(3 + 8 / 12, "feet"),
  27493. weight: math.unit(50, "lb"),
  27494. name: "Nude",
  27495. image: {
  27496. source: "./media/characters/serryn/nude.svg",
  27497. extra: 1792 / 1656,
  27498. bottom: 43.5 / 1840
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(3 + 8 / 12, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(7 + 10 / 12, "feet"),
  27515. weight: math.unit(255, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/xavier-thyme/front.svg",
  27519. extra: 3733 / 3642,
  27520. bottom: 131 / 3869
  27521. }
  27522. },
  27523. frontRaven: {
  27524. height: math.unit(7 + 10 / 12, "feet"),
  27525. weight: math.unit(255, "lb"),
  27526. name: "Front (Raven)",
  27527. image: {
  27528. source: "./media/characters/xavier-thyme/front-raven.svg",
  27529. extra: 4385 / 3642,
  27530. bottom: 131 / 4517
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(7 + 10 / 12, "feet"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(1.6, "m"),
  27547. weight: math.unit(50, "kg"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/kiki/front.svg",
  27551. extra: 4682 / 3610,
  27552. bottom: 115 / 4777
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(1.6, "meters"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(50, "m"),
  27569. weight: math.unit(500, "tonnes"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/ryoko/front.svg",
  27573. extra: 4632 / 3926,
  27574. bottom: 193 / 4823
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(50, "meters"),
  27582. default: true
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27588. {
  27589. front: {
  27590. height: math.unit(30, "m"),
  27591. weight: math.unit(22, "tonnes"),
  27592. name: "Front",
  27593. image: {
  27594. source: "./media/characters/elio/front.svg",
  27595. extra: 4582 / 3720,
  27596. bottom: 236 / 4828
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(30, "meters"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(6 + 3 / 12, "feet"),
  27613. weight: math.unit(120, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/azura/front.svg",
  27617. extra: 1149 / 1135,
  27618. bottom: 45 / 1194
  27619. }
  27620. },
  27621. frontClothed: {
  27622. height: math.unit(6 + 3 / 12, "feet"),
  27623. weight: math.unit(120, "lb"),
  27624. name: "Front (Clothed)",
  27625. image: {
  27626. source: "./media/characters/azura/front-clothed.svg",
  27627. extra: 1149 / 1135,
  27628. bottom: 45 / 1194
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(6 + 3 / 12, "feet"),
  27636. default: true
  27637. },
  27638. {
  27639. name: "Macro",
  27640. height: math.unit(20 + 6 / 12, "feet")
  27641. },
  27642. {
  27643. name: "Megamacro",
  27644. height: math.unit(12, "miles")
  27645. },
  27646. {
  27647. name: "Gigamacro",
  27648. height: math.unit(10000, "miles")
  27649. },
  27650. {
  27651. name: "Teramacro",
  27652. height: math.unit(900000, "miles")
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(12, "feet"),
  27661. weight: math.unit(1, "ton"),
  27662. capacity: math.unit(660000, "gallons"),
  27663. name: "Front",
  27664. image: {
  27665. source: "./media/characters/zeus/front.svg",
  27666. extra: 5005 / 4717,
  27667. bottom: 363 / 5388
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(12, "feet")
  27675. },
  27676. {
  27677. name: "Preferred Size",
  27678. height: math.unit(0.5, "miles"),
  27679. default: true
  27680. },
  27681. {
  27682. name: "Giga Horse",
  27683. height: math.unit(300, "miles")
  27684. },
  27685. {
  27686. name: "Riding Planets",
  27687. height: math.unit(30, "megameters")
  27688. },
  27689. {
  27690. name: "Cosmic Giant",
  27691. height: math.unit(3, "zettameters")
  27692. },
  27693. {
  27694. name: "Breeding God",
  27695. height: math.unit(9.92e22, "yottameters")
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27701. {
  27702. side: {
  27703. height: math.unit(9, "feet"),
  27704. weight: math.unit(1500, "kg"),
  27705. name: "Side",
  27706. image: {
  27707. source: "./media/characters/fang/side.svg",
  27708. extra: 924 / 866,
  27709. bottom: 47.5 / 972.3
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(9, "feet"),
  27717. default: true
  27718. },
  27719. {
  27720. name: "Macro",
  27721. height: math.unit(75 + 6 / 12, "feet")
  27722. },
  27723. {
  27724. name: "Teramacro",
  27725. height: math.unit(50000, "miles")
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27731. {
  27732. front: {
  27733. height: math.unit(10, "feet"),
  27734. weight: math.unit(2, "tons"),
  27735. name: "Front",
  27736. image: {
  27737. source: "./media/characters/rekhit/front.svg",
  27738. extra: 2796 / 2590,
  27739. bottom: 225 / 3022
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Normal",
  27746. height: math.unit(10, "feet"),
  27747. default: true
  27748. },
  27749. {
  27750. name: "Macro",
  27751. height: math.unit(500, "feet")
  27752. },
  27753. ]
  27754. ))
  27755. characterMakers.push(() => makeCharacter(
  27756. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27757. {
  27758. front: {
  27759. height: math.unit(7 + 6.451 / 12, "feet"),
  27760. weight: math.unit(310, "lb"),
  27761. name: "Front",
  27762. image: {
  27763. source: "./media/characters/dahlia-verrick/front.svg",
  27764. extra: 1488 / 1365,
  27765. bottom: 6.2 / 1495
  27766. }
  27767. },
  27768. back: {
  27769. height: math.unit(7 + 6.451 / 12, "feet"),
  27770. weight: math.unit(310, "lb"),
  27771. name: "Back",
  27772. image: {
  27773. source: "./media/characters/dahlia-verrick/back.svg",
  27774. extra: 1472 / 1351,
  27775. bottom: 5.28 / 1477
  27776. }
  27777. },
  27778. frontBusiness: {
  27779. height: math.unit(7 + 6.451 / 12, "feet"),
  27780. weight: math.unit(200, "lb"),
  27781. name: "Front (Business)",
  27782. image: {
  27783. source: "./media/characters/dahlia-verrick/front-business.svg",
  27784. extra: 1478 / 1381,
  27785. bottom: 5.5 / 1484
  27786. }
  27787. },
  27788. frontCasual: {
  27789. height: math.unit(7 + 6.451 / 12, "feet"),
  27790. weight: math.unit(200, "lb"),
  27791. name: "Front (Casual)",
  27792. image: {
  27793. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27794. extra: 1478 / 1381,
  27795. bottom: 5.5 / 1484
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Travel-Sized",
  27802. height: math.unit(7.45, "inches")
  27803. },
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(7 + 6.451 / 12, "feet"),
  27807. default: true
  27808. },
  27809. {
  27810. name: "Hitting the Town",
  27811. height: math.unit(37 + 8 / 12, "feet")
  27812. },
  27813. {
  27814. name: "Stomp in the Suburbs",
  27815. height: math.unit(964 + 9.728 / 12, "feet")
  27816. },
  27817. {
  27818. name: "Sit on the City",
  27819. height: math.unit(61747 + 10.592 / 12, "feet")
  27820. },
  27821. {
  27822. name: "Glomp the Globe",
  27823. height: math.unit(252919327 + 4.832 / 12, "feet")
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(6 + 4 / 12, "feet"),
  27832. weight: math.unit(320, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/balina-mahigan/front.svg",
  27836. extra: 447 / 428,
  27837. bottom: 18 / 466
  27838. }
  27839. },
  27840. back: {
  27841. height: math.unit(6 + 4 / 12, "feet"),
  27842. weight: math.unit(320, "lb"),
  27843. name: "Back",
  27844. image: {
  27845. source: "./media/characters/balina-mahigan/back.svg",
  27846. extra: 445 / 428,
  27847. bottom: 4.07 / 448
  27848. }
  27849. },
  27850. arm: {
  27851. height: math.unit(1.88, "feet"),
  27852. name: "Arm",
  27853. image: {
  27854. source: "./media/characters/balina-mahigan/arm.svg"
  27855. }
  27856. },
  27857. backPort: {
  27858. height: math.unit(0.685, "feet"),
  27859. name: "Back Port",
  27860. image: {
  27861. source: "./media/characters/balina-mahigan/back-port.svg"
  27862. }
  27863. },
  27864. hoofpaw: {
  27865. height: math.unit(1.41, "feet"),
  27866. name: "Hoofpaw",
  27867. image: {
  27868. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27869. }
  27870. },
  27871. leftHandBack: {
  27872. height: math.unit(0.938, "feet"),
  27873. name: "Left Hand (Back)",
  27874. image: {
  27875. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27876. }
  27877. },
  27878. leftHandFront: {
  27879. height: math.unit(0.938, "feet"),
  27880. name: "Left Hand (Front)",
  27881. image: {
  27882. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27883. }
  27884. },
  27885. rightHandBack: {
  27886. height: math.unit(0.95, "feet"),
  27887. name: "Right Hand (Back)",
  27888. image: {
  27889. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27890. }
  27891. },
  27892. rightHandFront: {
  27893. height: math.unit(0.95, "feet"),
  27894. name: "Right Hand (Front)",
  27895. image: {
  27896. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(6 + 4 / 12, "feet"),
  27904. default: true
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(6, "feet"),
  27913. weight: math.unit(320, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/balina-mejeri/front.svg",
  27917. extra: 517 / 488,
  27918. bottom: 44.2 / 561
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(6 + 4 / 12, "feet")
  27926. },
  27927. {
  27928. name: "Business",
  27929. height: math.unit(155, "feet"),
  27930. default: true
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27936. {
  27937. kneeling: {
  27938. height: math.unit(6 + 4 / 12, "feet"),
  27939. weight: math.unit(300 * 20, "lb"),
  27940. name: "Kneeling",
  27941. image: {
  27942. source: "./media/characters/balbarian/kneeling.svg",
  27943. extra: 922 / 862,
  27944. bottom: 42.4 / 965
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(6 + 4 / 12, "feet")
  27952. },
  27953. {
  27954. name: "Treasured",
  27955. height: math.unit(18 + 9 / 12, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Macro",
  27960. height: math.unit(900, "feet")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(6 + 4 / 12, "feet"),
  27969. weight: math.unit(325, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/balina-amarini/front.svg",
  27973. extra: 415 / 403,
  27974. bottom: 19 / 433.4
  27975. }
  27976. },
  27977. back: {
  27978. height: math.unit(6 + 4 / 12, "feet"),
  27979. weight: math.unit(325, "lb"),
  27980. name: "Back",
  27981. image: {
  27982. source: "./media/characters/balina-amarini/back.svg",
  27983. extra: 415 / 403,
  27984. bottom: 13.5 / 432
  27985. }
  27986. },
  27987. overdrive: {
  27988. height: math.unit(6 + 4 / 12, "feet"),
  27989. weight: math.unit(400, "lb"),
  27990. name: "Overdrive",
  27991. image: {
  27992. source: "./media/characters/balina-amarini/overdrive.svg",
  27993. extra: 269 / 259,
  27994. bottom: 12 / 282
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Boom",
  28001. height: math.unit(9 + 10 / 12, "feet"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Macro",
  28006. height: math.unit(280, "feet")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28012. {
  28013. goddess: {
  28014. height: math.unit(600, "feet"),
  28015. weight: math.unit(2000000, "tons"),
  28016. name: "Goddess",
  28017. image: {
  28018. source: "./media/characters/lady-kubwa/goddess.svg",
  28019. extra: 1240.5 / 1223,
  28020. bottom: 22 / 1263
  28021. }
  28022. },
  28023. goddesser: {
  28024. height: math.unit(900, "feet"),
  28025. weight: math.unit(20000000, "lb"),
  28026. name: "Goddess-er",
  28027. image: {
  28028. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28029. extra: 899 / 888,
  28030. bottom: 12.6 / 912
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Macro",
  28037. height: math.unit(600, "feet"),
  28038. default: true
  28039. },
  28040. {
  28041. name: "Megamacro",
  28042. height: math.unit(250, "miles")
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(7 + 7 / 12, "feet"),
  28051. weight: math.unit(250, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/tala-grovehorn/front.svg",
  28055. extra: 2636 / 2525,
  28056. bottom: 147 / 2781
  28057. }
  28058. },
  28059. back: {
  28060. height: math.unit(7 + 7 / 12, "feet"),
  28061. weight: math.unit(250, "lb"),
  28062. name: "Back",
  28063. image: {
  28064. source: "./media/characters/tala-grovehorn/back.svg",
  28065. extra: 2635 / 2539,
  28066. bottom: 100 / 2732.8
  28067. }
  28068. },
  28069. mouth: {
  28070. height: math.unit(1.15, "feet"),
  28071. name: "Mouth",
  28072. image: {
  28073. source: "./media/characters/tala-grovehorn/mouth.svg"
  28074. }
  28075. },
  28076. dick: {
  28077. height: math.unit(2.36, "feet"),
  28078. name: "Dick",
  28079. image: {
  28080. source: "./media/characters/tala-grovehorn/dick.svg"
  28081. }
  28082. },
  28083. slit: {
  28084. height: math.unit(0.61, "feet"),
  28085. name: "Slit",
  28086. image: {
  28087. source: "./media/characters/tala-grovehorn/slit.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(7 + 7 / 12, "feet"),
  28099. weight: math.unit(225, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/epona/front.svg",
  28103. extra: 2445 / 2290,
  28104. bottom: 251 / 2696
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(7 + 7 / 12, "feet"),
  28109. weight: math.unit(225, "lb"),
  28110. name: "Back",
  28111. image: {
  28112. source: "./media/characters/epona/back.svg",
  28113. extra: 2546 / 2408,
  28114. bottom: 44 / 2589
  28115. }
  28116. },
  28117. genitals: {
  28118. height: math.unit(1.5, "feet"),
  28119. name: "Genitals",
  28120. image: {
  28121. source: "./media/characters/epona/genitals.svg"
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(7 + 7 / 12, "feet"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(7, "feet"),
  28138. weight: math.unit(518, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/avia-bloodbourn/front.svg",
  28142. extra: 1466 / 1350,
  28143. bottom: 65 / 1527
  28144. }
  28145. },
  28146. },
  28147. [
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(9.35, "feet"),
  28155. weight: math.unit(600, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/amera/front.svg",
  28159. extra: 891 / 818,
  28160. bottom: 30 / 922.7
  28161. }
  28162. },
  28163. back: {
  28164. height: math.unit(9.35, "feet"),
  28165. weight: math.unit(600, "lb"),
  28166. name: "Back",
  28167. image: {
  28168. source: "./media/characters/amera/back.svg",
  28169. extra: 876 / 824,
  28170. bottom: 6.8 / 884
  28171. }
  28172. },
  28173. dick: {
  28174. height: math.unit(2.14, "feet"),
  28175. name: "Dick",
  28176. image: {
  28177. source: "./media/characters/amera/dick.svg"
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(9.35, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28191. {
  28192. kneeling: {
  28193. height: math.unit(3 + 4 / 12, "feet"),
  28194. weight: math.unit(90, "lb"),
  28195. name: "Kneeling",
  28196. image: {
  28197. source: "./media/characters/rosewen/kneeling.svg",
  28198. extra: 1835 / 1571,
  28199. bottom: 27.7 / 1862
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(3 + 4 / 12, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(5 + 10 / 12, "feet"),
  28216. weight: math.unit(200, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/sabah/front.svg",
  28220. extra: 849 / 763,
  28221. bottom: 33.9 / 881
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(5 + 10 / 12, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28235. {
  28236. front: {
  28237. height: math.unit(3 + 5 / 12, "feet"),
  28238. weight: math.unit(40, "kg"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/purple-flame/front.svg",
  28242. extra: 1577 / 1412,
  28243. bottom: 97 / 1694
  28244. }
  28245. },
  28246. frontDressed: {
  28247. height: math.unit(3 + 5 / 12, "feet"),
  28248. weight: math.unit(40, "kg"),
  28249. name: "Front (Dressed)",
  28250. image: {
  28251. source: "./media/characters/purple-flame/front-dressed.svg",
  28252. extra: 1577 / 1412,
  28253. bottom: 97 / 1694
  28254. }
  28255. },
  28256. headphones: {
  28257. height: math.unit(0.85, "feet"),
  28258. name: "Headphones",
  28259. image: {
  28260. source: "./media/characters/purple-flame/headphones.svg"
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Really Small",
  28267. height: math.unit(5, "cm")
  28268. },
  28269. {
  28270. name: "Micro",
  28271. height: math.unit(1 + 5 / 12, "feet")
  28272. },
  28273. {
  28274. name: "Normal",
  28275. height: math.unit(3 + 5 / 12, "feet"),
  28276. default: true
  28277. },
  28278. {
  28279. name: "Minimacro",
  28280. height: math.unit(125, "feet")
  28281. },
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(0.5, "miles")
  28285. },
  28286. {
  28287. name: "Megamacro",
  28288. height: math.unit(50, "miles")
  28289. },
  28290. {
  28291. name: "Gigantic",
  28292. height: math.unit(750, "miles")
  28293. },
  28294. {
  28295. name: "Planetary",
  28296. height: math.unit(15000, "miles")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(14, "feet"),
  28305. weight: math.unit(959, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/arsenal/front.svg",
  28309. extra: 2357 / 2157,
  28310. bottom: 93 / 2458
  28311. }
  28312. },
  28313. },
  28314. [
  28315. {
  28316. name: "Normal",
  28317. height: math.unit(14, "feet"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(6, "feet"),
  28327. weight: math.unit(150, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/adira/front.svg",
  28331. extra: 1078 / 1029,
  28332. bottom: 87 / 1166
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Micro",
  28339. height: math.unit(4, "inches"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Macro",
  28344. height: math.unit(50, "feet")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(16, "feet"),
  28353. weight: math.unit(1000, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/grim/front.svg",
  28357. extra: 622 / 614,
  28358. bottom: 18.1 / 642
  28359. }
  28360. },
  28361. back: {
  28362. height: math.unit(16, "feet"),
  28363. weight: math.unit(1000, "lb"),
  28364. name: "Back",
  28365. image: {
  28366. source: "./media/characters/grim/back.svg",
  28367. extra: 610.6 / 602,
  28368. bottom: 40.8 / 652
  28369. }
  28370. },
  28371. hunched: {
  28372. height: math.unit(9.75, "feet"),
  28373. weight: math.unit(1000, "lb"),
  28374. name: "Hunched",
  28375. image: {
  28376. source: "./media/characters/grim/hunched.svg",
  28377. extra: 304 / 297,
  28378. bottom: 35.4 / 394
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(16, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(2.3, "meters"),
  28395. weight: math.unit(300, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/sinja/front-sfw.svg",
  28399. extra: 1393 / 1294,
  28400. bottom: 70 / 1463
  28401. }
  28402. },
  28403. frontNsfw: {
  28404. height: math.unit(2.3, "meters"),
  28405. weight: math.unit(300, "lb"),
  28406. name: "Front (NSFW)",
  28407. image: {
  28408. source: "./media/characters/sinja/front-nsfw.svg",
  28409. extra: 1393 / 1294,
  28410. bottom: 70 / 1463
  28411. }
  28412. },
  28413. back: {
  28414. height: math.unit(2.3, "meters"),
  28415. weight: math.unit(300, "lb"),
  28416. name: "Back",
  28417. image: {
  28418. source: "./media/characters/sinja/back.svg",
  28419. extra: 1393 / 1294,
  28420. bottom: 70 / 1463
  28421. }
  28422. },
  28423. head: {
  28424. height: math.unit(1.771, "feet"),
  28425. name: "Head",
  28426. image: {
  28427. source: "./media/characters/sinja/head.svg"
  28428. }
  28429. },
  28430. slit: {
  28431. height: math.unit(0.8, "feet"),
  28432. name: "Slit",
  28433. image: {
  28434. source: "./media/characters/sinja/slit.svg"
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(2.3, "meters")
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(91, "meters"),
  28446. default: true
  28447. },
  28448. {
  28449. name: "Megamacro",
  28450. height: math.unit(91440, "meters")
  28451. },
  28452. {
  28453. name: "Gigamacro",
  28454. height: math.unit(60960000, "meters")
  28455. },
  28456. {
  28457. name: "Teramacro",
  28458. height: math.unit(9144000000, "meters")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(1.7, "meters"),
  28467. weight: math.unit(130, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/kyu/front.svg",
  28471. extra: 415 / 395,
  28472. bottom: 5 / 420
  28473. }
  28474. },
  28475. head: {
  28476. height: math.unit(1.75, "feet"),
  28477. name: "Head",
  28478. image: {
  28479. source: "./media/characters/kyu/head.svg"
  28480. }
  28481. },
  28482. foot: {
  28483. height: math.unit(0.81, "feet"),
  28484. name: "Foot",
  28485. image: {
  28486. source: "./media/characters/kyu/foot.svg"
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(1.7, "meters")
  28494. },
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(131, "feet"),
  28498. default: true
  28499. },
  28500. {
  28501. name: "Megamacro",
  28502. height: math.unit(91440, "meters")
  28503. },
  28504. {
  28505. name: "Gigamacro",
  28506. height: math.unit(60960000, "meters")
  28507. },
  28508. {
  28509. name: "Teramacro",
  28510. height: math.unit(9144000000, "meters")
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(7 + 1 / 12, "feet"),
  28519. weight: math.unit(250, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/joey/front.svg",
  28523. extra: 1791 / 1537,
  28524. bottom: 28 / 1816
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Micro",
  28531. height: math.unit(3, "inches")
  28532. },
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(7 + 1 / 12, "feet"),
  28536. default: true
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(165, "cm"),
  28545. weight: math.unit(140, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/sam-evans/front.svg",
  28549. extra: 3417 / 3230,
  28550. bottom: 41.3 / 3417
  28551. }
  28552. },
  28553. frontSixTails: {
  28554. height: math.unit(165, "cm"),
  28555. weight: math.unit(140, "lb"),
  28556. name: "Front-six-tails",
  28557. image: {
  28558. source: "./media/characters/sam-evans/front-six-tails.svg",
  28559. extra: 3417 / 3230,
  28560. bottom: 41.3 / 3417
  28561. }
  28562. },
  28563. back: {
  28564. height: math.unit(165, "cm"),
  28565. weight: math.unit(140, "lb"),
  28566. name: "Back",
  28567. image: {
  28568. source: "./media/characters/sam-evans/back.svg",
  28569. extra: 3227 / 3032,
  28570. bottom: 6.8 / 3234
  28571. }
  28572. },
  28573. face: {
  28574. height: math.unit(0.68, "feet"),
  28575. name: "Face",
  28576. image: {
  28577. source: "./media/characters/sam-evans/face.svg"
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(165, "cm"),
  28585. default: true
  28586. },
  28587. {
  28588. name: "Macro",
  28589. height: math.unit(100, "meters")
  28590. },
  28591. {
  28592. name: "Macro+",
  28593. height: math.unit(800, "meters")
  28594. },
  28595. {
  28596. name: "Macro++",
  28597. height: math.unit(3, "km")
  28598. },
  28599. {
  28600. name: "Macro+++",
  28601. height: math.unit(30, "km")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(10, "feet"),
  28610. weight: math.unit(750, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/juliet-a/front.svg",
  28614. extra: 1766 / 1720,
  28615. bottom: 43 / 1809
  28616. }
  28617. },
  28618. back: {
  28619. height: math.unit(10, "feet"),
  28620. weight: math.unit(750, "lb"),
  28621. name: "Back",
  28622. image: {
  28623. source: "./media/characters/juliet-a/back.svg",
  28624. extra: 1781 / 1734,
  28625. bottom: 35 / 1810,
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(10, "feet"),
  28633. default: true
  28634. },
  28635. {
  28636. name: "Dragon Form",
  28637. height: math.unit(250, "feet")
  28638. },
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(1000, "feet")
  28642. },
  28643. {
  28644. name: "Megamacro",
  28645. height: math.unit(10000, "feet")
  28646. }
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28651. {
  28652. regular: {
  28653. height: math.unit(7 + 3 / 12, "feet"),
  28654. weight: math.unit(260, "lb"),
  28655. name: "Regular",
  28656. image: {
  28657. source: "./media/characters/wild/regular.svg",
  28658. extra: 97.45 / 92,
  28659. bottom: 6.8 / 104.3
  28660. }
  28661. },
  28662. biggums: {
  28663. height: math.unit(8 + 6 / 12, "feet"),
  28664. weight: math.unit(425, "lb"),
  28665. name: "Biggums",
  28666. image: {
  28667. source: "./media/characters/wild/biggums.svg",
  28668. extra: 97.45 / 92,
  28669. bottom: 7.5 / 132.34
  28670. }
  28671. },
  28672. mawRegular: {
  28673. height: math.unit(1.24, "feet"),
  28674. name: "Maw (Regular)",
  28675. image: {
  28676. source: "./media/characters/wild/maw.svg"
  28677. }
  28678. },
  28679. mawBiggums: {
  28680. height: math.unit(1.47, "feet"),
  28681. name: "Maw (Biggums)",
  28682. image: {
  28683. source: "./media/characters/wild/maw.svg"
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(7 + 3 / 12, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28697. {
  28698. front: {
  28699. height: math.unit(2.5, "meters"),
  28700. weight: math.unit(200, "kg"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/vidar/front.svg",
  28704. extra: 2994 / 2795,
  28705. bottom: 56 / 3061
  28706. }
  28707. },
  28708. back: {
  28709. height: math.unit(2.5, "meters"),
  28710. weight: math.unit(200, "kg"),
  28711. name: "Back",
  28712. image: {
  28713. source: "./media/characters/vidar/back.svg",
  28714. extra: 3131 / 2928,
  28715. bottom: 13.5 / 3141.5
  28716. }
  28717. },
  28718. feral: {
  28719. height: math.unit(2.5, "meters"),
  28720. weight: math.unit(2000, "kg"),
  28721. name: "Feral",
  28722. image: {
  28723. source: "./media/characters/vidar/feral.svg",
  28724. extra: 2790 / 1765,
  28725. bottom: 6 / 2796
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Normal",
  28732. height: math.unit(2.5, "meters"),
  28733. default: true
  28734. },
  28735. {
  28736. name: "Macro",
  28737. height: math.unit(100, "meters")
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(5 + 9 / 12, "feet"),
  28746. weight: math.unit(120, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/ash/front.svg",
  28750. extra: 2189 / 1961,
  28751. bottom: 5.2 / 2194
  28752. }
  28753. },
  28754. },
  28755. [
  28756. {
  28757. name: "Normal",
  28758. height: math.unit(5 + 9 / 12, "feet"),
  28759. default: true
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(9, "feet"),
  28768. weight: math.unit(10000, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/gygabite/front.svg",
  28772. bottom: 31.7 / 537.8,
  28773. extra: 505 / 370
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(9, "feet"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(12, "feet"),
  28790. weight: math.unit(4000, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/p0tat0/front.svg",
  28794. extra: 1065 / 921,
  28795. bottom: 55.7 / 1121.25
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(12, "feet"),
  28803. default: true
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28809. {
  28810. side: {
  28811. height: math.unit(6.5, "feet"),
  28812. weight: math.unit(800, "lb"),
  28813. name: "Side",
  28814. image: {
  28815. source: "./media/characters/dusk/side.svg",
  28816. extra: 615 / 373,
  28817. bottom: 53 / 664
  28818. }
  28819. },
  28820. sitting: {
  28821. height: math.unit(7, "feet"),
  28822. weight: math.unit(800, "lb"),
  28823. name: "Sitting",
  28824. image: {
  28825. source: "./media/characters/dusk/sitting.svg",
  28826. extra: 753 / 425,
  28827. bottom: 33 / 774
  28828. }
  28829. },
  28830. head: {
  28831. height: math.unit(6.1, "feet"),
  28832. name: "Head",
  28833. image: {
  28834. source: "./media/characters/dusk/head.svg"
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(7, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(15, "feet"),
  28851. weight: math.unit(7000, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/jay-direwolf/front.svg",
  28855. extra: 1810 / 1732,
  28856. bottom: 66 / 1892
  28857. }
  28858. },
  28859. },
  28860. [
  28861. {
  28862. name: "Normal",
  28863. height: math.unit(15, "feet"),
  28864. default: true
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(4 + 9 / 12, "feet"),
  28873. weight: math.unit(130, "lb"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/anchovie/front.svg",
  28877. extra: 382 / 350,
  28878. bottom: 25 / 409
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(4 + 9 / 12, "feet"),
  28883. weight: math.unit(130, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/anchovie/back.svg",
  28887. extra: 385 / 352,
  28888. bottom: 16.6 / 402
  28889. }
  28890. },
  28891. frontDressed: {
  28892. height: math.unit(4 + 9 / 12, "feet"),
  28893. weight: math.unit(130, "lb"),
  28894. name: "Front (Dressed)",
  28895. image: {
  28896. source: "./media/characters/anchovie/front-dressed.svg",
  28897. extra: 382 / 350,
  28898. bottom: 25 / 409
  28899. }
  28900. },
  28901. backDressed: {
  28902. height: math.unit(4 + 9 / 12, "feet"),
  28903. weight: math.unit(130, "lb"),
  28904. name: "Back (Dressed)",
  28905. image: {
  28906. source: "./media/characters/anchovie/back-dressed.svg",
  28907. extra: 385 / 352,
  28908. bottom: 16.6 / 402
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Micro",
  28915. height: math.unit(6.4, "inches")
  28916. },
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(4 + 9 / 12, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(2, "meters"),
  28929. weight: math.unit(180, "lb"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/acidrenamon/front.svg",
  28933. extra: 987 / 890,
  28934. bottom: 22.8 / 1009
  28935. }
  28936. },
  28937. back: {
  28938. height: math.unit(2, "meters"),
  28939. weight: math.unit(180, "lb"),
  28940. name: "Back",
  28941. image: {
  28942. source: "./media/characters/acidrenamon/back.svg",
  28943. extra: 983 / 891,
  28944. bottom: 8.4 / 992
  28945. }
  28946. },
  28947. head: {
  28948. height: math.unit(1.92, "feet"),
  28949. name: "Head",
  28950. image: {
  28951. source: "./media/characters/acidrenamon/head.svg"
  28952. }
  28953. },
  28954. rump: {
  28955. height: math.unit(1.72, "feet"),
  28956. name: "Rump",
  28957. image: {
  28958. source: "./media/characters/acidrenamon/rump.svg"
  28959. }
  28960. },
  28961. tail: {
  28962. height: math.unit(4.2, "feet"),
  28963. name: "Tail",
  28964. image: {
  28965. source: "./media/characters/acidrenamon/tail.svg"
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(2, "meters"),
  28973. default: true
  28974. },
  28975. {
  28976. name: "Minimacro",
  28977. height: math.unit(7, "meters")
  28978. },
  28979. {
  28980. name: "Macro",
  28981. height: math.unit(200, "meters")
  28982. },
  28983. {
  28984. name: "Gigamacro",
  28985. height: math.unit(0.2, "earths")
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28991. {
  28992. front: {
  28993. height: math.unit(152, "feet"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/kenzie-lee/front.svg",
  28997. extra: 1869/1774,
  28998. bottom: 128/1997
  28999. }
  29000. },
  29001. side: {
  29002. height: math.unit(86, "feet"),
  29003. name: "Side",
  29004. image: {
  29005. source: "./media/characters/kenzie-lee/side.svg",
  29006. extra: 930/815,
  29007. bottom: 177/1107
  29008. }
  29009. },
  29010. paw: {
  29011. height: math.unit(15, "feet"),
  29012. name: "Paw",
  29013. image: {
  29014. source: "./media/characters/kenzie-lee/paw.svg"
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Kenzie Flea",
  29021. height: math.unit(2, "mm"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "Micro",
  29026. height: math.unit(2, "inches")
  29027. },
  29028. {
  29029. name: "Normal",
  29030. height: math.unit(152, "feet")
  29031. },
  29032. {
  29033. name: "Megamacro",
  29034. height: math.unit(7, "miles")
  29035. },
  29036. {
  29037. name: "Gigamacro",
  29038. height: math.unit(8000, "miles")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(6, "feet"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/withers/front.svg",
  29050. extra: 1935/1760,
  29051. bottom: 72/2007
  29052. }
  29053. },
  29054. back: {
  29055. height: math.unit(6, "feet"),
  29056. name: "Back",
  29057. image: {
  29058. source: "./media/characters/withers/back.svg",
  29059. extra: 1944/1792,
  29060. bottom: 12/1956
  29061. }
  29062. },
  29063. dressed: {
  29064. height: math.unit(6, "feet"),
  29065. name: "Dressed",
  29066. image: {
  29067. source: "./media/characters/withers/dressed.svg",
  29068. extra: 1937/1765,
  29069. bottom: 73/2010
  29070. }
  29071. },
  29072. phase1: {
  29073. height: math.unit(1.1, "feet"),
  29074. name: "Phase 1",
  29075. image: {
  29076. source: "./media/characters/withers/phase-1.svg",
  29077. extra: 1885/1232,
  29078. bottom: 0/1885
  29079. }
  29080. },
  29081. phase2: {
  29082. height: math.unit(1.05, "feet"),
  29083. name: "Phase 2",
  29084. image: {
  29085. source: "./media/characters/withers/phase-2.svg",
  29086. extra: 1792/1090,
  29087. bottom: 0/1792
  29088. }
  29089. },
  29090. partyWipe: {
  29091. height: math.unit(1.1, "feet"),
  29092. name: "Party Wipe",
  29093. image: {
  29094. source: "./media/characters/withers/party-wipe.svg",
  29095. extra: 1864/1207,
  29096. bottom: 0/1864
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Macro",
  29103. height: math.unit(167, "feet"),
  29104. default: true
  29105. },
  29106. {
  29107. name: "Megamacro",
  29108. height: math.unit(15, "miles")
  29109. }
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(6 + 7 / 12, "feet"),
  29117. weight: math.unit(250, "lb"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/nemoskii/front.svg",
  29121. extra: 2270 / 1734,
  29122. bottom: 86 / 2354
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(6 + 7 / 12, "feet"),
  29127. weight: math.unit(250, "lb"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/nemoskii/back.svg",
  29131. extra: 1845 / 1788,
  29132. bottom: 10.5 / 1852
  29133. }
  29134. },
  29135. head: {
  29136. height: math.unit(1.31, "feet"),
  29137. name: "Head",
  29138. image: {
  29139. source: "./media/characters/nemoskii/head.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Micro",
  29146. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29147. },
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(6 + 7 / 12, "feet"),
  29151. default: true
  29152. },
  29153. {
  29154. name: "Macro",
  29155. height: math.unit((6 + 7 / 12) * 150, "feet")
  29156. },
  29157. {
  29158. name: "Macro+",
  29159. height: math.unit((6 + 7 / 12) * 500, "feet")
  29160. },
  29161. {
  29162. name: "Megamacro",
  29163. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(1, "mile"),
  29172. weight: math.unit(265261.9, "lb"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/shui/front.svg",
  29176. extra: 1633 / 1564,
  29177. bottom: 91.5 / 1726
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(1, "mile"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(12 + 6 / 12, "feet"),
  29194. weight: math.unit(1342, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/arokh-takakura/front.svg",
  29198. extra: 1089 / 1043,
  29199. bottom: 77.4 / 1176.7
  29200. }
  29201. },
  29202. back: {
  29203. height: math.unit(12 + 6 / 12, "feet"),
  29204. weight: math.unit(1342, "lb"),
  29205. name: "Back",
  29206. image: {
  29207. source: "./media/characters/arokh-takakura/back.svg",
  29208. extra: 1046 / 1019,
  29209. bottom: 102 / 1150
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Big",
  29216. height: math.unit(12 + 6 / 12, "feet"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(5 + 6 / 12, "feet"),
  29226. weight: math.unit(150, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/theo/front.svg",
  29230. extra: 1184 / 1131,
  29231. bottom: 7.4 / 1191
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Micro",
  29238. height: math.unit(5, "inches")
  29239. },
  29240. {
  29241. name: "Normal",
  29242. height: math.unit(5 + 6 / 12, "feet"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(5 + 9 / 12, "feet"),
  29252. weight: math.unit(130, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/cecelia-swift/front.svg",
  29256. extra: 502 / 484,
  29257. bottom: 23 / 523
  29258. }
  29259. },
  29260. back: {
  29261. height: math.unit(5 + 9 / 12, "feet"),
  29262. weight: math.unit(130, "lb"),
  29263. name: "Back",
  29264. image: {
  29265. source: "./media/characters/cecelia-swift/back.svg",
  29266. extra: 499 / 485,
  29267. bottom: 12 / 511
  29268. }
  29269. },
  29270. head: {
  29271. height: math.unit(0.90, "feet"),
  29272. name: "Head",
  29273. image: {
  29274. source: "./media/characters/cecelia-swift/head.svg"
  29275. }
  29276. },
  29277. rump: {
  29278. height: math.unit(1.75, "feet"),
  29279. name: "Rump",
  29280. image: {
  29281. source: "./media/characters/cecelia-swift/rump.svg"
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(5 + 9 / 12, "feet"),
  29289. default: true
  29290. },
  29291. {
  29292. name: "Big",
  29293. height: math.unit(50, "feet")
  29294. },
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(100, "feet")
  29298. },
  29299. {
  29300. name: "Macro+",
  29301. height: math.unit(500, "feet")
  29302. },
  29303. {
  29304. name: "Macro++",
  29305. height: math.unit(1000, "feet")
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(6, "feet"),
  29314. weight: math.unit(150, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/kaunan/front.svg",
  29318. extra: 2890 / 2523,
  29319. bottom: 49 / 2939
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Macro",
  29326. height: math.unit(150, "feet"),
  29327. default: true
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29333. {
  29334. dressed: {
  29335. height: math.unit(175, "cm"),
  29336. weight: math.unit(60, "kg"),
  29337. name: "Dressed",
  29338. image: {
  29339. source: "./media/characters/fei/dressed.svg",
  29340. extra: 1402/1278,
  29341. bottom: 27/1429
  29342. }
  29343. },
  29344. nude: {
  29345. height: math.unit(175, "cm"),
  29346. weight: math.unit(60, "kg"),
  29347. name: "Nude",
  29348. image: {
  29349. source: "./media/characters/fei/nude.svg",
  29350. extra: 1402/1278,
  29351. bottom: 27/1429
  29352. }
  29353. },
  29354. heels: {
  29355. height: math.unit(0.466, "feet"),
  29356. name: "Heels",
  29357. image: {
  29358. source: "./media/characters/fei/heels.svg",
  29359. extra: 156/152,
  29360. bottom: 28/184
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Mortal",
  29367. height: math.unit(175, "cm")
  29368. },
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(3500, "m")
  29372. },
  29373. {
  29374. name: "Stroll",
  29375. height: math.unit(18.4, "km"),
  29376. default: true
  29377. },
  29378. {
  29379. name: "Showoff",
  29380. height: math.unit(175, "km")
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(7, "feet"),
  29389. weight: math.unit(1000, "kg"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/edrax/front.svg",
  29393. extra: 2838 / 2550,
  29394. bottom: 130 / 2968
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Small",
  29401. height: math.unit(7, "feet")
  29402. },
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(1500, "meters")
  29406. },
  29407. {
  29408. name: "Mega",
  29409. height: math.unit(12000000, "km"),
  29410. default: true
  29411. },
  29412. {
  29413. name: "Megamacro",
  29414. height: math.unit(10600000, "lightyears")
  29415. },
  29416. {
  29417. name: "Hypermacro",
  29418. height: math.unit(256, "yottameters")
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(10, "feet"),
  29427. weight: math.unit(750, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/clove/front.svg",
  29431. extra: 1918/1751,
  29432. bottom: 52/1970
  29433. }
  29434. },
  29435. back: {
  29436. height: math.unit(10, "feet"),
  29437. weight: math.unit(750, "lb"),
  29438. name: "Back",
  29439. image: {
  29440. source: "./media/characters/clove/back.svg",
  29441. extra: 1912/1747,
  29442. bottom: 50/1962
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(10, "feet"),
  29450. default: true
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29456. {
  29457. front: {
  29458. height: math.unit(4, "feet"),
  29459. weight: math.unit(50, "lb"),
  29460. name: "Front",
  29461. image: {
  29462. source: "./media/characters/alex-rabbit/front.svg",
  29463. extra: 507 / 458,
  29464. bottom: 18.5 / 527
  29465. }
  29466. },
  29467. back: {
  29468. height: math.unit(4, "feet"),
  29469. weight: math.unit(50, "lb"),
  29470. name: "Back",
  29471. image: {
  29472. source: "./media/characters/alex-rabbit/back.svg",
  29473. extra: 502 / 460,
  29474. bottom: 18.9 / 521
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Normal",
  29481. height: math.unit(4, "feet"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(1 + 3 / 12, "feet"),
  29491. weight: math.unit(80, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/zander-rose/front.svg",
  29495. extra: 916 / 797,
  29496. bottom: 17 / 933
  29497. }
  29498. },
  29499. back: {
  29500. height: math.unit(1 + 3 / 12, "feet"),
  29501. weight: math.unit(80, "lb"),
  29502. name: "Back",
  29503. image: {
  29504. source: "./media/characters/zander-rose/back.svg",
  29505. extra: 903 / 779,
  29506. bottom: 31 / 934
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(1 + 3 / 12, "feet"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29520. {
  29521. anthro: {
  29522. height: math.unit(6, "feet"),
  29523. weight: math.unit(150, "lb"),
  29524. name: "Anthro",
  29525. image: {
  29526. source: "./media/characters/razz/anthro.svg",
  29527. extra: 1437 / 1343,
  29528. bottom: 48 / 1485
  29529. }
  29530. },
  29531. feral: {
  29532. height: math.unit(6, "feet"),
  29533. weight: math.unit(150, "lb"),
  29534. name: "Feral",
  29535. image: {
  29536. source: "./media/characters/razz/feral.svg",
  29537. extra: 2569 / 1385,
  29538. bottom: 95 / 2664
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(6, "feet"),
  29546. default: true
  29547. },
  29548. ]
  29549. ))
  29550. characterMakers.push(() => makeCharacter(
  29551. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29552. {
  29553. front: {
  29554. height: math.unit(9 + 4 / 12, "feet"),
  29555. weight: math.unit(500, "lb"),
  29556. name: "Front",
  29557. image: {
  29558. source: "./media/characters/morrigan/front.svg",
  29559. extra: 2707 / 2579,
  29560. bottom: 156 / 2863
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Normal",
  29567. height: math.unit(9 + 4 / 12, "feet"),
  29568. default: true
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29574. {
  29575. front: {
  29576. height: math.unit(5, "stories"),
  29577. weight: math.unit(4000, "lb"),
  29578. name: "Front",
  29579. image: {
  29580. source: "./media/characters/jenene/front.svg",
  29581. extra: 1780 / 1710,
  29582. bottom: 57 / 1837
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(5, "stories"),
  29590. default: true
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29596. {
  29597. taurSfw: {
  29598. height: math.unit(10, "meters"),
  29599. weight: math.unit(17500, "kg"),
  29600. name: "Taur",
  29601. image: {
  29602. source: "./media/characters/faey/taur-sfw.svg",
  29603. extra: 1200 / 968,
  29604. bottom: 41 / 1241
  29605. }
  29606. },
  29607. chestmaw: {
  29608. height: math.unit(2.01, "meters"),
  29609. name: "Chestmaw",
  29610. image: {
  29611. source: "./media/characters/faey/chestmaw.svg"
  29612. }
  29613. },
  29614. foot: {
  29615. height: math.unit(2.43, "meters"),
  29616. name: "Foot",
  29617. image: {
  29618. source: "./media/characters/faey/foot.svg"
  29619. }
  29620. },
  29621. jaws: {
  29622. height: math.unit(1.66, "meters"),
  29623. name: "Jaws",
  29624. image: {
  29625. source: "./media/characters/faey/jaws.svg"
  29626. }
  29627. },
  29628. tongues: {
  29629. height: math.unit(2.01, "meters"),
  29630. name: "Tongues",
  29631. image: {
  29632. source: "./media/characters/faey/tongues.svg"
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Small",
  29639. height: math.unit(10, "meters"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Big",
  29644. height: math.unit(500000, "km")
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(7, "feet"),
  29653. weight: math.unit(275, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/roku/front.svg",
  29657. extra: 903 / 878,
  29658. bottom: 37 / 940
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Normal",
  29665. height: math.unit(7, "feet"),
  29666. default: true
  29667. },
  29668. {
  29669. name: "Macro",
  29670. height: math.unit(500, "feet")
  29671. },
  29672. {
  29673. name: "Megamacro",
  29674. height: math.unit(200, "miles")
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(6 + 2 / 12, "feet"),
  29683. weight: math.unit(150, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/lira/front.svg",
  29687. extra: 1727 / 1605,
  29688. bottom: 26 / 1753
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(6 + 2 / 12, "feet"),
  29693. weight: math.unit(150, "lb"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/lira/back.svg",
  29697. extra: 1713/1621,
  29698. bottom: 20/1733
  29699. }
  29700. },
  29701. hand: {
  29702. height: math.unit(0.75, "feet"),
  29703. name: "Hand",
  29704. image: {
  29705. source: "./media/characters/lira/hand.svg"
  29706. }
  29707. },
  29708. maw: {
  29709. height: math.unit(0.65, "feet"),
  29710. name: "Maw",
  29711. image: {
  29712. source: "./media/characters/lira/maw.svg"
  29713. }
  29714. },
  29715. pawDigi: {
  29716. height: math.unit(1.6, "feet"),
  29717. name: "Paw Digi",
  29718. image: {
  29719. source: "./media/characters/lira/paw-digi.svg"
  29720. }
  29721. },
  29722. pawPlanti: {
  29723. height: math.unit(1.4, "feet"),
  29724. name: "Paw Planti",
  29725. image: {
  29726. source: "./media/characters/lira/paw-planti.svg"
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(6 + 2 / 12, "feet"),
  29734. default: true
  29735. },
  29736. {
  29737. name: "Macro",
  29738. height: math.unit(100, "feet")
  29739. },
  29740. {
  29741. name: "Macro²",
  29742. height: math.unit(1600, "feet")
  29743. },
  29744. {
  29745. name: "Planetary",
  29746. height: math.unit(20, "earths")
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(6, "feet"),
  29755. weight: math.unit(150, "lb"),
  29756. name: "Front",
  29757. image: {
  29758. source: "./media/characters/hadjet/front.svg",
  29759. extra: 1480 / 1346,
  29760. bottom: 26 / 1506
  29761. }
  29762. },
  29763. frontNsfw: {
  29764. height: math.unit(6, "feet"),
  29765. weight: math.unit(150, "lb"),
  29766. name: "Front (NSFW)",
  29767. image: {
  29768. source: "./media/characters/hadjet/front-nsfw.svg",
  29769. extra: 1440 / 1358,
  29770. bottom: 52 / 1492
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(10, "stories"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "Megamacro",
  29782. height: math.unit(1.5, "miles")
  29783. },
  29784. {
  29785. name: "Megamacro+",
  29786. height: math.unit(5, "miles")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29792. {
  29793. side: {
  29794. height: math.unit(106, "feet"),
  29795. weight: math.unit(500, "tonnes"),
  29796. name: "Side",
  29797. image: {
  29798. source: "./media/characters/kodran/side.svg",
  29799. extra: 553 / 480,
  29800. bottom: 33 / 586
  29801. }
  29802. },
  29803. front: {
  29804. height: math.unit(132, "feet"),
  29805. weight: math.unit(500, "tonnes"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/kodran/front.svg",
  29809. extra: 667 / 643,
  29810. bottom: 42 / 709
  29811. }
  29812. },
  29813. flying: {
  29814. height: math.unit(350, "feet"),
  29815. weight: math.unit(500, "tonnes"),
  29816. name: "Flying",
  29817. image: {
  29818. source: "./media/characters/kodran/flying.svg"
  29819. }
  29820. },
  29821. foot: {
  29822. height: math.unit(33, "feet"),
  29823. name: "Foot",
  29824. image: {
  29825. source: "./media/characters/kodran/foot.svg"
  29826. }
  29827. },
  29828. footFront: {
  29829. height: math.unit(19, "feet"),
  29830. name: "Foot (Front)",
  29831. image: {
  29832. source: "./media/characters/kodran/foot-front.svg",
  29833. extra: 261 / 261,
  29834. bottom: 91 / 352
  29835. }
  29836. },
  29837. headFront: {
  29838. height: math.unit(53, "feet"),
  29839. name: "Head (Front)",
  29840. image: {
  29841. source: "./media/characters/kodran/head-front.svg"
  29842. }
  29843. },
  29844. headSide: {
  29845. height: math.unit(65, "feet"),
  29846. name: "Head (Side)",
  29847. image: {
  29848. source: "./media/characters/kodran/head-side.svg"
  29849. }
  29850. },
  29851. throat: {
  29852. height: math.unit(79, "feet"),
  29853. name: "Throat",
  29854. image: {
  29855. source: "./media/characters/kodran/throat.svg"
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Large",
  29862. height: math.unit(106, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29869. {
  29870. side: {
  29871. height: math.unit(11, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Side",
  29874. image: {
  29875. source: "./media/characters/pyxaron/side.svg",
  29876. extra: 305 / 195,
  29877. bottom: 17 / 322
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Normal",
  29884. height: math.unit(11, "feet"),
  29885. default: true
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(6, "feet"),
  29894. weight: math.unit(150, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/meep/front.svg",
  29898. extra: 88 / 80,
  29899. bottom: 6 / 94
  29900. }
  29901. },
  29902. },
  29903. [
  29904. {
  29905. name: "Fun Sized",
  29906. height: math.unit(2, "inches"),
  29907. default: true
  29908. },
  29909. {
  29910. name: "Friend Sized",
  29911. height: math.unit(8, "inches")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(15, "feet"),
  29920. weight: math.unit(2500, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/holly-rabbit/front.svg",
  29924. extra: 1433 / 1233,
  29925. bottom: 125 / 1558
  29926. }
  29927. },
  29928. dick: {
  29929. height: math.unit(4.6, "feet"),
  29930. name: "Dick",
  29931. image: {
  29932. source: "./media/characters/holly-rabbit/dick.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(15, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Macro",
  29944. height: math.unit(250, "feet")
  29945. },
  29946. {
  29947. name: "Macro+",
  29948. height: math.unit(2500, "feet")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(3.02, "meters"),
  29957. weight: math.unit(500, "kg"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/drena/front.svg",
  29961. extra: 282 / 243,
  29962. bottom: 8 / 290
  29963. }
  29964. },
  29965. side: {
  29966. height: math.unit(3.02, "meters"),
  29967. weight: math.unit(500, "kg"),
  29968. name: "Side",
  29969. image: {
  29970. source: "./media/characters/drena/side.svg",
  29971. extra: 280 / 245,
  29972. bottom: 10 / 290
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(3.02, "meters"),
  29977. weight: math.unit(500, "kg"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/drena/back.svg",
  29981. extra: 278 / 243,
  29982. bottom: 2 / 280
  29983. }
  29984. },
  29985. foot: {
  29986. height: math.unit(0.75, "meters"),
  29987. name: "Foot",
  29988. image: {
  29989. source: "./media/characters/drena/foot.svg"
  29990. }
  29991. },
  29992. maw: {
  29993. height: math.unit(0.82, "meters"),
  29994. name: "Maw",
  29995. image: {
  29996. source: "./media/characters/drena/maw.svg"
  29997. }
  29998. },
  29999. eating: {
  30000. height: math.unit(0.75, "meters"),
  30001. name: "Eating",
  30002. image: {
  30003. source: "./media/characters/drena/eating.svg"
  30004. }
  30005. },
  30006. rump: {
  30007. height: math.unit(0.93, "meters"),
  30008. name: "Rump",
  30009. image: {
  30010. source: "./media/characters/drena/rump.svg"
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(3.02, "meters"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(6 + 4 / 12, "feet"),
  30027. weight: math.unit(250, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/remmyzilla/front.svg",
  30031. extra: 4033 / 3588,
  30032. bottom: 123 / 4156
  30033. }
  30034. },
  30035. back: {
  30036. height: math.unit(6 + 4 / 12, "feet"),
  30037. weight: math.unit(250, "lb"),
  30038. name: "Back",
  30039. image: {
  30040. source: "./media/characters/remmyzilla/back.svg",
  30041. extra: 2687 / 2555,
  30042. bottom: 48 / 2735
  30043. }
  30044. },
  30045. paw: {
  30046. height: math.unit(1.73, "feet"),
  30047. name: "Paw",
  30048. image: {
  30049. source: "./media/characters/remmyzilla/paw.svg"
  30050. },
  30051. extraAttributes: {
  30052. "toeSize": {
  30053. name: "Toe Size",
  30054. power: 2,
  30055. type: "area",
  30056. base: math.unit(0.0035, "m^2")
  30057. },
  30058. "padSize": {
  30059. name: "Pad Size",
  30060. power: 2,
  30061. type: "area",
  30062. base: math.unit(0.015, "m^2")
  30063. },
  30064. "pawsize": {
  30065. name: "Paw Size",
  30066. power: 2,
  30067. type: "area",
  30068. base: math.unit(0.072, "m^2")
  30069. },
  30070. }
  30071. },
  30072. maw: {
  30073. height: math.unit(1.73, "feet"),
  30074. name: "Maw",
  30075. image: {
  30076. source: "./media/characters/remmyzilla/maw.svg"
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(6 + 4 / 12, "feet")
  30084. },
  30085. {
  30086. name: "Minimacro",
  30087. height: math.unit(12 + 8 / 12, "feet")
  30088. },
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(640, "feet"),
  30092. default: true
  30093. },
  30094. {
  30095. name: "Megamacro",
  30096. height: math.unit(6400, "feet")
  30097. },
  30098. {
  30099. name: "Gigamacro",
  30100. height: math.unit(64000, "miles")
  30101. },
  30102. ]
  30103. ))
  30104. characterMakers.push(() => makeCharacter(
  30105. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30106. {
  30107. front: {
  30108. height: math.unit(2.5, "meters"),
  30109. weight: math.unit(300, "lb"),
  30110. name: "Front",
  30111. image: {
  30112. source: "./media/characters/lawrence/front.svg",
  30113. extra: 357 / 335,
  30114. bottom: 30 / 387
  30115. }
  30116. },
  30117. back: {
  30118. height: math.unit(2.5, "meters"),
  30119. weight: math.unit(300, "lb"),
  30120. name: "Back",
  30121. image: {
  30122. source: "./media/characters/lawrence/back.svg",
  30123. extra: 357 / 338,
  30124. bottom: 16 / 373
  30125. }
  30126. },
  30127. head: {
  30128. height: math.unit(0.9, "meter"),
  30129. name: "Head",
  30130. image: {
  30131. source: "./media/characters/lawrence/head.svg"
  30132. }
  30133. },
  30134. maw: {
  30135. height: math.unit(0.7, "meter"),
  30136. name: "Maw",
  30137. image: {
  30138. source: "./media/characters/lawrence/maw.svg"
  30139. }
  30140. },
  30141. footBottom: {
  30142. height: math.unit(0.5, "meter"),
  30143. name: "Foot (Bottom)",
  30144. image: {
  30145. source: "./media/characters/lawrence/foot-bottom.svg"
  30146. }
  30147. },
  30148. footTop: {
  30149. height: math.unit(0.5, "meter"),
  30150. name: "Foot (Top)",
  30151. image: {
  30152. source: "./media/characters/lawrence/foot-top.svg"
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(2.5, "meters"),
  30160. default: true
  30161. },
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(95, "meters")
  30165. },
  30166. {
  30167. name: "Megamacro",
  30168. height: math.unit(150, "km")
  30169. },
  30170. ]
  30171. ))
  30172. characterMakers.push(() => makeCharacter(
  30173. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30174. {
  30175. front: {
  30176. height: math.unit(4.2, "meters"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/sydney/front.svg",
  30180. extra: 1323 / 1277,
  30181. bottom: 111 / 1434
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(4.2, "meters"),
  30189. default: true
  30190. },
  30191. ]
  30192. ))
  30193. characterMakers.push(() => makeCharacter(
  30194. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30195. {
  30196. back: {
  30197. height: math.unit(201, "feet"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/jessica/back.svg",
  30201. extra: 273 / 259,
  30202. bottom: 7 / 280
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(201, "feet"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Megamacro",
  30214. height: math.unit(8, "miles")
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30220. {
  30221. side: {
  30222. height: math.unit(5.6, "m"),
  30223. weight: math.unit(8000, "kg"),
  30224. name: "Side",
  30225. image: {
  30226. source: "./media/characters/victoria/side.svg",
  30227. extra: 1542/1229,
  30228. bottom: 124/1666
  30229. }
  30230. },
  30231. maw: {
  30232. height: math.unit(7.14, "feet"),
  30233. name: "Maw",
  30234. image: {
  30235. source: "./media/characters/victoria/maw.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(5.6, "m"),
  30243. default: true
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30249. {
  30250. front: {
  30251. height: math.unit(5 + 6 / 12, "feet"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/cat/front.svg",
  30255. extra: 1449/1295,
  30256. bottom: 34/1483
  30257. },
  30258. form: "cat",
  30259. default: true
  30260. },
  30261. back: {
  30262. height: math.unit(5 + 6 / 12, "feet"),
  30263. name: "Back",
  30264. image: {
  30265. source: "./media/characters/cat/back.svg",
  30266. extra: 1466/1301,
  30267. bottom: 19/1485
  30268. },
  30269. form: "cat"
  30270. },
  30271. taur: {
  30272. height: math.unit(7, "feet"),
  30273. name: "Taur",
  30274. image: {
  30275. source: "./media/characters/cat/taur.svg",
  30276. extra: 1389/1233,
  30277. bottom: 83/1472
  30278. },
  30279. form: "taur",
  30280. default: true
  30281. },
  30282. lucarioFront: {
  30283. height: math.unit(4, "feet"),
  30284. name: "Lucario (Front)",
  30285. image: {
  30286. source: "./media/characters/cat/lucario-front.svg",
  30287. extra: 1149/1019,
  30288. bottom: 84/1233
  30289. },
  30290. form: "lucario",
  30291. default: true
  30292. },
  30293. lucarioBack: {
  30294. height: math.unit(4, "feet"),
  30295. name: "Lucario (Back)",
  30296. image: {
  30297. source: "./media/characters/cat/lucario-back.svg",
  30298. extra: 1190/1059,
  30299. bottom: 33/1223
  30300. },
  30301. form: "lucario"
  30302. },
  30303. megaLucario: {
  30304. height: math.unit(4, "feet"),
  30305. name: "Mega Lucario",
  30306. image: {
  30307. source: "./media/characters/cat/mega-lucario.svg",
  30308. extra: 1515 / 1319,
  30309. bottom: 63 / 1578
  30310. },
  30311. form: "lucario"
  30312. },
  30313. nickit: {
  30314. height: math.unit(2, "feet"),
  30315. name: "Nickit",
  30316. image: {
  30317. source: "./media/characters/cat/nickit.svg",
  30318. extra: 1980 / 1585,
  30319. bottom: 102 / 2082
  30320. },
  30321. form: "nickit",
  30322. default: true
  30323. },
  30324. lopunnyFront: {
  30325. height: math.unit(5, "feet"),
  30326. name: "Lopunny (Front)",
  30327. image: {
  30328. source: "./media/characters/cat/lopunny-front.svg",
  30329. extra: 1782 / 1469,
  30330. bottom: 38 / 1820
  30331. },
  30332. form: "lopunny",
  30333. default: true
  30334. },
  30335. lopunnyBack: {
  30336. height: math.unit(5, "feet"),
  30337. name: "Lopunny (Back)",
  30338. image: {
  30339. source: "./media/characters/cat/lopunny-back.svg",
  30340. extra: 1660 / 1490,
  30341. bottom: 25 / 1685
  30342. },
  30343. form: "lopunny"
  30344. },
  30345. },
  30346. [
  30347. {
  30348. name: "Really small",
  30349. height: math.unit(1, "nm")
  30350. },
  30351. {
  30352. name: "Micro",
  30353. height: math.unit(5, "inches")
  30354. },
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(5 + 6 / 12, "feet"),
  30358. default: true
  30359. },
  30360. {
  30361. name: "Macro",
  30362. height: math.unit(50, "feet")
  30363. },
  30364. {
  30365. name: "Macro+",
  30366. height: math.unit(150, "feet")
  30367. },
  30368. {
  30369. name: "Megamacro",
  30370. height: math.unit(100, "miles")
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(63.4, "meters"),
  30379. weight: math.unit(3.28349e+6, "kilograms"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/kirina-violet/front.svg",
  30383. extra: 2812 / 2725,
  30384. bottom: 0 / 2812
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(63.4, "meters"),
  30389. weight: math.unit(3.28349e+6, "kilograms"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/kirina-violet/back.svg",
  30393. extra: 2812 / 2725,
  30394. bottom: 0 / 2812
  30395. }
  30396. },
  30397. mouth: {
  30398. height: math.unit(4.35, "meters"),
  30399. name: "Mouth",
  30400. image: {
  30401. source: "./media/characters/kirina-violet/mouth.svg"
  30402. }
  30403. },
  30404. paw: {
  30405. height: math.unit(5.6, "meters"),
  30406. name: "Paw",
  30407. image: {
  30408. source: "./media/characters/kirina-violet/paw.svg"
  30409. }
  30410. },
  30411. tail: {
  30412. height: math.unit(18, "meters"),
  30413. name: "Tail",
  30414. image: {
  30415. source: "./media/characters/kirina-violet/tail.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Macro",
  30422. height: math.unit(63.4, "meters"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(75, "feet"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/cat-gigachu/front.svg",
  30435. extra: 1239/1027,
  30436. bottom: 32/1271
  30437. }
  30438. },
  30439. back: {
  30440. height: math.unit(75, "feet"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/cat-gigachu/back.svg",
  30444. extra: 1229/1030,
  30445. bottom: 9/1238
  30446. }
  30447. },
  30448. },
  30449. [
  30450. {
  30451. name: "Dynamax",
  30452. height: math.unit(75, "feet"),
  30453. default: true
  30454. },
  30455. ]
  30456. ))
  30457. characterMakers.push(() => makeCharacter(
  30458. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30459. {
  30460. front: {
  30461. height: math.unit(6, "feet"),
  30462. weight: math.unit(150, "lb"),
  30463. name: "Front",
  30464. image: {
  30465. source: "./media/characters/sfaiyan/front.svg",
  30466. extra: 999 / 978,
  30467. bottom: 5 / 1004
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Normal",
  30474. height: math.unit(1.82, "meters")
  30475. },
  30476. {
  30477. name: "Giant",
  30478. height: math.unit(2.27, "km"),
  30479. default: true
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30485. {
  30486. front: {
  30487. height: math.unit(179, "cm"),
  30488. weight: math.unit(100, "kg"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/raunehkeli/front.svg",
  30492. extra: 1934 / 1926,
  30493. bottom: 0 / 1934
  30494. }
  30495. },
  30496. },
  30497. [
  30498. {
  30499. name: "Normal",
  30500. height: math.unit(179, "cm")
  30501. },
  30502. {
  30503. name: "Maximum",
  30504. height: math.unit(575, "meters"),
  30505. default: true
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(6, "feet"),
  30514. weight: math.unit(150, "lb"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30518. extra: 2625 / 2518,
  30519. bottom: 60 / 2685
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Normal",
  30526. height: math.unit(6 + 2 / 12, "feet")
  30527. },
  30528. {
  30529. name: "Macro",
  30530. height: math.unit(1180, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(5 + 6 / 12, "feet"),
  30540. weight: math.unit(108, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/lilith-zott/front.svg",
  30544. extra: 2510 / 2238,
  30545. bottom: 100 / 2610
  30546. }
  30547. },
  30548. frontDressed: {
  30549. height: math.unit(5 + 6 / 12, "feet"),
  30550. weight: math.unit(108, "lb"),
  30551. name: "Front (Dressed)",
  30552. image: {
  30553. source: "./media/characters/lilith-zott/front-dressed.svg",
  30554. extra: 2510 / 2238,
  30555. bottom: 100 / 2610
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Normal",
  30562. height: math.unit(5 + 6 / 12, "feet")
  30563. },
  30564. {
  30565. name: "Macro",
  30566. height: math.unit(1030, "feet"),
  30567. default: true
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(6, "feet"),
  30576. weight: math.unit(150, "lb"),
  30577. name: "Front",
  30578. image: {
  30579. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30580. extra: 2567 / 2435,
  30581. bottom: 39 / 2606
  30582. }
  30583. },
  30584. frontSuper: {
  30585. height: math.unit(6, "feet"),
  30586. name: "Front (Super)",
  30587. image: {
  30588. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30589. extra: 2567 / 2435,
  30590. bottom: 39 / 2606
  30591. }
  30592. },
  30593. },
  30594. [
  30595. {
  30596. name: "Normal",
  30597. height: math.unit(5 + 10 / 12, "feet")
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit(1100, "feet"),
  30602. default: true
  30603. },
  30604. ]
  30605. ))
  30606. characterMakers.push(() => makeCharacter(
  30607. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30608. {
  30609. front: {
  30610. height: math.unit(100, "miles"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/sona/front.svg",
  30614. extra: 2433 / 2201,
  30615. bottom: 53 / 2486
  30616. }
  30617. },
  30618. foot: {
  30619. height: math.unit(16.1, "miles"),
  30620. name: "Foot",
  30621. image: {
  30622. source: "./media/characters/sona/foot.svg"
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Macro",
  30629. height: math.unit(100, "miles"),
  30630. default: true
  30631. },
  30632. ]
  30633. ))
  30634. characterMakers.push(() => makeCharacter(
  30635. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30636. {
  30637. front: {
  30638. height: math.unit(6, "feet"),
  30639. weight: math.unit(150, "lb"),
  30640. name: "Front",
  30641. image: {
  30642. source: "./media/characters/bailey/front.svg",
  30643. extra: 1778 / 1724,
  30644. bottom: 30 / 1808
  30645. }
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Micro",
  30651. height: math.unit(4, "inches")
  30652. },
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(5 + 5 / 12, "feet"),
  30656. default: true
  30657. },
  30658. {
  30659. name: "Macro",
  30660. height: math.unit(250, "feet")
  30661. },
  30662. {
  30663. name: "Megamacro",
  30664. height: math.unit(100, "miles")
  30665. },
  30666. ]
  30667. ))
  30668. characterMakers.push(() => makeCharacter(
  30669. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30670. {
  30671. front: {
  30672. height: math.unit(5 + 2 / 12, "feet"),
  30673. weight: math.unit(120, "lb"),
  30674. name: "Front",
  30675. image: {
  30676. source: "./media/characters/snaps/front.svg",
  30677. extra: 2370 / 2177,
  30678. bottom: 48 / 2418
  30679. }
  30680. },
  30681. back: {
  30682. height: math.unit(5 + 2 / 12, "feet"),
  30683. weight: math.unit(120, "lb"),
  30684. name: "Back",
  30685. image: {
  30686. source: "./media/characters/snaps/back.svg",
  30687. extra: 2408 / 2258,
  30688. bottom: 15 / 2423
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Micro",
  30695. height: math.unit(9, "inches")
  30696. },
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(5 + 2 / 12, "feet"),
  30700. default: true
  30701. },
  30702. {
  30703. name: "Mini Macro",
  30704. height: math.unit(10, "feet")
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30710. {
  30711. front: {
  30712. height: math.unit(1.8, "meters"),
  30713. weight: math.unit(85, "kg"),
  30714. name: "Front",
  30715. image: {
  30716. source: "./media/characters/azteck/front.svg",
  30717. extra: 2815 / 2625,
  30718. bottom: 89 / 2904
  30719. }
  30720. },
  30721. back: {
  30722. height: math.unit(1.8, "meters"),
  30723. weight: math.unit(85, "kg"),
  30724. name: "Back",
  30725. image: {
  30726. source: "./media/characters/azteck/back.svg",
  30727. extra: 2856 / 2648,
  30728. bottom: 85 / 2941
  30729. }
  30730. },
  30731. frontDressed: {
  30732. height: math.unit(1.8, "meters"),
  30733. weight: math.unit(85, "kg"),
  30734. name: "Front (Dressed)",
  30735. image: {
  30736. source: "./media/characters/azteck/front-dressed.svg",
  30737. extra: 2147 / 2003,
  30738. bottom: 68 / 2215
  30739. }
  30740. },
  30741. head: {
  30742. height: math.unit(0.47, "meters"),
  30743. weight: math.unit(85, "kg"),
  30744. name: "Head",
  30745. image: {
  30746. source: "./media/characters/azteck/head.svg"
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Bite sized",
  30753. height: math.unit(16, "cm")
  30754. },
  30755. {
  30756. name: "Normal",
  30757. height: math.unit(1.8, "meters"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(150, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/pidge/front.svg",
  30771. extra: 1936/1820,
  30772. bottom: 0/1936
  30773. }
  30774. },
  30775. back: {
  30776. height: math.unit(6, "feet"),
  30777. weight: math.unit(150, "lb"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/pidge/back.svg",
  30781. extra: 1938/1843,
  30782. bottom: 0/1938
  30783. }
  30784. },
  30785. casual: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(150, "lb"),
  30788. name: "Casual",
  30789. image: {
  30790. source: "./media/characters/pidge/casual.svg",
  30791. extra: 1936/1820,
  30792. bottom: 0/1936
  30793. }
  30794. },
  30795. tech: {
  30796. height: math.unit(6, "feet"),
  30797. weight: math.unit(150, "lb"),
  30798. name: "Tech",
  30799. image: {
  30800. source: "./media/characters/pidge/tech.svg",
  30801. extra: 1802/1682,
  30802. bottom: 0/1802
  30803. }
  30804. },
  30805. head: {
  30806. height: math.unit(1.61, "feet"),
  30807. name: "Head",
  30808. image: {
  30809. source: "./media/characters/pidge/head.svg"
  30810. }
  30811. },
  30812. collar: {
  30813. height: math.unit(0.82, "feet"),
  30814. name: "Collar",
  30815. image: {
  30816. source: "./media/characters/pidge/collar.svg"
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Macro",
  30823. height: math.unit(2, "mile"),
  30824. default: true
  30825. },
  30826. {
  30827. name: "PUPPY",
  30828. height: math.unit(20, "miles")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(6, "feet"),
  30837. weight: math.unit(150, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/en/front.svg",
  30841. extra: 1697 / 1563,
  30842. bottom: 103 / 1800
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(6, "feet"),
  30847. weight: math.unit(150, "lb"),
  30848. name: "Back",
  30849. image: {
  30850. source: "./media/characters/en/back.svg",
  30851. extra: 1700 / 1570,
  30852. bottom: 51 / 1751
  30853. }
  30854. },
  30855. frontDressed: {
  30856. height: math.unit(6, "feet"),
  30857. weight: math.unit(150, "lb"),
  30858. name: "Front (Dressed)",
  30859. image: {
  30860. source: "./media/characters/en/front-dressed.svg",
  30861. extra: 1697 / 1563,
  30862. bottom: 103 / 1800
  30863. }
  30864. },
  30865. backDressed: {
  30866. height: math.unit(6, "feet"),
  30867. weight: math.unit(150, "lb"),
  30868. name: "Back (Dressed)",
  30869. image: {
  30870. source: "./media/characters/en/back-dressed.svg",
  30871. extra: 1700 / 1570,
  30872. bottom: 51 / 1751
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Macro",
  30879. height: math.unit(210, "feet"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(6, "feet"),
  30889. weight: math.unit(150, "lb"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/haze-orris/front.svg",
  30893. extra: 3975 / 3525,
  30894. bottom: 137 / 4112
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Micro",
  30901. height: math.unit(150, "mm"),
  30902. default: true
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30908. {
  30909. front: {
  30910. height: math.unit(6, "feet"),
  30911. weight: math.unit(150, "lb"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/casselene-yaro/front.svg",
  30915. extra: 4721 / 4541,
  30916. bottom: 82 / 4803
  30917. }
  30918. },
  30919. back: {
  30920. height: math.unit(6, "feet"),
  30921. weight: math.unit(150, "lb"),
  30922. name: "Back",
  30923. image: {
  30924. source: "./media/characters/casselene-yaro/back.svg",
  30925. extra: 4569 / 4377,
  30926. bottom: 69 / 4638
  30927. }
  30928. },
  30929. dressed: {
  30930. height: math.unit(6, "feet"),
  30931. weight: math.unit(150, "lb"),
  30932. name: "Dressed",
  30933. image: {
  30934. source: "./media/characters/casselene-yaro/dressed.svg",
  30935. extra: 4721 / 4541,
  30936. bottom: 82 / 4803
  30937. }
  30938. },
  30939. maw: {
  30940. height: math.unit(1, "feet"),
  30941. name: "Maw",
  30942. image: {
  30943. source: "./media/characters/casselene-yaro/maw.svg"
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Macro",
  30950. height: math.unit(190, "feet"),
  30951. default: true
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(10, "feet"),
  30960. weight: math.unit(15015, "lb"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/platine/front.svg",
  30964. extra: 1741/1650,
  30965. bottom: 84/1825
  30966. }
  30967. },
  30968. side: {
  30969. height: math.unit(10, "feet"),
  30970. weight: math.unit(15015, "lb"),
  30971. name: "Side",
  30972. image: {
  30973. source: "./media/characters/platine/side.svg",
  30974. extra: 1790/1705,
  30975. bottom: 29/1819
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(10, "feet"),
  30983. default: true
  30984. },
  30985. {
  30986. name: "Macro",
  30987. height: math.unit(100, "feet")
  30988. },
  30989. {
  30990. name: "Megamacro",
  30991. height: math.unit(1000, "feet")
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(15 + 5 / 12, "feet"),
  31000. weight: math.unit(4600, "lb"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/neapolitan-ananassa/front.svg",
  31004. extra: 2903 / 2736,
  31005. bottom: 0 / 2903
  31006. }
  31007. },
  31008. side: {
  31009. height: math.unit(15 + 5 / 12, "feet"),
  31010. weight: math.unit(4600, "lb"),
  31011. name: "Side",
  31012. image: {
  31013. source: "./media/characters/neapolitan-ananassa/side.svg",
  31014. extra: 2925 / 2719,
  31015. bottom: 0 / 2925
  31016. }
  31017. },
  31018. back: {
  31019. height: math.unit(15 + 5 / 12, "feet"),
  31020. weight: math.unit(4600, "lb"),
  31021. name: "Back",
  31022. image: {
  31023. source: "./media/characters/neapolitan-ananassa/back.svg",
  31024. extra: 2903 / 2736,
  31025. bottom: 0 / 2903
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(15 + 5 / 12, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Post-Millenium",
  31037. height: math.unit(35 + 5 / 12, "feet")
  31038. },
  31039. {
  31040. name: "Post-Era",
  31041. height: math.unit(450 + 5 / 12, "feet")
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31047. {
  31048. front: {
  31049. height: math.unit(300, "meters"),
  31050. weight: math.unit(125000, "tonnes"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/pazuzu/front.svg",
  31054. extra: 877 / 794,
  31055. bottom: 47 / 924
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Macro",
  31062. height: math.unit(300, "meters"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31069. {
  31070. side: {
  31071. height: math.unit(10 + 7 / 12, "feet"),
  31072. weight: math.unit(2.5, "tons"),
  31073. name: "Side",
  31074. image: {
  31075. source: "./media/characters/aasha/side.svg",
  31076. extra: 1345 / 1245,
  31077. bottom: 111 / 1456
  31078. }
  31079. },
  31080. back: {
  31081. height: math.unit(10 + 7 / 12, "feet"),
  31082. weight: math.unit(2.5, "tons"),
  31083. name: "Back",
  31084. image: {
  31085. source: "./media/characters/aasha/back.svg",
  31086. extra: 1133 / 1057,
  31087. bottom: 257 / 1390
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Normal",
  31094. height: math.unit(10 + 7 / 12, "feet"),
  31095. default: true
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(6 + 3 / 12, "feet"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/nevan/front.svg",
  31107. extra: 704 / 704,
  31108. bottom: 28 / 732
  31109. }
  31110. },
  31111. back: {
  31112. height: math.unit(6 + 3 / 12, "feet"),
  31113. name: "Back",
  31114. image: {
  31115. source: "./media/characters/nevan/back.svg",
  31116. extra: 714 / 714,
  31117. bottom: 21 / 735
  31118. }
  31119. },
  31120. frontFlaccid: {
  31121. height: math.unit(6 + 3 / 12, "feet"),
  31122. name: "Front (Flaccid)",
  31123. image: {
  31124. source: "./media/characters/nevan/front-flaccid.svg",
  31125. extra: 704 / 704,
  31126. bottom: 28 / 732
  31127. }
  31128. },
  31129. frontErect: {
  31130. height: math.unit(6 + 3 / 12, "feet"),
  31131. name: "Front (Erect)",
  31132. image: {
  31133. source: "./media/characters/nevan/front-erect.svg",
  31134. extra: 704 / 704,
  31135. bottom: 28 / 732
  31136. }
  31137. },
  31138. backFlaccid: {
  31139. height: math.unit(6 + 3 / 12, "feet"),
  31140. name: "Back (Flaccid)",
  31141. image: {
  31142. source: "./media/characters/nevan/back-flaccid.svg",
  31143. extra: 714 / 714,
  31144. bottom: 21 / 735
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(6 + 3 / 12, "feet"),
  31152. default: true
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31158. {
  31159. front: {
  31160. height: math.unit(4, "feet"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/arhan/front.svg",
  31164. extra: 3368 / 3133,
  31165. bottom: 0 / 3368
  31166. }
  31167. },
  31168. side: {
  31169. height: math.unit(4, "feet"),
  31170. name: "Side",
  31171. image: {
  31172. source: "./media/characters/arhan/side.svg",
  31173. extra: 3347 / 3105,
  31174. bottom: 0 / 3347
  31175. }
  31176. },
  31177. tongue: {
  31178. height: math.unit(1.42, "feet"),
  31179. name: "Tongue",
  31180. image: {
  31181. source: "./media/characters/arhan/tongue.svg"
  31182. }
  31183. },
  31184. head: {
  31185. height: math.unit(0.85, "feet"),
  31186. name: "Head",
  31187. image: {
  31188. source: "./media/characters/arhan/head.svg"
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(4, "feet"),
  31196. default: true
  31197. },
  31198. ]
  31199. ))
  31200. characterMakers.push(() => makeCharacter(
  31201. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31202. {
  31203. front: {
  31204. height: math.unit(5 + 7.5 / 12, "feet"),
  31205. weight: math.unit(120, "lb"),
  31206. name: "Front",
  31207. image: {
  31208. source: "./media/characters/digi-duncan/front.svg",
  31209. extra: 330 / 326,
  31210. bottom: 16 / 346
  31211. }
  31212. },
  31213. side: {
  31214. height: math.unit(5 + 7.5 / 12, "feet"),
  31215. weight: math.unit(120, "lb"),
  31216. name: "Side",
  31217. image: {
  31218. source: "./media/characters/digi-duncan/side.svg",
  31219. extra: 341 / 337,
  31220. bottom: 1 / 342
  31221. }
  31222. },
  31223. back: {
  31224. height: math.unit(5 + 7.5 / 12, "feet"),
  31225. weight: math.unit(120, "lb"),
  31226. name: "Back",
  31227. image: {
  31228. source: "./media/characters/digi-duncan/back.svg",
  31229. extra: 330 / 326,
  31230. bottom: 12 / 342
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Speck",
  31237. height: math.unit(0.25, "mm")
  31238. },
  31239. {
  31240. name: "Micro",
  31241. height: math.unit(5, "mm")
  31242. },
  31243. {
  31244. name: "Tiny",
  31245. height: math.unit(0.5, "inches"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Human",
  31250. height: math.unit(5 + 7.5 / 12, "feet")
  31251. },
  31252. {
  31253. name: "Minigiant",
  31254. height: math.unit(8 + 5.25, "feet")
  31255. },
  31256. {
  31257. name: "Giant",
  31258. height: math.unit(2000, "feet")
  31259. },
  31260. {
  31261. name: "Mega",
  31262. height: math.unit(371.1, "miles")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(2, "meters"),
  31271. weight: math.unit(350, "kg"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31275. extra: 898 / 838,
  31276. bottom: 9 / 907
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Micro",
  31283. height: math.unit(8, "meters")
  31284. },
  31285. {
  31286. name: "Normal",
  31287. height: math.unit(50, "meters"),
  31288. default: true
  31289. },
  31290. {
  31291. name: "Macro",
  31292. height: math.unit(500, "meters")
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31298. {
  31299. front: {
  31300. height: math.unit(6 + 6 / 12, "feet"),
  31301. name: "Front",
  31302. image: {
  31303. source: "./media/characters/khardesh/front.svg",
  31304. extra: 1788/1596,
  31305. bottom: 66/1854
  31306. }
  31307. },
  31308. back: {
  31309. height: math.unit(6 + 6 / 12, "feet"),
  31310. name: "Back",
  31311. image: {
  31312. source: "./media/characters/khardesh/back.svg",
  31313. extra: 1781/1584,
  31314. bottom: 68/1849
  31315. }
  31316. },
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(6 + 6 / 12, "feet"),
  31322. default: true
  31323. },
  31324. {
  31325. name: "Normal+",
  31326. height: math.unit(4, "meters")
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(50, "meters")
  31331. },
  31332. {
  31333. name: "Macro+",
  31334. height: math.unit(100, "meters")
  31335. },
  31336. {
  31337. name: "Megamacro",
  31338. height: math.unit(20, "km")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(6, "feet"),
  31347. weight: math.unit(150, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/kosho/front.svg",
  31351. extra: 1847 / 1847,
  31352. bottom: 86 / 1933
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Second-stage micro",
  31359. height: math.unit(0.5, "inches")
  31360. },
  31361. {
  31362. name: "First-stage micro",
  31363. height: math.unit(6, "inches")
  31364. },
  31365. {
  31366. name: "Normal",
  31367. height: math.unit(6, "feet"),
  31368. default: true
  31369. },
  31370. {
  31371. name: "First-stage macro",
  31372. height: math.unit(72, "feet")
  31373. },
  31374. {
  31375. name: "Second-stage macro",
  31376. height: math.unit(864, "feet")
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31382. {
  31383. normal: {
  31384. height: math.unit(4 + 6 / 12, "feet"),
  31385. name: "Normal",
  31386. image: {
  31387. source: "./media/characters/hydra/normal.svg",
  31388. extra: 2833 / 2634,
  31389. bottom: 68 / 2901
  31390. }
  31391. },
  31392. smol: {
  31393. height: math.unit(0.705, "inches"),
  31394. name: "Smol",
  31395. image: {
  31396. source: "./media/characters/hydra/smol.svg",
  31397. extra: 2715 / 2540,
  31398. bottom: 0 / 2715
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(4 + 6 / 12, "feet"),
  31406. default: true
  31407. }
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(0.6, "cm"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/daz/front.svg",
  31418. extra: 1682 / 1164,
  31419. bottom: 42 / 1724
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Normal",
  31426. height: math.unit(0.6, "cm"),
  31427. default: true
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(6, "feet"),
  31436. weight: math.unit(235, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/theo-pangolin/front.svg",
  31440. extra: 1996 / 1969,
  31441. bottom: 115 / 2111
  31442. }
  31443. },
  31444. back: {
  31445. height: math.unit(6, "feet"),
  31446. weight: math.unit(235, "lb"),
  31447. name: "Back",
  31448. image: {
  31449. source: "./media/characters/theo-pangolin/back.svg",
  31450. extra: 1979 / 1979,
  31451. bottom: 40 / 2019
  31452. }
  31453. },
  31454. feral: {
  31455. height: math.unit(2, "feet"),
  31456. weight: math.unit(30, "lb"),
  31457. name: "Feral",
  31458. image: {
  31459. source: "./media/characters/theo-pangolin/feral.svg",
  31460. extra: 803 / 791,
  31461. bottom: 181 / 984
  31462. }
  31463. },
  31464. footFive: {
  31465. height: math.unit(1.43, "feet"),
  31466. name: "Foot (Five Toes)",
  31467. image: {
  31468. source: "./media/characters/theo-pangolin/foot-five.svg"
  31469. }
  31470. },
  31471. footFour: {
  31472. height: math.unit(1.43, "feet"),
  31473. name: "Foot (Four Toes)",
  31474. image: {
  31475. source: "./media/characters/theo-pangolin/foot-four.svg"
  31476. }
  31477. },
  31478. handFour: {
  31479. height: math.unit(0.81, "feet"),
  31480. name: "Hand (Four Fingers)",
  31481. image: {
  31482. source: "./media/characters/theo-pangolin/hand-four.svg"
  31483. }
  31484. },
  31485. handThree: {
  31486. height: math.unit(0.81, "feet"),
  31487. name: "Hand (Three Fingers)",
  31488. image: {
  31489. source: "./media/characters/theo-pangolin/hand-three.svg"
  31490. }
  31491. },
  31492. headFront: {
  31493. height: math.unit(1.37, "feet"),
  31494. name: "Head (Front)",
  31495. image: {
  31496. source: "./media/characters/theo-pangolin/head-front.svg"
  31497. }
  31498. },
  31499. headSide: {
  31500. height: math.unit(1.43, "feet"),
  31501. name: "Head (Side)",
  31502. image: {
  31503. source: "./media/characters/theo-pangolin/head-side.svg"
  31504. }
  31505. },
  31506. tongue: {
  31507. height: math.unit(2.29, "feet"),
  31508. name: "Tongue",
  31509. image: {
  31510. source: "./media/characters/theo-pangolin/tongue.svg"
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(6, "feet")
  31518. },
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(400, "feet"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6, "inches"),
  31531. weight: math.unit(0.036, "kg"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/renée/front.svg",
  31535. extra: 900 / 886,
  31536. bottom: 8 / 908
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Nano",
  31543. height: math.unit(1, "nm")
  31544. },
  31545. {
  31546. name: "Micro",
  31547. height: math.unit(1, "mm")
  31548. },
  31549. {
  31550. name: "Normal",
  31551. height: math.unit(6, "inches")
  31552. },
  31553. {
  31554. name: "Macro",
  31555. height: math.unit(2000, "feet"),
  31556. default: true
  31557. },
  31558. {
  31559. name: "Megamacro",
  31560. height: math.unit(2, "km")
  31561. },
  31562. {
  31563. name: "Gigamacro",
  31564. height: math.unit(2000, "km")
  31565. },
  31566. {
  31567. name: "Teramacro",
  31568. height: math.unit(250000, "km")
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(4, "meters"),
  31577. weight: math.unit(150, "kg"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/caledvwlch/front.svg",
  31581. extra: 1760 / 1551,
  31582. bottom: 28 / 1788
  31583. }
  31584. },
  31585. side: {
  31586. height: math.unit(4, "meters"),
  31587. weight: math.unit(150, "kg"),
  31588. name: "Side",
  31589. image: {
  31590. source: "./media/characters/caledvwlch/side.svg",
  31591. extra: 1605 / 1536,
  31592. bottom: 31 / 1636
  31593. }
  31594. },
  31595. back: {
  31596. height: math.unit(4, "meters"),
  31597. weight: math.unit(150, "kg"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/caledvwlch/back.svg",
  31601. extra: 1635 / 1565,
  31602. bottom: 27 / 1662
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "\"Incognito\"",
  31609. height: math.unit(4, "meters")
  31610. },
  31611. {
  31612. name: "Small rampage",
  31613. height: math.unit(600, "meters")
  31614. },
  31615. {
  31616. name: "Mega",
  31617. height: math.unit(30, "km")
  31618. },
  31619. {
  31620. name: "Home-size",
  31621. height: math.unit(50, "km"),
  31622. default: true
  31623. },
  31624. {
  31625. name: "Giga",
  31626. height: math.unit(300, "km")
  31627. },
  31628. {
  31629. name: "Lounging",
  31630. height: math.unit(11000, "km")
  31631. },
  31632. {
  31633. name: "Planet snacking",
  31634. height: math.unit(2000000, "km")
  31635. },
  31636. ]
  31637. ))
  31638. characterMakers.push(() => makeCharacter(
  31639. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31640. {
  31641. front: {
  31642. height: math.unit(6, "feet"),
  31643. weight: math.unit(215, "lb"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/sapphire-svell/front.svg",
  31647. extra: 495 / 455,
  31648. bottom: 20 / 515
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(6, "feet"),
  31653. weight: math.unit(216, "lb"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/sapphire-svell/back.svg",
  31657. extra: 497 / 477,
  31658. bottom: 7 / 504
  31659. }
  31660. },
  31661. maw: {
  31662. height: math.unit(1.57, "feet"),
  31663. name: "Maw",
  31664. image: {
  31665. source: "./media/characters/sapphire-svell/maw.svg"
  31666. }
  31667. },
  31668. foot: {
  31669. height: math.unit(1.07, "feet"),
  31670. name: "Foot",
  31671. image: {
  31672. source: "./media/characters/sapphire-svell/foot.svg"
  31673. }
  31674. },
  31675. toering: {
  31676. height: math.unit(1.7, "inch"),
  31677. name: "Toering",
  31678. image: {
  31679. source: "./media/characters/sapphire-svell/toering.svg"
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(300, "feet"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Augmented",
  31691. height: math.unit(1250, "feet")
  31692. },
  31693. {
  31694. name: "Unleashed",
  31695. height: math.unit(3000, "feet")
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31701. {
  31702. side: {
  31703. height: math.unit(2 + 3 / 12, "feet"),
  31704. weight: math.unit(110, "lb"),
  31705. name: "Side",
  31706. image: {
  31707. source: "./media/characters/glitch-flux/side.svg",
  31708. extra: 997 / 805,
  31709. bottom: 20 / 1017
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(2 + 3 / 12, "feet"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(4, "meters"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/mid/front.svg",
  31729. extra: 507 / 476,
  31730. bottom: 17 / 524
  31731. }
  31732. },
  31733. back: {
  31734. height: math.unit(4, "meters"),
  31735. name: "Back",
  31736. image: {
  31737. source: "./media/characters/mid/back.svg",
  31738. extra: 519 / 487,
  31739. bottom: 7 / 526
  31740. }
  31741. },
  31742. stuck: {
  31743. height: math.unit(2.2, "meters"),
  31744. name: "Stuck",
  31745. image: {
  31746. source: "./media/characters/mid/stuck.svg",
  31747. extra: 1951 / 1869,
  31748. bottom: 88 / 2039
  31749. }
  31750. }
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(4, "meters"),
  31756. default: true
  31757. },
  31758. {
  31759. name: "Big",
  31760. height: math.unit(10, "meters")
  31761. },
  31762. {
  31763. name: "Macro",
  31764. height: math.unit(800, "meters")
  31765. },
  31766. {
  31767. name: "Megamacro",
  31768. height: math.unit(100, "km")
  31769. },
  31770. {
  31771. name: "Overgrown",
  31772. height: math.unit(1, "parsec")
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(2.5, "meters"),
  31781. weight: math.unit(225, "kg"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/iris/front.svg",
  31785. extra: 3348 / 3251,
  31786. bottom: 205 / 3553
  31787. }
  31788. },
  31789. maw: {
  31790. height: math.unit(0.56, "meter"),
  31791. name: "Maw",
  31792. image: {
  31793. source: "./media/characters/iris/maw.svg"
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Mewter cat",
  31800. height: math.unit(1.2, "meters")
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(2.5, "meters"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Minimacro",
  31809. height: math.unit(18, "feet")
  31810. },
  31811. {
  31812. name: "Macro",
  31813. height: math.unit(140, "feet")
  31814. },
  31815. {
  31816. name: "Macro+",
  31817. height: math.unit(180, "meters")
  31818. },
  31819. {
  31820. name: "Megamacro",
  31821. height: math.unit(2746, "meters")
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31827. {
  31828. front: {
  31829. height: math.unit(6, "feet"),
  31830. weight: math.unit(135, "lb"),
  31831. name: "Front",
  31832. image: {
  31833. source: "./media/characters/axel/front.svg",
  31834. extra: 908 / 908,
  31835. bottom: 58 / 966
  31836. }
  31837. },
  31838. side: {
  31839. height: math.unit(6, "feet"),
  31840. weight: math.unit(135, "lb"),
  31841. name: "Side",
  31842. image: {
  31843. source: "./media/characters/axel/side.svg",
  31844. extra: 958 / 958,
  31845. bottom: 11 / 969
  31846. }
  31847. },
  31848. back: {
  31849. height: math.unit(6, "feet"),
  31850. weight: math.unit(135, "lb"),
  31851. name: "Back",
  31852. image: {
  31853. source: "./media/characters/axel/back.svg",
  31854. extra: 887 / 887,
  31855. bottom: 34 / 921
  31856. }
  31857. },
  31858. head: {
  31859. height: math.unit(1.07, "feet"),
  31860. name: "Head",
  31861. image: {
  31862. source: "./media/characters/axel/head.svg"
  31863. }
  31864. },
  31865. beak: {
  31866. height: math.unit(1.4, "feet"),
  31867. name: "Beak",
  31868. image: {
  31869. source: "./media/characters/axel/beak.svg"
  31870. }
  31871. },
  31872. beakSide: {
  31873. height: math.unit(1.4, "feet"),
  31874. name: "Beak Side",
  31875. image: {
  31876. source: "./media/characters/axel/beak-side.svg"
  31877. }
  31878. },
  31879. sheath: {
  31880. height: math.unit(0.5, "feet"),
  31881. name: "Sheath",
  31882. image: {
  31883. source: "./media/characters/axel/sheath.svg"
  31884. }
  31885. },
  31886. dick: {
  31887. height: math.unit(0.98, "feet"),
  31888. name: "Dick",
  31889. image: {
  31890. source: "./media/characters/axel/dick.svg"
  31891. }
  31892. },
  31893. },
  31894. [
  31895. {
  31896. name: "Macro",
  31897. height: math.unit(68, "meters"),
  31898. default: true
  31899. },
  31900. ]
  31901. ))
  31902. characterMakers.push(() => makeCharacter(
  31903. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31904. {
  31905. front: {
  31906. height: math.unit(3.5, "meters"),
  31907. weight: math.unit(1200, "kg"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/joanna/front.svg",
  31911. extra: 1596 / 1488,
  31912. bottom: 29 / 1625
  31913. }
  31914. },
  31915. back: {
  31916. height: math.unit(3.5, "meters"),
  31917. weight: math.unit(1200, "kg"),
  31918. name: "Back",
  31919. image: {
  31920. source: "./media/characters/joanna/back.svg",
  31921. extra: 1594 / 1495,
  31922. bottom: 26 / 1620
  31923. }
  31924. },
  31925. frontShorts: {
  31926. height: math.unit(3.5, "meters"),
  31927. weight: math.unit(1200, "kg"),
  31928. name: "Front (Shorts)",
  31929. image: {
  31930. source: "./media/characters/joanna/front-shorts.svg",
  31931. extra: 1596 / 1488,
  31932. bottom: 29 / 1625
  31933. }
  31934. },
  31935. frontBiker: {
  31936. height: math.unit(3.5, "meters"),
  31937. weight: math.unit(1200, "kg"),
  31938. name: "Front (Biker)",
  31939. image: {
  31940. source: "./media/characters/joanna/front-biker.svg",
  31941. extra: 1596 / 1488,
  31942. bottom: 29 / 1625
  31943. }
  31944. },
  31945. backBiker: {
  31946. height: math.unit(3.5, "meters"),
  31947. weight: math.unit(1200, "kg"),
  31948. name: "Back (Biker)",
  31949. image: {
  31950. source: "./media/characters/joanna/back-biker.svg",
  31951. extra: 1594 / 1495,
  31952. bottom: 88 / 1682
  31953. }
  31954. },
  31955. bikeLeft: {
  31956. height: math.unit(2.4, "meters"),
  31957. weight: math.unit(1600, "kg"),
  31958. name: "Bike (Left)",
  31959. image: {
  31960. source: "./media/characters/joanna/bike-left.svg",
  31961. extra: 720 / 720,
  31962. bottom: 8 / 728
  31963. }
  31964. },
  31965. bikeRight: {
  31966. height: math.unit(2.4, "meters"),
  31967. weight: math.unit(1600, "kg"),
  31968. name: "Bike (Right)",
  31969. image: {
  31970. source: "./media/characters/joanna/bike-right.svg",
  31971. extra: 720 / 720,
  31972. bottom: 8 / 728
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Incognito",
  31979. height: math.unit(3.5, "meters")
  31980. },
  31981. {
  31982. name: "Casual Big",
  31983. height: math.unit(200, "meters")
  31984. },
  31985. {
  31986. name: "Macro",
  31987. height: math.unit(600, "meters")
  31988. },
  31989. {
  31990. name: "Original",
  31991. height: math.unit(20, "km"),
  31992. default: true
  31993. },
  31994. {
  31995. name: "Giga",
  31996. height: math.unit(400, "km")
  31997. },
  31998. {
  31999. name: "Lounging",
  32000. height: math.unit(1500, "km")
  32001. },
  32002. {
  32003. name: "Planetary",
  32004. height: math.unit(200000, "km")
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32010. {
  32011. front: {
  32012. height: math.unit(6, "feet"),
  32013. weight: math.unit(150, "lb"),
  32014. name: "Front",
  32015. image: {
  32016. source: "./media/characters/hugo-sigil/front.svg",
  32017. extra: 522 / 500,
  32018. bottom: 2 / 524
  32019. }
  32020. },
  32021. back: {
  32022. height: math.unit(6, "feet"),
  32023. weight: math.unit(150, "lb"),
  32024. name: "Back",
  32025. image: {
  32026. source: "./media/characters/hugo-sigil/back.svg",
  32027. extra: 519 / 495,
  32028. bottom: 5 / 524
  32029. }
  32030. },
  32031. maw: {
  32032. height: math.unit(1.4, "feet"),
  32033. weight: math.unit(150, "lb"),
  32034. name: "Maw",
  32035. image: {
  32036. source: "./media/characters/hugo-sigil/maw.svg"
  32037. }
  32038. },
  32039. feet: {
  32040. height: math.unit(1.56, "feet"),
  32041. weight: math.unit(150, "lb"),
  32042. name: "Feet",
  32043. image: {
  32044. source: "./media/characters/hugo-sigil/feet.svg",
  32045. extra: 177 / 177,
  32046. bottom: 12 / 189
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Normal",
  32053. height: math.unit(6, "feet")
  32054. },
  32055. {
  32056. name: "Macro",
  32057. height: math.unit(200, "feet"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(6, "feet"),
  32067. weight: math.unit(150, "lb"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/peri/front.svg",
  32071. extra: 2354 / 2233,
  32072. bottom: 49 / 2403
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Really Small",
  32079. height: math.unit(1, "nm")
  32080. },
  32081. {
  32082. name: "Micro",
  32083. height: math.unit(4, "inches")
  32084. },
  32085. {
  32086. name: "Normal",
  32087. height: math.unit(7, "inches"),
  32088. default: true
  32089. },
  32090. {
  32091. name: "Macro",
  32092. height: math.unit(400, "feet")
  32093. },
  32094. {
  32095. name: "Megamacro",
  32096. height: math.unit(100, "miles")
  32097. },
  32098. ]
  32099. ))
  32100. characterMakers.push(() => makeCharacter(
  32101. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32102. {
  32103. frontSlim: {
  32104. height: math.unit(7, "feet"),
  32105. name: "Front (Slim)",
  32106. image: {
  32107. source: "./media/characters/issilora/front-slim.svg",
  32108. extra: 529 / 449,
  32109. bottom: 53 / 582
  32110. }
  32111. },
  32112. sideSlim: {
  32113. height: math.unit(7, "feet"),
  32114. name: "Side (Slim)",
  32115. image: {
  32116. source: "./media/characters/issilora/side-slim.svg",
  32117. extra: 570 / 480,
  32118. bottom: 30 / 600
  32119. }
  32120. },
  32121. backSlim: {
  32122. height: math.unit(7, "feet"),
  32123. name: "Back (Slim)",
  32124. image: {
  32125. source: "./media/characters/issilora/back-slim.svg",
  32126. extra: 537 / 455,
  32127. bottom: 46 / 583
  32128. }
  32129. },
  32130. frontBuff: {
  32131. height: math.unit(7, "feet"),
  32132. name: "Front (Buff)",
  32133. image: {
  32134. source: "./media/characters/issilora/front-buff.svg",
  32135. extra: 2310 / 2035,
  32136. bottom: 335 / 2645
  32137. }
  32138. },
  32139. head: {
  32140. height: math.unit(1.94, "feet"),
  32141. name: "Head",
  32142. image: {
  32143. source: "./media/characters/issilora/head.svg"
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Minimum",
  32150. height: math.unit(7, "feet")
  32151. },
  32152. {
  32153. name: "Comfortable",
  32154. height: math.unit(17, "feet")
  32155. },
  32156. {
  32157. name: "Fun Size",
  32158. height: math.unit(47, "feet")
  32159. },
  32160. {
  32161. name: "Natural Macro",
  32162. height: math.unit(137, "feet"),
  32163. default: true
  32164. },
  32165. {
  32166. name: "Maximum Kaiju",
  32167. height: math.unit(397, "feet")
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32173. {
  32174. front: {
  32175. height: math.unit(50 + 9/12, "feet"),
  32176. weight: math.unit(32.8, "tons"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/irb'iiritaahn/front.svg",
  32180. extra: 1878/1826,
  32181. bottom: 326/2204
  32182. }
  32183. },
  32184. back: {
  32185. height: math.unit(50 + 9/12, "feet"),
  32186. weight: math.unit(32.8, "tons"),
  32187. name: "Back",
  32188. image: {
  32189. source: "./media/characters/irb'iiritaahn/back.svg",
  32190. extra: 2052/2018,
  32191. bottom: 152/2204
  32192. }
  32193. },
  32194. head: {
  32195. height: math.unit(12.86, "feet"),
  32196. name: "Head",
  32197. image: {
  32198. source: "./media/characters/irb'iiritaahn/head.svg"
  32199. }
  32200. },
  32201. maw: {
  32202. height: math.unit(9.66, "feet"),
  32203. name: "Maw",
  32204. image: {
  32205. source: "./media/characters/irb'iiritaahn/maw.svg"
  32206. }
  32207. },
  32208. frontDick: {
  32209. height: math.unit(8.78461, "feet"),
  32210. name: "Front Dick",
  32211. image: {
  32212. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32213. }
  32214. },
  32215. rearDick: {
  32216. height: math.unit(8.78461, "feet"),
  32217. name: "Rear Dick",
  32218. image: {
  32219. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32220. }
  32221. },
  32222. rearDickUnfolded: {
  32223. height: math.unit(8.78, "feet"),
  32224. name: "Rear Dick (Unfolded)",
  32225. image: {
  32226. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32227. }
  32228. },
  32229. wings: {
  32230. height: math.unit(43, "feet"),
  32231. name: "Wings",
  32232. image: {
  32233. source: "./media/characters/irb'iiritaahn/wings.svg"
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Macro",
  32240. height: math.unit(50 + 9/12, "feet"),
  32241. default: true
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32247. {
  32248. front: {
  32249. height: math.unit(205, "cm"),
  32250. weight: math.unit(102, "kg"),
  32251. name: "Front",
  32252. image: {
  32253. source: "./media/characters/irbisgreif/front.svg",
  32254. extra: 785/706,
  32255. bottom: 13/798
  32256. }
  32257. },
  32258. back: {
  32259. height: math.unit(205, "cm"),
  32260. weight: math.unit(102, "kg"),
  32261. name: "Back",
  32262. image: {
  32263. source: "./media/characters/irbisgreif/back.svg",
  32264. extra: 713/701,
  32265. bottom: 26/739
  32266. }
  32267. },
  32268. frontDressed: {
  32269. height: math.unit(216, "cm"),
  32270. weight: math.unit(102, "kg"),
  32271. name: "Front-dressed",
  32272. image: {
  32273. source: "./media/characters/irbisgreif/front-dressed.svg",
  32274. extra: 902/776,
  32275. bottom: 14/916
  32276. }
  32277. },
  32278. sideDressed: {
  32279. height: math.unit(195, "cm"),
  32280. weight: math.unit(102, "kg"),
  32281. name: "Side-dressed",
  32282. image: {
  32283. source: "./media/characters/irbisgreif/side-dressed.svg",
  32284. extra: 788/688,
  32285. bottom: 21/809
  32286. }
  32287. },
  32288. backDressed: {
  32289. height: math.unit(216, "cm"),
  32290. weight: math.unit(102, "kg"),
  32291. name: "Back-dressed",
  32292. image: {
  32293. source: "./media/characters/irbisgreif/back-dressed.svg",
  32294. extra: 901/783,
  32295. bottom: 10/911
  32296. }
  32297. },
  32298. dick: {
  32299. height: math.unit(0.49, "feet"),
  32300. name: "Dick",
  32301. image: {
  32302. source: "./media/characters/irbisgreif/dick.svg"
  32303. }
  32304. },
  32305. wingTop: {
  32306. height: math.unit(1.93 , "feet"),
  32307. name: "Wing-top",
  32308. image: {
  32309. source: "./media/characters/irbisgreif/wing-top.svg"
  32310. }
  32311. },
  32312. wingBottom: {
  32313. height: math.unit(1.93 , "feet"),
  32314. name: "Wing-bottom",
  32315. image: {
  32316. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(216, "cm"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(150, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/pride/front.svg",
  32337. extra: 1299/1230,
  32338. bottom: 18/1317
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(7, "feet")
  32346. },
  32347. {
  32348. name: "Mini-macro",
  32349. height: math.unit(11, "feet")
  32350. },
  32351. {
  32352. name: "Macro",
  32353. height: math.unit(15, "meters"),
  32354. default: true
  32355. },
  32356. {
  32357. name: "Macro+",
  32358. height: math.unit(40, "meters")
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32364. {
  32365. front: {
  32366. height: math.unit(4 + 2 / 12, "feet"),
  32367. weight: math.unit(95, "lb"),
  32368. name: "Front",
  32369. image: {
  32370. source: "./media/characters/vaelophis-nyx/front.svg",
  32371. extra: 2532/2330,
  32372. bottom: 0/2532
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(4 + 2 / 12, "feet"),
  32377. weight: math.unit(95, "lb"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/vaelophis-nyx/back.svg",
  32381. extra: 2484/2361,
  32382. bottom: 0/2484
  32383. }
  32384. },
  32385. feralSide: {
  32386. height: math.unit(2 + 1/12, "feet"),
  32387. weight: math.unit(20, "lb"),
  32388. name: "Feral (Side)",
  32389. image: {
  32390. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32391. extra: 1721/1581,
  32392. bottom: 70/1791
  32393. }
  32394. },
  32395. feralLazing: {
  32396. height: math.unit(1.08, "feet"),
  32397. weight: math.unit(20, "lb"),
  32398. name: "Feral (Lazing)",
  32399. image: {
  32400. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32401. extra: 822/822,
  32402. bottom: 248/1070
  32403. }
  32404. },
  32405. ear: {
  32406. height: math.unit(0.416, "feet"),
  32407. name: "Ear",
  32408. image: {
  32409. source: "./media/characters/vaelophis-nyx/ear.svg"
  32410. }
  32411. },
  32412. eye: {
  32413. height: math.unit(0.0748, "feet"),
  32414. name: "Eye",
  32415. image: {
  32416. source: "./media/characters/vaelophis-nyx/eye.svg"
  32417. }
  32418. },
  32419. mouth: {
  32420. height: math.unit(0.378, "feet"),
  32421. name: "Mouth",
  32422. image: {
  32423. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32424. }
  32425. },
  32426. spade: {
  32427. height: math.unit(0.55, "feet"),
  32428. name: "Spade",
  32429. image: {
  32430. source: "./media/characters/vaelophis-nyx/spade.svg"
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(4 + 2/12, "feet"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32444. {
  32445. front: {
  32446. height: math.unit(7, "feet"),
  32447. weight: math.unit(231, "lb"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/flux/front.svg",
  32451. extra: 919/871,
  32452. bottom: 0/919
  32453. }
  32454. },
  32455. back: {
  32456. height: math.unit(7, "feet"),
  32457. weight: math.unit(231, "lb"),
  32458. name: "Back",
  32459. image: {
  32460. source: "./media/characters/flux/back.svg",
  32461. extra: 1040/992,
  32462. bottom: 0/1040
  32463. }
  32464. },
  32465. frontDressed: {
  32466. height: math.unit(7, "feet"),
  32467. weight: math.unit(231, "lb"),
  32468. name: "Front (Dressed)",
  32469. image: {
  32470. source: "./media/characters/flux/front-dressed.svg",
  32471. extra: 919/871,
  32472. bottom: 0/919
  32473. }
  32474. },
  32475. feralSide: {
  32476. height: math.unit(5, "feet"),
  32477. weight: math.unit(150, "lb"),
  32478. name: "Feral (Side)",
  32479. image: {
  32480. source: "./media/characters/flux/feral-side.svg",
  32481. extra: 598/528,
  32482. bottom: 28/626
  32483. }
  32484. },
  32485. head: {
  32486. height: math.unit(1.585, "feet"),
  32487. name: "Head",
  32488. image: {
  32489. source: "./media/characters/flux/head.svg"
  32490. }
  32491. },
  32492. headSide: {
  32493. height: math.unit(1.74, "feet"),
  32494. name: "Head (Side)",
  32495. image: {
  32496. source: "./media/characters/flux/head-side.svg"
  32497. }
  32498. },
  32499. headSideFire: {
  32500. height: math.unit(1.76, "feet"),
  32501. name: "Head (Side, Fire)",
  32502. image: {
  32503. source: "./media/characters/flux/head-side-fire.svg"
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(7, "feet"),
  32511. default: true
  32512. },
  32513. ]
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32517. {
  32518. front: {
  32519. height: math.unit(9, "feet"),
  32520. weight: math.unit(1012, "lb"),
  32521. name: "Front",
  32522. image: {
  32523. source: "./media/characters/ulfra-lupae/front.svg",
  32524. extra: 1083/1011,
  32525. bottom: 67/1150
  32526. }
  32527. },
  32528. },
  32529. [
  32530. {
  32531. name: "Micro",
  32532. height: math.unit(6, "inches")
  32533. },
  32534. {
  32535. name: "Socializing",
  32536. height: math.unit(6 + 5/12, "feet")
  32537. },
  32538. {
  32539. name: "Normal",
  32540. height: math.unit(9, "feet"),
  32541. default: true
  32542. },
  32543. {
  32544. name: "Macro",
  32545. height: math.unit(150, "feet")
  32546. },
  32547. ]
  32548. ))
  32549. characterMakers.push(() => makeCharacter(
  32550. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32551. {
  32552. front: {
  32553. height: math.unit(5 + 2/12, "feet"),
  32554. weight: math.unit(120, "lb"),
  32555. name: "Front",
  32556. image: {
  32557. source: "./media/characters/timber/front.svg",
  32558. extra: 2814/2705,
  32559. bottom: 181/2995
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Normal",
  32566. height: math.unit(5 + 2/12, "feet"),
  32567. default: true
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32573. {
  32574. front: {
  32575. height: math.unit(9, "feet"),
  32576. name: "Front",
  32577. image: {
  32578. source: "./media/characters/nicki/front.svg",
  32579. extra: 1240/990,
  32580. bottom: 45/1285
  32581. },
  32582. form: "anthro",
  32583. default: true
  32584. },
  32585. side: {
  32586. height: math.unit(9, "feet"),
  32587. name: "Side",
  32588. image: {
  32589. source: "./media/characters/nicki/side.svg",
  32590. extra: 1047/973,
  32591. bottom: 61/1108
  32592. },
  32593. form: "anthro"
  32594. },
  32595. back: {
  32596. height: math.unit(9, "feet"),
  32597. name: "Back",
  32598. image: {
  32599. source: "./media/characters/nicki/back.svg",
  32600. extra: 1006/965,
  32601. bottom: 39/1045
  32602. },
  32603. form: "anthro"
  32604. },
  32605. taur: {
  32606. height: math.unit(15, "feet"),
  32607. name: "Taur",
  32608. image: {
  32609. source: "./media/characters/nicki/taur.svg",
  32610. extra: 1592/1347,
  32611. bottom: 0/1592
  32612. },
  32613. form: "taur",
  32614. default: true
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Normal",
  32620. height: math.unit(9, "feet"),
  32621. form: "anthro",
  32622. default: true
  32623. },
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(15, "feet"),
  32627. form: "taur",
  32628. default: true
  32629. }
  32630. ],
  32631. {
  32632. "anthro": {
  32633. name: "Anthro",
  32634. default: true
  32635. },
  32636. "taur": {
  32637. name: "Taur"
  32638. }
  32639. }
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32643. {
  32644. front: {
  32645. height: math.unit(7 + 10/12, "feet"),
  32646. weight: math.unit(3.5, "tons"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/lee/front.svg",
  32650. extra: 1773/1615,
  32651. bottom: 86/1859
  32652. }
  32653. },
  32654. hand: {
  32655. height: math.unit(1.78, "feet"),
  32656. name: "Hand",
  32657. image: {
  32658. source: "./media/characters/lee/hand.svg"
  32659. }
  32660. },
  32661. maw: {
  32662. height: math.unit(1.18, "feet"),
  32663. name: "Maw",
  32664. image: {
  32665. source: "./media/characters/lee/maw.svg"
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Normal",
  32672. height: math.unit(7 + 10/12, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32679. {
  32680. front: {
  32681. height: math.unit(9, "feet"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/guti/front.svg",
  32685. extra: 4551/4355,
  32686. bottom: 123/4674
  32687. }
  32688. },
  32689. tongue: {
  32690. height: math.unit(1, "feet"),
  32691. name: "Tongue",
  32692. image: {
  32693. source: "./media/characters/guti/tongue.svg"
  32694. }
  32695. },
  32696. paw: {
  32697. height: math.unit(1.18, "feet"),
  32698. name: "Paw",
  32699. image: {
  32700. source: "./media/characters/guti/paw.svg"
  32701. }
  32702. },
  32703. },
  32704. [
  32705. {
  32706. name: "Normal",
  32707. height: math.unit(9, "feet"),
  32708. default: true
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32714. {
  32715. side: {
  32716. height: math.unit(5, "meters"),
  32717. name: "Side",
  32718. image: {
  32719. source: "./media/characters/vesper/side.svg",
  32720. extra: 1605/1518,
  32721. bottom: 0/1605
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Small",
  32728. height: math.unit(5, "meters")
  32729. },
  32730. {
  32731. name: "Sage",
  32732. height: math.unit(100, "meters"),
  32733. default: true
  32734. },
  32735. {
  32736. name: "Fun Size",
  32737. height: math.unit(600, "meters")
  32738. },
  32739. {
  32740. name: "Goddess",
  32741. height: math.unit(20000, "km")
  32742. },
  32743. {
  32744. name: "Maximum",
  32745. height: math.unit(5, "galaxies")
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(6 + 3/12, "feet"),
  32754. weight: math.unit(190, "lb"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/gawain/front.svg",
  32758. extra: 2222/2139,
  32759. bottom: 90/2312
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(6 + 3/12, "feet"),
  32764. weight: math.unit(190, "lb"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/gawain/back.svg",
  32768. extra: 2199/2111,
  32769. bottom: 73/2272
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Normal",
  32776. height: math.unit(6 + 3/12, "feet"),
  32777. default: true
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32783. {
  32784. side: {
  32785. height: math.unit(3.5, "meters"),
  32786. weight: math.unit(16000, "lb"),
  32787. name: "Side",
  32788. image: {
  32789. source: "./media/characters/dascalti/side.svg",
  32790. extra: 392/273,
  32791. bottom: 47/439
  32792. }
  32793. },
  32794. breath: {
  32795. height: math.unit(7.4, "feet"),
  32796. name: "Breath",
  32797. image: {
  32798. source: "./media/characters/dascalti/breath.svg"
  32799. }
  32800. },
  32801. fed: {
  32802. height: math.unit(3.6, "meters"),
  32803. weight: math.unit(16000, "lb"),
  32804. name: "Fed",
  32805. image: {
  32806. source: "./media/characters/dascalti/fed.svg",
  32807. extra: 1419/820,
  32808. bottom: 95/1514
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(3.5, "meters"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(3 + 5/12, "feet"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/mauve/front.svg",
  32828. extra: 1126/1033,
  32829. bottom: 65/1191
  32830. }
  32831. },
  32832. side: {
  32833. height: math.unit(3 + 5/12, "feet"),
  32834. name: "Side",
  32835. image: {
  32836. source: "./media/characters/mauve/side.svg",
  32837. extra: 1089/1001,
  32838. bottom: 29/1118
  32839. }
  32840. },
  32841. back: {
  32842. height: math.unit(3 + 5/12, "feet"),
  32843. name: "Back",
  32844. image: {
  32845. source: "./media/characters/mauve/back.svg",
  32846. extra: 1173/1053,
  32847. bottom: 109/1282
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Normal",
  32854. height: math.unit(3 + 5/12, "feet"),
  32855. default: true
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32861. {
  32862. front: {
  32863. height: math.unit(6 + 3/12, "feet"),
  32864. weight: math.unit(430, "lb"),
  32865. name: "Front",
  32866. image: {
  32867. source: "./media/characters/carlos/front.svg",
  32868. extra: 1964/1913,
  32869. bottom: 70/2034
  32870. }
  32871. },
  32872. },
  32873. [
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(6 + 3/12, "feet"),
  32877. default: true
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32883. {
  32884. back: {
  32885. height: math.unit(5 + 10/12, "feet"),
  32886. weight: math.unit(200, "lb"),
  32887. name: "Back",
  32888. image: {
  32889. source: "./media/characters/jax/back.svg",
  32890. extra: 764/739,
  32891. bottom: 25/789
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(5 + 10/12, "feet"),
  32899. default: true
  32900. },
  32901. ]
  32902. ))
  32903. characterMakers.push(() => makeCharacter(
  32904. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32905. {
  32906. front: {
  32907. height: math.unit(8, "feet"),
  32908. weight: math.unit(250, "lb"),
  32909. name: "Front",
  32910. image: {
  32911. source: "./media/characters/eikthynir/front.svg",
  32912. extra: 1332/1166,
  32913. bottom: 82/1414
  32914. }
  32915. },
  32916. back: {
  32917. height: math.unit(8, "feet"),
  32918. weight: math.unit(250, "lb"),
  32919. name: "Back",
  32920. image: {
  32921. source: "./media/characters/eikthynir/back.svg",
  32922. extra: 1342/1190,
  32923. bottom: 19/1361
  32924. }
  32925. },
  32926. dick: {
  32927. height: math.unit(2.35, "feet"),
  32928. name: "Dick",
  32929. image: {
  32930. source: "./media/characters/eikthynir/dick.svg"
  32931. }
  32932. },
  32933. },
  32934. [
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(8, "feet"),
  32938. default: true
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32944. {
  32945. front: {
  32946. height: math.unit(99, "meters"),
  32947. weight: math.unit(13000, "tons"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/zlmos/front.svg",
  32951. extra: 2202/1992,
  32952. bottom: 315/2517
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Macro",
  32959. height: math.unit(99, "meters"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(6 + 5/12, "feet"),
  32969. name: "Front",
  32970. image: {
  32971. source: "./media/characters/purri/front.svg",
  32972. extra: 1698/1610,
  32973. bottom: 32/1730
  32974. }
  32975. },
  32976. frontAlt: {
  32977. height: math.unit(6 + 5/12, "feet"),
  32978. name: "Front (Alt)",
  32979. image: {
  32980. source: "./media/characters/purri/front-alt.svg",
  32981. extra: 450/420,
  32982. bottom: 26/476
  32983. }
  32984. },
  32985. boots: {
  32986. height: math.unit(5.5, "feet"),
  32987. name: "Boots",
  32988. image: {
  32989. source: "./media/characters/purri/boots.svg",
  32990. extra: 905/853,
  32991. bottom: 18/923
  32992. }
  32993. },
  32994. lying: {
  32995. height: math.unit(2, "feet"),
  32996. name: "Lying",
  32997. image: {
  32998. source: "./media/characters/purri/lying.svg",
  32999. extra: 940/843,
  33000. bottom: 146/1086
  33001. }
  33002. },
  33003. devious: {
  33004. height: math.unit(1.77, "feet"),
  33005. name: "Devious",
  33006. image: {
  33007. source: "./media/characters/purri/devious.svg",
  33008. extra: 1440/1155,
  33009. bottom: 147/1587
  33010. }
  33011. },
  33012. bean: {
  33013. height: math.unit(1.94, "feet"),
  33014. name: "Bean",
  33015. image: {
  33016. source: "./media/characters/purri/bean.svg"
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Micro",
  33023. height: math.unit(1, "mm")
  33024. },
  33025. {
  33026. name: "Normal",
  33027. height: math.unit(6 + 5/12, "feet"),
  33028. default: true
  33029. },
  33030. {
  33031. name: "Macro :3c",
  33032. height: math.unit(2, "miles")
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33038. {
  33039. front: {
  33040. height: math.unit(6 + 2/12, "feet"),
  33041. weight: math.unit(250, "lb"),
  33042. name: "Front",
  33043. image: {
  33044. source: "./media/characters/moonlight/front.svg",
  33045. extra: 1044/908,
  33046. bottom: 56/1100
  33047. }
  33048. },
  33049. feral: {
  33050. height: math.unit(3 + 1/12, "feet"),
  33051. weight: math.unit(50, "kg"),
  33052. name: "Feral",
  33053. image: {
  33054. source: "./media/characters/moonlight/feral.svg",
  33055. extra: 3705/2791,
  33056. bottom: 145/3850
  33057. }
  33058. },
  33059. paw: {
  33060. height: math.unit(1, "feet"),
  33061. name: "Paw",
  33062. image: {
  33063. source: "./media/characters/moonlight/paw.svg"
  33064. }
  33065. },
  33066. paws: {
  33067. height: math.unit(0.98, "feet"),
  33068. name: "Paws",
  33069. image: {
  33070. source: "./media/characters/moonlight/paws.svg",
  33071. extra: 939/939,
  33072. bottom: 50/989
  33073. }
  33074. },
  33075. mouth: {
  33076. height: math.unit(0.48, "feet"),
  33077. name: "Mouth",
  33078. image: {
  33079. source: "./media/characters/moonlight/mouth.svg"
  33080. }
  33081. },
  33082. dick: {
  33083. height: math.unit(1.46, "feet"),
  33084. name: "Dick",
  33085. image: {
  33086. source: "./media/characters/moonlight/dick.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(6 + 2/12, "feet"),
  33094. default: true
  33095. },
  33096. {
  33097. name: "Macro",
  33098. height: math.unit(300, "feet")
  33099. },
  33100. {
  33101. name: "Macro+",
  33102. height: math.unit(1, "mile")
  33103. },
  33104. {
  33105. name: "Mt. Moon",
  33106. height: math.unit(5, "miles")
  33107. },
  33108. {
  33109. name: "Megamacro",
  33110. height: math.unit(15, "miles")
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33116. {
  33117. back: {
  33118. height: math.unit(6, "feet"),
  33119. weight: math.unit(150, "lb"),
  33120. name: "Back",
  33121. image: {
  33122. source: "./media/characters/sylen/back.svg",
  33123. extra: 1335/1273,
  33124. bottom: 107/1442
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(5 + 5/12, "feet")
  33132. },
  33133. {
  33134. name: "Megamacro",
  33135. height: math.unit(3, "miles"),
  33136. default: true
  33137. },
  33138. ]
  33139. ))
  33140. characterMakers.push(() => makeCharacter(
  33141. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33142. {
  33143. front: {
  33144. height: math.unit(6, "feet"),
  33145. weight: math.unit(190, "lb"),
  33146. name: "Front",
  33147. image: {
  33148. source: "./media/characters/huttser/front.svg",
  33149. extra: 1152/1058,
  33150. bottom: 23/1175
  33151. }
  33152. },
  33153. side: {
  33154. height: math.unit(6, "feet"),
  33155. weight: math.unit(190, "lb"),
  33156. name: "Side",
  33157. image: {
  33158. source: "./media/characters/huttser/side.svg",
  33159. extra: 1174/1065,
  33160. bottom: 18/1192
  33161. }
  33162. },
  33163. back: {
  33164. height: math.unit(6, "feet"),
  33165. weight: math.unit(190, "lb"),
  33166. name: "Back",
  33167. image: {
  33168. source: "./media/characters/huttser/back.svg",
  33169. extra: 1158/1056,
  33170. bottom: 12/1170
  33171. }
  33172. },
  33173. },
  33174. [
  33175. ]
  33176. ))
  33177. characterMakers.push(() => makeCharacter(
  33178. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33179. {
  33180. side: {
  33181. height: math.unit(12 + 9/12, "feet"),
  33182. weight: math.unit(15000, "lb"),
  33183. name: "Side",
  33184. image: {
  33185. source: "./media/characters/faan/side.svg",
  33186. extra: 2747/2697,
  33187. bottom: 0/2747
  33188. }
  33189. },
  33190. front: {
  33191. height: math.unit(12 + 9/12, "feet"),
  33192. weight: math.unit(15000, "lb"),
  33193. name: "Front",
  33194. image: {
  33195. source: "./media/characters/faan/front.svg",
  33196. extra: 607/571,
  33197. bottom: 24/631
  33198. }
  33199. },
  33200. head: {
  33201. height: math.unit(2.85, "feet"),
  33202. name: "Head",
  33203. image: {
  33204. source: "./media/characters/faan/head.svg"
  33205. }
  33206. },
  33207. headAlt: {
  33208. height: math.unit(3.13, "feet"),
  33209. name: "Head-alt",
  33210. image: {
  33211. source: "./media/characters/faan/head-alt.svg"
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(12 + 9/12, "feet"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33225. {
  33226. front: {
  33227. height: math.unit(6, "feet"),
  33228. weight: math.unit(300, "lb"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/tanio/front.svg",
  33232. extra: 711/673,
  33233. bottom: 25/736
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Normal",
  33240. height: math.unit(6, "feet"),
  33241. default: true
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33247. {
  33248. front: {
  33249. height: math.unit(3, "inches"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/noboru/front.svg",
  33253. extra: 1039/932,
  33254. bottom: 18/1057
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Micro",
  33261. height: math.unit(3, "inches"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(1.85, "meters"),
  33271. weight: math.unit(80, "kg"),
  33272. name: "Front",
  33273. image: {
  33274. source: "./media/characters/daniel-barrett/front.svg",
  33275. extra: 355/337,
  33276. bottom: 9/364
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Pico",
  33283. height: math.unit(0.0433, "mm")
  33284. },
  33285. {
  33286. name: "Nano",
  33287. height: math.unit(1.5, "mm")
  33288. },
  33289. {
  33290. name: "Micro",
  33291. height: math.unit(5.3, "cm"),
  33292. default: true
  33293. },
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(1.85, "meters")
  33297. },
  33298. {
  33299. name: "Macro",
  33300. height: math.unit(64.7, "meters")
  33301. },
  33302. {
  33303. name: "Megamacro",
  33304. height: math.unit(2.26, "km")
  33305. },
  33306. {
  33307. name: "Gigamacro",
  33308. height: math.unit(79, "km")
  33309. },
  33310. {
  33311. name: "Teramacro",
  33312. height: math.unit(2765, "km")
  33313. },
  33314. {
  33315. name: "Petamacro",
  33316. height: math.unit(96678, "km")
  33317. },
  33318. ]
  33319. ))
  33320. characterMakers.push(() => makeCharacter(
  33321. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33322. {
  33323. front: {
  33324. height: math.unit(30, "meters"),
  33325. weight: math.unit(400, "tons"),
  33326. name: "Front",
  33327. image: {
  33328. source: "./media/characters/zeel/front.svg",
  33329. extra: 2599/2599,
  33330. bottom: 226/2825
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Macro",
  33337. height: math.unit(30, "meters"),
  33338. default: true
  33339. },
  33340. ]
  33341. ))
  33342. characterMakers.push(() => makeCharacter(
  33343. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33344. {
  33345. front: {
  33346. height: math.unit(6 + 7/12, "feet"),
  33347. weight: math.unit(210, "lb"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/tarn/front.svg",
  33351. extra: 3517/3220,
  33352. bottom: 91/3608
  33353. }
  33354. },
  33355. back: {
  33356. height: math.unit(6 + 7/12, "feet"),
  33357. weight: math.unit(210, "lb"),
  33358. name: "Back",
  33359. image: {
  33360. source: "./media/characters/tarn/back.svg",
  33361. extra: 3566/3241,
  33362. bottom: 34/3600
  33363. }
  33364. },
  33365. dick: {
  33366. height: math.unit(1.65, "feet"),
  33367. name: "Dick",
  33368. image: {
  33369. source: "./media/characters/tarn/dick.svg"
  33370. }
  33371. },
  33372. paw: {
  33373. height: math.unit(1.80, "feet"),
  33374. name: "Paw",
  33375. image: {
  33376. source: "./media/characters/tarn/paw.svg"
  33377. }
  33378. },
  33379. tongue: {
  33380. height: math.unit(0.97, "feet"),
  33381. name: "Tongue",
  33382. image: {
  33383. source: "./media/characters/tarn/tongue.svg"
  33384. }
  33385. },
  33386. },
  33387. [
  33388. {
  33389. name: "Micro",
  33390. height: math.unit(4, "inches")
  33391. },
  33392. {
  33393. name: "Normal",
  33394. height: math.unit(6 + 7/12, "feet"),
  33395. default: true
  33396. },
  33397. {
  33398. name: "Macro",
  33399. height: math.unit(300, "feet")
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(5 + 7/12, "feet"),
  33408. weight: math.unit(80, "kg"),
  33409. name: "Front",
  33410. image: {
  33411. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33412. extra: 3023/2865,
  33413. bottom: 33/3056
  33414. }
  33415. },
  33416. back: {
  33417. height: math.unit(5 + 7/12, "feet"),
  33418. weight: math.unit(80, "kg"),
  33419. name: "Back",
  33420. image: {
  33421. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33422. extra: 3020/2886,
  33423. bottom: 30/3050
  33424. }
  33425. },
  33426. dick: {
  33427. height: math.unit(0.98, "feet"),
  33428. name: "Dick",
  33429. image: {
  33430. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33431. }
  33432. },
  33433. anatomy: {
  33434. height: math.unit(2.86, "feet"),
  33435. name: "Anatomy",
  33436. image: {
  33437. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Really Small",
  33444. height: math.unit(2, "inches")
  33445. },
  33446. {
  33447. name: "Micro",
  33448. height: math.unit(5.583, "inches")
  33449. },
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(5 + 7/12, "feet"),
  33453. default: true
  33454. },
  33455. {
  33456. name: "Macro",
  33457. height: math.unit(67, "feet")
  33458. },
  33459. {
  33460. name: "Megamacro",
  33461. height: math.unit(134, "feet")
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(9, "feet"),
  33470. weight: math.unit(120, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/sally/front.svg",
  33474. extra: 1506/1349,
  33475. bottom: 66/1572
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(9, "feet"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(8, "feet"),
  33492. weight: math.unit(900, "lb"),
  33493. name: "Front",
  33494. image: {
  33495. source: "./media/characters/owen/front.svg",
  33496. extra: 1761/1657,
  33497. bottom: 74/1835
  33498. }
  33499. },
  33500. side: {
  33501. height: math.unit(8, "feet"),
  33502. weight: math.unit(900, "lb"),
  33503. name: "Side",
  33504. image: {
  33505. source: "./media/characters/owen/side.svg",
  33506. extra: 1797/1734,
  33507. bottom: 30/1827
  33508. }
  33509. },
  33510. back: {
  33511. height: math.unit(8, "feet"),
  33512. weight: math.unit(900, "lb"),
  33513. name: "Back",
  33514. image: {
  33515. source: "./media/characters/owen/back.svg",
  33516. extra: 1796/1706,
  33517. bottom: 59/1855
  33518. }
  33519. },
  33520. maw: {
  33521. height: math.unit(1.76, "feet"),
  33522. name: "Maw",
  33523. image: {
  33524. source: "./media/characters/owen/maw.svg"
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(8, "feet"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33538. {
  33539. front: {
  33540. height: math.unit(4, "feet"),
  33541. weight: math.unit(400, "lb"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/ryth/front.svg",
  33545. extra: 1920/1748,
  33546. bottom: 42/1962
  33547. }
  33548. },
  33549. back: {
  33550. height: math.unit(4, "feet"),
  33551. weight: math.unit(400, "lb"),
  33552. name: "Back",
  33553. image: {
  33554. source: "./media/characters/ryth/back.svg",
  33555. extra: 1897/1690,
  33556. bottom: 89/1986
  33557. }
  33558. },
  33559. mouth: {
  33560. height: math.unit(1.39, "feet"),
  33561. name: "Mouth",
  33562. image: {
  33563. source: "./media/characters/ryth/mouth.svg"
  33564. }
  33565. },
  33566. tailmaw: {
  33567. height: math.unit(1.23, "feet"),
  33568. name: "Tailmaw",
  33569. image: {
  33570. source: "./media/characters/ryth/tailmaw.svg"
  33571. }
  33572. },
  33573. goia: {
  33574. height: math.unit(4, "meters"),
  33575. weight: math.unit(10800, "lb"),
  33576. name: "Goia",
  33577. image: {
  33578. source: "./media/characters/ryth/goia.svg",
  33579. extra: 745/640,
  33580. bottom: 107/852
  33581. }
  33582. },
  33583. goiaFront: {
  33584. height: math.unit(4, "meters"),
  33585. weight: math.unit(10800, "lb"),
  33586. name: "Goia (Front)",
  33587. image: {
  33588. source: "./media/characters/ryth/goia-front.svg",
  33589. extra: 750/586,
  33590. bottom: 114/864
  33591. }
  33592. },
  33593. goiaMaw: {
  33594. height: math.unit(5.55, "feet"),
  33595. name: "Goia Maw",
  33596. image: {
  33597. source: "./media/characters/ryth/goia-maw.svg"
  33598. }
  33599. },
  33600. goiaForepaw: {
  33601. height: math.unit(3.5, "feet"),
  33602. name: "Goia Forepaw",
  33603. image: {
  33604. source: "./media/characters/ryth/goia-forepaw.svg"
  33605. }
  33606. },
  33607. goiaHindpaw: {
  33608. height: math.unit(5.55, "feet"),
  33609. name: "Goia Hindpaw",
  33610. image: {
  33611. source: "./media/characters/ryth/goia-hindpaw.svg"
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(4, "feet"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33625. {
  33626. front: {
  33627. height: math.unit(7, "feet"),
  33628. weight: math.unit(180, "lb"),
  33629. name: "Front",
  33630. image: {
  33631. source: "./media/characters/necrolance/front.svg",
  33632. extra: 1062/947,
  33633. bottom: 41/1103
  33634. }
  33635. },
  33636. back: {
  33637. height: math.unit(7, "feet"),
  33638. weight: math.unit(180, "lb"),
  33639. name: "Back",
  33640. image: {
  33641. source: "./media/characters/necrolance/back.svg",
  33642. extra: 1045/984,
  33643. bottom: 14/1059
  33644. }
  33645. },
  33646. wing: {
  33647. height: math.unit(2.67, "feet"),
  33648. name: "Wing",
  33649. image: {
  33650. source: "./media/characters/necrolance/wing.svg"
  33651. }
  33652. },
  33653. },
  33654. [
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(7, "feet"),
  33658. default: true
  33659. },
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33664. {
  33665. front: {
  33666. height: math.unit(76, "meters"),
  33667. weight: math.unit(30000, "tons"),
  33668. name: "Front",
  33669. image: {
  33670. source: "./media/characters/tyler/front.svg",
  33671. extra: 1640/1640,
  33672. bottom: 114/1754
  33673. }
  33674. },
  33675. },
  33676. [
  33677. {
  33678. name: "Macro",
  33679. height: math.unit(76, "meters"),
  33680. default: true
  33681. },
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33686. {
  33687. front: {
  33688. height: math.unit(4 + 11/12, "feet"),
  33689. weight: math.unit(132, "lb"),
  33690. name: "Front",
  33691. image: {
  33692. source: "./media/characters/icey/front.svg",
  33693. extra: 2750/2550,
  33694. bottom: 33/2783
  33695. }
  33696. },
  33697. back: {
  33698. height: math.unit(4 + 11/12, "feet"),
  33699. weight: math.unit(132, "lb"),
  33700. name: "Back",
  33701. image: {
  33702. source: "./media/characters/icey/back.svg",
  33703. extra: 2624/2481,
  33704. bottom: 35/2659
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(4 + 11/12, "feet"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(100, "feet"),
  33721. weight: math.unit(0, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/smile/front.svg",
  33725. extra: 2983/2912,
  33726. bottom: 162/3145
  33727. }
  33728. },
  33729. back: {
  33730. height: math.unit(100, "feet"),
  33731. weight: math.unit(0, "lb"),
  33732. name: "Back",
  33733. image: {
  33734. source: "./media/characters/smile/back.svg",
  33735. extra: 3143/3031,
  33736. bottom: 91/3234
  33737. }
  33738. },
  33739. head: {
  33740. height: math.unit(26.3, "feet"),
  33741. weight: math.unit(0, "lb"),
  33742. name: "Head",
  33743. image: {
  33744. source: "./media/characters/smile/head.svg"
  33745. }
  33746. },
  33747. collar: {
  33748. height: math.unit(5.3, "feet"),
  33749. weight: math.unit(0, "lb"),
  33750. name: "Collar",
  33751. image: {
  33752. source: "./media/characters/smile/collar.svg"
  33753. }
  33754. },
  33755. },
  33756. [
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(100, "feet"),
  33760. default: true
  33761. },
  33762. ]
  33763. ))
  33764. characterMakers.push(() => makeCharacter(
  33765. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33766. {
  33767. dragon: {
  33768. height: math.unit(26, "feet"),
  33769. weight: math.unit(36, "tons"),
  33770. name: "Dragon",
  33771. image: {
  33772. source: "./media/characters/arimphae/dragon.svg",
  33773. extra: 1574/983,
  33774. bottom: 357/1931
  33775. }
  33776. },
  33777. drake: {
  33778. height: math.unit(9, "feet"),
  33779. weight: math.unit(1.5, "tons"),
  33780. name: "Drake",
  33781. image: {
  33782. source: "./media/characters/arimphae/drake.svg",
  33783. extra: 1120/925,
  33784. bottom: 435/1555
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Small",
  33791. height: math.unit(26*5/9, "feet")
  33792. },
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(26, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(8 + 9/12, "feet"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/xander/front.svg",
  33808. extra: 1237/974,
  33809. bottom: 94/1331
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Normal",
  33816. height: math.unit(8 + 9/12, "feet"),
  33817. default: true
  33818. },
  33819. {
  33820. name: "Gaze Grabber",
  33821. height: math.unit(13 + 8/12, "feet")
  33822. },
  33823. {
  33824. name: "Jaw Dropper",
  33825. height: math.unit(27, "feet")
  33826. },
  33827. {
  33828. name: "Show Stopper",
  33829. height: math.unit(136, "feet")
  33830. },
  33831. {
  33832. name: "Superstar",
  33833. height: math.unit(1.9e6, "miles")
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33839. {
  33840. side: {
  33841. height: math.unit(2100, "feet"),
  33842. name: "Side",
  33843. image: {
  33844. source: "./media/characters/osiris/side.svg",
  33845. extra: 1105/939,
  33846. bottom: 167/1272
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Macro",
  33853. height: math.unit(2100, "feet"),
  33854. default: true
  33855. },
  33856. ]
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33860. {
  33861. front: {
  33862. height: math.unit(6 + 8/12, "feet"),
  33863. weight: math.unit(225, "lb"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/rhys-londe/front.svg",
  33867. extra: 2258/2141,
  33868. bottom: 188/2446
  33869. }
  33870. },
  33871. back: {
  33872. height: math.unit(6 + 8/12, "feet"),
  33873. weight: math.unit(225, "lb"),
  33874. name: "Back",
  33875. image: {
  33876. source: "./media/characters/rhys-londe/back.svg",
  33877. extra: 2237/2137,
  33878. bottom: 63/2300
  33879. }
  33880. },
  33881. frontNsfw: {
  33882. height: math.unit(6 + 8/12, "feet"),
  33883. weight: math.unit(225, "lb"),
  33884. name: "Front (NSFW)",
  33885. image: {
  33886. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33887. extra: 2258/2141,
  33888. bottom: 188/2446
  33889. }
  33890. },
  33891. backNsfw: {
  33892. height: math.unit(6 + 8/12, "feet"),
  33893. weight: math.unit(225, "lb"),
  33894. name: "Back (NSFW)",
  33895. image: {
  33896. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33897. extra: 2237/2137,
  33898. bottom: 63/2300
  33899. }
  33900. },
  33901. dick: {
  33902. height: math.unit(30, "inches"),
  33903. name: "Dick",
  33904. image: {
  33905. source: "./media/characters/rhys-londe/dick.svg"
  33906. }
  33907. },
  33908. maw: {
  33909. height: math.unit(1.6, "feet"),
  33910. name: "Maw",
  33911. image: {
  33912. source: "./media/characters/rhys-londe/maw.svg"
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(6 + 8/12, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(3 + 10/12, "feet"),
  33929. weight: math.unit(90, "lb"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/taivas-ensim/front.svg",
  33933. extra: 1327/1216,
  33934. bottom: 96/1423
  33935. }
  33936. },
  33937. back: {
  33938. height: math.unit(3 + 10/12, "feet"),
  33939. weight: math.unit(90, "lb"),
  33940. name: "Back",
  33941. image: {
  33942. source: "./media/characters/taivas-ensim/back.svg",
  33943. extra: 1355/1247,
  33944. bottom: 11/1366
  33945. }
  33946. },
  33947. frontNsfw: {
  33948. height: math.unit(3 + 10/12, "feet"),
  33949. weight: math.unit(90, "lb"),
  33950. name: "Front (NSFW)",
  33951. image: {
  33952. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33953. extra: 1327/1216,
  33954. bottom: 96/1423
  33955. }
  33956. },
  33957. backNsfw: {
  33958. height: math.unit(3 + 10/12, "feet"),
  33959. weight: math.unit(90, "lb"),
  33960. name: "Back (NSFW)",
  33961. image: {
  33962. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33963. extra: 1355/1247,
  33964. bottom: 11/1366
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(3 + 10/12, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(9 + 6/12, "feet"),
  33981. weight: math.unit(940, "lb"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/byliss/front.svg",
  33985. extra: 1327/1290,
  33986. bottom: 82/1409
  33987. }
  33988. },
  33989. back: {
  33990. height: math.unit(9 + 6/12, "feet"),
  33991. weight: math.unit(940, "lb"),
  33992. name: "Back",
  33993. image: {
  33994. source: "./media/characters/byliss/back.svg",
  33995. extra: 1376/1349,
  33996. bottom: 9/1385
  33997. }
  33998. },
  33999. frontNsfw: {
  34000. height: math.unit(9 + 6/12, "feet"),
  34001. weight: math.unit(940, "lb"),
  34002. name: "Front (NSFW)",
  34003. image: {
  34004. source: "./media/characters/byliss/front-nsfw.svg",
  34005. extra: 1327/1290,
  34006. bottom: 82/1409
  34007. }
  34008. },
  34009. backNsfw: {
  34010. height: math.unit(9 + 6/12, "feet"),
  34011. weight: math.unit(940, "lb"),
  34012. name: "Back (NSFW)",
  34013. image: {
  34014. source: "./media/characters/byliss/back-nsfw.svg",
  34015. extra: 1376/1349,
  34016. bottom: 9/1385
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Normal",
  34023. height: math.unit(9 + 6/12, "feet"),
  34024. default: true
  34025. },
  34026. ]
  34027. ))
  34028. characterMakers.push(() => makeCharacter(
  34029. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34030. {
  34031. front: {
  34032. height: math.unit(5 + 2/12, "feet"),
  34033. weight: math.unit(200, "lb"),
  34034. name: "Front",
  34035. image: {
  34036. source: "./media/characters/noraly/front.svg",
  34037. extra: 4985/4773,
  34038. bottom: 150/5135
  34039. }
  34040. },
  34041. full: {
  34042. height: math.unit(5 + 2/12, "feet"),
  34043. weight: math.unit(164, "lb"),
  34044. name: "Full",
  34045. image: {
  34046. source: "./media/characters/noraly/full.svg",
  34047. extra: 1114/1059,
  34048. bottom: 35/1149
  34049. }
  34050. },
  34051. fuller: {
  34052. height: math.unit(5 + 2/12, "feet"),
  34053. weight: math.unit(230, "lb"),
  34054. name: "Fuller",
  34055. image: {
  34056. source: "./media/characters/noraly/fuller.svg",
  34057. extra: 1114/1059,
  34058. bottom: 35/1149
  34059. }
  34060. },
  34061. fullest: {
  34062. height: math.unit(5 + 2/12, "feet"),
  34063. weight: math.unit(300, "lb"),
  34064. name: "Fullest",
  34065. image: {
  34066. source: "./media/characters/noraly/fullest.svg",
  34067. extra: 1114/1059,
  34068. bottom: 35/1149
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(5 + 2/12, "feet"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34082. {
  34083. front: {
  34084. height: math.unit(5 + 2/12, "feet"),
  34085. weight: math.unit(210, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/pera/front.svg",
  34089. extra: 1560/1531,
  34090. bottom: 165/1725
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(5 + 2/12, "feet"),
  34095. weight: math.unit(210, "lb"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/pera/back.svg",
  34099. extra: 1523/1493,
  34100. bottom: 152/1675
  34101. }
  34102. },
  34103. dick: {
  34104. height: math.unit(2.4, "feet"),
  34105. name: "Dick",
  34106. image: {
  34107. source: "./media/characters/pera/dick.svg"
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Normal",
  34114. height: math.unit(5 + 2/12, "feet"),
  34115. default: true
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(12, "feet"),
  34124. weight: math.unit(3200, "lb"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/julian/front.svg",
  34128. extra: 2962/2701,
  34129. bottom: 184/3146
  34130. }
  34131. },
  34132. maw: {
  34133. height: math.unit(5.35, "feet"),
  34134. name: "Maw",
  34135. image: {
  34136. source: "./media/characters/julian/maw.svg"
  34137. }
  34138. },
  34139. paw: {
  34140. height: math.unit(3.07, "feet"),
  34141. name: "Paw",
  34142. image: {
  34143. source: "./media/characters/julian/paw.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Default",
  34150. height: math.unit(12, "feet"),
  34151. default: true
  34152. },
  34153. {
  34154. name: "Big",
  34155. height: math.unit(50, "feet")
  34156. },
  34157. {
  34158. name: "Really Big",
  34159. height: math.unit(1, "mile")
  34160. },
  34161. {
  34162. name: "Extremely Big",
  34163. height: math.unit(100, "miles")
  34164. },
  34165. {
  34166. name: "Planet Hugger",
  34167. height: math.unit(200, "megameters")
  34168. },
  34169. {
  34170. name: "Unreasonably Big",
  34171. height: math.unit(1e300, "meters")
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34177. {
  34178. solgooleo: {
  34179. height: math.unit(4, "meters"),
  34180. weight: math.unit(6000*1.5, "kg"),
  34181. volume: math.unit(6000, "liters"),
  34182. name: "Solgooleo",
  34183. image: {
  34184. source: "./media/characters/pi/solgooleo.svg",
  34185. extra: 388/331,
  34186. bottom: 29/417
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(4, "meters"),
  34194. default: true
  34195. },
  34196. ]
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34200. {
  34201. front: {
  34202. height: math.unit(8, "feet"),
  34203. weight: math.unit(4, "tons"),
  34204. name: "Front",
  34205. image: {
  34206. source: "./media/characters/shaun/front.svg",
  34207. extra: 503/495,
  34208. bottom: 20/523
  34209. }
  34210. },
  34211. back: {
  34212. height: math.unit(8, "feet"),
  34213. weight: math.unit(4, "tons"),
  34214. name: "Back",
  34215. image: {
  34216. source: "./media/characters/shaun/back.svg",
  34217. extra: 487/480,
  34218. bottom: 20/507
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Lorg",
  34225. height: math.unit(8, "feet"),
  34226. default: true
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34232. {
  34233. frontAnthro: {
  34234. height: math.unit(7, "feet"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/sini/front-anthro.svg",
  34238. extra: 726/678,
  34239. bottom: 35/761
  34240. },
  34241. form: "anthro",
  34242. default: true
  34243. },
  34244. backAnthro: {
  34245. height: math.unit(7, "feet"),
  34246. name: "Back",
  34247. image: {
  34248. source: "./media/characters/sini/back-anthro.svg",
  34249. extra: 743/701,
  34250. bottom: 12/755
  34251. },
  34252. form: "anthro",
  34253. },
  34254. frontAnthroNsfw: {
  34255. height: math.unit(7, "feet"),
  34256. name: "Front (NSFW)",
  34257. image: {
  34258. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34259. extra: 726/678,
  34260. bottom: 35/761
  34261. },
  34262. form: "anthro"
  34263. },
  34264. backAnthroNsfw: {
  34265. height: math.unit(7, "feet"),
  34266. name: "Back (NSFW)",
  34267. image: {
  34268. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34269. extra: 743/701,
  34270. bottom: 12/755
  34271. },
  34272. form: "anthro",
  34273. },
  34274. mawAnthro: {
  34275. height: math.unit(2.14, "feet"),
  34276. name: "Maw",
  34277. image: {
  34278. source: "./media/characters/sini/maw-anthro.svg"
  34279. },
  34280. form: "anthro"
  34281. },
  34282. dick: {
  34283. height: math.unit(1.45, "feet"),
  34284. name: "Dick",
  34285. image: {
  34286. source: "./media/characters/sini/dick-anthro.svg"
  34287. },
  34288. form: "anthro"
  34289. },
  34290. feral: {
  34291. height: math.unit(16, "feet"),
  34292. name: "Feral",
  34293. image: {
  34294. source: "./media/characters/sini/feral.svg",
  34295. extra: 814/605,
  34296. bottom: 11/825
  34297. },
  34298. form: "feral",
  34299. default: true
  34300. },
  34301. feralNsfw: {
  34302. height: math.unit(16, "feet"),
  34303. name: "Feral (NSFW)",
  34304. image: {
  34305. source: "./media/characters/sini/feral-nsfw.svg",
  34306. extra: 814/605,
  34307. bottom: 11/825
  34308. },
  34309. form: "feral"
  34310. },
  34311. mawFeral: {
  34312. height: math.unit(5.66, "feet"),
  34313. name: "Maw",
  34314. image: {
  34315. source: "./media/characters/sini/maw-feral.svg"
  34316. },
  34317. form: "feral",
  34318. },
  34319. pawFeral: {
  34320. height: math.unit(5.17, "feet"),
  34321. name: "Paw",
  34322. image: {
  34323. source: "./media/characters/sini/paw-feral.svg"
  34324. },
  34325. form: "feral",
  34326. },
  34327. rumpFeral: {
  34328. height: math.unit(13.11, "feet"),
  34329. name: "Rump",
  34330. image: {
  34331. source: "./media/characters/sini/rump-feral.svg"
  34332. },
  34333. form: "feral",
  34334. },
  34335. dickFeral: {
  34336. height: math.unit(1, "feet"),
  34337. name: "Dick",
  34338. image: {
  34339. source: "./media/characters/sini/dick-feral.svg"
  34340. },
  34341. form: "feral",
  34342. },
  34343. eyeFeral: {
  34344. height: math.unit(1.23, "feet"),
  34345. name: "Eye",
  34346. image: {
  34347. source: "./media/characters/sini/eye-feral.svg"
  34348. },
  34349. form: "feral",
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Normal",
  34355. height: math.unit(7, "feet"),
  34356. default: true,
  34357. form: "anthro"
  34358. },
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(16, "feet"),
  34362. default: true,
  34363. form: "feral"
  34364. },
  34365. ],
  34366. {
  34367. "anthro": {
  34368. name: "Anthro",
  34369. default: true
  34370. },
  34371. "feral": {
  34372. name: "Feral",
  34373. }
  34374. }
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34378. {
  34379. side: {
  34380. height: math.unit(47.2, "meters"),
  34381. weight: math.unit(10000, "tons"),
  34382. name: "Side",
  34383. image: {
  34384. source: "./media/characters/raylldo/side.svg",
  34385. extra: 2363/642,
  34386. bottom: 221/2584
  34387. }
  34388. },
  34389. top: {
  34390. height: math.unit(240, "meters"),
  34391. weight: math.unit(10000, "tons"),
  34392. name: "Top",
  34393. image: {
  34394. source: "./media/characters/raylldo/top.svg"
  34395. }
  34396. },
  34397. bottom: {
  34398. height: math.unit(240, "meters"),
  34399. weight: math.unit(10000, "tons"),
  34400. name: "Bottom",
  34401. image: {
  34402. source: "./media/characters/raylldo/bottom.svg"
  34403. }
  34404. },
  34405. head: {
  34406. height: math.unit(38.6, "meters"),
  34407. name: "Head",
  34408. image: {
  34409. source: "./media/characters/raylldo/head.svg",
  34410. extra: 1335/1112,
  34411. bottom: 0/1335
  34412. }
  34413. },
  34414. maw: {
  34415. height: math.unit(16.37, "meters"),
  34416. name: "Maw",
  34417. image: {
  34418. source: "./media/characters/raylldo/maw.svg",
  34419. extra: 883/660,
  34420. bottom: 0/883
  34421. },
  34422. extraAttributes: {
  34423. preyCapacity: {
  34424. name: "Capacity",
  34425. power: 3,
  34426. type: "volume",
  34427. base: math.unit(1000, "people")
  34428. },
  34429. tongueSize: {
  34430. name: "Tongue Size",
  34431. power: 2,
  34432. type: "area",
  34433. base: math.unit(21, "m^2")
  34434. }
  34435. }
  34436. },
  34437. forepaw: {
  34438. height: math.unit(18, "meters"),
  34439. name: "Forepaw",
  34440. image: {
  34441. source: "./media/characters/raylldo/forepaw.svg"
  34442. }
  34443. },
  34444. hindpaw: {
  34445. height: math.unit(23, "meters"),
  34446. name: "Hindpaw",
  34447. image: {
  34448. source: "./media/characters/raylldo/hindpaw.svg"
  34449. }
  34450. },
  34451. genitals: {
  34452. height: math.unit(42, "meters"),
  34453. name: "Genitals",
  34454. image: {
  34455. source: "./media/characters/raylldo/genitals.svg"
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Normal",
  34462. height: math.unit(47.2, "meters"),
  34463. default: true
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34469. {
  34470. anthroFront: {
  34471. height: math.unit(9, "feet"),
  34472. weight: math.unit(600, "lb"),
  34473. name: "Anthro (Front)",
  34474. image: {
  34475. source: "./media/characters/glint/anthro-front.svg",
  34476. extra: 1097/1018,
  34477. bottom: 28/1125
  34478. }
  34479. },
  34480. anthroBack: {
  34481. height: math.unit(9, "feet"),
  34482. weight: math.unit(600, "lb"),
  34483. name: "Anthro (Back)",
  34484. image: {
  34485. source: "./media/characters/glint/anthro-back.svg",
  34486. extra: 1154/997,
  34487. bottom: 36/1190
  34488. }
  34489. },
  34490. feral: {
  34491. height: math.unit(11, "feet"),
  34492. weight: math.unit(50000, "lb"),
  34493. name: "Feral",
  34494. image: {
  34495. source: "./media/characters/glint/feral.svg",
  34496. extra: 3035/1585,
  34497. bottom: 1169/4204
  34498. }
  34499. },
  34500. dickAnthro: {
  34501. height: math.unit(0.7, "meters"),
  34502. name: "Dick (Anthro)",
  34503. image: {
  34504. source: "./media/characters/glint/dick-anthro.svg"
  34505. }
  34506. },
  34507. dickFeral: {
  34508. height: math.unit(2.65, "meters"),
  34509. name: "Dick (Feral)",
  34510. image: {
  34511. source: "./media/characters/glint/dick-feral.svg"
  34512. }
  34513. },
  34514. slitHidden: {
  34515. height: math.unit(5.85, "meters"),
  34516. name: "Slit (Hidden)",
  34517. image: {
  34518. source: "./media/characters/glint/slit-hidden.svg"
  34519. }
  34520. },
  34521. slitErect: {
  34522. height: math.unit(5.85, "meters"),
  34523. name: "Slit (Erect)",
  34524. image: {
  34525. source: "./media/characters/glint/slit-erect.svg"
  34526. }
  34527. },
  34528. mawAnthro: {
  34529. height: math.unit(0.63, "meters"),
  34530. name: "Maw (Anthro)",
  34531. image: {
  34532. source: "./media/characters/glint/maw.svg"
  34533. }
  34534. },
  34535. mawFeral: {
  34536. height: math.unit(2.89, "meters"),
  34537. name: "Maw (Feral)",
  34538. image: {
  34539. source: "./media/characters/glint/maw.svg"
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(9, "feet"),
  34547. default: true
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34553. {
  34554. side: {
  34555. height: math.unit(15, "feet"),
  34556. weight: math.unit(5000, "kg"),
  34557. name: "Side",
  34558. image: {
  34559. source: "./media/characters/kairne/side.svg",
  34560. extra: 979/811,
  34561. bottom: 13/992
  34562. }
  34563. },
  34564. front: {
  34565. height: math.unit(15, "feet"),
  34566. weight: math.unit(5000, "kg"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/kairne/front.svg",
  34570. extra: 908/814,
  34571. bottom: 26/934
  34572. }
  34573. },
  34574. sideNsfw: {
  34575. height: math.unit(15, "feet"),
  34576. weight: math.unit(5000, "kg"),
  34577. name: "Side (NSFW)",
  34578. image: {
  34579. source: "./media/characters/kairne/side-nsfw.svg",
  34580. extra: 979/811,
  34581. bottom: 13/992
  34582. }
  34583. },
  34584. frontNsfw: {
  34585. height: math.unit(15, "feet"),
  34586. weight: math.unit(5000, "kg"),
  34587. name: "Front (NSFW)",
  34588. image: {
  34589. source: "./media/characters/kairne/front-nsfw.svg",
  34590. extra: 908/814,
  34591. bottom: 26/934
  34592. }
  34593. },
  34594. dickCaged: {
  34595. height: math.unit(0.65, "meters"),
  34596. name: "Dick-caged",
  34597. image: {
  34598. source: "./media/characters/kairne/dick-caged.svg"
  34599. }
  34600. },
  34601. dick: {
  34602. height: math.unit(0.79, "meters"),
  34603. name: "Dick",
  34604. image: {
  34605. source: "./media/characters/kairne/dick.svg"
  34606. }
  34607. },
  34608. genitals: {
  34609. height: math.unit(1.29, "meters"),
  34610. name: "Genitals",
  34611. image: {
  34612. source: "./media/characters/kairne/genitals.svg"
  34613. }
  34614. },
  34615. maw: {
  34616. height: math.unit(1.73, "meters"),
  34617. name: "Maw",
  34618. image: {
  34619. source: "./media/characters/kairne/maw.svg"
  34620. }
  34621. },
  34622. },
  34623. [
  34624. {
  34625. name: "Normal",
  34626. height: math.unit(15, "feet"),
  34627. default: true
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34633. {
  34634. front: {
  34635. height: math.unit(5 + 8/12, "feet"),
  34636. weight: math.unit(139, "lb"),
  34637. name: "Front",
  34638. image: {
  34639. source: "./media/characters/biscuit-jackal/front.svg",
  34640. extra: 2106/1961,
  34641. bottom: 58/2164
  34642. }
  34643. },
  34644. back: {
  34645. height: math.unit(5 + 8/12, "feet"),
  34646. weight: math.unit(139, "lb"),
  34647. name: "Back",
  34648. image: {
  34649. source: "./media/characters/biscuit-jackal/back.svg",
  34650. extra: 2132/1976,
  34651. bottom: 57/2189
  34652. }
  34653. },
  34654. werejackal: {
  34655. height: math.unit(6 + 3/12, "feet"),
  34656. weight: math.unit(188, "lb"),
  34657. name: "Werejackal",
  34658. image: {
  34659. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34660. extra: 2373/2178,
  34661. bottom: 53/2426
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(5 + 8/12, "feet"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(140, "cm"),
  34678. weight: math.unit(45, "kg"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/tayra-white/front.svg",
  34682. extra: 2229/2192,
  34683. bottom: 75/2304
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(140, "cm"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(4 + 5/12, "feet"),
  34700. name: "Front",
  34701. image: {
  34702. source: "./media/characters/scoop/front.svg",
  34703. extra: 1257/1136,
  34704. bottom: 69/1326
  34705. }
  34706. },
  34707. back: {
  34708. height: math.unit(4 + 5/12, "feet"),
  34709. name: "Back",
  34710. image: {
  34711. source: "./media/characters/scoop/back.svg",
  34712. extra: 1321/1152,
  34713. bottom: 32/1353
  34714. }
  34715. },
  34716. maw: {
  34717. height: math.unit(0.68, "feet"),
  34718. name: "Maw",
  34719. image: {
  34720. source: "./media/characters/scoop/maw.svg"
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Really Small",
  34727. height: math.unit(1, "mm")
  34728. },
  34729. {
  34730. name: "Micro",
  34731. height: math.unit(1, "inch")
  34732. },
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(4 + 5/12, "feet"),
  34736. default: true
  34737. },
  34738. {
  34739. name: "Macro",
  34740. height: math.unit(200, "feet")
  34741. },
  34742. {
  34743. name: "Megamacro",
  34744. height: math.unit(3240, "feet")
  34745. },
  34746. {
  34747. name: "Teramacro",
  34748. height: math.unit(2500, "miles")
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(15 + 7/12, "feet"),
  34757. weight: math.unit(1150, "tons"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/saphinara/front.svg",
  34761. extra: 1837/1643,
  34762. bottom: 84/1921
  34763. },
  34764. form: "normal",
  34765. default: true
  34766. },
  34767. side: {
  34768. height: math.unit(15 + 7/12, "feet"),
  34769. weight: math.unit(1150, "tons"),
  34770. name: "Side",
  34771. image: {
  34772. source: "./media/characters/saphinara/side.svg",
  34773. extra: 605/547,
  34774. bottom: 6/611
  34775. },
  34776. form: "normal"
  34777. },
  34778. back: {
  34779. height: math.unit(15 + 7/12, "feet"),
  34780. weight: math.unit(1150, "tons"),
  34781. name: "Back",
  34782. image: {
  34783. source: "./media/characters/saphinara/back.svg",
  34784. extra: 591/531,
  34785. bottom: 13/604
  34786. },
  34787. form: "normal"
  34788. },
  34789. frontTail: {
  34790. height: math.unit(15 + 7/12, "feet"),
  34791. weight: math.unit(1150, "tons"),
  34792. name: "Front (Full Tail)",
  34793. image: {
  34794. source: "./media/characters/saphinara/front-tail.svg",
  34795. extra: 2256/1630,
  34796. bottom: 261/2517
  34797. },
  34798. form: "normal"
  34799. },
  34800. insides: {
  34801. height: math.unit(11.92, "feet"),
  34802. name: "Insides",
  34803. image: {
  34804. source: "./media/characters/saphinara/insides.svg"
  34805. },
  34806. form: "normal"
  34807. },
  34808. head: {
  34809. height: math.unit(4.17, "feet"),
  34810. name: "Head",
  34811. image: {
  34812. source: "./media/characters/saphinara/head.svg"
  34813. },
  34814. form: "normal"
  34815. },
  34816. tongue: {
  34817. height: math.unit(4.60, "feet"),
  34818. name: "Tongue",
  34819. image: {
  34820. source: "./media/characters/saphinara/tongue.svg"
  34821. },
  34822. form: "normal"
  34823. },
  34824. headEnraged: {
  34825. height: math.unit(5.55, "feet"),
  34826. name: "Head (Enraged)",
  34827. image: {
  34828. source: "./media/characters/saphinara/head-enraged.svg"
  34829. },
  34830. form: "normal"
  34831. },
  34832. wings: {
  34833. height: math.unit(11.95, "feet"),
  34834. name: "Wings",
  34835. image: {
  34836. source: "./media/characters/saphinara/wings.svg"
  34837. },
  34838. form: "normal"
  34839. },
  34840. feathers: {
  34841. height: math.unit(8.92, "feet"),
  34842. name: "Feathers",
  34843. image: {
  34844. source: "./media/characters/saphinara/feathers.svg"
  34845. },
  34846. form: "normal"
  34847. },
  34848. shackles: {
  34849. height: math.unit(2, "feet"),
  34850. name: "Shackles",
  34851. image: {
  34852. source: "./media/characters/saphinara/shackles.svg"
  34853. },
  34854. form: "normal"
  34855. },
  34856. eyes: {
  34857. height: math.unit(1.331, "feet"),
  34858. name: "Eyes",
  34859. image: {
  34860. source: "./media/characters/saphinara/eyes.svg"
  34861. },
  34862. form: "normal"
  34863. },
  34864. eyesEnraged: {
  34865. height: math.unit(1.331, "feet"),
  34866. name: "Eyes (Enraged)",
  34867. image: {
  34868. source: "./media/characters/saphinara/eyes-enraged.svg"
  34869. },
  34870. form: "normal"
  34871. },
  34872. trueFormSide: {
  34873. height: math.unit(200, "feet"),
  34874. weight: math.unit(1e7, "tons"),
  34875. name: "Side",
  34876. image: {
  34877. source: "./media/characters/saphinara/true-form-side.svg",
  34878. extra: 1399/770,
  34879. bottom: 97/1496
  34880. },
  34881. form: "true-form",
  34882. default: true
  34883. },
  34884. trueFormMaw: {
  34885. height: math.unit(71.5, "feet"),
  34886. name: "Maw",
  34887. image: {
  34888. source: "./media/characters/saphinara/true-form-maw.svg",
  34889. extra: 2302/1453,
  34890. bottom: 0/2302
  34891. },
  34892. form: "true-form"
  34893. },
  34894. meowberusSide: {
  34895. height: math.unit(75, "feet"),
  34896. weight: math.unit(180000, "kg"),
  34897. preyCapacity: math.unit(50000, "people"),
  34898. name: "Side",
  34899. image: {
  34900. source: "./media/characters/saphinara/meowberus-side.svg",
  34901. extra: 1400/711,
  34902. bottom: 126/1526
  34903. },
  34904. form: "meowberus",
  34905. extraAttributes: {
  34906. "pawArea": {
  34907. name: "Paw Size",
  34908. power: 2,
  34909. type: "area",
  34910. base: math.unit(35, "m^2")
  34911. }
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(15 + 7/12, "feet"),
  34919. default: true,
  34920. form: "normal"
  34921. },
  34922. {
  34923. name: "Angry",
  34924. height: math.unit(30 + 6/12, "feet"),
  34925. form: "normal"
  34926. },
  34927. {
  34928. name: "Enraged",
  34929. height: math.unit(102 + 1/12, "feet"),
  34930. form: "normal"
  34931. },
  34932. {
  34933. name: "True",
  34934. height: math.unit(200, "feet"),
  34935. default: true,
  34936. form: "true-form"
  34937. },
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(75, "feet"),
  34941. default: true,
  34942. form: "meowberus"
  34943. },
  34944. ],
  34945. {
  34946. "normal": {
  34947. name: "Normal",
  34948. default: true
  34949. },
  34950. "true-form": {
  34951. name: "True Form"
  34952. },
  34953. "meowberus": {
  34954. name: "Meowberus",
  34955. },
  34956. }
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(6 + 8/12, "feet"),
  34963. weight: math.unit(300, "lb"),
  34964. name: "Front",
  34965. image: {
  34966. source: "./media/characters/jrain/front.svg",
  34967. extra: 3039/2865,
  34968. bottom: 399/3438
  34969. }
  34970. },
  34971. back: {
  34972. height: math.unit(6 + 8/12, "feet"),
  34973. weight: math.unit(300, "lb"),
  34974. name: "Back",
  34975. image: {
  34976. source: "./media/characters/jrain/back.svg",
  34977. extra: 3089/2938,
  34978. bottom: 172/3261
  34979. }
  34980. },
  34981. head: {
  34982. height: math.unit(2.14, "feet"),
  34983. name: "Head",
  34984. image: {
  34985. source: "./media/characters/jrain/head.svg"
  34986. }
  34987. },
  34988. maw: {
  34989. height: math.unit(1.77, "feet"),
  34990. name: "Maw",
  34991. image: {
  34992. source: "./media/characters/jrain/maw.svg"
  34993. }
  34994. },
  34995. leftHand: {
  34996. height: math.unit(1.1, "feet"),
  34997. name: "Left Hand",
  34998. image: {
  34999. source: "./media/characters/jrain/left-hand.svg"
  35000. }
  35001. },
  35002. rightHand: {
  35003. height: math.unit(1.1, "feet"),
  35004. name: "Right Hand",
  35005. image: {
  35006. source: "./media/characters/jrain/right-hand.svg"
  35007. }
  35008. },
  35009. eye: {
  35010. height: math.unit(0.35, "feet"),
  35011. name: "Eye",
  35012. image: {
  35013. source: "./media/characters/jrain/eye.svg"
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(6 + 8/12, "feet"),
  35021. default: true
  35022. },
  35023. {
  35024. name: "Casually Large",
  35025. height: math.unit(25, "feet")
  35026. },
  35027. {
  35028. name: "Giant",
  35029. height: math.unit(100, "feet")
  35030. },
  35031. {
  35032. name: "Kaiju",
  35033. height: math.unit(300, "feet")
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35039. {
  35040. dragon: {
  35041. height: math.unit(5, "meters"),
  35042. name: "Dragon",
  35043. image: {
  35044. source: "./media/characters/sabrina/dragon.svg",
  35045. extra: 3670 / 2365,
  35046. bottom: 333 / 4003
  35047. }
  35048. },
  35049. gryphon: {
  35050. height: math.unit(3, "meters"),
  35051. name: "Gryphon",
  35052. image: {
  35053. source: "./media/characters/sabrina/gryphon.svg",
  35054. extra: 1576 / 945,
  35055. bottom: 71 / 1647
  35056. }
  35057. },
  35058. snake: {
  35059. height: math.unit(12, "meters"),
  35060. name: "Snake",
  35061. image: {
  35062. source: "./media/characters/sabrina/snake.svg",
  35063. extra: 1758 / 1320,
  35064. bottom: 186 / 1944
  35065. }
  35066. },
  35067. collar: {
  35068. height: math.unit(1.86, "meters"),
  35069. name: "Collar",
  35070. image: {
  35071. source: "./media/characters/sabrina/collar.svg"
  35072. }
  35073. },
  35074. eye: {
  35075. height: math.unit(0.53, "meters"),
  35076. name: "Eye",
  35077. image: {
  35078. source: "./media/characters/sabrina/eye.svg"
  35079. }
  35080. },
  35081. foot: {
  35082. height: math.unit(1.86, "meters"),
  35083. name: "Foot",
  35084. image: {
  35085. source: "./media/characters/sabrina/foot.svg"
  35086. }
  35087. },
  35088. hand: {
  35089. height: math.unit(1.32, "meters"),
  35090. name: "Hand",
  35091. image: {
  35092. source: "./media/characters/sabrina/hand.svg"
  35093. }
  35094. },
  35095. head: {
  35096. height: math.unit(2.44, "meters"),
  35097. name: "Head",
  35098. image: {
  35099. source: "./media/characters/sabrina/head.svg"
  35100. }
  35101. },
  35102. headAngry: {
  35103. height: math.unit(2.44, "meters"),
  35104. name: "Head (Angry))",
  35105. image: {
  35106. source: "./media/characters/sabrina/head-angry.svg"
  35107. }
  35108. },
  35109. maw: {
  35110. height: math.unit(1.65, "meters"),
  35111. name: "Maw",
  35112. image: {
  35113. source: "./media/characters/sabrina/maw.svg"
  35114. }
  35115. },
  35116. spikes: {
  35117. height: math.unit(1.69, "meters"),
  35118. name: "Spikes",
  35119. image: {
  35120. source: "./media/characters/sabrina/spikes.svg"
  35121. }
  35122. },
  35123. stomach: {
  35124. height: math.unit(1.15, "meters"),
  35125. name: "Stomach",
  35126. image: {
  35127. source: "./media/characters/sabrina/stomach.svg"
  35128. }
  35129. },
  35130. tongue: {
  35131. height: math.unit(1.27, "meters"),
  35132. name: "Tongue",
  35133. image: {
  35134. source: "./media/characters/sabrina/tongue.svg"
  35135. }
  35136. },
  35137. wingDorsal: {
  35138. height: math.unit(4.85, "meters"),
  35139. name: "Wing (Dorsal)",
  35140. image: {
  35141. source: "./media/characters/sabrina/wing-dorsal.svg"
  35142. }
  35143. },
  35144. wingVentral: {
  35145. height: math.unit(4.85, "meters"),
  35146. name: "Wing (Ventral)",
  35147. image: {
  35148. source: "./media/characters/sabrina/wing-ventral.svg"
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(5, "meters"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35162. {
  35163. frontMaid: {
  35164. height: math.unit(5 + 5/12, "feet"),
  35165. weight: math.unit(130, "lb"),
  35166. name: "Front (Maid)",
  35167. image: {
  35168. source: "./media/characters/midnight-tales/front-maid.svg",
  35169. extra: 489/454,
  35170. bottom: 61/550
  35171. }
  35172. },
  35173. frontFormal: {
  35174. height: math.unit(5 + 5/12, "feet"),
  35175. weight: math.unit(130, "lb"),
  35176. name: "Front (Formal)",
  35177. image: {
  35178. source: "./media/characters/midnight-tales/front-formal.svg",
  35179. extra: 489/454,
  35180. bottom: 61/550
  35181. }
  35182. },
  35183. back: {
  35184. height: math.unit(5 + 5/12, "feet"),
  35185. weight: math.unit(130, "lb"),
  35186. name: "Back",
  35187. image: {
  35188. source: "./media/characters/midnight-tales/back.svg",
  35189. extra: 498/456,
  35190. bottom: 33/531
  35191. }
  35192. },
  35193. frontBeast: {
  35194. height: math.unit(40, "feet"),
  35195. weight: math.unit(64000, "lb"),
  35196. name: "Front (Beast)",
  35197. image: {
  35198. source: "./media/characters/midnight-tales/front-beast.svg",
  35199. extra: 927/860,
  35200. bottom: 53/980
  35201. }
  35202. },
  35203. backBeast: {
  35204. height: math.unit(40, "feet"),
  35205. weight: math.unit(64000, "lb"),
  35206. name: "Back (Beast)",
  35207. image: {
  35208. source: "./media/characters/midnight-tales/back-beast.svg",
  35209. extra: 929/855,
  35210. bottom: 16/945
  35211. }
  35212. },
  35213. footBeast: {
  35214. height: math.unit(6.7, "feet"),
  35215. name: "Foot (Beast)",
  35216. image: {
  35217. source: "./media/characters/midnight-tales/foot-beast.svg"
  35218. }
  35219. },
  35220. headBeast: {
  35221. height: math.unit(8, "feet"),
  35222. name: "Head (Beast)",
  35223. image: {
  35224. source: "./media/characters/midnight-tales/head-beast.svg"
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(5 + 5 / 12, "feet"),
  35232. default: true
  35233. },
  35234. {
  35235. name: "Macro",
  35236. height: math.unit(25, "feet")
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(5 + 10/12, "feet"),
  35245. name: "Front",
  35246. image: {
  35247. source: "./media/characters/argon/front.svg",
  35248. extra: 2009/1935,
  35249. bottom: 118/2127
  35250. }
  35251. },
  35252. back: {
  35253. height: math.unit(5 + 10/12, "feet"),
  35254. name: "Back",
  35255. image: {
  35256. source: "./media/characters/argon/back.svg",
  35257. extra: 2047/1992,
  35258. bottom: 20/2067
  35259. }
  35260. },
  35261. frontDressed: {
  35262. height: math.unit(5 + 10/12, "feet"),
  35263. name: "Front (Dressed)",
  35264. image: {
  35265. source: "./media/characters/argon/front-dressed.svg",
  35266. extra: 2009/1935,
  35267. bottom: 118/2127
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(5 + 10/12, "feet"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35281. {
  35282. front: {
  35283. height: math.unit(8 + 6/12, "feet"),
  35284. weight: math.unit(1150, "lb"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/kichi/front.svg",
  35288. extra: 1267/1164,
  35289. bottom: 61/1328
  35290. }
  35291. },
  35292. back: {
  35293. height: math.unit(8 + 6/12, "feet"),
  35294. weight: math.unit(1150, "lb"),
  35295. name: "Back",
  35296. image: {
  35297. source: "./media/characters/kichi/back.svg",
  35298. extra: 1273/1166,
  35299. bottom: 33/1306
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(8 + 6/12, "feet"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(6, "feet"),
  35316. weight: math.unit(210, "lb"),
  35317. name: "Front",
  35318. image: {
  35319. source: "./media/characters/manetel-greyscale/front.svg",
  35320. extra: 350/312,
  35321. bottom: 8/358
  35322. }
  35323. },
  35324. },
  35325. [
  35326. {
  35327. name: "Micro",
  35328. height: math.unit(2, "inches")
  35329. },
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(6, "feet"),
  35333. default: true
  35334. },
  35335. {
  35336. name: "Minimacro",
  35337. height: math.unit(17, "feet")
  35338. },
  35339. {
  35340. name: "Macro",
  35341. height: math.unit(117, "feet")
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35347. {
  35348. side: {
  35349. height: math.unit(5 + 1/12, "feet"),
  35350. weight: math.unit(418, "lb"),
  35351. name: "Side",
  35352. image: {
  35353. source: "./media/characters/softpurr/side.svg",
  35354. extra: 1993/1945,
  35355. bottom: 134/2127
  35356. }
  35357. },
  35358. front: {
  35359. height: math.unit(5 + 1/12, "feet"),
  35360. weight: math.unit(418, "lb"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/softpurr/front.svg",
  35364. extra: 1950/1856,
  35365. bottom: 174/2124
  35366. }
  35367. },
  35368. paw: {
  35369. height: math.unit(1, "feet"),
  35370. name: "Paw",
  35371. image: {
  35372. source: "./media/characters/softpurr/paw.svg"
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Normal",
  35379. height: math.unit(5 + 1/12, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(260, "meters"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/anahita/front.svg",
  35392. extra: 665/635,
  35393. bottom: 89/754
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Macro",
  35400. height: math.unit(260, "meters"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(4 + 10/12, "feet"),
  35410. weight: math.unit(160, "lb"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/chip-mouse/front.svg",
  35414. extra: 3528/3408,
  35415. bottom: 0/3528
  35416. }
  35417. },
  35418. frontNsfw: {
  35419. height: math.unit(4 + 10/12, "feet"),
  35420. weight: math.unit(160, "lb"),
  35421. name: "Front (NSFW)",
  35422. image: {
  35423. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35424. extra: 3528/3408,
  35425. bottom: 0/3528
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(4 + 10/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35439. {
  35440. side: {
  35441. height: math.unit(10, "feet"),
  35442. weight: math.unit(14000, "lb"),
  35443. name: "Side",
  35444. image: {
  35445. source: "./media/characters/kremm/side.svg",
  35446. extra: 1390/1053,
  35447. bottom: 90/1480
  35448. }
  35449. },
  35450. gut: {
  35451. height: math.unit(5.8, "feet"),
  35452. name: "Gut",
  35453. image: {
  35454. source: "./media/characters/kremm/gut.svg"
  35455. }
  35456. },
  35457. ass: {
  35458. height: math.unit(6.1, "feet"),
  35459. name: "Ass",
  35460. image: {
  35461. source: "./media/characters/kremm/ass.svg"
  35462. }
  35463. },
  35464. jaws: {
  35465. height: math.unit(2.2, "feet"),
  35466. name: "Jaws",
  35467. image: {
  35468. source: "./media/characters/kremm/jaws.svg"
  35469. }
  35470. },
  35471. dick: {
  35472. height: math.unit(4.26, "feet"),
  35473. name: "Dick",
  35474. image: {
  35475. source: "./media/characters/kremm/dick.svg"
  35476. }
  35477. },
  35478. },
  35479. [
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(10, "feet"),
  35483. default: true
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(30, "stories"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/kai/front.svg",
  35495. extra: 1892/1718,
  35496. bottom: 162/2054
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Macro",
  35503. height: math.unit(30, "stories"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(6 + 4/12, "feet"),
  35513. weight: math.unit(145, "lb"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/sykes/front.svg",
  35517. extra: 1321 / 1187,
  35518. bottom: 66 / 1387
  35519. }
  35520. },
  35521. back: {
  35522. height: math.unit(6 + 4/12, "feet"),
  35523. weight: math.unit(145, "lb"),
  35524. name: "Back",
  35525. image: {
  35526. source: "./media/characters/sykes/back.svg",
  35527. extra: 1326/1181,
  35528. bottom: 31/1357
  35529. }
  35530. },
  35531. traditionalOutfit: {
  35532. height: math.unit(6 + 4/12, "feet"),
  35533. weight: math.unit(145, "lb"),
  35534. name: "Traditional Outfit",
  35535. image: {
  35536. source: "./media/characters/sykes/traditional-outfit.svg",
  35537. extra: 1321 / 1187,
  35538. bottom: 66 / 1387
  35539. }
  35540. },
  35541. adventureOutfit: {
  35542. height: math.unit(6 + 4/12, "feet"),
  35543. weight: math.unit(145, "lb"),
  35544. name: "Adventure Outfit",
  35545. image: {
  35546. source: "./media/characters/sykes/adventure-outfit.svg",
  35547. extra: 1321 / 1187,
  35548. bottom: 66 / 1387
  35549. }
  35550. },
  35551. handLeft: {
  35552. height: math.unit(0.9, "feet"),
  35553. name: "Hand (Left)",
  35554. image: {
  35555. source: "./media/characters/sykes/hand-left.svg"
  35556. }
  35557. },
  35558. handRight: {
  35559. height: math.unit(0.839, "feet"),
  35560. name: "Hand (Right)",
  35561. image: {
  35562. source: "./media/characters/sykes/hand-right.svg"
  35563. }
  35564. },
  35565. leftFoot: {
  35566. height: math.unit(1.2, "feet"),
  35567. name: "Foot (Left)",
  35568. image: {
  35569. source: "./media/characters/sykes/foot-left.svg"
  35570. }
  35571. },
  35572. rightFoot: {
  35573. height: math.unit(1.2, "feet"),
  35574. name: "Foot (Right)",
  35575. image: {
  35576. source: "./media/characters/sykes/foot-right.svg"
  35577. }
  35578. },
  35579. maw: {
  35580. height: math.unit(1.93, "feet"),
  35581. name: "Maw",
  35582. image: {
  35583. source: "./media/characters/sykes/maw.svg"
  35584. }
  35585. },
  35586. teeth: {
  35587. height: math.unit(0.51, "feet"),
  35588. name: "Teeth",
  35589. image: {
  35590. source: "./media/characters/sykes/teeth.svg"
  35591. }
  35592. },
  35593. tongue: {
  35594. height: math.unit(2.13, "feet"),
  35595. name: "Tongue",
  35596. image: {
  35597. source: "./media/characters/sykes/tongue.svg"
  35598. }
  35599. },
  35600. uvula: {
  35601. height: math.unit(0.16, "feet"),
  35602. name: "Uvula",
  35603. image: {
  35604. source: "./media/characters/sykes/uvula.svg"
  35605. }
  35606. },
  35607. collar: {
  35608. height: math.unit(0.287, "feet"),
  35609. name: "Collar",
  35610. image: {
  35611. source: "./media/characters/sykes/collar.svg"
  35612. }
  35613. },
  35614. tail: {
  35615. height: math.unit(3.8, "feet"),
  35616. name: "Tail",
  35617. image: {
  35618. source: "./media/characters/sykes/tail.svg"
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Shrunken",
  35625. height: math.unit(5, "inches")
  35626. },
  35627. {
  35628. name: "Normal",
  35629. height: math.unit(6 + 4 / 12, "feet"),
  35630. default: true
  35631. },
  35632. {
  35633. name: "Big",
  35634. height: math.unit(15, "feet")
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(5 + 8/12, "feet"),
  35643. weight: math.unit(190, "lb"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/oven-otter/front.svg",
  35647. extra: 1809/1740,
  35648. bottom: 181/1990
  35649. }
  35650. },
  35651. back: {
  35652. height: math.unit(5 + 8/12, "feet"),
  35653. weight: math.unit(190, "lb"),
  35654. name: "Back",
  35655. image: {
  35656. source: "./media/characters/oven-otter/back.svg",
  35657. extra: 1709/1635,
  35658. bottom: 118/1827
  35659. }
  35660. },
  35661. hand: {
  35662. height: math.unit(1.07, "feet"),
  35663. name: "Hand",
  35664. image: {
  35665. source: "./media/characters/oven-otter/hand.svg"
  35666. }
  35667. },
  35668. beans: {
  35669. height: math.unit(1.74, "feet"),
  35670. name: "Beans",
  35671. image: {
  35672. source: "./media/characters/oven-otter/beans.svg"
  35673. }
  35674. },
  35675. },
  35676. [
  35677. {
  35678. name: "Micro",
  35679. height: math.unit(0.5, "inches")
  35680. },
  35681. {
  35682. name: "Normal",
  35683. height: math.unit(5 + 8/12, "feet"),
  35684. default: true
  35685. },
  35686. {
  35687. name: "Macro",
  35688. height: math.unit(250, "feet")
  35689. },
  35690. {
  35691. name: "Really High",
  35692. height: math.unit(420, "feet")
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35698. {
  35699. front: {
  35700. height: math.unit(5, "meters"),
  35701. weight: math.unit(292000000000000, "kg"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/devourer/front.svg",
  35705. extra: 1800/1733,
  35706. bottom: 211/2011
  35707. }
  35708. },
  35709. maw: {
  35710. height: math.unit(1.1, "meter"),
  35711. name: "Maw",
  35712. image: {
  35713. source: "./media/characters/devourer/maw.svg"
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Small",
  35720. height: math.unit(3, "meters")
  35721. },
  35722. {
  35723. name: "Large",
  35724. height: math.unit(5, "meters"),
  35725. default: true
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35731. {
  35732. front: {
  35733. height: math.unit(6, "feet"),
  35734. weight: math.unit(400, "lb"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/ellarby/front.svg",
  35738. extra: 1909/1763,
  35739. bottom: 80/1989
  35740. }
  35741. },
  35742. back: {
  35743. height: math.unit(6, "feet"),
  35744. weight: math.unit(400, "lb"),
  35745. name: "Back",
  35746. image: {
  35747. source: "./media/characters/ellarby/back.svg",
  35748. extra: 1914/1784,
  35749. bottom: 172/2086
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Mischief",
  35756. height: math.unit(18, "inches")
  35757. },
  35758. {
  35759. name: "Trouble",
  35760. height: math.unit(12, "feet")
  35761. },
  35762. {
  35763. name: "Havoc",
  35764. height: math.unit(200, "feet"),
  35765. default: true
  35766. },
  35767. {
  35768. name: "Pandemonium",
  35769. height: math.unit(1, "mile")
  35770. },
  35771. {
  35772. name: "Catastrophe",
  35773. height: math.unit(100, "miles")
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35779. {
  35780. front: {
  35781. height: math.unit(4.7, "meters"),
  35782. weight: math.unit(6500, "kg"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/vex/front.svg",
  35786. extra: 1288/1140,
  35787. bottom: 100/1388
  35788. }
  35789. },
  35790. },
  35791. [
  35792. {
  35793. name: "Normal",
  35794. height: math.unit(4.7, "meters"),
  35795. default: true
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35801. {
  35802. normal: {
  35803. height: math.unit(6, "feet"),
  35804. weight: math.unit(350, "lb"),
  35805. name: "Normal",
  35806. image: {
  35807. source: "./media/characters/teshy/normal.svg",
  35808. extra: 1795/1735,
  35809. bottom: 16/1811
  35810. }
  35811. },
  35812. monsterFront: {
  35813. height: math.unit(12, "feet"),
  35814. weight: math.unit(4700, "lb"),
  35815. name: "Monster (Front)",
  35816. image: {
  35817. source: "./media/characters/teshy/monster-front.svg",
  35818. extra: 2042/2034,
  35819. bottom: 128/2170
  35820. }
  35821. },
  35822. monsterSide: {
  35823. height: math.unit(12, "feet"),
  35824. weight: math.unit(4700, "lb"),
  35825. name: "Monster (Side)",
  35826. image: {
  35827. source: "./media/characters/teshy/monster-side.svg",
  35828. extra: 2067/2056,
  35829. bottom: 70/2137
  35830. }
  35831. },
  35832. monsterBack: {
  35833. height: math.unit(12, "feet"),
  35834. weight: math.unit(4700, "lb"),
  35835. name: "Monster (Back)",
  35836. image: {
  35837. source: "./media/characters/teshy/monster-back.svg",
  35838. extra: 1921/1914,
  35839. bottom: 171/2092
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(6, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(6, "feet"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/ramey/front.svg",
  35859. extra: 790/787,
  35860. bottom: 27/817
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(6, "feet"),
  35868. default: true
  35869. },
  35870. ]
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35874. {
  35875. front: {
  35876. height: math.unit(5 + 5/12, "feet"),
  35877. weight: math.unit(120, "lb"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/phirae/front.svg",
  35881. extra: 2491/2436,
  35882. bottom: 38/2529
  35883. }
  35884. },
  35885. },
  35886. [
  35887. {
  35888. name: "Normal",
  35889. height: math.unit(5 + 5/12, "feet"),
  35890. default: true
  35891. },
  35892. ]
  35893. ))
  35894. characterMakers.push(() => makeCharacter(
  35895. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35896. {
  35897. front: {
  35898. height: math.unit(5 + 3/12, "feet"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/stagglas/front.svg",
  35902. extra: 962/882,
  35903. bottom: 53/1015
  35904. }
  35905. },
  35906. feral: {
  35907. height: math.unit(335, "cm"),
  35908. name: "Feral",
  35909. image: {
  35910. source: "./media/characters/stagglas/feral.svg",
  35911. extra: 1732/1090,
  35912. bottom: 48/1780
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(5 + 3/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(5 + 4/12, "feet"),
  35929. weight: math.unit(145, "lb"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/starra/front.svg",
  35933. extra: 1790/1691,
  35934. bottom: 91/1881
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(5 + 4/12, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(2.2, "meters"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35954. extra: 1194/1005,
  35955. bottom: 25/1219
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(2.2, "meters"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35969. {
  35970. side: {
  35971. height: math.unit(8 + 2/12, "feet"),
  35972. weight: math.unit(1240, "lb"),
  35973. name: "Side",
  35974. image: {
  35975. source: "./media/characters/mika-valentine/side.svg",
  35976. extra: 2670/2501,
  35977. bottom: 250/2920
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(8 + 2/12, "feet"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(7 + 2/12, "feet"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/xoltol/front.svg",
  35997. extra: 2212/2124,
  35998. bottom: 84/2296
  35999. }
  36000. },
  36001. side: {
  36002. height: math.unit(7 + 2/12, "feet"),
  36003. name: "Side",
  36004. image: {
  36005. source: "./media/characters/xoltol/side.svg",
  36006. extra: 2273/2197,
  36007. bottom: 26/2299
  36008. }
  36009. },
  36010. hand: {
  36011. height: math.unit(2.5, "feet"),
  36012. name: "Hand",
  36013. image: {
  36014. source: "./media/characters/xoltol/hand.svg"
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Small-ish",
  36021. height: math.unit(5 + 11/12, "feet")
  36022. },
  36023. {
  36024. name: "Normal",
  36025. height: math.unit(7 + 2/12, "feet")
  36026. },
  36027. {
  36028. name: "\"Macro\"",
  36029. height: math.unit(14 + 9/12, "feet"),
  36030. default: true
  36031. },
  36032. {
  36033. name: "Alternate Height",
  36034. height: math.unit(20, "feet")
  36035. },
  36036. {
  36037. name: "Actually Macro",
  36038. height: math.unit(100, "feet")
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(5 + 2/12, "feet"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/kotetsu-redwood/front.svg",
  36050. extra: 1053/942,
  36051. bottom: 60/1113
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(5 + 2/12, "feet"),
  36059. default: true
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36065. {
  36066. front: {
  36067. height: math.unit(2.4, "meters"),
  36068. weight: math.unit(125, "kg"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/lilith/front.svg",
  36072. extra: 1590/1513,
  36073. bottom: 203/1793
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Humanoid",
  36080. height: math.unit(2.4, "meters")
  36081. },
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(6, "meters"),
  36085. default: true
  36086. },
  36087. {
  36088. name: "Largest",
  36089. height: math.unit(55, "meters")
  36090. },
  36091. ]
  36092. ))
  36093. characterMakers.push(() => makeCharacter(
  36094. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36095. {
  36096. front: {
  36097. height: math.unit(8 + 4/12, "feet"),
  36098. weight: math.unit(535, "lb"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/beh'kah-bolger/front.svg",
  36102. extra: 1660/1603,
  36103. bottom: 37/1697
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(8 + 4/12, "feet"),
  36111. default: true
  36112. },
  36113. {
  36114. name: "Kaiju",
  36115. height: math.unit(250, "feet")
  36116. },
  36117. {
  36118. name: "Still Growing",
  36119. height: math.unit(10, "miles")
  36120. },
  36121. {
  36122. name: "Continental",
  36123. height: math.unit(5000, "miles")
  36124. },
  36125. {
  36126. name: "Final Form",
  36127. height: math.unit(2500000, "miles")
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(7 + 2/12, "feet"),
  36136. weight: math.unit(230, "kg"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/tatyana-milewska/front.svg",
  36140. extra: 1199/1150,
  36141. bottom: 86/1285
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(7 + 2/12, "feet"),
  36149. default: true
  36150. },
  36151. {
  36152. name: "Big",
  36153. height: math.unit(12, "feet")
  36154. },
  36155. {
  36156. name: "Minimacro",
  36157. height: math.unit(20, "feet")
  36158. },
  36159. {
  36160. name: "Macro",
  36161. height: math.unit(120, "feet")
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(7 + 8/12, "feet"),
  36170. weight: math.unit(152, "kg"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/helen-arri/front.svg",
  36174. extra: 440/423,
  36175. bottom: 14/454
  36176. }
  36177. },
  36178. back: {
  36179. height: math.unit(7 + 8/12, "feet"),
  36180. weight: math.unit(152, "kg"),
  36181. name: "Back",
  36182. image: {
  36183. source: "./media/characters/helen-arri/back.svg",
  36184. extra: 443/426,
  36185. bottom: 8/451
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(7 + 8/12, "feet"),
  36193. default: true
  36194. },
  36195. {
  36196. name: "Big",
  36197. height: math.unit(14, "feet")
  36198. },
  36199. {
  36200. name: "Minimacro",
  36201. height: math.unit(24, "feet")
  36202. },
  36203. {
  36204. name: "Macro",
  36205. height: math.unit(140, "feet")
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6, "meters"),
  36214. name: "Front",
  36215. image: {
  36216. source: "./media/characters/ehanu-rehu/front.svg",
  36217. extra: 1800/1800,
  36218. bottom: 59/1859
  36219. }
  36220. },
  36221. },
  36222. [
  36223. {
  36224. name: "Normal",
  36225. height: math.unit(6, "meters"),
  36226. default: true
  36227. },
  36228. ]
  36229. ))
  36230. characterMakers.push(() => makeCharacter(
  36231. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36232. {
  36233. front: {
  36234. height: math.unit(7 + 3/12, "feet"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/renholder/front.svg",
  36238. extra: 3096/2960,
  36239. bottom: 250/3346
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal Bat",
  36246. height: math.unit(7 + 3/12, "feet"),
  36247. default: true
  36248. },
  36249. {
  36250. name: "Slightly Tall Bat",
  36251. height: math.unit(100, "feet")
  36252. },
  36253. {
  36254. name: "Big Bat",
  36255. height: math.unit(1000, "feet")
  36256. },
  36257. {
  36258. name: "City-Sized Bat",
  36259. height: math.unit(200000, "feet")
  36260. },
  36261. {
  36262. name: "Bigger Bat",
  36263. height: math.unit(10000, "miles")
  36264. },
  36265. {
  36266. name: "Solar Sized Bat",
  36267. height: math.unit(100, "AU")
  36268. },
  36269. {
  36270. name: "Galactic Bat",
  36271. height: math.unit(200000, "lightyears")
  36272. },
  36273. {
  36274. name: "Universally Known Bat",
  36275. height: math.unit(1, "universe")
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(6 + 11/12, "feet"),
  36284. weight: math.unit(250, "lb"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/cookiecat/front.svg",
  36288. extra: 893/827,
  36289. bottom: 14/907
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Micro",
  36296. height: math.unit(3, "inches")
  36297. },
  36298. {
  36299. name: "Normal",
  36300. height: math.unit(6 + 11/12, "feet"),
  36301. default: true
  36302. },
  36303. {
  36304. name: "Macro",
  36305. height: math.unit(100, "feet")
  36306. },
  36307. {
  36308. name: "Macro+",
  36309. height: math.unit(404, "feet")
  36310. },
  36311. {
  36312. name: "Megamacro",
  36313. height: math.unit(165, "miles")
  36314. },
  36315. {
  36316. name: "Planetary",
  36317. height: math.unit(4600, "miles")
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(10 + 3/12, "feet"),
  36326. weight: math.unit(1500, "lb"),
  36327. name: "Front",
  36328. image: {
  36329. source: "./media/characters/tux-kusanagi/front.svg",
  36330. extra: 944/840,
  36331. bottom: 39/983
  36332. }
  36333. },
  36334. back: {
  36335. height: math.unit(10 + 3/12, "feet"),
  36336. weight: math.unit(1500, "lb"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/tux-kusanagi/back.svg",
  36340. extra: 941/842,
  36341. bottom: 28/969
  36342. }
  36343. },
  36344. rump: {
  36345. height: math.unit(5.25, "feet"),
  36346. name: "Rump",
  36347. image: {
  36348. source: "./media/characters/tux-kusanagi/rump.svg"
  36349. }
  36350. },
  36351. beak: {
  36352. height: math.unit(1.54, "feet"),
  36353. name: "Beak",
  36354. image: {
  36355. source: "./media/characters/tux-kusanagi/beak.svg"
  36356. }
  36357. },
  36358. },
  36359. [
  36360. {
  36361. name: "Normal",
  36362. height: math.unit(10 + 3/12, "feet"),
  36363. default: true
  36364. },
  36365. ]
  36366. ))
  36367. characterMakers.push(() => makeCharacter(
  36368. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36369. {
  36370. front: {
  36371. height: math.unit(58, "feet"),
  36372. weight: math.unit(200, "tons"),
  36373. name: "Front",
  36374. image: {
  36375. source: "./media/characters/uzarmazari/front.svg",
  36376. extra: 1575/1455,
  36377. bottom: 152/1727
  36378. }
  36379. },
  36380. back: {
  36381. height: math.unit(58, "feet"),
  36382. weight: math.unit(200, "tons"),
  36383. name: "Back",
  36384. image: {
  36385. source: "./media/characters/uzarmazari/back.svg",
  36386. extra: 1585/1510,
  36387. bottom: 157/1742
  36388. }
  36389. },
  36390. head: {
  36391. height: math.unit(26, "feet"),
  36392. name: "Head",
  36393. image: {
  36394. source: "./media/characters/uzarmazari/head.svg"
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Normal",
  36401. height: math.unit(58, "feet"),
  36402. default: true
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36408. {
  36409. side: {
  36410. height: math.unit(15, "feet"),
  36411. name: "Side",
  36412. image: {
  36413. source: "./media/characters/akitu/side.svg",
  36414. extra: 1421/1321,
  36415. bottom: 157/1578
  36416. }
  36417. },
  36418. front: {
  36419. height: math.unit(15, "feet"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/akitu/front.svg",
  36423. extra: 1435/1326,
  36424. bottom: 232/1667
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(15, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(10 + 8/12, "feet"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/azalie-croixland/front.svg",
  36444. extra: 1972/1856,
  36445. bottom: 31/2003
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Original Height",
  36452. height: math.unit(5 + 4/12, "feet")
  36453. },
  36454. {
  36455. name: "Normal Height",
  36456. height: math.unit(10 + 8/12, "feet"),
  36457. default: true
  36458. },
  36459. ]
  36460. ))
  36461. characterMakers.push(() => makeCharacter(
  36462. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36463. {
  36464. side: {
  36465. height: math.unit(7 + 1/12, "feet"),
  36466. weight: math.unit(245, "lb"),
  36467. name: "Side",
  36468. image: {
  36469. source: "./media/characters/kavus-kazian/side.svg",
  36470. extra: 349/342,
  36471. bottom: 15/364
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(7 + 1/12, "feet"),
  36479. default: true
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36485. {
  36486. normalFront: {
  36487. height: math.unit(5 + 11/12, "feet"),
  36488. name: "Front",
  36489. image: {
  36490. source: "./media/characters/moonlight-rose/normal-front.svg",
  36491. extra: 1980/1825,
  36492. bottom: 18/1998
  36493. },
  36494. form: "normal",
  36495. default: true
  36496. },
  36497. normalBack: {
  36498. height: math.unit(5 + 11/12, "feet"),
  36499. name: "Back",
  36500. image: {
  36501. source: "./media/characters/moonlight-rose/normal-back.svg",
  36502. extra: 2010/1839,
  36503. bottom: 10/2020
  36504. },
  36505. form: "normal"
  36506. },
  36507. demonFront: {
  36508. height: math.unit(1.5, "earths"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/moonlight-rose/demon.svg",
  36512. extra: 1400/1294,
  36513. bottom: 45/1445
  36514. },
  36515. form: "demon",
  36516. default: true
  36517. },
  36518. terraFront: {
  36519. height: math.unit(1.5, "earths"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/moonlight-rose/terra.svg"
  36523. },
  36524. form: "terra",
  36525. default: true
  36526. },
  36527. jupiterFront: {
  36528. height: math.unit(69911*2, "km"),
  36529. name: "Front",
  36530. image: {
  36531. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36532. extra: 1367/1286,
  36533. bottom: 55/1422
  36534. },
  36535. form: "jupiter",
  36536. default: true
  36537. },
  36538. neptuneFront: {
  36539. height: math.unit(24622*2, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36543. extra: 1851/1712,
  36544. bottom: 0/1851
  36545. },
  36546. form: "neptune",
  36547. default: true
  36548. },
  36549. },
  36550. [
  36551. {
  36552. name: "\"Natural\" Height",
  36553. height: math.unit(5 + 11/12, "feet"),
  36554. form: "normal"
  36555. },
  36556. {
  36557. name: "Smallest comfortable size",
  36558. height: math.unit(40, "meters"),
  36559. form: "normal"
  36560. },
  36561. {
  36562. name: "Common size",
  36563. height: math.unit(50, "km"),
  36564. form: "normal",
  36565. default: true
  36566. },
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(1.5, "earths"),
  36570. form: "demon",
  36571. default: true
  36572. },
  36573. {
  36574. name: "Universal",
  36575. height: math.unit(15, "universes"),
  36576. form: "demon"
  36577. },
  36578. {
  36579. name: "Earth",
  36580. height: math.unit(1.5, "earths"),
  36581. form: "terra",
  36582. default: true
  36583. },
  36584. {
  36585. name: "Super Earth",
  36586. height: math.unit(67.5, "earths"),
  36587. form: "terra"
  36588. },
  36589. {
  36590. name: "Doesn't fit in a solar system...",
  36591. height: math.unit(1, "galaxy"),
  36592. form: "terra"
  36593. },
  36594. {
  36595. name: "Saturn",
  36596. height: math.unit(58232*2, "km"),
  36597. form: "jupiter"
  36598. },
  36599. {
  36600. name: "Jupiter",
  36601. height: math.unit(69911*2, "km"),
  36602. form: "jupiter",
  36603. default: true
  36604. },
  36605. {
  36606. name: "HD 100546 b",
  36607. height: math.unit(482938, "km"),
  36608. form: "jupiter"
  36609. },
  36610. {
  36611. name: "Enceladus",
  36612. height: math.unit(513*2, "km"),
  36613. form: "neptune"
  36614. },
  36615. {
  36616. name: "Europe",
  36617. height: math.unit(1560*2, "km"),
  36618. form: "neptune"
  36619. },
  36620. {
  36621. name: "Neptune",
  36622. height: math.unit(24622*2, "km"),
  36623. form: "neptune",
  36624. default: true
  36625. },
  36626. {
  36627. name: "CoRoT-9b",
  36628. height: math.unit(75067*2, "km"),
  36629. form: "neptune"
  36630. },
  36631. ],
  36632. {
  36633. "normal": {
  36634. name: "Normal",
  36635. default: true
  36636. },
  36637. "demon": {
  36638. name: "Demon"
  36639. },
  36640. "terra": {
  36641. name: "Terra"
  36642. },
  36643. "jupiter": {
  36644. name: "Jupiter"
  36645. },
  36646. "neptune": {
  36647. name: "Neptune"
  36648. }
  36649. }
  36650. ))
  36651. characterMakers.push(() => makeCharacter(
  36652. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36653. {
  36654. front: {
  36655. height: math.unit(16, "feet"),
  36656. weight: math.unit(610, "kg"),
  36657. name: "Front",
  36658. image: {
  36659. source: "./media/characters/huckle/front.svg",
  36660. extra: 1731/1625,
  36661. bottom: 33/1764
  36662. }
  36663. },
  36664. back: {
  36665. height: math.unit(16, "feet"),
  36666. weight: math.unit(610, "kg"),
  36667. name: "Back",
  36668. image: {
  36669. source: "./media/characters/huckle/back.svg",
  36670. extra: 1738/1651,
  36671. bottom: 37/1775
  36672. }
  36673. },
  36674. laughing: {
  36675. height: math.unit(3.75, "feet"),
  36676. name: "Laughing",
  36677. image: {
  36678. source: "./media/characters/huckle/laughing.svg"
  36679. }
  36680. },
  36681. angry: {
  36682. height: math.unit(4.15, "feet"),
  36683. name: "Angry",
  36684. image: {
  36685. source: "./media/characters/huckle/angry.svg"
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(16, "feet"),
  36693. default: true
  36694. },
  36695. {
  36696. name: "Mini Macro",
  36697. height: math.unit(463, "feet")
  36698. },
  36699. {
  36700. name: "Macro",
  36701. height: math.unit(1680, "meters")
  36702. },
  36703. {
  36704. name: "Mega Macro",
  36705. height: math.unit(175, "km")
  36706. },
  36707. {
  36708. name: "Terra Macro",
  36709. height: math.unit(32, "gigameters")
  36710. },
  36711. {
  36712. name: "Multiverse+",
  36713. height: math.unit(2.56e23, "yottameters")
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(6 + 9/12, "feet"),
  36722. weight: math.unit(280, "lb"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/candy/front.svg",
  36726. extra: 234/217,
  36727. bottom: 11/245
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Really Small",
  36734. height: math.unit(0.1, "nm")
  36735. },
  36736. {
  36737. name: "Micro",
  36738. height: math.unit(2, "inches")
  36739. },
  36740. {
  36741. name: "Normal",
  36742. height: math.unit(6 + 9/12, "feet"),
  36743. default: true
  36744. },
  36745. {
  36746. name: "Small Macro",
  36747. height: math.unit(69, "feet")
  36748. },
  36749. {
  36750. name: "Macro",
  36751. height: math.unit(160, "feet")
  36752. },
  36753. {
  36754. name: "Megamacro",
  36755. height: math.unit(22000, "miles")
  36756. },
  36757. {
  36758. name: "Gigamacro",
  36759. height: math.unit(50000, "miles")
  36760. },
  36761. ]
  36762. ))
  36763. characterMakers.push(() => makeCharacter(
  36764. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36765. {
  36766. front: {
  36767. height: math.unit(4, "feet"),
  36768. weight: math.unit(90, "lb"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/joey-mcdonald/front.svg",
  36772. extra: 1059/852,
  36773. bottom: 33/1092
  36774. }
  36775. },
  36776. back: {
  36777. height: math.unit(4, "feet"),
  36778. weight: math.unit(90, "lb"),
  36779. name: "Back",
  36780. image: {
  36781. source: "./media/characters/joey-mcdonald/back.svg",
  36782. extra: 1077/879,
  36783. bottom: 5/1082
  36784. }
  36785. },
  36786. frontKobold: {
  36787. height: math.unit(4, "feet"),
  36788. weight: math.unit(100, "lb"),
  36789. name: "Front-kobold",
  36790. image: {
  36791. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36792. extra: 1480/1367,
  36793. bottom: 0/1480
  36794. }
  36795. },
  36796. backKobold: {
  36797. height: math.unit(4, "feet"),
  36798. weight: math.unit(100, "lb"),
  36799. name: "Back-kobold",
  36800. image: {
  36801. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36802. extra: 1449/1361,
  36803. bottom: 0/1449
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Normal",
  36810. height: math.unit(4, "feet"),
  36811. default: true
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36817. {
  36818. front: {
  36819. height: math.unit(12 + 6/12, "feet"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/kass-lockheed/front.svg",
  36823. extra: 354/343,
  36824. bottom: 9/363
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(12 + 6/12, "feet"),
  36829. name: "Back",
  36830. image: {
  36831. source: "./media/characters/kass-lockheed/back.svg",
  36832. extra: 364/352,
  36833. bottom: 3/367
  36834. }
  36835. },
  36836. dick: {
  36837. height: math.unit(3.12, "feet"),
  36838. name: "Dick",
  36839. image: {
  36840. source: "./media/characters/kass-lockheed/dick.svg"
  36841. }
  36842. },
  36843. head: {
  36844. height: math.unit(2.6, "feet"),
  36845. name: "Head",
  36846. image: {
  36847. source: "./media/characters/kass-lockheed/head.svg"
  36848. }
  36849. },
  36850. bleh: {
  36851. height: math.unit(2.85, "feet"),
  36852. name: "Bleh",
  36853. image: {
  36854. source: "./media/characters/kass-lockheed/bleh.svg"
  36855. }
  36856. },
  36857. smug: {
  36858. height: math.unit(2.85, "feet"),
  36859. name: "Smug",
  36860. image: {
  36861. source: "./media/characters/kass-lockheed/smug.svg"
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(12 + 6/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(6 + 2/12, "feet"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/taylor/front.svg",
  36881. extra: 639/495,
  36882. bottom: 12/651
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(6 + 2/12, "feet"),
  36890. default: true
  36891. },
  36892. {
  36893. name: "Big",
  36894. height: math.unit(15, "feet")
  36895. },
  36896. {
  36897. name: "Lorg",
  36898. height: math.unit(80, "feet")
  36899. },
  36900. {
  36901. name: "Too Lorg",
  36902. height: math.unit(120, "feet")
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(15, "feet"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/kaizer/front.svg",
  36914. extra: 1612/1436,
  36915. bottom: 43/1655
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Normal",
  36922. height: math.unit(15, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(2, "feet"),
  36932. weight: math.unit(30, "lb"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/sandy/front.svg",
  36936. extra: 1439/1307,
  36937. bottom: 194/1633
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(2, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36951. {
  36952. front: {
  36953. height: math.unit(3, "feet"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/mellvi/front.svg",
  36957. extra: 1831/1630,
  36958. bottom: 58/1889
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(3, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(5 + 11/12, "feet"),
  36975. weight: math.unit(200, "lb"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/shirou/front.svg",
  36979. extra: 2491/2383,
  36980. bottom: 189/2680
  36981. }
  36982. },
  36983. back: {
  36984. height: math.unit(5 + 11/12, "feet"),
  36985. weight: math.unit(200, "lb"),
  36986. name: "Back",
  36987. image: {
  36988. source: "./media/characters/shirou/back.svg",
  36989. extra: 2554/2450,
  36990. bottom: 76/2630
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(5 + 11/12, "feet"),
  36998. default: true
  36999. },
  37000. ]
  37001. ))
  37002. characterMakers.push(() => makeCharacter(
  37003. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37004. {
  37005. front: {
  37006. height: math.unit(6 + 3/12, "feet"),
  37007. weight: math.unit(177, "lb"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/noryu/front.svg",
  37011. extra: 973/885,
  37012. bottom: 10/983
  37013. }
  37014. },
  37015. },
  37016. [
  37017. {
  37018. name: "Normal",
  37019. height: math.unit(6 + 3/12, "feet"),
  37020. default: true
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(5 + 6/12, "feet"),
  37029. weight: math.unit(170, "lb"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/mevolas-rubenido/front.svg",
  37033. extra: 2109/1901,
  37034. bottom: 96/2205
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(5 + 6/12, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(100, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/dee/front.svg",
  37054. extra: 2153/2036,
  37055. bottom: 59/2212
  37056. }
  37057. },
  37058. back: {
  37059. height: math.unit(100, "feet"),
  37060. name: "Back",
  37061. image: {
  37062. source: "./media/characters/dee/back.svg",
  37063. extra: 2183/2058,
  37064. bottom: 75/2258
  37065. }
  37066. },
  37067. foot: {
  37068. height: math.unit(19.43, "feet"),
  37069. name: "Foot",
  37070. image: {
  37071. source: "./media/characters/dee/foot.svg"
  37072. }
  37073. },
  37074. hoof: {
  37075. height: math.unit(20.6, "feet"),
  37076. name: "Hoof",
  37077. image: {
  37078. source: "./media/characters/dee/hoof.svg"
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Macro",
  37085. height: math.unit(100, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(5 + 6/12, "feet"),
  37095. name: "Front",
  37096. image: {
  37097. source: "./media/characters/teh/front.svg",
  37098. extra: 1002/847,
  37099. bottom: 62/1064
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Normal",
  37106. height: math.unit(5 + 6/12, "feet"),
  37107. default: true
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37113. {
  37114. side: {
  37115. height: math.unit(6 + 1/12, "feet"),
  37116. weight: math.unit(204, "lb"),
  37117. name: "Side",
  37118. image: {
  37119. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37120. extra: 974/775,
  37121. bottom: 169/1143
  37122. }
  37123. },
  37124. sitting: {
  37125. height: math.unit(6 + 2/12, "feet"),
  37126. weight: math.unit(204, "lb"),
  37127. name: "Sitting",
  37128. image: {
  37129. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37130. extra: 1175/964,
  37131. bottom: 378/1553
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(6 + 1/12, "feet"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37145. {
  37146. front: {
  37147. height: math.unit(6, "inches"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/tululi/front.svg",
  37151. extra: 1997/1876,
  37152. bottom: 20/2017
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(6, "inches"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(4 + 1/12, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/star/front.svg",
  37172. extra: 1493/1189,
  37173. bottom: 48/1541
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(4 + 1/12, "feet"),
  37181. default: true
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(6 + 3/12, "feet"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/comet/front.svg",
  37193. extra: 1681/1462,
  37194. bottom: 26/1707
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(6 + 3/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(950, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/vortex/front.svg",
  37214. extra: 1497/1434,
  37215. bottom: 56/1553
  37216. }
  37217. },
  37218. maw: {
  37219. height: math.unit(285, "feet"),
  37220. name: "Maw",
  37221. image: {
  37222. source: "./media/characters/vortex/maw.svg"
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Macro",
  37229. height: math.unit(950, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(600, "feet"),
  37239. weight: math.unit(0.02, "grams"),
  37240. name: "Front",
  37241. image: {
  37242. source: "./media/characters/doodle/front.svg",
  37243. extra: 1578/1413,
  37244. bottom: 37/1615
  37245. }
  37246. },
  37247. },
  37248. [
  37249. {
  37250. name: "Macro",
  37251. height: math.unit(600, "feet"),
  37252. default: true
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37258. {
  37259. front: {
  37260. height: math.unit(6 + 6/12, "feet"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/jai/front.svg",
  37264. extra: 1645/1534,
  37265. bottom: 115/1760
  37266. }
  37267. },
  37268. },
  37269. [
  37270. {
  37271. name: "Normal",
  37272. height: math.unit(6 + 6/12, "feet"),
  37273. default: true
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37279. {
  37280. front: {
  37281. height: math.unit(6 + 8/12, "feet"),
  37282. name: "Front",
  37283. image: {
  37284. source: "./media/characters/pixel/front.svg",
  37285. extra: 1900/1735,
  37286. bottom: 63/1963
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(6 + 8/12, "feet"),
  37294. default: true
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37300. {
  37301. back: {
  37302. height: math.unit(4 + 1/12, "feet"),
  37303. weight: math.unit(75, "lb"),
  37304. name: "Back",
  37305. image: {
  37306. source: "./media/characters/rhett/back.svg",
  37307. extra: 930/878,
  37308. bottom: 25/955
  37309. }
  37310. },
  37311. front: {
  37312. height: math.unit(4 + 1/12, "feet"),
  37313. weight: math.unit(75, "lb"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/rhett/front.svg",
  37317. extra: 1682/1586,
  37318. bottom: 92/1774
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Micro",
  37325. height: math.unit(8, "inches")
  37326. },
  37327. {
  37328. name: "Tiny",
  37329. height: math.unit(2, "feet")
  37330. },
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(4 + 1/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(3 + 3/12, "feet"),
  37343. name: "Front",
  37344. image: {
  37345. source: "./media/characters/penny/front.svg",
  37346. extra: 1406/1311,
  37347. bottom: 26/1432
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(3 + 3/12, "feet"),
  37355. default: true
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(4 + 11/12, "feet"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/monty/front.svg",
  37367. extra: 1479/1209,
  37368. bottom: 0/1479
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(4 + 11/12, "feet"),
  37376. default: true
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(8 + 4/12, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/sterling/front.svg",
  37388. extra: 1420/1236,
  37389. bottom: 27/1447
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(8 + 4/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(15, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/marble/front.svg",
  37409. extra: 973/937,
  37410. bottom: 32/1005
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(15, "feet"),
  37418. default: true
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37424. {
  37425. front: {
  37426. height: math.unit(3, "inches"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/powder/front.svg",
  37430. extra: 1504/1334,
  37431. bottom: 518/2022
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Normal",
  37438. height: math.unit(3, "inches"),
  37439. default: true
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(4 + 5/12, "feet"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/joey-raccoon/front.svg",
  37451. extra: 1273/1197,
  37452. bottom: 0/1273
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(4 + 5/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(8 + 4/12, "feet"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/vick/front.svg",
  37472. extra: 2187/2118,
  37473. bottom: 47/2234
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(8 + 4/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(5 + 5/12, "feet"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/mitsy/front.svg",
  37493. extra: 1842/1695,
  37494. bottom: 0/1842
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(5 + 5/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 3/12, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/silvy/front.svg",
  37514. extra: 1995/1836,
  37515. bottom: 225/2220
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(6 + 3/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(3 + 8/12, "feet"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/rodney/front.svg",
  37535. extra: 1956/1747,
  37536. bottom: 31/1987
  37537. }
  37538. },
  37539. frontDressed: {
  37540. height: math.unit(2.9, "feet"),
  37541. name: "Front (Dressed)",
  37542. image: {
  37543. source: "./media/characters/rodney/front-dressed.svg",
  37544. extra: 1382/1241,
  37545. bottom: 385/1767
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(3 + 8/12, "feet"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(5 + 9/12, "feet"),
  37562. weight: math.unit(194, "lbs"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/zakail-sudekai/front.svg",
  37566. extra: 2696/2533,
  37567. bottom: 248/2944
  37568. }
  37569. },
  37570. maw: {
  37571. height: math.unit(1.35, "feet"),
  37572. name: "Maw",
  37573. image: {
  37574. source: "./media/characters/zakail-sudekai/maw.svg"
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(5 + 9/12, "feet"),
  37582. default: true
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(8 + 4/12, "feet"),
  37591. weight: math.unit(1200, "lb"),
  37592. name: "Front",
  37593. image: {
  37594. source: "./media/characters/eleanor/front.svg",
  37595. extra: 1226/1192,
  37596. bottom: 52/1278
  37597. }
  37598. },
  37599. back: {
  37600. height: math.unit(8 + 4/12, "feet"),
  37601. weight: math.unit(1200, "lb"),
  37602. name: "Back",
  37603. image: {
  37604. source: "./media/characters/eleanor/back.svg",
  37605. extra: 1242/1184,
  37606. bottom: 60/1302
  37607. }
  37608. },
  37609. head: {
  37610. height: math.unit(2.62, "feet"),
  37611. name: "Head",
  37612. image: {
  37613. source: "./media/characters/eleanor/head.svg"
  37614. }
  37615. },
  37616. },
  37617. [
  37618. {
  37619. name: "Normal",
  37620. height: math.unit(8 + 4/12, "feet"),
  37621. default: true
  37622. },
  37623. ]
  37624. ))
  37625. characterMakers.push(() => makeCharacter(
  37626. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37627. {
  37628. front: {
  37629. height: math.unit(8 + 4/12, "feet"),
  37630. weight: math.unit(750, "lb"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/tanya/front.svg",
  37634. extra: 1749/1615,
  37635. bottom: 33/1782
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(8 + 4/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(5, "feet"),
  37652. weight: math.unit(225, "lb"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/cindy/front.svg",
  37656. extra: 1320/1250,
  37657. bottom: 42/1362
  37658. }
  37659. },
  37660. frontDressed: {
  37661. height: math.unit(5, "feet"),
  37662. weight: math.unit(225, "lb"),
  37663. name: "Front (Dressed)",
  37664. image: {
  37665. source: "./media/characters/cindy/front-dressed.svg",
  37666. extra: 1320/1250,
  37667. bottom: 42/1362
  37668. }
  37669. },
  37670. back: {
  37671. height: math.unit(5, "feet"),
  37672. weight: math.unit(225, "lb"),
  37673. name: "Back",
  37674. image: {
  37675. source: "./media/characters/cindy/back.svg",
  37676. extra: 1384/1346,
  37677. bottom: 14/1398
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(5, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(6 + 9/12, "feet"),
  37694. weight: math.unit(440, "lb"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/wilbur-owen/front.svg",
  37698. extra: 1575/1448,
  37699. bottom: 72/1647
  37700. }
  37701. },
  37702. back: {
  37703. height: math.unit(6 + 9/12, "feet"),
  37704. weight: math.unit(440, "lb"),
  37705. name: "Back",
  37706. image: {
  37707. source: "./media/characters/wilbur-owen/back.svg",
  37708. extra: 1578/1445,
  37709. bottom: 36/1614
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(6 + 9/12, "feet"),
  37717. default: true
  37718. },
  37719. ]
  37720. ))
  37721. characterMakers.push(() => makeCharacter(
  37722. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37723. {
  37724. front: {
  37725. height: math.unit(6 + 5/12, "feet"),
  37726. weight: math.unit(650, "lb"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/keegan/front.svg",
  37730. extra: 2387/2198,
  37731. bottom: 33/2420
  37732. }
  37733. },
  37734. side: {
  37735. height: math.unit(6 + 5/12, "feet"),
  37736. weight: math.unit(650, "lb"),
  37737. name: "Side",
  37738. image: {
  37739. source: "./media/characters/keegan/side.svg",
  37740. extra: 2390/2202,
  37741. bottom: 47/2437
  37742. }
  37743. },
  37744. back: {
  37745. height: math.unit(6 + 5/12, "feet"),
  37746. weight: math.unit(650, "lb"),
  37747. name: "Back",
  37748. image: {
  37749. source: "./media/characters/keegan/back.svg",
  37750. extra: 2418/2268,
  37751. bottom: 15/2433
  37752. }
  37753. },
  37754. frontSfw: {
  37755. height: math.unit(6 + 5/12, "feet"),
  37756. weight: math.unit(650, "lb"),
  37757. name: "Front (SFW)",
  37758. image: {
  37759. source: "./media/characters/keegan/front-sfw.svg",
  37760. extra: 2387/2198,
  37761. bottom: 33/2420
  37762. }
  37763. },
  37764. beans: {
  37765. height: math.unit(1.85, "feet"),
  37766. name: "Beans",
  37767. image: {
  37768. source: "./media/characters/keegan/beans.svg"
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(6 + 5/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(9, "feet"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/colton/front.svg",
  37788. extra: 1589/1326,
  37789. bottom: 139/1728
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(9, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(2 + 9/12, "feet"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/bora/front.svg",
  37809. extra: 1265/1250,
  37810. bottom: 24/1289
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(2 + 9/12, "feet"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(8, "feet"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/myu-myu/front.svg",
  37830. extra: 1949/1857,
  37831. bottom: 90/2039
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(8, "feet"),
  37839. default: true
  37840. },
  37841. {
  37842. name: "Big",
  37843. height: math.unit(15, "feet")
  37844. },
  37845. {
  37846. name: "BIG",
  37847. height: math.unit(25, "feet")
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37853. {
  37854. side: {
  37855. height: math.unit(7 + 5/12, "feet"),
  37856. weight: math.unit(2800, "lb"),
  37857. name: "Side",
  37858. image: {
  37859. source: "./media/characters/haloren/side.svg",
  37860. extra: 1793/409,
  37861. bottom: 59/1852
  37862. }
  37863. },
  37864. frontPaw: {
  37865. height: math.unit(2.36, "feet"),
  37866. name: "Front paw",
  37867. image: {
  37868. source: "./media/characters/haloren/front-paw.svg"
  37869. }
  37870. },
  37871. hindPaw: {
  37872. height: math.unit(3.18, "feet"),
  37873. name: "Hind paw",
  37874. image: {
  37875. source: "./media/characters/haloren/hind-paw.svg"
  37876. }
  37877. },
  37878. maw: {
  37879. height: math.unit(5.05, "feet"),
  37880. name: "Maw",
  37881. image: {
  37882. source: "./media/characters/haloren/maw.svg"
  37883. }
  37884. },
  37885. dick: {
  37886. height: math.unit(2.90, "feet"),
  37887. name: "Dick",
  37888. image: {
  37889. source: "./media/characters/haloren/dick.svg"
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Normal",
  37896. height: math.unit(7 + 5/12, "feet"),
  37897. default: true
  37898. },
  37899. {
  37900. name: "Enhanced",
  37901. height: math.unit(14 + 3/12, "feet")
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(171, "cm"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/kimmy/front.svg",
  37913. extra: 1491/1435,
  37914. bottom: 53/1544
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Small",
  37921. height: math.unit(9, "cm")
  37922. },
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(171, "cm"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(8, "feet"),
  37935. weight: math.unit(300, "lb"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/galeboomer/front.svg",
  37939. extra: 4651/4415,
  37940. bottom: 162/4813
  37941. }
  37942. },
  37943. back: {
  37944. height: math.unit(8, "feet"),
  37945. weight: math.unit(300, "lb"),
  37946. name: "Back",
  37947. image: {
  37948. source: "./media/characters/galeboomer/back.svg",
  37949. extra: 4544/4314,
  37950. bottom: 16/4560
  37951. }
  37952. },
  37953. frontAlt: {
  37954. height: math.unit(8, "feet"),
  37955. weight: math.unit(300, "lb"),
  37956. name: "Front (Alt)",
  37957. image: {
  37958. source: "./media/characters/galeboomer/front-alt.svg",
  37959. extra: 4458/4228,
  37960. bottom: 68/4526
  37961. }
  37962. },
  37963. maw: {
  37964. height: math.unit(1.2, "feet"),
  37965. name: "Maw",
  37966. image: {
  37967. source: "./media/characters/galeboomer/maw.svg"
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(8, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(5 + 9/12, "feet"),
  37984. weight: math.unit(120, "lb"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/chyr/front.svg",
  37988. extra: 1323/1254,
  37989. bottom: 63/1386
  37990. }
  37991. },
  37992. back: {
  37993. height: math.unit(5 + 9/12, "feet"),
  37994. weight: math.unit(120, "lb"),
  37995. name: "Back",
  37996. image: {
  37997. source: "./media/characters/chyr/back.svg",
  37998. extra: 1323/1252,
  37999. bottom: 48/1371
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(5 + 9/12, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(7, "feet"),
  38016. weight: math.unit(310, "lb"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/solarus/front.svg",
  38020. extra: 2415/2021,
  38021. bottom: 103/2518
  38022. }
  38023. },
  38024. back: {
  38025. height: math.unit(7, "feet"),
  38026. weight: math.unit(310, "lb"),
  38027. name: "Back",
  38028. image: {
  38029. source: "./media/characters/solarus/back.svg",
  38030. extra: 2463/2089,
  38031. bottom: 79/2542
  38032. }
  38033. },
  38034. },
  38035. [
  38036. {
  38037. name: "Normal",
  38038. height: math.unit(7, "feet"),
  38039. default: true
  38040. },
  38041. ]
  38042. ))
  38043. characterMakers.push(() => makeCharacter(
  38044. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38045. {
  38046. front: {
  38047. height: math.unit(16, "feet"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38051. extra: 1844/1780,
  38052. bottom: 58/1902
  38053. }
  38054. },
  38055. winterCoat: {
  38056. height: math.unit(16, "feet"),
  38057. name: "Winter Coat",
  38058. image: {
  38059. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38060. extra: 1807/1775,
  38061. bottom: 69/1876
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(16, "feet"),
  38069. default: true
  38070. },
  38071. {
  38072. name: "Chicago Size",
  38073. height: math.unit(560, "feet")
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(11 + 6/12, "feet"),
  38082. weight: math.unit(1366, "lb"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/lexor/front.svg",
  38086. extra: 1560/1481,
  38087. bottom: 211/1771
  38088. }
  38089. },
  38090. back: {
  38091. height: math.unit(11 + 6/12, "feet"),
  38092. weight: math.unit(1366, "lb"),
  38093. name: "Back",
  38094. image: {
  38095. source: "./media/characters/lexor/back.svg",
  38096. extra: 1614/1533,
  38097. bottom: 76/1690
  38098. }
  38099. },
  38100. maw: {
  38101. height: math.unit(3, "feet"),
  38102. name: "Maw",
  38103. image: {
  38104. source: "./media/characters/lexor/maw.svg"
  38105. }
  38106. },
  38107. dick: {
  38108. height: math.unit(2.59, "feet"),
  38109. name: "Dick",
  38110. image: {
  38111. source: "./media/characters/lexor/dick.svg"
  38112. }
  38113. },
  38114. },
  38115. [
  38116. {
  38117. name: "Normal",
  38118. height: math.unit(11 + 6/12, "feet"),
  38119. default: true
  38120. },
  38121. ]
  38122. ))
  38123. characterMakers.push(() => makeCharacter(
  38124. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38125. {
  38126. front: {
  38127. height: math.unit(5 + 8/12, "feet"),
  38128. name: "Front",
  38129. image: {
  38130. source: "./media/characters/magnum/front.svg",
  38131. extra: 942/855,
  38132. bottom: 26/968
  38133. }
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(5 + 8/12, "feet"),
  38140. default: true
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38146. {
  38147. front: {
  38148. height: math.unit(18 + 4/12, "feet"),
  38149. weight: math.unit(1500, "kg"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/solas-sharpsman/front.svg",
  38153. extra: 1698/1589,
  38154. bottom: 0/1698
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(18 + 4/12, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(5 + 5/12, "feet"),
  38171. weight: math.unit(180, "lb"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/october/front.svg",
  38175. extra: 1800/1650,
  38176. bottom: 0/1800
  38177. }
  38178. },
  38179. frontNsfw: {
  38180. height: math.unit(5 + 5/12, "feet"),
  38181. weight: math.unit(180, "lb"),
  38182. name: "Front (NSFW)",
  38183. image: {
  38184. source: "./media/characters/october/front-nsfw.svg",
  38185. extra: 1392/1307,
  38186. bottom: 42/1434
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(5 + 5/12, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38200. {
  38201. front: {
  38202. height: math.unit(8 + 6/12, "feet"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/essynkardi/front.svg",
  38206. extra: 1914/1846,
  38207. bottom: 22/1936
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Normal",
  38214. height: math.unit(8 + 6/12, "feet"),
  38215. default: true
  38216. },
  38217. ]
  38218. ))
  38219. characterMakers.push(() => makeCharacter(
  38220. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38221. {
  38222. front: {
  38223. height: math.unit(6 + 6/12, "feet"),
  38224. weight: math.unit(7, "lb"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/icky/front.svg",
  38228. extra: 813/782,
  38229. bottom: 66/879
  38230. }
  38231. },
  38232. back: {
  38233. height: math.unit(6 + 6/12, "feet"),
  38234. weight: math.unit(7, "lb"),
  38235. name: "Back",
  38236. image: {
  38237. source: "./media/characters/icky/back.svg",
  38238. extra: 754/735,
  38239. bottom: 56/810
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(6 + 6/12, "feet"),
  38247. default: true
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38253. {
  38254. front: {
  38255. height: math.unit(15, "feet"),
  38256. name: "Front",
  38257. image: {
  38258. source: "./media/characters/rojas/front.svg",
  38259. extra: 1462/1408,
  38260. bottom: 95/1557
  38261. }
  38262. },
  38263. back: {
  38264. height: math.unit(15, "feet"),
  38265. name: "Back",
  38266. image: {
  38267. source: "./media/characters/rojas/back.svg",
  38268. extra: 1023/954,
  38269. bottom: 28/1051
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(15, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38283. {
  38284. frontHuman: {
  38285. height: math.unit(5 + 7/12, "feet"),
  38286. name: "Front (Human)",
  38287. image: {
  38288. source: "./media/characters/alek-dryagan/front-human.svg",
  38289. extra: 1687/1667,
  38290. bottom: 69/1756
  38291. }
  38292. },
  38293. backHuman: {
  38294. height: math.unit(5 + 7/12, "feet"),
  38295. name: "Back (Human)",
  38296. image: {
  38297. source: "./media/characters/alek-dryagan/back-human.svg",
  38298. extra: 1670/1649,
  38299. bottom: 65/1735
  38300. }
  38301. },
  38302. frontDemi: {
  38303. height: math.unit(65, "feet"),
  38304. name: "Front (Demi)",
  38305. image: {
  38306. source: "./media/characters/alek-dryagan/front-demi.svg",
  38307. extra: 1669/1642,
  38308. bottom: 49/1718
  38309. }
  38310. },
  38311. backDemi: {
  38312. height: math.unit(65, "feet"),
  38313. name: "Back (Demi)",
  38314. image: {
  38315. source: "./media/characters/alek-dryagan/back-demi.svg",
  38316. extra: 1658/1637,
  38317. bottom: 40/1698
  38318. }
  38319. },
  38320. mawHuman: {
  38321. height: math.unit(0.3, "feet"),
  38322. name: "Maw (Human)",
  38323. image: {
  38324. source: "./media/characters/alek-dryagan/maw-human.svg"
  38325. }
  38326. },
  38327. mawDemi: {
  38328. height: math.unit(3.8, "feet"),
  38329. name: "Maw (Demi)",
  38330. image: {
  38331. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(5 + 7/12, "feet"),
  38339. default: true
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38345. {
  38346. frontHuman: {
  38347. height: math.unit(5 + 2/12, "feet"),
  38348. name: "Front (Human)",
  38349. image: {
  38350. source: "./media/characters/gen/front-human.svg",
  38351. extra: 1627/1538,
  38352. bottom: 71/1698
  38353. }
  38354. },
  38355. backHuman: {
  38356. height: math.unit(5 + 2/12, "feet"),
  38357. name: "Back (Human)",
  38358. image: {
  38359. source: "./media/characters/gen/back-human.svg",
  38360. extra: 1638/1548,
  38361. bottom: 69/1707
  38362. }
  38363. },
  38364. frontDemi: {
  38365. height: math.unit(5 + 2/12, "feet"),
  38366. name: "Front (Demi)",
  38367. image: {
  38368. source: "./media/characters/gen/front-demi.svg",
  38369. extra: 1627/1538,
  38370. bottom: 71/1698
  38371. }
  38372. },
  38373. backDemi: {
  38374. height: math.unit(5 + 2/12, "feet"),
  38375. name: "Back (Demi)",
  38376. image: {
  38377. source: "./media/characters/gen/back-demi.svg",
  38378. extra: 1638/1548,
  38379. bottom: 69/1707
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(5 + 2/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38393. {
  38394. frontImp: {
  38395. height: math.unit(1 + 11/12, "feet"),
  38396. name: "Front (Imp)",
  38397. image: {
  38398. source: "./media/characters/max-kobold/front-imp.svg",
  38399. extra: 1238/1134,
  38400. bottom: 81/1319
  38401. }
  38402. },
  38403. backImp: {
  38404. height: math.unit(1 + 11/12, "feet"),
  38405. name: "Back (Imp)",
  38406. image: {
  38407. source: "./media/characters/max-kobold/back-imp.svg",
  38408. extra: 1334/1175,
  38409. bottom: 34/1368
  38410. }
  38411. },
  38412. frontDemi: {
  38413. height: math.unit(5 + 9/12, "feet"),
  38414. name: "Front (Demi)",
  38415. image: {
  38416. source: "./media/characters/max-kobold/front-demi.svg",
  38417. extra: 1715/1685,
  38418. bottom: 54/1769
  38419. }
  38420. },
  38421. backDemi: {
  38422. height: math.unit(5 + 9/12, "feet"),
  38423. name: "Back (Demi)",
  38424. image: {
  38425. source: "./media/characters/max-kobold/back-demi.svg",
  38426. extra: 1752/1729,
  38427. bottom: 41/1793
  38428. }
  38429. },
  38430. handImp: {
  38431. height: math.unit(0.45, "feet"),
  38432. name: "Hand (Imp)",
  38433. image: {
  38434. source: "./media/characters/max-kobold/hand.svg"
  38435. }
  38436. },
  38437. pawImp: {
  38438. height: math.unit(0.46, "feet"),
  38439. name: "Paw (Imp)",
  38440. image: {
  38441. source: "./media/characters/max-kobold/paw.svg"
  38442. }
  38443. },
  38444. handDemi: {
  38445. height: math.unit(0.80, "feet"),
  38446. name: "Hand (Demi)",
  38447. image: {
  38448. source: "./media/characters/max-kobold/hand.svg"
  38449. }
  38450. },
  38451. pawDemi: {
  38452. height: math.unit(1.1, "feet"),
  38453. name: "Paw (Demi)",
  38454. image: {
  38455. source: "./media/characters/max-kobold/paw.svg"
  38456. }
  38457. },
  38458. headImp: {
  38459. height: math.unit(1.33, "feet"),
  38460. name: "Head (Imp)",
  38461. image: {
  38462. source: "./media/characters/max-kobold/head-imp.svg"
  38463. }
  38464. },
  38465. mawImp: {
  38466. height: math.unit(0.75, "feet"),
  38467. name: "Maw (Imp)",
  38468. image: {
  38469. source: "./media/characters/max-kobold/maw-imp.svg"
  38470. }
  38471. },
  38472. mawDemi: {
  38473. height: math.unit(0.42, "feet"),
  38474. name: "Maw (Demi)",
  38475. image: {
  38476. source: "./media/characters/max-kobold/maw-demi.svg"
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(1 + 11/12, "feet"),
  38484. default: true
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38490. {
  38491. front: {
  38492. height: math.unit(7 + 5/12, "feet"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/carbon/front.svg",
  38496. extra: 1754/1689,
  38497. bottom: 65/1819
  38498. }
  38499. },
  38500. back: {
  38501. height: math.unit(7 + 5/12, "feet"),
  38502. name: "Back",
  38503. image: {
  38504. source: "./media/characters/carbon/back.svg",
  38505. extra: 1762/1695,
  38506. bottom: 24/1786
  38507. }
  38508. },
  38509. frontGigantamax: {
  38510. height: math.unit(150, "feet"),
  38511. name: "Front (Gigantamax)",
  38512. image: {
  38513. source: "./media/characters/carbon/front-gigantamax.svg",
  38514. extra: 1826/1669,
  38515. bottom: 59/1885
  38516. }
  38517. },
  38518. backGigantamax: {
  38519. height: math.unit(150, "feet"),
  38520. name: "Back (Gigantamax)",
  38521. image: {
  38522. source: "./media/characters/carbon/back-gigantamax.svg",
  38523. extra: 1796/1653,
  38524. bottom: 53/1849
  38525. }
  38526. },
  38527. maw: {
  38528. height: math.unit(0.48, "feet"),
  38529. name: "Maw",
  38530. image: {
  38531. source: "./media/characters/carbon/maw.svg"
  38532. }
  38533. },
  38534. mawGigantamax: {
  38535. height: math.unit(7.5, "feet"),
  38536. name: "Maw (Gigantamax)",
  38537. image: {
  38538. source: "./media/characters/carbon/maw-gigantamax.svg"
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(7 + 5/12, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(6, "feet"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/maverick/front.svg",
  38558. extra: 1672/1661,
  38559. bottom: 85/1757
  38560. }
  38561. },
  38562. back: {
  38563. height: math.unit(6, "feet"),
  38564. name: "Back",
  38565. image: {
  38566. source: "./media/characters/maverick/back.svg",
  38567. extra: 1642/1631,
  38568. bottom: 38/1680
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(6, "feet"),
  38576. default: true
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(15, "feet"),
  38585. weight: math.unit(615, "lb"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/grockle/front.svg",
  38589. extra: 1535/1427,
  38590. bottom: 56/1591
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(15, "feet"),
  38598. default: true
  38599. },
  38600. {
  38601. name: "Large",
  38602. height: math.unit(150, "feet")
  38603. },
  38604. {
  38605. name: "Macro",
  38606. height: math.unit(1876, "feet")
  38607. },
  38608. {
  38609. name: "Mega Macro",
  38610. height: math.unit(121940, "feet")
  38611. },
  38612. {
  38613. name: "Giga Macro",
  38614. height: math.unit(750, "km")
  38615. },
  38616. {
  38617. name: "Tera Macro",
  38618. height: math.unit(750000, "km")
  38619. },
  38620. {
  38621. name: "Galactic",
  38622. height: math.unit(1.4e5, "km")
  38623. },
  38624. {
  38625. name: "Godlike",
  38626. height: math.unit(9.8e280, "galaxies")
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(11, "meters"),
  38635. weight: math.unit(20, "tonnes"),
  38636. name: "Front",
  38637. image: {
  38638. source: "./media/characters/alistair/front.svg",
  38639. extra: 1265/1009,
  38640. bottom: 93/1358
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(11, "meters"),
  38648. default: true
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(5 + 8/12, "feet"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/haruka/front.svg",
  38660. extra: 2012/1952,
  38661. bottom: 0/2012
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(5 + 8/12, "feet"),
  38669. default: true
  38670. },
  38671. ]
  38672. ))
  38673. characterMakers.push(() => makeCharacter(
  38674. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38675. {
  38676. back: {
  38677. height: math.unit(9, "feet"),
  38678. name: "Back",
  38679. image: {
  38680. source: "./media/characters/vivian-sylveon/back.svg",
  38681. extra: 1853/1714,
  38682. bottom: 0/1853
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(9, "feet"),
  38690. default: true
  38691. },
  38692. {
  38693. name: "Macro",
  38694. height: math.unit(500, "feet")
  38695. },
  38696. {
  38697. name: "Megamacro",
  38698. height: math.unit(600, "miles")
  38699. },
  38700. {
  38701. name: "Gigamacro",
  38702. height: math.unit(30000, "miles")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38708. {
  38709. anthro: {
  38710. height: math.unit(5 + 10/12, "feet"),
  38711. weight: math.unit(100, "lb"),
  38712. name: "Anthro",
  38713. image: {
  38714. source: "./media/characters/daiki/anthro.svg",
  38715. extra: 1115/1027,
  38716. bottom: 69/1184
  38717. }
  38718. },
  38719. feral: {
  38720. height: math.unit(200, "feet"),
  38721. name: "Feral",
  38722. image: {
  38723. source: "./media/characters/daiki/feral.svg",
  38724. extra: 1256/313,
  38725. bottom: 39/1295
  38726. }
  38727. },
  38728. feralHead: {
  38729. height: math.unit(171, "feet"),
  38730. name: "Feral Head",
  38731. image: {
  38732. source: "./media/characters/daiki/feral-head.svg"
  38733. }
  38734. },
  38735. manaDragon: {
  38736. height: math.unit(170, "meters"),
  38737. name: "Mana-dragon",
  38738. image: {
  38739. source: "./media/characters/daiki/mana-dragon.svg",
  38740. extra: 763/420,
  38741. bottom: 97/860
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(5 + 10/12, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38755. {
  38756. fullyEquippedFront: {
  38757. height: math.unit(3 + 1/12, "feet"),
  38758. weight: math.unit(24, "lb"),
  38759. name: "Fully Equipped (Front)",
  38760. image: {
  38761. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38762. extra: 687/605,
  38763. bottom: 18/705
  38764. }
  38765. },
  38766. fullyEquippedBack: {
  38767. height: math.unit(3 + 1/12, "feet"),
  38768. weight: math.unit(24, "lb"),
  38769. name: "Fully Equipped (Back)",
  38770. image: {
  38771. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38772. extra: 689/590,
  38773. bottom: 18/707
  38774. }
  38775. },
  38776. dailyWear: {
  38777. height: math.unit(3 + 1/12, "feet"),
  38778. weight: math.unit(24, "lb"),
  38779. name: "Daily Wear",
  38780. image: {
  38781. source: "./media/characters/tea-spot/daily-wear.svg",
  38782. extra: 701/620,
  38783. bottom: 21/722
  38784. }
  38785. },
  38786. maidWork: {
  38787. height: math.unit(3 + 1/12, "feet"),
  38788. weight: math.unit(24, "lb"),
  38789. name: "Maid Work",
  38790. image: {
  38791. source: "./media/characters/tea-spot/maid-work.svg",
  38792. extra: 693/609,
  38793. bottom: 15/708
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(3 + 1/12, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(175, "cm"),
  38810. weight: math.unit(75, "kg"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/chee/front.svg",
  38814. extra: 1796/1740,
  38815. bottom: 40/1836
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Micro-Micro",
  38822. height: math.unit(1, "nm")
  38823. },
  38824. {
  38825. name: "Micro-erst",
  38826. height: math.unit(1, "micrometer")
  38827. },
  38828. {
  38829. name: "Micro-er",
  38830. height: math.unit(1, "cm")
  38831. },
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(175, "cm"),
  38835. default: true
  38836. },
  38837. {
  38838. name: "Macro",
  38839. height: math.unit(100, "m")
  38840. },
  38841. {
  38842. name: "Macro-er",
  38843. height: math.unit(1, "km")
  38844. },
  38845. {
  38846. name: "Macro-erst",
  38847. height: math.unit(10, "km")
  38848. },
  38849. {
  38850. name: "Macro-Macro",
  38851. height: math.unit(100, "km")
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(11 + 9/12, "feet"),
  38860. weight: math.unit(935, "lb"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/kingsley/front.svg",
  38864. extra: 1803/1674,
  38865. bottom: 127/1930
  38866. }
  38867. },
  38868. frontNude: {
  38869. height: math.unit(11 + 9/12, "feet"),
  38870. weight: math.unit(935, "lb"),
  38871. name: "Front (Nude)",
  38872. image: {
  38873. source: "./media/characters/kingsley/front-nude.svg",
  38874. extra: 1803/1674,
  38875. bottom: 127/1930
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(11 + 9/12, "feet"),
  38883. default: true
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38889. {
  38890. side: {
  38891. height: math.unit(9, "feet"),
  38892. name: "Side",
  38893. image: {
  38894. source: "./media/characters/rymel/side.svg",
  38895. extra: 792/469,
  38896. bottom: 121/913
  38897. }
  38898. },
  38899. maw: {
  38900. height: math.unit(2.4, "meters"),
  38901. name: "Maw",
  38902. image: {
  38903. source: "./media/characters/rymel/maw.svg"
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "House Drake",
  38910. height: math.unit(2, "feet")
  38911. },
  38912. {
  38913. name: "Reduced",
  38914. height: math.unit(4.5, "feet")
  38915. },
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(9, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(1.74, "meters"),
  38928. weight: math.unit(55, "kg"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/rubus/front.svg",
  38932. extra: 1894/1742,
  38933. bottom: 44/1938
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(1.74, "meters"),
  38941. default: true
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(5 + 2/12, "feet"),
  38950. weight: math.unit(112, "lb"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/cassie-kingston/front.svg",
  38954. extra: 1438/1390,
  38955. bottom: 47/1485
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Normal",
  38962. height: math.unit(5 + 2/12, "feet"),
  38963. default: true
  38964. },
  38965. {
  38966. name: "Macro",
  38967. height: math.unit(128, "feet")
  38968. },
  38969. {
  38970. name: "Megamacro",
  38971. height: math.unit(2.56, "miles")
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(7, "feet"),
  38980. name: "Front",
  38981. image: {
  38982. source: "./media/characters/fox/front.svg",
  38983. extra: 1798/1703,
  38984. bottom: 55/1853
  38985. }
  38986. },
  38987. back: {
  38988. height: math.unit(7, "feet"),
  38989. name: "Back",
  38990. image: {
  38991. source: "./media/characters/fox/back.svg",
  38992. extra: 1748/1649,
  38993. bottom: 32/1780
  38994. }
  38995. },
  38996. head: {
  38997. height: math.unit(1.95, "feet"),
  38998. name: "Head",
  38999. image: {
  39000. source: "./media/characters/fox/head.svg"
  39001. }
  39002. },
  39003. dick: {
  39004. height: math.unit(1.33, "feet"),
  39005. name: "Dick",
  39006. image: {
  39007. source: "./media/characters/fox/dick.svg"
  39008. }
  39009. },
  39010. foot: {
  39011. height: math.unit(1, "feet"),
  39012. name: "Foot",
  39013. image: {
  39014. source: "./media/characters/fox/foot.svg"
  39015. }
  39016. },
  39017. paw: {
  39018. height: math.unit(0.92, "feet"),
  39019. name: "Paw",
  39020. image: {
  39021. source: "./media/characters/fox/paw.svg"
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "Small",
  39028. height: math.unit(3, "inches")
  39029. },
  39030. {
  39031. name: "\"Realistic\"",
  39032. height: math.unit(7, "feet")
  39033. },
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(150, "feet"),
  39037. default: true
  39038. },
  39039. {
  39040. name: "BIG",
  39041. height: math.unit(1200, "feet")
  39042. },
  39043. {
  39044. name: "👀",
  39045. height: math.unit(5, "miles")
  39046. },
  39047. {
  39048. name: "👀👀👀",
  39049. height: math.unit(64, "miles")
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(625, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/asonja-rossa/front.svg",
  39061. extra: 1833/1686,
  39062. bottom: 24/1857
  39063. }
  39064. },
  39065. back: {
  39066. height: math.unit(625, "feet"),
  39067. name: "Back",
  39068. image: {
  39069. source: "./media/characters/asonja-rossa/back.svg",
  39070. extra: 1852/1753,
  39071. bottom: 26/1878
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Macro",
  39078. height: math.unit(625, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39085. {
  39086. side: {
  39087. height: math.unit(8, "feet"),
  39088. name: "Side",
  39089. image: {
  39090. source: "./media/characters/rezukii/side.svg",
  39091. extra: 979/542,
  39092. bottom: 87/1066
  39093. }
  39094. },
  39095. sitting: {
  39096. height: math.unit(14.6, "feet"),
  39097. name: "Sitting",
  39098. image: {
  39099. source: "./media/characters/rezukii/sitting.svg",
  39100. extra: 1023/813,
  39101. bottom: 45/1068
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Tiny",
  39108. height: math.unit(2, "feet")
  39109. },
  39110. {
  39111. name: "Smol",
  39112. height: math.unit(4, "feet")
  39113. },
  39114. {
  39115. name: "Normal",
  39116. height: math.unit(8, "feet"),
  39117. default: true
  39118. },
  39119. {
  39120. name: "Big",
  39121. height: math.unit(12, "feet")
  39122. },
  39123. {
  39124. name: "Macro",
  39125. height: math.unit(30, "feet")
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(14, "feet"),
  39134. weight: math.unit(9.5, "tonnes"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/dawnheart/front.svg",
  39138. extra: 2792/2675,
  39139. bottom: 64/2856
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Normal",
  39146. height: math.unit(14, "feet"),
  39147. default: true
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39153. {
  39154. front: {
  39155. height: math.unit(1.7, "m"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/gladi/front.svg",
  39159. extra: 1460/1362,
  39160. bottom: 19/1479
  39161. }
  39162. },
  39163. back: {
  39164. height: math.unit(1.7, "m"),
  39165. name: "Back",
  39166. image: {
  39167. source: "./media/characters/gladi/back.svg",
  39168. extra: 1459/1357,
  39169. bottom: 12/1471
  39170. }
  39171. },
  39172. feral: {
  39173. height: math.unit(2.05, "m"),
  39174. name: "Feral",
  39175. image: {
  39176. source: "./media/characters/gladi/feral.svg",
  39177. extra: 821/557,
  39178. bottom: 91/912
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Shortest",
  39185. height: math.unit(70, "cm")
  39186. },
  39187. {
  39188. name: "Normal",
  39189. height: math.unit(1.7, "m")
  39190. },
  39191. {
  39192. name: "Macro",
  39193. height: math.unit(10, "m"),
  39194. default: true
  39195. },
  39196. {
  39197. name: "Tallest",
  39198. height: math.unit(200, "m")
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39204. {
  39205. front: {
  39206. height: math.unit(5 + 7/12, "feet"),
  39207. weight: math.unit(2, "tons"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/erdno/front.svg",
  39211. extra: 1234/1129,
  39212. bottom: 35/1269
  39213. }
  39214. },
  39215. angled: {
  39216. height: math.unit(5 + 7/12, "feet"),
  39217. weight: math.unit(2, "tons"),
  39218. name: "Angled",
  39219. image: {
  39220. source: "./media/characters/erdno/angled.svg",
  39221. extra: 1185/1139,
  39222. bottom: 36/1221
  39223. }
  39224. },
  39225. side: {
  39226. height: math.unit(5 + 7/12, "feet"),
  39227. weight: math.unit(2, "tons"),
  39228. name: "Side",
  39229. image: {
  39230. source: "./media/characters/erdno/side.svg",
  39231. extra: 1191/1144,
  39232. bottom: 40/1231
  39233. }
  39234. },
  39235. back: {
  39236. height: math.unit(5 + 7/12, "feet"),
  39237. weight: math.unit(2, "tons"),
  39238. name: "Back",
  39239. image: {
  39240. source: "./media/characters/erdno/back.svg",
  39241. extra: 1202/1146,
  39242. bottom: 17/1219
  39243. }
  39244. },
  39245. frontNsfw: {
  39246. height: math.unit(5 + 7/12, "feet"),
  39247. weight: math.unit(2, "tons"),
  39248. name: "Front (NSFW)",
  39249. image: {
  39250. source: "./media/characters/erdno/front-nsfw.svg",
  39251. extra: 1234/1129,
  39252. bottom: 35/1269
  39253. }
  39254. },
  39255. angledNsfw: {
  39256. height: math.unit(5 + 7/12, "feet"),
  39257. weight: math.unit(2, "tons"),
  39258. name: "Angled (NSFW)",
  39259. image: {
  39260. source: "./media/characters/erdno/angled-nsfw.svg",
  39261. extra: 1185/1139,
  39262. bottom: 36/1221
  39263. }
  39264. },
  39265. sideNsfw: {
  39266. height: math.unit(5 + 7/12, "feet"),
  39267. weight: math.unit(2, "tons"),
  39268. name: "Side (NSFW)",
  39269. image: {
  39270. source: "./media/characters/erdno/side-nsfw.svg",
  39271. extra: 1191/1144,
  39272. bottom: 40/1231
  39273. }
  39274. },
  39275. backNsfw: {
  39276. height: math.unit(5 + 7/12, "feet"),
  39277. weight: math.unit(2, "tons"),
  39278. name: "Back (NSFW)",
  39279. image: {
  39280. source: "./media/characters/erdno/back-nsfw.svg",
  39281. extra: 1202/1146,
  39282. bottom: 17/1219
  39283. }
  39284. },
  39285. frontHyper: {
  39286. height: math.unit(5 + 7/12, "feet"),
  39287. weight: math.unit(2, "tons"),
  39288. name: "Front (Hyper)",
  39289. image: {
  39290. source: "./media/characters/erdno/front-hyper.svg",
  39291. extra: 1298/1136,
  39292. bottom: 35/1333
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(5 + 7/12, "feet"),
  39300. default: true
  39301. },
  39302. {
  39303. name: "Big",
  39304. height: math.unit(5.7, "meters")
  39305. },
  39306. {
  39307. name: "Macro",
  39308. height: math.unit(5.7, "kilometers")
  39309. },
  39310. {
  39311. name: "Megamacro",
  39312. height: math.unit(5.7, "earths")
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(5 + 10/12, "feet"),
  39321. weight: math.unit(150, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/jamie/front.svg",
  39325. extra: 1908/1768,
  39326. bottom: 19/1927
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Minimum",
  39333. height: math.unit(2, "cm")
  39334. },
  39335. {
  39336. name: "Micro",
  39337. height: math.unit(3, "inches")
  39338. },
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(5 + 10/12, "feet"),
  39342. default: true
  39343. },
  39344. {
  39345. name: "Macro",
  39346. height: math.unit(150, "feet")
  39347. },
  39348. {
  39349. name: "Megamacro",
  39350. height: math.unit(10000, "m")
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(2, "meters"),
  39359. weight: math.unit(100, "kg"),
  39360. name: "Front",
  39361. image: {
  39362. source: "./media/characters/shiron/front.svg",
  39363. extra: 2103/1985,
  39364. bottom: 98/2201
  39365. }
  39366. },
  39367. back: {
  39368. height: math.unit(2, "meters"),
  39369. weight: math.unit(100, "kg"),
  39370. name: "Back",
  39371. image: {
  39372. source: "./media/characters/shiron/back.svg",
  39373. extra: 2110/2015,
  39374. bottom: 89/2199
  39375. }
  39376. },
  39377. hand: {
  39378. height: math.unit(0.96, "feet"),
  39379. name: "Hand",
  39380. image: {
  39381. source: "./media/characters/shiron/hand.svg"
  39382. }
  39383. },
  39384. foot: {
  39385. height: math.unit(1.464, "feet"),
  39386. name: "Foot",
  39387. image: {
  39388. source: "./media/characters/shiron/foot.svg"
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(2, "meters")
  39396. },
  39397. {
  39398. name: "Macro",
  39399. height: math.unit(500, "meters"),
  39400. default: true
  39401. },
  39402. {
  39403. name: "Megamacro",
  39404. height: math.unit(20, "km")
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(6, "feet"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/sam/front.svg",
  39416. extra: 849/826,
  39417. bottom: 19/868
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(6, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(8 + 4/12, "feet"),
  39434. weight: math.unit(122, "kg"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/namori-kurogawa/front.svg",
  39438. extra: 1894/1576,
  39439. bottom: 34/1928
  39440. }
  39441. },
  39442. },
  39443. [
  39444. {
  39445. name: "Normal",
  39446. height: math.unit(8 + 4/12, "feet"),
  39447. default: true
  39448. },
  39449. ]
  39450. ))
  39451. characterMakers.push(() => makeCharacter(
  39452. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39453. {
  39454. front: {
  39455. height: math.unit(9, "feet"),
  39456. weight: math.unit(621, "lb"),
  39457. name: "Front",
  39458. image: {
  39459. source: "./media/characters/unmru/front.svg",
  39460. extra: 1853/1747,
  39461. bottom: 73/1926
  39462. }
  39463. },
  39464. side: {
  39465. height: math.unit(9, "feet"),
  39466. weight: math.unit(621, "lb"),
  39467. name: "Side",
  39468. image: {
  39469. source: "./media/characters/unmru/side.svg",
  39470. extra: 1781/1671,
  39471. bottom: 127/1908
  39472. }
  39473. },
  39474. back: {
  39475. height: math.unit(9, "feet"),
  39476. weight: math.unit(621, "lb"),
  39477. name: "Back",
  39478. image: {
  39479. source: "./media/characters/unmru/back.svg",
  39480. extra: 1894/1765,
  39481. bottom: 75/1969
  39482. }
  39483. },
  39484. dick: {
  39485. height: math.unit(3, "feet"),
  39486. weight: math.unit(35, "lb"),
  39487. name: "Dick",
  39488. image: {
  39489. source: "./media/characters/unmru/dick.svg"
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(9, "feet")
  39497. },
  39498. {
  39499. name: "Natural",
  39500. height: math.unit(27, "feet"),
  39501. default: true
  39502. },
  39503. {
  39504. name: "Giant",
  39505. height: math.unit(90, "feet")
  39506. },
  39507. {
  39508. name: "Kaiju",
  39509. height: math.unit(270, "feet")
  39510. },
  39511. {
  39512. name: "Macro",
  39513. height: math.unit(900, "feet")
  39514. },
  39515. {
  39516. name: "Macro+",
  39517. height: math.unit(2700, "feet")
  39518. },
  39519. {
  39520. name: "Megamacro",
  39521. height: math.unit(9000, "feet")
  39522. },
  39523. {
  39524. name: "City-Crushing",
  39525. height: math.unit(27000, "feet")
  39526. },
  39527. {
  39528. name: "Mountain-Mashing",
  39529. height: math.unit(90000, "feet")
  39530. },
  39531. {
  39532. name: "Earth-Eclipsing",
  39533. height: math.unit(2.7e8, "feet")
  39534. },
  39535. {
  39536. name: "Sol-Swallowing",
  39537. height: math.unit(9e10, "feet")
  39538. },
  39539. {
  39540. name: "Majoris-Munching",
  39541. height: math.unit(2.7e13, "feet")
  39542. },
  39543. ]
  39544. ))
  39545. characterMakers.push(() => makeCharacter(
  39546. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39547. {
  39548. front: {
  39549. height: math.unit(1, "inch"),
  39550. name: "Front",
  39551. image: {
  39552. source: "./media/characters/squeaks-mouse/front.svg",
  39553. extra: 352/308,
  39554. bottom: 25/377
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Micro",
  39561. height: math.unit(1, "inch"),
  39562. default: true
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39568. {
  39569. side: {
  39570. height: math.unit(35, "feet"),
  39571. name: "Side",
  39572. image: {
  39573. source: "./media/characters/sayko/side.svg",
  39574. extra: 1697/1021,
  39575. bottom: 82/1779
  39576. }
  39577. },
  39578. head: {
  39579. height: math.unit(16, "feet"),
  39580. name: "Head",
  39581. image: {
  39582. source: "./media/characters/sayko/head.svg"
  39583. }
  39584. },
  39585. forepaw: {
  39586. height: math.unit(7.85, "feet"),
  39587. name: "Forepaw",
  39588. image: {
  39589. source: "./media/characters/sayko/forepaw.svg"
  39590. }
  39591. },
  39592. hindpaw: {
  39593. height: math.unit(8.8, "feet"),
  39594. name: "Hindpaw",
  39595. image: {
  39596. source: "./media/characters/sayko/hindpaw.svg"
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Normal",
  39603. height: math.unit(35, "feet"),
  39604. default: true
  39605. },
  39606. {
  39607. name: "Colossus",
  39608. height: math.unit(100, "meters")
  39609. },
  39610. {
  39611. name: "\"Small\" Deity",
  39612. height: math.unit(1, "km")
  39613. },
  39614. {
  39615. name: "\"Large\" Deity",
  39616. height: math.unit(15, "km")
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(6, "feet"),
  39625. weight: math.unit(250, "lb"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/mukiro/front.svg",
  39629. extra: 1368/1310,
  39630. bottom: 34/1402
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(6, "feet"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(12 + 4/12, "feet"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39650. extra: 1346/1311,
  39651. bottom: 65/1411
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Base",
  39658. height: math.unit(12 + 4/12, "feet"),
  39659. default: true
  39660. },
  39661. {
  39662. name: "Macro",
  39663. height: math.unit(150, "feet")
  39664. },
  39665. {
  39666. name: "Mega",
  39667. height: math.unit(2, "miles")
  39668. },
  39669. {
  39670. name: "Demi God",
  39671. height: math.unit(4, "AU")
  39672. },
  39673. {
  39674. name: "God Size",
  39675. height: math.unit(1, "universe")
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(3 + 3/12, "feet"),
  39684. weight: math.unit(88, "lb"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/trey/front.svg",
  39688. extra: 1815/1509,
  39689. bottom: 60/1875
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(3 + 3/12, "feet"),
  39697. default: true
  39698. },
  39699. ]
  39700. ))
  39701. characterMakers.push(() => makeCharacter(
  39702. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39703. {
  39704. front: {
  39705. height: math.unit(4, "meters"),
  39706. name: "Front",
  39707. image: {
  39708. source: "./media/characters/adelonda/front.svg",
  39709. extra: 1077/982,
  39710. bottom: 39/1116
  39711. }
  39712. },
  39713. back: {
  39714. height: math.unit(4, "meters"),
  39715. name: "Back",
  39716. image: {
  39717. source: "./media/characters/adelonda/back.svg",
  39718. extra: 1105/1003,
  39719. bottom: 25/1130
  39720. }
  39721. },
  39722. feral: {
  39723. height: math.unit(40/1.5, "meters"),
  39724. name: "Feral",
  39725. image: {
  39726. source: "./media/characters/adelonda/feral.svg",
  39727. extra: 597/271,
  39728. bottom: 387/984
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Normal",
  39735. height: math.unit(4, "meters"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(8 + 4/12, "feet"),
  39745. weight: math.unit(670, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/acadiel/front.svg",
  39749. extra: 1901/1595,
  39750. bottom: 142/2043
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(8 + 4/12, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(200, "feet")
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(6 + 2/12, "feet"),
  39771. weight: math.unit(185, "lb"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/kayne-ein/front.svg",
  39775. extra: 1780/1560,
  39776. bottom: 81/1861
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(6 + 2/12, "feet"),
  39784. default: true
  39785. },
  39786. {
  39787. name: "Transformation Stage",
  39788. height: math.unit(15, "feet")
  39789. },
  39790. {
  39791. name: "Macro",
  39792. height: math.unit(150, "feet")
  39793. },
  39794. {
  39795. name: "Earth's Shadow",
  39796. height: math.unit(6200, "miles")
  39797. },
  39798. {
  39799. name: "Universal Demon",
  39800. height: math.unit(28e9, "parsecs")
  39801. },
  39802. {
  39803. name: "Multiverse God",
  39804. height: math.unit(3, "multiverses")
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(5 + 5/12, "feet"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/fawn/front.svg",
  39816. extra: 1873/1731,
  39817. bottom: 95/1968
  39818. }
  39819. },
  39820. back: {
  39821. height: math.unit(5 + 5/12, "feet"),
  39822. name: "Back",
  39823. image: {
  39824. source: "./media/characters/fawn/back.svg",
  39825. extra: 1813/1700,
  39826. bottom: 14/1827
  39827. }
  39828. },
  39829. hoof: {
  39830. height: math.unit(1.45, "feet"),
  39831. name: "Hoof",
  39832. image: {
  39833. source: "./media/characters/fawn/hoof.svg"
  39834. }
  39835. },
  39836. },
  39837. [
  39838. {
  39839. name: "Normal",
  39840. height: math.unit(5 + 5/12, "feet"),
  39841. default: true
  39842. },
  39843. ]
  39844. ))
  39845. characterMakers.push(() => makeCharacter(
  39846. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39847. {
  39848. front: {
  39849. height: math.unit(2 + 5/12, "feet"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/orion/front.svg",
  39853. extra: 1366/1304,
  39854. bottom: 43/1409
  39855. }
  39856. },
  39857. paw: {
  39858. height: math.unit(0.52, "feet"),
  39859. name: "Paw",
  39860. image: {
  39861. source: "./media/characters/orion/paw.svg"
  39862. }
  39863. },
  39864. },
  39865. [
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(2 + 5/12, "feet"),
  39869. default: true
  39870. },
  39871. ]
  39872. ))
  39873. characterMakers.push(() => makeCharacter(
  39874. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39875. {
  39876. front: {
  39877. height: math.unit(5 + 10/12, "feet"),
  39878. name: "Front",
  39879. image: {
  39880. source: "./media/characters/vera/front.svg",
  39881. extra: 1680/1575,
  39882. bottom: 49/1729
  39883. }
  39884. },
  39885. back: {
  39886. height: math.unit(5 + 10/12, "feet"),
  39887. name: "Back",
  39888. image: {
  39889. source: "./media/characters/vera/back.svg",
  39890. extra: 1700/1588,
  39891. bottom: 18/1718
  39892. }
  39893. },
  39894. arcanine: {
  39895. height: math.unit(6 + 8/12, "feet"),
  39896. name: "Arcanine",
  39897. image: {
  39898. source: "./media/characters/vera/arcanine.svg",
  39899. extra: 1590/1511,
  39900. bottom: 71/1661
  39901. }
  39902. },
  39903. maw: {
  39904. height: math.unit(0.82, "feet"),
  39905. name: "Maw",
  39906. image: {
  39907. source: "./media/characters/vera/maw.svg"
  39908. }
  39909. },
  39910. mawArcanine: {
  39911. height: math.unit(0.97, "feet"),
  39912. name: "Maw (Arcanine)",
  39913. image: {
  39914. source: "./media/characters/vera/maw-arcanine.svg"
  39915. }
  39916. },
  39917. paw: {
  39918. height: math.unit(0.75, "feet"),
  39919. name: "Paw",
  39920. image: {
  39921. source: "./media/characters/vera/paw.svg"
  39922. }
  39923. },
  39924. pawprint: {
  39925. height: math.unit(0.52, "feet"),
  39926. name: "Pawprint",
  39927. image: {
  39928. source: "./media/characters/vera/pawprint.svg"
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(5 + 10/12, "feet"),
  39936. default: true
  39937. },
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(75, "feet")
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(4, "feet"),
  39949. weight: math.unit(40, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/orvan-rabbit/front.svg",
  39953. extra: 1896/1642,
  39954. bottom: 29/1925
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(4, "feet"),
  39962. default: true
  39963. },
  39964. ]
  39965. ))
  39966. characterMakers.push(() => makeCharacter(
  39967. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39968. {
  39969. front: {
  39970. height: math.unit(6, "feet"),
  39971. weight: math.unit(168, "lb"),
  39972. name: "Front",
  39973. image: {
  39974. source: "./media/characters/lisa/front.svg",
  39975. extra: 2065/1867,
  39976. bottom: 46/2111
  39977. }
  39978. },
  39979. back: {
  39980. height: math.unit(6, "feet"),
  39981. weight: math.unit(168, "lb"),
  39982. name: "Back",
  39983. image: {
  39984. source: "./media/characters/lisa/back.svg",
  39985. extra: 1982/1838,
  39986. bottom: 29/2011
  39987. }
  39988. },
  39989. maw: {
  39990. height: math.unit(0.81, "feet"),
  39991. name: "Maw",
  39992. image: {
  39993. source: "./media/characters/lisa/maw.svg"
  39994. }
  39995. },
  39996. paw: {
  39997. height: math.unit(0.9, "feet"),
  39998. name: "Paw",
  39999. image: {
  40000. source: "./media/characters/lisa/paw.svg"
  40001. }
  40002. },
  40003. caribousune: {
  40004. height: math.unit(7 + 2/12, "feet"),
  40005. weight: math.unit(268, "lb"),
  40006. name: "Caribousune",
  40007. image: {
  40008. source: "./media/characters/lisa/caribousune.svg",
  40009. extra: 1843/1633,
  40010. bottom: 29/1872
  40011. }
  40012. },
  40013. frontCaribousune: {
  40014. height: math.unit(7 + 2/12, "feet"),
  40015. weight: math.unit(268, "lb"),
  40016. name: "Front (Caribousune)",
  40017. image: {
  40018. source: "./media/characters/lisa/front-caribousune.svg",
  40019. extra: 1818/1638,
  40020. bottom: 52/1870
  40021. }
  40022. },
  40023. sideCaribousune: {
  40024. height: math.unit(7 + 2/12, "feet"),
  40025. weight: math.unit(268, "lb"),
  40026. name: "Side (Caribousune)",
  40027. image: {
  40028. source: "./media/characters/lisa/side-caribousune.svg",
  40029. extra: 1851/1635,
  40030. bottom: 16/1867
  40031. }
  40032. },
  40033. backCaribousune: {
  40034. height: math.unit(7 + 2/12, "feet"),
  40035. weight: math.unit(268, "lb"),
  40036. name: "Back (Caribousune)",
  40037. image: {
  40038. source: "./media/characters/lisa/back-caribousune.svg",
  40039. extra: 1801/1604,
  40040. bottom: 44/1845
  40041. }
  40042. },
  40043. caribou: {
  40044. height: math.unit(7 + 2/12, "feet"),
  40045. weight: math.unit(268, "lb"),
  40046. name: "Caribou",
  40047. image: {
  40048. source: "./media/characters/lisa/caribou.svg",
  40049. extra: 1843/1633,
  40050. bottom: 29/1872
  40051. }
  40052. },
  40053. frontCaribou: {
  40054. height: math.unit(7 + 2/12, "feet"),
  40055. weight: math.unit(268, "lb"),
  40056. name: "Front (Caribou)",
  40057. image: {
  40058. source: "./media/characters/lisa/front-caribou.svg",
  40059. extra: 1818/1638,
  40060. bottom: 52/1870
  40061. }
  40062. },
  40063. sideCaribou: {
  40064. height: math.unit(7 + 2/12, "feet"),
  40065. weight: math.unit(268, "lb"),
  40066. name: "Side (Caribou)",
  40067. image: {
  40068. source: "./media/characters/lisa/side-caribou.svg",
  40069. extra: 1851/1635,
  40070. bottom: 16/1867
  40071. }
  40072. },
  40073. backCaribou: {
  40074. height: math.unit(7 + 2/12, "feet"),
  40075. weight: math.unit(268, "lb"),
  40076. name: "Back (Caribou)",
  40077. image: {
  40078. source: "./media/characters/lisa/back-caribou.svg",
  40079. extra: 1801/1604,
  40080. bottom: 44/1845
  40081. }
  40082. },
  40083. mawCaribou: {
  40084. height: math.unit(1.45, "feet"),
  40085. name: "Maw (Caribou)",
  40086. image: {
  40087. source: "./media/characters/lisa/maw-caribou.svg"
  40088. }
  40089. },
  40090. mawCaribousune: {
  40091. height: math.unit(1.45, "feet"),
  40092. name: "Maw (Caribousune)",
  40093. image: {
  40094. source: "./media/characters/lisa/maw-caribousune.svg"
  40095. }
  40096. },
  40097. pawCaribousune: {
  40098. height: math.unit(1.61, "feet"),
  40099. name: "Paw (Caribou)",
  40100. image: {
  40101. source: "./media/characters/lisa/paw-caribousune.svg"
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Normal",
  40108. height: math.unit(6, "feet")
  40109. },
  40110. {
  40111. name: "God Size",
  40112. height: math.unit(72, "feet"),
  40113. default: true
  40114. },
  40115. {
  40116. name: "Towering",
  40117. height: math.unit(288, "feet")
  40118. },
  40119. {
  40120. name: "City Size",
  40121. height: math.unit(48384, "feet")
  40122. },
  40123. {
  40124. name: "Continental",
  40125. height: math.unit(4200, "miles")
  40126. },
  40127. {
  40128. name: "Planet Eater",
  40129. height: math.unit(42, "earths")
  40130. },
  40131. {
  40132. name: "Star Swallower",
  40133. height: math.unit(42, "solarradii")
  40134. },
  40135. {
  40136. name: "System Swallower",
  40137. height: math.unit(84000, "AU")
  40138. },
  40139. {
  40140. name: "Galaxy Gobbler",
  40141. height: math.unit(42, "galaxies")
  40142. },
  40143. {
  40144. name: "Universe Devourer",
  40145. height: math.unit(42, "universes")
  40146. },
  40147. {
  40148. name: "Multiverse Muncher",
  40149. height: math.unit(42, "multiverses")
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(36, "feet"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/shadow-rat/front.svg",
  40161. extra: 1845/1758,
  40162. bottom: 83/1928
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Macro",
  40169. height: math.unit(36, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40176. {
  40177. side: {
  40178. height: math.unit(8, "feet"),
  40179. weight: math.unit(2630, "lb"),
  40180. name: "Side",
  40181. image: {
  40182. source: "./media/characters/torallia/side.svg",
  40183. extra: 2164/2021,
  40184. bottom: 371/2535
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Mortal Interaction",
  40191. height: math.unit(8, "feet")
  40192. },
  40193. {
  40194. name: "Natural",
  40195. height: math.unit(24, "feet"),
  40196. default: true
  40197. },
  40198. {
  40199. name: "Giant",
  40200. height: math.unit(80, "feet")
  40201. },
  40202. {
  40203. name: "Kaiju",
  40204. height: math.unit(240, "feet")
  40205. },
  40206. {
  40207. name: "Macro",
  40208. height: math.unit(800, "feet")
  40209. },
  40210. {
  40211. name: "Macro+",
  40212. height: math.unit(2400, "feet")
  40213. },
  40214. {
  40215. name: "Macro++",
  40216. height: math.unit(8000, "feet")
  40217. },
  40218. {
  40219. name: "City-Crushing",
  40220. height: math.unit(24000, "feet")
  40221. },
  40222. {
  40223. name: "Mountain-Mashing",
  40224. height: math.unit(80000, "feet")
  40225. },
  40226. {
  40227. name: "District Demolisher",
  40228. height: math.unit(240000, "feet")
  40229. },
  40230. {
  40231. name: "Tri-County Terror",
  40232. height: math.unit(800000, "feet")
  40233. },
  40234. {
  40235. name: "State Smasher",
  40236. height: math.unit(2.4e6, "feet")
  40237. },
  40238. {
  40239. name: "Nation Nemesis",
  40240. height: math.unit(8e6, "feet")
  40241. },
  40242. {
  40243. name: "Continent Cracker",
  40244. height: math.unit(2.4e7, "feet")
  40245. },
  40246. {
  40247. name: "Planet-Pillaging",
  40248. height: math.unit(8e7, "feet")
  40249. },
  40250. {
  40251. name: "Earth-Eclipsing",
  40252. height: math.unit(2.4e8, "feet")
  40253. },
  40254. {
  40255. name: "Jovian-Jostling",
  40256. height: math.unit(8e8, "feet")
  40257. },
  40258. {
  40259. name: "Gas Giant Gulper",
  40260. height: math.unit(2.4e9, "feet")
  40261. },
  40262. {
  40263. name: "Astral Annihilator",
  40264. height: math.unit(8e9, "feet")
  40265. },
  40266. {
  40267. name: "Celestial Conqueror",
  40268. height: math.unit(2.4e10, "feet")
  40269. },
  40270. {
  40271. name: "Sol-Swallowing",
  40272. height: math.unit(8e10, "feet")
  40273. },
  40274. {
  40275. name: "Hunter of the Heavens",
  40276. height: math.unit(2.4e13, "feet")
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(6 + 8/12, "feet"),
  40285. weight: math.unit(250, "kilograms"),
  40286. volume: math.unit(28, "liters"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/rebecca-pawlson/front.svg",
  40290. extra: 1737/1596,
  40291. bottom: 107/1844
  40292. }
  40293. },
  40294. back: {
  40295. height: math.unit(6 + 8/12, "feet"),
  40296. weight: math.unit(250, "kilograms"),
  40297. volume: math.unit(28, "liters"),
  40298. name: "Back",
  40299. image: {
  40300. source: "./media/characters/rebecca-pawlson/back.svg",
  40301. extra: 1702/1523,
  40302. bottom: 86/1788
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Normal",
  40309. height: math.unit(6 + 8/12, "feet")
  40310. },
  40311. {
  40312. name: "Mini Macro",
  40313. height: math.unit(10, "feet"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Macro",
  40318. height: math.unit(100, "feet")
  40319. },
  40320. {
  40321. name: "Mega Macro",
  40322. height: math.unit(2500, "feet")
  40323. },
  40324. {
  40325. name: "Giga Macro",
  40326. height: math.unit(50, "miles")
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(7 + 6/12, "feet"),
  40335. weight: math.unit(600, "lb"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/moxie-nova/front.svg",
  40339. extra: 1734/1652,
  40340. bottom: 41/1775
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(7 + 6/12, "feet"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40354. {
  40355. goat: {
  40356. height: math.unit(4, "feet"),
  40357. weight: math.unit(180, "lb"),
  40358. name: "Goat",
  40359. image: {
  40360. source: "./media/characters/tiffany/goat.svg",
  40361. extra: 1845/1595,
  40362. bottom: 106/1951
  40363. }
  40364. },
  40365. front: {
  40366. height: math.unit(5, "feet"),
  40367. weight: math.unit(150, "lb"),
  40368. name: "Foxcoon",
  40369. image: {
  40370. source: "./media/characters/tiffany/foxcoon.svg",
  40371. extra: 1941/1845,
  40372. bottom: 58/1999
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Normal",
  40379. height: math.unit(5, "feet"),
  40380. default: true
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(8, "feet"),
  40389. weight: math.unit(300, "lb"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/raxinath/front.svg",
  40393. extra: 1407/1309,
  40394. bottom: 39/1446
  40395. }
  40396. },
  40397. back: {
  40398. height: math.unit(8, "feet"),
  40399. weight: math.unit(300, "lb"),
  40400. name: "Back",
  40401. image: {
  40402. source: "./media/characters/raxinath/back.svg",
  40403. extra: 1405/1315,
  40404. bottom: 9/1414
  40405. }
  40406. },
  40407. },
  40408. [
  40409. {
  40410. name: "Speck",
  40411. height: math.unit(0.5, "nm")
  40412. },
  40413. {
  40414. name: "Micro",
  40415. height: math.unit(3, "inches")
  40416. },
  40417. {
  40418. name: "Kobold",
  40419. height: math.unit(3, "feet")
  40420. },
  40421. {
  40422. name: "Normal",
  40423. height: math.unit(8, "feet"),
  40424. default: true
  40425. },
  40426. {
  40427. name: "Giant",
  40428. height: math.unit(50, "feet")
  40429. },
  40430. {
  40431. name: "Macro",
  40432. height: math.unit(1000, "feet")
  40433. },
  40434. {
  40435. name: "Megamacro",
  40436. height: math.unit(1, "mile")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(10, "feet"),
  40445. weight: math.unit(1442, "lb"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/mal-dragon/front.svg",
  40449. extra: 1515/1444,
  40450. bottom: 113/1628
  40451. }
  40452. },
  40453. back: {
  40454. height: math.unit(10, "feet"),
  40455. weight: math.unit(1442, "lb"),
  40456. name: "Back",
  40457. image: {
  40458. source: "./media/characters/mal-dragon/back.svg",
  40459. extra: 1527/1434,
  40460. bottom: 25/1552
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Mortal Interaction",
  40467. height: math.unit(10, "feet"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Large",
  40472. height: math.unit(30, "feet")
  40473. },
  40474. {
  40475. name: "Kaiju",
  40476. height: math.unit(300, "feet")
  40477. },
  40478. {
  40479. name: "Megamacro",
  40480. height: math.unit(10000, "feet")
  40481. },
  40482. {
  40483. name: "Continent Cracker",
  40484. height: math.unit(30000000, "feet")
  40485. },
  40486. {
  40487. name: "Sol-Swallowing",
  40488. height: math.unit(1e11, "feet")
  40489. },
  40490. {
  40491. name: "Light Universal",
  40492. height: math.unit(5, "universes")
  40493. },
  40494. {
  40495. name: "Universe Atoms",
  40496. height: math.unit(1.829e9, "universes")
  40497. },
  40498. {
  40499. name: "Light Multiversal",
  40500. height: math.unit(5, "multiverses")
  40501. },
  40502. {
  40503. name: "Multiverse Atoms",
  40504. height: math.unit(1.829e9, "multiverses")
  40505. },
  40506. {
  40507. name: "Fabric of Time",
  40508. height: math.unit(1e262, "multiverses")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(9, "feet"),
  40517. weight: math.unit(1050, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/tabitha/front.svg",
  40521. extra: 2083/1994,
  40522. bottom: 68/2151
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Baseline",
  40529. height: math.unit(9, "feet"),
  40530. default: true
  40531. },
  40532. {
  40533. name: "Giant",
  40534. height: math.unit(90, "feet")
  40535. },
  40536. {
  40537. name: "Macro",
  40538. height: math.unit(900, "feet")
  40539. },
  40540. {
  40541. name: "Megamacro",
  40542. height: math.unit(9000, "feet")
  40543. },
  40544. {
  40545. name: "City-Crushing",
  40546. height: math.unit(27000, "feet")
  40547. },
  40548. {
  40549. name: "Mountain-Mashing",
  40550. height: math.unit(90000, "feet")
  40551. },
  40552. {
  40553. name: "Nation Nemesis",
  40554. height: math.unit(9e6, "feet")
  40555. },
  40556. {
  40557. name: "Continent Cracker",
  40558. height: math.unit(27e6, "feet")
  40559. },
  40560. {
  40561. name: "Earth-Eclipsing",
  40562. height: math.unit(2.7e8, "feet")
  40563. },
  40564. {
  40565. name: "Gas Giant Gulper",
  40566. height: math.unit(2.7e9, "feet")
  40567. },
  40568. {
  40569. name: "Sol-Swallowing",
  40570. height: math.unit(9e10, "feet")
  40571. },
  40572. {
  40573. name: "Galaxy Gulper",
  40574. height: math.unit(9, "galaxies")
  40575. },
  40576. {
  40577. name: "Cosmos Churner",
  40578. height: math.unit(9, "universes")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(160, "cm"),
  40587. weight: math.unit(55, "kg"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/tow/front.svg",
  40591. extra: 1751/1722,
  40592. bottom: 74/1825
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Norm",
  40599. height: math.unit(160, "cm")
  40600. },
  40601. {
  40602. name: "Casual",
  40603. height: math.unit(3200, "m"),
  40604. default: true
  40605. },
  40606. {
  40607. name: "Show-Off",
  40608. height: math.unit(160, "km")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40614. {
  40615. front: {
  40616. height: math.unit(7 + 11/12, "feet"),
  40617. weight: math.unit(342.8, "lb"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/vivian-orca-dragon/front.svg",
  40621. extra: 1890/1865,
  40622. bottom: 28/1918
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Micro",
  40629. height: math.unit(5, "inches")
  40630. },
  40631. {
  40632. name: "Normal",
  40633. height: math.unit(7 + 11/12, "feet"),
  40634. default: true
  40635. },
  40636. {
  40637. name: "Macro",
  40638. height: math.unit(395 + 7/12, "feet")
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40644. {
  40645. side: {
  40646. height: math.unit(10, "feet"),
  40647. weight: math.unit(1442, "lb"),
  40648. name: "Side",
  40649. image: {
  40650. source: "./media/characters/lotherakon/side.svg",
  40651. extra: 1604/1497,
  40652. bottom: 89/1693
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Mortal Interaction",
  40659. height: math.unit(10, "feet")
  40660. },
  40661. {
  40662. name: "Large",
  40663. height: math.unit(30, "feet"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "Giant",
  40668. height: math.unit(100, "feet")
  40669. },
  40670. {
  40671. name: "Kaiju",
  40672. height: math.unit(300, "feet")
  40673. },
  40674. {
  40675. name: "Macro",
  40676. height: math.unit(1000, "feet")
  40677. },
  40678. {
  40679. name: "Macro+",
  40680. height: math.unit(3000, "feet")
  40681. },
  40682. {
  40683. name: "Megamacro",
  40684. height: math.unit(10000, "feet")
  40685. },
  40686. {
  40687. name: "City-Crushing",
  40688. height: math.unit(30000, "feet")
  40689. },
  40690. {
  40691. name: "Continent Cracker",
  40692. height: math.unit(30e6, "feet")
  40693. },
  40694. {
  40695. name: "Earth Eclipsing",
  40696. height: math.unit(3e8, "feet")
  40697. },
  40698. {
  40699. name: "Gas Giant Gulper",
  40700. height: math.unit(3e9, "feet")
  40701. },
  40702. {
  40703. name: "Sol-Swallowing",
  40704. height: math.unit(1e11, "feet")
  40705. },
  40706. {
  40707. name: "System Swallower",
  40708. height: math.unit(3e14, "feet")
  40709. },
  40710. {
  40711. name: "Galaxy Gulper",
  40712. height: math.unit(10, "galaxies")
  40713. },
  40714. {
  40715. name: "Light Universal",
  40716. height: math.unit(5, "universes")
  40717. },
  40718. {
  40719. name: "Universe Palm",
  40720. height: math.unit(20, "universes")
  40721. },
  40722. {
  40723. name: "Light Multiversal",
  40724. height: math.unit(5, "multiverses")
  40725. },
  40726. {
  40727. name: "Multiverse Palm",
  40728. height: math.unit(20, "multiverses")
  40729. },
  40730. {
  40731. name: "Inferno Incarnate",
  40732. height: math.unit(1e7, "multiverses")
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(8, "feet"),
  40741. weight: math.unit(1200, "lb"),
  40742. name: "Front",
  40743. image: {
  40744. source: "./media/characters/malithee/front.svg",
  40745. extra: 1675/1640,
  40746. bottom: 162/1837
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Mortal Interaction",
  40753. height: math.unit(8, "feet"),
  40754. default: true
  40755. },
  40756. {
  40757. name: "Large",
  40758. height: math.unit(24, "feet")
  40759. },
  40760. {
  40761. name: "Kaiju",
  40762. height: math.unit(240, "feet")
  40763. },
  40764. {
  40765. name: "Megamacro",
  40766. height: math.unit(8000, "feet")
  40767. },
  40768. {
  40769. name: "Continent Cracker",
  40770. height: math.unit(24e6, "feet")
  40771. },
  40772. {
  40773. name: "Earth-Eclipsing",
  40774. height: math.unit(2.4e8, "feet")
  40775. },
  40776. {
  40777. name: "Sol-Swallowing",
  40778. height: math.unit(8e10, "feet")
  40779. },
  40780. {
  40781. name: "Galaxy Gulper",
  40782. height: math.unit(8, "galaxies")
  40783. },
  40784. {
  40785. name: "Light Universal",
  40786. height: math.unit(4, "universes")
  40787. },
  40788. {
  40789. name: "Universe Atoms",
  40790. height: math.unit(1.829e9, "universes")
  40791. },
  40792. {
  40793. name: "Light Multiversal",
  40794. height: math.unit(4, "multiverses")
  40795. },
  40796. {
  40797. name: "Multiverse Atoms",
  40798. height: math.unit(1.829e9, "multiverses")
  40799. },
  40800. {
  40801. name: "Nigh-Omnipresence",
  40802. height: math.unit(8e261, "multiverses")
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(10, "feet"),
  40811. weight: math.unit(1500, "lb"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/miles-thestia/front.svg",
  40815. extra: 1812/1727,
  40816. bottom: 86/1898
  40817. }
  40818. },
  40819. back: {
  40820. height: math.unit(10, "feet"),
  40821. weight: math.unit(1500, "lb"),
  40822. name: "Back",
  40823. image: {
  40824. source: "./media/characters/miles-thestia/back.svg",
  40825. extra: 1799/1690,
  40826. bottom: 47/1846
  40827. }
  40828. },
  40829. frontNsfw: {
  40830. height: math.unit(10, "feet"),
  40831. weight: math.unit(1500, "lb"),
  40832. name: "Front (NSFW)",
  40833. image: {
  40834. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40835. extra: 1812/1727,
  40836. bottom: 86/1898
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Mini-Macro",
  40843. height: math.unit(10, "feet"),
  40844. default: true
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(25, "feet"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/titan-s-wulf/front.svg",
  40856. extra: 1560/1484,
  40857. bottom: 76/1636
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Smallest",
  40864. height: math.unit(25, "feet"),
  40865. default: true
  40866. },
  40867. {
  40868. name: "Normal",
  40869. height: math.unit(200, "feet")
  40870. },
  40871. {
  40872. name: "Macro",
  40873. height: math.unit(200000, "feet")
  40874. },
  40875. {
  40876. name: "Multiversal Original",
  40877. height: math.unit(10000, "multiverses")
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40883. {
  40884. front: {
  40885. height: math.unit(8, "feet"),
  40886. weight: math.unit(553, "lb"),
  40887. name: "Front",
  40888. image: {
  40889. source: "./media/characters/tawendeh/front.svg",
  40890. extra: 2365/2268,
  40891. bottom: 83/2448
  40892. }
  40893. },
  40894. frontClothed: {
  40895. height: math.unit(8, "feet"),
  40896. weight: math.unit(553, "lb"),
  40897. name: "Front (Clothed)",
  40898. image: {
  40899. source: "./media/characters/tawendeh/front-clothed.svg",
  40900. extra: 2365/2268,
  40901. bottom: 83/2448
  40902. }
  40903. },
  40904. back: {
  40905. height: math.unit(8, "feet"),
  40906. weight: math.unit(553, "lb"),
  40907. name: "Back",
  40908. image: {
  40909. source: "./media/characters/tawendeh/back.svg",
  40910. extra: 2397/2294,
  40911. bottom: 42/2439
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Mortal Interaction",
  40918. height: math.unit(8, "feet"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "Giant",
  40923. height: math.unit(80, "feet")
  40924. },
  40925. {
  40926. name: "Macro",
  40927. height: math.unit(800, "feet")
  40928. },
  40929. {
  40930. name: "Megamacro",
  40931. height: math.unit(8000, "feet")
  40932. },
  40933. {
  40934. name: "City-Crushing",
  40935. height: math.unit(24000, "feet")
  40936. },
  40937. {
  40938. name: "Mountain-Mashing",
  40939. height: math.unit(80000, "feet")
  40940. },
  40941. {
  40942. name: "Nation Nemesis",
  40943. height: math.unit(8e6, "feet")
  40944. },
  40945. {
  40946. name: "Continent Cracker",
  40947. height: math.unit(24e6, "feet")
  40948. },
  40949. {
  40950. name: "Earth-Eclipsing",
  40951. height: math.unit(2.4e8, "feet")
  40952. },
  40953. {
  40954. name: "Gas Giant Gulper",
  40955. height: math.unit(2.4e9, "feet")
  40956. },
  40957. {
  40958. name: "Sol-Swallowing",
  40959. height: math.unit(8e10, "feet")
  40960. },
  40961. {
  40962. name: "Galaxy Gulper",
  40963. height: math.unit(8, "galaxies")
  40964. },
  40965. {
  40966. name: "Cosmos Churner",
  40967. height: math.unit(8, "universes")
  40968. },
  40969. {
  40970. name: "Omnipotent Otter",
  40971. height: math.unit(80, "universes")
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(2.6, "meters"),
  40980. weight: math.unit(900, "kg"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/neesha/front.svg",
  40984. extra: 1803/1653,
  40985. bottom: 128/1931
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Normal",
  40992. height: math.unit(2.6, "meters"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(50, "meters")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(5, "feet"),
  41006. weight: math.unit(185, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/kyera/front.svg",
  41010. extra: 1875/1790,
  41011. bottom: 96/1971
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(5, "feet"),
  41019. default: true
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41025. {
  41026. front: {
  41027. height: math.unit(7 + 6/12, "feet"),
  41028. weight: math.unit(540, "lb"),
  41029. name: "Front",
  41030. image: {
  41031. source: "./media/characters/yuko/front.svg",
  41032. extra: 1282/1222,
  41033. bottom: 101/1383
  41034. }
  41035. },
  41036. frontClothed: {
  41037. height: math.unit(7 + 6/12, "feet"),
  41038. weight: math.unit(540, "lb"),
  41039. name: "Front (Clothed)",
  41040. image: {
  41041. source: "./media/characters/yuko/front-clothed.svg",
  41042. extra: 1282/1222,
  41043. bottom: 101/1383
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Normal",
  41050. height: math.unit(7 + 6/12, "feet"),
  41051. default: true
  41052. },
  41053. {
  41054. name: "Macro",
  41055. height: math.unit(26 + 9/12, "feet")
  41056. },
  41057. {
  41058. name: "Megamacro",
  41059. height: math.unit(300, "feet")
  41060. },
  41061. {
  41062. name: "Gigamacro",
  41063. height: math.unit(5000, "feet")
  41064. },
  41065. {
  41066. name: "Planetary",
  41067. height: math.unit(10000, "miles")
  41068. },
  41069. ]
  41070. ))
  41071. characterMakers.push(() => makeCharacter(
  41072. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41073. {
  41074. front: {
  41075. height: math.unit(8 + 2/12, "feet"),
  41076. weight: math.unit(600, "lb"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/deam-nitrel/front.svg",
  41080. extra: 1308/1234,
  41081. bottom: 125/1433
  41082. }
  41083. },
  41084. },
  41085. [
  41086. {
  41087. name: "Normal",
  41088. height: math.unit(8 + 2/12, "feet"),
  41089. default: true
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(6.1, "feet"),
  41098. weight: math.unit(180, "lb"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/skyress/front.svg",
  41102. extra: 1045/915,
  41103. bottom: 28/1073
  41104. }
  41105. },
  41106. maw: {
  41107. height: math.unit(1, "feet"),
  41108. name: "Maw",
  41109. image: {
  41110. source: "./media/characters/skyress/maw.svg"
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(6.1, "feet"),
  41118. default: true
  41119. },
  41120. {
  41121. name: "Macro",
  41122. height: math.unit(200, "feet")
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(4 + 2/12, "feet"),
  41131. weight: math.unit(40, "kg"),
  41132. name: "Front",
  41133. image: {
  41134. source: "./media/characters/amethyst-jones/front.svg",
  41135. extra: 1220/1150,
  41136. bottom: 101/1321
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(4 + 2/12, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(1.7, "m"),
  41153. weight: math.unit(135, "lb"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/jade/front.svg",
  41157. extra: 1818/1767,
  41158. bottom: 32/1850
  41159. }
  41160. },
  41161. back: {
  41162. height: math.unit(1.7, "m"),
  41163. weight: math.unit(135, "lb"),
  41164. name: "Back",
  41165. image: {
  41166. source: "./media/characters/jade/back.svg",
  41167. extra: 1869/1809,
  41168. bottom: 35/1904
  41169. }
  41170. },
  41171. hand: {
  41172. height: math.unit(0.24, "m"),
  41173. name: "Hand",
  41174. image: {
  41175. source: "./media/characters/jade/hand.svg"
  41176. }
  41177. },
  41178. foot: {
  41179. height: math.unit(0.263, "m"),
  41180. name: "Foot",
  41181. image: {
  41182. source: "./media/characters/jade/foot.svg"
  41183. }
  41184. },
  41185. dick: {
  41186. height: math.unit(0.47, "m"),
  41187. name: "Dick",
  41188. image: {
  41189. source: "./media/characters/jade/dick.svg"
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "Micro",
  41196. height: math.unit(22, "cm")
  41197. },
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(1.7, "m"),
  41201. default: true
  41202. },
  41203. {
  41204. name: "Macro",
  41205. height: math.unit(152, "m")
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(100, "miles"),
  41214. weight: math.unit(20000, "tons"),
  41215. name: "Front",
  41216. image: {
  41217. source: "./media/characters/cookie/front.svg",
  41218. extra: 1125/1070,
  41219. bottom: 30/1155
  41220. }
  41221. },
  41222. },
  41223. [
  41224. {
  41225. name: "Big",
  41226. height: math.unit(50, "feet")
  41227. },
  41228. {
  41229. name: "Macro",
  41230. height: math.unit(100, "miles"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Megamacro",
  41235. height: math.unit(90000, "miles")
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(6, "feet"),
  41244. weight: math.unit(145, "lb"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/farzian/front.svg",
  41248. extra: 1902/1693,
  41249. bottom: 108/2010
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(500, "feet"),
  41257. default: true
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(3 + 6/12, "feet"),
  41266. weight: math.unit(50, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/kimberly-tilson/front.svg",
  41270. extra: 1400/1322,
  41271. bottom: 36/1436
  41272. }
  41273. },
  41274. back: {
  41275. height: math.unit(3 + 6/12, "feet"),
  41276. weight: math.unit(50, "lb"),
  41277. name: "Back",
  41278. image: {
  41279. source: "./media/characters/kimberly-tilson/back.svg",
  41280. extra: 1370/1307,
  41281. bottom: 20/1390
  41282. }
  41283. },
  41284. },
  41285. [
  41286. {
  41287. name: "Normal",
  41288. height: math.unit(3 + 6/12, "feet"),
  41289. default: true
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41295. {
  41296. front: {
  41297. height: math.unit(1148, "feet"),
  41298. weight: math.unit(34057, "lb"),
  41299. name: "Front",
  41300. image: {
  41301. source: "./media/characters/harthos/front.svg",
  41302. extra: 1391/1339,
  41303. bottom: 13/1404
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Macro",
  41310. height: math.unit(1148, "feet"),
  41311. default: true
  41312. },
  41313. ]
  41314. ))
  41315. characterMakers.push(() => makeCharacter(
  41316. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41317. {
  41318. front: {
  41319. height: math.unit(15, "feet"),
  41320. name: "Front",
  41321. image: {
  41322. source: "./media/characters/hypatia/front.svg",
  41323. extra: 1653/1591,
  41324. bottom: 79/1732
  41325. }
  41326. },
  41327. },
  41328. [
  41329. {
  41330. name: "Normal",
  41331. height: math.unit(15, "feet")
  41332. },
  41333. {
  41334. name: "Small",
  41335. height: math.unit(300, "feet")
  41336. },
  41337. {
  41338. name: "Macro",
  41339. height: math.unit(2500, "feet"),
  41340. default: true
  41341. },
  41342. {
  41343. name: "Mega Macro",
  41344. height: math.unit(1500, "miles")
  41345. },
  41346. {
  41347. name: "Giga Macro",
  41348. height: math.unit(1.5e6, "miles")
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(6, "feet"),
  41357. weight: math.unit(200, "lb"),
  41358. name: "Front",
  41359. image: {
  41360. source: "./media/characters/wulver/front.svg",
  41361. extra: 1724/1632,
  41362. bottom: 130/1854
  41363. }
  41364. },
  41365. frontNsfw: {
  41366. height: math.unit(6, "feet"),
  41367. weight: math.unit(200, "lb"),
  41368. name: "Front (NSFW)",
  41369. image: {
  41370. source: "./media/characters/wulver/front-nsfw.svg",
  41371. extra: 1724/1632,
  41372. bottom: 130/1854
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Human-Sized",
  41379. height: math.unit(6, "feet")
  41380. },
  41381. {
  41382. name: "Normal",
  41383. height: math.unit(4, "meters"),
  41384. default: true
  41385. },
  41386. {
  41387. name: "Large",
  41388. height: math.unit(6, "m")
  41389. },
  41390. ]
  41391. ))
  41392. characterMakers.push(() => makeCharacter(
  41393. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41394. {
  41395. front: {
  41396. height: math.unit(7, "feet"),
  41397. name: "Front",
  41398. image: {
  41399. source: "./media/characters/maru/front.svg",
  41400. extra: 1595/1570,
  41401. bottom: 0/1595
  41402. }
  41403. },
  41404. },
  41405. [
  41406. {
  41407. name: "Normal",
  41408. height: math.unit(7, "feet"),
  41409. default: true
  41410. },
  41411. {
  41412. name: "Macro",
  41413. height: math.unit(700, "feet")
  41414. },
  41415. {
  41416. name: "Mega Macro",
  41417. height: math.unit(25, "miles")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6, "feet"),
  41426. weight: math.unit(170, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/xenon/front.svg",
  41430. extra: 1376/1305,
  41431. bottom: 56/1432
  41432. }
  41433. },
  41434. back: {
  41435. height: math.unit(6, "feet"),
  41436. weight: math.unit(170, "lb"),
  41437. name: "Back",
  41438. image: {
  41439. source: "./media/characters/xenon/back.svg",
  41440. extra: 1328/1259,
  41441. bottom: 95/1423
  41442. }
  41443. },
  41444. maw: {
  41445. height: math.unit(0.52, "feet"),
  41446. name: "Maw",
  41447. image: {
  41448. source: "./media/characters/xenon/maw.svg"
  41449. }
  41450. },
  41451. handLeft: {
  41452. height: math.unit(0.82 * 169 / 153, "feet"),
  41453. name: "Hand (Left)",
  41454. image: {
  41455. source: "./media/characters/xenon/hand-left.svg"
  41456. }
  41457. },
  41458. handRight: {
  41459. height: math.unit(0.82, "feet"),
  41460. name: "Hand (Right)",
  41461. image: {
  41462. source: "./media/characters/xenon/hand-right.svg"
  41463. }
  41464. },
  41465. footLeft: {
  41466. height: math.unit(1.13, "feet"),
  41467. name: "Foot (Left)",
  41468. image: {
  41469. source: "./media/characters/xenon/foot-left.svg"
  41470. }
  41471. },
  41472. footRight: {
  41473. height: math.unit(1.13 * 194 / 196, "feet"),
  41474. name: "Foot (Right)",
  41475. image: {
  41476. source: "./media/characters/xenon/foot-right.svg"
  41477. }
  41478. },
  41479. },
  41480. [
  41481. {
  41482. name: "Micro",
  41483. height: math.unit(0.8, "inches")
  41484. },
  41485. {
  41486. name: "Normal",
  41487. height: math.unit(6, "feet")
  41488. },
  41489. {
  41490. name: "Macro",
  41491. height: math.unit(50, "feet"),
  41492. default: true
  41493. },
  41494. {
  41495. name: "Macro+",
  41496. height: math.unit(250, "feet")
  41497. },
  41498. {
  41499. name: "Megamacro",
  41500. height: math.unit(1500, "feet")
  41501. },
  41502. ]
  41503. ))
  41504. characterMakers.push(() => makeCharacter(
  41505. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41506. {
  41507. front: {
  41508. height: math.unit(7 + 5/12, "feet"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/zane/front.svg",
  41512. extra: 1260/1203,
  41513. bottom: 94/1354
  41514. }
  41515. },
  41516. back: {
  41517. height: math.unit(5.05, "feet"),
  41518. name: "Back",
  41519. image: {
  41520. source: "./media/characters/zane/back.svg",
  41521. extra: 893/829,
  41522. bottom: 30/923
  41523. }
  41524. },
  41525. werewolf: {
  41526. height: math.unit(11, "feet"),
  41527. name: "Werewolf",
  41528. image: {
  41529. source: "./media/characters/zane/werewolf.svg",
  41530. extra: 1383/1323,
  41531. bottom: 89/1472
  41532. }
  41533. },
  41534. foot: {
  41535. height: math.unit(1.46, "feet"),
  41536. name: "Foot",
  41537. image: {
  41538. source: "./media/characters/zane/foot.svg"
  41539. }
  41540. },
  41541. footFront: {
  41542. height: math.unit(0.784, "feet"),
  41543. name: "Foot (Front)",
  41544. image: {
  41545. source: "./media/characters/zane/foot-front.svg"
  41546. }
  41547. },
  41548. dick: {
  41549. height: math.unit(1.95, "feet"),
  41550. name: "Dick",
  41551. image: {
  41552. source: "./media/characters/zane/dick.svg"
  41553. }
  41554. },
  41555. dickWerewolf: {
  41556. height: math.unit(3.77, "feet"),
  41557. name: "Dick (Werewolf)",
  41558. image: {
  41559. source: "./media/characters/zane/dick.svg"
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(7 + 5/12, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(6 + 2/12, "feet"),
  41576. weight: math.unit(284, "lb"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/benni-desparque/front.svg",
  41580. extra: 1353/1126,
  41581. bottom: 69/1422
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Civilian",
  41588. height: math.unit(6 + 2/12, "feet")
  41589. },
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(98, "feet"),
  41593. default: true
  41594. },
  41595. {
  41596. name: "Kaiju Fighter",
  41597. height: math.unit(268, "feet")
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(5, "feet"),
  41606. weight: math.unit(105, "lb"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/maxine/front.svg",
  41610. extra: 1386/1250,
  41611. bottom: 71/1457
  41612. }
  41613. },
  41614. },
  41615. [
  41616. {
  41617. name: "Normal",
  41618. height: math.unit(5, "feet"),
  41619. default: true
  41620. },
  41621. ]
  41622. ))
  41623. characterMakers.push(() => makeCharacter(
  41624. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41625. {
  41626. front: {
  41627. height: math.unit(11 + 7/12, "feet"),
  41628. weight: math.unit(9576, "lb"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/scaly/front.svg",
  41632. extra: 888/867,
  41633. bottom: 36/924
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(11 + 7/12, "feet"),
  41641. default: true
  41642. },
  41643. ]
  41644. ))
  41645. characterMakers.push(() => makeCharacter(
  41646. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41647. {
  41648. front: {
  41649. height: math.unit(6 + 3/12, "feet"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/saelria/front.svg",
  41653. extra: 1243/1138,
  41654. bottom: 46/1289
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Micro",
  41661. height: math.unit(6, "inches"),
  41662. },
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(6 + 3/12, "feet"),
  41666. default: true
  41667. },
  41668. {
  41669. name: "Macro",
  41670. height: math.unit(25, "feet")
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(80, "meters"),
  41679. weight: math.unit(7000, "tonnes"),
  41680. name: "Front",
  41681. image: {
  41682. source: "./media/characters/tef/front.svg",
  41683. extra: 2036/1991,
  41684. bottom: 54/2090
  41685. }
  41686. },
  41687. back: {
  41688. height: math.unit(80, "meters"),
  41689. weight: math.unit(7000, "tonnes"),
  41690. name: "Back",
  41691. image: {
  41692. source: "./media/characters/tef/back.svg",
  41693. extra: 2036/1991,
  41694. bottom: 54/2090
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Macro",
  41701. height: math.unit(80, "meters"),
  41702. default: true
  41703. },
  41704. ]
  41705. ))
  41706. characterMakers.push(() => makeCharacter(
  41707. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41708. {
  41709. front: {
  41710. height: math.unit(13, "feet"),
  41711. weight: math.unit(6, "tons"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/rover/front.svg",
  41715. extra: 1233/1156,
  41716. bottom: 50/1283
  41717. }
  41718. },
  41719. back: {
  41720. height: math.unit(13, "feet"),
  41721. weight: math.unit(6, "tons"),
  41722. name: "Back",
  41723. image: {
  41724. source: "./media/characters/rover/back.svg",
  41725. extra: 1327/1258,
  41726. bottom: 39/1366
  41727. }
  41728. },
  41729. },
  41730. [
  41731. {
  41732. name: "Normal",
  41733. height: math.unit(13, "feet"),
  41734. default: true
  41735. },
  41736. {
  41737. name: "Macro",
  41738. height: math.unit(1300, "feet")
  41739. },
  41740. {
  41741. name: "Megamacro",
  41742. height: math.unit(1300, "miles")
  41743. },
  41744. {
  41745. name: "Gigamacro",
  41746. height: math.unit(1300000, "miles")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(6, "feet"),
  41755. weight: math.unit(150, "lb"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/ariz/front.svg",
  41759. extra: 1401/1346,
  41760. bottom: 5/1406
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Normal",
  41767. height: math.unit(10, "feet"),
  41768. default: true
  41769. },
  41770. ]
  41771. ))
  41772. characterMakers.push(() => makeCharacter(
  41773. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41774. {
  41775. front: {
  41776. height: math.unit(6, "feet"),
  41777. weight: math.unit(140, "lb"),
  41778. name: "Front",
  41779. image: {
  41780. source: "./media/characters/sigrun/front.svg",
  41781. extra: 1418/1359,
  41782. bottom: 27/1445
  41783. }
  41784. },
  41785. },
  41786. [
  41787. {
  41788. name: "Macro",
  41789. height: math.unit(35, "feet"),
  41790. default: true
  41791. },
  41792. ]
  41793. ))
  41794. characterMakers.push(() => makeCharacter(
  41795. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41796. {
  41797. front: {
  41798. height: math.unit(6, "feet"),
  41799. weight: math.unit(150, "lb"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/numin/front.svg",
  41803. extra: 1433/1388,
  41804. bottom: 12/1445
  41805. }
  41806. },
  41807. },
  41808. [
  41809. {
  41810. name: "Macro",
  41811. height: math.unit(21.5, "km"),
  41812. default: true
  41813. },
  41814. ]
  41815. ))
  41816. characterMakers.push(() => makeCharacter(
  41817. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41818. {
  41819. front: {
  41820. height: math.unit(6, "feet"),
  41821. weight: math.unit(463, "lb"),
  41822. name: "Front",
  41823. image: {
  41824. source: "./media/characters/melwa/front.svg",
  41825. extra: 1307/1248,
  41826. bottom: 93/1400
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Macro",
  41833. height: math.unit(50, "meters"),
  41834. default: true
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(325, "feet"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/zorkaiju/front.svg",
  41846. extra: 1955/1814,
  41847. bottom: 40/1995
  41848. }
  41849. },
  41850. frontExtended: {
  41851. height: math.unit(325, "feet"),
  41852. name: "Front (Extended)",
  41853. image: {
  41854. source: "./media/characters/zorkaiju/front-extended.svg",
  41855. extra: 1955/1814,
  41856. bottom: 40/1995
  41857. }
  41858. },
  41859. side: {
  41860. height: math.unit(325, "feet"),
  41861. name: "Side",
  41862. image: {
  41863. source: "./media/characters/zorkaiju/side.svg",
  41864. extra: 1495/1396,
  41865. bottom: 17/1512
  41866. }
  41867. },
  41868. sideExtended: {
  41869. height: math.unit(325, "feet"),
  41870. name: "Side (Extended)",
  41871. image: {
  41872. source: "./media/characters/zorkaiju/side-extended.svg",
  41873. extra: 1495/1396,
  41874. bottom: 17/1512
  41875. }
  41876. },
  41877. back: {
  41878. height: math.unit(325, "feet"),
  41879. name: "Back",
  41880. image: {
  41881. source: "./media/characters/zorkaiju/back.svg",
  41882. extra: 1959/1821,
  41883. bottom: 31/1990
  41884. }
  41885. },
  41886. backExtended: {
  41887. height: math.unit(325, "feet"),
  41888. name: "Back (Extended)",
  41889. image: {
  41890. source: "./media/characters/zorkaiju/back-extended.svg",
  41891. extra: 1959/1821,
  41892. bottom: 31/1990
  41893. }
  41894. },
  41895. hand: {
  41896. height: math.unit(58.4, "feet"),
  41897. name: "Hand",
  41898. image: {
  41899. source: "./media/characters/zorkaiju/hand.svg"
  41900. }
  41901. },
  41902. handExtended: {
  41903. height: math.unit(61.4, "feet"),
  41904. name: "Hand (Extended)",
  41905. image: {
  41906. source: "./media/characters/zorkaiju/hand-extended.svg"
  41907. }
  41908. },
  41909. foot: {
  41910. height: math.unit(95, "feet"),
  41911. name: "Foot",
  41912. image: {
  41913. source: "./media/characters/zorkaiju/foot.svg"
  41914. }
  41915. },
  41916. leftArm: {
  41917. height: math.unit(59, "feet"),
  41918. name: "Left Arm",
  41919. image: {
  41920. source: "./media/characters/zorkaiju/left-arm.svg"
  41921. }
  41922. },
  41923. rightArm: {
  41924. height: math.unit(59, "feet"),
  41925. name: "Right Arm",
  41926. image: {
  41927. source: "./media/characters/zorkaiju/right-arm.svg"
  41928. }
  41929. },
  41930. leftArmExtended: {
  41931. height: math.unit(59 * 1.033546, "feet"),
  41932. name: "Left Arm (Extended)",
  41933. image: {
  41934. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41935. }
  41936. },
  41937. rightArmExtended: {
  41938. height: math.unit(59 * 1.0496, "feet"),
  41939. name: "Right Arm (Extended)",
  41940. image: {
  41941. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41942. }
  41943. },
  41944. tail: {
  41945. height: math.unit(104, "feet"),
  41946. name: "Tail",
  41947. image: {
  41948. source: "./media/characters/zorkaiju/tail.svg"
  41949. }
  41950. },
  41951. tailExtended: {
  41952. height: math.unit(104, "feet"),
  41953. name: "Tail (Extended)",
  41954. image: {
  41955. source: "./media/characters/zorkaiju/tail-extended.svg"
  41956. }
  41957. },
  41958. tailBottom: {
  41959. height: math.unit(104, "feet"),
  41960. name: "Tail Bottom",
  41961. image: {
  41962. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41963. }
  41964. },
  41965. crystal: {
  41966. height: math.unit(27.54, "feet"),
  41967. name: "Crystal",
  41968. image: {
  41969. source: "./media/characters/zorkaiju/crystal.svg"
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Kaiju",
  41976. height: math.unit(325, "feet"),
  41977. default: true
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(6 + 1/12, "feet"),
  41986. weight: math.unit(115, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/bailey-belfry/front.svg",
  41990. extra: 1240/1121,
  41991. bottom: 101/1341
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(6 + 1/12, "feet"),
  41999. default: true
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42005. {
  42006. side: {
  42007. height: math.unit(4, "meters"),
  42008. weight: math.unit(250, "kg"),
  42009. name: "Side",
  42010. image: {
  42011. source: "./media/characters/blacky/side.svg",
  42012. extra: 1027/919,
  42013. bottom: 43/1070
  42014. }
  42015. },
  42016. maw: {
  42017. height: math.unit(1, "meters"),
  42018. name: "Maw",
  42019. image: {
  42020. source: "./media/characters/blacky/maw.svg"
  42021. }
  42022. },
  42023. paw: {
  42024. height: math.unit(1, "meters"),
  42025. name: "Paw",
  42026. image: {
  42027. source: "./media/characters/blacky/paw.svg"
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Normal",
  42034. height: math.unit(4, "meters"),
  42035. default: true
  42036. },
  42037. ]
  42038. ))
  42039. characterMakers.push(() => makeCharacter(
  42040. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42041. {
  42042. front: {
  42043. height: math.unit(170, "cm"),
  42044. weight: math.unit(66, "kg"),
  42045. name: "Front",
  42046. image: {
  42047. source: "./media/characters/thux-ei/front.svg",
  42048. extra: 1109/1011,
  42049. bottom: 8/1117
  42050. }
  42051. },
  42052. },
  42053. [
  42054. {
  42055. name: "Normal",
  42056. height: math.unit(170, "cm"),
  42057. default: true
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(5, "feet"),
  42066. weight: math.unit(120, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/roxanne-voltaire/front.svg",
  42070. extra: 1901/1779,
  42071. bottom: 53/1954
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Normal",
  42078. height: math.unit(5, "feet"),
  42079. default: true
  42080. },
  42081. {
  42082. name: "Giant",
  42083. height: math.unit(50, "feet")
  42084. },
  42085. {
  42086. name: "Titan",
  42087. height: math.unit(500, "feet")
  42088. },
  42089. {
  42090. name: "Macro",
  42091. height: math.unit(5000, "feet")
  42092. },
  42093. {
  42094. name: "Megamacro",
  42095. height: math.unit(50000, "feet")
  42096. },
  42097. {
  42098. name: "Gigamacro",
  42099. height: math.unit(500000, "feet")
  42100. },
  42101. {
  42102. name: "Teramacro",
  42103. height: math.unit(5e6, "feet")
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42109. {
  42110. front: {
  42111. height: math.unit(6 + 2/12, "feet"),
  42112. name: "Front",
  42113. image: {
  42114. source: "./media/characters/squeaks/front.svg",
  42115. extra: 1823/1768,
  42116. bottom: 138/1961
  42117. }
  42118. },
  42119. },
  42120. [
  42121. {
  42122. name: "Micro",
  42123. height: math.unit(0.5, "inches")
  42124. },
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(6 + 2/12, "feet"),
  42128. default: true
  42129. },
  42130. {
  42131. name: "Macro",
  42132. height: math.unit(600, "feet")
  42133. },
  42134. ]
  42135. ))
  42136. characterMakers.push(() => makeCharacter(
  42137. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42138. {
  42139. front: {
  42140. height: math.unit(1.72, "meters"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/archinger/front.svg",
  42144. extra: 1861/1675,
  42145. bottom: 125/1986
  42146. }
  42147. },
  42148. back: {
  42149. height: math.unit(1.72, "meters"),
  42150. name: "Back",
  42151. image: {
  42152. source: "./media/characters/archinger/back.svg",
  42153. extra: 1844/1701,
  42154. bottom: 104/1948
  42155. }
  42156. },
  42157. cock: {
  42158. height: math.unit(0.59, "feet"),
  42159. name: "Cock",
  42160. image: {
  42161. source: "./media/characters/archinger/cock.svg"
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Normal",
  42168. height: math.unit(1.72, "meters"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "Macro",
  42173. height: math.unit(84, "meters")
  42174. },
  42175. {
  42176. name: "Macro+",
  42177. height: math.unit(112, "meters")
  42178. },
  42179. {
  42180. name: "Macro++",
  42181. height: math.unit(960, "meters")
  42182. },
  42183. {
  42184. name: "Macro+++",
  42185. height: math.unit(4, "km")
  42186. },
  42187. {
  42188. name: "Macro++++",
  42189. height: math.unit(48, "km")
  42190. },
  42191. {
  42192. name: "Macro+++++",
  42193. height: math.unit(4500, "km")
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42199. {
  42200. front: {
  42201. height: math.unit(5 + 5/12, "feet"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/alsnapz/front.svg",
  42205. extra: 1157/1065,
  42206. bottom: 42/1199
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(5 + 5/12, "feet"),
  42214. default: true
  42215. },
  42216. ]
  42217. ))
  42218. characterMakers.push(() => makeCharacter(
  42219. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42220. {
  42221. side: {
  42222. height: math.unit(3.2, "earths"),
  42223. name: "Side",
  42224. image: {
  42225. source: "./media/characters/mag/side.svg",
  42226. extra: 1331/1008,
  42227. bottom: 52/1383
  42228. }
  42229. },
  42230. wing: {
  42231. height: math.unit(1.94, "earths"),
  42232. name: "Wing",
  42233. image: {
  42234. source: "./media/characters/mag/wing.svg"
  42235. }
  42236. },
  42237. dick: {
  42238. height: math.unit(1.8, "earths"),
  42239. name: "Dick",
  42240. image: {
  42241. source: "./media/characters/mag/dick.svg"
  42242. }
  42243. },
  42244. ass: {
  42245. height: math.unit(1.33, "earths"),
  42246. name: "Ass",
  42247. image: {
  42248. source: "./media/characters/mag/ass.svg"
  42249. }
  42250. },
  42251. head: {
  42252. height: math.unit(1.1, "earths"),
  42253. name: "Head",
  42254. image: {
  42255. source: "./media/characters/mag/head.svg"
  42256. }
  42257. },
  42258. maw: {
  42259. height: math.unit(1.62, "earths"),
  42260. name: "Maw",
  42261. image: {
  42262. source: "./media/characters/mag/maw.svg"
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Small",
  42269. height: math.unit(162, "feet")
  42270. },
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(3.2, "earths"),
  42274. default: true
  42275. },
  42276. ]
  42277. ))
  42278. characterMakers.push(() => makeCharacter(
  42279. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42280. {
  42281. front: {
  42282. height: math.unit(512, "feet"),
  42283. weight: math.unit(63509, "tonnes"),
  42284. name: "Front",
  42285. image: {
  42286. source: "./media/characters/vorrel-harroc/front.svg",
  42287. extra: 1075/1063,
  42288. bottom: 62/1137
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(10, "feet")
  42296. },
  42297. {
  42298. name: "Macro",
  42299. height: math.unit(512, "feet"),
  42300. default: true
  42301. },
  42302. {
  42303. name: "Megamacro",
  42304. height: math.unit(256, "miles")
  42305. },
  42306. {
  42307. name: "Gigamacro",
  42308. height: math.unit(4096, "miles")
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42314. {
  42315. side: {
  42316. height: math.unit(50, "feet"),
  42317. name: "Side",
  42318. image: {
  42319. source: "./media/characters/froimar/side.svg",
  42320. extra: 855/638,
  42321. bottom: 99/954
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Macro",
  42328. height: math.unit(50, "feet"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(210, "miles"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/timothy/front.svg",
  42341. extra: 1007/943,
  42342. bottom: 62/1069
  42343. }
  42344. },
  42345. frontSkirt: {
  42346. height: math.unit(210, "miles"),
  42347. name: "Front (Skirt)",
  42348. image: {
  42349. source: "./media/characters/timothy/front-skirt.svg",
  42350. extra: 1007/943,
  42351. bottom: 62/1069
  42352. }
  42353. },
  42354. frontCoat: {
  42355. height: math.unit(210, "miles"),
  42356. name: "Front (Coat)",
  42357. image: {
  42358. source: "./media/characters/timothy/front-coat.svg",
  42359. extra: 1007/943,
  42360. bottom: 62/1069
  42361. }
  42362. },
  42363. },
  42364. [
  42365. {
  42366. name: "Macro",
  42367. height: math.unit(210, "miles"),
  42368. default: true
  42369. },
  42370. {
  42371. name: "Megamacro",
  42372. height: math.unit(210000, "miles")
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(188, "feet"),
  42381. name: "Front",
  42382. image: {
  42383. source: "./media/characters/pyotr/front.svg",
  42384. extra: 1912/1826,
  42385. bottom: 18/1930
  42386. }
  42387. },
  42388. },
  42389. [
  42390. {
  42391. name: "Macro",
  42392. height: math.unit(188, "feet"),
  42393. default: true
  42394. },
  42395. {
  42396. name: "Megamacro",
  42397. height: math.unit(8, "miles")
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42403. {
  42404. side: {
  42405. height: math.unit(10, "feet"),
  42406. weight: math.unit(4500, "lb"),
  42407. name: "Side",
  42408. image: {
  42409. source: "./media/characters/ackart/side.svg",
  42410. extra: 1776/1668,
  42411. bottom: 116/1892
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Normal",
  42418. height: math.unit(10, "feet"),
  42419. default: true
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42425. {
  42426. side: {
  42427. height: math.unit(21, "feet"),
  42428. name: "Side",
  42429. image: {
  42430. source: "./media/characters/nolow/side.svg",
  42431. extra: 1484/1434,
  42432. bottom: 85/1569
  42433. }
  42434. },
  42435. sideErect: {
  42436. height: math.unit(21, "feet"),
  42437. name: "Side-erect",
  42438. image: {
  42439. source: "./media/characters/nolow/side-erect.svg",
  42440. extra: 1484/1434,
  42441. bottom: 85/1569
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Regular",
  42448. height: math.unit(12, "feet")
  42449. },
  42450. {
  42451. name: "Big Chee",
  42452. height: math.unit(21, "feet"),
  42453. default: true
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(7, "feet"),
  42462. weight: math.unit(250, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/nines/front.svg",
  42466. extra: 1741/1607,
  42467. bottom: 41/1782
  42468. }
  42469. },
  42470. side: {
  42471. height: math.unit(7, "feet"),
  42472. weight: math.unit(250, "lb"),
  42473. name: "Side",
  42474. image: {
  42475. source: "./media/characters/nines/side.svg",
  42476. extra: 1854/1735,
  42477. bottom: 93/1947
  42478. }
  42479. },
  42480. back: {
  42481. height: math.unit(7, "feet"),
  42482. weight: math.unit(250, "lb"),
  42483. name: "Back",
  42484. image: {
  42485. source: "./media/characters/nines/back.svg",
  42486. extra: 1748/1615,
  42487. bottom: 20/1768
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Megamacro",
  42494. height: math.unit(99, "km"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(5 + 10/12, "feet"),
  42504. weight: math.unit(210, "lb"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/zenith/front.svg",
  42508. extra: 1531/1452,
  42509. bottom: 198/1729
  42510. }
  42511. },
  42512. back: {
  42513. height: math.unit(5 + 10/12, "feet"),
  42514. weight: math.unit(210, "lb"),
  42515. name: "Back",
  42516. image: {
  42517. source: "./media/characters/zenith/back.svg",
  42518. extra: 1571/1487,
  42519. bottom: 75/1646
  42520. }
  42521. },
  42522. },
  42523. [
  42524. {
  42525. name: "Normal",
  42526. height: math.unit(5 + 10/12, "feet"),
  42527. default: true
  42528. }
  42529. ]
  42530. ))
  42531. characterMakers.push(() => makeCharacter(
  42532. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42533. {
  42534. front: {
  42535. height: math.unit(4, "feet"),
  42536. weight: math.unit(60, "lb"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/jasper/front.svg",
  42540. extra: 1450/1379,
  42541. bottom: 19/1469
  42542. }
  42543. },
  42544. },
  42545. [
  42546. {
  42547. name: "Normal",
  42548. height: math.unit(4, "feet"),
  42549. default: true
  42550. },
  42551. ]
  42552. ))
  42553. characterMakers.push(() => makeCharacter(
  42554. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42555. {
  42556. front: {
  42557. height: math.unit(6 + 5/12, "feet"),
  42558. weight: math.unit(290, "lb"),
  42559. name: "Front",
  42560. image: {
  42561. source: "./media/characters/tiberius-thyben/front.svg",
  42562. extra: 757/739,
  42563. bottom: 39/796
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Micro",
  42570. height: math.unit(1.5, "inches")
  42571. },
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(6 + 5/12, "feet"),
  42575. default: true
  42576. },
  42577. {
  42578. name: "Macro",
  42579. height: math.unit(300, "feet")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(5 + 6/12, "feet"),
  42588. weight: math.unit(60, "kg"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/sabre/front.svg",
  42592. extra: 738/671,
  42593. bottom: 27/765
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Teeny",
  42600. height: math.unit(2, "inches")
  42601. },
  42602. {
  42603. name: "Smol",
  42604. height: math.unit(8, "inches")
  42605. },
  42606. {
  42607. name: "Normal",
  42608. height: math.unit(5 + 6/12, "feet"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Mini-Macro",
  42613. height: math.unit(15, "feet")
  42614. },
  42615. {
  42616. name: "Macro",
  42617. height: math.unit(50, "feet")
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(6 + 4/12, "feet"),
  42626. weight: math.unit(170, "lb"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/charlie/front.svg",
  42630. extra: 1348/1228,
  42631. bottom: 15/1363
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Macro",
  42638. height: math.unit(1700, "meters"),
  42639. default: true
  42640. },
  42641. {
  42642. name: "MegaMacro",
  42643. height: math.unit(20400, "meters")
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(6 + 3/12, "feet"),
  42652. weight: math.unit(185, "lb"),
  42653. name: "Front",
  42654. image: {
  42655. source: "./media/characters/susan-grant/front.svg",
  42656. extra: 1351/1327,
  42657. bottom: 26/1377
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Normal",
  42664. height: math.unit(6 + 3/12, "feet"),
  42665. default: true
  42666. },
  42667. {
  42668. name: "Macro",
  42669. height: math.unit(225, "feet")
  42670. },
  42671. {
  42672. name: "Macro+",
  42673. height: math.unit(900, "feet")
  42674. },
  42675. {
  42676. name: "MegaMacro",
  42677. height: math.unit(14400, "feet")
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(5 + 4/12, "feet"),
  42686. weight: math.unit(110, "lb"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/axel-isanov/front.svg",
  42690. extra: 1096/1065,
  42691. bottom: 13/1109
  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: "Necahual", species: ["cat"], tags: ["anthro"] },
  42705. {
  42706. front: {
  42707. height: math.unit(9, "feet"),
  42708. weight: math.unit(467, "lb"),
  42709. name: "Front",
  42710. image: {
  42711. source: "./media/characters/necahual/front.svg",
  42712. extra: 920/873,
  42713. bottom: 26/946
  42714. }
  42715. },
  42716. back: {
  42717. height: math.unit(9, "feet"),
  42718. weight: math.unit(467, "lb"),
  42719. name: "Back",
  42720. image: {
  42721. source: "./media/characters/necahual/back.svg",
  42722. extra: 930/884,
  42723. bottom: 16/946
  42724. }
  42725. },
  42726. frontUnderwear: {
  42727. height: math.unit(9, "feet"),
  42728. weight: math.unit(467, "lb"),
  42729. name: "Front (Underwear)",
  42730. image: {
  42731. source: "./media/characters/necahual/front-underwear.svg",
  42732. extra: 920/873,
  42733. bottom: 26/946
  42734. }
  42735. },
  42736. frontDressed: {
  42737. height: math.unit(9, "feet"),
  42738. weight: math.unit(467, "lb"),
  42739. name: "Front (Dressed)",
  42740. image: {
  42741. source: "./media/characters/necahual/front-dressed.svg",
  42742. extra: 920/873,
  42743. bottom: 26/946
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Comprsesed",
  42750. height: math.unit(9, "feet")
  42751. },
  42752. {
  42753. name: "Natural",
  42754. height: math.unit(15, "feet"),
  42755. default: true
  42756. },
  42757. {
  42758. name: "Boosted",
  42759. height: math.unit(50, "feet")
  42760. },
  42761. {
  42762. name: "Boosted+",
  42763. height: math.unit(150, "feet")
  42764. },
  42765. {
  42766. name: "Max",
  42767. height: math.unit(500, "feet")
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(22 + 1/12, "feet"),
  42776. weight: math.unit(3200, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/theo-acacia/front.svg",
  42780. extra: 1796/1741,
  42781. bottom: 83/1879
  42782. }
  42783. },
  42784. frontUnderwear: {
  42785. height: math.unit(22 + 1/12, "feet"),
  42786. weight: math.unit(3200, "lb"),
  42787. name: "Front (Underwear)",
  42788. image: {
  42789. source: "./media/characters/theo-acacia/front-underwear.svg",
  42790. extra: 1796/1741,
  42791. bottom: 83/1879
  42792. }
  42793. },
  42794. frontNude: {
  42795. height: math.unit(22 + 1/12, "feet"),
  42796. weight: math.unit(3200, "lb"),
  42797. name: "Front (Nude)",
  42798. image: {
  42799. source: "./media/characters/theo-acacia/front-nude.svg",
  42800. extra: 1796/1741,
  42801. bottom: 83/1879
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal",
  42808. height: math.unit(22 + 1/12, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(20, "feet"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/astra/front.svg",
  42821. extra: 1850/1714,
  42822. bottom: 106/1956
  42823. }
  42824. },
  42825. frontUndressed: {
  42826. height: math.unit(20, "feet"),
  42827. name: "Front (Undressed)",
  42828. image: {
  42829. source: "./media/characters/astra/front-undressed.svg",
  42830. extra: 1926/1749,
  42831. bottom: 0/1926
  42832. }
  42833. },
  42834. hand: {
  42835. height: math.unit(1.53, "feet"),
  42836. name: "Hand",
  42837. image: {
  42838. source: "./media/characters/astra/hand.svg"
  42839. }
  42840. },
  42841. paw: {
  42842. height: math.unit(1.53, "feet"),
  42843. name: "Paw",
  42844. image: {
  42845. source: "./media/characters/astra/paw.svg"
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Smallest",
  42852. height: math.unit(20, "feet")
  42853. },
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(1e9, "miles"),
  42857. default: true
  42858. },
  42859. {
  42860. name: "Larger",
  42861. height: math.unit(5, "multiverses")
  42862. },
  42863. {
  42864. name: "Largest",
  42865. height: math.unit(1e9, "multiverses")
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(8, "feet"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/breanna/front.svg",
  42877. extra: 1912/1632,
  42878. bottom: 33/1945
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Smallest",
  42885. height: math.unit(8, "feet")
  42886. },
  42887. {
  42888. name: "Normal",
  42889. height: math.unit(1, "mile"),
  42890. default: true
  42891. },
  42892. {
  42893. name: "Maximum",
  42894. height: math.unit(1500000000000, "lightyears")
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42900. {
  42901. front: {
  42902. height: math.unit(5 + 11/12, "feet"),
  42903. weight: math.unit(155, "lb"),
  42904. name: "Front",
  42905. image: {
  42906. source: "./media/characters/cai/front.svg",
  42907. extra: 1823/1702,
  42908. bottom: 32/1855
  42909. }
  42910. },
  42911. back: {
  42912. height: math.unit(5 + 11/12, "feet"),
  42913. weight: math.unit(155, "lb"),
  42914. name: "Back",
  42915. image: {
  42916. source: "./media/characters/cai/back.svg",
  42917. extra: 1809/1708,
  42918. bottom: 31/1840
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(5 + 11/12, "feet"),
  42926. default: true
  42927. },
  42928. {
  42929. name: "Big",
  42930. height: math.unit(15, "feet")
  42931. },
  42932. {
  42933. name: "Macro",
  42934. height: math.unit(200, "feet")
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(5 + 6/12, "feet"),
  42943. weight: math.unit(160, "lb"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42947. extra: 1227/1174,
  42948. bottom: 37/1264
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Macro",
  42955. height: math.unit(444, "meters"),
  42956. default: true
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42962. {
  42963. front: {
  42964. height: math.unit(18 + 7/12, "feet"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/rex/front.svg",
  42968. extra: 1941/1807,
  42969. bottom: 66/2007
  42970. }
  42971. },
  42972. back: {
  42973. height: math.unit(18 + 7/12, "feet"),
  42974. name: "Back",
  42975. image: {
  42976. source: "./media/characters/rex/back.svg",
  42977. extra: 1937/1822,
  42978. bottom: 42/1979
  42979. }
  42980. },
  42981. boot: {
  42982. height: math.unit(3.45, "feet"),
  42983. name: "Boot",
  42984. image: {
  42985. source: "./media/characters/rex/boot.svg"
  42986. }
  42987. },
  42988. paw: {
  42989. height: math.unit(4.17, "feet"),
  42990. name: "Paw",
  42991. image: {
  42992. source: "./media/characters/rex/paw.svg"
  42993. }
  42994. },
  42995. head: {
  42996. height: math.unit(6.728, "feet"),
  42997. name: "Head",
  42998. image: {
  42999. source: "./media/characters/rex/head.svg"
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Nano",
  43006. height: math.unit(18 + 7/12, "feet")
  43007. },
  43008. {
  43009. name: "Micro",
  43010. height: math.unit(1.5, "megameters")
  43011. },
  43012. {
  43013. name: "Normal",
  43014. height: math.unit(440, "megameters"),
  43015. default: true
  43016. },
  43017. {
  43018. name: "Macro",
  43019. height: math.unit(2.5, "gigameters")
  43020. },
  43021. {
  43022. name: "Gigamacro",
  43023. height: math.unit(2, "galaxies")
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43029. {
  43030. side: {
  43031. height: math.unit(32, "feet"),
  43032. weight: math.unit(250000, "lb"),
  43033. name: "Side",
  43034. image: {
  43035. source: "./media/characters/silverwing/side.svg",
  43036. extra: 1100/1019,
  43037. bottom: 204/1304
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(32, "feet"),
  43045. default: true
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(6 + 6/12, "feet"),
  43054. weight: math.unit(350, "lb"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/tristan-hawthorne/front.svg",
  43058. extra: 1159/1124,
  43059. bottom: 37/1196
  43060. },
  43061. form: "labrador",
  43062. default: true
  43063. },
  43064. skunkFront: {
  43065. height: math.unit(4 + 6/12, "feet"),
  43066. weight: math.unit(120, "lb"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43070. extra: 1609/1551,
  43071. bottom: 169/1778
  43072. },
  43073. form: "skunk",
  43074. default: true
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Normal",
  43080. height: math.unit(6 + 6/12, "feet"),
  43081. form: "labrador",
  43082. default: true
  43083. },
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(4 + 6/12, "feet"),
  43087. form: "skunk",
  43088. default: true
  43089. },
  43090. ],
  43091. {
  43092. "labrador": {
  43093. name: "Labrador",
  43094. default: true
  43095. },
  43096. "skunk": {
  43097. name: "Skunk"
  43098. }
  43099. }
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(5 + 11/12, "feet"),
  43106. weight: math.unit(190, "lb"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/mizu/front.svg",
  43110. extra: 1988/1788,
  43111. bottom: 14/2002
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(5 + 11/12, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(1.7, "feet"),
  43128. weight: math.unit(50, "lb"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/dechroma/front.svg",
  43132. extra: 1095/859,
  43133. bottom: 64/1159
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(1.7, "feet"),
  43141. default: true
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43147. {
  43148. side: {
  43149. height: math.unit(30, "feet"),
  43150. name: "Side",
  43151. image: {
  43152. source: "./media/characters/veluren-thanazel/side.svg",
  43153. extra: 1611/633,
  43154. bottom: 118/1729
  43155. }
  43156. },
  43157. front: {
  43158. height: math.unit(30, "feet"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/veluren-thanazel/front.svg",
  43162. extra: 1486/636,
  43163. bottom: 238/1724
  43164. }
  43165. },
  43166. head: {
  43167. height: math.unit(21.4, "feet"),
  43168. name: "Head",
  43169. image: {
  43170. source: "./media/characters/veluren-thanazel/head.svg"
  43171. }
  43172. },
  43173. genitals: {
  43174. height: math.unit(19.4, "feet"),
  43175. name: "Genitals",
  43176. image: {
  43177. source: "./media/characters/veluren-thanazel/genitals.svg"
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Social",
  43184. height: math.unit(6, "feet")
  43185. },
  43186. {
  43187. name: "Play",
  43188. height: math.unit(12, "feet")
  43189. },
  43190. {
  43191. name: "True",
  43192. height: math.unit(30, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(7 + 6/12, "feet"),
  43202. weight: math.unit(500, "kg"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/arcturas/front.svg",
  43206. extra: 1700/1500,
  43207. bottom: 145/1845
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "Normal",
  43214. height: math.unit(7 + 6/12, "feet"),
  43215. default: true
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43221. {
  43222. side: {
  43223. height: math.unit(6, "feet"),
  43224. weight: math.unit(2, "tons"),
  43225. name: "Side",
  43226. image: {
  43227. source: "./media/characters/vitaen/side.svg",
  43228. extra: 1157/617,
  43229. bottom: 122/1279
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(6, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(19, "feet"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/fia-dreamweaver/front.svg",
  43249. extra: 1630/1504,
  43250. bottom: 25/1655
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(19, "feet"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(5 + 4/12, "feet"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/artan/front.svg",
  43270. extra: 1618/1535,
  43271. bottom: 46/1664
  43272. }
  43273. },
  43274. back: {
  43275. height: math.unit(5 + 4/12, "feet"),
  43276. name: "Back",
  43277. image: {
  43278. source: "./media/characters/artan/back.svg",
  43279. extra: 1618/1543,
  43280. bottom: 31/1649
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(5 + 4/12, "feet"),
  43288. default: true
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43294. {
  43295. side: {
  43296. height: math.unit(182, "cm"),
  43297. weight: math.unit(1000, "lb"),
  43298. name: "Side",
  43299. image: {
  43300. source: "./media/characters/silver-dragon/side.svg",
  43301. extra: 710/287,
  43302. bottom: 88/798
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(182, "cm"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43316. {
  43317. side: {
  43318. height: math.unit(6 + 6/12, "feet"),
  43319. weight: math.unit(1.5, "tons"),
  43320. name: "Side",
  43321. image: {
  43322. source: "./media/characters/zephyr/side.svg",
  43323. extra: 1433/586,
  43324. bottom: 109/1542
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Normal",
  43331. height: math.unit(6 + 6/12, "feet"),
  43332. default: true
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43338. {
  43339. side: {
  43340. height: math.unit(1, "feet"),
  43341. name: "Side",
  43342. image: {
  43343. source: "./media/characters/vixye/side.svg",
  43344. extra: 632/541,
  43345. bottom: 0/632
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(1, "feet"),
  43353. default: true
  43354. },
  43355. {
  43356. name: "True",
  43357. height: math.unit(1e15, "multiverses")
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43363. {
  43364. front: {
  43365. height: math.unit(8 + 2/12, "feet"),
  43366. weight: math.unit(650, "lb"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43370. extra: 1174/1137,
  43371. bottom: 82/1256
  43372. }
  43373. },
  43374. back: {
  43375. height: math.unit(8 + 2/12, "feet"),
  43376. weight: math.unit(650, "lb"),
  43377. name: "Back",
  43378. image: {
  43379. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43380. extra: 1204/1157,
  43381. bottom: 46/1250
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Wildform",
  43388. height: math.unit(8 + 2/12, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(18, "feet"),
  43398. name: "Front",
  43399. image: {
  43400. source: "./media/characters/cyphin/front.svg",
  43401. extra: 970/886,
  43402. bottom: 42/1012
  43403. }
  43404. },
  43405. back: {
  43406. height: math.unit(18, "feet"),
  43407. name: "Back",
  43408. image: {
  43409. source: "./media/characters/cyphin/back.svg",
  43410. extra: 1009/894,
  43411. bottom: 24/1033
  43412. }
  43413. },
  43414. head: {
  43415. height: math.unit(5.05, "feet"),
  43416. name: "Head",
  43417. image: {
  43418. source: "./media/characters/cyphin/head.svg"
  43419. }
  43420. },
  43421. tailbud: {
  43422. height: math.unit(5, "feet"),
  43423. name: "Tailbud",
  43424. image: {
  43425. source: "./media/characters/cyphin/tailbud.svg"
  43426. }
  43427. },
  43428. },
  43429. [
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43434. {
  43435. side: {
  43436. height: math.unit(10, "feet"),
  43437. weight: math.unit(6, "tons"),
  43438. name: "Side",
  43439. image: {
  43440. source: "./media/characters/raijin/side.svg",
  43441. extra: 1529/613,
  43442. bottom: 337/1866
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(10, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43456. {
  43457. side: {
  43458. height: math.unit(9, "feet"),
  43459. name: "Side",
  43460. image: {
  43461. source: "./media/characters/nilghais/side.svg",
  43462. extra: 1047/744,
  43463. bottom: 91/1138
  43464. }
  43465. },
  43466. head: {
  43467. height: math.unit(3.14, "feet"),
  43468. name: "Head",
  43469. image: {
  43470. source: "./media/characters/nilghais/head.svg"
  43471. }
  43472. },
  43473. mouth: {
  43474. height: math.unit(4.6, "feet"),
  43475. name: "Mouth",
  43476. image: {
  43477. source: "./media/characters/nilghais/mouth.svg"
  43478. }
  43479. },
  43480. wings: {
  43481. height: math.unit(24, "feet"),
  43482. name: "Wings",
  43483. image: {
  43484. source: "./media/characters/nilghais/wings.svg"
  43485. }
  43486. },
  43487. ass: {
  43488. height: math.unit(6.12, "feet"),
  43489. name: "Ass",
  43490. image: {
  43491. source: "./media/characters/nilghais/ass.svg"
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Normal",
  43498. height: math.unit(9, "feet"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43505. {
  43506. regular: {
  43507. height: math.unit(16 + 2/12, "feet"),
  43508. weight: math.unit(2300, "lb"),
  43509. name: "Regular",
  43510. image: {
  43511. source: "./media/characters/zolgar/regular.svg",
  43512. extra: 1246/1004,
  43513. bottom: 124/1370
  43514. }
  43515. },
  43516. boxers: {
  43517. height: math.unit(16 + 2/12, "feet"),
  43518. weight: math.unit(2300, "lb"),
  43519. name: "Boxers",
  43520. image: {
  43521. source: "./media/characters/zolgar/boxers.svg",
  43522. extra: 1246/1004,
  43523. bottom: 124/1370
  43524. }
  43525. },
  43526. armored: {
  43527. height: math.unit(16 + 2/12, "feet"),
  43528. weight: math.unit(2300, "lb"),
  43529. name: "Armored",
  43530. image: {
  43531. source: "./media/characters/zolgar/armored.svg",
  43532. extra: 1246/1004,
  43533. bottom: 124/1370
  43534. }
  43535. },
  43536. goth: {
  43537. height: math.unit(16 + 2/12, "feet"),
  43538. weight: math.unit(2300, "lb"),
  43539. name: "Goth",
  43540. image: {
  43541. source: "./media/characters/zolgar/goth.svg",
  43542. extra: 1246/1004,
  43543. bottom: 124/1370
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Shrunken Down",
  43550. height: math.unit(9 + 2/12, "feet")
  43551. },
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(16 + 2/12, "feet"),
  43555. default: true
  43556. },
  43557. ]
  43558. ))
  43559. characterMakers.push(() => makeCharacter(
  43560. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43561. {
  43562. front: {
  43563. height: math.unit(6, "feet"),
  43564. weight: math.unit(168, "lb"),
  43565. name: "Front",
  43566. image: {
  43567. source: "./media/characters/luca/front.svg",
  43568. extra: 841/667,
  43569. bottom: 102/943
  43570. }
  43571. },
  43572. },
  43573. [
  43574. {
  43575. name: "Normal",
  43576. height: math.unit(6, "feet"),
  43577. default: true
  43578. },
  43579. ]
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43583. {
  43584. side: {
  43585. height: math.unit(7 + 3/12, "feet"),
  43586. weight: math.unit(312, "lb"),
  43587. name: "Side",
  43588. image: {
  43589. source: "./media/characters/zezo/side.svg",
  43590. extra: 1192/1067,
  43591. bottom: 63/1255
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(7 + 3/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(5 + 5/12, "feet"),
  43608. weight: math.unit(170, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/mayso/front.svg",
  43612. extra: 1215/1108,
  43613. bottom: 16/1231
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(5 + 5/12, "feet"),
  43621. default: true
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43627. {
  43628. front: {
  43629. height: math.unit(4 + 3/12, "feet"),
  43630. weight: math.unit(80, "lb"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/hess/front.svg",
  43634. extra: 1200/1123,
  43635. bottom: 16/1216
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(4 + 3/12, "feet"),
  43643. default: true
  43644. },
  43645. ]
  43646. ))
  43647. characterMakers.push(() => makeCharacter(
  43648. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43649. {
  43650. front: {
  43651. height: math.unit(1.9, "meters"),
  43652. name: "Front",
  43653. image: {
  43654. source: "./media/characters/ashgar/front.svg",
  43655. extra: 1177/1146,
  43656. bottom: 99/1276
  43657. }
  43658. },
  43659. back: {
  43660. height: math.unit(1.9, "meters"),
  43661. name: "Back",
  43662. image: {
  43663. source: "./media/characters/ashgar/back.svg",
  43664. extra: 1201/1183,
  43665. bottom: 53/1254
  43666. }
  43667. },
  43668. feral: {
  43669. height: math.unit(1.4, "meters"),
  43670. name: "Feral",
  43671. image: {
  43672. source: "./media/characters/ashgar/feral.svg",
  43673. extra: 370/345,
  43674. bottom: 45/415
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "Normal",
  43681. height: math.unit(1.9, "meters"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43688. {
  43689. regular: {
  43690. height: math.unit(6, "feet"),
  43691. weight: math.unit(220, "lb"),
  43692. name: "Regular",
  43693. image: {
  43694. source: "./media/characters/phillip/regular.svg",
  43695. extra: 1373/1277,
  43696. bottom: 75/1448
  43697. }
  43698. },
  43699. dressed: {
  43700. height: math.unit(6, "feet"),
  43701. weight: math.unit(220, "lb"),
  43702. name: "Dressed",
  43703. image: {
  43704. source: "./media/characters/phillip/dressed.svg",
  43705. extra: 1373/1277,
  43706. bottom: 75/1448
  43707. }
  43708. },
  43709. paw: {
  43710. height: math.unit(1.44, "feet"),
  43711. name: "Paw",
  43712. image: {
  43713. source: "./media/characters/phillip/paw.svg"
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(6, "feet"),
  43721. default: true
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43727. {
  43728. side: {
  43729. height: math.unit(42, "feet"),
  43730. name: "Side",
  43731. image: {
  43732. source: "./media/characters/uvula/side.svg",
  43733. extra: 683/586,
  43734. bottom: 60/743
  43735. }
  43736. },
  43737. front: {
  43738. height: math.unit(42, "feet"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/uvula/front.svg",
  43742. extra: 705/613,
  43743. bottom: 54/759
  43744. }
  43745. },
  43746. maw: {
  43747. height: math.unit(23.5, "feet"),
  43748. name: "Maw",
  43749. image: {
  43750. source: "./media/characters/uvula/maw.svg"
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Original Size",
  43757. height: math.unit(14, "inches")
  43758. },
  43759. {
  43760. name: "Human Size",
  43761. height: math.unit(6, "feet")
  43762. },
  43763. {
  43764. name: "Big",
  43765. height: math.unit(42, "feet"),
  43766. default: true
  43767. },
  43768. {
  43769. name: "Bigger",
  43770. height: math.unit(100, "feet")
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43776. {
  43777. front: {
  43778. height: math.unit(5 + 11/12, "feet"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/lannah/front.svg",
  43782. extra: 1208/1113,
  43783. bottom: 97/1305
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(5 + 11/12, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43797. {
  43798. front: {
  43799. height: math.unit(6 + 3/12, "feet"),
  43800. weight: math.unit(3.5, "tons"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/emberflame/front.svg",
  43804. extra: 1198/672,
  43805. bottom: 82/1280
  43806. }
  43807. },
  43808. side: {
  43809. height: math.unit(6 + 3/12, "feet"),
  43810. weight: math.unit(3.5, "tons"),
  43811. name: "Side",
  43812. image: {
  43813. source: "./media/characters/emberflame/side.svg",
  43814. extra: 938/527,
  43815. bottom: 56/994
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(6 + 3/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43829. {
  43830. side: {
  43831. height: math.unit(17.5, "feet"),
  43832. weight: math.unit(35, "tons"),
  43833. name: "Side",
  43834. image: {
  43835. source: "./media/characters/sophie-ambrose/side.svg",
  43836. extra: 1573/1242,
  43837. bottom: 71/1644
  43838. }
  43839. },
  43840. maw: {
  43841. height: math.unit(7.4, "feet"),
  43842. name: "Maw",
  43843. image: {
  43844. source: "./media/characters/sophie-ambrose/maw.svg"
  43845. }
  43846. },
  43847. },
  43848. [
  43849. {
  43850. name: "Normal",
  43851. height: math.unit(17.5, "feet"),
  43852. default: true
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43858. {
  43859. front: {
  43860. height: math.unit(280, "feet"),
  43861. weight: math.unit(550, "tons"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/king-mugi/front.svg",
  43865. extra: 1102/947,
  43866. bottom: 104/1206
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "King Mugi",
  43873. height: math.unit(280, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(64, "meters"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/nova-fox/front.svg",
  43886. extra: 1310/1246,
  43887. bottom: 65/1375
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Macro",
  43894. height: math.unit(64, "meters"),
  43895. default: true
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(6 + 3/12, "feet"),
  43904. weight: math.unit(170, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/sam-bat/front.svg",
  43908. extra: 1601/1411,
  43909. bottom: 125/1726
  43910. }
  43911. },
  43912. back: {
  43913. height: math.unit(6 + 3/12, "feet"),
  43914. weight: math.unit(170, "lb"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/sam-bat/back.svg",
  43918. extra: 1577/1405,
  43919. bottom: 58/1635
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(6 + 3/12, "feet"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43933. {
  43934. front: {
  43935. height: math.unit(59, "feet"),
  43936. weight: math.unit(40000, "lb"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/inari/front.svg",
  43940. extra: 1884/1350,
  43941. bottom: 95/1979
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Gigantamax",
  43948. height: math.unit(59, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43955. {
  43956. front: {
  43957. height: math.unit(5 + 8/12, "feet"),
  43958. name: "Front",
  43959. image: {
  43960. source: "./media/characters/elizabeth/front.svg",
  43961. extra: 1395/1298,
  43962. bottom: 54/1449
  43963. }
  43964. },
  43965. mouth: {
  43966. height: math.unit(1.97, "feet"),
  43967. name: "Mouth",
  43968. image: {
  43969. source: "./media/characters/elizabeth/mouth.svg"
  43970. }
  43971. },
  43972. foot: {
  43973. height: math.unit(1.17, "feet"),
  43974. name: "Foot",
  43975. image: {
  43976. source: "./media/characters/elizabeth/foot.svg"
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(5 + 8/12, "feet"),
  43984. default: true
  43985. },
  43986. {
  43987. name: "Minimacro",
  43988. height: math.unit(18, "feet")
  43989. },
  43990. {
  43991. name: "Macro",
  43992. height: math.unit(180, "feet")
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43998. {
  43999. front: {
  44000. height: math.unit(5 + 2/12, "feet"),
  44001. name: "Front",
  44002. image: {
  44003. source: "./media/characters/october-gossamer/front.svg",
  44004. extra: 505/454,
  44005. bottom: 7/512
  44006. }
  44007. },
  44008. back: {
  44009. height: math.unit(5 + 2/12, "feet"),
  44010. name: "Back",
  44011. image: {
  44012. source: "./media/characters/october-gossamer/back.svg",
  44013. extra: 501/454,
  44014. bottom: 11/512
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(5 + 2/12, "feet"),
  44022. default: true
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(5, "feet"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/epiglottis/front.svg",
  44034. extra: 923/849,
  44035. bottom: 17/940
  44036. }
  44037. },
  44038. },
  44039. [
  44040. {
  44041. name: "Original Size",
  44042. height: math.unit(10, "inches")
  44043. },
  44044. {
  44045. name: "Human Size",
  44046. height: math.unit(5, "feet"),
  44047. default: true
  44048. },
  44049. {
  44050. name: "Big",
  44051. height: math.unit(25, "feet")
  44052. },
  44053. {
  44054. name: "Bigger",
  44055. height: math.unit(50, "feet")
  44056. },
  44057. {
  44058. name: "oh lawd",
  44059. height: math.unit(75, "feet")
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(2 + 4/12, "feet"),
  44068. weight: math.unit(60, "lb"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/lerm/front.svg",
  44072. extra: 796/790,
  44073. bottom: 79/875
  44074. }
  44075. },
  44076. },
  44077. [
  44078. {
  44079. name: "Normal",
  44080. height: math.unit(2 + 4/12, "feet"),
  44081. default: true
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44087. {
  44088. front: {
  44089. height: math.unit(5.5, "feet"),
  44090. weight: math.unit(130, "lb"),
  44091. name: "Front",
  44092. image: {
  44093. source: "./media/characters/xena-nebadon/front.svg",
  44094. extra: 1828/1730,
  44095. bottom: 79/1907
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Tiny Puppy",
  44102. height: math.unit(3, "inches")
  44103. },
  44104. {
  44105. name: "Normal",
  44106. height: math.unit(5.5, "feet"),
  44107. default: true
  44108. },
  44109. {
  44110. name: "Lotta Lady",
  44111. height: math.unit(12, "feet")
  44112. },
  44113. {
  44114. name: "Pretty Big",
  44115. height: math.unit(100, "feet")
  44116. },
  44117. {
  44118. name: "Big",
  44119. height: math.unit(500, "feet")
  44120. },
  44121. {
  44122. name: "Skyscraper Toys",
  44123. height: math.unit(2500, "feet")
  44124. },
  44125. {
  44126. name: "Plane Catcher",
  44127. height: math.unit(8, "miles")
  44128. },
  44129. {
  44130. name: "Planet Toys",
  44131. height: math.unit(15, "earths")
  44132. },
  44133. {
  44134. name: "Stardust",
  44135. height: math.unit(0.25, "galaxies")
  44136. },
  44137. {
  44138. name: "Snacks",
  44139. height: math.unit(70, "universes")
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44145. {
  44146. front: {
  44147. height: math.unit(1.6, "meters"),
  44148. weight: math.unit(60, "kg"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/bounty/front.svg",
  44152. extra: 1426/1308,
  44153. bottom: 15/1441
  44154. }
  44155. },
  44156. back: {
  44157. height: math.unit(1.6, "meters"),
  44158. weight: math.unit(60, "kg"),
  44159. name: "Back",
  44160. image: {
  44161. source: "./media/characters/bounty/back.svg",
  44162. extra: 1417/1307,
  44163. bottom: 8/1425
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(1.6, "meters"),
  44171. default: true
  44172. },
  44173. {
  44174. name: "Macro",
  44175. height: math.unit(300, "meters")
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44181. {
  44182. front: {
  44183. height: math.unit(2 + 8/12, "feet"),
  44184. weight: math.unit(15, "lb"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/mochi/front.svg",
  44188. extra: 1022/852,
  44189. bottom: 435/1457
  44190. }
  44191. },
  44192. back: {
  44193. height: math.unit(2 + 8/12, "feet"),
  44194. weight: math.unit(15, "lb"),
  44195. name: "Back",
  44196. image: {
  44197. source: "./media/characters/mochi/back.svg",
  44198. extra: 1335/1119,
  44199. bottom: 39/1374
  44200. }
  44201. },
  44202. bird: {
  44203. height: math.unit(2 + 8/12, "feet"),
  44204. weight: math.unit(15, "lb"),
  44205. name: "Bird",
  44206. image: {
  44207. source: "./media/characters/mochi/bird.svg",
  44208. extra: 1251/1113,
  44209. bottom: 178/1429
  44210. }
  44211. },
  44212. kaiju: {
  44213. height: math.unit(154, "feet"),
  44214. weight: math.unit(1e7, "lb"),
  44215. name: "Kaiju",
  44216. image: {
  44217. source: "./media/characters/mochi/kaiju.svg",
  44218. extra: 460/324,
  44219. bottom: 40/500
  44220. }
  44221. },
  44222. head: {
  44223. height: math.unit(1.21, "feet"),
  44224. name: "Head",
  44225. image: {
  44226. source: "./media/characters/mochi/head.svg"
  44227. }
  44228. },
  44229. alternateTail: {
  44230. height: math.unit(2 + 8/12, "feet"),
  44231. weight: math.unit(45, "lb"),
  44232. name: "Alternate Tail",
  44233. image: {
  44234. source: "./media/characters/mochi/alternate-tail.svg",
  44235. extra: 139/76,
  44236. bottom: 45/184
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Micro",
  44243. height: math.unit(2, "inches")
  44244. },
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(2 + 8/12, "feet"),
  44248. default: true
  44249. },
  44250. {
  44251. name: "Macro",
  44252. height: math.unit(106, "feet")
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44258. {
  44259. front: {
  44260. height: math.unit(5.67, "feet"),
  44261. weight: math.unit(135, "lb"),
  44262. name: "Front",
  44263. image: {
  44264. source: "./media/characters/sarel/front.svg",
  44265. extra: 865/788,
  44266. bottom: 97/962
  44267. }
  44268. },
  44269. back: {
  44270. height: math.unit(5.67, "feet"),
  44271. weight: math.unit(135, "lb"),
  44272. name: "Back",
  44273. image: {
  44274. source: "./media/characters/sarel/back.svg",
  44275. extra: 857/777,
  44276. bottom: 32/889
  44277. }
  44278. },
  44279. chozoan: {
  44280. height: math.unit(5.67, "feet"),
  44281. weight: math.unit(135, "lb"),
  44282. name: "Chozoan",
  44283. image: {
  44284. source: "./media/characters/sarel/chozoan.svg",
  44285. extra: 865/788,
  44286. bottom: 97/962
  44287. }
  44288. },
  44289. current: {
  44290. height: math.unit(5.67, "feet"),
  44291. weight: math.unit(135, "lb"),
  44292. name: "Current",
  44293. image: {
  44294. source: "./media/characters/sarel/current.svg",
  44295. extra: 865/788,
  44296. bottom: 97/962
  44297. }
  44298. },
  44299. head: {
  44300. height: math.unit(1.77, "feet"),
  44301. name: "Head",
  44302. image: {
  44303. source: "./media/characters/sarel/head.svg"
  44304. }
  44305. },
  44306. claws: {
  44307. height: math.unit(1.8, "feet"),
  44308. name: "Claws",
  44309. image: {
  44310. source: "./media/characters/sarel/claws.svg"
  44311. }
  44312. },
  44313. clawsAlt: {
  44314. height: math.unit(1.8, "feet"),
  44315. name: "Claws-alt",
  44316. image: {
  44317. source: "./media/characters/sarel/claws-alt.svg"
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(5.67, "feet"),
  44325. default: true
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44331. {
  44332. front: {
  44333. height: math.unit(5500, "feet"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/alyonia/front.svg",
  44337. extra: 1200/1135,
  44338. bottom: 29/1229
  44339. }
  44340. },
  44341. back: {
  44342. height: math.unit(5500, "feet"),
  44343. name: "Back",
  44344. image: {
  44345. source: "./media/characters/alyonia/back.svg",
  44346. extra: 1205/1138,
  44347. bottom: 10/1215
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Small",
  44354. height: math.unit(10, "feet")
  44355. },
  44356. {
  44357. name: "Macro",
  44358. height: math.unit(500, "feet")
  44359. },
  44360. {
  44361. name: "Mega Macro",
  44362. height: math.unit(5500, "feet"),
  44363. default: true
  44364. },
  44365. {
  44366. name: "Mega Macro+",
  44367. height: math.unit(500000, "feet")
  44368. },
  44369. {
  44370. name: "Giga Macro",
  44371. height: math.unit(3000, "miles")
  44372. },
  44373. {
  44374. name: "Tera Macro",
  44375. height: math.unit(2.8e6, "miles")
  44376. },
  44377. {
  44378. name: "Galactic",
  44379. height: math.unit(120000, "lightyears")
  44380. },
  44381. ]
  44382. ))
  44383. characterMakers.push(() => makeCharacter(
  44384. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44385. {
  44386. werewolf: {
  44387. height: math.unit(8, "feet"),
  44388. weight: math.unit(425, "lb"),
  44389. name: "Werewolf",
  44390. image: {
  44391. source: "./media/characters/autumn/werewolf.svg",
  44392. extra: 2154/2031,
  44393. bottom: 160/2314
  44394. }
  44395. },
  44396. human: {
  44397. height: math.unit(5 + 8/12, "feet"),
  44398. weight: math.unit(150, "lb"),
  44399. name: "Human",
  44400. image: {
  44401. source: "./media/characters/autumn/human.svg",
  44402. extra: 1200/1149,
  44403. bottom: 30/1230
  44404. }
  44405. },
  44406. },
  44407. [
  44408. {
  44409. name: "Normal",
  44410. height: math.unit(8, "feet"),
  44411. default: true
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44417. {
  44418. front: {
  44419. height: math.unit(8 + 5/12, "feet"),
  44420. weight: math.unit(825, "lb"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/cobalt-charizard/front.svg",
  44424. extra: 1268/1155,
  44425. bottom: 122/1390
  44426. }
  44427. },
  44428. side: {
  44429. height: math.unit(8 + 5/12, "feet"),
  44430. weight: math.unit(825, "lb"),
  44431. name: "Side",
  44432. image: {
  44433. source: "./media/characters/cobalt-charizard/side.svg",
  44434. extra: 1348/1257,
  44435. bottom: 58/1406
  44436. }
  44437. },
  44438. gMax: {
  44439. height: math.unit(134 + 11/12, "feet"),
  44440. name: "G-Max",
  44441. image: {
  44442. source: "./media/characters/cobalt-charizard/g-max.svg",
  44443. extra: 1835/1541,
  44444. bottom: 151/1986
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(8 + 5/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(6 + 3/12, "feet"),
  44461. weight: math.unit(210, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/stella/front.svg",
  44465. extra: 3549/3335,
  44466. bottom: 51/3600
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Normal",
  44473. height: math.unit(6 + 3/12, "feet"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44480. {
  44481. front: {
  44482. height: math.unit(5, "feet"),
  44483. weight: math.unit(90, "lb"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/riley-bishop/front.svg",
  44487. extra: 1450/1428,
  44488. bottom: 152/1602
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Normal",
  44495. height: math.unit(5, "feet"),
  44496. default: true
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44502. {
  44503. side: {
  44504. height: math.unit(8 + 2/12, "feet"),
  44505. weight: math.unit(500, "kg"),
  44506. name: "Side",
  44507. image: {
  44508. source: "./media/characters/theo-arcanine/side.svg",
  44509. extra: 1342/1074,
  44510. bottom: 111/1453
  44511. }
  44512. },
  44513. },
  44514. [
  44515. {
  44516. name: "Normal",
  44517. height: math.unit(8 + 2/12, "feet"),
  44518. default: true
  44519. },
  44520. ]
  44521. ))
  44522. characterMakers.push(() => makeCharacter(
  44523. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44524. {
  44525. front: {
  44526. height: math.unit(4, "feet"),
  44527. name: "Front",
  44528. image: {
  44529. source: "./media/characters/kali/front.svg",
  44530. extra: 1921/1357,
  44531. bottom: 70/1991
  44532. }
  44533. },
  44534. },
  44535. [
  44536. {
  44537. name: "Normal",
  44538. height: math.unit(4, "feet"),
  44539. default: true
  44540. },
  44541. {
  44542. name: "Macro",
  44543. height: math.unit(32, "meters")
  44544. },
  44545. {
  44546. name: "Macro+",
  44547. height: math.unit(150, "meters")
  44548. },
  44549. {
  44550. name: "Megamacro",
  44551. height: math.unit(7500, "meters")
  44552. },
  44553. {
  44554. name: "Megamacro+",
  44555. height: math.unit(80, "kilometers")
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44561. {
  44562. side: {
  44563. height: math.unit(5 + 11/12, "feet"),
  44564. weight: math.unit(236, "lb"),
  44565. name: "Side",
  44566. image: {
  44567. source: "./media/characters/gapp/side.svg",
  44568. extra: 775/340,
  44569. bottom: 58/833
  44570. }
  44571. },
  44572. mouth: {
  44573. height: math.unit(2.98, "feet"),
  44574. name: "Mouth",
  44575. image: {
  44576. source: "./media/characters/gapp/mouth.svg"
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(5 + 1/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(6, "feet"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/persephone/front.svg",
  44596. extra: 1895/1717,
  44597. bottom: 96/1991
  44598. }
  44599. },
  44600. back: {
  44601. height: math.unit(6, "feet"),
  44602. name: "Back",
  44603. image: {
  44604. source: "./media/characters/persephone/back.svg",
  44605. extra: 1868/1679,
  44606. bottom: 26/1894
  44607. }
  44608. },
  44609. casual: {
  44610. height: math.unit(6, "feet"),
  44611. name: "Casual",
  44612. image: {
  44613. source: "./media/characters/persephone/casual.svg",
  44614. extra: 1713/1541,
  44615. bottom: 76/1789
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Human Size",
  44622. height: math.unit(6, "feet")
  44623. },
  44624. {
  44625. name: "Big Steppy",
  44626. height: math.unit(600, "meters"),
  44627. default: true
  44628. },
  44629. {
  44630. name: "Galaxy Brain",
  44631. height: math.unit(1, "zettameter")
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44637. {
  44638. front: {
  44639. height: math.unit(1.85, "meters"),
  44640. name: "Front",
  44641. image: {
  44642. source: "./media/characters/riley-foxthing/front.svg",
  44643. extra: 1495/1354,
  44644. bottom: 122/1617
  44645. }
  44646. },
  44647. frontAlt: {
  44648. height: math.unit(1.85, "meters"),
  44649. name: "Front (Alt)",
  44650. image: {
  44651. source: "./media/characters/riley-foxthing/front-alt.svg",
  44652. extra: 1572/1389,
  44653. bottom: 116/1688
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal Sized",
  44660. height: math.unit(1.85, "meters"),
  44661. default: true
  44662. },
  44663. {
  44664. name: "Quite Sizable",
  44665. height: math.unit(5, "meters")
  44666. },
  44667. {
  44668. name: "Rather Large",
  44669. height: math.unit(20, "meters")
  44670. },
  44671. {
  44672. name: "Macro",
  44673. height: math.unit(450, "meters")
  44674. },
  44675. {
  44676. name: "Giga",
  44677. height: math.unit(5, "km")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44683. {
  44684. front: {
  44685. height: math.unit(6, "feet"),
  44686. weight: math.unit(200, "lb"),
  44687. name: "Front",
  44688. image: {
  44689. source: "./media/characters/blizzard/front.svg",
  44690. extra: 1136/990,
  44691. bottom: 136/1272
  44692. }
  44693. },
  44694. back: {
  44695. height: math.unit(6, "feet"),
  44696. weight: math.unit(200, "lb"),
  44697. name: "Back",
  44698. image: {
  44699. source: "./media/characters/blizzard/back.svg",
  44700. extra: 1175/1034,
  44701. bottom: 97/1272
  44702. }
  44703. },
  44704. sitting: {
  44705. height: math.unit(3.725, "feet"),
  44706. weight: math.unit(200, "lb"),
  44707. name: "Sitting",
  44708. image: {
  44709. source: "./media/characters/blizzard/sitting.svg",
  44710. extra: 581/485,
  44711. bottom: 90/671
  44712. }
  44713. },
  44714. frontWizard: {
  44715. height: math.unit(7.9, "feet"),
  44716. weight: math.unit(200, "lb"),
  44717. name: "Front (Wizard)",
  44718. image: {
  44719. source: "./media/characters/blizzard/front-wizard.svg"
  44720. }
  44721. },
  44722. backWizard: {
  44723. height: math.unit(7.9, "feet"),
  44724. weight: math.unit(200, "lb"),
  44725. name: "Back (Wizard)",
  44726. image: {
  44727. source: "./media/characters/blizzard/back-wizard.svg"
  44728. }
  44729. },
  44730. frontNsfw: {
  44731. height: math.unit(6, "feet"),
  44732. weight: math.unit(200, "lb"),
  44733. name: "Front (NSFW)",
  44734. image: {
  44735. source: "./media/characters/blizzard/front-nsfw.svg",
  44736. extra: 1136/990,
  44737. bottom: 136/1272
  44738. }
  44739. },
  44740. backNsfw: {
  44741. height: math.unit(6, "feet"),
  44742. weight: math.unit(200, "lb"),
  44743. name: "Back (NSFW)",
  44744. image: {
  44745. source: "./media/characters/blizzard/back-nsfw.svg",
  44746. extra: 1175/1034,
  44747. bottom: 97/1272
  44748. }
  44749. },
  44750. sittingNsfw: {
  44751. height: math.unit(3.725, "feet"),
  44752. weight: math.unit(200, "lb"),
  44753. name: "Sitting (NSFW)",
  44754. image: {
  44755. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44756. extra: 581/485,
  44757. bottom: 90/671
  44758. }
  44759. },
  44760. wizardFrontNsfw: {
  44761. height: math.unit(7.9, "feet"),
  44762. weight: math.unit(200, "lb"),
  44763. name: "Wizard (Front, NSFW)",
  44764. image: {
  44765. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(6, "feet"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44779. {
  44780. front: {
  44781. height: math.unit(5 + 2/12, "feet"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/lumi/front.svg",
  44785. extra: 1328/1268,
  44786. bottom: 103/1431
  44787. }
  44788. },
  44789. back: {
  44790. height: math.unit(5 + 2/12, "feet"),
  44791. name: "Back",
  44792. image: {
  44793. source: "./media/characters/lumi/back.svg",
  44794. extra: 1381/1327,
  44795. bottom: 43/1424
  44796. }
  44797. },
  44798. },
  44799. [
  44800. {
  44801. name: "Normal",
  44802. height: math.unit(5 + 2/12, "feet"),
  44803. default: true
  44804. },
  44805. ]
  44806. ))
  44807. characterMakers.push(() => makeCharacter(
  44808. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44809. {
  44810. front: {
  44811. height: math.unit(5 + 9/12, "feet"),
  44812. name: "Front",
  44813. image: {
  44814. source: "./media/characters/aliya-cotton/front.svg",
  44815. extra: 577/564,
  44816. bottom: 29/606
  44817. }
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(5 + 9/12, "feet"),
  44824. default: true
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(2.7, "meters"),
  44833. weight: math.unit(25000, "lb"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/noah-luxray/front.svg",
  44837. extra: 1644/825,
  44838. bottom: 339/1983
  44839. }
  44840. },
  44841. side: {
  44842. height: math.unit(2.97, "meters"),
  44843. weight: math.unit(25000, "lb"),
  44844. name: "Side",
  44845. image: {
  44846. source: "./media/characters/noah-luxray/side.svg",
  44847. extra: 1319/650,
  44848. bottom: 163/1482
  44849. }
  44850. },
  44851. dick: {
  44852. height: math.unit(7.4, "feet"),
  44853. weight: math.unit(2500, "lb"),
  44854. name: "Dick",
  44855. image: {
  44856. source: "./media/characters/noah-luxray/dick.svg"
  44857. }
  44858. },
  44859. dickAlt: {
  44860. height: math.unit(10.83, "feet"),
  44861. weight: math.unit(2500, "lb"),
  44862. name: "Dick-alt",
  44863. image: {
  44864. source: "./media/characters/noah-luxray/dick-alt.svg"
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "BIG",
  44871. height: math.unit(2.7, "meters"),
  44872. default: true
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44878. {
  44879. standing: {
  44880. height: math.unit(183, "cm"),
  44881. weight: math.unit(68, "kg"),
  44882. name: "Standing",
  44883. image: {
  44884. source: "./media/characters/arion/standing.svg",
  44885. extra: 1869/1807,
  44886. bottom: 93/1962
  44887. }
  44888. },
  44889. reclining: {
  44890. height: math.unit(70.5, "cm"),
  44891. weight: math.unit(68, "lb"),
  44892. name: "Reclining",
  44893. image: {
  44894. source: "./media/characters/arion/reclining.svg",
  44895. extra: 937/870,
  44896. bottom: 63/1000
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Colossus Size, Low",
  44903. height: math.unit(33, "meters"),
  44904. default: true
  44905. },
  44906. {
  44907. name: "Colossus Size, Mid",
  44908. height: math.unit(52, "meters")
  44909. },
  44910. {
  44911. name: "Colossus Size, High",
  44912. height: math.unit(60, "meters")
  44913. },
  44914. {
  44915. name: "Titan Size, Low",
  44916. height: math.unit(91, "meters"),
  44917. },
  44918. {
  44919. name: "Titan Size, Mid",
  44920. height: math.unit(122, "meters")
  44921. },
  44922. {
  44923. name: "Titan Size, High",
  44924. height: math.unit(162, "meters")
  44925. },
  44926. ]
  44927. ))
  44928. characterMakers.push(() => makeCharacter(
  44929. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44930. {
  44931. front: {
  44932. height: math.unit(53, "meters"),
  44933. name: "Front",
  44934. image: {
  44935. source: "./media/characters/stellar-marbey/front.svg",
  44936. extra: 1913/1805,
  44937. bottom: 92/2005
  44938. }
  44939. },
  44940. back: {
  44941. height: math.unit(53, "meters"),
  44942. name: "Back",
  44943. image: {
  44944. source: "./media/characters/stellar-marbey/back.svg",
  44945. extra: 1960/1851,
  44946. bottom: 28/1988
  44947. }
  44948. },
  44949. mouth: {
  44950. height: math.unit(3.5, "meters"),
  44951. name: "Mouth",
  44952. image: {
  44953. source: "./media/characters/stellar-marbey/mouth.svg"
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Macro",
  44960. height: math.unit(53, "meters"),
  44961. default: true
  44962. },
  44963. ]
  44964. ))
  44965. characterMakers.push(() => makeCharacter(
  44966. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44967. {
  44968. front: {
  44969. height: math.unit(8 + 1/12, "feet"),
  44970. weight: math.unit(233, "lb"),
  44971. name: "Front",
  44972. image: {
  44973. source: "./media/characters/matsu/front.svg",
  44974. extra: 832/772,
  44975. bottom: 40/872
  44976. }
  44977. },
  44978. back: {
  44979. height: math.unit(8 + 1/12, "feet"),
  44980. weight: math.unit(233, "lb"),
  44981. name: "Back",
  44982. image: {
  44983. source: "./media/characters/matsu/back.svg",
  44984. extra: 839/780,
  44985. bottom: 47/886
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(8 + 1/12, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(4, "feet"),
  45002. weight: math.unit(148, "lb"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/thiz/front.svg",
  45006. extra: 1913/1748,
  45007. bottom: 62/1975
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(4, "feet"),
  45015. default: true
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45021. {
  45022. front: {
  45023. height: math.unit(7 + 6/12, "feet"),
  45024. weight: math.unit(267, "lb"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/marcel/front.svg",
  45028. extra: 1221/1096,
  45029. bottom: 76/1297
  45030. }
  45031. },
  45032. },
  45033. [
  45034. {
  45035. name: "Normal",
  45036. height: math.unit(7 + 6/12, "feet"),
  45037. default: true
  45038. },
  45039. ]
  45040. ))
  45041. characterMakers.push(() => makeCharacter(
  45042. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45043. {
  45044. side: {
  45045. height: math.unit(42, "meters"),
  45046. name: "Side",
  45047. image: {
  45048. source: "./media/characters/flake/side.svg",
  45049. extra: 1525/1306,
  45050. bottom: 209/1734
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(42, "meters"),
  45058. default: true
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45064. {
  45065. dressed: {
  45066. height: math.unit(6 + 4/12, "feet"),
  45067. weight: math.unit(520, "lb"),
  45068. name: "Dressed",
  45069. image: {
  45070. source: "./media/characters/someonne/dressed.svg",
  45071. extra: 1020/1010,
  45072. bottom: 178/1198
  45073. }
  45074. },
  45075. undressed: {
  45076. height: math.unit(6 + 4/12, "feet"),
  45077. weight: math.unit(520, "lb"),
  45078. name: "Undressed",
  45079. image: {
  45080. source: "./media/characters/someonne/undressed.svg",
  45081. extra: 1019/1014,
  45082. bottom: 169/1188
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(6 + 4/12, "feet"),
  45090. default: true
  45091. },
  45092. ]
  45093. ))
  45094. characterMakers.push(() => makeCharacter(
  45095. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45096. {
  45097. front: {
  45098. height: math.unit(3, "feet"),
  45099. weight: math.unit(30, "lb"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/till/front.svg",
  45103. extra: 892/823,
  45104. bottom: 55/947
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(3, "feet"),
  45112. default: true
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(9 + 8/12, "feet"),
  45121. weight: math.unit(800, "lb"),
  45122. name: "Front",
  45123. image: {
  45124. source: "./media/characters/sydney-heki/front.svg",
  45125. extra: 1360/1300,
  45126. bottom: 22/1382
  45127. }
  45128. },
  45129. back: {
  45130. height: math.unit(9 + 8/12, "feet"),
  45131. weight: math.unit(800, "lb"),
  45132. name: "Back",
  45133. image: {
  45134. source: "./media/characters/sydney-heki/back.svg",
  45135. extra: 1356/1293,
  45136. bottom: 12/1368
  45137. }
  45138. },
  45139. frontDressed: {
  45140. height: math.unit(9 + 8/12, "feet"),
  45141. weight: math.unit(800, "lb"),
  45142. name: "Front-dressed",
  45143. image: {
  45144. source: "./media/characters/sydney-heki/front-dressed.svg",
  45145. extra: 1360/1300,
  45146. bottom: 22/1382
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Normal",
  45153. height: math.unit(9 + 8/12, "feet"),
  45154. default: true
  45155. },
  45156. {
  45157. name: "Macro",
  45158. height: math.unit(500, "feet")
  45159. },
  45160. {
  45161. name: "Megamacro",
  45162. height: math.unit(3.6, "miles")
  45163. },
  45164. ]
  45165. ))
  45166. characterMakers.push(() => makeCharacter(
  45167. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45168. {
  45169. front: {
  45170. height: math.unit(200, "cm"),
  45171. weight: math.unit(250, "lb"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/fowler-karlsson/front.svg",
  45175. extra: 897/845,
  45176. bottom: 123/1020
  45177. }
  45178. },
  45179. back: {
  45180. height: math.unit(200, "cm"),
  45181. weight: math.unit(250, "lb"),
  45182. name: "Back",
  45183. image: {
  45184. source: "./media/characters/fowler-karlsson/back.svg",
  45185. extra: 999/944,
  45186. bottom: 26/1025
  45187. }
  45188. },
  45189. dick: {
  45190. height: math.unit(1.92, "feet"),
  45191. weight: math.unit(150, "lb"),
  45192. name: "Dick",
  45193. image: {
  45194. source: "./media/characters/fowler-karlsson/dick.svg"
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Normal",
  45201. height: math.unit(200, "cm"),
  45202. default: true
  45203. },
  45204. {
  45205. name: "Smaller Macro",
  45206. height: math.unit(90, "m")
  45207. },
  45208. {
  45209. name: "Macro",
  45210. height: math.unit(150, "m")
  45211. },
  45212. {
  45213. name: "Bigger Macro",
  45214. height: math.unit(300, "m")
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45220. {
  45221. side: {
  45222. height: math.unit(8 + 2/12, "feet"),
  45223. weight: math.unit(1, "tonne"),
  45224. name: "Side",
  45225. image: {
  45226. source: "./media/characters/rylide/side.svg",
  45227. extra: 1318/1034,
  45228. bottom: 106/1424
  45229. }
  45230. },
  45231. sitting: {
  45232. height: math.unit(303, "cm"),
  45233. weight: math.unit(1, "tonne"),
  45234. name: "Sitting",
  45235. image: {
  45236. source: "./media/characters/rylide/sitting.svg",
  45237. extra: 1303/1103,
  45238. bottom: 36/1339
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(8 + 2/12, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(5 + 10/12, "feet"),
  45255. weight: math.unit(160, "lb"),
  45256. name: "Front",
  45257. image: {
  45258. source: "./media/characters/pudask/front.svg",
  45259. extra: 1616/1590,
  45260. bottom: 161/1777
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Ferret Height",
  45267. height: math.unit(2 + 5/12, "feet")
  45268. },
  45269. {
  45270. name: "Canon Height",
  45271. height: math.unit(5 + 10/12, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(3 + 6/12, "feet"),
  45281. weight: math.unit(60, "lb"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/ramita/front.svg",
  45285. extra: 1402/1232,
  45286. bottom: 62/1464
  45287. }
  45288. },
  45289. dressed: {
  45290. height: math.unit(3 + 6/12, "feet"),
  45291. weight: math.unit(60, "lb"),
  45292. name: "Dressed",
  45293. image: {
  45294. source: "./media/characters/ramita/dressed.svg",
  45295. extra: 1534/1249,
  45296. bottom: 50/1584
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(3 + 6/12, "feet"),
  45304. default: true
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(8, "feet"),
  45313. name: "Front",
  45314. image: {
  45315. source: "./media/characters/ark/front.svg",
  45316. extra: 772/693,
  45317. bottom: 45/817
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(8, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45331. {
  45332. front: {
  45333. height: math.unit(6, "feet"),
  45334. weight: math.unit(250, "lb"),
  45335. volume: math.unit(5/8, "gallons"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/ludwig-horn/front.svg",
  45339. extra: 1782/1635,
  45340. bottom: 96/1878
  45341. }
  45342. },
  45343. back: {
  45344. height: math.unit(6, "feet"),
  45345. weight: math.unit(250, "lb"),
  45346. volume: math.unit(5/8, "gallons"),
  45347. name: "Back",
  45348. image: {
  45349. source: "./media/characters/ludwig-horn/back.svg",
  45350. extra: 1874/1729,
  45351. bottom: 27/1901
  45352. }
  45353. },
  45354. dick: {
  45355. height: math.unit(1.05, "feet"),
  45356. weight: math.unit(15, "lb"),
  45357. volume: math.unit(5/8, "gallons"),
  45358. name: "Dick",
  45359. image: {
  45360. source: "./media/characters/ludwig-horn/dick.svg"
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Small",
  45367. height: math.unit(6, "feet")
  45368. },
  45369. {
  45370. name: "Typical",
  45371. height: math.unit(12, "feet"),
  45372. default: true
  45373. },
  45374. {
  45375. name: "Building",
  45376. height: math.unit(80, "feet")
  45377. },
  45378. {
  45379. name: "Town",
  45380. height: math.unit(800, "feet")
  45381. },
  45382. {
  45383. name: "Kingdom",
  45384. height: math.unit(80000, "feet")
  45385. },
  45386. {
  45387. name: "Planet",
  45388. height: math.unit(8000000, "feet")
  45389. },
  45390. {
  45391. name: "Universe",
  45392. height: math.unit(8000000000, "feet")
  45393. },
  45394. {
  45395. name: "Transcended",
  45396. height: math.unit(8e27, "feet")
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(5, "feet"),
  45405. weight: math.unit(50, "kg"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/biot-avery/front.svg",
  45409. extra: 1295/1232,
  45410. bottom: 86/1381
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(5, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45424. {
  45425. front: {
  45426. height: math.unit(6, "feet"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/kitsune-kiro/front.svg",
  45430. extra: 1270/1158,
  45431. bottom: 42/1312
  45432. }
  45433. },
  45434. frontAlt: {
  45435. height: math.unit(6, "feet"),
  45436. name: "Front-alt",
  45437. image: {
  45438. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45439. extra: 1130/1081,
  45440. bottom: 36/1166
  45441. }
  45442. },
  45443. },
  45444. [
  45445. {
  45446. name: "Smol",
  45447. height: math.unit(3, "feet")
  45448. },
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(6, "feet"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(6, "feet"),
  45461. weight: math.unit(125, "lb"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/jack-thatcher/front.svg",
  45465. extra: 1474/1370,
  45466. bottom: 26/1500
  45467. }
  45468. },
  45469. back: {
  45470. height: math.unit(6, "feet"),
  45471. weight: math.unit(125, "lb"),
  45472. name: "Back",
  45473. image: {
  45474. source: "./media/characters/jack-thatcher/back.svg",
  45475. extra: 1489/1384,
  45476. bottom: 18/1507
  45477. }
  45478. },
  45479. },
  45480. [
  45481. {
  45482. name: "Normal",
  45483. height: math.unit(6, "feet"),
  45484. default: true
  45485. },
  45486. {
  45487. name: "Macro",
  45488. height: math.unit(75, "feet")
  45489. },
  45490. {
  45491. name: "Macro-er",
  45492. height: math.unit(250, "feet")
  45493. },
  45494. ]
  45495. ))
  45496. characterMakers.push(() => makeCharacter(
  45497. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45498. {
  45499. front: {
  45500. height: math.unit(7, "feet"),
  45501. weight: math.unit(110, "kg"),
  45502. name: "Front",
  45503. image: {
  45504. source: "./media/characters/max-hyper/front.svg",
  45505. extra: 1969/1881,
  45506. bottom: 49/2018
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(7, "feet"),
  45514. default: true
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(5 + 5/12, "feet"),
  45523. weight: math.unit(160, "lb"),
  45524. name: "Front",
  45525. image: {
  45526. source: "./media/characters/spook/front.svg",
  45527. extra: 794/791,
  45528. bottom: 54/848
  45529. }
  45530. },
  45531. back: {
  45532. height: math.unit(5 + 5/12, "feet"),
  45533. weight: math.unit(160, "lb"),
  45534. name: "Back",
  45535. image: {
  45536. source: "./media/characters/spook/back.svg",
  45537. extra: 812/798,
  45538. bottom: 32/844
  45539. }
  45540. },
  45541. },
  45542. [
  45543. {
  45544. name: "Normal",
  45545. height: math.unit(5 + 5/12, "feet"),
  45546. default: true
  45547. },
  45548. ]
  45549. ))
  45550. characterMakers.push(() => makeCharacter(
  45551. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45552. {
  45553. front: {
  45554. height: math.unit(18, "feet"),
  45555. name: "Front",
  45556. image: {
  45557. source: "./media/characters/xeaduulix/front.svg",
  45558. extra: 1380/1166,
  45559. bottom: 110/1490
  45560. }
  45561. },
  45562. back: {
  45563. height: math.unit(18, "feet"),
  45564. name: "Back",
  45565. image: {
  45566. source: "./media/characters/xeaduulix/back.svg",
  45567. extra: 1592/1170,
  45568. bottom: 128/1720
  45569. }
  45570. },
  45571. frontNsfw: {
  45572. height: math.unit(18, "feet"),
  45573. name: "Front (NSFW)",
  45574. image: {
  45575. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45576. extra: 1380/1166,
  45577. bottom: 110/1490
  45578. }
  45579. },
  45580. backNsfw: {
  45581. height: math.unit(18, "feet"),
  45582. name: "Back (NSFW)",
  45583. image: {
  45584. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45585. extra: 1592/1170,
  45586. bottom: 128/1720
  45587. }
  45588. },
  45589. },
  45590. [
  45591. {
  45592. name: "Normal",
  45593. height: math.unit(18, "feet"),
  45594. default: true
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45600. {
  45601. spreadWings: {
  45602. height: math.unit(20, "feet"),
  45603. name: "Spread Wings",
  45604. image: {
  45605. source: "./media/characters/fledge/spread-wings.svg",
  45606. extra: 693/635,
  45607. bottom: 26/719
  45608. }
  45609. },
  45610. front: {
  45611. height: math.unit(20, "feet"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/fledge/front.svg",
  45615. extra: 684/637,
  45616. bottom: 18/702
  45617. }
  45618. },
  45619. frontAlt: {
  45620. height: math.unit(20, "feet"),
  45621. name: "Front (Alt)",
  45622. image: {
  45623. source: "./media/characters/fledge/front-alt.svg",
  45624. extra: 708/664,
  45625. bottom: 13/721
  45626. }
  45627. },
  45628. back: {
  45629. height: math.unit(20, "feet"),
  45630. name: "Back",
  45631. image: {
  45632. source: "./media/characters/fledge/back.svg",
  45633. extra: 718/634,
  45634. bottom: 22/740
  45635. }
  45636. },
  45637. head: {
  45638. height: math.unit(5.55, "feet"),
  45639. name: "Head",
  45640. image: {
  45641. source: "./media/characters/fledge/head.svg"
  45642. }
  45643. },
  45644. headAlt: {
  45645. height: math.unit(5.1, "feet"),
  45646. name: "Head (Alt)",
  45647. image: {
  45648. source: "./media/characters/fledge/head-alt.svg"
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Small",
  45655. height: math.unit(6 + 2/12, "feet")
  45656. },
  45657. {
  45658. name: "Big",
  45659. height: math.unit(20, "feet"),
  45660. default: true
  45661. },
  45662. {
  45663. name: "Giant",
  45664. height: math.unit(100, "feet")
  45665. },
  45666. {
  45667. name: "Macro",
  45668. height: math.unit(200, "feet")
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45674. {
  45675. front: {
  45676. height: math.unit(1, "meter"),
  45677. name: "Front",
  45678. image: {
  45679. source: "./media/characters/atlas-morenai/front.svg",
  45680. extra: 1275/1043,
  45681. bottom: 19/1294
  45682. }
  45683. },
  45684. back: {
  45685. height: math.unit(1, "meter"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/atlas-morenai/back.svg",
  45689. extra: 1141/1001,
  45690. bottom: 25/1166
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(1, "meter"),
  45698. default: true
  45699. },
  45700. {
  45701. name: "Magic-Infused",
  45702. height: math.unit(5, "meters")
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45708. {
  45709. front: {
  45710. height: math.unit(5, "meters"),
  45711. name: "Front",
  45712. image: {
  45713. source: "./media/characters/cintia/front.svg",
  45714. extra: 1312/1228,
  45715. bottom: 38/1350
  45716. }
  45717. },
  45718. back: {
  45719. height: math.unit(5, "meters"),
  45720. name: "Back",
  45721. image: {
  45722. source: "./media/characters/cintia/back.svg",
  45723. extra: 1260/1166,
  45724. bottom: 98/1358
  45725. }
  45726. },
  45727. frontDick: {
  45728. height: math.unit(5, "meters"),
  45729. name: "Front (Dick)",
  45730. image: {
  45731. source: "./media/characters/cintia/front-dick.svg",
  45732. extra: 1312/1228,
  45733. bottom: 38/1350
  45734. }
  45735. },
  45736. backDick: {
  45737. height: math.unit(5, "meters"),
  45738. name: "Back (Dick)",
  45739. image: {
  45740. source: "./media/characters/cintia/back-dick.svg",
  45741. extra: 1260/1166,
  45742. bottom: 98/1358
  45743. }
  45744. },
  45745. bust: {
  45746. height: math.unit(1.97, "meters"),
  45747. name: "Bust",
  45748. image: {
  45749. source: "./media/characters/cintia/bust.svg",
  45750. extra: 617/565,
  45751. bottom: 0/617
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Normal",
  45758. height: math.unit(5, "meters"),
  45759. default: true
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45765. {
  45766. side: {
  45767. height: math.unit(100, "feet"),
  45768. name: "Side",
  45769. image: {
  45770. source: "./media/characters/denora/side.svg",
  45771. extra: 875/803,
  45772. bottom: 9/884
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Standard",
  45779. height: math.unit(100, "feet"),
  45780. default: true
  45781. },
  45782. {
  45783. name: "Grand",
  45784. height: math.unit(1000, "feet")
  45785. },
  45786. {
  45787. name: "Conquering",
  45788. height: math.unit(10000, "feet")
  45789. },
  45790. ]
  45791. ))
  45792. characterMakers.push(() => makeCharacter(
  45793. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45794. {
  45795. dressed: {
  45796. height: math.unit(8 + 5/12, "feet"),
  45797. weight: math.unit(700, "lb"),
  45798. name: "Dressed",
  45799. image: {
  45800. source: "./media/characters/kiva/dressed.svg",
  45801. extra: 1102/1055,
  45802. bottom: 60/1162
  45803. }
  45804. },
  45805. nude: {
  45806. height: math.unit(8 + 5/12, "feet"),
  45807. weight: math.unit(700, "lb"),
  45808. name: "Nude",
  45809. image: {
  45810. source: "./media/characters/kiva/nude.svg",
  45811. extra: 1102/1055,
  45812. bottom: 60/1162
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Base Height",
  45819. height: math.unit(8 + 5/12, "feet"),
  45820. default: true
  45821. },
  45822. {
  45823. name: "Macro",
  45824. height: math.unit(100, "feet")
  45825. },
  45826. {
  45827. name: "Max",
  45828. height: math.unit(3280, "feet")
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(6 + 8/12, "feet"),
  45837. weight: math.unit(250, "lb"),
  45838. name: "Front",
  45839. image: {
  45840. source: "./media/characters/ztragon/front.svg",
  45841. extra: 1825/1684,
  45842. bottom: 98/1923
  45843. }
  45844. },
  45845. },
  45846. [
  45847. {
  45848. name: "Normal",
  45849. height: math.unit(6 + 8/12, "feet"),
  45850. default: true
  45851. },
  45852. {
  45853. name: "Macro",
  45854. height: math.unit(80, "feet")
  45855. },
  45856. ]
  45857. ))
  45858. characterMakers.push(() => makeCharacter(
  45859. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45860. {
  45861. front: {
  45862. height: math.unit(10.4, "feet"),
  45863. weight: math.unit(2, "tons"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/yesenia/front.svg",
  45867. extra: 1479/1474,
  45868. bottom: 233/1712
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(10.4, "feet"),
  45876. default: true
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45882. {
  45883. normal: {
  45884. height: math.unit(6 + 1/12, "feet"),
  45885. weight: math.unit(180, "lb"),
  45886. name: "Normal",
  45887. image: {
  45888. source: "./media/characters/leanne-lycheborne/normal.svg",
  45889. extra: 1748/1660,
  45890. bottom: 98/1846
  45891. }
  45892. },
  45893. were: {
  45894. height: math.unit(12, "feet"),
  45895. weight: math.unit(1600, "lb"),
  45896. name: "Were",
  45897. image: {
  45898. source: "./media/characters/leanne-lycheborne/were.svg",
  45899. extra: 1485/1432,
  45900. bottom: 66/1551
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(6 + 1/12, "feet"),
  45908. default: true
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45914. {
  45915. side: {
  45916. height: math.unit(13, "feet"),
  45917. name: "Side",
  45918. image: {
  45919. source: "./media/characters/kira-tyler/side.svg",
  45920. extra: 693/393,
  45921. bottom: 58/751
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(13, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45935. {
  45936. front: {
  45937. height: math.unit(10.3, "feet"),
  45938. weight: math.unit(150, "lb"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/blaze/front.svg",
  45942. extra: 1378/1286,
  45943. bottom: 172/1550
  45944. }
  45945. },
  45946. },
  45947. [
  45948. {
  45949. name: "Normal",
  45950. height: math.unit(10.3, "feet"),
  45951. default: true
  45952. },
  45953. ]
  45954. ))
  45955. characterMakers.push(() => makeCharacter(
  45956. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45957. {
  45958. side: {
  45959. height: math.unit(2, "meters"),
  45960. weight: math.unit(400, "kg"),
  45961. name: "Side",
  45962. image: {
  45963. source: "./media/characters/anu/side.svg",
  45964. extra: 506/394,
  45965. bottom: 18/524
  45966. }
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Humanoid",
  45972. height: math.unit(2, "meters")
  45973. },
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(5, "meters"),
  45977. default: true
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(5 + 5/12, "feet"),
  45986. weight: math.unit(170, "lb"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/synx-the-lynx/front.svg",
  45990. extra: 1893/1745,
  45991. bottom: 17/1910
  45992. }
  45993. },
  45994. side: {
  45995. height: math.unit(5 + 5/12, "feet"),
  45996. weight: math.unit(170, "lb"),
  45997. name: "Side",
  45998. image: {
  45999. source: "./media/characters/synx-the-lynx/side.svg",
  46000. extra: 1884/1740,
  46001. bottom: 39/1923
  46002. }
  46003. },
  46004. back: {
  46005. height: math.unit(5 + 5/12, "feet"),
  46006. weight: math.unit(170, "lb"),
  46007. name: "Back",
  46008. image: {
  46009. source: "./media/characters/synx-the-lynx/back.svg",
  46010. extra: 1903/1755,
  46011. bottom: 14/1917
  46012. }
  46013. },
  46014. },
  46015. [
  46016. {
  46017. name: "Normal",
  46018. height: math.unit(5 + 5/12, "feet"),
  46019. default: true
  46020. },
  46021. ]
  46022. ))
  46023. characterMakers.push(() => makeCharacter(
  46024. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46025. {
  46026. back: {
  46027. height: math.unit(15, "feet"),
  46028. name: "Back",
  46029. image: {
  46030. source: "./media/characters/nadezda-fex/back.svg",
  46031. extra: 1695/1481,
  46032. bottom: 25/1720
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "Normal",
  46039. height: math.unit(15, "feet"),
  46040. default: true
  46041. },
  46042. {
  46043. name: "Macro",
  46044. height: math.unit(2.5, "miles")
  46045. },
  46046. {
  46047. name: "Goddess",
  46048. height: math.unit(2, "multiverses")
  46049. },
  46050. ]
  46051. ))
  46052. characterMakers.push(() => makeCharacter(
  46053. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46054. {
  46055. front: {
  46056. height: math.unit(216, "cm"),
  46057. name: "Front",
  46058. image: {
  46059. source: "./media/characters/lev/front.svg",
  46060. extra: 1728/1670,
  46061. bottom: 82/1810
  46062. }
  46063. },
  46064. back: {
  46065. height: math.unit(216, "cm"),
  46066. name: "Back",
  46067. image: {
  46068. source: "./media/characters/lev/back.svg",
  46069. extra: 1738/1675,
  46070. bottom: 24/1762
  46071. }
  46072. },
  46073. dressed: {
  46074. height: math.unit(216, "cm"),
  46075. name: "Dressed",
  46076. image: {
  46077. source: "./media/characters/lev/dressed.svg",
  46078. extra: 1397/1351,
  46079. bottom: 73/1470
  46080. }
  46081. },
  46082. head: {
  46083. height: math.unit(0.51, "meter"),
  46084. name: "Head",
  46085. image: {
  46086. source: "./media/characters/lev/head.svg"
  46087. }
  46088. },
  46089. },
  46090. [
  46091. {
  46092. name: "Normal",
  46093. height: math.unit(216, "cm"),
  46094. default: true
  46095. },
  46096. {
  46097. name: "Relatively Macro",
  46098. height: math.unit(80, "meters")
  46099. },
  46100. {
  46101. name: "Megamacro",
  46102. height: math.unit(21600, "meters")
  46103. },
  46104. {
  46105. name: "Megamacro+",
  46106. height: math.unit(64800, "meters")
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(2, "meters"),
  46115. weight: math.unit(80, "kg"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/moka/front.svg",
  46119. extra: 1337/1255,
  46120. bottom: 58/1395
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Micro",
  46127. height: math.unit(15, "cm")
  46128. },
  46129. {
  46130. name: "Normal",
  46131. height: math.unit(2, "meters"),
  46132. default: true
  46133. },
  46134. {
  46135. name: "Macro",
  46136. height: math.unit(20, "meters"),
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(9, "feet"),
  46145. weight: math.unit(240, "lb"),
  46146. name: "Front",
  46147. image: {
  46148. source: "./media/characters/kuzco/front.svg",
  46149. extra: 1593/1487,
  46150. bottom: 32/1625
  46151. }
  46152. },
  46153. side: {
  46154. height: math.unit(9, "feet"),
  46155. weight: math.unit(240, "lb"),
  46156. name: "Side",
  46157. image: {
  46158. source: "./media/characters/kuzco/side.svg",
  46159. extra: 1575/1485,
  46160. bottom: 30/1605
  46161. }
  46162. },
  46163. back: {
  46164. height: math.unit(9, "feet"),
  46165. weight: math.unit(240, "lb"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/kuzco/back.svg",
  46169. extra: 1603/1514,
  46170. bottom: 14/1617
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(9, "feet"),
  46178. default: true
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46184. {
  46185. side: {
  46186. height: math.unit(2, "meters"),
  46187. weight: math.unit(300, "kg"),
  46188. name: "Side",
  46189. image: {
  46190. source: "./media/characters/ceruleus/side.svg",
  46191. extra: 1068/974,
  46192. bottom: 126/1194
  46193. }
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Normal",
  46199. height: math.unit(16, "meters"),
  46200. default: true
  46201. },
  46202. ]
  46203. ))
  46204. characterMakers.push(() => makeCharacter(
  46205. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46206. {
  46207. front: {
  46208. height: math.unit(9, "feet"),
  46209. weight: math.unit(500, "kg"),
  46210. name: "Front",
  46211. image: {
  46212. source: "./media/characters/acouya/front.svg",
  46213. extra: 1660/1473,
  46214. bottom: 28/1688
  46215. }
  46216. },
  46217. },
  46218. [
  46219. {
  46220. name: "Normal",
  46221. height: math.unit(9, "feet"),
  46222. default: true
  46223. },
  46224. ]
  46225. ))
  46226. characterMakers.push(() => makeCharacter(
  46227. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46228. {
  46229. front: {
  46230. height: math.unit(5 + 6/12, "feet"),
  46231. weight: math.unit(195, "lb"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/vant/front.svg",
  46235. extra: 1396/1320,
  46236. bottom: 20/1416
  46237. }
  46238. },
  46239. back: {
  46240. height: math.unit(5 + 6/12, "feet"),
  46241. weight: math.unit(195, "lb"),
  46242. name: "Back",
  46243. image: {
  46244. source: "./media/characters/vant/back.svg",
  46245. extra: 1396/1320,
  46246. bottom: 20/1416
  46247. }
  46248. },
  46249. maw: {
  46250. height: math.unit(0.75, "feet"),
  46251. name: "Maw",
  46252. image: {
  46253. source: "./media/characters/vant/maw.svg"
  46254. }
  46255. },
  46256. paw: {
  46257. height: math.unit(1.07, "feet"),
  46258. name: "Paw",
  46259. image: {
  46260. source: "./media/characters/vant/paw.svg"
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Micro",
  46267. height: math.unit(0.25, "inches")
  46268. },
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(5 + 6/12, "feet"),
  46272. default: true
  46273. },
  46274. {
  46275. name: "Macro",
  46276. height: math.unit(75, "feet")
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46282. {
  46283. front: {
  46284. height: math.unit(30, "meters"),
  46285. weight: math.unit(363, "tons"),
  46286. name: "Front",
  46287. image: {
  46288. source: "./media/characters/ahra/front.svg",
  46289. extra: 1914/1814,
  46290. bottom: 46/1960
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Macro",
  46297. height: math.unit(30, "meters"),
  46298. default: true
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46304. {
  46305. undressed: {
  46306. height: math.unit(2, "m"),
  46307. weight: math.unit(250, "kg"),
  46308. name: "Undressed",
  46309. image: {
  46310. source: "./media/characters/coriander/undressed.svg",
  46311. extra: 1757/1606,
  46312. bottom: 107/1864
  46313. }
  46314. },
  46315. dressed: {
  46316. height: math.unit(2, "m"),
  46317. weight: math.unit(250, "kg"),
  46318. name: "Dressed",
  46319. image: {
  46320. source: "./media/characters/coriander/dressed.svg",
  46321. extra: 1757/1606,
  46322. bottom: 107/1864
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(4, "meters"),
  46330. default: true
  46331. },
  46332. {
  46333. name: "XL",
  46334. height: math.unit(6, "meters")
  46335. },
  46336. {
  46337. name: "XXL",
  46338. height: math.unit(8, "meters")
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(6, "feet"),
  46347. name: "Front",
  46348. image: {
  46349. source: "./media/characters/syrinx/front.svg",
  46350. extra: 1557/1259,
  46351. bottom: 171/1728
  46352. }
  46353. },
  46354. },
  46355. [
  46356. {
  46357. name: "Normal",
  46358. height: math.unit(6 + 3/12, "feet"),
  46359. default: true
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(11 + 6/12, "feet"),
  46368. weight: math.unit(1.5, "tons"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/bor/front.svg",
  46372. extra: 1189/1109,
  46373. bottom: 170/1359
  46374. }
  46375. },
  46376. },
  46377. [
  46378. {
  46379. name: "Normal",
  46380. height: math.unit(11 + 6/12, "feet"),
  46381. default: true
  46382. },
  46383. {
  46384. name: "Macro",
  46385. height: math.unit(32 + 9/12, "feet")
  46386. },
  46387. ]
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46391. {
  46392. anthro: {
  46393. height: math.unit(9, "feet"),
  46394. weight: math.unit(2076, "lb"),
  46395. name: "Anthro",
  46396. image: {
  46397. source: "./media/characters/abacus/anthro.svg",
  46398. extra: 1540/1494,
  46399. bottom: 233/1773
  46400. }
  46401. },
  46402. pigeon: {
  46403. height: math.unit(1, "feet"),
  46404. name: "Pigeon",
  46405. image: {
  46406. source: "./media/characters/abacus/pigeon.svg",
  46407. extra: 528/525,
  46408. bottom: 46/574
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(9, "feet"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46422. {
  46423. side: {
  46424. height: math.unit(6, "feet"),
  46425. name: "Side",
  46426. image: {
  46427. source: "./media/characters/delkhan/side.svg",
  46428. extra: 1884/1786,
  46429. bottom: 308/2192
  46430. }
  46431. },
  46432. head: {
  46433. height: math.unit(3.38, "feet"),
  46434. name: "Head",
  46435. image: {
  46436. source: "./media/characters/delkhan/head.svg"
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(72, "feet"),
  46444. default: true
  46445. },
  46446. {
  46447. name: "Giant",
  46448. height: math.unit(172, "feet")
  46449. },
  46450. ]
  46451. ))
  46452. characterMakers.push(() => makeCharacter(
  46453. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46454. {
  46455. standing: {
  46456. height: math.unit(6, "feet"),
  46457. name: "Standing",
  46458. image: {
  46459. source: "./media/characters/euchidat/standing.svg",
  46460. extra: 1612/1553,
  46461. bottom: 116/1728
  46462. }
  46463. },
  46464. leaning: {
  46465. height: math.unit(6, "feet"),
  46466. name: "Leaning",
  46467. image: {
  46468. source: "./media/characters/euchidat/leaning.svg",
  46469. extra: 1719/1674,
  46470. bottom: 27/1746
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Normal",
  46477. height: math.unit(175, "feet"),
  46478. default: true
  46479. },
  46480. {
  46481. name: "Megamacro",
  46482. height: math.unit(190, "miles")
  46483. },
  46484. {
  46485. name: "Gigamacro",
  46486. height: math.unit(190000, "miles")
  46487. },
  46488. ]
  46489. ))
  46490. characterMakers.push(() => makeCharacter(
  46491. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46492. {
  46493. front: {
  46494. height: math.unit(6, "feet"),
  46495. weight: math.unit(150, "lb"),
  46496. name: "Front",
  46497. image: {
  46498. source: "./media/characters/rebecca-stack/front.svg",
  46499. extra: 1256/1201,
  46500. bottom: 18/1274
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(5 + 8/12, "feet"),
  46508. default: true
  46509. },
  46510. {
  46511. name: "Demolitionist",
  46512. height: math.unit(200, "feet")
  46513. },
  46514. {
  46515. name: "Out of Control",
  46516. height: math.unit(2, "miles")
  46517. },
  46518. {
  46519. name: "Giga",
  46520. height: math.unit(7200, "miles")
  46521. },
  46522. ]
  46523. ))
  46524. characterMakers.push(() => makeCharacter(
  46525. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46526. {
  46527. front: {
  46528. height: math.unit(6, "feet"),
  46529. weight: math.unit(150, "lb"),
  46530. name: "Front",
  46531. image: {
  46532. source: "./media/characters/jenny-cartwright/front.svg",
  46533. extra: 1384/1376,
  46534. bottom: 58/1442
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(6 + 7/12, "feet"),
  46542. default: true
  46543. },
  46544. {
  46545. name: "Librarian",
  46546. height: math.unit(55, "feet")
  46547. },
  46548. {
  46549. name: "Sightseer",
  46550. height: math.unit(50, "miles")
  46551. },
  46552. {
  46553. name: "Giga",
  46554. height: math.unit(30000, "miles")
  46555. },
  46556. ]
  46557. ))
  46558. characterMakers.push(() => makeCharacter(
  46559. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46560. {
  46561. nude: {
  46562. height: math.unit(8, "feet"),
  46563. weight: math.unit(225, "lb"),
  46564. name: "Nude",
  46565. image: {
  46566. source: "./media/characters/marvy/nude.svg",
  46567. extra: 1900/1683,
  46568. bottom: 89/1989
  46569. }
  46570. },
  46571. dressed: {
  46572. height: math.unit(8, "feet"),
  46573. weight: math.unit(225, "lb"),
  46574. name: "Dressed",
  46575. image: {
  46576. source: "./media/characters/marvy/dressed.svg",
  46577. extra: 1900/1683,
  46578. bottom: 89/1989
  46579. }
  46580. },
  46581. head: {
  46582. height: math.unit(2.85, "feet"),
  46583. name: "Head",
  46584. image: {
  46585. source: "./media/characters/marvy/head.svg"
  46586. }
  46587. },
  46588. },
  46589. [
  46590. {
  46591. name: "Normal",
  46592. height: math.unit(8, "feet"),
  46593. default: true
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46599. {
  46600. front: {
  46601. height: math.unit(8, "feet"),
  46602. weight: math.unit(250, "lb"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/leah/front.svg",
  46606. extra: 1257/1149,
  46607. bottom: 109/1366
  46608. }
  46609. },
  46610. },
  46611. [
  46612. {
  46613. name: "Normal",
  46614. height: math.unit(8, "feet"),
  46615. default: true
  46616. },
  46617. {
  46618. name: "Minimacro",
  46619. height: math.unit(40, "feet")
  46620. },
  46621. {
  46622. name: "Macro",
  46623. height: math.unit(124, "feet")
  46624. },
  46625. {
  46626. name: "Megamacro",
  46627. height: math.unit(850, "feet")
  46628. },
  46629. ]
  46630. ))
  46631. characterMakers.push(() => makeCharacter(
  46632. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46633. {
  46634. side: {
  46635. height: math.unit(13 + 6/12, "feet"),
  46636. weight: math.unit(3200, "lb"),
  46637. name: "Side",
  46638. image: {
  46639. source: "./media/characters/alvir/side.svg",
  46640. extra: 896/589,
  46641. bottom: 26/922
  46642. }
  46643. },
  46644. },
  46645. [
  46646. {
  46647. name: "Normal",
  46648. height: math.unit(13 + 6/12, "feet"),
  46649. default: true
  46650. },
  46651. ]
  46652. ))
  46653. characterMakers.push(() => makeCharacter(
  46654. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46655. {
  46656. front: {
  46657. height: math.unit(5 + 4/12, "feet"),
  46658. weight: math.unit(236, "lb"),
  46659. name: "Front",
  46660. image: {
  46661. source: "./media/characters/zaina-khalil/front.svg",
  46662. extra: 1533/1485,
  46663. bottom: 94/1627
  46664. }
  46665. },
  46666. side: {
  46667. height: math.unit(5 + 4/12, "feet"),
  46668. weight: math.unit(236, "lb"),
  46669. name: "Side",
  46670. image: {
  46671. source: "./media/characters/zaina-khalil/side.svg",
  46672. extra: 1537/1498,
  46673. bottom: 66/1603
  46674. }
  46675. },
  46676. back: {
  46677. height: math.unit(5 + 4/12, "feet"),
  46678. weight: math.unit(236, "lb"),
  46679. name: "Back",
  46680. image: {
  46681. source: "./media/characters/zaina-khalil/back.svg",
  46682. extra: 1546/1494,
  46683. bottom: 89/1635
  46684. }
  46685. },
  46686. },
  46687. [
  46688. {
  46689. name: "Normal",
  46690. height: math.unit(5 + 4/12, "feet"),
  46691. default: true
  46692. },
  46693. ]
  46694. ))
  46695. characterMakers.push(() => makeCharacter(
  46696. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46697. {
  46698. side: {
  46699. height: math.unit(12, "feet"),
  46700. weight: math.unit(4000, "lb"),
  46701. name: "Side",
  46702. image: {
  46703. source: "./media/characters/terry/side.svg",
  46704. extra: 1518/1439,
  46705. bottom: 149/1667
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Normal",
  46712. height: math.unit(12, "feet"),
  46713. default: true
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(12, "feet"),
  46722. weight: math.unit(1500, "lb"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/kahea/front.svg",
  46726. extra: 1722/1617,
  46727. bottom: 179/1901
  46728. }
  46729. },
  46730. },
  46731. [
  46732. {
  46733. name: "Normal",
  46734. height: math.unit(12, "feet"),
  46735. default: true
  46736. },
  46737. ]
  46738. ))
  46739. characterMakers.push(() => makeCharacter(
  46740. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46741. {
  46742. demonFront: {
  46743. height: math.unit(36, "feet"),
  46744. name: "Front",
  46745. image: {
  46746. source: "./media/characters/alex-xuria/demon-front.svg",
  46747. extra: 1705/1673,
  46748. bottom: 198/1903
  46749. },
  46750. form: "demon",
  46751. default: true
  46752. },
  46753. demonBack: {
  46754. height: math.unit(36, "feet"),
  46755. name: "Back",
  46756. image: {
  46757. source: "./media/characters/alex-xuria/demon-back.svg",
  46758. extra: 1725/1693,
  46759. bottom: 70/1795
  46760. },
  46761. form: "demon"
  46762. },
  46763. demonHead: {
  46764. height: math.unit(2.14, "meters"),
  46765. name: "Head",
  46766. image: {
  46767. source: "./media/characters/alex-xuria/demon-head.svg"
  46768. },
  46769. form: "demon"
  46770. },
  46771. demonHand: {
  46772. height: math.unit(1.61, "meters"),
  46773. name: "Hand",
  46774. image: {
  46775. source: "./media/characters/alex-xuria/demon-hand.svg"
  46776. },
  46777. form: "demon"
  46778. },
  46779. demonPaw: {
  46780. height: math.unit(1.35, "meters"),
  46781. name: "Paw",
  46782. image: {
  46783. source: "./media/characters/alex-xuria/demon-paw.svg"
  46784. },
  46785. form: "demon"
  46786. },
  46787. demonFoot: {
  46788. height: math.unit(2.2, "meters"),
  46789. name: "Foot",
  46790. image: {
  46791. source: "./media/characters/alex-xuria/demon-foot.svg"
  46792. },
  46793. form: "demon"
  46794. },
  46795. demonCock: {
  46796. height: math.unit(1.74, "meters"),
  46797. name: "Cock",
  46798. image: {
  46799. source: "./media/characters/alex-xuria/demon-cock.svg"
  46800. },
  46801. form: "demon"
  46802. },
  46803. demonTailClosed: {
  46804. height: math.unit(1.47, "meters"),
  46805. name: "Tail (Closed)",
  46806. image: {
  46807. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46808. },
  46809. form: "demon"
  46810. },
  46811. demonTailOpen: {
  46812. height: math.unit(2.85, "meters"),
  46813. name: "Tail (Open)",
  46814. image: {
  46815. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46816. },
  46817. form: "demon"
  46818. },
  46819. incubusFront: {
  46820. height: math.unit(12, "feet"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/alex-xuria/incubus-front.svg",
  46824. extra: 1754/1677,
  46825. bottom: 125/1879
  46826. },
  46827. form: "incubus",
  46828. default: true
  46829. },
  46830. incubusBack: {
  46831. height: math.unit(12, "feet"),
  46832. name: "Back",
  46833. image: {
  46834. source: "./media/characters/alex-xuria/incubus-back.svg",
  46835. extra: 1702/1647,
  46836. bottom: 30/1732
  46837. },
  46838. form: "incubus"
  46839. },
  46840. incubusHead: {
  46841. height: math.unit(3.45, "feet"),
  46842. name: "Head",
  46843. image: {
  46844. source: "./media/characters/alex-xuria/incubus-head.svg"
  46845. },
  46846. form: "incubus"
  46847. },
  46848. rabbitFront: {
  46849. height: math.unit(6, "feet"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46853. extra: 1369/1349,
  46854. bottom: 45/1414
  46855. },
  46856. form: "rabbit",
  46857. default: true
  46858. },
  46859. rabbitSide: {
  46860. height: math.unit(6, "feet"),
  46861. name: "Side",
  46862. image: {
  46863. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46864. extra: 1370/1356,
  46865. bottom: 37/1407
  46866. },
  46867. form: "rabbit"
  46868. },
  46869. rabbitBack: {
  46870. height: math.unit(6, "feet"),
  46871. name: "Back",
  46872. image: {
  46873. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46874. extra: 1375/1358,
  46875. bottom: 43/1418
  46876. },
  46877. form: "rabbit"
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(6, "feet"),
  46884. default: true,
  46885. form: "rabbit"
  46886. },
  46887. {
  46888. name: "Incubus",
  46889. height: math.unit(12, "feet"),
  46890. default: true,
  46891. form: "incubus"
  46892. },
  46893. {
  46894. name: "Demon",
  46895. height: math.unit(36, "feet"),
  46896. default: true,
  46897. form: "demon"
  46898. }
  46899. ],
  46900. {
  46901. "demon": {
  46902. name: "Demon",
  46903. default: true
  46904. },
  46905. "incubus": {
  46906. name: "Incubus",
  46907. },
  46908. "rabbit": {
  46909. name: "Rabbit"
  46910. }
  46911. }
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46915. {
  46916. front: {
  46917. height: math.unit(7 + 5/12, "feet"),
  46918. weight: math.unit(510, "lb"),
  46919. name: "Front",
  46920. image: {
  46921. source: "./media/characters/syrup/front.svg",
  46922. extra: 932/916,
  46923. bottom: 26/958
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(7 + 5/12, "feet"),
  46931. default: true
  46932. },
  46933. {
  46934. name: "Big",
  46935. height: math.unit(50, "feet")
  46936. },
  46937. {
  46938. name: "Macro",
  46939. height: math.unit(300, "feet")
  46940. },
  46941. {
  46942. name: "Megamacro",
  46943. height: math.unit(1, "mile")
  46944. },
  46945. ]
  46946. ))
  46947. characterMakers.push(() => makeCharacter(
  46948. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46949. {
  46950. front: {
  46951. height: math.unit(6 + 9/12, "feet"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/zeimne/front.svg",
  46955. extra: 1969/1806,
  46956. bottom: 53/2022
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(6 + 9/12, "feet"),
  46964. default: true
  46965. },
  46966. {
  46967. name: "Giant",
  46968. height: math.unit(550, "feet")
  46969. },
  46970. {
  46971. name: "Mega",
  46972. height: math.unit(3, "miles")
  46973. },
  46974. {
  46975. name: "Giga",
  46976. height: math.unit(250, "miles")
  46977. },
  46978. {
  46979. name: "Tera",
  46980. height: math.unit(1, "AU")
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(5 + 2/12, "feet"),
  46989. name: "Front",
  46990. image: {
  46991. source: "./media/characters/grar/front.svg",
  46992. extra: 1331/1119,
  46993. bottom: 60/1391
  46994. }
  46995. },
  46996. back: {
  46997. height: math.unit(5 + 2/12, "feet"),
  46998. name: "Back",
  46999. image: {
  47000. source: "./media/characters/grar/back.svg",
  47001. extra: 1385/1169,
  47002. bottom: 23/1408
  47003. }
  47004. },
  47005. },
  47006. [
  47007. {
  47008. name: "Normal",
  47009. height: math.unit(5 + 2/12, "feet"),
  47010. default: true
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47016. {
  47017. front: {
  47018. height: math.unit(13 + 7/12, "feet"),
  47019. weight: math.unit(2200, "lb"),
  47020. name: "Front",
  47021. image: {
  47022. source: "./media/characters/endraya/front.svg",
  47023. extra: 1289/1215,
  47024. bottom: 50/1339
  47025. }
  47026. },
  47027. nude: {
  47028. height: math.unit(13 + 7/12, "feet"),
  47029. weight: math.unit(2200, "lb"),
  47030. name: "Nude",
  47031. image: {
  47032. source: "./media/characters/endraya/nude.svg",
  47033. extra: 1247/1171,
  47034. bottom: 40/1287
  47035. }
  47036. },
  47037. head: {
  47038. height: math.unit(2.6, "feet"),
  47039. name: "Head",
  47040. image: {
  47041. source: "./media/characters/endraya/head.svg"
  47042. }
  47043. },
  47044. slit: {
  47045. height: math.unit(3.4, "feet"),
  47046. name: "Slit",
  47047. image: {
  47048. source: "./media/characters/endraya/slit.svg"
  47049. }
  47050. },
  47051. },
  47052. [
  47053. {
  47054. name: "Normal",
  47055. height: math.unit(13 + 7/12, "feet"),
  47056. default: true
  47057. },
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(200, "feet")
  47061. },
  47062. ]
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47066. {
  47067. front: {
  47068. height: math.unit(1.81, "meters"),
  47069. weight: math.unit(69, "kg"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/rodryana/front.svg",
  47073. extra: 2002/1921,
  47074. bottom: 53/2055
  47075. }
  47076. },
  47077. back: {
  47078. height: math.unit(1.81, "meters"),
  47079. weight: math.unit(69, "kg"),
  47080. name: "Back",
  47081. image: {
  47082. source: "./media/characters/rodryana/back.svg",
  47083. extra: 1993/1926,
  47084. bottom: 48/2041
  47085. }
  47086. },
  47087. maw: {
  47088. height: math.unit(0.19769417475, "meters"),
  47089. name: "Maw",
  47090. image: {
  47091. source: "./media/characters/rodryana/maw.svg"
  47092. }
  47093. },
  47094. slit: {
  47095. height: math.unit(0.31631067961, "meters"),
  47096. name: "Slit",
  47097. image: {
  47098. source: "./media/characters/rodryana/slit.svg"
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(1.81, "meters")
  47106. },
  47107. {
  47108. name: "Mini Macro",
  47109. height: math.unit(181, "meters")
  47110. },
  47111. {
  47112. name: "Macro",
  47113. height: math.unit(452, "meters"),
  47114. default: true
  47115. },
  47116. {
  47117. name: "Mega Macro",
  47118. height: math.unit(1.375, "km")
  47119. },
  47120. {
  47121. name: "Giga Macro",
  47122. height: math.unit(13.575, "km")
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(6, "feet"),
  47131. weight: math.unit(1000, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/asaya/front.svg",
  47135. extra: 1460/1200,
  47136. bottom: 71/1531
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(8, "km"),
  47144. default: true
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47150. {
  47151. front: {
  47152. height: math.unit(3.5, "meters"),
  47153. name: "Front",
  47154. image: {
  47155. source: "./media/characters/sarzu-and-israz/front.svg",
  47156. extra: 1570/1558,
  47157. bottom: 150/1720
  47158. },
  47159. },
  47160. back: {
  47161. height: math.unit(3.5, "meters"),
  47162. name: "Back",
  47163. image: {
  47164. source: "./media/characters/sarzu-and-israz/back.svg",
  47165. extra: 1523/1509,
  47166. bottom: 132/1655
  47167. },
  47168. },
  47169. frontFemale: {
  47170. height: math.unit(3.5, "meters"),
  47171. name: "Front (Female)",
  47172. image: {
  47173. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47174. extra: 1570/1558,
  47175. bottom: 150/1720
  47176. },
  47177. },
  47178. frontHerm: {
  47179. height: math.unit(3.5, "meters"),
  47180. name: "Front (Herm)",
  47181. image: {
  47182. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47183. extra: 1570/1558,
  47184. bottom: 150/1720
  47185. },
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Normal",
  47191. height: math.unit(3.5, "meters"),
  47192. default: true,
  47193. },
  47194. {
  47195. name: "Macro",
  47196. height: math.unit(65.5, "meters"),
  47197. },
  47198. ],
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(6, "feet"),
  47205. weight: math.unit(250, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/zenimma/front.svg",
  47209. extra: 1346/1320,
  47210. bottom: 58/1404
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(6, "feet"),
  47215. weight: math.unit(250, "lb"),
  47216. name: "Back",
  47217. image: {
  47218. source: "./media/characters/zenimma/back.svg",
  47219. extra: 1324/1308,
  47220. bottom: 44/1368
  47221. }
  47222. },
  47223. dick: {
  47224. height: math.unit(1.44, "feet"),
  47225. name: "Dick",
  47226. image: {
  47227. source: "./media/characters/zenimma/dick.svg"
  47228. }
  47229. },
  47230. },
  47231. [
  47232. {
  47233. name: "Canon Height",
  47234. height: math.unit(66, "miles"),
  47235. default: true
  47236. },
  47237. ]
  47238. ))
  47239. characterMakers.push(() => makeCharacter(
  47240. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47241. {
  47242. nude: {
  47243. height: math.unit(6, "feet"),
  47244. weight: math.unit(150, "lb"),
  47245. name: "Nude",
  47246. image: {
  47247. source: "./media/characters/shavon/nude.svg",
  47248. extra: 1242/1096,
  47249. bottom: 98/1340
  47250. }
  47251. },
  47252. dressed: {
  47253. height: math.unit(6, "feet"),
  47254. weight: math.unit(150, "lb"),
  47255. name: "Dressed",
  47256. image: {
  47257. source: "./media/characters/shavon/dressed.svg",
  47258. extra: 1242/1096,
  47259. bottom: 98/1340
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Macro",
  47266. height: math.unit(255, "feet"),
  47267. default: true
  47268. },
  47269. ]
  47270. ))
  47271. characterMakers.push(() => makeCharacter(
  47272. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47273. {
  47274. front: {
  47275. height: math.unit(6, "feet"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/steph/front.svg",
  47279. extra: 1430/1330,
  47280. bottom: 54/1484
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(6, "feet"),
  47288. default: true
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47294. {
  47295. front: {
  47296. height: math.unit(9, "feet"),
  47297. weight: math.unit(400, "lb"),
  47298. name: "Front",
  47299. image: {
  47300. source: "./media/characters/kil'aman/front.svg",
  47301. extra: 1210/1159,
  47302. bottom: 109/1319
  47303. }
  47304. },
  47305. head: {
  47306. height: math.unit(2.14, "feet"),
  47307. name: "Head",
  47308. image: {
  47309. source: "./media/characters/kil'aman/head.svg"
  47310. }
  47311. },
  47312. maw: {
  47313. height: math.unit(1.21, "feet"),
  47314. name: "Maw",
  47315. image: {
  47316. source: "./media/characters/kil'aman/maw.svg"
  47317. }
  47318. },
  47319. foot: {
  47320. height: math.unit(1.7, "feet"),
  47321. name: "Foot",
  47322. image: {
  47323. source: "./media/characters/kil'aman/foot.svg"
  47324. }
  47325. },
  47326. dick: {
  47327. height: math.unit(2.1, "feet"),
  47328. name: "Dick",
  47329. image: {
  47330. source: "./media/characters/kil'aman/dick.svg"
  47331. }
  47332. },
  47333. },
  47334. [
  47335. {
  47336. name: "Normal",
  47337. height: math.unit(9, "feet")
  47338. },
  47339. {
  47340. name: "Canon Height",
  47341. height: math.unit(10, "miles"),
  47342. default: true
  47343. },
  47344. {
  47345. name: "Maximum",
  47346. height: math.unit(6e9, "miles")
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47352. {
  47353. front: {
  47354. height: math.unit(90, "feet"),
  47355. weight: math.unit(675000, "lb"),
  47356. name: "Front",
  47357. image: {
  47358. source: "./media/characters/qadan/front.svg",
  47359. extra: 1012/1004,
  47360. bottom: 78/1090
  47361. }
  47362. },
  47363. back: {
  47364. height: math.unit(90, "feet"),
  47365. weight: math.unit(675000, "lb"),
  47366. name: "Back",
  47367. image: {
  47368. source: "./media/characters/qadan/back.svg",
  47369. extra: 1042/1031,
  47370. bottom: 55/1097
  47371. }
  47372. },
  47373. armored: {
  47374. height: math.unit(90, "feet"),
  47375. weight: math.unit(675000, "lb"),
  47376. name: "Armored",
  47377. image: {
  47378. source: "./media/characters/qadan/armored.svg",
  47379. extra: 1047/1037,
  47380. bottom: 48/1095
  47381. }
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Normal",
  47387. height: math.unit(90, "feet"),
  47388. default: true
  47389. },
  47390. ]
  47391. ))
  47392. characterMakers.push(() => makeCharacter(
  47393. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47394. {
  47395. front: {
  47396. height: math.unit(6, "feet"),
  47397. weight: math.unit(225, "lb"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/brooke/front.svg",
  47401. extra: 1050/1010,
  47402. bottom: 66/1116
  47403. }
  47404. },
  47405. back: {
  47406. height: math.unit(6, "feet"),
  47407. weight: math.unit(225, "lb"),
  47408. name: "Back",
  47409. image: {
  47410. source: "./media/characters/brooke/back.svg",
  47411. extra: 1053/1013,
  47412. bottom: 41/1094
  47413. }
  47414. },
  47415. dressed: {
  47416. height: math.unit(6, "feet"),
  47417. weight: math.unit(225, "lb"),
  47418. name: "Dressed",
  47419. image: {
  47420. source: "./media/characters/brooke/dressed.svg",
  47421. extra: 1050/1010,
  47422. bottom: 66/1116
  47423. }
  47424. },
  47425. },
  47426. [
  47427. {
  47428. name: "Canon Height",
  47429. height: math.unit(500, "miles"),
  47430. default: true
  47431. },
  47432. ]
  47433. ))
  47434. characterMakers.push(() => makeCharacter(
  47435. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47436. {
  47437. front: {
  47438. height: math.unit(6 + 2/12, "feet"),
  47439. weight: math.unit(210, "lb"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/wubs/front.svg",
  47443. extra: 1345/1325,
  47444. bottom: 70/1415
  47445. }
  47446. },
  47447. back: {
  47448. height: math.unit(6 + 2/12, "feet"),
  47449. weight: math.unit(210, "lb"),
  47450. name: "Back",
  47451. image: {
  47452. source: "./media/characters/wubs/back.svg",
  47453. extra: 1296/1275,
  47454. bottom: 58/1354
  47455. }
  47456. },
  47457. },
  47458. [
  47459. {
  47460. name: "Normal",
  47461. height: math.unit(6 + 2/12, "feet"),
  47462. default: true
  47463. },
  47464. {
  47465. name: "Macro",
  47466. height: math.unit(1000, "feet")
  47467. },
  47468. {
  47469. name: "Megamacro",
  47470. height: math.unit(1, "mile")
  47471. },
  47472. ]
  47473. ))
  47474. characterMakers.push(() => makeCharacter(
  47475. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47476. {
  47477. front: {
  47478. height: math.unit(4, "feet"),
  47479. weight: math.unit(120, "lb"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/blue/front.svg",
  47483. extra: 1636/1525,
  47484. bottom: 43/1679
  47485. }
  47486. },
  47487. back: {
  47488. height: math.unit(4, "feet"),
  47489. weight: math.unit(120, "lb"),
  47490. name: "Back",
  47491. image: {
  47492. source: "./media/characters/blue/back.svg",
  47493. extra: 1660/1560,
  47494. bottom: 57/1717
  47495. }
  47496. },
  47497. paws: {
  47498. height: math.unit(0.826, "feet"),
  47499. name: "Paws",
  47500. image: {
  47501. source: "./media/characters/blue/paws.svg"
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Micro",
  47508. height: math.unit(3, "inches")
  47509. },
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(4, "feet"),
  47513. default: true
  47514. },
  47515. {
  47516. name: "Femenine Form",
  47517. height: math.unit(14, "feet")
  47518. },
  47519. {
  47520. name: "Werebat Form",
  47521. height: math.unit(18, "feet")
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47527. {
  47528. female: {
  47529. height: math.unit(7 + 4/12, "feet"),
  47530. weight: math.unit(243, "lb"),
  47531. name: "Female",
  47532. image: {
  47533. source: "./media/characters/kaya/female.svg",
  47534. extra: 975/898,
  47535. bottom: 34/1009
  47536. }
  47537. },
  47538. herm: {
  47539. height: math.unit(7 + 4/12, "feet"),
  47540. weight: math.unit(243, "lb"),
  47541. name: "Herm",
  47542. image: {
  47543. source: "./media/characters/kaya/herm.svg",
  47544. extra: 975/898,
  47545. bottom: 34/1009
  47546. }
  47547. },
  47548. },
  47549. [
  47550. {
  47551. name: "Normal",
  47552. height: math.unit(7 + 4/12, "feet"),
  47553. default: true
  47554. },
  47555. ]
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47559. {
  47560. female: {
  47561. height: math.unit(9 + 4/12, "feet"),
  47562. weight: math.unit(398, "lb"),
  47563. name: "Female",
  47564. image: {
  47565. source: "./media/characters/kassandra/female.svg",
  47566. extra: 908/839,
  47567. bottom: 61/969
  47568. }
  47569. },
  47570. intersex: {
  47571. height: math.unit(9 + 4/12, "feet"),
  47572. weight: math.unit(398, "lb"),
  47573. name: "Intersex",
  47574. image: {
  47575. source: "./media/characters/kassandra/intersex.svg",
  47576. extra: 908/839,
  47577. bottom: 61/969
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(9 + 4/12, "feet"),
  47585. default: true
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47591. {
  47592. front: {
  47593. height: math.unit(3, "meters"),
  47594. name: "Front",
  47595. image: {
  47596. source: "./media/characters/amy/front.svg",
  47597. extra: 1380/1343,
  47598. bottom: 70/1450
  47599. }
  47600. },
  47601. back: {
  47602. height: math.unit(3, "meters"),
  47603. name: "Back",
  47604. image: {
  47605. source: "./media/characters/amy/back.svg",
  47606. extra: 1380/1347,
  47607. bottom: 66/1446
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(3, "meters"),
  47615. default: true
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47621. {
  47622. side: {
  47623. height: math.unit(47, "cm"),
  47624. weight: math.unit(10.8, "kg"),
  47625. name: "Side",
  47626. image: {
  47627. source: "./media/characters/alphaschakal/side.svg",
  47628. extra: 1058/568,
  47629. bottom: 62/1120
  47630. }
  47631. },
  47632. back: {
  47633. height: math.unit(78, "cm"),
  47634. weight: math.unit(10.8, "kg"),
  47635. name: "Back",
  47636. image: {
  47637. source: "./media/characters/alphaschakal/back.svg",
  47638. extra: 1102/942,
  47639. bottom: 185/1287
  47640. }
  47641. },
  47642. head: {
  47643. height: math.unit(28, "cm"),
  47644. name: "Head",
  47645. image: {
  47646. source: "./media/characters/alphaschakal/head.svg",
  47647. extra: 696/508,
  47648. bottom: 0/696
  47649. }
  47650. },
  47651. paw: {
  47652. height: math.unit(16, "cm"),
  47653. name: "Paw",
  47654. image: {
  47655. source: "./media/characters/alphaschakal/paw.svg"
  47656. }
  47657. },
  47658. },
  47659. [
  47660. {
  47661. name: "Normal",
  47662. height: math.unit(47, "cm"),
  47663. default: true
  47664. },
  47665. {
  47666. name: "Macro",
  47667. height: math.unit(340, "cm")
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(36, "earths"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/ecobyss/front.svg",
  47679. extra: 1282/1215,
  47680. bottom: 11/1293
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(36, "earths"),
  47685. name: "Back",
  47686. image: {
  47687. source: "./media/characters/ecobyss/back.svg",
  47688. extra: 1291/1222,
  47689. bottom: 8/1299
  47690. }
  47691. },
  47692. },
  47693. [
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(36, "earths"),
  47697. default: true
  47698. },
  47699. ]
  47700. ))
  47701. characterMakers.push(() => makeCharacter(
  47702. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47703. {
  47704. front: {
  47705. height: math.unit(12, "feet"),
  47706. name: "Front",
  47707. image: {
  47708. source: "./media/characters/vasuk/front.svg",
  47709. extra: 1326/1207,
  47710. bottom: 64/1390
  47711. }
  47712. },
  47713. },
  47714. [
  47715. {
  47716. name: "Normal",
  47717. height: math.unit(12, "feet"),
  47718. default: true
  47719. },
  47720. ]
  47721. ))
  47722. characterMakers.push(() => makeCharacter(
  47723. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47724. {
  47725. side: {
  47726. height: math.unit(100, "feet"),
  47727. name: "Side",
  47728. image: {
  47729. source: "./media/characters/linneaus/side.svg",
  47730. extra: 987/807,
  47731. bottom: 47/1034
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Macro",
  47738. height: math.unit(100, "feet"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(8, "feet"),
  47748. weight: math.unit(1200, "lb"),
  47749. name: "Front",
  47750. image: {
  47751. source: "./media/characters/nyterious-daligdig/front.svg",
  47752. extra: 1284/1094,
  47753. bottom: 84/1368
  47754. }
  47755. },
  47756. back: {
  47757. height: math.unit(8, "feet"),
  47758. weight: math.unit(1200, "lb"),
  47759. name: "Back",
  47760. image: {
  47761. source: "./media/characters/nyterious-daligdig/back.svg",
  47762. extra: 1301/1121,
  47763. bottom: 129/1430
  47764. }
  47765. },
  47766. mouth: {
  47767. height: math.unit(1.464, "feet"),
  47768. name: "Mouth",
  47769. image: {
  47770. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47771. }
  47772. },
  47773. },
  47774. [
  47775. {
  47776. name: "Small",
  47777. height: math.unit(8, "feet"),
  47778. default: true
  47779. },
  47780. {
  47781. name: "Normal",
  47782. height: math.unit(15, "feet")
  47783. },
  47784. {
  47785. name: "Macro",
  47786. height: math.unit(90, "feet")
  47787. },
  47788. ]
  47789. ))
  47790. characterMakers.push(() => makeCharacter(
  47791. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47792. {
  47793. front: {
  47794. height: math.unit(7 + 4/12, "feet"),
  47795. weight: math.unit(252, "lb"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/bandel/front.svg",
  47799. extra: 1946/1775,
  47800. bottom: 26/1972
  47801. }
  47802. },
  47803. back: {
  47804. height: math.unit(7 + 4/12, "feet"),
  47805. weight: math.unit(252, "lb"),
  47806. name: "Back",
  47807. image: {
  47808. source: "./media/characters/bandel/back.svg",
  47809. extra: 1940/1770,
  47810. bottom: 25/1965
  47811. }
  47812. },
  47813. maw: {
  47814. height: math.unit(2.15, "feet"),
  47815. name: "Maw",
  47816. image: {
  47817. source: "./media/characters/bandel/maw.svg"
  47818. }
  47819. },
  47820. stomach: {
  47821. height: math.unit(1.95, "feet"),
  47822. name: "Stomach",
  47823. image: {
  47824. source: "./media/characters/bandel/stomach.svg"
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Normal",
  47831. height: math.unit(7 + 4/12, "feet"),
  47832. default: true
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(10 + 5/12, "feet"),
  47841. weight: math.unit(773.5, "kg"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/zed/front.svg",
  47845. extra: 987/941,
  47846. bottom: 52/1039
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Short",
  47853. height: math.unit(5 + 4/12, "feet")
  47854. },
  47855. {
  47856. name: "Average",
  47857. height: math.unit(10 + 5/12, "feet"),
  47858. default: true
  47859. },
  47860. {
  47861. name: "Mini-Macro",
  47862. height: math.unit(24 + 9/12, "feet")
  47863. },
  47864. {
  47865. name: "Macro",
  47866. height: math.unit(249, "feet")
  47867. },
  47868. {
  47869. name: "Mega-Macro",
  47870. height: math.unit(12490, "feet")
  47871. },
  47872. {
  47873. name: "Giga-Macro",
  47874. height: math.unit(24.9, "miles")
  47875. },
  47876. {
  47877. name: "Tera-Macro",
  47878. height: math.unit(24900, "miles")
  47879. },
  47880. {
  47881. name: "Cosmic Scale",
  47882. height: math.unit(38.9, "lightyears")
  47883. },
  47884. {
  47885. name: "Universal Scale",
  47886. height: math.unit(138e12, "lightyears")
  47887. },
  47888. ]
  47889. ))
  47890. characterMakers.push(() => makeCharacter(
  47891. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47892. {
  47893. front: {
  47894. height: math.unit(1561, "inches"),
  47895. name: "Front",
  47896. image: {
  47897. source: "./media/characters/ivan/front.svg",
  47898. extra: 1126/1071,
  47899. bottom: 26/1152
  47900. }
  47901. },
  47902. back: {
  47903. height: math.unit(1561, "inches"),
  47904. name: "Back",
  47905. image: {
  47906. source: "./media/characters/ivan/back.svg",
  47907. extra: 1134/1079,
  47908. bottom: 30/1164
  47909. }
  47910. },
  47911. },
  47912. [
  47913. {
  47914. name: "Normal",
  47915. height: math.unit(1561, "inches"),
  47916. default: true
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(5 + 7/12, "feet"),
  47925. weight: math.unit(150, "lb"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/robin-arctic-hare/front.svg",
  47929. extra: 1148/974,
  47930. bottom: 20/1168
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Normal",
  47937. height: math.unit(5 + 7/12, "feet"),
  47938. default: true
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47944. {
  47945. side: {
  47946. height: math.unit(5, "feet"),
  47947. name: "Side",
  47948. image: {
  47949. source: "./media/characters/birch/side.svg",
  47950. extra: 985/796,
  47951. bottom: 111/1096
  47952. }
  47953. },
  47954. },
  47955. [
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(5, "feet"),
  47959. default: true
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(4, "feet"),
  47968. name: "Front",
  47969. image: {
  47970. source: "./media/characters/rasp/front.svg",
  47971. extra: 561/478,
  47972. bottom: 74/635
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(4, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(4 + 6/12, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/agatha/front.svg",
  47992. extra: 947/933,
  47993. bottom: 42/989
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(4 + 6/12, "feet"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/agatha/back.svg",
  48001. extra: 935/922,
  48002. bottom: 48/983
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(4 + 6 /12, "feet"),
  48010. default: true
  48011. },
  48012. {
  48013. name: "Max Size",
  48014. height: math.unit(500, "feet")
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48020. {
  48021. side: {
  48022. height: math.unit(30, "feet"),
  48023. name: "Side",
  48024. image: {
  48025. source: "./media/characters/roggy/side.svg",
  48026. extra: 909/643,
  48027. bottom: 63/972
  48028. }
  48029. },
  48030. lounging: {
  48031. height: math.unit(20, "feet"),
  48032. name: "Lounging",
  48033. image: {
  48034. source: "./media/characters/roggy/lounging.svg",
  48035. extra: 643/479,
  48036. bottom: 145/788
  48037. }
  48038. },
  48039. handpaw: {
  48040. height: math.unit(13.1, "feet"),
  48041. name: "Handpaw",
  48042. image: {
  48043. source: "./media/characters/roggy/handpaw.svg"
  48044. }
  48045. },
  48046. footpaw: {
  48047. height: math.unit(15.8, "feet"),
  48048. name: "Footpaw",
  48049. image: {
  48050. source: "./media/characters/roggy/footpaw.svg"
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Menacing",
  48057. height: math.unit(30, "feet"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48064. {
  48065. front: {
  48066. height: math.unit(5 + 7/12, "feet"),
  48067. weight: math.unit(135, "lb"),
  48068. name: "Front",
  48069. image: {
  48070. source: "./media/characters/naomi/front.svg",
  48071. extra: 1209/1154,
  48072. bottom: 129/1338
  48073. }
  48074. },
  48075. back: {
  48076. height: math.unit(5 + 7/12, "feet"),
  48077. weight: math.unit(135, "lb"),
  48078. name: "Back",
  48079. image: {
  48080. source: "./media/characters/naomi/back.svg",
  48081. extra: 1252/1190,
  48082. bottom: 23/1275
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(5 + 7 /12, "feet"),
  48090. default: true
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48096. {
  48097. side: {
  48098. height: math.unit(35, "meters"),
  48099. name: "Side",
  48100. image: {
  48101. source: "./media/characters/kimpi/side.svg",
  48102. extra: 419/382,
  48103. bottom: 63/482
  48104. }
  48105. },
  48106. hand: {
  48107. height: math.unit(8.96, "meters"),
  48108. name: "Hand",
  48109. image: {
  48110. source: "./media/characters/kimpi/hand.svg"
  48111. }
  48112. },
  48113. },
  48114. [
  48115. {
  48116. name: "Normal",
  48117. height: math.unit(35, "meters"),
  48118. default: true
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48124. {
  48125. front: {
  48126. height: math.unit(4 + 4/12, "feet"),
  48127. name: "Front",
  48128. image: {
  48129. source: "./media/characters/pepper-purrloin/front.svg",
  48130. extra: 1141/1024,
  48131. bottom: 21/1162
  48132. }
  48133. },
  48134. },
  48135. [
  48136. {
  48137. name: "Normal",
  48138. height: math.unit(4 + 4/12, "feet"),
  48139. default: true
  48140. },
  48141. ]
  48142. ))
  48143. characterMakers.push(() => makeCharacter(
  48144. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48145. {
  48146. front: {
  48147. height: math.unit(6 + 2/12, "feet"),
  48148. name: "Front",
  48149. image: {
  48150. source: "./media/characters/raphael/front.svg",
  48151. extra: 1101/962,
  48152. bottom: 59/1160
  48153. }
  48154. },
  48155. },
  48156. [
  48157. {
  48158. name: "Normal",
  48159. height: math.unit(6 + 2/12, "feet"),
  48160. default: true
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48166. {
  48167. front: {
  48168. height: math.unit(6, "feet"),
  48169. weight: math.unit(150, "lb"),
  48170. name: "Front",
  48171. image: {
  48172. source: "./media/characters/victor-williams/front.svg",
  48173. extra: 1894/1825,
  48174. bottom: 67/1961
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(6, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(5 + 8/12, "feet"),
  48191. weight: math.unit(150, "lb"),
  48192. name: "Front",
  48193. image: {
  48194. source: "./media/characters/rachel/front.svg",
  48195. extra: 1902/1787,
  48196. bottom: 46/1948
  48197. }
  48198. },
  48199. },
  48200. [
  48201. {
  48202. name: "Base Height",
  48203. height: math.unit(5 + 8/12, "feet"),
  48204. default: true
  48205. },
  48206. {
  48207. name: "Macro",
  48208. height: math.unit(200, "feet")
  48209. },
  48210. {
  48211. name: "Mega Macro",
  48212. height: math.unit(1, "mile")
  48213. },
  48214. {
  48215. name: "Giga Macro",
  48216. height: math.unit(1500, "miles")
  48217. },
  48218. {
  48219. name: "Tera Macro",
  48220. height: math.unit(8000, "miles")
  48221. },
  48222. {
  48223. name: "Tera Macro+",
  48224. height: math.unit(2e5, "miles")
  48225. },
  48226. ]
  48227. ))
  48228. characterMakers.push(() => makeCharacter(
  48229. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48230. {
  48231. front: {
  48232. height: math.unit(6.5, "feet"),
  48233. name: "Front",
  48234. image: {
  48235. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48236. extra: 860/819,
  48237. bottom: 307/1167
  48238. }
  48239. },
  48240. back: {
  48241. height: math.unit(6.5, "feet"),
  48242. name: "Back",
  48243. image: {
  48244. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48245. extra: 880/837,
  48246. bottom: 395/1275
  48247. }
  48248. },
  48249. sleeping: {
  48250. height: math.unit(2.79, "feet"),
  48251. name: "Sleeping",
  48252. image: {
  48253. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48254. extra: 465/383,
  48255. bottom: 263/728
  48256. }
  48257. },
  48258. maw: {
  48259. height: math.unit(2.52, "feet"),
  48260. name: "Maw",
  48261. image: {
  48262. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Normal",
  48269. height: math.unit(6.5, "feet"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48276. {
  48277. front: {
  48278. height: math.unit(5, "feet"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/nova-nerium/front.svg",
  48282. extra: 1548/1392,
  48283. bottom: 374/1922
  48284. }
  48285. },
  48286. back: {
  48287. height: math.unit(5, "feet"),
  48288. name: "Back",
  48289. image: {
  48290. source: "./media/characters/nova-nerium/back.svg",
  48291. extra: 1658/1468,
  48292. bottom: 257/1915
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(5, "feet"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(5 + 4/12, "feet"),
  48309. name: "Front",
  48310. image: {
  48311. source: "./media/characters/ashe-pyriph/front.svg",
  48312. extra: 1935/1747,
  48313. bottom: 60/1995
  48314. }
  48315. },
  48316. },
  48317. [
  48318. {
  48319. name: "Normal",
  48320. height: math.unit(5 + 4/12, "feet"),
  48321. default: true
  48322. },
  48323. ]
  48324. ))
  48325. characterMakers.push(() => makeCharacter(
  48326. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48327. {
  48328. front: {
  48329. height: math.unit(8.7, "feet"),
  48330. name: "Front",
  48331. image: {
  48332. source: "./media/characters/flicker-wisp/front.svg",
  48333. extra: 1835/1613,
  48334. bottom: 449/2284
  48335. }
  48336. },
  48337. side: {
  48338. height: math.unit(8.7, "feet"),
  48339. name: "Side",
  48340. image: {
  48341. source: "./media/characters/flicker-wisp/side.svg",
  48342. extra: 1841/1642,
  48343. bottom: 336/2177
  48344. },
  48345. default: true
  48346. },
  48347. maw: {
  48348. height: math.unit(3.35, "feet"),
  48349. name: "Maw",
  48350. image: {
  48351. source: "./media/characters/flicker-wisp/maw.svg",
  48352. extra: 2338/1506,
  48353. bottom: 0/2338
  48354. }
  48355. },
  48356. ovipositor: {
  48357. height: math.unit(4.95, "feet"),
  48358. name: "Ovipositor",
  48359. image: {
  48360. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48361. }
  48362. },
  48363. egg: {
  48364. height: math.unit(0.385, "feet"),
  48365. weight: math.unit(2, "lb"),
  48366. name: "Egg",
  48367. image: {
  48368. source: "./media/characters/flicker-wisp/egg.svg"
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(8.7, "feet"),
  48376. default: true
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48382. {
  48383. side: {
  48384. height: math.unit(11, "feet"),
  48385. name: "Side",
  48386. image: {
  48387. source: "./media/characters/faefnul/side.svg",
  48388. extra: 1100/1007,
  48389. bottom: 0/1100
  48390. }
  48391. },
  48392. },
  48393. [
  48394. {
  48395. name: "Normal",
  48396. height: math.unit(11, "feet"),
  48397. default: true
  48398. },
  48399. ]
  48400. ))
  48401. characterMakers.push(() => makeCharacter(
  48402. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48403. {
  48404. front: {
  48405. height: math.unit(6 + 2/12, "feet"),
  48406. name: "Front",
  48407. image: {
  48408. source: "./media/characters/shady/front.svg",
  48409. extra: 502/461,
  48410. bottom: 9/511
  48411. }
  48412. },
  48413. kneeling: {
  48414. height: math.unit(4.6, "feet"),
  48415. name: "Kneeling",
  48416. image: {
  48417. source: "./media/characters/shady/kneeling.svg",
  48418. extra: 1328/1219,
  48419. bottom: 117/1445
  48420. }
  48421. },
  48422. maw: {
  48423. height: math.unit(2, "feet"),
  48424. name: "Maw",
  48425. image: {
  48426. source: "./media/characters/shady/maw.svg"
  48427. }
  48428. },
  48429. },
  48430. [
  48431. {
  48432. name: "Nano",
  48433. height: math.unit(1, "mm")
  48434. },
  48435. {
  48436. name: "Micro",
  48437. height: math.unit(12, "mm")
  48438. },
  48439. {
  48440. name: "Tiny",
  48441. height: math.unit(3, "inches")
  48442. },
  48443. {
  48444. name: "Normal",
  48445. height: math.unit(6 + 2/12, "feet"),
  48446. default: true
  48447. },
  48448. {
  48449. name: "Big",
  48450. height: math.unit(15, "feet")
  48451. },
  48452. {
  48453. name: "Macro",
  48454. height: math.unit(150, "feet")
  48455. },
  48456. {
  48457. name: "Titanic",
  48458. height: math.unit(500, "feet")
  48459. },
  48460. ]
  48461. ))
  48462. characterMakers.push(() => makeCharacter(
  48463. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48464. {
  48465. front: {
  48466. height: math.unit(12, "feet"),
  48467. name: "Front",
  48468. image: {
  48469. source: "./media/characters/fenrir/front.svg",
  48470. extra: 968/875,
  48471. bottom: 22/990
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Big",
  48478. height: math.unit(12, "feet"),
  48479. default: true
  48480. },
  48481. ]
  48482. ))
  48483. characterMakers.push(() => makeCharacter(
  48484. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48485. {
  48486. front: {
  48487. height: math.unit(5 + 4/12, "feet"),
  48488. name: "Front",
  48489. image: {
  48490. source: "./media/characters/makar/front.svg",
  48491. extra: 1181/1112,
  48492. bottom: 78/1259
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(5 + 4/12, "feet"),
  48500. default: true
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48506. {
  48507. front: {
  48508. height: math.unit(5 + 7/12, "feet"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/callow/front.svg",
  48512. extra: 1482/1304,
  48513. bottom: 23/1505
  48514. }
  48515. },
  48516. back: {
  48517. height: math.unit(5 + 7/12, "feet"),
  48518. name: "Back",
  48519. image: {
  48520. source: "./media/characters/callow/back.svg",
  48521. extra: 1484/1296,
  48522. bottom: 25/1509
  48523. }
  48524. },
  48525. },
  48526. [
  48527. {
  48528. name: "Micro",
  48529. height: math.unit(3, "inches"),
  48530. default: true
  48531. },
  48532. {
  48533. name: "Normal",
  48534. height: math.unit(5 + 7/12, "feet")
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(6 + 2/12, "feet"),
  48543. name: "Front",
  48544. image: {
  48545. source: "./media/characters/natel/front.svg",
  48546. extra: 1833/1692,
  48547. bottom: 166/1999
  48548. }
  48549. },
  48550. },
  48551. [
  48552. {
  48553. name: "Normal",
  48554. height: math.unit(6 + 2/12, "feet"),
  48555. default: true
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48561. {
  48562. front: {
  48563. height: math.unit(1.75, "meters"),
  48564. name: "Front",
  48565. image: {
  48566. source: "./media/characters/misu/front.svg",
  48567. extra: 1690/1558,
  48568. bottom: 234/1924
  48569. }
  48570. },
  48571. back: {
  48572. height: math.unit(1.75, "meters"),
  48573. name: "Back",
  48574. image: {
  48575. source: "./media/characters/misu/back.svg",
  48576. extra: 1762/1618,
  48577. bottom: 146/1908
  48578. }
  48579. },
  48580. frontNude: {
  48581. height: math.unit(1.75, "meters"),
  48582. name: "Front (Nude)",
  48583. image: {
  48584. source: "./media/characters/misu/front-nude.svg",
  48585. extra: 1690/1558,
  48586. bottom: 234/1924
  48587. }
  48588. },
  48589. backNude: {
  48590. height: math.unit(1.75, "meters"),
  48591. name: "Back (Nude)",
  48592. image: {
  48593. source: "./media/characters/misu/back-nude.svg",
  48594. extra: 1762/1618,
  48595. bottom: 146/1908
  48596. }
  48597. },
  48598. frontErect: {
  48599. height: math.unit(1.75, "meters"),
  48600. name: "Front (Erect)",
  48601. image: {
  48602. source: "./media/characters/misu/front-erect.svg",
  48603. extra: 1690/1558,
  48604. bottom: 234/1924
  48605. }
  48606. },
  48607. maw: {
  48608. height: math.unit(0.47, "meters"),
  48609. name: "Maw",
  48610. image: {
  48611. source: "./media/characters/misu/maw.svg"
  48612. }
  48613. },
  48614. head: {
  48615. height: math.unit(0.35, "meters"),
  48616. name: "Head",
  48617. image: {
  48618. source: "./media/characters/misu/head.svg"
  48619. }
  48620. },
  48621. rear: {
  48622. height: math.unit(0.47, "meters"),
  48623. name: "Rear",
  48624. image: {
  48625. source: "./media/characters/misu/rear.svg"
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(1.75, "meters")
  48633. },
  48634. {
  48635. name: "Not good for the people",
  48636. height: math.unit(42, "meters")
  48637. },
  48638. {
  48639. name: "Not good for the neighborhood",
  48640. height: math.unit(135, "meters")
  48641. },
  48642. {
  48643. name: "Bit bigger problem",
  48644. height: math.unit(380, "meters"),
  48645. default: true
  48646. },
  48647. {
  48648. name: "Not good for the city",
  48649. height: math.unit(1.5, "km")
  48650. },
  48651. {
  48652. name: "Not good for the county",
  48653. height: math.unit(5.5, "km")
  48654. },
  48655. {
  48656. name: "Not good for the state",
  48657. height: math.unit(25, "km")
  48658. },
  48659. {
  48660. name: "Not good for the country",
  48661. height: math.unit(125, "km")
  48662. },
  48663. {
  48664. name: "Not good for the continent",
  48665. height: math.unit(2100, "km")
  48666. },
  48667. {
  48668. name: "Not good for the planet",
  48669. height: math.unit(35000, "km")
  48670. },
  48671. {
  48672. name: "Just no",
  48673. height: math.unit(8.5e18, "km")
  48674. },
  48675. ]
  48676. ))
  48677. characterMakers.push(() => makeCharacter(
  48678. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48679. {
  48680. front: {
  48681. height: math.unit(6.5, "feet"),
  48682. name: "Front",
  48683. image: {
  48684. source: "./media/characters/poppy/front.svg",
  48685. extra: 1878/1812,
  48686. bottom: 43/1921
  48687. }
  48688. },
  48689. feet: {
  48690. height: math.unit(1.06, "feet"),
  48691. name: "Feet",
  48692. image: {
  48693. source: "./media/characters/poppy/feet.svg",
  48694. extra: 1083/1083,
  48695. bottom: 87/1170
  48696. }
  48697. },
  48698. },
  48699. [
  48700. {
  48701. name: "Human",
  48702. height: math.unit(6.5, "feet")
  48703. },
  48704. {
  48705. name: "Default",
  48706. height: math.unit(300, "feet"),
  48707. default: true
  48708. },
  48709. {
  48710. name: "Huge",
  48711. height: math.unit(850, "feet")
  48712. },
  48713. {
  48714. name: "Mega",
  48715. height: math.unit(8000, "feet")
  48716. },
  48717. {
  48718. name: "Giga",
  48719. height: math.unit(300, "miles")
  48720. },
  48721. ]
  48722. ))
  48723. characterMakers.push(() => makeCharacter(
  48724. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48725. {
  48726. bipedal: {
  48727. height: math.unit(7, "feet"),
  48728. name: "Bipedal",
  48729. image: {
  48730. source: "./media/characters/zener/bipedal.svg",
  48731. extra: 874/805,
  48732. bottom: 109/983
  48733. }
  48734. },
  48735. quadrupedal: {
  48736. height: math.unit(4.64, "feet"),
  48737. name: "Quadrupedal",
  48738. image: {
  48739. source: "./media/characters/zener/quadrupedal.svg",
  48740. extra: 638/507,
  48741. bottom: 190/828
  48742. }
  48743. },
  48744. cock: {
  48745. height: math.unit(18, "inches"),
  48746. name: "Cock",
  48747. image: {
  48748. source: "./media/characters/zener/cock.svg"
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(7, "feet"),
  48756. default: true
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48762. {
  48763. nude: {
  48764. height: math.unit(5 + 6/12, "feet"),
  48765. name: "Nude",
  48766. image: {
  48767. source: "./media/characters/charlie-dog/nude.svg",
  48768. extra: 768/734,
  48769. bottom: 26/794
  48770. }
  48771. },
  48772. dressed: {
  48773. height: math.unit(5 + 6/12, "feet"),
  48774. name: "Dressed",
  48775. image: {
  48776. source: "./media/characters/charlie-dog/dressed.svg",
  48777. extra: 768/734,
  48778. bottom: 26/794
  48779. }
  48780. },
  48781. },
  48782. [
  48783. {
  48784. name: "Normal",
  48785. height: math.unit(5 + 6/12, "feet"),
  48786. default: true
  48787. },
  48788. ]
  48789. ))
  48790. characterMakers.push(() => makeCharacter(
  48791. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48792. {
  48793. front: {
  48794. height: math.unit(6 + 4/12, "feet"),
  48795. name: "Front",
  48796. image: {
  48797. source: "./media/characters/ir'istrasz/front.svg",
  48798. extra: 1014/977,
  48799. bottom: 65/1079
  48800. }
  48801. },
  48802. back: {
  48803. height: math.unit(6 + 4/12, "feet"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/ir'istrasz/back.svg",
  48807. extra: 1024/992,
  48808. bottom: 34/1058
  48809. }
  48810. },
  48811. },
  48812. [
  48813. {
  48814. name: "Normal",
  48815. height: math.unit(6 + 4/12, "feet"),
  48816. default: true
  48817. },
  48818. ]
  48819. ))
  48820. characterMakers.push(() => makeCharacter(
  48821. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48822. {
  48823. front: {
  48824. height: math.unit(5 + 8/12, "feet"),
  48825. name: "Front",
  48826. image: {
  48827. source: "./media/characters/dee-ditto/front.svg",
  48828. extra: 1874/1785,
  48829. bottom: 68/1942
  48830. }
  48831. },
  48832. back: {
  48833. height: math.unit(5 + 8/12, "feet"),
  48834. name: "Back",
  48835. image: {
  48836. source: "./media/characters/dee-ditto/back.svg",
  48837. extra: 1870/1783,
  48838. bottom: 77/1947
  48839. }
  48840. },
  48841. },
  48842. [
  48843. {
  48844. name: "Normal",
  48845. height: math.unit(5 + 8/12, "feet"),
  48846. default: true
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(7 + 6/12, "feet"),
  48855. name: "Front",
  48856. image: {
  48857. source: "./media/characters/fey/front.svg",
  48858. extra: 995/979,
  48859. bottom: 30/1025
  48860. }
  48861. },
  48862. back: {
  48863. height: math.unit(7 + 6/12, "feet"),
  48864. name: "Back",
  48865. image: {
  48866. source: "./media/characters/fey/back.svg",
  48867. extra: 1079/1008,
  48868. bottom: 5/1084
  48869. }
  48870. },
  48871. dressed: {
  48872. height: math.unit(7 + 6/12, "feet"),
  48873. name: "Dressed",
  48874. image: {
  48875. source: "./media/characters/fey/dressed.svg",
  48876. extra: 995/979,
  48877. bottom: 30/1025
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Normal",
  48884. height: math.unit(7 + 6/12, "feet"),
  48885. default: true
  48886. },
  48887. ]
  48888. ))
  48889. characterMakers.push(() => makeCharacter(
  48890. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48891. {
  48892. standing: {
  48893. height: math.unit(17, "feet"),
  48894. name: "Standing",
  48895. image: {
  48896. source: "./media/characters/aster/standing.svg",
  48897. extra: 1798/1598,
  48898. bottom: 117/1915
  48899. }
  48900. },
  48901. },
  48902. [
  48903. {
  48904. name: "Normal",
  48905. height: math.unit(17, "feet"),
  48906. default: true
  48907. },
  48908. {
  48909. name: "Homewrecker",
  48910. height: math.unit(95, "feet")
  48911. },
  48912. {
  48913. name: "Planet Devourer",
  48914. height: math.unit(1008000, "miles")
  48915. },
  48916. ]
  48917. ))
  48918. characterMakers.push(() => makeCharacter(
  48919. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48920. {
  48921. front: {
  48922. height: math.unit(6 + 5/12, "feet"),
  48923. weight: math.unit(265, "lb"),
  48924. name: "Front",
  48925. image: {
  48926. source: "./media/characters/devon-childs/front.svg",
  48927. extra: 1795/1721,
  48928. bottom: 41/1836
  48929. }
  48930. },
  48931. side: {
  48932. height: math.unit(6 + 5/12, "feet"),
  48933. weight: math.unit(265, "lb"),
  48934. name: "Side",
  48935. image: {
  48936. source: "./media/characters/devon-childs/side.svg",
  48937. extra: 1812/1738,
  48938. bottom: 30/1842
  48939. }
  48940. },
  48941. back: {
  48942. height: math.unit(6 + 5/12, "feet"),
  48943. weight: math.unit(265, "lb"),
  48944. name: "Back",
  48945. image: {
  48946. source: "./media/characters/devon-childs/back.svg",
  48947. extra: 1808/1735,
  48948. bottom: 23/1831
  48949. }
  48950. },
  48951. hand: {
  48952. height: math.unit(1.464, "feet"),
  48953. name: "Hand",
  48954. image: {
  48955. source: "./media/characters/devon-childs/hand.svg"
  48956. }
  48957. },
  48958. foot: {
  48959. height: math.unit(1.6, "feet"),
  48960. name: "Foot",
  48961. image: {
  48962. source: "./media/characters/devon-childs/foot.svg"
  48963. }
  48964. },
  48965. },
  48966. [
  48967. {
  48968. name: "Micro",
  48969. height: math.unit(7, "cm")
  48970. },
  48971. {
  48972. name: "Normal",
  48973. height: math.unit(6 + 5/12, "feet"),
  48974. default: true
  48975. },
  48976. {
  48977. name: "Macro",
  48978. height: math.unit(154, "feet")
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48984. {
  48985. front: {
  48986. height: math.unit(6, "feet"),
  48987. weight: math.unit(180, "lb"),
  48988. name: "Front",
  48989. image: {
  48990. source: "./media/characters/lydemox-vir/front.svg",
  48991. extra: 1632/1435,
  48992. bottom: 58/1690
  48993. }
  48994. },
  48995. frontSFW: {
  48996. height: math.unit(6, "feet"),
  48997. weight: math.unit(180, "lb"),
  48998. name: "Front (SFW)",
  48999. image: {
  49000. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49001. extra: 1632/1435,
  49002. bottom: 58/1690
  49003. }
  49004. },
  49005. back: {
  49006. height: math.unit(6, "feet"),
  49007. weight: math.unit(180, "lb"),
  49008. name: "Back",
  49009. image: {
  49010. source: "./media/characters/lydemox-vir/back.svg",
  49011. extra: 1593/1408,
  49012. bottom: 31/1624
  49013. }
  49014. },
  49015. paw: {
  49016. height: math.unit(1.85, "feet"),
  49017. name: "Paw",
  49018. image: {
  49019. source: "./media/characters/lydemox-vir/paw.svg"
  49020. }
  49021. },
  49022. dick: {
  49023. height: math.unit(1.8, "feet"),
  49024. name: "Dick",
  49025. image: {
  49026. source: "./media/characters/lydemox-vir/dick.svg"
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Macro",
  49033. height: math.unit(100, "feet"),
  49034. default: true
  49035. },
  49036. {
  49037. name: "Teramacro",
  49038. height: math.unit(1, "earth")
  49039. },
  49040. {
  49041. name: "Planetary",
  49042. height: math.unit(20, "earths")
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49048. {
  49049. front: {
  49050. height: math.unit(15 + 8/12, "feet"),
  49051. weight: math.unit(1237, "kg"),
  49052. name: "Front",
  49053. image: {
  49054. source: "./media/characters/mia/front.svg",
  49055. extra: 1573/1446,
  49056. bottom: 58/1631
  49057. }
  49058. },
  49059. },
  49060. [
  49061. {
  49062. name: "Small",
  49063. height: math.unit(9 + 5/12, "feet")
  49064. },
  49065. {
  49066. name: "Normal",
  49067. height: math.unit(15 + 8/12, "feet"),
  49068. default: true
  49069. },
  49070. ]
  49071. ))
  49072. characterMakers.push(() => makeCharacter(
  49073. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49074. {
  49075. front: {
  49076. height: math.unit(10 + 6/12, "feet"),
  49077. weight: math.unit(1.3, "tons"),
  49078. name: "Front",
  49079. image: {
  49080. source: "./media/characters/mr-graves/front.svg",
  49081. extra: 1779/1695,
  49082. bottom: 198/1977
  49083. }
  49084. },
  49085. },
  49086. [
  49087. {
  49088. name: "Normal",
  49089. height: math.unit(10 + 6 /12, "feet"),
  49090. default: true
  49091. },
  49092. ]
  49093. ))
  49094. characterMakers.push(() => makeCharacter(
  49095. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49096. {
  49097. dressedFront: {
  49098. height: math.unit(5 + 8/12, "feet"),
  49099. weight: math.unit(125, "lb"),
  49100. name: "Dressed (Front)",
  49101. image: {
  49102. source: "./media/characters/jess/dressed-front.svg",
  49103. extra: 1176/1152,
  49104. bottom: 42/1218
  49105. }
  49106. },
  49107. dressedSide: {
  49108. height: math.unit(5 + 8/12, "feet"),
  49109. weight: math.unit(125, "lb"),
  49110. name: "Dressed (Side)",
  49111. image: {
  49112. source: "./media/characters/jess/dressed-side.svg",
  49113. extra: 1204/1190,
  49114. bottom: 6/1210
  49115. }
  49116. },
  49117. nudeFront: {
  49118. height: math.unit(5 + 8/12, "feet"),
  49119. weight: math.unit(125, "lb"),
  49120. name: "Nude (Front)",
  49121. image: {
  49122. source: "./media/characters/jess/nude-front.svg",
  49123. extra: 1176/1152,
  49124. bottom: 42/1218
  49125. }
  49126. },
  49127. nudeSide: {
  49128. height: math.unit(5 + 8/12, "feet"),
  49129. weight: math.unit(125, "lb"),
  49130. name: "Nude (Side)",
  49131. image: {
  49132. source: "./media/characters/jess/nude-side.svg",
  49133. extra: 1204/1190,
  49134. bottom: 6/1210
  49135. }
  49136. },
  49137. organsFront: {
  49138. height: math.unit(2.83799342105, "feet"),
  49139. name: "Organs (Front)",
  49140. image: {
  49141. source: "./media/characters/jess/organs-front.svg"
  49142. }
  49143. },
  49144. organsSide: {
  49145. height: math.unit(2.64225290474, "feet"),
  49146. name: "Organs (Side)",
  49147. image: {
  49148. source: "./media/characters/jess/organs-side.svg"
  49149. }
  49150. },
  49151. digestiveTractFront: {
  49152. height: math.unit(2.8106580871, "feet"),
  49153. name: "Digestive Tract (Front)",
  49154. image: {
  49155. source: "./media/characters/jess/digestive-tract-front.svg"
  49156. }
  49157. },
  49158. digestiveTractSide: {
  49159. height: math.unit(2.54365045014, "feet"),
  49160. name: "Digestive Tract (Side)",
  49161. image: {
  49162. source: "./media/characters/jess/digestive-tract-side.svg"
  49163. }
  49164. },
  49165. respiratorySystemFront: {
  49166. height: math.unit(1.11196233456, "feet"),
  49167. name: "Respiratory System (Front)",
  49168. image: {
  49169. source: "./media/characters/jess/respiratory-system-front.svg"
  49170. }
  49171. },
  49172. respiratorySystemSide: {
  49173. height: math.unit(0.89327966297, "feet"),
  49174. name: "Respiratory System (Side)",
  49175. image: {
  49176. source: "./media/characters/jess/respiratory-system-side.svg"
  49177. }
  49178. },
  49179. urinaryTractFront: {
  49180. height: math.unit(1.16126356186, "feet"),
  49181. name: "Urinary Tract (Front)",
  49182. image: {
  49183. source: "./media/characters/jess/urinary-tract-front.svg"
  49184. }
  49185. },
  49186. urinaryTractSide: {
  49187. height: math.unit(1.20910039627, "feet"),
  49188. name: "Urinary Tract (Side)",
  49189. image: {
  49190. source: "./media/characters/jess/urinary-tract-side.svg"
  49191. }
  49192. },
  49193. reproductiveOrgansFront: {
  49194. height: math.unit(0.48422591566, "feet"),
  49195. name: "Reproductive Organs (Front)",
  49196. image: {
  49197. source: "./media/characters/jess/reproductive-organs-front.svg"
  49198. }
  49199. },
  49200. reproductiveOrgansSide: {
  49201. height: math.unit(0.61553314481, "feet"),
  49202. name: "Reproductive Organs (Side)",
  49203. image: {
  49204. source: "./media/characters/jess/reproductive-organs-side.svg"
  49205. }
  49206. },
  49207. breastsFront: {
  49208. height: math.unit(0.47690395121, "feet"),
  49209. name: "Breasts (Front)",
  49210. image: {
  49211. source: "./media/characters/jess/breasts-front.svg"
  49212. }
  49213. },
  49214. breastsSide: {
  49215. height: math.unit(0.30556998307, "feet"),
  49216. name: "Breasts (Side)",
  49217. image: {
  49218. source: "./media/characters/jess/breasts-side.svg"
  49219. }
  49220. },
  49221. heartFront: {
  49222. height: math.unit(0.53011022622, "feet"),
  49223. name: "Heart (Front)",
  49224. image: {
  49225. source: "./media/characters/jess/heart-front.svg"
  49226. }
  49227. },
  49228. heartSide: {
  49229. height: math.unit(0.51790695213, "feet"),
  49230. name: "Heart (Side)",
  49231. image: {
  49232. source: "./media/characters/jess/heart-side.svg"
  49233. }
  49234. },
  49235. earsAndNoseFront: {
  49236. height: math.unit(0.29385483995, "feet"),
  49237. name: "Ears and Nose (Front)",
  49238. image: {
  49239. source: "./media/characters/jess/ears-and-nose-front.svg"
  49240. }
  49241. },
  49242. earsAndNoseSide: {
  49243. height: math.unit(0.18109658741, "feet"),
  49244. name: "Ears and Nose (Side)",
  49245. image: {
  49246. source: "./media/characters/jess/ears-and-nose-side.svg"
  49247. }
  49248. },
  49249. },
  49250. [
  49251. {
  49252. name: "Normal",
  49253. height: math.unit(5 + 8/12, "feet"),
  49254. default: true
  49255. },
  49256. ]
  49257. ))
  49258. characterMakers.push(() => makeCharacter(
  49259. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49260. {
  49261. front: {
  49262. height: math.unit(6, "feet"),
  49263. weight: math.unit(6.64467e-7, "grams"),
  49264. name: "Front",
  49265. image: {
  49266. source: "./media/characters/wimpering/front.svg",
  49267. extra: 597/587,
  49268. bottom: 34/631
  49269. }
  49270. },
  49271. },
  49272. [
  49273. {
  49274. name: "Micro",
  49275. height: math.unit(0.4, "mm"),
  49276. default: true
  49277. },
  49278. ]
  49279. ))
  49280. characterMakers.push(() => makeCharacter(
  49281. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49282. {
  49283. front: {
  49284. height: math.unit(5 + 2/12, "feet"),
  49285. weight: math.unit(110, "lb"),
  49286. name: "Front",
  49287. image: {
  49288. source: "./media/characters/keltre/front.svg",
  49289. extra: 1099/1057,
  49290. bottom: 22/1121
  49291. }
  49292. },
  49293. back: {
  49294. height: math.unit(5 + 2/12, "feet"),
  49295. weight: math.unit(110, "lb"),
  49296. name: "Back",
  49297. image: {
  49298. source: "./media/characters/keltre/back.svg",
  49299. extra: 1095/1053,
  49300. bottom: 17/1112
  49301. }
  49302. },
  49303. dressed: {
  49304. height: math.unit(5 + 2/12, "feet"),
  49305. weight: math.unit(110, "lb"),
  49306. name: "Dressed",
  49307. image: {
  49308. source: "./media/characters/keltre/dressed.svg",
  49309. extra: 1099/1057,
  49310. bottom: 22/1121
  49311. }
  49312. },
  49313. winter: {
  49314. height: math.unit(5 + 2/12, "feet"),
  49315. weight: math.unit(110, "lb"),
  49316. name: "Winter",
  49317. image: {
  49318. source: "./media/characters/keltre/winter.svg",
  49319. extra: 1099/1057,
  49320. bottom: 22/1121
  49321. }
  49322. },
  49323. head: {
  49324. height: math.unit(1.61 * 0.86, "feet"),
  49325. name: "Head",
  49326. image: {
  49327. source: "./media/characters/keltre/head.svg",
  49328. extra: 534/421,
  49329. bottom: 0/534
  49330. }
  49331. },
  49332. hand: {
  49333. height: math.unit(1.3 * 0.86, "feet"),
  49334. name: "Hand",
  49335. image: {
  49336. source: "./media/characters/keltre/hand.svg"
  49337. }
  49338. },
  49339. foot: {
  49340. height: math.unit(1.8 * 0.86, "feet"),
  49341. name: "Foot",
  49342. image: {
  49343. source: "./media/characters/keltre/foot.svg"
  49344. }
  49345. },
  49346. },
  49347. [
  49348. {
  49349. name: "Fine",
  49350. height: math.unit(1, "inch")
  49351. },
  49352. {
  49353. name: "Dimnutive",
  49354. height: math.unit(4, "inches")
  49355. },
  49356. {
  49357. name: "Tiny",
  49358. height: math.unit(1, "foot")
  49359. },
  49360. {
  49361. name: "Small",
  49362. height: math.unit(3, "feet")
  49363. },
  49364. {
  49365. name: "Normal",
  49366. height: math.unit(5 + 2/12, "feet"),
  49367. default: true
  49368. },
  49369. ]
  49370. ))
  49371. characterMakers.push(() => makeCharacter(
  49372. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49373. {
  49374. front: {
  49375. height: math.unit(6 + 2/12, "feet"),
  49376. name: "Front",
  49377. image: {
  49378. source: "./media/characters/nox/front.svg",
  49379. extra: 1917/1830,
  49380. bottom: 74/1991
  49381. }
  49382. },
  49383. back: {
  49384. height: math.unit(6 + 2/12, "feet"),
  49385. name: "Back",
  49386. image: {
  49387. source: "./media/characters/nox/back.svg",
  49388. extra: 1896/1815,
  49389. bottom: 21/1917
  49390. }
  49391. },
  49392. head: {
  49393. height: math.unit(1.1, "feet"),
  49394. name: "Head",
  49395. image: {
  49396. source: "./media/characters/nox/head.svg",
  49397. extra: 874/704,
  49398. bottom: 0/874
  49399. }
  49400. },
  49401. tattoo: {
  49402. height: math.unit(0.729, "feet"),
  49403. name: "Tattoo",
  49404. image: {
  49405. source: "./media/characters/nox/tattoo.svg"
  49406. }
  49407. },
  49408. },
  49409. [
  49410. {
  49411. name: "Normal",
  49412. height: math.unit(6 + 2/12, "feet")
  49413. },
  49414. {
  49415. name: "Gigamacro",
  49416. height: math.unit(2, "earths"),
  49417. default: true
  49418. },
  49419. {
  49420. name: "Cosmic",
  49421. height: math.unit(867, "yottameters")
  49422. },
  49423. ]
  49424. ))
  49425. characterMakers.push(() => makeCharacter(
  49426. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49427. {
  49428. front: {
  49429. height: math.unit(6, "feet"),
  49430. weight: math.unit(150, "lb"),
  49431. name: "Front",
  49432. image: {
  49433. source: "./media/characters/caspian/front.svg",
  49434. extra: 1443/1359,
  49435. bottom: 0/1443
  49436. }
  49437. },
  49438. back: {
  49439. height: math.unit(6, "feet"),
  49440. weight: math.unit(150, "lb"),
  49441. name: "Back",
  49442. image: {
  49443. source: "./media/characters/caspian/back.svg",
  49444. extra: 1379/1309,
  49445. bottom: 0/1379
  49446. }
  49447. },
  49448. head: {
  49449. height: math.unit(0.9, "feet"),
  49450. name: "Head",
  49451. image: {
  49452. source: "./media/characters/caspian/head.svg",
  49453. extra: 692/492,
  49454. bottom: 0/692
  49455. }
  49456. },
  49457. headAlt: {
  49458. height: math.unit(0.95, "feet"),
  49459. name: "Head (Alt)",
  49460. image: {
  49461. source: "./media/characters/caspian/head-alt.svg",
  49462. extra: 668/508,
  49463. bottom: 0/668
  49464. }
  49465. },
  49466. hand: {
  49467. height: math.unit(0.8, "feet"),
  49468. name: "Hand",
  49469. image: {
  49470. source: "./media/characters/caspian/hand.svg"
  49471. }
  49472. },
  49473. paw: {
  49474. height: math.unit(0.95, "feet"),
  49475. name: "Paw",
  49476. image: {
  49477. source: "./media/characters/caspian/paw.svg"
  49478. }
  49479. },
  49480. },
  49481. [
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(162, "feet"),
  49485. default: true
  49486. },
  49487. ]
  49488. ))
  49489. characterMakers.push(() => makeCharacter(
  49490. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49491. {
  49492. front: {
  49493. height: math.unit(6, "feet"),
  49494. name: "Front",
  49495. image: {
  49496. source: "./media/characters/myra-aisling/front.svg",
  49497. extra: 1268/1166,
  49498. bottom: 73/1341
  49499. }
  49500. },
  49501. back: {
  49502. height: math.unit(6, "feet"),
  49503. name: "Back",
  49504. image: {
  49505. source: "./media/characters/myra-aisling/back.svg",
  49506. extra: 1249/1149,
  49507. bottom: 79/1328
  49508. }
  49509. },
  49510. dressed: {
  49511. height: math.unit(6, "feet"),
  49512. name: "Dressed",
  49513. image: {
  49514. source: "./media/characters/myra-aisling/dressed.svg",
  49515. extra: 1290/1189,
  49516. bottom: 47/1337
  49517. }
  49518. },
  49519. hand: {
  49520. height: math.unit(1.1, "feet"),
  49521. name: "Hand",
  49522. image: {
  49523. source: "./media/characters/myra-aisling/hand.svg"
  49524. }
  49525. },
  49526. paw: {
  49527. height: math.unit(1.23, "feet"),
  49528. name: "Paw",
  49529. image: {
  49530. source: "./media/characters/myra-aisling/paw.svg"
  49531. }
  49532. },
  49533. },
  49534. [
  49535. {
  49536. name: "Normal",
  49537. height: math.unit(160, "feet"),
  49538. default: true
  49539. },
  49540. ]
  49541. ))
  49542. characterMakers.push(() => makeCharacter(
  49543. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49544. {
  49545. front: {
  49546. height: math.unit(6, "feet"),
  49547. name: "Front",
  49548. image: {
  49549. source: "./media/characters/tenley-sidero/front.svg",
  49550. extra: 1365/1276,
  49551. bottom: 47/1412
  49552. }
  49553. },
  49554. back: {
  49555. height: math.unit(6, "feet"),
  49556. name: "Back",
  49557. image: {
  49558. source: "./media/characters/tenley-sidero/back.svg",
  49559. extra: 1383/1283,
  49560. bottom: 35/1418
  49561. }
  49562. },
  49563. dressed: {
  49564. height: math.unit(6, "feet"),
  49565. name: "Dressed",
  49566. image: {
  49567. source: "./media/characters/tenley-sidero/dressed.svg",
  49568. extra: 1364/1275,
  49569. bottom: 42/1406
  49570. }
  49571. },
  49572. head: {
  49573. height: math.unit(1.47, "feet"),
  49574. name: "Head",
  49575. image: {
  49576. source: "./media/characters/tenley-sidero/head.svg",
  49577. extra: 610/490,
  49578. bottom: 0/610
  49579. }
  49580. },
  49581. },
  49582. [
  49583. {
  49584. name: "Normal",
  49585. height: math.unit(154, "feet"),
  49586. default: true
  49587. },
  49588. ]
  49589. ))
  49590. characterMakers.push(() => makeCharacter(
  49591. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49592. {
  49593. front: {
  49594. height: math.unit(5, "inches"),
  49595. name: "Front",
  49596. image: {
  49597. source: "./media/characters/mallory/front.svg",
  49598. extra: 1919/1678,
  49599. bottom: 29/1948
  49600. }
  49601. },
  49602. hand: {
  49603. height: math.unit(0.73, "inches"),
  49604. name: "Hand",
  49605. image: {
  49606. source: "./media/characters/mallory/hand.svg"
  49607. }
  49608. },
  49609. paw: {
  49610. height: math.unit(0.68, "inches"),
  49611. name: "Paw",
  49612. image: {
  49613. source: "./media/characters/mallory/paw.svg"
  49614. }
  49615. },
  49616. },
  49617. [
  49618. {
  49619. name: "Small",
  49620. height: math.unit(5, "inches"),
  49621. default: true
  49622. },
  49623. ]
  49624. ))
  49625. characterMakers.push(() => makeCharacter(
  49626. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49627. {
  49628. naked: {
  49629. height: math.unit(6, "feet"),
  49630. name: "Naked",
  49631. image: {
  49632. source: "./media/characters/mab/naked.svg",
  49633. extra: 1855/1757,
  49634. bottom: 208/2063
  49635. }
  49636. },
  49637. outside: {
  49638. height: math.unit(6, "feet"),
  49639. name: "Outside",
  49640. image: {
  49641. source: "./media/characters/mab/outside.svg",
  49642. extra: 1855/1757,
  49643. bottom: 208/2063
  49644. }
  49645. },
  49646. party: {
  49647. height: math.unit(6, "feet"),
  49648. name: "Party",
  49649. image: {
  49650. source: "./media/characters/mab/party.svg",
  49651. extra: 1855/1757,
  49652. bottom: 208/2063
  49653. }
  49654. },
  49655. },
  49656. [
  49657. {
  49658. name: "Normal",
  49659. height: math.unit(165, "feet"),
  49660. default: true
  49661. },
  49662. ]
  49663. ))
  49664. characterMakers.push(() => makeCharacter(
  49665. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49666. {
  49667. feral: {
  49668. height: math.unit(12, "feet"),
  49669. weight: math.unit(20000, "lb"),
  49670. name: "Side",
  49671. image: {
  49672. source: "./media/characters/winter/feral.svg",
  49673. extra: 1286/943,
  49674. bottom: 112/1398
  49675. },
  49676. form: "feral",
  49677. default: true
  49678. },
  49679. feralNsfw: {
  49680. height: math.unit(12, "feet"),
  49681. weight: math.unit(20000, "lb"),
  49682. name: "Side (NSFW)",
  49683. image: {
  49684. source: "./media/characters/winter/feral-nsfw.svg",
  49685. extra: 1286/943,
  49686. bottom: 112/1398
  49687. },
  49688. form: "feral"
  49689. },
  49690. dick: {
  49691. height: math.unit(3.79, "feet"),
  49692. name: "Dick",
  49693. image: {
  49694. source: "./media/characters/winter/dick.svg"
  49695. },
  49696. form: "feral"
  49697. },
  49698. anthro: {
  49699. height: math.unit(12, "feet"),
  49700. weight: math.unit(10, "tons"),
  49701. name: "Anthro",
  49702. image: {
  49703. source: "./media/characters/winter/anthro.svg",
  49704. extra: 1701/1553,
  49705. bottom: 64/1765
  49706. },
  49707. form: "anthro",
  49708. default: true
  49709. },
  49710. },
  49711. [
  49712. {
  49713. name: "Big",
  49714. height: math.unit(12, "feet"),
  49715. default: true,
  49716. form: "feral"
  49717. },
  49718. {
  49719. name: "Big",
  49720. height: math.unit(12, "feet"),
  49721. default: true,
  49722. form: "anthro"
  49723. },
  49724. ],
  49725. {
  49726. "feral": {
  49727. name: "Feral",
  49728. default: true
  49729. },
  49730. "anthro": {
  49731. name: "Anthro"
  49732. }
  49733. }
  49734. ))
  49735. characterMakers.push(() => makeCharacter(
  49736. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49737. {
  49738. front: {
  49739. height: math.unit(4.1, "inches"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/alto/front.svg",
  49743. extra: 736/627,
  49744. bottom: 90/826
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Normal",
  49751. height: math.unit(4.1, "inches"),
  49752. default: true
  49753. },
  49754. ]
  49755. ))
  49756. characterMakers.push(() => makeCharacter(
  49757. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49758. {
  49759. sitting: {
  49760. height: math.unit(3, "feet"),
  49761. name: "Sitting",
  49762. image: {
  49763. source: "./media/characters/ratstrid-v/sitting.svg",
  49764. extra: 355/310,
  49765. bottom: 136/491
  49766. }
  49767. },
  49768. },
  49769. [
  49770. {
  49771. name: "Normal",
  49772. height: math.unit(3, "feet"),
  49773. default: true
  49774. },
  49775. ]
  49776. ))
  49777. characterMakers.push(() => makeCharacter(
  49778. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49779. {
  49780. back: {
  49781. height: math.unit(6, "feet"),
  49782. weight: math.unit(350, "lb"),
  49783. name: "Back",
  49784. image: {
  49785. source: "./media/characters/siz/back.svg",
  49786. extra: 1449/1274,
  49787. bottom: 13/1462
  49788. }
  49789. },
  49790. },
  49791. [
  49792. {
  49793. name: "Over-Overcompressed",
  49794. height: math.unit(8, "feet")
  49795. },
  49796. {
  49797. name: "Overcompressed",
  49798. height: math.unit(32, "feet")
  49799. },
  49800. {
  49801. name: "Compressed",
  49802. height: math.unit(128, "feet"),
  49803. default: true
  49804. },
  49805. {
  49806. name: "Half-Compressed",
  49807. height: math.unit(512, "feet")
  49808. },
  49809. {
  49810. name: "Quarter-Compressed",
  49811. height: math.unit(2048, "feet")
  49812. },
  49813. {
  49814. name: "Uncompressed?",
  49815. height: math.unit(8192, "feet")
  49816. },
  49817. ]
  49818. ))
  49819. characterMakers.push(() => makeCharacter(
  49820. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49821. {
  49822. front: {
  49823. height: math.unit(5 + 9/12, "feet"),
  49824. weight: math.unit(150, "lb"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/ven/front.svg",
  49828. extra: 1372/1320,
  49829. bottom: 73/1445
  49830. }
  49831. },
  49832. side: {
  49833. height: math.unit(5 + 9/12, "feet"),
  49834. weight: math.unit(1150, "lb"),
  49835. name: "Side",
  49836. image: {
  49837. source: "./media/characters/ven/side.svg",
  49838. extra: 1119/1070,
  49839. bottom: 42/1161
  49840. },
  49841. default: true
  49842. },
  49843. },
  49844. [
  49845. {
  49846. name: "Normal",
  49847. height: math.unit(5 + 9/12, "feet"),
  49848. default: true
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49854. {
  49855. front: {
  49856. height: math.unit(12, "feet"),
  49857. weight: math.unit(1000, "kg"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/maple/front.svg",
  49861. extra: 1193/1081,
  49862. bottom: 22/1215
  49863. }
  49864. },
  49865. },
  49866. [
  49867. {
  49868. name: "Compressed",
  49869. height: math.unit(7, "feet")
  49870. },
  49871. {
  49872. name: "Normal",
  49873. height: math.unit(12, "feet"),
  49874. default: true
  49875. },
  49876. ]
  49877. ))
  49878. characterMakers.push(() => makeCharacter(
  49879. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49880. {
  49881. front: {
  49882. height: math.unit(9, "feet"),
  49883. weight: math.unit(1500, "lb"),
  49884. name: "Front",
  49885. image: {
  49886. source: "./media/characters/nora/front.svg",
  49887. extra: 1348/1286,
  49888. bottom: 218/1566
  49889. }
  49890. },
  49891. erect: {
  49892. height: math.unit(9, "feet"),
  49893. weight: math.unit(11500, "lb"),
  49894. name: "Erect",
  49895. image: {
  49896. source: "./media/characters/nora/erect.svg",
  49897. extra: 1488/1433,
  49898. bottom: 133/1621
  49899. }
  49900. },
  49901. },
  49902. [
  49903. {
  49904. name: "Normal",
  49905. height: math.unit(9, "feet"),
  49906. default: true
  49907. },
  49908. ]
  49909. ))
  49910. characterMakers.push(() => makeCharacter(
  49911. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49912. {
  49913. front: {
  49914. height: math.unit(25, "feet"),
  49915. weight: math.unit(27500, "lb"),
  49916. name: "Front",
  49917. image: {
  49918. source: "./media/characters/north-caudin/front.svg",
  49919. extra: 1184/1082,
  49920. bottom: 23/1207
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Compressed",
  49927. height: math.unit(10, "feet")
  49928. },
  49929. {
  49930. name: "Normal",
  49931. height: math.unit(25, "feet"),
  49932. default: true
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49938. {
  49939. front: {
  49940. height: math.unit(9, "feet"),
  49941. weight: math.unit(1250, "lb"),
  49942. name: "Front",
  49943. image: {
  49944. source: "./media/characters/merrian/front.svg",
  49945. extra: 2393/2304,
  49946. bottom: 40/2433
  49947. }
  49948. },
  49949. },
  49950. [
  49951. {
  49952. name: "Normal",
  49953. height: math.unit(9, "feet"),
  49954. default: true
  49955. },
  49956. ]
  49957. ))
  49958. characterMakers.push(() => makeCharacter(
  49959. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49960. {
  49961. front: {
  49962. height: math.unit(9, "feet"),
  49963. weight: math.unit(1000, "lb"),
  49964. name: "Front",
  49965. image: {
  49966. source: "./media/characters/hazel/front.svg",
  49967. extra: 2351/2298,
  49968. bottom: 38/2389
  49969. }
  49970. },
  49971. },
  49972. [
  49973. {
  49974. name: "Normal",
  49975. height: math.unit(9, "feet"),
  49976. default: true
  49977. },
  49978. ]
  49979. ))
  49980. characterMakers.push(() => makeCharacter(
  49981. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49982. {
  49983. front: {
  49984. height: math.unit(13, "feet"),
  49985. weight: math.unit(3200, "lb"),
  49986. name: "Front",
  49987. image: {
  49988. source: "./media/characters/emma/front.svg",
  49989. extra: 2263/2029,
  49990. bottom: 68/2331
  49991. }
  49992. },
  49993. },
  49994. [
  49995. {
  49996. name: "Normal",
  49997. height: math.unit(13, "feet"),
  49998. default: true
  49999. },
  50000. ]
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50004. {
  50005. front: {
  50006. height: math.unit(11 + 9/12, "feet"),
  50007. weight: math.unit(2500, "lb"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/ilumina/front.svg",
  50011. extra: 2248/2209,
  50012. bottom: 164/2412
  50013. }
  50014. },
  50015. },
  50016. [
  50017. {
  50018. name: "Normal",
  50019. height: math.unit(11 + 9/12, "feet"),
  50020. default: true
  50021. },
  50022. ]
  50023. ))
  50024. characterMakers.push(() => makeCharacter(
  50025. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50026. {
  50027. front: {
  50028. height: math.unit(8 + 10/12, "feet"),
  50029. weight: math.unit(1350, "lb"),
  50030. name: "Front",
  50031. image: {
  50032. source: "./media/characters/moonshine/front.svg",
  50033. extra: 2395/2288,
  50034. bottom: 40/2435
  50035. }
  50036. },
  50037. },
  50038. [
  50039. {
  50040. name: "Normal",
  50041. height: math.unit(8 + 10/12, "feet"),
  50042. default: true
  50043. },
  50044. ]
  50045. ))
  50046. characterMakers.push(() => makeCharacter(
  50047. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50048. {
  50049. front: {
  50050. height: math.unit(14, "feet"),
  50051. weight: math.unit(3400, "lb"),
  50052. name: "Front",
  50053. image: {
  50054. source: "./media/characters/aletia/front.svg",
  50055. extra: 1185/1052,
  50056. bottom: 21/1206
  50057. }
  50058. },
  50059. },
  50060. [
  50061. {
  50062. name: "Compressed",
  50063. height: math.unit(8, "feet")
  50064. },
  50065. {
  50066. name: "Normal",
  50067. height: math.unit(14, "feet"),
  50068. default: true
  50069. },
  50070. ]
  50071. ))
  50072. characterMakers.push(() => makeCharacter(
  50073. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50074. {
  50075. front: {
  50076. height: math.unit(17, "feet"),
  50077. weight: math.unit(6500, "lb"),
  50078. name: "Front",
  50079. image: {
  50080. source: "./media/characters/deidra/front.svg",
  50081. extra: 1201/1081,
  50082. bottom: 16/1217
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Compressed",
  50089. height: math.unit(9 + 6/12, "feet")
  50090. },
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(17, "feet"),
  50094. default: true
  50095. },
  50096. ]
  50097. ))
  50098. characterMakers.push(() => makeCharacter(
  50099. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50100. {
  50101. front: {
  50102. height: math.unit(7 + 4/12, "feet"),
  50103. weight: math.unit(280, "lb"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/freki-yrmori/front.svg",
  50107. extra: 1286/1182,
  50108. bottom: 29/1315
  50109. }
  50110. },
  50111. maw: {
  50112. height: math.unit(0.9, "feet"),
  50113. name: "Maw",
  50114. image: {
  50115. source: "./media/characters/freki-yrmori/maw.svg"
  50116. }
  50117. },
  50118. },
  50119. [
  50120. {
  50121. name: "Normal",
  50122. height: math.unit(7 + 4/12, "feet"),
  50123. default: true
  50124. },
  50125. {
  50126. name: "Macro",
  50127. height: math.unit(38.5, "meters")
  50128. },
  50129. ]
  50130. ))
  50131. characterMakers.push(() => makeCharacter(
  50132. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50133. {
  50134. side: {
  50135. height: math.unit(47.2, "meters"),
  50136. weight: math.unit(10000, "tons"),
  50137. name: "Side",
  50138. image: {
  50139. source: "./media/characters/aetherios/side.svg",
  50140. extra: 2363/642,
  50141. bottom: 221/2584
  50142. }
  50143. },
  50144. top: {
  50145. height: math.unit(240, "meters"),
  50146. weight: math.unit(10000, "tons"),
  50147. name: "Top",
  50148. image: {
  50149. source: "./media/characters/aetherios/top.svg"
  50150. }
  50151. },
  50152. bottom: {
  50153. height: math.unit(240, "meters"),
  50154. weight: math.unit(10000, "tons"),
  50155. name: "Bottom",
  50156. image: {
  50157. source: "./media/characters/aetherios/bottom.svg"
  50158. }
  50159. },
  50160. head: {
  50161. height: math.unit(38.6, "meters"),
  50162. name: "Head",
  50163. image: {
  50164. source: "./media/characters/aetherios/head.svg",
  50165. extra: 1335/1112,
  50166. bottom: 0/1335
  50167. }
  50168. },
  50169. front: {
  50170. height: math.unit(29, "meters"),
  50171. name: "Front",
  50172. image: {
  50173. source: "./media/characters/aetherios/front.svg",
  50174. extra: 1266/953,
  50175. bottom: 158/1424
  50176. }
  50177. },
  50178. maw: {
  50179. height: math.unit(16.37, "meters"),
  50180. name: "Maw",
  50181. image: {
  50182. source: "./media/characters/aetherios/maw.svg",
  50183. extra: 748/637,
  50184. bottom: 0/748
  50185. },
  50186. extraAttributes: {
  50187. preyCapacity: {
  50188. name: "Capacity",
  50189. power: 3,
  50190. type: "volume",
  50191. base: math.unit(1000, "people")
  50192. },
  50193. tongueSize: {
  50194. name: "Tongue Size",
  50195. power: 2,
  50196. type: "area",
  50197. base: math.unit(21, "m^2")
  50198. }
  50199. }
  50200. },
  50201. forepaw: {
  50202. height: math.unit(18, "meters"),
  50203. name: "Forepaw",
  50204. image: {
  50205. source: "./media/characters/aetherios/forepaw.svg"
  50206. }
  50207. },
  50208. hindpaw: {
  50209. height: math.unit(23, "meters"),
  50210. name: "Hindpaw",
  50211. image: {
  50212. source: "./media/characters/aetherios/hindpaw.svg"
  50213. }
  50214. },
  50215. genitals: {
  50216. height: math.unit(42, "meters"),
  50217. name: "Genitals",
  50218. image: {
  50219. source: "./media/characters/aetherios/genitals.svg"
  50220. }
  50221. },
  50222. },
  50223. [
  50224. {
  50225. name: "Normal",
  50226. height: math.unit(47.2, "meters"),
  50227. default: true
  50228. },
  50229. {
  50230. name: "Macro",
  50231. height: math.unit(160, "meters")
  50232. },
  50233. {
  50234. name: "Mega",
  50235. height: math.unit(1.87, "km")
  50236. },
  50237. {
  50238. name: "Giga",
  50239. height: math.unit(40000, "km")
  50240. },
  50241. {
  50242. name: "Stellar",
  50243. height: math.unit(158000000, "km")
  50244. },
  50245. {
  50246. name: "Cosmic",
  50247. height: math.unit(9.46e12, "km")
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(5 + 4/12, "feet"),
  50256. weight: math.unit(80, "lb"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/mizu-gieeg/front.svg",
  50260. extra: 850/709,
  50261. bottom: 52/902
  50262. }
  50263. },
  50264. back: {
  50265. height: math.unit(5 + 4/12, "feet"),
  50266. weight: math.unit(80, "lb"),
  50267. name: "Back",
  50268. image: {
  50269. source: "./media/characters/mizu-gieeg/back.svg",
  50270. extra: 882/745,
  50271. bottom: 25/907
  50272. }
  50273. },
  50274. },
  50275. [
  50276. {
  50277. name: "Normal",
  50278. height: math.unit(5 + 4/12, "feet"),
  50279. default: true
  50280. },
  50281. ]
  50282. ))
  50283. characterMakers.push(() => makeCharacter(
  50284. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50285. {
  50286. front: {
  50287. height: math.unit(6, "feet"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/roselle-st-papier/front.svg",
  50291. extra: 1430/1280,
  50292. bottom: 37/1467
  50293. }
  50294. },
  50295. back: {
  50296. height: math.unit(6, "feet"),
  50297. name: "Back",
  50298. image: {
  50299. source: "./media/characters/roselle-st-papier/back.svg",
  50300. extra: 1491/1296,
  50301. bottom: 23/1514
  50302. }
  50303. },
  50304. ear: {
  50305. height: math.unit(1.26, "feet"),
  50306. name: "Ear",
  50307. image: {
  50308. source: "./media/characters/roselle-st-papier/ear.svg"
  50309. }
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Normal",
  50315. height: math.unit(150, "feet"),
  50316. default: true
  50317. },
  50318. ]
  50319. ))
  50320. characterMakers.push(() => makeCharacter(
  50321. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50322. {
  50323. front: {
  50324. height: math.unit(1, "inches"),
  50325. name: "Front",
  50326. image: {
  50327. source: "./media/characters/valargent/front.svg",
  50328. extra: 1825/1694,
  50329. bottom: 62/1887
  50330. }
  50331. },
  50332. back: {
  50333. height: math.unit(1, "inches"),
  50334. name: "Back",
  50335. image: {
  50336. source: "./media/characters/valargent/back.svg",
  50337. extra: 1775/1682,
  50338. bottom: 88/1863
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Micro",
  50345. height: math.unit(1, "inch"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50352. {
  50353. front: {
  50354. height: math.unit(3.4, "meters"),
  50355. name: "Front",
  50356. image: {
  50357. source: "./media/characters/zarina/front.svg",
  50358. extra: 1733/1425,
  50359. bottom: 93/1826
  50360. }
  50361. },
  50362. squatting: {
  50363. height: math.unit(2.14, "meters"),
  50364. name: "Squatting",
  50365. image: {
  50366. source: "./media/characters/zarina/squatting.svg",
  50367. extra: 1073/788,
  50368. bottom: 63/1136
  50369. }
  50370. },
  50371. back: {
  50372. height: math.unit(2.14, "meters"),
  50373. name: "Back",
  50374. image: {
  50375. source: "./media/characters/zarina/back.svg",
  50376. extra: 1128/885,
  50377. bottom: 0/1128
  50378. }
  50379. },
  50380. },
  50381. [
  50382. {
  50383. name: "Normal",
  50384. height: math.unit(3.4, "meters"),
  50385. default: true
  50386. },
  50387. {
  50388. name: "Big",
  50389. height: math.unit(5, "meters")
  50390. },
  50391. {
  50392. name: "Macro",
  50393. height: math.unit(110, "meters")
  50394. },
  50395. ]
  50396. ))
  50397. characterMakers.push(() => makeCharacter(
  50398. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50399. {
  50400. front: {
  50401. height: math.unit(7, "feet"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/ventus-astro-fox/front.svg",
  50405. extra: 1792/1623,
  50406. bottom: 28/1820
  50407. }
  50408. },
  50409. back: {
  50410. height: math.unit(7, "feet"),
  50411. name: "Back",
  50412. image: {
  50413. source: "./media/characters/ventus-astro-fox/back.svg",
  50414. extra: 1789/1620,
  50415. bottom: 31/1820
  50416. }
  50417. },
  50418. outfit: {
  50419. height: math.unit(7, "feet"),
  50420. name: "Outfit",
  50421. image: {
  50422. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50423. extra: 1054/925,
  50424. bottom: 15/1069
  50425. }
  50426. },
  50427. head: {
  50428. height: math.unit(1.12, "feet"),
  50429. name: "Head",
  50430. image: {
  50431. source: "./media/characters/ventus-astro-fox/head.svg",
  50432. extra: 866/504,
  50433. bottom: 0/866
  50434. }
  50435. },
  50436. hand: {
  50437. height: math.unit(1, "feet"),
  50438. name: "Hand",
  50439. image: {
  50440. source: "./media/characters/ventus-astro-fox/hand.svg"
  50441. }
  50442. },
  50443. paw: {
  50444. height: math.unit(1.5, "feet"),
  50445. name: "Paw",
  50446. image: {
  50447. source: "./media/characters/ventus-astro-fox/paw.svg"
  50448. }
  50449. },
  50450. },
  50451. [
  50452. {
  50453. name: "Normal",
  50454. height: math.unit(7, "feet"),
  50455. default: true
  50456. },
  50457. {
  50458. name: "Macro",
  50459. height: math.unit(200, "feet")
  50460. },
  50461. {
  50462. name: "Cosmic",
  50463. height: math.unit(3, "universes")
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(3, "meters"),
  50472. weight: math.unit(7000, "lb"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/core-t/front.svg",
  50476. extra: 5729/4941,
  50477. bottom: 1129/6858
  50478. }
  50479. },
  50480. },
  50481. [
  50482. {
  50483. name: "Big",
  50484. height: math.unit(3, "meters"),
  50485. default: true
  50486. },
  50487. ]
  50488. ))
  50489. characterMakers.push(() => makeCharacter(
  50490. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50491. {
  50492. normal: {
  50493. height: math.unit(6 + 6/12, "feet"),
  50494. weight: math.unit(275, "lb"),
  50495. name: "Front",
  50496. image: {
  50497. source: "./media/characters/cadbunny/normal.svg",
  50498. extra: 1129/947,
  50499. bottom: 93/1222
  50500. },
  50501. default: true,
  50502. form: "normal"
  50503. },
  50504. gigantamax: {
  50505. height: math.unit(26, "feet"),
  50506. weight: math.unit(16000, "lb"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/cadbunny/gigantamax.svg",
  50510. extra: 1133/944,
  50511. bottom: 90/1223
  50512. },
  50513. default: true,
  50514. form: "gigantamax"
  50515. },
  50516. },
  50517. [
  50518. {
  50519. name: "Normal",
  50520. height: math.unit(6 + 6/12, "feet"),
  50521. default: true,
  50522. form: "normal"
  50523. },
  50524. {
  50525. name: "Small",
  50526. height: math.unit(26, "feet"),
  50527. default: true,
  50528. form: "gigantamax"
  50529. },
  50530. {
  50531. name: "Large",
  50532. height: math.unit(78, "feet"),
  50533. form: "gigantamax"
  50534. },
  50535. ],
  50536. {
  50537. "normal": {
  50538. name: "Normal",
  50539. default: true
  50540. },
  50541. "gigantamax": {
  50542. name: "Gigantamax"
  50543. }
  50544. }
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50548. {
  50549. anthroFront: {
  50550. height: math.unit(8, "feet"),
  50551. weight: math.unit(300, "lb"),
  50552. name: "Front",
  50553. image: {
  50554. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50555. extra: 1272/1176,
  50556. bottom: 53/1325
  50557. },
  50558. form: "anthro",
  50559. default: true
  50560. },
  50561. feralSide: {
  50562. height: math.unit(4, "feet"),
  50563. weight: math.unit(250, "lb"),
  50564. name: "Side",
  50565. image: {
  50566. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50567. extra: 731/621,
  50568. bottom: 0/731
  50569. },
  50570. form: "feral",
  50571. default: true
  50572. },
  50573. },
  50574. [
  50575. {
  50576. name: "Regular",
  50577. height: math.unit(8, "feet"),
  50578. form: "anthro"
  50579. },
  50580. {
  50581. name: "Macro",
  50582. height: math.unit(250, "feet"),
  50583. form: "anthro",
  50584. default: true
  50585. },
  50586. {
  50587. name: "Regular",
  50588. height: math.unit(4, "feet"),
  50589. form: "feral"
  50590. },
  50591. {
  50592. name: "Macro",
  50593. height: math.unit(125, "feet"),
  50594. form: "feral",
  50595. default: true
  50596. },
  50597. ],
  50598. {
  50599. "anthro": {
  50600. name: "Anthro",
  50601. default: true
  50602. },
  50603. "feral": {
  50604. name: "Feral",
  50605. },
  50606. }
  50607. ))
  50608. characterMakers.push(() => makeCharacter(
  50609. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50610. {
  50611. front: {
  50612. height: math.unit(11 + 10/12, "feet"),
  50613. weight: math.unit(1587, "kg"),
  50614. name: "Front",
  50615. image: {
  50616. source: "./media/characters/maple-javira-dragon/front.svg",
  50617. extra: 1136/744,
  50618. bottom: 73/1209
  50619. }
  50620. },
  50621. side: {
  50622. height: math.unit(11 + 10/12, "feet"),
  50623. weight: math.unit(1587, "kg"),
  50624. name: "Side",
  50625. image: {
  50626. source: "./media/characters/maple-javira-dragon/side.svg",
  50627. extra: 712/505,
  50628. bottom: 17/729
  50629. }
  50630. },
  50631. head: {
  50632. height: math.unit(8.05, "feet"),
  50633. name: "Head",
  50634. image: {
  50635. source: "./media/characters/maple-javira-dragon/head.svg",
  50636. extra: 1420/1344,
  50637. bottom: 0/1420
  50638. }
  50639. },
  50640. },
  50641. [
  50642. {
  50643. name: "Normal",
  50644. height: math.unit(11 + 10/12, "feet"),
  50645. default: true
  50646. },
  50647. ]
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(117, "cm"),
  50654. weight: math.unit(50, "kg"),
  50655. name: "Front",
  50656. image: {
  50657. source: "./media/characters/sonia-wyverntail/front.svg",
  50658. extra: 708/592,
  50659. bottom: 25/733
  50660. }
  50661. },
  50662. },
  50663. [
  50664. {
  50665. name: "Normal",
  50666. height: math.unit(117, "cm"),
  50667. default: true
  50668. },
  50669. ]
  50670. ))
  50671. characterMakers.push(() => makeCharacter(
  50672. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50673. {
  50674. front: {
  50675. height: math.unit(6 + 5/12, "feet"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/micah/front.svg",
  50679. extra: 1758/1546,
  50680. bottom: 214/1972
  50681. }
  50682. },
  50683. },
  50684. [
  50685. {
  50686. name: "Normal",
  50687. height: math.unit(6 + 5/12, "feet"),
  50688. default: true
  50689. },
  50690. ]
  50691. ))
  50692. characterMakers.push(() => makeCharacter(
  50693. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50694. {
  50695. front: {
  50696. height: math.unit(5 + 10/12, "feet"),
  50697. weight: math.unit(220, "lb"),
  50698. name: "Front",
  50699. image: {
  50700. source: "./media/characters/zarya/front.svg",
  50701. extra: 593/572,
  50702. bottom: 50/643
  50703. }
  50704. },
  50705. back: {
  50706. height: math.unit(5 + 10/12, "feet"),
  50707. weight: math.unit(220, "lb"),
  50708. name: "Back",
  50709. image: {
  50710. source: "./media/characters/zarya/back.svg",
  50711. extra: 603/582,
  50712. bottom: 38/641
  50713. }
  50714. },
  50715. },
  50716. [
  50717. {
  50718. name: "Normal",
  50719. height: math.unit(5 + 10/12, "feet"),
  50720. default: true
  50721. },
  50722. ]
  50723. ))
  50724. characterMakers.push(() => makeCharacter(
  50725. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50726. {
  50727. front: {
  50728. height: math.unit(7.5, "feet"),
  50729. name: "Front",
  50730. image: {
  50731. source: "./media/characters/sven-hatisson/front.svg",
  50732. extra: 917/857,
  50733. bottom: 42/959
  50734. }
  50735. },
  50736. back: {
  50737. height: math.unit(7.5, "feet"),
  50738. name: "Back",
  50739. image: {
  50740. source: "./media/characters/sven-hatisson/back.svg",
  50741. extra: 903/856,
  50742. bottom: 15/918
  50743. }
  50744. },
  50745. },
  50746. [
  50747. {
  50748. name: "Base Height",
  50749. height: math.unit(7.5, "feet")
  50750. },
  50751. {
  50752. name: "Usual Height",
  50753. height: math.unit(13.5, "feet"),
  50754. default: true
  50755. },
  50756. {
  50757. name: "Smaller Macro",
  50758. height: math.unit(85, "feet")
  50759. },
  50760. {
  50761. name: "Moderate Macro",
  50762. height: math.unit(320, "feet")
  50763. },
  50764. {
  50765. name: "Large Macro",
  50766. height: math.unit(1000, "feet")
  50767. },
  50768. {
  50769. name: "Largest Size",
  50770. height: math.unit(2, "miles")
  50771. },
  50772. ]
  50773. ))
  50774. characterMakers.push(() => makeCharacter(
  50775. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50776. {
  50777. side: {
  50778. height: math.unit(1.8, "meters"),
  50779. weight: math.unit(275, "kg"),
  50780. name: "Side",
  50781. image: {
  50782. source: "./media/characters/terra/side.svg",
  50783. extra: 1273/1147,
  50784. bottom: 0/1273
  50785. }
  50786. },
  50787. },
  50788. [
  50789. {
  50790. name: "Normal",
  50791. height: math.unit(16.2, "meters"),
  50792. default: true
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50798. {
  50799. borzoiFront: {
  50800. height: math.unit(6 + 9/12, "feet"),
  50801. name: "Front",
  50802. image: {
  50803. source: "./media/characters/rae/borzoi-front.svg",
  50804. extra: 1161/1098,
  50805. bottom: 31/1192
  50806. },
  50807. form: "borzoi",
  50808. default: true
  50809. },
  50810. werewolfFront: {
  50811. height: math.unit(8 + 7/12, "feet"),
  50812. name: "Front",
  50813. image: {
  50814. source: "./media/characters/rae/werewolf-front.svg",
  50815. extra: 1411/1334,
  50816. bottom: 127/1538
  50817. },
  50818. form: "werewolf",
  50819. default: true
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Normal",
  50825. height: math.unit(6 + 9/12, "feet"),
  50826. default: true,
  50827. form: "borzoi"
  50828. },
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(8 + 7/12, "feet"),
  50832. default: true,
  50833. form: "werewolf"
  50834. },
  50835. ],
  50836. {
  50837. "borzoi": {
  50838. name: "Borzoi",
  50839. default: true
  50840. },
  50841. "werewolf": {
  50842. name: "Werewolf",
  50843. },
  50844. }
  50845. ))
  50846. characterMakers.push(() => makeCharacter(
  50847. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50848. {
  50849. front: {
  50850. height: math.unit(8 + 7/12, "feet"),
  50851. weight: math.unit(482, "lb"),
  50852. name: "Front",
  50853. image: {
  50854. source: "./media/characters/kit/front.svg",
  50855. extra: 1247/1103,
  50856. bottom: 41/1288
  50857. }
  50858. },
  50859. back: {
  50860. height: math.unit(8 + 7/12, "feet"),
  50861. weight: math.unit(482, "lb"),
  50862. name: "Back",
  50863. image: {
  50864. source: "./media/characters/kit/back.svg",
  50865. extra: 1252/1123,
  50866. bottom: 21/1273
  50867. }
  50868. },
  50869. paw: {
  50870. height: math.unit(1.46, "feet"),
  50871. name: "Paw",
  50872. image: {
  50873. source: "./media/characters/kit/paw.svg"
  50874. }
  50875. },
  50876. },
  50877. [
  50878. {
  50879. name: "Normal",
  50880. height: math.unit(2.61, "meters"),
  50881. default: true
  50882. },
  50883. {
  50884. name: "\"Tall\"",
  50885. height: math.unit(8.21, "meters")
  50886. },
  50887. {
  50888. name: "Tall",
  50889. height: math.unit(19.6, "meters")
  50890. },
  50891. {
  50892. name: "Very Tall",
  50893. height: math.unit(57.91, "meters")
  50894. },
  50895. {
  50896. name: "Semi-Macro",
  50897. height: math.unit(138.64, "meters")
  50898. },
  50899. {
  50900. name: "Macro",
  50901. height: math.unit(831.99, "meters")
  50902. },
  50903. {
  50904. name: "EX-Macro",
  50905. height: math.unit(96451121, "meters")
  50906. },
  50907. {
  50908. name: "S1-Omnipotent",
  50909. height: math.unit(4.42074e+9, "meters")
  50910. },
  50911. {
  50912. name: "S2-Omnipotent",
  50913. height: math.unit(9.42074e+17, "meters")
  50914. },
  50915. {
  50916. name: "Omnipotent",
  50917. height: math.unit(4.23112e+24, "meters")
  50918. },
  50919. {
  50920. name: "Hypergod",
  50921. height: math.unit(5.05176e+27, "meters")
  50922. },
  50923. {
  50924. name: "Hypergod-EX",
  50925. height: math.unit(9.45532e+49, "meters")
  50926. },
  50927. {
  50928. name: "Hypergod-SP",
  50929. height: math.unit(9.45532e+195, "meters")
  50930. },
  50931. ]
  50932. ))
  50933. characterMakers.push(() => makeCharacter(
  50934. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50935. {
  50936. side: {
  50937. height: math.unit(0.6, "meters"),
  50938. weight: math.unit(24, "kg"),
  50939. name: "Side",
  50940. image: {
  50941. source: "./media/characters/celeste/side.svg",
  50942. extra: 810/517,
  50943. bottom: 53/863
  50944. }
  50945. },
  50946. },
  50947. [
  50948. {
  50949. name: "Velociraptor",
  50950. height: math.unit(0.6, "meters"),
  50951. default: true
  50952. },
  50953. {
  50954. name: "Utahraptor",
  50955. height: math.unit(1.8, "meters")
  50956. },
  50957. {
  50958. name: "Gallimimus",
  50959. height: math.unit(4.0, "meters")
  50960. },
  50961. {
  50962. name: "Large",
  50963. height: math.unit(20, "meters")
  50964. },
  50965. {
  50966. name: "Planetary",
  50967. height: math.unit(50, "megameters")
  50968. },
  50969. {
  50970. name: "Stellar",
  50971. height: math.unit(1.5, "gigameters")
  50972. },
  50973. {
  50974. name: "Galactic",
  50975. height: math.unit(100, "exameters")
  50976. },
  50977. ]
  50978. ))
  50979. characterMakers.push(() => makeCharacter(
  50980. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50981. {
  50982. front: {
  50983. height: math.unit(6, "feet"),
  50984. weight: math.unit(210, "lb"),
  50985. name: "Front",
  50986. image: {
  50987. source: "./media/characters/glacia/front.svg",
  50988. extra: 958/901,
  50989. bottom: 45/1003
  50990. }
  50991. },
  50992. },
  50993. [
  50994. {
  50995. name: "Macro",
  50996. height: math.unit(1000, "meters"),
  50997. default: true
  50998. },
  50999. ]
  51000. ))
  51001. characterMakers.push(() => makeCharacter(
  51002. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51003. {
  51004. front: {
  51005. height: math.unit(4, "meters"),
  51006. name: "Front",
  51007. image: {
  51008. source: "./media/characters/giri/front.svg",
  51009. extra: 966/894,
  51010. bottom: 21/987
  51011. }
  51012. },
  51013. },
  51014. [
  51015. {
  51016. name: "Normal",
  51017. height: math.unit(4, "meters"),
  51018. default: true
  51019. },
  51020. ]
  51021. ))
  51022. characterMakers.push(() => makeCharacter(
  51023. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51024. {
  51025. back: {
  51026. height: math.unit(4, "feet"),
  51027. weight: math.unit(37, "lb"),
  51028. name: "Back",
  51029. image: {
  51030. source: "./media/characters/tin/back.svg",
  51031. extra: 845/780,
  51032. bottom: 28/873
  51033. }
  51034. },
  51035. },
  51036. [
  51037. {
  51038. name: "Normal",
  51039. height: math.unit(4, "feet"),
  51040. default: true
  51041. },
  51042. ]
  51043. ))
  51044. characterMakers.push(() => makeCharacter(
  51045. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51046. {
  51047. front: {
  51048. height: math.unit(25, "feet"),
  51049. name: "Front",
  51050. image: {
  51051. source: "./media/characters/cadenza-vivace/front.svg",
  51052. extra: 1842/1578,
  51053. bottom: 30/1872
  51054. }
  51055. },
  51056. },
  51057. [
  51058. {
  51059. name: "Macro",
  51060. height: math.unit(25, "feet"),
  51061. default: true
  51062. },
  51063. ]
  51064. ))
  51065. characterMakers.push(() => makeCharacter(
  51066. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51067. {
  51068. front: {
  51069. height: math.unit(10, "feet"),
  51070. weight: math.unit(625, "kg"),
  51071. name: "Front",
  51072. image: {
  51073. source: "./media/characters/zain/front.svg",
  51074. extra: 1682/1498,
  51075. bottom: 223/1905
  51076. }
  51077. },
  51078. back: {
  51079. height: math.unit(10, "feet"),
  51080. weight: math.unit(625, "kg"),
  51081. name: "Back",
  51082. image: {
  51083. source: "./media/characters/zain/back.svg",
  51084. extra: 1814/1657,
  51085. bottom: 152/1966
  51086. }
  51087. },
  51088. head: {
  51089. height: math.unit(10, "feet"),
  51090. weight: math.unit(625, "kg"),
  51091. name: "Head",
  51092. image: {
  51093. source: "./media/characters/zain/head.svg",
  51094. extra: 1059/762,
  51095. bottom: 0/1059
  51096. }
  51097. },
  51098. },
  51099. [
  51100. {
  51101. name: "Normal",
  51102. height: math.unit(10, "feet"),
  51103. default: true
  51104. },
  51105. ]
  51106. ))
  51107. characterMakers.push(() => makeCharacter(
  51108. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51109. {
  51110. front: {
  51111. height: math.unit(6 + 5/12, "feet"),
  51112. weight: math.unit(750, "lb"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/ruchex/front.svg",
  51116. extra: 877/820,
  51117. bottom: 17/894
  51118. },
  51119. extraAttributes: {
  51120. "width": {
  51121. name: "Width",
  51122. power: 1,
  51123. type: "length",
  51124. base: math.unit(4.757, "feet")
  51125. },
  51126. }
  51127. },
  51128. },
  51129. [
  51130. {
  51131. name: "Normal",
  51132. height: math.unit(6 + 5/12, "feet"),
  51133. default: true
  51134. },
  51135. ]
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51139. {
  51140. dressedFront: {
  51141. height: math.unit(191, "cm"),
  51142. weight: math.unit(80, "kg"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/buster/dressed-front.svg",
  51146. extra: 1022/973,
  51147. bottom: 69/1091
  51148. }
  51149. },
  51150. dressedBack: {
  51151. height: math.unit(191, "cm"),
  51152. weight: math.unit(80, "kg"),
  51153. name: "Back",
  51154. image: {
  51155. source: "./media/characters/buster/dressed-back.svg",
  51156. extra: 1018/970,
  51157. bottom: 55/1073
  51158. }
  51159. },
  51160. nudeFront: {
  51161. height: math.unit(191, "cm"),
  51162. weight: math.unit(80, "kg"),
  51163. name: "Front (Nude)",
  51164. image: {
  51165. source: "./media/characters/buster/nude-front.svg",
  51166. extra: 1022/973,
  51167. bottom: 69/1091
  51168. }
  51169. },
  51170. nudeBack: {
  51171. height: math.unit(191, "cm"),
  51172. weight: math.unit(80, "kg"),
  51173. name: "Back (Nude)",
  51174. image: {
  51175. source: "./media/characters/buster/nude-back.svg",
  51176. extra: 1018/970,
  51177. bottom: 55/1073
  51178. }
  51179. },
  51180. dick: {
  51181. height: math.unit(2.59, "feet"),
  51182. name: "Dick",
  51183. image: {
  51184. source: "./media/characters/buster/dick.svg"
  51185. }
  51186. },
  51187. ass: {
  51188. height: math.unit(1.2, "feet"),
  51189. name: "Ass",
  51190. image: {
  51191. source: "./media/characters/buster/ass.svg"
  51192. }
  51193. },
  51194. },
  51195. [
  51196. {
  51197. name: "Normal",
  51198. height: math.unit(191, "cm"),
  51199. default: true
  51200. },
  51201. ]
  51202. ))
  51203. characterMakers.push(() => makeCharacter(
  51204. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51205. {
  51206. side: {
  51207. height: math.unit(8.1, "feet"),
  51208. weight: math.unit(3500, "lb"),
  51209. name: "Side",
  51210. image: {
  51211. source: "./media/characters/sonya/side.svg",
  51212. extra: 1730/1317,
  51213. bottom: 86/1816
  51214. }
  51215. },
  51216. },
  51217. [
  51218. {
  51219. name: "Normal",
  51220. height: math.unit(8.1, "feet"),
  51221. default: true
  51222. },
  51223. ]
  51224. ))
  51225. characterMakers.push(() => makeCharacter(
  51226. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51227. {
  51228. front: {
  51229. height: math.unit(6, "feet"),
  51230. weight: math.unit(150, "lb"),
  51231. name: "Front",
  51232. image: {
  51233. source: "./media/characters/cadence-andrysiak/front.svg",
  51234. extra: 1164/1121,
  51235. bottom: 60/1224
  51236. }
  51237. },
  51238. back: {
  51239. height: math.unit(6, "feet"),
  51240. weight: math.unit(150, "lb"),
  51241. name: "Back",
  51242. image: {
  51243. source: "./media/characters/cadence-andrysiak/back.svg",
  51244. extra: 1200/1165,
  51245. bottom: 9/1209
  51246. }
  51247. },
  51248. dressed: {
  51249. height: math.unit(6, "feet"),
  51250. weight: math.unit(150, "lb"),
  51251. name: "Dressed",
  51252. image: {
  51253. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51254. extra: 1164/1121,
  51255. bottom: 60/1224
  51256. }
  51257. },
  51258. },
  51259. [
  51260. {
  51261. name: "Micro",
  51262. height: math.unit(1, "mm")
  51263. },
  51264. {
  51265. name: "Normal",
  51266. height: math.unit(6, "feet"),
  51267. default: true
  51268. },
  51269. ]
  51270. ))
  51271. characterMakers.push(() => makeCharacter(
  51272. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51273. {
  51274. front: {
  51275. height: math.unit(60, "inches"),
  51276. weight: math.unit(16, "lb"),
  51277. preyCapacity: math.unit(80, "liters"),
  51278. name: "Front",
  51279. image: {
  51280. source: "./media/characters/penny-lynx/front.svg",
  51281. extra: 1959/1769,
  51282. bottom: 49/2008
  51283. }
  51284. },
  51285. },
  51286. [
  51287. {
  51288. name: "Nokia",
  51289. height: math.unit(2, "inches")
  51290. },
  51291. {
  51292. name: "Desktop",
  51293. height: math.unit(24, "inches")
  51294. },
  51295. {
  51296. name: "TV",
  51297. height: math.unit(60, "inches")
  51298. },
  51299. {
  51300. name: "Jumbotron",
  51301. height: math.unit(12, "feet")
  51302. },
  51303. {
  51304. name: "Billboard",
  51305. height: math.unit(48, "feet"),
  51306. default: true
  51307. },
  51308. {
  51309. name: "IMAX",
  51310. height: math.unit(96, "feet")
  51311. },
  51312. {
  51313. name: "SINGULARITY",
  51314. height: math.unit(864938, "miles")
  51315. },
  51316. ]
  51317. ))
  51318. characterMakers.push(() => makeCharacter(
  51319. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51320. {
  51321. front: {
  51322. height: math.unit(5 + 4/12, "feet"),
  51323. weight: math.unit(230, "lb"),
  51324. name: "Front",
  51325. image: {
  51326. source: "./media/characters/sukebe/front.svg",
  51327. extra: 2130/2038,
  51328. bottom: 90/2220
  51329. }
  51330. },
  51331. back: {
  51332. height: math.unit(3.48, "feet"),
  51333. weight: math.unit(230, "lb"),
  51334. name: "Back",
  51335. image: {
  51336. source: "./media/characters/sukebe/back.svg",
  51337. extra: 1670/1604,
  51338. bottom: 0/1670
  51339. }
  51340. },
  51341. },
  51342. [
  51343. {
  51344. name: "Normal",
  51345. height: math.unit(5 + 4/12, "feet"),
  51346. default: true
  51347. },
  51348. ]
  51349. ))
  51350. characterMakers.push(() => makeCharacter(
  51351. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51352. {
  51353. front: {
  51354. height: math.unit(6, "feet"),
  51355. name: "Front",
  51356. image: {
  51357. source: "./media/characters/nylla/front.svg",
  51358. extra: 1868/1699,
  51359. bottom: 97/1965
  51360. }
  51361. },
  51362. back: {
  51363. height: math.unit(6, "feet"),
  51364. name: "Back",
  51365. image: {
  51366. source: "./media/characters/nylla/back.svg",
  51367. extra: 1889/1712,
  51368. bottom: 93/1982
  51369. }
  51370. },
  51371. frontNsfw: {
  51372. height: math.unit(6, "feet"),
  51373. name: "Front (NSFW)",
  51374. image: {
  51375. source: "./media/characters/nylla/front-nsfw.svg",
  51376. extra: 1868/1699,
  51377. bottom: 97/1965
  51378. },
  51379. extraAttributes: {
  51380. "dickLength": {
  51381. name: "Dick Length",
  51382. power: 1,
  51383. type: "length",
  51384. base: math.unit(1.4, "feet")
  51385. },
  51386. "cumVolume": {
  51387. name: "Cum Volume",
  51388. power: 3,
  51389. type: "volume",
  51390. base: math.unit(100, "mL")
  51391. },
  51392. }
  51393. },
  51394. backNsfw: {
  51395. height: math.unit(6, "feet"),
  51396. name: "Back (NSFW)",
  51397. image: {
  51398. source: "./media/characters/nylla/back-nsfw.svg",
  51399. extra: 1889/1712,
  51400. bottom: 93/1982
  51401. }
  51402. },
  51403. maw: {
  51404. height: math.unit(2.10, "feet"),
  51405. name: "Maw",
  51406. image: {
  51407. source: "./media/characters/nylla/maw.svg"
  51408. }
  51409. },
  51410. paws: {
  51411. height: math.unit(2.06, "feet"),
  51412. name: "Paws",
  51413. image: {
  51414. source: "./media/characters/nylla/paws.svg"
  51415. }
  51416. },
  51417. muzzle: {
  51418. height: math.unit(0.61, "feet"),
  51419. name: "Muzzle",
  51420. image: {
  51421. source: "./media/characters/nylla/muzzle.svg"
  51422. }
  51423. },
  51424. sheath: {
  51425. height: math.unit(1.305, "feet"),
  51426. name: "Sheath",
  51427. image: {
  51428. source: "./media/characters/nylla/sheath.svg"
  51429. }
  51430. },
  51431. },
  51432. [
  51433. {
  51434. name: "Micro",
  51435. height: math.unit(7.5, "inches")
  51436. },
  51437. {
  51438. name: "Normal",
  51439. height: math.unit(7, "feet"),
  51440. default: true
  51441. },
  51442. {
  51443. name: "Macro",
  51444. height: math.unit(60, "feet")
  51445. },
  51446. {
  51447. name: "Mega",
  51448. height: math.unit(200, "feet")
  51449. },
  51450. ]
  51451. ))
  51452. characterMakers.push(() => makeCharacter(
  51453. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51454. {
  51455. front: {
  51456. height: math.unit(10, "feet"),
  51457. weight: math.unit(2300, "lb"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/hunt3r/front.svg",
  51461. extra: 1909/1742,
  51462. bottom: 46/1955
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Normal",
  51469. height: math.unit(10, "feet"),
  51470. default: true
  51471. },
  51472. ]
  51473. ))
  51474. characterMakers.push(() => makeCharacter(
  51475. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51476. {
  51477. dressed: {
  51478. height: math.unit(11, "feet"),
  51479. weight: math.unit(18500, "lb"),
  51480. preyCapacity: math.unit(9, "people"),
  51481. name: "Dressed",
  51482. image: {
  51483. source: "./media/characters/cylphis/dressed.svg",
  51484. extra: 1028/1003,
  51485. bottom: 75/1103
  51486. },
  51487. },
  51488. undressed: {
  51489. height: math.unit(11, "feet"),
  51490. weight: math.unit(18500, "lb"),
  51491. preyCapacity: math.unit(9, "people"),
  51492. name: "Undressed",
  51493. image: {
  51494. source: "./media/characters/cylphis/undressed.svg",
  51495. extra: 1028/1003,
  51496. bottom: 75/1103
  51497. }
  51498. },
  51499. full: {
  51500. height: math.unit(11, "feet"),
  51501. weight: math.unit(18500 + 150*9, "lb"),
  51502. preyCapacity: math.unit(9, "people"),
  51503. name: "Full",
  51504. image: {
  51505. source: "./media/characters/cylphis/full.svg",
  51506. extra: 1028/1003,
  51507. bottom: 75/1103
  51508. }
  51509. },
  51510. },
  51511. [
  51512. {
  51513. name: "Small",
  51514. height: math.unit(8, "feet")
  51515. },
  51516. {
  51517. name: "Normal",
  51518. height: math.unit(11, "feet"),
  51519. default: true
  51520. },
  51521. ]
  51522. ))
  51523. characterMakers.push(() => makeCharacter(
  51524. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51525. {
  51526. front: {
  51527. height: math.unit(2 + 7/12, "feet"),
  51528. name: "Front",
  51529. image: {
  51530. source: "./media/characters/orishan/front.svg",
  51531. extra: 1058/1023,
  51532. bottom: 23/1081
  51533. }
  51534. },
  51535. back: {
  51536. height: math.unit(2 + 7/12, "feet"),
  51537. name: "Back",
  51538. image: {
  51539. source: "./media/characters/orishan/back.svg",
  51540. extra: 1058/1023,
  51541. bottom: 23/1081
  51542. }
  51543. },
  51544. },
  51545. [
  51546. {
  51547. name: "Micro",
  51548. height: math.unit(2, "cm")
  51549. },
  51550. {
  51551. name: "Normal",
  51552. height: math.unit(2 + 7/12, "feet"),
  51553. default: true
  51554. },
  51555. ]
  51556. ))
  51557. characterMakers.push(() => makeCharacter(
  51558. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51559. {
  51560. front: {
  51561. height: math.unit(3, "meters"),
  51562. weight: math.unit(508, "kg"),
  51563. name: "Front",
  51564. image: {
  51565. source: "./media/characters/seranis/front.svg",
  51566. extra: 1478/1454,
  51567. bottom: 41/1519
  51568. }
  51569. },
  51570. },
  51571. [
  51572. {
  51573. name: "Normal",
  51574. height: math.unit(3, "meters"),
  51575. default: true
  51576. },
  51577. {
  51578. name: "Macro",
  51579. height: math.unit(108, "meters")
  51580. },
  51581. {
  51582. name: "Megamacro",
  51583. height: math.unit(1250, "meters")
  51584. },
  51585. ]
  51586. ))
  51587. characterMakers.push(() => makeCharacter(
  51588. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51589. {
  51590. undressed: {
  51591. height: math.unit(5 + 3/12, "feet"),
  51592. name: "Undressed",
  51593. image: {
  51594. source: "./media/characters/ankou/undressed.svg",
  51595. extra: 1301/1213,
  51596. bottom: 87/1388
  51597. }
  51598. },
  51599. dressed: {
  51600. height: math.unit(5 + 3/12, "feet"),
  51601. name: "Dressed",
  51602. image: {
  51603. source: "./media/characters/ankou/dressed.svg",
  51604. extra: 1301/1213,
  51605. bottom: 87/1388
  51606. }
  51607. },
  51608. head: {
  51609. height: math.unit(1.61, "feet"),
  51610. name: "Head",
  51611. image: {
  51612. source: "./media/characters/ankou/head.svg"
  51613. }
  51614. },
  51615. },
  51616. [
  51617. {
  51618. name: "Normal",
  51619. height: math.unit(5 + 3/12, "feet"),
  51620. default: true
  51621. },
  51622. ]
  51623. ))
  51624. characterMakers.push(() => makeCharacter(
  51625. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51626. {
  51627. side: {
  51628. height: math.unit(6 + 3/12, "feet"),
  51629. weight: math.unit(200, "kg"),
  51630. name: "Side",
  51631. image: {
  51632. source: "./media/characters/juniper-skunktaur/side.svg",
  51633. extra: 1574/1229,
  51634. bottom: 38/1612
  51635. }
  51636. },
  51637. front: {
  51638. height: math.unit(6 + 3/12, "feet"),
  51639. weight: math.unit(200, "kg"),
  51640. name: "Front",
  51641. image: {
  51642. source: "./media/characters/juniper-skunktaur/front.svg",
  51643. extra: 1337/1278,
  51644. bottom: 22/1359
  51645. }
  51646. },
  51647. back: {
  51648. height: math.unit(6 + 3/12, "feet"),
  51649. weight: math.unit(200, "kg"),
  51650. name: "Back",
  51651. image: {
  51652. source: "./media/characters/juniper-skunktaur/back.svg",
  51653. extra: 1618/1273,
  51654. bottom: 13/1631
  51655. }
  51656. },
  51657. top: {
  51658. height: math.unit(2.62, "feet"),
  51659. weight: math.unit(200, "kg"),
  51660. name: "Top",
  51661. image: {
  51662. source: "./media/characters/juniper-skunktaur/top.svg"
  51663. }
  51664. },
  51665. },
  51666. [
  51667. {
  51668. name: "Normal",
  51669. height: math.unit(6 + 3/12, "feet"),
  51670. default: true
  51671. },
  51672. ]
  51673. ))
  51674. characterMakers.push(() => makeCharacter(
  51675. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51676. {
  51677. front: {
  51678. height: math.unit(20.5, "feet"),
  51679. name: "Front",
  51680. image: {
  51681. source: "./media/characters/rei/front.svg",
  51682. extra: 1349/1195,
  51683. bottom: 31/1380
  51684. }
  51685. },
  51686. back: {
  51687. height: math.unit(20.5, "feet"),
  51688. name: "Back",
  51689. image: {
  51690. source: "./media/characters/rei/back.svg",
  51691. extra: 1358/1204,
  51692. bottom: 22/1380
  51693. }
  51694. },
  51695. pawsDigi: {
  51696. height: math.unit(3.45, "feet"),
  51697. name: "Paws (Digi)",
  51698. image: {
  51699. source: "./media/characters/rei/paws-digi.svg"
  51700. }
  51701. },
  51702. pawsPlanti: {
  51703. height: math.unit(3.45, "feet"),
  51704. name: "Paws (Planti)",
  51705. image: {
  51706. source: "./media/characters/rei/paws-planti.svg"
  51707. }
  51708. },
  51709. },
  51710. [
  51711. {
  51712. name: "Normal",
  51713. height: math.unit(20.5, "feet"),
  51714. default: true
  51715. },
  51716. ]
  51717. ))
  51718. characterMakers.push(() => makeCharacter(
  51719. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51720. {
  51721. front: {
  51722. height: math.unit(5 + 11/12, "feet"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/carina/front.svg",
  51726. extra: 1720/1449,
  51727. bottom: 14/1734
  51728. }
  51729. },
  51730. back: {
  51731. height: math.unit(5 + 11/12, "feet"),
  51732. name: "Back",
  51733. image: {
  51734. source: "./media/characters/carina/back.svg",
  51735. extra: 1493/1445,
  51736. bottom: 17/1510
  51737. }
  51738. },
  51739. paw: {
  51740. height: math.unit(0.92, "feet"),
  51741. name: "Paw",
  51742. image: {
  51743. source: "./media/characters/carina/paw.svg"
  51744. }
  51745. },
  51746. },
  51747. [
  51748. {
  51749. name: "Normal",
  51750. height: math.unit(5 + 11/12, "feet"),
  51751. default: true
  51752. },
  51753. ]
  51754. ))
  51755. characterMakers.push(() => makeCharacter(
  51756. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51757. {
  51758. front: {
  51759. height: math.unit(4.88, "meters"),
  51760. name: "Front",
  51761. image: {
  51762. source: "./media/characters/maya/front.svg",
  51763. extra: 1222/1145,
  51764. bottom: 57/1279
  51765. }
  51766. },
  51767. },
  51768. [
  51769. {
  51770. name: "Normal",
  51771. height: math.unit(4.88, "meters"),
  51772. default: true
  51773. },
  51774. {
  51775. name: "Macro",
  51776. height: math.unit(38.1, "meters")
  51777. },
  51778. {
  51779. name: "Macro+",
  51780. height: math.unit(152.4, "meters")
  51781. },
  51782. {
  51783. name: "Macro++",
  51784. height: math.unit(16.09, "km")
  51785. },
  51786. {
  51787. name: "Mega-macro",
  51788. height: math.unit(700, "megameters")
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51794. {
  51795. front: {
  51796. height: math.unit(6 + 2/12, "feet"),
  51797. weight: math.unit(500, "lb"),
  51798. preyCapacity: math.unit(4, "people"),
  51799. name: "Front",
  51800. image: {
  51801. source: "./media/characters/yepir/front.svg"
  51802. }
  51803. },
  51804. side: {
  51805. height: math.unit(6 + 2/12, "feet"),
  51806. weight: math.unit(500, "lb"),
  51807. preyCapacity: math.unit(4, "people"),
  51808. name: "Side",
  51809. image: {
  51810. source: "./media/characters/yepir/side.svg"
  51811. }
  51812. },
  51813. paw: {
  51814. height: math.unit(1.05, "feet"),
  51815. name: "Paw",
  51816. image: {
  51817. source: "./media/characters/yepir/paw.svg"
  51818. }
  51819. },
  51820. },
  51821. [
  51822. {
  51823. name: "Normal",
  51824. height: math.unit(6 + 2/12, "feet"),
  51825. default: true
  51826. },
  51827. ]
  51828. ))
  51829. characterMakers.push(() => makeCharacter(
  51830. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51831. {
  51832. front: {
  51833. height: math.unit(5 + 4/12, "feet"),
  51834. name: "Front",
  51835. image: {
  51836. source: "./media/characters/russec/front.svg",
  51837. extra: 1926/1626,
  51838. bottom: 72/1998
  51839. }
  51840. },
  51841. back: {
  51842. height: math.unit(5 + 4/12, "feet"),
  51843. name: "Back",
  51844. image: {
  51845. source: "./media/characters/russec/back.svg",
  51846. extra: 1910/1591,
  51847. bottom: 48/1958
  51848. }
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Small",
  51854. height: math.unit(5 + 4/12, "feet")
  51855. },
  51856. {
  51857. name: "Normal",
  51858. height: math.unit(72, "feet"),
  51859. default: true
  51860. },
  51861. ]
  51862. ))
  51863. characterMakers.push(() => makeCharacter(
  51864. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51865. {
  51866. side: {
  51867. height: math.unit(12, "feet"),
  51868. name: "Side",
  51869. image: {
  51870. source: "./media/characters/cianus/side.svg",
  51871. extra: 808/526,
  51872. bottom: 61/869
  51873. }
  51874. },
  51875. },
  51876. [
  51877. {
  51878. name: "Normal",
  51879. height: math.unit(12, "feet"),
  51880. default: true
  51881. },
  51882. ]
  51883. ))
  51884. characterMakers.push(() => makeCharacter(
  51885. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51886. {
  51887. front: {
  51888. height: math.unit(9 + 6/12, "feet"),
  51889. weight: math.unit(300, "lb"),
  51890. name: "Front",
  51891. image: {
  51892. source: "./media/characters/ahab/front.svg",
  51893. extra: 1897/1868,
  51894. bottom: 121/2018
  51895. }
  51896. },
  51897. frontNsfw: {
  51898. height: math.unit(9 + 6/12, "feet"),
  51899. weight: math.unit(300, "lb"),
  51900. name: "Front-nsfw",
  51901. image: {
  51902. source: "./media/characters/ahab/front-nsfw.svg",
  51903. extra: 1897/1868,
  51904. bottom: 121/2018
  51905. }
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Normal",
  51911. height: math.unit(9 + 6/12, "feet")
  51912. },
  51913. {
  51914. name: "Macro",
  51915. height: math.unit(657, "feet"),
  51916. default: true
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(2.69, "meters"),
  51925. weight: math.unit(132, "kg"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/aarkus/front.svg",
  51929. extra: 1400/1231,
  51930. bottom: 34/1434
  51931. }
  51932. },
  51933. back: {
  51934. height: math.unit(2.69, "meters"),
  51935. weight: math.unit(132, "kg"),
  51936. name: "Back",
  51937. image: {
  51938. source: "./media/characters/aarkus/back.svg",
  51939. extra: 1381/1218,
  51940. bottom: 30/1411
  51941. }
  51942. },
  51943. frontNsfw: {
  51944. height: math.unit(2.69, "meters"),
  51945. weight: math.unit(132, "kg"),
  51946. name: "Front (NSFW)",
  51947. image: {
  51948. source: "./media/characters/aarkus/front-nsfw.svg",
  51949. extra: 1400/1231,
  51950. bottom: 34/1434
  51951. }
  51952. },
  51953. foot: {
  51954. height: math.unit(1.45, "feet"),
  51955. name: "Foot",
  51956. image: {
  51957. source: "./media/characters/aarkus/foot.svg"
  51958. }
  51959. },
  51960. head: {
  51961. height: math.unit(2.85, "feet"),
  51962. name: "Head",
  51963. image: {
  51964. source: "./media/characters/aarkus/head.svg"
  51965. }
  51966. },
  51967. headAlt: {
  51968. height: math.unit(3.07, "feet"),
  51969. name: "Head (Alt)",
  51970. image: {
  51971. source: "./media/characters/aarkus/head-alt.svg"
  51972. }
  51973. },
  51974. mouth: {
  51975. height: math.unit(1.25, "feet"),
  51976. name: "Mouth",
  51977. image: {
  51978. source: "./media/characters/aarkus/mouth.svg"
  51979. }
  51980. },
  51981. dick: {
  51982. height: math.unit(1.77, "feet"),
  51983. name: "Dick",
  51984. image: {
  51985. source: "./media/characters/aarkus/dick.svg"
  51986. }
  51987. },
  51988. },
  51989. [
  51990. {
  51991. name: "Normal",
  51992. height: math.unit(2.69, "meters"),
  51993. default: true
  51994. },
  51995. {
  51996. name: "Macro",
  51997. height: math.unit(269, "meters")
  51998. },
  51999. {
  52000. name: "Macro+",
  52001. height: math.unit(672.5, "meters")
  52002. },
  52003. {
  52004. name: "Megamacro",
  52005. height: math.unit(2.017, "km")
  52006. },
  52007. ]
  52008. ))
  52009. characterMakers.push(() => makeCharacter(
  52010. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52011. {
  52012. front: {
  52013. height: math.unit(23.47, "cm"),
  52014. weight: math.unit(600, "grams"),
  52015. name: "Front",
  52016. image: {
  52017. source: "./media/characters/diode/front.svg",
  52018. extra: 1778/1396,
  52019. bottom: 95/1873
  52020. }
  52021. },
  52022. side: {
  52023. height: math.unit(23.47, "cm"),
  52024. weight: math.unit(600, "grams"),
  52025. name: "Side",
  52026. image: {
  52027. source: "./media/characters/diode/side.svg",
  52028. extra: 1831/1404,
  52029. bottom: 86/1917
  52030. }
  52031. },
  52032. wings: {
  52033. height: math.unit(0.683, "feet"),
  52034. name: "Wings",
  52035. image: {
  52036. source: "./media/characters/diode/wings.svg"
  52037. }
  52038. },
  52039. },
  52040. [
  52041. {
  52042. name: "Normal",
  52043. height: math.unit(23.47, "cm"),
  52044. default: true
  52045. },
  52046. ]
  52047. ))
  52048. characterMakers.push(() => makeCharacter(
  52049. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52050. {
  52051. front: {
  52052. height: math.unit(6 + 3/12, "feet"),
  52053. weight: math.unit(250, "lb"),
  52054. name: "Front",
  52055. image: {
  52056. source: "./media/characters/reika/front.svg",
  52057. extra: 1120/1078,
  52058. bottom: 86/1206
  52059. }
  52060. },
  52061. },
  52062. [
  52063. {
  52064. name: "Normal",
  52065. height: math.unit(6 + 3/12, "feet"),
  52066. default: true
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52072. {
  52073. front: {
  52074. height: math.unit(16 + 8/12, "feet"),
  52075. weight: math.unit(9000, "lb"),
  52076. name: "Front",
  52077. image: {
  52078. source: "./media/characters/lokuto-takama/front.svg",
  52079. extra: 1774/1632,
  52080. bottom: 147/1921
  52081. },
  52082. extraAttributes: {
  52083. "bustWidth": {
  52084. name: "Bust Width",
  52085. power: 1,
  52086. type: "length",
  52087. base: math.unit(2.4, "meters")
  52088. },
  52089. "breastWeight": {
  52090. name: "Breast Weight",
  52091. power: 3,
  52092. type: "mass",
  52093. base: math.unit(1000, "kg")
  52094. },
  52095. }
  52096. },
  52097. },
  52098. [
  52099. {
  52100. name: "Normal",
  52101. height: math.unit(16 + 8/12, "feet"),
  52102. default: true
  52103. },
  52104. ]
  52105. ))
  52106. characterMakers.push(() => makeCharacter(
  52107. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52108. {
  52109. front: {
  52110. height: math.unit(10, "cm"),
  52111. weight: math.unit(850, "grams"),
  52112. name: "Front",
  52113. image: {
  52114. source: "./media/characters/owak-bone/front.svg",
  52115. extra: 1965/1801,
  52116. bottom: 31/1996
  52117. }
  52118. },
  52119. },
  52120. [
  52121. {
  52122. name: "Normal",
  52123. height: math.unit(10, "cm"),
  52124. default: true
  52125. },
  52126. ]
  52127. ))
  52128. characterMakers.push(() => makeCharacter(
  52129. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52130. {
  52131. front: {
  52132. height: math.unit(2 + 6/12, "feet"),
  52133. weight: math.unit(9, "lb"),
  52134. name: "Front",
  52135. image: {
  52136. source: "./media/characters/muffin/front.svg",
  52137. extra: 1220/1195,
  52138. bottom: 84/1304
  52139. }
  52140. },
  52141. },
  52142. [
  52143. {
  52144. name: "Normal",
  52145. height: math.unit(2 + 6/12, "feet"),
  52146. default: true
  52147. },
  52148. ]
  52149. ))
  52150. characterMakers.push(() => makeCharacter(
  52151. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52152. {
  52153. front: {
  52154. height: math.unit(7, "feet"),
  52155. name: "Front",
  52156. image: {
  52157. source: "./media/characters/chimera/front.svg",
  52158. extra: 1752/1614,
  52159. bottom: 68/1820
  52160. }
  52161. },
  52162. },
  52163. [
  52164. {
  52165. name: "Normal",
  52166. height: math.unit(7, "feet")
  52167. },
  52168. {
  52169. name: "Gigamacro",
  52170. height: math.unit(2.9, "gigameters"),
  52171. default: true
  52172. },
  52173. {
  52174. name: "Universal",
  52175. height: math.unit(1.56e26, "yottameters")
  52176. },
  52177. ]
  52178. ))
  52179. characterMakers.push(() => makeCharacter(
  52180. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52181. {
  52182. front: {
  52183. height: math.unit(3, "feet"),
  52184. weight: math.unit(20, "lb"),
  52185. name: "Front",
  52186. image: {
  52187. source: "./media/characters/kit-fennec-fox/front.svg",
  52188. extra: 1027/932,
  52189. bottom: 16/1043
  52190. }
  52191. },
  52192. back: {
  52193. height: math.unit(3, "feet"),
  52194. weight: math.unit(20, "lb"),
  52195. name: "Back",
  52196. image: {
  52197. source: "./media/characters/kit-fennec-fox/back.svg",
  52198. extra: 1027/932,
  52199. bottom: 16/1043
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(3, "feet"),
  52207. default: true
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(167, "cm"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/blue-otter/front.svg",
  52219. extra: 1951/1920,
  52220. bottom: 31/1982
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Otter-Sized",
  52227. height: math.unit(100, "cm")
  52228. },
  52229. {
  52230. name: "Normal",
  52231. height: math.unit(167, "cm"),
  52232. default: true
  52233. },
  52234. ]
  52235. ))
  52236. characterMakers.push(() => makeCharacter(
  52237. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52238. {
  52239. front: {
  52240. height: math.unit(4 + 4/12, "feet"),
  52241. name: "Front",
  52242. image: {
  52243. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52244. extra: 1072/1067,
  52245. bottom: 117/1189
  52246. }
  52247. },
  52248. back: {
  52249. height: math.unit(4 + 4/12, "feet"),
  52250. name: "Back",
  52251. image: {
  52252. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52253. extra: 1135/1129,
  52254. bottom: 57/1192
  52255. }
  52256. },
  52257. head: {
  52258. height: math.unit(1.77, "feet"),
  52259. name: "Head",
  52260. image: {
  52261. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52262. }
  52263. },
  52264. },
  52265. [
  52266. {
  52267. name: "Normal",
  52268. height: math.unit(4 + 4/12, "feet"),
  52269. default: true
  52270. },
  52271. ]
  52272. ))
  52273. characterMakers.push(() => makeCharacter(
  52274. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52275. {
  52276. front: {
  52277. height: math.unit(2, "inches"),
  52278. name: "Front",
  52279. image: {
  52280. source: "./media/characters/carley-hartford/front.svg",
  52281. extra: 1035/988,
  52282. bottom: 23/1058
  52283. }
  52284. },
  52285. back: {
  52286. height: math.unit(2, "inches"),
  52287. name: "Back",
  52288. image: {
  52289. source: "./media/characters/carley-hartford/back.svg",
  52290. extra: 1035/988,
  52291. bottom: 23/1058
  52292. }
  52293. },
  52294. dressed: {
  52295. height: math.unit(2, "inches"),
  52296. name: "Dressed",
  52297. image: {
  52298. source: "./media/characters/carley-hartford/dressed.svg",
  52299. extra: 651/620,
  52300. bottom: 0/651
  52301. }
  52302. },
  52303. },
  52304. [
  52305. {
  52306. name: "Micro",
  52307. height: math.unit(2, "inches"),
  52308. default: true
  52309. },
  52310. {
  52311. name: "Macro",
  52312. height: math.unit(6 + 3/12, "feet")
  52313. },
  52314. ]
  52315. ))
  52316. characterMakers.push(() => makeCharacter(
  52317. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52318. {
  52319. front: {
  52320. height: math.unit(2 + 3/12, "feet"),
  52321. weight: math.unit(15 + 7/16, "lb"),
  52322. name: "Front",
  52323. image: {
  52324. source: "./media/characters/duke/front.svg",
  52325. extra: 910/815,
  52326. bottom: 30/940
  52327. }
  52328. },
  52329. },
  52330. [
  52331. {
  52332. name: "Normal",
  52333. height: math.unit(2 + 3/12, "feet"),
  52334. default: true
  52335. },
  52336. ]
  52337. ))
  52338. characterMakers.push(() => makeCharacter(
  52339. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52340. {
  52341. front: {
  52342. height: math.unit(5 + 4/12, "feet"),
  52343. weight: math.unit(156, "lb"),
  52344. name: "Front",
  52345. image: {
  52346. source: "./media/characters/dein/front.svg",
  52347. extra: 855/815,
  52348. bottom: 48/903
  52349. }
  52350. },
  52351. side: {
  52352. height: math.unit(5 + 4/12, "feet"),
  52353. weight: math.unit(156, "lb"),
  52354. name: "side",
  52355. image: {
  52356. source: "./media/characters/dein/side.svg",
  52357. extra: 846/803,
  52358. bottom: 25/871
  52359. }
  52360. },
  52361. maw: {
  52362. height: math.unit(1.45, "feet"),
  52363. name: "Maw",
  52364. image: {
  52365. source: "./media/characters/dein/maw.svg"
  52366. }
  52367. },
  52368. },
  52369. [
  52370. {
  52371. name: "Ferret Sized",
  52372. height: math.unit(2 + 5/12, "feet")
  52373. },
  52374. {
  52375. name: "Normal",
  52376. height: math.unit(5 + 4/12, "feet"),
  52377. default: true
  52378. },
  52379. ]
  52380. ))
  52381. characterMakers.push(() => makeCharacter(
  52382. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52383. {
  52384. front: {
  52385. height: math.unit(84 + 8/12, "feet"),
  52386. weight: math.unit(942180, "lb"),
  52387. name: "Front",
  52388. image: {
  52389. source: "./media/characters/daurine-arima/front.svg",
  52390. extra: 1989/1782,
  52391. bottom: 37/2026
  52392. }
  52393. },
  52394. side: {
  52395. height: math.unit(84 + 8/12, "feet"),
  52396. weight: math.unit(942180, "lb"),
  52397. name: "Side",
  52398. image: {
  52399. source: "./media/characters/daurine-arima/side.svg",
  52400. extra: 1997/1790,
  52401. bottom: 21/2018
  52402. }
  52403. },
  52404. back: {
  52405. height: math.unit(84 + 8/12, "feet"),
  52406. weight: math.unit(942180, "lb"),
  52407. name: "Back",
  52408. image: {
  52409. source: "./media/characters/daurine-arima/back.svg",
  52410. extra: 1992/1800,
  52411. bottom: 12/2004
  52412. }
  52413. },
  52414. head: {
  52415. height: math.unit(15.5, "feet"),
  52416. name: "Head",
  52417. image: {
  52418. source: "./media/characters/daurine-arima/head.svg"
  52419. }
  52420. },
  52421. headAlt: {
  52422. height: math.unit(19.19, "feet"),
  52423. name: "Head (Alt)",
  52424. image: {
  52425. source: "./media/characters/daurine-arima/head-alt.svg"
  52426. }
  52427. },
  52428. },
  52429. [
  52430. {
  52431. name: "Minimum height",
  52432. height: math.unit(8 + 10/12, "feet")
  52433. },
  52434. {
  52435. name: "Comfort height",
  52436. height: math.unit(19 + 6 /12, "feet")
  52437. },
  52438. {
  52439. name: "\"Normal\" height",
  52440. height: math.unit(28 + 10/12, "feet")
  52441. },
  52442. {
  52443. name: "Base height",
  52444. height: math.unit(84 + 8/12, "feet"),
  52445. default: true
  52446. },
  52447. {
  52448. name: "Mini-macro",
  52449. height: math.unit(2360, "feet")
  52450. },
  52451. {
  52452. name: "Macro",
  52453. height: math.unit(10, "miles")
  52454. },
  52455. {
  52456. name: "Goddess",
  52457. height: math.unit(9.99e40, "yottameters")
  52458. },
  52459. ]
  52460. ))
  52461. characterMakers.push(() => makeCharacter(
  52462. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52463. {
  52464. front: {
  52465. height: math.unit(2.3, "meters"),
  52466. name: "Front",
  52467. image: {
  52468. source: "./media/characters/cilenomon/front.svg",
  52469. extra: 1963/1778,
  52470. bottom: 54/2017
  52471. }
  52472. },
  52473. },
  52474. [
  52475. {
  52476. name: "Normal",
  52477. height: math.unit(2.3, "meters"),
  52478. default: true
  52479. },
  52480. {
  52481. name: "Big",
  52482. height: math.unit(5, "meters")
  52483. },
  52484. {
  52485. name: "Macro",
  52486. height: math.unit(30, "meters")
  52487. },
  52488. {
  52489. name: "True",
  52490. height: math.unit(1, "universe")
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52496. {
  52497. front: {
  52498. height: math.unit(5, "feet"),
  52499. name: "Front",
  52500. image: {
  52501. source: "./media/characters/sen-mink/front.svg",
  52502. extra: 1727/1675,
  52503. bottom: 35/1762
  52504. }
  52505. },
  52506. },
  52507. [
  52508. {
  52509. name: "Normal",
  52510. height: math.unit(5, "feet"),
  52511. default: true
  52512. },
  52513. ]
  52514. ))
  52515. characterMakers.push(() => makeCharacter(
  52516. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52517. {
  52518. front: {
  52519. height: math.unit(5.42999, "feet"),
  52520. weight: math.unit(100, "lb"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/ophois/front.svg",
  52524. extra: 1429/1286,
  52525. bottom: 60/1489
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Normal",
  52532. height: math.unit(5.42999, "feet"),
  52533. default: true
  52534. },
  52535. ]
  52536. ))
  52537. characterMakers.push(() => makeCharacter(
  52538. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52539. {
  52540. front: {
  52541. height: math.unit(2, "meters"),
  52542. name: "Front",
  52543. image: {
  52544. source: "./media/characters/riley/front.svg",
  52545. extra: 1779/1754,
  52546. bottom: 139/1918
  52547. }
  52548. },
  52549. },
  52550. [
  52551. {
  52552. name: "Normal",
  52553. height: math.unit(2, "meters"),
  52554. default: true
  52555. },
  52556. ]
  52557. ))
  52558. characterMakers.push(() => makeCharacter(
  52559. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52560. {
  52561. front: {
  52562. height: math.unit(6 + 2/12, "feet"),
  52563. weight: math.unit(195, "lb"),
  52564. preyCapacity: math.unit(6, "people"),
  52565. name: "Front",
  52566. image: {
  52567. source: "./media/characters/shuken-flash/front.svg",
  52568. extra: 1905/1739,
  52569. bottom: 65/1970
  52570. }
  52571. },
  52572. back: {
  52573. height: math.unit(6 + 2/12, "feet"),
  52574. weight: math.unit(195, "lb"),
  52575. preyCapacity: math.unit(6, "people"),
  52576. name: "Back",
  52577. image: {
  52578. source: "./media/characters/shuken-flash/back.svg",
  52579. extra: 1912/1751,
  52580. bottom: 13/1925
  52581. }
  52582. },
  52583. },
  52584. [
  52585. {
  52586. name: "Normal",
  52587. height: math.unit(6 + 2/12, "feet"),
  52588. default: true
  52589. },
  52590. ]
  52591. ))
  52592. characterMakers.push(() => makeCharacter(
  52593. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52594. {
  52595. front: {
  52596. height: math.unit(5 + 9/12, "feet"),
  52597. weight: math.unit(150, "lb"),
  52598. name: "Front",
  52599. image: {
  52600. source: "./media/characters/plat/front.svg",
  52601. extra: 1816/1703,
  52602. bottom: 43/1859
  52603. }
  52604. },
  52605. side: {
  52606. height: math.unit(5 + 9/12, "feet"),
  52607. weight: math.unit(300, "lb"),
  52608. name: "Side",
  52609. image: {
  52610. source: "./media/characters/plat/side.svg",
  52611. extra: 1824/1699,
  52612. bottom: 18/1842
  52613. }
  52614. },
  52615. },
  52616. [
  52617. {
  52618. name: "Normal",
  52619. height: math.unit(5 + 9/12, "feet"),
  52620. default: true
  52621. },
  52622. ]
  52623. ))
  52624. characterMakers.push(() => makeCharacter(
  52625. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52626. {
  52627. front: {
  52628. height: math.unit(9, "feet"),
  52629. weight: math.unit(1800, "lb"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/elaine/front.svg",
  52633. extra: 1833/1354,
  52634. bottom: 25/1858
  52635. }
  52636. },
  52637. back: {
  52638. height: math.unit(8.8, "feet"),
  52639. weight: math.unit(1800, "lb"),
  52640. name: "Back",
  52641. image: {
  52642. source: "./media/characters/elaine/back.svg",
  52643. extra: 1641/1233,
  52644. bottom: 53/1694
  52645. }
  52646. },
  52647. },
  52648. [
  52649. {
  52650. name: "Normal",
  52651. height: math.unit(9, "feet"),
  52652. default: true
  52653. },
  52654. ]
  52655. ))
  52656. characterMakers.push(() => makeCharacter(
  52657. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52658. {
  52659. front: {
  52660. height: math.unit(17 + 9/12, "feet"),
  52661. weight: math.unit(8000, "lb"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/vera-raven/front.svg",
  52665. extra: 1457/1412,
  52666. bottom: 121/1578
  52667. }
  52668. },
  52669. side: {
  52670. height: math.unit(17 + 9/12, "feet"),
  52671. weight: math.unit(8000, "lb"),
  52672. name: "Side",
  52673. image: {
  52674. source: "./media/characters/vera-raven/side.svg",
  52675. extra: 1510/1464,
  52676. bottom: 54/1564
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Normal",
  52683. height: math.unit(17 + 9/12, "feet"),
  52684. default: true
  52685. },
  52686. ]
  52687. ))
  52688. characterMakers.push(() => makeCharacter(
  52689. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52690. {
  52691. dressed: {
  52692. height: math.unit(6 + 9/12, "feet"),
  52693. name: "Dressed",
  52694. image: {
  52695. source: "./media/characters/nakisha/dressed.svg",
  52696. extra: 1909/1757,
  52697. bottom: 48/1957
  52698. }
  52699. },
  52700. nude: {
  52701. height: math.unit(6 + 9/12, "feet"),
  52702. name: "Nude",
  52703. image: {
  52704. source: "./media/characters/nakisha/nude.svg",
  52705. extra: 1917/1765,
  52706. bottom: 34/1951
  52707. }
  52708. },
  52709. },
  52710. [
  52711. {
  52712. name: "Normal",
  52713. height: math.unit(6 + 9/12, "feet"),
  52714. default: true
  52715. },
  52716. ]
  52717. ))
  52718. characterMakers.push(() => makeCharacter(
  52719. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52720. {
  52721. front: {
  52722. height: math.unit(87, "meters"),
  52723. name: "Front",
  52724. image: {
  52725. source: "./media/characters/serafin/front.svg",
  52726. extra: 1919/1776,
  52727. bottom: 65/1984
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(87, "meters"),
  52735. default: true
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52741. {
  52742. front: {
  52743. height: math.unit(6, "feet"),
  52744. weight: math.unit(200, "lb"),
  52745. name: "Front",
  52746. image: {
  52747. source: "./media/characters/poptart/front.svg",
  52748. extra: 615/583,
  52749. bottom: 23/638
  52750. }
  52751. },
  52752. back: {
  52753. height: math.unit(6, "feet"),
  52754. weight: math.unit(200, "lb"),
  52755. name: "Back",
  52756. image: {
  52757. source: "./media/characters/poptart/back.svg",
  52758. extra: 617/584,
  52759. bottom: 22/639
  52760. }
  52761. },
  52762. frontNsfw: {
  52763. height: math.unit(6, "feet"),
  52764. weight: math.unit(200, "lb"),
  52765. name: "Front (NSFW)",
  52766. image: {
  52767. source: "./media/characters/poptart/front-nsfw.svg",
  52768. extra: 615/583,
  52769. bottom: 23/638
  52770. }
  52771. },
  52772. backNsfw: {
  52773. height: math.unit(6, "feet"),
  52774. weight: math.unit(200, "lb"),
  52775. name: "Back (NSFW)",
  52776. image: {
  52777. source: "./media/characters/poptart/back-nsfw.svg",
  52778. extra: 617/584,
  52779. bottom: 22/639
  52780. }
  52781. },
  52782. hand: {
  52783. height: math.unit(1.14, "feet"),
  52784. name: "Hand",
  52785. image: {
  52786. source: "./media/characters/poptart/hand.svg"
  52787. }
  52788. },
  52789. foot: {
  52790. height: math.unit(1.5, "feet"),
  52791. name: "Foot",
  52792. image: {
  52793. source: "./media/characters/poptart/foot.svg"
  52794. }
  52795. },
  52796. },
  52797. [
  52798. {
  52799. name: "Normal",
  52800. height: math.unit(6, "feet"),
  52801. default: true
  52802. },
  52803. {
  52804. name: "Grande",
  52805. height: math.unit(350, "feet")
  52806. },
  52807. {
  52808. name: "Massif",
  52809. height: math.unit(967, "feet")
  52810. },
  52811. ]
  52812. ))
  52813. characterMakers.push(() => makeCharacter(
  52814. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52815. {
  52816. hyenaSide: {
  52817. height: math.unit(120, "cm"),
  52818. weight: math.unit(120, "lb"),
  52819. name: "Side",
  52820. image: {
  52821. source: "./media/characters/trance/hyena-side.svg",
  52822. extra: 998/904,
  52823. bottom: 76/1074
  52824. }
  52825. },
  52826. },
  52827. [
  52828. {
  52829. name: "Normal",
  52830. height: math.unit(120, "cm"),
  52831. default: true
  52832. },
  52833. {
  52834. name: "Dire",
  52835. height: math.unit(230, "cm")
  52836. },
  52837. {
  52838. name: "Macro",
  52839. height: math.unit(37, "feet")
  52840. },
  52841. ]
  52842. ))
  52843. characterMakers.push(() => makeCharacter(
  52844. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52845. {
  52846. front: {
  52847. height: math.unit(6 + 3/12, "feet"),
  52848. name: "Front",
  52849. image: {
  52850. source: "./media/characters/michael-berretta/front.svg",
  52851. extra: 515/494,
  52852. bottom: 20/535
  52853. }
  52854. },
  52855. back: {
  52856. height: math.unit(6 + 3/12, "feet"),
  52857. name: "Back",
  52858. image: {
  52859. source: "./media/characters/michael-berretta/back.svg",
  52860. extra: 520/497,
  52861. bottom: 21/541
  52862. }
  52863. },
  52864. frontNsfw: {
  52865. height: math.unit(6 + 3/12, "feet"),
  52866. name: "Front (NSFW)",
  52867. image: {
  52868. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52869. extra: 515/494,
  52870. bottom: 20/535
  52871. }
  52872. },
  52873. dick: {
  52874. height: math.unit(1, "feet"),
  52875. name: "Dick",
  52876. image: {
  52877. source: "./media/characters/michael-berretta/dick.svg"
  52878. }
  52879. },
  52880. },
  52881. [
  52882. {
  52883. name: "Normal",
  52884. height: math.unit(6 + 3/12, "feet"),
  52885. default: true
  52886. },
  52887. {
  52888. name: "Big",
  52889. height: math.unit(12, "feet")
  52890. },
  52891. {
  52892. name: "Macro",
  52893. height: math.unit(187.5, "feet")
  52894. },
  52895. ]
  52896. ))
  52897. characterMakers.push(() => makeCharacter(
  52898. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52899. {
  52900. front: {
  52901. height: math.unit(9 + 9/12, "feet"),
  52902. weight: math.unit(1244, "lb"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/stella-edgecomb/front.svg",
  52906. extra: 1835/1706,
  52907. bottom: 49/1884
  52908. }
  52909. },
  52910. pen: {
  52911. height: math.unit(0.95, "feet"),
  52912. name: "Pen",
  52913. image: {
  52914. source: "./media/characters/stella-edgecomb/pen.svg"
  52915. }
  52916. },
  52917. },
  52918. [
  52919. {
  52920. name: "Cozy Bear",
  52921. height: math.unit(0.5, "inches")
  52922. },
  52923. {
  52924. name: "Normal",
  52925. height: math.unit(9 + 9/12, "feet"),
  52926. default: true
  52927. },
  52928. {
  52929. name: "Giga Bear",
  52930. height: math.unit(1, "mile")
  52931. },
  52932. {
  52933. name: "Great Bear",
  52934. height: math.unit(53, "miles")
  52935. },
  52936. {
  52937. name: "Goddess Bear",
  52938. height: math.unit(40000, "miles")
  52939. },
  52940. {
  52941. name: "Sun Bear",
  52942. height: math.unit(900000, "miles")
  52943. },
  52944. ]
  52945. ))
  52946. characterMakers.push(() => makeCharacter(
  52947. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52948. {
  52949. anthroFront: {
  52950. height: math.unit(556, "cm"),
  52951. weight: math.unit(2650, "kg"),
  52952. preyCapacity: math.unit(3, "people"),
  52953. name: "Front",
  52954. image: {
  52955. source: "./media/characters/ash´iika/front.svg",
  52956. extra: 710/673,
  52957. bottom: 15/725
  52958. },
  52959. form: "anthro",
  52960. default: true
  52961. },
  52962. anthroSide: {
  52963. height: math.unit(556, "cm"),
  52964. weight: math.unit(2650, "kg"),
  52965. preyCapacity: math.unit(3, "people"),
  52966. name: "Side",
  52967. image: {
  52968. source: "./media/characters/ash´iika/side.svg",
  52969. extra: 696/676,
  52970. bottom: 13/709
  52971. },
  52972. form: "anthro"
  52973. },
  52974. anthroDressed: {
  52975. height: math.unit(556, "cm"),
  52976. weight: math.unit(2650, "kg"),
  52977. preyCapacity: math.unit(3, "people"),
  52978. name: "Dressed",
  52979. image: {
  52980. source: "./media/characters/ash´iika/dressed.svg",
  52981. extra: 710/673,
  52982. bottom: 15/725
  52983. },
  52984. form: "anthro"
  52985. },
  52986. anthroHead: {
  52987. height: math.unit(3.5, "feet"),
  52988. name: "Head",
  52989. image: {
  52990. source: "./media/characters/ash´iika/head.svg",
  52991. extra: 348/291,
  52992. bottom: 45/393
  52993. },
  52994. form: "anthro"
  52995. },
  52996. feralSide: {
  52997. height: math.unit(870, "cm"),
  52998. weight: math.unit(17500, "kg"),
  52999. preyCapacity: math.unit(15, "people"),
  53000. name: "Side",
  53001. image: {
  53002. source: "./media/characters/ash´iika/feral.svg",
  53003. extra: 595/199,
  53004. bottom: 7/602
  53005. },
  53006. form: "feral",
  53007. default: true,
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Normal",
  53013. height: math.unit(556, "cm"),
  53014. default: true,
  53015. form: "anthro"
  53016. },
  53017. {
  53018. name: "Macro",
  53019. height: math.unit(88, "meters"),
  53020. form: "anthro"
  53021. },
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(870, "cm"),
  53025. default: true,
  53026. form: "feral"
  53027. },
  53028. {
  53029. name: "Large",
  53030. height: math.unit(25, "meters"),
  53031. form: "feral"
  53032. },
  53033. ],
  53034. {
  53035. "anthro": {
  53036. name: "Anthro",
  53037. default: true
  53038. },
  53039. "feral": {
  53040. name: "Feral",
  53041. },
  53042. }
  53043. ))
  53044. characterMakers.push(() => makeCharacter(
  53045. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53046. {
  53047. front: {
  53048. height: math.unit(10, "feet"),
  53049. weight: math.unit(800, "lb"),
  53050. name: "Front",
  53051. image: {
  53052. source: "./media/characters/yen/front.svg",
  53053. extra: 443/411,
  53054. bottom: 6/449
  53055. }
  53056. },
  53057. sleeping: {
  53058. height: math.unit(10, "feet"),
  53059. weight: math.unit(800, "lb"),
  53060. name: "Sleeping",
  53061. image: {
  53062. source: "./media/characters/yen/sleeping.svg",
  53063. extra: 470/422,
  53064. bottom: 0/470
  53065. }
  53066. },
  53067. head: {
  53068. height: math.unit(2.2, "feet"),
  53069. name: "Head",
  53070. image: {
  53071. source: "./media/characters/yen/head.svg"
  53072. }
  53073. },
  53074. headAlt: {
  53075. height: math.unit(2.1, "feet"),
  53076. name: "Head (Alt)",
  53077. image: {
  53078. source: "./media/characters/yen/head-alt.svg"
  53079. }
  53080. },
  53081. },
  53082. [
  53083. {
  53084. name: "Normal",
  53085. height: math.unit(10, "feet"),
  53086. default: true
  53087. },
  53088. ]
  53089. ))
  53090. characterMakers.push(() => makeCharacter(
  53091. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53092. {
  53093. front: {
  53094. height: math.unit(12, "feet"),
  53095. name: "Front",
  53096. image: {
  53097. source: "./media/characters/citra/front.svg",
  53098. extra: 1950/1710,
  53099. bottom: 47/1997
  53100. }
  53101. },
  53102. },
  53103. [
  53104. {
  53105. name: "Normal",
  53106. height: math.unit(12, "feet"),
  53107. default: true
  53108. },
  53109. ]
  53110. ))
  53111. characterMakers.push(() => makeCharacter(
  53112. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53113. {
  53114. side: {
  53115. height: math.unit(7 + 10/12, "feet"),
  53116. name: "Side",
  53117. image: {
  53118. source: "./media/characters/sholstim/side.svg",
  53119. extra: 786/682,
  53120. bottom: 40/826
  53121. }
  53122. },
  53123. },
  53124. [
  53125. {
  53126. name: "Normal",
  53127. height: math.unit(7 + 10/12, "feet"),
  53128. default: true
  53129. },
  53130. ]
  53131. ))
  53132. characterMakers.push(() => makeCharacter(
  53133. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53134. {
  53135. front: {
  53136. height: math.unit(3.10, "meters"),
  53137. name: "Front",
  53138. image: {
  53139. source: "./media/characters/aggyn/front.svg",
  53140. extra: 1188/963,
  53141. bottom: 24/1212
  53142. }
  53143. },
  53144. },
  53145. [
  53146. {
  53147. name: "Normal",
  53148. height: math.unit(3.10, "meters"),
  53149. default: true
  53150. },
  53151. ]
  53152. ))
  53153. characterMakers.push(() => makeCharacter(
  53154. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53155. {
  53156. front: {
  53157. height: math.unit(7 + 5/12, "feet"),
  53158. weight: math.unit(687, "lb"),
  53159. name: "Front",
  53160. image: {
  53161. source: "./media/characters/alsandair-hergenroether/front.svg",
  53162. extra: 1251/1186,
  53163. bottom: 75/1326
  53164. }
  53165. },
  53166. back: {
  53167. height: math.unit(7 + 5/12, "feet"),
  53168. weight: math.unit(687, "lb"),
  53169. name: "Back",
  53170. image: {
  53171. source: "./media/characters/alsandair-hergenroether/back.svg",
  53172. extra: 1290/1229,
  53173. bottom: 17/1307
  53174. }
  53175. },
  53176. },
  53177. [
  53178. {
  53179. name: "Max Compression",
  53180. height: math.unit(7 + 5/12, "feet"),
  53181. default: true
  53182. },
  53183. {
  53184. name: "\"Normal\"",
  53185. height: math.unit(2, "universes")
  53186. },
  53187. ]
  53188. ))
  53189. characterMakers.push(() => makeCharacter(
  53190. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53191. {
  53192. front: {
  53193. height: math.unit(4 + 1/12, "feet"),
  53194. weight: math.unit(92, "lb"),
  53195. name: "Front",
  53196. image: {
  53197. source: "./media/characters/ie/front.svg",
  53198. extra: 1585/1352,
  53199. bottom: 91/1676
  53200. }
  53201. },
  53202. },
  53203. [
  53204. {
  53205. name: "Normal",
  53206. height: math.unit(4 + 1/12, "feet"),
  53207. default: true
  53208. },
  53209. ]
  53210. ))
  53211. characterMakers.push(() => makeCharacter(
  53212. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53213. {
  53214. anthro: {
  53215. height: math.unit(6, "feet"),
  53216. weight: math.unit(150, "lb"),
  53217. name: "Front",
  53218. image: {
  53219. source: "./media/characters/willow/anthro.svg",
  53220. extra: 1073/986,
  53221. bottom: 34/1107
  53222. },
  53223. form: "anthro",
  53224. default: true
  53225. },
  53226. taur: {
  53227. height: math.unit(6, "feet"),
  53228. weight: math.unit(150, "lb"),
  53229. name: "Side",
  53230. image: {
  53231. source: "./media/characters/willow/taur.svg",
  53232. extra: 647/512,
  53233. bottom: 136/783
  53234. },
  53235. form: "taur",
  53236. default: true
  53237. },
  53238. },
  53239. [
  53240. {
  53241. name: "Humanoid",
  53242. height: math.unit(2.7, "meters"),
  53243. form: "anthro"
  53244. },
  53245. {
  53246. name: "Normal",
  53247. height: math.unit(9, "meters"),
  53248. form: "anthro",
  53249. default: true
  53250. },
  53251. {
  53252. name: "Humanoid",
  53253. height: math.unit(2.1, "meters"),
  53254. form: "taur"
  53255. },
  53256. {
  53257. name: "Normal",
  53258. height: math.unit(7, "meters"),
  53259. form: "taur",
  53260. default: true
  53261. },
  53262. ],
  53263. {
  53264. "anthro": {
  53265. name: "Anthro",
  53266. default: true
  53267. },
  53268. "taur": {
  53269. name: "Taur",
  53270. },
  53271. }
  53272. ))
  53273. //characters
  53274. function makeCharacters() {
  53275. const results = [];
  53276. characterMakers.forEach(character => {
  53277. results.push(character());
  53278. });
  53279. return results;
  53280. }